diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 37adf2e0a..d46f275d0 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -1,9 +1,8 @@ --- name: bug about: Use this template to report any bugs you've encountered related to the project -title: 'What bug did you encounter?' +title: "What bug did you encounter?" labels: bug - --- ### Your subdomain diff --git a/.github/ISSUE_TEMPLATE/questions.md b/.github/ISSUE_TEMPLATE/questions.md index 1e1a07a33..54ce34840 100644 --- a/.github/ISSUE_TEMPLATE/questions.md +++ b/.github/ISSUE_TEMPLATE/questions.md @@ -1,9 +1,8 @@ --- name: question about: Use this template to ask any questions about the service -title: 'Whats your question' +title: "Whats your question" labels: question - --- ### Your question diff --git a/.github/ISSUE_TEMPLATE/report-abuse.md b/.github/ISSUE_TEMPLATE/report-abuse.md index c25ca4e37..3e1a09807 100644 --- a/.github/ISSUE_TEMPLATE/report-abuse.md +++ b/.github/ISSUE_TEMPLATE/report-abuse.md @@ -1,9 +1,8 @@ --- name: report-abuse about: Use this template to report abusive domains -title: 'Report abuse' +title: "Report abuse" labels: report-abuse - --- ### Domain diff --git a/.github/ISSUE_TEMPLATE/suggestions.md b/.github/ISSUE_TEMPLATE/suggestions.md index d30835232..e59941e31 100644 --- a/.github/ISSUE_TEMPLATE/suggestions.md +++ b/.github/ISSUE_TEMPLATE/suggestions.md @@ -1,9 +1,8 @@ --- name: suggestion about: Use this template for feedbacks and suggestions -title: 'Feedback/suggestion' +title: "Feedback/suggestion" labels: suggestion - --- ### What do you want added? diff --git a/.github/ISSUE_TEMPLATE/support.md b/.github/ISSUE_TEMPLATE/support.md index dbe3c3030..e75c23499 100644 --- a/.github/ISSUE_TEMPLATE/support.md +++ b/.github/ISSUE_TEMPLATE/support.md @@ -1,9 +1,8 @@ --- name: support about: Use this template if you need any support with your domain -title: 'Support' +title: "Support" labels: support - --- ### Your subdomain diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e7eb65913..7d76cec72 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,16 +1,21 @@ - + -## Requirements -Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above. +# Requirements + -Please note that we reserve the rights not to accept any domain at our own discretion. + -- [ ] The file is in the `domains` folder and is in the JSON format. -- [ ] The file's name is all lowercased and alphanumeric. -- [ ] You have completed your website. -- [ ] The website is reachable. -- [ ] The CNAME record doesn't contain `https://` or `/`. -- [ ] There is sufficient information at the `owner` field. +- [ ] I have **read** and **understood** the [Terms of Service](https://is-a.dev/terms). +- [ ] I understand my domain will be removed if I violate the [Terms of Service](https://is-a.dev/terms). +- [ ] My file is in the `domains` directory and has the `.json` file extension. +- [ ] My file's name is lowercased and alphanumeric. +- [ ] My website is **reachable** and **completed**. +- [ ] I have provided sufficient contact information in the `owner` key. -## Website Link/Preview - +# Website Preview + diff --git a/.github/labeler.yml b/.github/labeler.yml index 7dc30bf5a..829d5e003 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,6 +1,6 @@ domain: - - domains/*.json + - domains/*.json documentation: - - ./*.md - - ./**/*.md + - ./*.md + - ./**/*.md diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..c3a06ac0c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,53 @@ +name: CI + +on: + pull_request: + + push: + branches: [main] + paths: + - "domains/*" + - "tests/*" + - "util/*" + - ".github/workflows/ci.yml" + + workflow_dispatch: + +concurrency: + group: ${{ github.ref }}-ci + cancel-in-progress: true + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - run: npm install + + - name: Fetch PR information + if: github.event_name == 'pull_request' + run: | + echo "PR_AUTHOR=${{ github.event.pull_request.user.login }}" >> $GITHUB_ENV + echo "PR_AUTHOR_ID=${{ github.event.pull_request.user.id }}" >> $GITHUB_ENV + + LABELS=$(gh api --jq '[.labels[].name]' /repos/{owner}/{repo}/pulls/${{ github.event.number }}) + echo "PR_LABELS=$LABELS" >> $GITHUB_ENV + + FILES=$(gh api --jq '[.[] | select(.status != "removed") | .filename]' /repos/{owner}/{repo}/pulls/${{ github.event.number }}/files) + echo "CHANGED_FILES=$FILES" >> $GITHUB_ENV + + REMOVED_FILE_DATA=$(gh api --jq '[.[] | select(.status == "removed") | {name: .filename, data: .patch}]' /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files) + echo "DELETED_FILES=$REMOVED_FILE_DATA" >> $GITHUB_ENV + env: + GH_TOKEN: ${{ github.token }} + + - name: Run DNSControl tests + if: github.event_name == 'pull_request' && contains(fromJson(env.CHANGED_FILES), 'dnsconfig.js') + uses: is-a-dev/dnscontrol-action@main + with: + args: check + + - name: Run tests + run: npx ava tests/*.test.js --timeout=1m diff --git a/.github/workflows/dnscontrol.yml b/.github/workflows/dnscontrol.yml new file mode 100644 index 000000000..847aae8cb --- /dev/null +++ b/.github/workflows/dnscontrol.yml @@ -0,0 +1,25 @@ +name: DNSControl + +on: + push: + branches: [main] + paths: + - ".github/workflows/dnscontrol.yml" + - "dnsconfig.js" + + workflow_dispatch: + +concurrency: + group: ${{ github.ref }}-dnscontrol + cancel-in-progress: true + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: is-a-dev/dnscontrol-action@main + with: + args: check diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 24ffbfc00..415277fbe 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -1,13 +1,16 @@ -name: Pull Request Labeler +name: Label + on: - schedule: - - cron: '*/10 * * * *' + 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 + pull-requests: + name: Pull Requests + runs-on: ubuntu-latest + steps: + - uses: ilyam8/periodic-pr-labeler@v0.3.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY: ${{ github.repository }} + LABEL_MAPPINGS_FILE: .github/labeler.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9622ebd4a..157d73bfc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,6 +6,7 @@ on: paths: - "domains/*" - ".github/workflows/publish.yml" + - "util/reserved.json" - "dnsconfig.js" workflow_dispatch: @@ -24,7 +25,7 @@ jobs: - name: Generate creds.json run: echo '{"cloudflare":{"TYPE":"CLOUDFLAREAPI","apitoken":"$CLOUDFLARE_API_TOKEN"}}' > ./creds.json - - name: Publish + - name: Push DNS records uses: is-a-dev/dnscontrol-action@main env: CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} diff --git a/.github/workflows/raw-api.yml b/.github/workflows/raw-api.yml index 4ba2bd85d..42d4a73da 100644 --- a/.github/workflows/raw-api.yml +++ b/.github/workflows/raw-api.yml @@ -6,6 +6,8 @@ on: paths: - "domains/*" - ".github/workflows/raw-api.yml" + - "util/raw-api.js" + - "util/reserved.json" workflow_dispatch: @@ -21,18 +23,15 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/checkout@v4 - with: - repository: is-a-dev/raw-api - path: raw-api - token: ${{ secrets.BOT }} - - uses: actions/setup-node@v4 with: node-version: 20.x - name: Update Data - run: node raw-api/scripts/update.js + run: node util/raw-api.js + + - name: Create CNAME + run: echo "raw.is-a.dev" > raw-api/CNAME - name: Commit uses: cpina/github-action-push-to-another-repository@main diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index ad78c7b61..815d5ace0 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,12 +1,14 @@ -name: StaleBOT +name: Stale on: - workflow_dispatch: schedule: - - cron: "30 14 * * *" + - cron: "0 12 * * *" + + workflow_dispatch: jobs: - stale: + label: + name: Label runs-on: ubuntu-latest steps: - uses: actions/stale@v3 diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml deleted file mode 100644 index f24d6052d..000000000 --- a/.github/workflows/validation.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Validation - -on: - pull_request: - - push: - branches: [main] - paths: - - "domains/*" - - "tests/*" - - "util/*" - - ".github/workflows/validation.yml" - - "dnsconfig.js" - - workflow_dispatch: - -concurrency: - group: ${{ github.ref }}-validation - cancel-in-progress: true - -jobs: - dns: - name: DNS - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Check - uses: is-a-dev/dnscontrol-action@main - with: - args: check - - tests: - name: Tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - run: npm install - - - name: Run tests - run: npx ava tests/*.test.js diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 49cc4532e..eed9af879 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -4,28 +4,9 @@ This is a Code of Conduct for any interactions in this repository. This includes - **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. +- **Follow our TOS** - You must follow our [Terms of Service](https://github.com/is-a-dev/register/blob/main/TERMS_OF_SERVICE.md). ## Reporting abuse If you believe a domain that has been registered using this service is abusing our terms, you can report it by creating an issue. -The abuse reports will be investigated and the necessary action will be taken. - -## Explicitly disallowed usage -- Online stores/shopping websites -- Gambling websites -- Game cheat sites -- CDNs distributing potentially malicious content (e.g. APKs, executables) -- 'Unblocked' gaming websites -- Alternate URLs for commonly blocked websites (e.g. gambling/casino websites) -- Websites containing 18+ content -- Mass emailing (e.g. newsletters, mailing lists) -- File-sharing or torrenting websites distributing copyrighted material -- Cryptocurrency mining sites or tools -- Hacking or cybersecurity exploit websites -- Phishing or fraudulent websites -- Websites hosting illegal or pirated software -- Proxy or VPN services bypassing network restrictions -- Online services for identity theft or forgery -- Platforms promoting self-harm or violence -- Illegal drug marketplaces -- Proxy sites (e.g. embedding other websites) +Abuse reports will be investigated and the necessary action will be taken. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4fa514e5b..7fc864a51 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,17 +1,8 @@ # 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](https://github.com/is-a-dev/register/blob/main/CODE_OF_CONDUCT.md). ## Pull requests -- Adding, changing or removing a domain file you own. -- Fixing a bug in the scripts or CI. -- Fix an error in the documentation. - -#### Domains -- Your pull request will be reviewed and merged into `main` branch. -- The records will be published as soon as the PR is merged. -- The changes should reflect soon after publishing. +- If the PR template is updated, any pre-existing PRs must follow the updated template, in order to be merged. +- We reserve the right to deny any pull request for any reason. ## Issues - **Report an abusive domain** - Create a new issue with the label `report-abuse`. diff --git a/DISCORD_RULES.md b/DISCORD_RULES.md new file mode 100644 index 000000000..af2efef88 --- /dev/null +++ b/DISCORD_RULES.md @@ -0,0 +1,88 @@ +# Discord Server Rules + +## Introduction +This document is intended for staff and community members. It covers what is and isn’t allowed in the server, along with punishment lengths and more. + +## Server Rules + +1. Follow Discord's [ToS](https://discord.com/terms) and [Community Guidelines](https://discord.com/guidelines). + 1. Modified clients are allowed, however abusing them may result in a ban. +2. Show human decency and use common sense above all else. Keep our server clean and be respectful of others. + 1. No NSFW. This includes, images, discussions of anything on the topic or "funny" jokes, gore, role playing etc. + 2. Do not discuss mutes, bans, warnings, or any related topics in public chats. They do not serve as a topic of discussion. + 3. Refrain from mini modding. You aren't a moderator; use */report* or ping one staff member. + 4. No slurs, excessive swearing, abuse, bait, harassment, etc. +3. Do not post malicious links and/or files. +4. No attempting to bypass, intentionally misinterpret, or find loopholes in the rules. + 1. A moderator's word is final. When told to cease, cease. +5. Refrain from asking for support in non-support channels; you will not receive help there. If you need help, then open a ticket in \#⁠get-help only after you have read the is-a.dev documentation and weren't answered there. +6. Do not beg for your pull request to be merged or for anything else. Send a link to your pull request *once* in \#pull-requests and patiently wait for a maintainer to get to it. Do *not* ping maintainers to merge pull requests. +7. Your account is your responsibility. + 1. If someone else is using your account and breaks these rules, you are responsible. + 2. If your account gets compromised and gets banned from this server, you may request an unban once you recover it. +8. Do not attempt to bypass our auto moderation system. +9. Do not advertise your website, bot or anything else outside of \#showcase. + 1. Bot invite links are not allowed in \#showcase. +10. Do not attempt to bypass a punishment on your account. + 1. This will result in an immediate ban on your account. +11. Do not use bot commands outside of \#commands. +12. English only. +13. Where applicable, this server is governed by our [Terms of Service](https://is-a.dev/terms). + +## Moderation Ethic + +1. Don't allow yourself to show bias or prejudice. For example, don't “let something slide” solely because the member in question is a respected person within the community. It is not harsh or wrong to call someone out and request somebody to cease something that isn't allowed on the server. +2. Don't be rude. A problem that is fairly common in the server is that some maintainers are rude to new members. It's ridiculous and sets a horrible example. +3. Don't abuse your privileges. You were granted them for a reason \- because we trusted you. Please don't abuse that trust and use them for things they aren't meant for, *even as a joke*. Simply put, it's fair to nobody. +4. Follow the rules. Especially regarding NSFW language and content. +5. Staff are not immune to punishment. If you are caught breaking the rules, you will be punished, just like any other regular member. + +## Staff Team Respect + +**Being respectful to each other**: +We are working together, this is not a competition, so act like it. Everyone here should be mature enough to be able to at least respect each other, regardless of any differences or issues we have between us. If you have an issue with another staff member, take it to DMs, do not share your problems with the rest of the server. + +**Regarding roles and permissions**: +If someone receives a certain role or position that is higher than you, do not go complaining about it. We are old enough to talk it out properly and not have to argue. What matters is that the service and server runs peacefully, all this does is create drama. If you disagree with someone receiving a specific role or permission, you can talk about it in **private** channels, do not talk about these topics outside of staff channels, and try not to argue. + +## Enforcing the Rules + +* ***Miscellaneous offences***: + * Extremely flashy or earrape media and memes: 3 hour mute + * Hoisting: Change nickname to *Moderated Nickname* + * Begging for roles/PR merging: 1-3 hour mute + * Asking for support in a non-support channel *after* being told it is the wrong channel: 30 minute mute + * Impersonation of a staff member: Ban + * Mention spam, chat flooding, text walls, command spam: 1-3 hour mute + * Arguing after being asked to stop: 1 hour mute, if continued, 1 day mute + * Breaking Discord's [ToS](https://discord.com/terms)/[Guidelines](https://discord.com/guidelines): Ban + * Modified clients are allowed, assuming they are not using them for abusive purposes. This is because they are extremely hard to moderate. + * Doxxing/raiding (including threats): Ban \+ report to Discord + * Posting malicious links, files: Ban + * Harassment of a user: 3 hour mute + * Bypassing mutes/bans: Ban +* ***Death threats***: + * kill yourself/kill myself jokes (including GIFs): 12 hour mute + * Severe offence (above, but not a joke) Ban +* ***Slurs***: + * Racial slurs: Ban + * LGBT slurs: 1 day mute + * *“retard”* is allowed, however it cannot be targeted towards a user + * Permitted uses: “that's retarded” + * Disallowed uses: “@user is retarded” + * 1 day mute +* ***Trolling***: + * Non-severe offence (e.g. just being stupid, asking dumb questions) + * 3 hour mute + * Severe offence (e.g. abusing moderator permissions) + * Ban +* ***Advertising***: + * DM advertising: Ban + * Malicious advertising: Ban + * Advertising in server: 1 hour mute, if continued, ban + * *Advertising is allowed in \#showcase, but mainly only websites and bots.* +* ***NSFW***: + * NSFW jokes/humour: 1-3 hour mute + * NSFW content/media: Ban + * CP: Ban \+ report to Discord + * CP jokes: Ban \+ report messages diff --git a/README.md b/README.md index 168de17ab..a3a0b68d7 100644 --- a/README.md +++ b/README.md @@ -3,50 +3,43 @@

- Domains - Open Pull Requests - Open Issues + Domains + Open Pull Requests + Open Issues
- Publish

is-a.dev

-

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

+

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

## Announcements & Status Updates -Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtimes regarding the service. -Not all of these will be posted on GitHub, however they will always be posted in our Discord server. +Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtime notifications regarding the service. +Not all of these will be posted on GitHub[^1], however they will always be posted in our Discord server. + +[^1]: We usually only post announcements on GitHub in the case of a serious incident. In that case, you'll likely see it at the top of this README file. Discord Server # Register -## How to Register > If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge). -- [Fork](https://github.com/is-a-dev/register/fork) this repository -- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev` -- [Read the documentation](https://is-a.dev/docs) +- [Fork](https://github.com/is-a-dev/register/fork) 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://docs.is-a.dev). - If you are applying for NS records please read [this](#ns-records). -- 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! Please consider leaving us a star ⭐️ to help support us! +- Your pull request will be reviewed and merged. *Make sure to keep an eye on it in case 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` subdomain! Please consider leaving us a star ⭐️ to help support us! ### NS Records -When applying for NS records, please be aware we already support a [wide range of DNS records](https://is-a.dev/docs/faq/#which-records-are-supported), so you may not need them. +When applying for NS records, please be aware we already support a [wide range of DNS records](https://docs.is-a.dev/faq/#which-records-are-supported), so likely do not not need them. -In your PR, please explain why you need NS records, including examples, to help mitigate potential abuse. Refer to the [FAQ](https://is-a.dev/docs/faq/#who-can-use-ns-records) for guidelines on allowed usage. Good examples of NS record requests are [#17592](https://github.com/is-a-dev/register/pull/17592) and [#18026](https://github.com/is-a-dev/register/pull/18026). +In your PR, please explain why you need NS records, including examples, to help mitigate potential abuse. Refer to the [FAQ](https://docs.is-a.dev/faq/#who-can-use-ns-records) for guidelines on allowed usage. ***Pull requests adding NS records without sufficient reasoning will be closed.*** -> Also see: [Why are you so strict with NS records?](https://is-a.dev/docs/faq/#why-are-you-so-strict-with-ns-records) - -> [!NOTE] -> You can bypass these requirements[^1] by donating just $2 [here](https://wdh.gg/pvNCdvs), or via [GitHub Sponsors](https://wdh.gg/sponsor). As a thank-you, you'll also receive a special role in our [Discord server](https://discord.gg/is-a-dev-830872854677422150)! -> -> If you donate, email william@is-a.dev or DM `@williamharrison` on Discord with your receipt and PR link. - -[^1]: Requests deemed to be made with malicious intent may be denied, with a refund provided. +> Also see: [Why are you so strict with NS records](https://docs.is-a.dev/faq/#why-are-you-so-strict-with-ns-records)? ## Report Abuse If you find any subdomains being used for abusive purposes, please report them by [creating an issue](https://github.com/is-a-dev/register/issues/new?assignees=&labels=report-abuse&projects=&template=report-abuse.md&title=Report+abuse) with the relevant evidence. diff --git a/TERMS_OF_SERVICE.md b/TERMS_OF_SERVICE.md new file mode 100644 index 000000000..f8f1482ae --- /dev/null +++ b/TERMS_OF_SERVICE.md @@ -0,0 +1,79 @@ +# Terms of Service +Welcome to **is-a.dev**, a free subdomain service provided to developers and individuals. By using our service, you agree to the following Terms of Service ("Terms"). Please read them carefully. + +## 1. Acceptance of Terms +By accessing or using the is-a.dev subdomain service, you acknowledge that you have read, understood, and agree to be bound by these Terms. If you do not agree, you may not use the service. + +## 2. Eligibility +To use the is-a.dev service, you must: + +1. Be at least 13 years old. +2. Use the service for lawful purposes only. +3. Provide accurate and truthful information during the registration process. + +## 3. Service Description +The is-a.dev service allows users to register a subdomain under the "is-a.dev" domain. This service is offered "as-is" without guarantees of uptime, support, or permanence. Subdomains are intended solely for developers and non-commercial projects. Commercial use is strictly prohibited. + +We reserve the right to deny any subdomain registration request for any reason. + +## 4. Prohibited Activities +You agree not to use the is-a.dev service for: + +- Hosting illegal content, including but not limited to pirated software, malware, or copyrighted materials without authorization. +- Conducting phishing, spam, or other malicious activities. +- Promoting hate speech, violence, or discrimination. +- Impersonating individuals, organizations, or entities without consent. +- Engaging in activities that violate local, national, or international laws. +- Any commercial purposes, including advertising, selling products, or hosting e-commerce platforms. +- Online stores/shopping websites. +- Gambling websites. +- Game cheat sites. +- CDNs distributing potentially malicious content (e.g., APKs, executables). +- 'Unblocked' gaming websites. +- Alternate URLs for commonly blocked websites (e.g., gambling/casino websites). +- Websites containing 18+ content. +- Mass emailing (e.g., newsletters, mailing lists). +- File-sharing or torrenting websites distributing copyrighted material. +- Cryptocurrency mining sites or tools. +- Hacking or cybersecurity exploit websites. +- Phishing or fraudulent websites. +- Websites hosting illegal or pirated software. +- Proxy or VPN services bypassing network restrictions. +- Online services for identity theft or forgery. +- Platforms promoting self-harm or violence. +- Illegal drug marketplaces. +- Proxy sites (e.g., embedding other websites). + +Additionally, users must comply with [GitHub’s Terms of Service](https://docs.github.com/en/site-policy/github-terms/github-terms-of-service) where applicable. + +Violation of these terms may result in the immediate termination of your subdomain. + +## 5. Ownership and Intellectual Property +1. **Subdomain Ownership**: While you are granted the right to use a subdomain, ownership of the "is-a.dev" domain remains with the service provider. +2. **Content Ownership**: You retain ownership of any content you host on your subdomain. However, you grant us a license to use your subdomain registration data (e.g., DNS records) to operate the service. + +## 6. Termination of Service +We reserve the right to suspend, terminate, or revoke your subdomain at any time, for any reason, including but not limited to violations of these Terms, operational considerations, or at our sole discretion. + +## 7. Privacy +For privacy-related inquiries, please contact us at privacy@is-a.dev. We are not responsible for any data or privacy breaches resulting from the use of our service. + +## 8. Disclaimer of Warranties +The is-a.dev service is provided "as-is" and "as available." We make no warranties, expressed or implied, regarding the service’s functionality, reliability, or suitability for any particular purpose. + +## 9. Limitation of Liability +To the fullest extent permitted by law, is-a.dev and its operators shall not be liable for any direct, indirect, incidental, special, or consequential damages arising from your use or inability to use the service. + +## 10. Indemnification +You agree to indemnify and hold harmless is-a.dev, its operators, and affiliates from any claims, losses, liabilities, or expenses arising from your use of the service or violation of these Terms. + +## 11. Modification of Terms +We reserve the right to update or modify these Terms at any time. Changes will be effective immediately upon posting. Your continued use of the service constitutes acceptance of the updated Terms. + +## 12. Governing Law +These Terms are governed by and construed in accordance with the laws of Australia. Any disputes shall be resolved exclusively in the courts of Australia. + +## 13. Contact Information +For questions or concerns about these Terms, please contact us at support@is-a.dev. + +By using the is-a.dev service, you agree to these Terms of Service. diff --git a/dnsconfig.js b/dnsconfig.js index 5ee924a87..39c5348e7 100644 --- a/dnsconfig.js +++ b/dnsconfig.js @@ -1,6 +1,6 @@ var domainName = "is-a.dev"; var registrar = NewRegistrar("none"); -var dnsProvider = DnsProvider(NewDnsProvider("cloudflare"), 0); +var dnsProvider = DnsProvider(NewDnsProvider("cloudflare")); function getDomainsList(filesPath) { var result = []; @@ -23,141 +23,162 @@ var records = []; for (var subdomain in domains) { var subdomainName = domains[subdomain].name; - var domainData = domains[subdomain].data; - var proxyState = domainData.proxied ? CF_PROXY_ON : CF_PROXY_OFF; + var data = domains[subdomain].data; + var proxyState = data.proxied ? CF_PROXY_ON : CF_PROXY_OFF; // Handle A records - if (domainData.record.A) { - for (var a in domainData.record.A) { - records.push( - A(subdomainName, IP(domainData.record.A[a]), proxyState) - ); + if (data.records.A) { + for (var a in data.records.A) { + records.push(A(subdomainName, IP(data.records.A[a]), proxyState)); } } // Handle AAAA records - if (domainData.record.AAAA) { - for (var aaaa in domainData.record.AAAA) { - records.push( - AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState) - ); + if (data.records.AAAA) { + for (var aaaa in data.records.AAAA) { + records.push(AAAA(subdomainName, data.records.AAAA[aaaa], proxyState)); } } // Handle CAA records - if (domainData.record.CAA) { - for (var caa in domainData.record.CAA) { - var caaRecord = domainData.record.CAA[caa]; - records.push( - CAA( - subdomainName, - caaRecord.flags, - caaRecord.tag, - caaRecord.value - ) - ); + if (data.records.CAA) { + for (var caa in data.records.CAA) { + var caaRecord = data.records.CAA[caa]; + records.push(CAA(subdomainName, caaRecord.tag, caaRecord.value)); } } // Handle CNAME records - if (domainData.record.CNAME) { - // Allow CNAME record on root - if (subdomainName === "@") { - records.push( - ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState) - ); - } else { - records.push( - CNAME(subdomainName, domainData.record.CNAME + ".", proxyState) - ); - } + if (data.records.CNAME) { + records.push(ALIAS(subdomainName, data.records.CNAME + ".", proxyState)); } // Handle DS records - if (domainData.record.DS) { - for (var ds in domainData.record.DS) { - var dsRecord = domainData.record.DS[ds]; + if (data.records.DS) { + for (var ds in data.records.DS) { + var dsRecord = data.records.DS[ds]; records.push( - DS( - subdomainName, - dsRecord.key_tag, - dsRecord.algorithm, - dsRecord.digest_type, - dsRecord.digest - ) + DS(subdomainName, dsRecord.key_tag, dsRecord.algorithm, dsRecord.digest_type, dsRecord.digest) ); } } // Handle MX records - if (domainData.record.MX) { - for (var mx in domainData.record.MX) { - records.push( - MX( - subdomainName, - 10 + parseInt(mx), - domainData.record.MX[mx] + "." - ) - ); + if (data.records.MX) { + for (var mx in data.records.MX) { + var mxRecord = data.records.MX[mx]; + + if (typeof mxRecord === "string") { + records.push( + MX(subdomainName, 10 + parseInt(mx), data.records.MX[mx] + ".") + ); + } else { + records.push( + MX( + subdomainName, + parseInt(mxRecord.priority), + mxRecord.target + "." + ) + ); + } } } // Handle NS records - if (domainData.record.NS) { - for (var ns in domainData.record.NS) { - records.push(NS(subdomainName, domainData.record.NS[ns] + ".")); + if (data.records.NS) { + for (var ns in data.records.NS) { + records.push(NS(subdomainName, data.records.NS[ns] + ".")); } } // Handle SRV records - if (domainData.record.SRV) { - for (var srv in domainData.record.SRV) { - var srvRecord = domainData.record.SRV[srv]; + if (data.records.SRV) { + for (var srv in data.records.SRV) { + var srvRecord = data.records.SRV[srv]; records.push( - SRV( + SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".") + ); + } + } + + // Handle TLSA records + if (data.records.TLSA) { + for (var tlsa in data.records.TLSA) { + var tlsaRecord = data.records.TLSA[tlsa]; + + records.push( + TLSA( subdomainName, - srvRecord.priority, - srvRecord.weight, - srvRecord.port, - srvRecord.target + "." + tlsaRecord.usage, + tlsaRecord.selector, + tlsaRecord.matchingType, + tlsaRecord.certificate ) ); } } // Handle TXT records - if (domainData.record.TXT) { - if (Array.isArray(domainData.record.TXT)) { - for (var txt in domainData.record.TXT) { - records.push(TXT(subdomainName, domainData.record.TXT[txt].length <= 255 ? "\"" + domainData.record.TXT[txt] + "\"" : domainData.record.TXT[txt])); + if (data.records.TXT) { + if (Array.isArray(data.records.TXT)) { + for (var txt in data.records.TXT) { + records.push(TXT(subdomainName, data.records.TXT[txt].length <= 255 ? "\"" + data.records.TXT[txt] + "\"" : data.records.TXT[txt])); } } else { - records.push(TXT(subdomainName, domainData.record.TXT.length <= 255 ? "\"" + domainData.record.TXT + "\"" : domainData.record.TXT)); + records.push(TXT(subdomainName, data.records.TXT.length <= 255 ? "\"" + data.records.TXT + "\"" : data.records.TXT)); } } // Handle URL records - if (domainData.record.URL) { + if (data.records.URL) { records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON)); } } -var options = { - no_ns: "true" -}; +var reserved = require("./util/reserved.json"); -var ignored = [ - IGNORE("@", "MX,TXT"), - IGNORE("_acme-challenge", "TXT"), - IGNORE("_autodiscover._tcp", "SRV"), - IGNORE("_dmarc", "TXT"), - IGNORE("autoconfig", "CNAME"), - IGNORE("autodiscover", "CNAME"), - IGNORE("dkim._domainkey", "TXT"), - IGNORE("ns[1-4]", "A,AAAA"), -]; +// Handle reserved domains +for (var i = 0; i < reserved.length; i++) { + var subdomainName = reserved[i]; + if ( + subdomainName !== "autoconfig" && + subdomainName !== "autodiscover" && + subdomainName !== "data" && + subdomainName !== "docs" && + subdomainName !== "ns1" && + subdomainName !== "ns2" && + subdomainName !== "ns3" && + subdomainName !== "ns4" && + subdomainName !== "raw" && + subdomainName !== "www" + ) { + records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON)); + } +} -// Push TXT record of when the zone was last updated +// Zone last updated TXT record records.push(TXT("_zone-updated", "\"" + Date.now().toString() + "\"")); -D(domainName, registrar, dnsProvider, options, ignored, records); +var ignored = [ + IGNORE("\\*", "A"), + IGNORE("*._domainkey", "TXT"), + IGNORE("@", "*"), + IGNORE("_acme-challenge", "TXT"), + IGNORE("_autodiscover._tcp", "SRV"), + IGNORE("_discord", "TXT"), + IGNORE("_dmarc", "TXT"), + IGNORE("_gh-is-a-dev-o", "TXT"), + IGNORE("_gh-is-a-dev-o.**", "TXT"), + IGNORE("_github-pages-challenge-is-a-dev", "TXT"), + IGNORE("_github-pages-challenge-is-a-dev.**", "TXT"), + IGNORE("_psl", "TXT"), + IGNORE("autoconfig", "CNAME"), + IGNORE("autodiscover", "CNAME"), + IGNORE("data", "CNAME"), + IGNORE("docs", "CNAME"), + IGNORE("ns[1-4]", "A,AAAA"), + IGNORE("raw", "CNAME"), + IGNORE("www", "*") +]; + +D(domainName, registrar, dnsProvider, records, ignored); diff --git a/domains/0.json b/domains/0.json index e4788bcf6..26794001b 100644 --- a/domains/0.json +++ b/domains/0.json @@ -3,7 +3,7 @@ "username": "S4IL21", "email": "s4il.is.a.dev@gmail.com" }, - "record": { + "records": { "CNAME": "s4il21.github.io" } } diff --git a/domains/00.json b/domains/00.json index fe125c21b..25153be85 100644 --- a/domains/00.json +++ b/domains/00.json @@ -3,7 +3,7 @@ "username": "Rayrsn", "email": "rayrsn@proton.me" }, - "record": { + "records": { "URL": "https://rayrsn.me/" } } diff --git a/domains/00001.json b/domains/00001.json deleted file mode 100644 index 4fb2c2b47..000000000 --- a/domains/00001.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "SatyamV7.is-a.dev", - "repo": "https://github.com/SatyamV7/SatyamV7.github.io", - "owner": { - "username": "SatyamV7", - "email": "satyamverma46@outlook.com" - }, - "record": { - "CNAME": "satyamv7.github.io" - } -} diff --git a/domains/01.json b/domains/01.json index fe125c21b..25153be85 100644 --- a/domains/01.json +++ b/domains/01.json @@ -3,7 +3,7 @@ "username": "Rayrsn", "email": "rayrsn@proton.me" }, - "record": { + "records": { "URL": "https://rayrsn.me/" } } diff --git a/domains/011.json b/domains/011.json index ace8aeeb8..c533c727b 100644 --- a/domains/011.json +++ b/domains/011.json @@ -3,7 +3,7 @@ "username": "iamxani", "email": "xenpei11@gmail.com" }, - "record": { + "records": { "CNAME": "iamxani.github.io" } } diff --git a/domains/026.json b/domains/026.json index 87fb5e171..190dc69db 100644 --- a/domains/026.json +++ b/domains/026.json @@ -1,10 +1,9 @@ { "owner": { "username": "conaitus", - "discord": "772867638920609823", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYStWS9u7kn8H-BJLNUxA0PsFkP5qxGPZm-HYknRfHbFc6c3X2z3Fyz2NQcDz1Du3xpCP58mQsd4lEB9ZBYuzYy8f0xpwr_NeZ1H8l8qIrcekOv3znNXBzfEb5f_jY9lzqUCqD-1f3_X-9J-Q403qxVvx3Tg-7rtUNNtuy4nGPWQK92f1MQva2K2mtFjcvwQyKJLhf1hYakfULm_1UnknYTnfcBmsUZL42CzCeZia9ofvahOGjl4tapLWMbcb3gKtY2cIm37aF3bAXvIIpd50BOv8k4J0NAiKB_1pTcPJlIjvPasoD7-sZBTZ9b5gjjIpajuJaJrh2L5ZN5L4c3X8A.T8PosqQdCtq5qKzL_90vWQ.UCrMJwoBu-vRd5Wj4oS-B63aoapDpka6A0x31G1GpIbzUO-7kHBO1uK7c9rDPpAnuHkOSEp0evh9PJ2-7E1xI-UDIjVkLlE6KUL0eBD8oO0.U0OIRYK4tTs9GV6b1FiarQ" + "discord": "772867638920609823" }, - "record": { + "records": { "A": ["77.175.38.88"] } } diff --git a/domains/0ad.json b/domains/0ad.json index e6ec978b1..81497e5de 100644 --- a/domains/0ad.json +++ b/domains/0ad.json @@ -5,7 +5,7 @@ "email": "broduer@aogamers.net", "discord": "[AoG+] Broduer#0331" }, - "record": { + "records": { "URL": "https://play0ad.com" } } diff --git a/domains/0l1v3r.json b/domains/0l1v3r.json index 79315f6d5..dbb6b0770 100644 --- a/domains/0l1v3r.json +++ b/domains/0l1v3r.json @@ -1,10 +1,9 @@ { "owner": { "username": "chuckchicken100", - "discord": "815256243786350594", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T8bRgPEutjHjEjKjSZNHRhoeLZVxW_dxgWIwpTe7r5vVqdbx-MtV23kRR7ZKYKO5fyRcvR0i-rxyVTqWyk141vjXvjvx0-op0G2EzSBfPUif_y9VrSXOe03MuIk0fE8J8QVxN5nYNFR4-mhamlVOml5EzQh2NJYtL0y6jyV2NNZn6xn0L2E_6wpNiszZoxCt7lmBmbN9r5pEA8n3CPca8XY9nDqSNwQIufuVkGoifmbluGWKMCJl1NJYBtBqtF70_5fDOTGAGi2aWqJ3ZRmJENvdnafjSOxK4HNYu1rqa7HeCSIW0EBsTfvcHZAyqVqMAXkaK-2wKJbWgsZmV7iaEQ.-i_4qpIVnvNZiYt-GHAjew.RPKfuVCpY1wTAP-uBHPZs-kduKC-cCB_rovn1uOJyIEgEZeOU3BQiHgzDdTNiitXiPKhLaWfg7A9VGYqEfJQt9aIoSoDGdWv_e46o4aKMhQ.TIzGWSSO6JchPkdCTKqn9g" + "discord": "815256243786350594" }, - "record": { + "records": { "A": ["103.97.126.29"] } } diff --git a/domains/0spol.json b/domains/0spol.json new file mode 100644 index 000000000..e9d48b8da --- /dev/null +++ b/domains/0spol.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/0spol/0spol.github.io", + "owner": { + "username": "0spol", + "email": "gaparicio368@gmail.com" + }, + "records": { + "CNAME": "0spol.github.io" + } +} diff --git a/domains/0v90.json b/domains/0v90.json index 3df4851e1..d3793ed5d 100644 --- a/domains/0v90.json +++ b/domains/0v90.json @@ -5,12 +5,7 @@ "username": "0v90", "discord": "651519394673065989" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/0w0.json b/domains/0w0.json index 5e5027109..f00fcdac0 100644 --- a/domains/0w0.json +++ b/domains/0w0.json @@ -1,10 +1,9 @@ { "owner": { "username": "SkyExploreWasTaken", - "discord": "1049263707177353247", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ae9lxcsRx9K7NJv-AcRXmgm-8sWQp-2e6Pxly82K9_797Wy3RjBtVGaq9snYtOkL-Qm9Oj845TiS8DV-ae7fPyWYwHgzrDj99tuRjVFyrvWfCbglvOWWHODsjV5lJpJZQjuHQn08O1Ptv69N5E2-imTQegZhcn5pkMiTCW8VpuXNXD_1Viu5_xSUYXYaAsaY-G0QYNLK3IPky8zorgdC4-5w23htVxmbiAMTtqHHOJx-wqv2R-xya96-BlQ_P8GtCTG5XJQzdqrqz630012T_tdD5VL5wbBbsCcWI4EoHqGZcBt4LhUL0GPnr9jnWuTcoBVyMSevG6plNjPF9wc6WQ.cOsFit33h3r9GZdCYQ8B3Q.iOkTaYYCBBWaWv9ZtDxpCL4ix4zMWwIYcIMuje17bYUcWom6plFOQFmG24WCucDMgbeMd_eM0NdttpHYRdl7VaM_E4zTUMViGInDWEO1ucI2whNYUt3Cf1Zev1851l44.eoIzam49yND7K-OzfY6Rag" + "discord": "1049263707177353247" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/0x0.json b/domains/0x0.json index 050170310..50db96a71 100644 --- a/domains/0x0.json +++ b/domains/0x0.json @@ -7,7 +7,7 @@ "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": { + "records": { "CNAME": "insomnia247.nl" } } diff --git a/domains/0x1026.json b/domains/0x1026.json index 268a804f7..050c64741 100644 --- a/domains/0x1026.json +++ b/domains/0x1026.json @@ -3,7 +3,7 @@ "username": "0x1026", "email": "me@hugovidafe.dev" }, - "record": { + "records": { "URL": "https://hugovidafe.dev" } } diff --git a/domains/0x3st.json b/domains/0x3st.json index a9a3f8263..450a22582 100644 --- a/domains/0x3st.json +++ b/domains/0x3st.json @@ -6,7 +6,7 @@ "email": "t.yamaishi@qq.com", "twitter": "TenkutiYamaishi" }, - "record": { + "records": { "CNAME": "0x3st.github.io" } } diff --git a/domains/0xarchit.json b/domains/0xarchit.json new file mode 100644 index 000000000..48dba9ea8 --- /dev/null +++ b/domains/0xarchit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xarchit", + "email": "0xarchit@proton.me" + }, + "records": { + "NS": ["brenna.ns.cloudflare.com", "cartman.ns.cloudflare.com"] + } +} diff --git a/domains/0xbit.json b/domains/0xbit.json new file mode 100644 index 000000000..8d53dfd91 --- /dev/null +++ b/domains/0xbit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xbitx", + "email": "0xbit25125@gmail.com" + }, + "records": { + "CNAME": "0xbitx.github.io" + } +} diff --git a/domains/0xflotus.json b/domains/0xflotus.json index ac0e446cc..1a2a58ef5 100644 --- a/domains/0xflotus.json +++ b/domains/0xflotus.json @@ -5,7 +5,7 @@ "username": "0xflotus", "email": "0xflotus@gmail.com" }, - "record": { + "records": { "CNAME": "0xflotus.github.io" } } diff --git a/domains/0xmaruf.json b/domains/0xmaruf.json new file mode 100644 index 000000000..ea69c387b --- /dev/null +++ b/domains/0xmaruf.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Portfolio Hosted on Netlify", + "repo": "https://github.com/Marufms4/0xMarufNextjs", + "owner": { + "username": "marufms4", + "email": "marufsm4@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + }, + "url": "https://marufcseuu.netlify.app/" +} diff --git a/domains/0xviel.json b/domains/0xviel.json index 32f519919..2cf63860e 100644 --- a/domains/0xviel.json +++ b/domains/0xviel.json @@ -6,7 +6,7 @@ "email": "contact@0xviel.my.id", "discord": "445073800850046977" }, - "record": { + "records": { "CNAME": "nobuyaki.github.io" } } diff --git a/domains/0xzer0x.json b/domains/0xzer0x.json index 51d264430..875661350 100644 --- a/domains/0xzer0x.json +++ b/domains/0xzer0x.json @@ -3,7 +3,7 @@ "username": "0xzer0x", "email": "youssefessamasu@gmail.com" }, - "record": { + "records": { "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": [ "forward-email=youssefessamasu@gmail.com", diff --git a/domains/1.json b/domains/1.json index ccf0df602..1d93a2c9f 100644 --- a/domains/1.json +++ b/domains/1.json @@ -4,7 +4,7 @@ "username": "i-am-is-a-dev", "email": "lx737456@gmail.com" }, - "record": { + "records": { "A": ["89.106.200.1"] } } diff --git a/domains/1024.json b/domains/1024.json new file mode 100644 index 000000000..79d12e782 --- /dev/null +++ b/domains/1024.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leopku", + "discord": "1168846640464019570" + }, + "records": { + "URL": "https://www.himysql.com" + } +} diff --git a/domains/104.json b/domains/104.json index dfbcd6dcd..68c884651 100644 --- a/domains/104.json +++ b/domains/104.json @@ -4,7 +4,7 @@ "username": "QuinceTart10", "discord": "862644161156218891" }, - "record": { + "records": { "MX": [ "a8aacaa795f68ffd.mx1.emailprofi.seznam.cz", "a8aacaa795f68ffd.mx2.emailprofi.seznam.cz" diff --git a/domains/111.json b/domains/111.json new file mode 100644 index 000000000..b00999cbc --- /dev/null +++ b/domains/111.json @@ -0,0 +1,11 @@ +{ + "description": "This domain is my bios webpage created using html, js and css", + "repo": "https://github.com/jaycuh/jaycuh.github.io", + "owner": { + "username": "joaawd", + "email": "fmodeteam@gmail.com" + }, + "records": { + "CNAME": "jaycuh.github.io" + } +} diff --git a/domains/1111.json b/domains/1111.json index 03845c585..92f5c3b75 100644 --- a/domains/1111.json +++ b/domains/1111.json @@ -3,7 +3,7 @@ "username": "PogMaster9001", "discord": "1190052608346435597" }, - "record": { + "records": { "CNAME": "projectdevs.net" } } diff --git a/domains/13nn07.json b/domains/13nn07.json index ddf8a01a7..45fb11893 100644 --- a/domains/13nn07.json +++ b/domains/13nn07.json @@ -5,7 +5,7 @@ "username": "navandarnidhi", "email": "nidhi.navandar@mescoeorg.onmicrsoft.com" }, - "record": { + "records": { "CNAME": "navandarnidhi.github.io" } } diff --git a/domains/1995parham.json b/domains/1995parham.json new file mode 100644 index 000000000..6f7fc11b9 --- /dev/null +++ b/domains/1995parham.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website", + "owner": { + "username": "1995parham", + "email": "parham.alvani@gmail.com" + }, + "records": { + "CNAME": "1995parham.github.io" + } +} diff --git a/domains/1ndrajeet.json b/domains/1ndrajeet.json new file mode 100644 index 000000000..3fdd867cc --- /dev/null +++ b/domains/1ndrajeet.json @@ -0,0 +1,11 @@ +{ + "description": "Applying for an is-a.dev domain for my portfolio. (1ndrajeet.vercel.app)", + "repo": "https://github.com/1ndrajeet/1ndrajeet.github.io", + "owner": { + "username": "1ndrajeet", + "email": "omkar.kulkarni.3174@gmail.com" + }, + "records": { + "CNAME": "1ndrajeet.vercel.app" + } +} diff --git a/domains/1rogman.json b/domains/1rogman.json index 573650b56..22ffb351a 100644 --- a/domains/1rogman.json +++ b/domains/1rogman.json @@ -5,7 +5,7 @@ "username": "EndingPencil", "email": "watsonsohil@gmail.com" }, - "record": { + "records": { "CNAME": "endingpencil.github.io" } } diff --git a/domains/1tfr.json b/domains/1tfr.json index 20975ec1c..ed4b802d9 100644 --- a/domains/1tfr.json +++ b/domains/1tfr.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "gimmywashere", - "discord": "792467650038857748", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G8bQtlAC_K5K-sdnpRQFXtq9H-BJAxXswVmMcZl9dCd4Mx8utIM-wKg-rI20met2wnfK6SNI1dMIFOkdSflITyde93ET8gWwAJNGp18vBl7f416oU7agxTocIXnYiEepVXe2xAqu42dz5eazX_3e_TGFAayBW6mFynhUd2WvFFFIv-BQX1Lh2kTETnV0LBC27Zeiy3J2Nb-9zFyIGgx-I9qars-Q3W2gPwioDbyTc34HWrZrb-v4gDGGEkzCGaO2ct9W7b8BFdWHqsUua3SD59Yec6r8ytCLRpfJp-griYtdKprGl1Md71alh2ntZc8bjXJ6f4dZl_sLvPAArFfvUw.1H7oEmNDK3MLdFoNadP2Kg.xDYLtCuquekDlq9YaIxM63iY2YMEFWd91CxxwuO7uwk8qc9hbQWqBuXA0MQfG_3NRyarb8nNgMGEj0ghKyfxSm1YWQ8M4PK5OPQTub54LiU.8CgG1B1Jv04SYfXkFJhAZQ" - }, - - "record": { - "CNAME": "ammo.lol" - } - } - \ No newline at end of file + "owner": { + "username": "gimmywashere", + "discord": "792467650038857748" + }, + "records": { + "CNAME": "ammo.lol" + } +} diff --git a/domains/2.json b/domains/2.json index 5e6f21eae..40a516b93 100644 --- a/domains/2.json +++ b/domains/2.json @@ -1,10 +1,10 @@ { - "description": "LIGMATV's URL Manager (aka 2)", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "CNAME": "ligmatv-links.vercel.app" - } -} + "description": "LIGMATV's URL Manager (aka 2)", + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "records": { + "CNAME": "ligmatv-links.vercel.app" + } +} diff --git a/domains/200anxy.json b/domains/200anxy.json index 476e8e5f6..c2f003426 100644 --- a/domains/200anxy.json +++ b/domains/200anxy.json @@ -3,7 +3,7 @@ "username": "200anxy", "email": "aadarshnair.p@gmail.com" }, - "record": { + "records": { "CNAME": "200anxy.github.io" } } diff --git a/domains/207.json b/domains/207.json index 92fec3e09..b906ff852 100644 --- a/domains/207.json +++ b/domains/207.json @@ -3,7 +3,7 @@ "username": "merakesh207", "email": "merakesh207@gmail.com" }, - "record": { + "records": { "URL": "https://behance.net/merakesh207" } } diff --git a/domains/2096779623.json b/domains/2096779623.json index f474ee3dc..7dc118965 100644 --- a/domains/2096779623.json +++ b/domains/2096779623.json @@ -4,7 +4,7 @@ "email": "2096779623@qq.com", "telegram": "utermux_blog" }, - "record": { + "records": { "URL": "https://www.utermux.dev" } } diff --git a/domains/20zzy19.json b/domains/20zzy19.json new file mode 100644 index 000000000..a39de50f8 --- /dev/null +++ b/domains/20zzy19.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio and Blog for 20zzy19", + "repo": "https://github.com/20zzy19/Portfolioy", + "owner": { + "username": "20zzy19", + "email": "a620zzy@gmail.com" + }, + "records": { + "A": ["98.43.59.193"] + } +} diff --git a/domains/21z.json b/domains/21z.json index 17b36cb16..88fa22ce7 100644 --- a/domains/21z.json +++ b/domains/21z.json @@ -3,7 +3,7 @@ "username": "21Z", "discord": "780356848737058857" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/256javy.json b/domains/256javy.json new file mode 100644 index 000000000..de115c9c9 --- /dev/null +++ b/domains/256javy.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/256javy/256javy.github.io", + "owner": { + "username": "256javy", + "email": "256javiervillalba@gmail.com" + }, + "records": { + "CNAME": "256javy.github.io" + } +} diff --git a/domains/2giosangmitom.json b/domains/2giosangmitom.json index 37e11d6c0..2d654abae 100644 --- a/domains/2giosangmitom.json +++ b/domains/2giosangmitom.json @@ -1,9 +1,9 @@ { "owner": { "username": "2giosangmitom", - "email": "yeuxacucodon.dev@proton.me" + "email": "2giosangmitom@gmail.com" }, - "record": { - "CNAME": "2giosangmitom.github.io" + "records": { + "CNAME": "blog-o7t.pages.dev" } } diff --git a/domains/37cut.json b/domains/37cut.json index 9a9bc8d7f..30817882e 100644 --- a/domains/37cut.json +++ b/domains/37cut.json @@ -5,7 +5,7 @@ "username": "37cut", "email": "cutt37@outlook.com" }, - "record": { + "records": { "URL": "https://cutt37.is-a.dev" } } diff --git a/domains/3gee.json b/domains/3gee.json index 9addba996..ab318634b 100644 --- a/domains/3gee.json +++ b/domains/3gee.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "3geETR", - "email": "egemacun@gmail.com" - }, - "record": { - "CNAME": "3geetr.github.io" - } + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "records": { + "CNAME": "3geetr.github.io" + } } diff --git a/domains/3pls0de.json b/domains/3pls0de.json index 0e1e6ae5e..d7fb161ec 100644 --- a/domains/3pls0de.json +++ b/domains/3pls0de.json @@ -1,11 +1,10 @@ { "description": "3pls0de.is-a.dev.", - "repo": "https://github.com/3pls0de", "owner": { "username": "3pls0de", "email": "naji.aka58@gmail.com" }, - "record": { + "records": { "URL": "https://lostpipel.blogspot.com" } } diff --git a/domains/4-m4t.json b/domains/4-m4t.json index 9a6c53bf3..165c52217 100644 --- a/domains/4-m4t.json +++ b/domains/4-m4t.json @@ -3,7 +3,7 @@ "username": "4-m4t", "email": "e_serhat@hotmail.com" }, - "record": { + "records": { "CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net" } } diff --git a/domains/404.json b/domains/404.json index 2ef34e830..b2f636d4f 100644 --- a/domains/404.json +++ b/domains/404.json @@ -3,7 +3,7 @@ "username": "404Dev-404", "email": "anthonyvaldes318+404@gmail.com" }, - "record": { + "records": { "CNAME": "404dev-404.github.io" } } diff --git a/domains/44.json b/domains/44.json index 348a95092..2d14b4eff 100644 --- a/domains/44.json +++ b/domains/44.json @@ -5,7 +5,7 @@ "username": "9xN", "email": "0@fbi.ac" }, - "record": { + "records": { "CNAME": "9xn.github.io" } } diff --git a/domains/45i.json b/domains/45i.json index 85d56fc8e..f0b1b4e55 100644 --- a/domains/45i.json +++ b/domains/45i.json @@ -5,7 +5,7 @@ "username": "45i", "email": "sayakpalit61@gmail.com" }, - "record": { + "records": { "CNAME": "45i.github.io" } } diff --git a/domains/4hmet.json b/domains/4hmet.json new file mode 100644 index 000000000..6986b48eb --- /dev/null +++ b/domains/4hmet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahmetunsal", + "email": "web.unsalahmet@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/4k5h4y.json b/domains/4k5h4y.json index 4a6670734..1ff52c300 100644 --- a/domains/4k5h4y.json +++ b/domains/4k5h4y.json @@ -3,7 +3,7 @@ "username": "Akshay-Arjun", "email": "akshayvollala779@gmail.com" }, - "record": { + "records": { "URL": "https://akshay-arjun.github.io/Akshay-Arjun" } } diff --git a/domains/50x.json b/domains/50x.json index 753d855b4..98399c657 100644 --- a/domains/50x.json +++ b/domains/50x.json @@ -3,7 +3,7 @@ "username": "MullerIsabella", "email": "AlpineDreamer92@protonmail.com" }, - "record": { + "records": { "CNAME": "suisse.onrender.com" } } diff --git a/domains/57.json b/domains/57.json index 6d3e7a757..d0e51dc5e 100644 --- a/domains/57.json +++ b/domains/57.json @@ -3,7 +3,13 @@ "username": "fiftys7vencode", "email": "potatogamer34579@gmail.com" }, - "record": { - "A": ["185.199.108.153"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/5y8z.json b/domains/5y8z.json new file mode 100644 index 000000000..71edb7343 --- /dev/null +++ b/domains/5y8z.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "5y8z", + "email": "dev.xcept@gmail.com" + }, + "records": { + "CNAME": "5y8z.vercel.app" + } +} diff --git a/domains/6.json b/domains/6.json index ecafdb143..d299bb2c2 100644 --- a/domains/6.json +++ b/domains/6.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "URL": "https://shockbs.is-a.dev/" } } diff --git a/domains/600.json b/domains/600.json index 6df43d890..8469ef34a 100644 --- a/domains/600.json +++ b/domains/600.json @@ -4,7 +4,7 @@ "username": "5rq", "email": "600@fbi.ac" }, - "record": { + "records": { "CNAME": "5rq.github.io" } } diff --git a/domains/62radio.json b/domains/62radio.json index 5d3264644..1643a5bbe 100644 --- a/domains/62radio.json +++ b/domains/62radio.json @@ -6,7 +6,7 @@ "email": "lrmn.dev@gmail.com", "discord": "romanromannya#0" }, - "record": { + "records": { "CNAME": "radio-indonesia.github.io" } } diff --git a/domains/6502.json b/domains/6502.json index 8843bd54d..6937c9328 100644 --- a/domains/6502.json +++ b/domains/6502.json @@ -5,7 +5,7 @@ "username": "Nobody5050", "email": "levibelland@gmail.com" }, - "record": { + "records": { "CNAME": "nobody5050.github.io" } } diff --git a/domains/69.json b/domains/69.json deleted file mode 100644 index 0f2d4e83b..000000000 --- a/domains/69.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "maskduck", - "discord": "716134528409665586" - }, - "record": { - "CNAME": "maskduck.pages.dev" - } -} diff --git a/domains/7.json b/domains/7.json index ac6d8be91..bb915300e 100644 --- a/domains/7.json +++ b/domains/7.json @@ -1,10 +1,9 @@ { "owner": { "username": "realSunyz", - "discord": "800186537719365662", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lcA-FDIDxbODMySbmJgJOi2oJl04JAODrUgFTVwXa0w-jncbJ6Frvykm7oGVxqKmtOMnRJD7wVTl1Sfr-Y-nOAmN0ZY6FNW1vR1kwY1x_sXLnko9S_t-p0dgZ7lo1cVI1TcL2Z0C7yGOgK06U02dB7tN-m9piRa2cf09QM35oLm8_UZvTeZeCLRJnzTG3FVK0yosy38oXIk0c3oNgEkgufTQZDJgmh4lU4Ws8qmCdrqzRCFFUoNarx_6Q3y22we1x_zr4fGGqarv2lVZOz7DR0_zDK7jrsoC4-42sM_WnECfCVGxyMPeWbNlQyrfqzJjcM2MvKwodx5KbJBHOkRhoA.6n1HQotWwFwdkIu61eaz4A.T-S96mKQwHRD78Xq-8h1htrsFx8PI5XxRneVrP_yed28BIRAtjcNLNvj4CwwaewrNeRp8MBDVYAjKKl79gDZSvnX7SuusOU2Cj82tFkpdJeR_vyqTyODUx5rIIMtD2p5.5MxztQbJrVaqmRuW6e57Cg" + "discord": "800186537719365662" }, - "record": { + "records": { "CNAME": "pub-seven-intro.pages.dev" } } diff --git a/domains/7z.json b/domains/7z.json index 226fd4575..f437d93ca 100644 --- a/domains/7z.json +++ b/domains/7z.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "XikiZxGS", - "discord": "1015654462334971925", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kNjv0EEp6UIN8_jPk0TdLMyTslpHdTnysn-P5MDOuH0LfVqLDOyN99OFSrg2vYYuiUM5-4DcKlgbkkL0058Fq241CIaKmwnabVQ2tcEch4QNl3jEbUDUP9sNp6h-D7_AQjHPTnW8P297FrZ2sNkJLabJ5hTgeEuns8CypzoVOy8I6GwdC6aL2OXLwl21L-CEUKHrO0CvLi-OGWp4Lkx1IowXksW8o-y91NKgmal6t7Qxp2K89pJ0byiXIpu9L1aNBYKNfR_Q5_rPmr9XWMiVBojgyog8YPmmweAYO1kViNPJLSZHIth1pOEM2fjZQzaWAUdqK-AgRYyPld0RuutfDw.3zQYmH_sLC-vr73VkslM0A.LDOyObkmMtZ3W48zwT9bVwhqMZsy21eW2CfjUy4k9tRm0XYJqT6GQLt-PeQ9yPcP9TIFDm4TvyZTrMewZCOs1hHrRKHbJnxSdekzx2Hnb_Y.ZglWFD_r-t4Zwp9ojse5Gg" - }, - - "record": { - "CNAME": "xikizxgs.github.io" - } - } - \ No newline at end of file + "owner": { + "username": "XikiZxGS", + "discord": "1015654462334971925" + }, + "records": { + "CNAME": "xikizxgs.github.io" + } +} diff --git a/domains/8bit.json b/domains/8bit.json index 3645a0037..fddc621ef 100644 --- a/domains/8bit.json +++ b/domains/8bit.json @@ -3,7 +3,7 @@ "username": "8-bittt", "email": "8botted@gmail.com" }, - "record": { + "records": { "URL": "https://replit.com/@8bittt?path=" } } diff --git a/domains/@.json b/domains/@.json deleted file mode 100644 index 1a39a92d6..000000000 --- a/domains/@.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "is-a-dev.github.io" - } -} diff --git a/domains/_acme-challenge.analytics.juststudio.json b/domains/_acme-challenge.analytics.juststudio.json new file mode 100644 index 000000000..a924b8fd6 --- /dev/null +++ b/domains/_acme-challenge.analytics.juststudio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "records": { + "CNAME": "78515120d374647d2302076e._acme.deno.dev" + } +} diff --git a/domains/_acme-challenge.api.juststudio.json b/domains/_acme-challenge.api.juststudio.json index 1d3e92ea1..47b053271 100644 --- a/domains/_acme-challenge.api.juststudio.json +++ b/domains/_acme-challenge.api.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "ec675496b91489e24d221965._acme.deno.dev" } } diff --git a/domains/_acme-challenge.oioioi.json b/domains/_acme-challenge.oioioi.json index 1bb254789..a07148397 100644 --- a/domains/_acme-challenge.oioioi.json +++ b/domains/_acme-challenge.oioioi.json @@ -3,7 +3,7 @@ "username": "VaibhavSys", "email": "vaibhavsys@protonmail.com" }, - "record": { + "records": { "CNAME": "b00be066-ce45-455f-bb4a-de9f6dc14e0c.acmedns.infinityfree.net" } } diff --git a/domains/_acme-challenge.parrot.json b/domains/_acme-challenge.parrot.json index 56caa0f6e..19e0e5233 100644 --- a/domains/_acme-challenge.parrot.json +++ b/domains/_acme-challenge.parrot.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" + "discord": "1167825360151380032" }, - "record": { + "records": { "CNAME": "51de1eeaf31ce67a1c3f69aa._acme.deno.dev" } } diff --git a/domains/_acme-challenge.raafey.json b/domains/_acme-challenge.raafey.json index 59d86c9fe..d290486d8 100644 --- a/domains/_acme-challenge.raafey.json +++ b/domains/_acme-challenge.raafey.json @@ -3,7 +3,7 @@ "username": "RaafeyRaza", "email": "raafeyraza1@gmail.com" }, - "record": { + "records": { "CNAME": "dc6fbbae-3aba-4a5d-9741-4b7a386b9151.acmedns.infinityfree.net" } } diff --git a/domains/_acme-challenge.shadowjobs.json b/domains/_acme-challenge.shadowjobs.json new file mode 100644 index 000000000..5b967a529 --- /dev/null +++ b/domains/_acme-challenge.shadowjobs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shadowjobs", + "email": "shadowjobs@qq.com" + }, + "records": { + "TXT": "GL77s4yYmKen3roum2OpMV6JmBoL9O_NdCTBVW9PkEE" + } +} diff --git a/domains/_acme-challenge.us.mcstatus.json b/domains/_acme-challenge.us.mcstatus.json index 5e795b5a4..b2d32889f 100644 --- a/domains/_acme-challenge.us.mcstatus.json +++ b/domains/_acme-challenge.us.mcstatus.json @@ -4,7 +4,7 @@ "discord": "1167825360151380032", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" }, - "record": { + "records": { "CNAME": "e6797667cd820de372823eb4._acme.deno.dev" } } diff --git a/domains/_atproto.alvin.json b/domains/_atproto.alvin.json index f1c615d37..a64f4e7a8 100644 --- a/domains/_atproto.alvin.json +++ b/domains/_atproto.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "TXT": "did=did:plc:jkk7sl4llede4zzj2ctgkwsc" } } diff --git a/domains/_atproto.catto24.json b/domains/_atproto.catto24.json index 92d85afa0..cec2afce4 100644 --- a/domains/_atproto.catto24.json +++ b/domains/_atproto.catto24.json @@ -4,7 +4,7 @@ "username": "catto24", "email": "catto24@proton.me" }, - "record": { + "records": { "TXT": "did=did:plc:whzff4s3db6taso3s43ylrou" } } diff --git a/domains/_atproto.clyron.json b/domains/_atproto.clyron.json index a3aa6897e..47537bcea 100644 --- a/domains/_atproto.clyron.json +++ b/domains/_atproto.clyron.json @@ -3,7 +3,7 @@ "username": "theclyron", "email": "onenonlyclyron@gmail.com" }, - "record": { + "records": { "TXT": "did=did:plc:fqvzbqsjzjkl4o66rfp6cgk3" } } diff --git a/domains/_atproto.crischutu07.json b/domains/_atproto.crischutu07.json index e9754feb8..05f26263e 100644 --- a/domains/_atproto.crischutu07.json +++ b/domains/_atproto.crischutu07.json @@ -4,7 +4,7 @@ "email": "crischutu07owo@gmail.com", "description": "Bluesky custom handle." }, - "record": { + "records": { "TXT": "did=did:plc:tfpfqi3qewuc5ugaipb57waa" } } diff --git a/domains/_atproto.exyxz.json b/domains/_atproto.exyxz.json new file mode 100644 index 000000000..150d71d7e --- /dev/null +++ b/domains/_atproto.exyxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "records": { + "TXT": "did=did:plc:73r55srxmmlhhiof7fnllisy" + } +} diff --git a/domains/_atproto.hcj.json b/domains/_atproto.hcj.json index 40a3999bd..1958af13d 100644 --- a/domains/_atproto.hcj.json +++ b/domains/_atproto.hcj.json @@ -1,10 +1,10 @@ { - "description": "domain verification for bluesky", - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - } - } \ No newline at end of file + "description": "domain verification for bluesky", + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "records": { + "TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + } +} diff --git a/domains/_atproto.horibyte.json b/domains/_atproto.horibyte.json new file mode 100644 index 000000000..9b173d6a7 --- /dev/null +++ b/domains/_atproto.horibyte.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "horibyte", + "email": "thehoribyte@gmail.com" + }, + "records": { + "TXT": "did=did:plc:5ls3iv54vrppjxbs5ztocd75" + } +} diff --git a/domains/_atproto.jumanji.json b/domains/_atproto.jumanji.json new file mode 100644 index 000000000..a3d5976b7 --- /dev/null +++ b/domains/_atproto.jumanji.json @@ -0,0 +1,10 @@ +{ + "description": "domain verification for bluesky", + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge50@silomails.com" + }, + "records": { + "TXT": "did=did:plc:nrjpabfv3zoxd6kiwr6fs4lq" + } +} diff --git a/domains/_atproto.ligmatv.json b/domains/_atproto.ligmatv.json deleted file mode 100644 index fa991f375..000000000 --- a/domains/_atproto.ligmatv.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Domain verification for my Bluesky account.", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "TXT": "did=did:plc:pibkszlhfix34y257kqcozix" - } -} diff --git a/domains/_atproto.lua.json b/domains/_atproto.lua.json new file mode 100644 index 000000000..92b79faad --- /dev/null +++ b/domains/_atproto.lua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "notxlua", + "email": "notxlua@gmail.com" + }, + "records": { + "TXT": "did=did:plc:j7iap5lpvblnrr7lygisgjzp" + } +} diff --git a/domains/_atproto.luihh.json b/domains/_atproto.luihh.json index 3e7edd867..6c0b0cb3b 100644 --- a/domains/_atproto.luihh.json +++ b/domains/_atproto.luihh.json @@ -4,7 +4,7 @@ "username": "luihh", "email": "luihh@proton.me" }, - "record": { + "records": { "TXT": "did=did:plc:nkzlgllahrw2v2y6p4inqx6t" } } diff --git a/domains/_atproto.lumi.json b/domains/_atproto.lumi.json new file mode 100644 index 000000000..e8f3a338d --- /dev/null +++ b/domains/_atproto.lumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itssfatlum", + "email": "fatlum@lumi.is-a.dev" + }, + "records": { + "TXT": "did=did:plc:c6m5rghb7tkmf5isd3pqjpbt" + } +} diff --git a/domains/_atproto.narasima.json b/domains/_atproto.narasima.json new file mode 100644 index 000000000..624d2ce14 --- /dev/null +++ b/domains/_atproto.narasima.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com", + "discord": "gamingdoodle" + }, + "records": { + "TXT": "did=did:plc:u5uxl7mjlywolajtgso2ouoe" + } +} diff --git a/domains/_atproto.notcoded.json b/domains/_atproto.notcoded.json new file mode 100644 index 000000000..f33c478ee --- /dev/null +++ b/domains/_atproto.notcoded.json @@ -0,0 +1,11 @@ +{ + "description": "domain verification for bluesky", + "owner": { + "username": "not-coded", + "discord": "notcoded", + "discordUserID": "620662953347121163" + }, + "records": { + "TXT": "did=did:plc:hvgfiqmdl5sqcba2453dfpxe" + } +} diff --git a/domains/_atproto.priyanshu.json b/domains/_atproto.priyanshu.json new file mode 100644 index 000000000..1884b8dd5 --- /dev/null +++ b/domains/_atproto.priyanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Priyansxu", + "email": "priyansxu@yahoo.com" + }, + "records": { + "TXT": "did=did:plc:psimj7hgshwoets2jvd6caib" + } +} diff --git a/domains/_atproto.raccoon.json b/domains/_atproto.raccoon.json new file mode 100644 index 000000000..8b52f41e5 --- /dev/null +++ b/domains/_atproto.raccoon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nilsraccoon", + "discord": "1129507464589627512" + }, + "records": { + "TXT": "did=did:plc:25w7vwbzb2e3h7cnflqskp37" + } +} diff --git a/domains/_autodiscover._tcp.stefdp.json b/domains/_autodiscover._tcp.stefdp.json new file mode 100644 index 000000000..12c5d424f --- /dev/null +++ b/domains/_autodiscover._tcp.stefdp.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "Stef-00012", + "discord": "694986201739952229" + }, + "records": { + "SRV": [ + { + "priority": 0, + "weight": 65535, + "port": 443, + "target": "mail.stefdp.com" + } + ] + } +} diff --git a/domains/_discord.0xviel.json b/domains/_discord.0xviel.json index 0b0a270aa..812ad7627 100644 --- a/domains/_discord.0xviel.json +++ b/domains/_discord.0xviel.json @@ -4,7 +4,7 @@ "email": "contact@0xviel.my.id", "discord": "445073800850046977" }, - "record": { + "records": { "TXT": "dh=3553e848300a672fa174b27085b19d419d95ef75" } } diff --git a/domains/_discord.abeja.json b/domains/_discord.abeja.json new file mode 100644 index 000000000..3f41e8aa8 --- /dev/null +++ b/domains/_discord.abeja.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheRealCrazyfuy", + "discord": "realabeja", + "reddit": "crazyfuy" + }, + "records": { + "TXT": "dh=af03f42bbbaaca145280cdd080f105feb02a9145" + } +} diff --git a/domains/_discord.aboutjes.json b/domains/_discord.aboutjes.json index f39aebfeb..016cefca3 100644 --- a/domains/_discord.aboutjes.json +++ b/domains/_discord.aboutjes.json @@ -3,7 +3,7 @@ "username": "octyn-yt", "email": "simplelogin-newsletter.idealize471@simplelogin.com" }, - "record": { + "records": { "TXT": "dh=492dbadf8b48232a357717e9d54511826184e352" } } diff --git a/domains/_discord.acronical.json b/domains/_discord.acronical.json index b4ebaa00f..ff9f46c57 100644 --- a/domains/_discord.acronical.json +++ b/domains/_discord.acronical.json @@ -4,7 +4,7 @@ "email": "acronicalbusiness@gmail.com", "discord": "627045949998497792" }, - "record": { + "records": { "TXT": "dh=b787b100fba1eaf9de455acb506e5f6fdcf1e829" } } diff --git a/domains/_discord.adoqet.json b/domains/_discord.adoqet.json index c24ed9b26..d506e430a 100644 --- a/domains/_discord.adoqet.json +++ b/domains/_discord.adoqet.json @@ -4,7 +4,7 @@ "email": "adoqet@gmail.com", "discord": "614408768733708288" }, - "record": { + "records": { "TXT": "dh=3b5f69bbeb63aef097096698547869d0d47e36fb" } } diff --git a/domains/_discord.agent.json b/domains/_discord.agent.json new file mode 100644 index 000000000..c2ca18836 --- /dev/null +++ b/domains/_discord.agent.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "relentiousdragon", + "email": "relentoor@gmail.com" + }, + "records": { + "TXT": "dh=a261e0bde9e7d78a88462fda3c35222a35a348de" + } +} diff --git a/domains/_discord.ajtabs.json b/domains/_discord.ajtabs.json index 70bf21403..8ef62c090 100644 --- a/domains/_discord.ajtabs.json +++ b/domains/_discord.ajtabs.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "ajtabjs" - }, - "record": { - "TXT": ["dh=44c33bd9561dd8d8079e707868adf359b0c5ff05"] - } -} + "owner": { + "username": "ajtabjs" + }, + "records": { + "TXT": ["dh=44c33bd9561dd8d8079e707868adf359b0c5ff05"] + } +} diff --git a/domains/_discord.ak47.json b/domains/_discord.ak47.json index 2c41598d8..53deb5d01 100644 --- a/domains/_discord.ak47.json +++ b/domains/_discord.ak47.json @@ -3,7 +3,7 @@ "username": "octyn-yt", "email": "simplelogin-newsletter.idealize471@simplelogin.com" }, - "record": { + "records": { "TXT": "dh=a55cf3b9bc75b12674dfdd8e1d89219da7607931" } } diff --git a/domains/_discord.akcord.json b/domains/_discord.akcord.json index 1773b9414..a4f3dbbff 100644 --- a/domains/_discord.akcord.json +++ b/domains/_discord.akcord.json @@ -3,7 +3,7 @@ "username": "AKCord", "email": "shrestha.aeniv@gmail.com" }, - "record": { + "records": { "TXT": "dh=fc3eadcea1712e3159f516950cf20f2397647f63" } } diff --git a/domains/_discord.akk1to.json b/domains/_discord.akk1to.json index 6697420f7..1f72b676f 100644 --- a/domains/_discord.akk1to.json +++ b/domains/_discord.akk1to.json @@ -4,7 +4,7 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { + "records": { "TXT": ["dh=1b549c9ba1012a210482879df31eaddc4dbf0c7e"] } } diff --git a/domains/_discord.akshtt.json b/domains/_discord.akshtt.json index dc726fc6d..d67bf6bd4 100644 --- a/domains/_discord.akshtt.json +++ b/domains/_discord.akshtt.json @@ -4,7 +4,7 @@ "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, - "record": { + "records": { "TXT": "dh=09032e888f853fbc8b540d4ff64dc7abd828f107" } } diff --git a/domains/_discord.alecks.json b/domains/_discord.alecks.json index 08fd8af25..4af33ef94 100644 --- a/domains/_discord.alecks.json +++ b/domains/_discord.alecks.json @@ -4,7 +4,7 @@ "email": "contact@alecks.dev", "discord": "612522818294251522" }, - "record": { + "records": { "TXT": "dh=0d543348d17f2be631fd3a25c3ae3e099741ff81" } } diff --git a/domains/_discord.alimad.json b/domains/_discord.alimad.json new file mode 100644 index 000000000..3020b1c04 --- /dev/null +++ b/domains/_discord.alimad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Alimadcorp", + "email": "alimad.co.ltd@gmail.com" + }, + "records": { + "TXT": "dh=d9f9cb8af5ab95e23dd4125a12020c785736192d" + } +} diff --git a/domains/_discord.alora.json b/domains/_discord.alora.json index c94d23999..1e0225da3 100644 --- a/domains/_discord.alora.json +++ b/domains/_discord.alora.json @@ -3,7 +3,7 @@ "username": "aloramiaa", "email": "xaloramia@gmail.com" }, - "record": { + "records": { "TXT": "dh=c5c6a95b0839d3a31d0ca2ae91236c9dbee84fd6" } } diff --git a/domains/_discord.alpha.json b/domains/_discord.alpha.json index 69405d1ee..fe0cbddad 100644 --- a/domains/_discord.alpha.json +++ b/domains/_discord.alpha.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e" } } diff --git a/domains/_discord.alvin.json b/domains/_discord.alvin.json index 4e246c57f..3c2fe5664 100644 --- a/domains/_discord.alvin.json +++ b/domains/_discord.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "TXT": "dh=2e0d11ef77e37336649b42cd76be7681008ac30a" } } diff --git a/domains/_discord.amitkr.json b/domains/_discord.amitkr.json new file mode 100644 index 000000000..c10b2c8cc --- /dev/null +++ b/domains/_discord.amitkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "buddhhu", + "email": "amitsharma123234@gmail.com" + }, + "records": { + "TXT": "dh=5b4d2c16d6e0595278e1eb813028b9de2e442e4c" + } +} diff --git a/domains/_discord.amol254542.json b/domains/_discord.amol254542.json index 1c4f32863..d73e9a8ce 100644 --- a/domains/_discord.amol254542.json +++ b/domains/_discord.amol254542.json @@ -3,7 +3,7 @@ "username": "amol234545", "email": "amolmilton@gmail.com" }, - "record": { + "records": { "TXT": "dh=383b5b12e8a16256189d4e54677f7c217ddde07a" } } diff --git a/domains/_discord.anirbaaaan.json b/domains/_discord.anirbaaaan.json deleted file mode 100644 index f7a613430..000000000 --- a/domains/_discord.anirbaaaan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "TXT": "dh=ef12f3d26e5f641e4a2f956c2a208b8da58b5c47" - } -} diff --git a/domains/_discord.ann.json b/domains/_discord.ann.json index 9f9d392cc..caace0957 100644 --- a/domains/_discord.ann.json +++ b/domains/_discord.ann.json @@ -3,7 +3,7 @@ "username": "true1ann", "email": "true1ann@tutamail.com" }, - "record": { + "records": { "TXT": "dh=6eb0f066bdc17804b776bb9cb7b351dfb831a22e" } } diff --git a/domains/_discord.ante.json b/domains/_discord.ante.json index 825a82e84..442526467 100644 --- a/domains/_discord.ante.json +++ b/domains/_discord.ante.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "antebrl", - "email": "ahcwnh@gmail.com" - }, - "record": { - "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] - } -} + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "records": { + "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] + } +} diff --git a/domains/_discord.antoangiaothong.akk1to.json b/domains/_discord.antoangiaothong.akk1to.json index fecfb8a9a..59d3c2c23 100644 --- a/domains/_discord.antoangiaothong.akk1to.json +++ b/domains/_discord.antoangiaothong.akk1to.json @@ -4,7 +4,7 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { + "records": { "TXT": ["dh=1a950b0754b823073a474660fa065a40a6a77009"] } } diff --git a/domains/_discord.arlan.json b/domains/_discord.arlan.json new file mode 100644 index 000000000..82b614f01 --- /dev/null +++ b/domains/_discord.arlan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "records": { + "TXT": "dh=bc2dcf8fbcb6ee4e4d77621a0f2369571bc03416" + } +} diff --git a/domains/_discord.arman.json b/domains/_discord.arman.json index e864e1387..a5f361493 100644 --- a/domains/_discord.arman.json +++ b/domains/_discord.arman.json @@ -3,7 +3,7 @@ "username": "ItzArman09", "email": "itz.armxn@outlook.com" }, - "record": { + "records": { "TXT": "dh=508604a0381985579d65a0e9c8b241bc6186cc44" } } diff --git a/domains/_discord.arsenobetaine.json b/domains/_discord.arsenobetaine.json new file mode 100644 index 000000000..d1cae33a6 --- /dev/null +++ b/domains/_discord.arsenobetaine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "records": { + "TXT": "dh=a7836fe0f1ee1642624faaa1e95fedba6f53f907" + } +} diff --git a/domains/_discord.aruria.json b/domains/_discord.aruria.json index 1e39c54d3..a43b15dfb 100644 --- a/domains/_discord.aruria.json +++ b/domains/_discord.aruria.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "cjolivier123" - }, - "record": { - "TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"] - } -} + "owner": { + "username": "cjolivier123" + }, + "records": { + "TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"] + } +} diff --git a/domains/_discord.arvindt.json b/domains/_discord.arvindt.json index 9f96355ee..714672453 100644 --- a/domains/_discord.arvindt.json +++ b/domains/_discord.arvindt.json @@ -3,7 +3,7 @@ "username": "ARVIN3108", "email": "31arvin08@gmail.com" }, - "record": { + "records": { "TXT": "dh=f4de5717bd2c2b490973ead6cdd9a7c81d38fe5b" } } diff --git a/domains/_discord.ashishagarwal.json b/domains/_discord.ashishagarwal.json index 9e3cc64b0..cd8e5c95e 100644 --- a/domains/_discord.ashishagarwal.json +++ b/domains/_discord.ashishagarwal.json @@ -3,7 +3,7 @@ "username": "devashish2024", "email": "code.with.aasheesh@gmail.com" }, - "record": { + "records": { "TXT": "dh=d5e203382ac94458c0d7d26b4864676898e72ea0" } } diff --git a/domains/_discord.azhammakestrash.json b/domains/_discord.azhammakestrash.json index 91fa17ed6..b0215954e 100644 --- a/domains/_discord.azhammakestrash.json +++ b/domains/_discord.azhammakestrash.json @@ -4,7 +4,7 @@ "email": "websitedomain.regroup588@passinbox.com", "discord": "797534115935027271" }, - "record": { + "records": { "TXT": "dh=b3b9be236f1e61048cecc94f8e3e6a4accf9d6b5" } } diff --git a/domains/_discord.betaprj.akk1to.json b/domains/_discord.betaprj.akk1to.json index 3fbd209cf..2c7acad83 100644 --- a/domains/_discord.betaprj.akk1to.json +++ b/domains/_discord.betaprj.akk1to.json @@ -4,7 +4,7 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { + "records": { "TXT": ["dh=e1e17c98197b35ff9ed4eef8a473fa86fa3106b8"] } } diff --git a/domains/_discord.bio.json b/domains/_discord.bio.json new file mode 100644 index 000000000..40785f7dd --- /dev/null +++ b/domains/_discord.bio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "records": { + "TXT": "dh=501251d3fa61ce8fb7a761606b9aa5e707eacd96" + } +} diff --git a/domains/_discord.bkms.json b/domains/_discord.bkms.json index 7c76299e0..b2d161685 100644 --- a/domains/_discord.bkms.json +++ b/domains/_discord.bkms.json @@ -3,7 +3,7 @@ "username": "bkmsstudio", "email": "mmini15354424@gmail.com" }, - "record": { + "records": { "TXT": "dh=28e7384e869c06a1ca87f91b10fd14aefc7f4433" } } diff --git a/domains/_discord.bladimir.json b/domains/_discord.bladimir.json new file mode 100644 index 000000000..fb52d9753 --- /dev/null +++ b/domains/_discord.bladimir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Esbruiz", + "email": "esbruizc@gmail.com" + }, + "records": { + "TXT": "dh=5421aaf1ad1aa267e9aa3d19c55d3762a0c5d8f8" + } +} diff --git a/domains/_discord.blog.vornexx.json b/domains/_discord.blog.vornexx.json index 3ae537de8..e11909297 100644 --- a/domains/_discord.blog.vornexx.json +++ b/domains/_discord.blog.vornexx.json @@ -3,7 +3,7 @@ "username": "vornexx", "email": "ajay.ramnath@courvix.com" }, - "record": { + "records": { "TXT": "dh=9834c3a11e7647463c3f62cbbbb0aa0442f503f6" } } diff --git a/domains/_discord.blue.json b/domains/_discord.blue.json index d83536f91..d5ff2799f 100644 --- a/domains/_discord.blue.json +++ b/domains/_discord.blue.json @@ -4,7 +4,7 @@ "email": "b1uedev@outlook.com", "twitter": "b1uedev" }, - "record": { + "records": { "TXT": "dh=17587955722bcb2745e20304b98cb5cbda716054" } } diff --git a/domains/_discord.bob16077.json b/domains/_discord.bob16077.json index 00c8f970a..28f5a47b7 100644 --- a/domains/_discord.bob16077.json +++ b/domains/_discord.bob16077.json @@ -3,7 +3,7 @@ "username": "bob16077", "discord": "bob16077777" }, - "record": { + "records": { "TXT": "dh=82f4456e6c61592f5dcdc8a4a9066d6111292de6" } } diff --git a/domains/_discord.bryce.json b/domains/_discord.bryce.json new file mode 100644 index 000000000..68cf3be64 --- /dev/null +++ b/domains/_discord.bryce.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GitHubFanTest", + "email": "feelingbloxyburger24@gmail.com" + }, + "records": { + "TXT": "dh=7b870ea5ded2a7388f1def1fda8cfbf816f3dfe0" + } +} diff --git a/domains/_discord.caiden.json b/domains/_discord.caiden.json index c1815cf52..e8fccea13 100644 --- a/domains/_discord.caiden.json +++ b/domains/_discord.caiden.json @@ -4,7 +4,7 @@ "email": "iididhejejdj@gmail.com", "discord": "850820069310201896" }, - "record": { + "records": { "TXT": "dh=9edde4bc2a73469cb8653bf05ae22226397bc77a" } } diff --git a/domains/_discord.cala.json b/domains/_discord.cala.json index 2d8b99ebd..a34cc1f85 100644 --- a/domains/_discord.cala.json +++ b/domains/_discord.cala.json @@ -3,7 +3,7 @@ "username": "calamitywoah", "email": "krivojta@gmail.com" }, - "record": { + "records": { "TXT": "dh=2cd3fcd551a8d871e135c5613dccb097d9abcb03" } } diff --git a/domains/_discord.cally.json b/domains/_discord.cally.json new file mode 100644 index 000000000..b84b83fef --- /dev/null +++ b/domains/_discord.cally.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cally-jt", + "email": "callumjt@proton.me" + }, + "records": { + "TXT": "dh=ad9865a1b510eca9917556bd35b8e60d089d3888" + } +} diff --git a/domains/_discord.capivara.json b/domains/_discord.capivara.json index e04a33236..cf49e410c 100644 --- a/domains/_discord.capivara.json +++ b/domains/_discord.capivara.json @@ -3,7 +3,7 @@ "username": "gabrielasants", "email": "gabrielasantos030@gmail.com" }, - "record": { + "records": { "TXT": "dh=a755ef48b5344a0fb3b986db5b0e2304caced68c" } } diff --git a/domains/_discord.catto24.json b/domains/_discord.catto24.json index 0abe1a3f2..644fdf1e2 100644 --- a/domains/_discord.catto24.json +++ b/domains/_discord.catto24.json @@ -3,7 +3,7 @@ "username": "catto24", "email": "catto24@proton.me" }, - "record": { + "records": { "TXT": "dh=cb090910b5977bb43674000fab99c3a76492ac78" } } diff --git a/domains/_discord.chaotic.json b/domains/_discord.chaotic.json index e8cbec23d..9d3add458 100644 --- a/domains/_discord.chaotic.json +++ b/domains/_discord.chaotic.json @@ -3,7 +3,7 @@ "username": "ChaoticChaosTheGreat", "email": "ryan.ryanabraham@gmail.com" }, - "record": { + "records": { "TXT": "dh=99c69f88a933d5ec20fe830e8543f7e7c63646cd" } } diff --git a/domains/_discord.chiko.json b/domains/_discord.chiko.json index 1ce885b25..5fe1e49f9 100644 --- a/domains/_discord.chiko.json +++ b/domains/_discord.chiko.json @@ -4,7 +4,7 @@ "email": "itsmezark05@gmail.com", "discord": "1152640014832902245" }, - "record": { + "records": { "TXT": "dh=bcbc8ef1f361e6190ebf1ffb09b84800ac8cd341" } } diff --git a/domains/_discord.ciao287.json b/domains/_discord.ciao287.json index 2c0409191..9d835d173 100644 --- a/domains/_discord.ciao287.json +++ b/domains/_discord.ciao287.json @@ -3,7 +3,7 @@ "username": "Ciao287", "discord": "687333016921440317" }, - "record": { + "records": { "TXT": "dh=ce277d8733f3951ace98e01de4cbf58ffca4b4c6" } } diff --git a/domains/_discord.ciaobot.json b/domains/_discord.ciaobot.json index 7f7b3b1cb..db13a8329 100644 --- a/domains/_discord.ciaobot.json +++ b/domains/_discord.ciaobot.json @@ -3,7 +3,7 @@ "username": "Ciao287", "discord": "687333016921440317" }, - "record": { + "records": { "TXT": "dh=7033eb795b01d2b28ceb767f8e34a4dffa268406" } } diff --git a/domains/_discord.clyron.json b/domains/_discord.clyron.json index 6b3020b3c..031e0f85d 100644 --- a/domains/_discord.clyron.json +++ b/domains/_discord.clyron.json @@ -3,7 +3,7 @@ "username": "theclyron", "email": "onenonlyclyron@gmail.com" }, - "record": { + "records": { "TXT": "dh=08fd1efb158b657de5293ec643a8426a20a93ede" } } diff --git a/domains/_discord.codesoft.json b/domains/_discord.codesoft.json new file mode 100644 index 000000000..9784fa146 --- /dev/null +++ b/domains/_discord.codesoft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "records": { + "TXT": "dh=1d1f0586f56693138d2014b13312d7467fa4e497" + } +} diff --git a/domains/_discord.colin.json b/domains/_discord.colin.json new file mode 100644 index 000000000..f70d84657 --- /dev/null +++ b/domains/_discord.colin.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ColinLeDev" + }, + "records": { + "TXT": ["dh=f51bcf0f0dac685ca2a69541d3981cd689a1e96a"] + } +} diff --git a/domains/_discord.computerblade.json b/domains/_discord.computerblade.json index 6e6100da9..fac9927e0 100644 --- a/domains/_discord.computerblade.json +++ b/domains/_discord.computerblade.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "computerblade-official" - }, - "record": { - "TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"] - } -} + "owner": { + "username": "computerblade-official" + }, + "records": { + "TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"] + } +} diff --git a/domains/_discord.crischutu07.json b/domains/_discord.crischutu07.json index d23dd3689..1ef76b47d 100644 --- a/domains/_discord.crischutu07.json +++ b/domains/_discord.crischutu07.json @@ -3,7 +3,7 @@ "username": "crischutu07", "email": "crischutu07owo@gmail.com" }, - "record": { + "records": { "TXT": "dh=fffa03e2584e730d2c0166aaa6fe846542439b19" } } diff --git a/domains/_discord.cutedog5695.json b/domains/_discord.cutedog5695.json index 92dfb8f79..5d8d59f8b 100644 --- a/domains/_discord.cutedog5695.json +++ b/domains/_discord.cutedog5695.json @@ -4,7 +4,7 @@ "discord": "716306888492318790", "twitter": "iostpa" }, - "record": { + "records": { "TXT": "dh=f85ce7cf4e6ff1f6136767a12c041fbbcb446045" } } diff --git a/domains/_discord.cuxdi.json b/domains/_discord.cuxdi.json index c353eb0c2..0f3ba1586 100644 --- a/domains/_discord.cuxdi.json +++ b/domains/_discord.cuxdi.json @@ -3,7 +3,7 @@ "username": "cuxdii", "email": "vihar2408@gmail.com" }, - "record": { + "records": { "TXT": "dh=afaf5843216f288f6b9d6d2b06b66bcc396b0479" } } diff --git a/domains/_discord.daamin.json b/domains/_discord.daamin.json index 6b2e20a5a..632527600 100644 --- a/domains/_discord.daamin.json +++ b/domains/_discord.daamin.json @@ -3,7 +3,7 @@ "username": "Daamin909", "email": "ashai.daamin@gmail.com" }, - "record": { + "records": { "TXT": "dh=bc215d4445233c4ff76582ad1b83c8b277c2713e" } } diff --git a/domains/_discord.darkdevil.json b/domains/_discord.darkdevil.json index 18c45bdbb..f06cc199b 100644 --- a/domains/_discord.darkdevil.json +++ b/domains/_discord.darkdevil.json @@ -1,10 +1,9 @@ { "owner": { "username": "LRxDarkDevil", - "discord": "707565643200724993", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Y3TZa4qDHPnsPvTI65DC4aNjRm5GeZ6p3QPMWkHzAJV3XmYPK88vXOcBjTIjdhl0WJq7y8VqaoAVMeRVrjK_7-tIR4T5xKm43wEv2YLyt5IKBIZR66UZ5CpeCxh_Lw_vENSdY0K2cJhWb7c99Ytc9-ZWfKOuo1NE5-ycNpFRNHzcMnqeeqK7kIjPTEDUuFoo_Gsb_cSvEcQi4CU7HGYVw_MCf-1zwGFrneBVvPOyhWF9y4ObJu1AE8lI0xPk-BYHRL2OP-xvU3qjHrf3J3PR1lC2JxXNZ90IevZ2smBYtXpKGRb3uww34XwF-cFX9R2QaXXO06gGrmsLM7-sYHyWMQ.Ci7-CteTV4_CkmZNn-XoKg.UtEZid919zv3RjoY9WD17nMUi7Q70Ab-fFhi9g8zd7AwLN-Zc7JpkEthG7_-V-gQupao7qYFD0paq-IaIlPt8jrCPUPTZGIcBmUH1mOG4Qk.ZhtLnN9ARZebAq0oP5uePA" + "discord": "707565643200724993" }, - "record": { + "records": { "TXT": "dh=8c77ed7246a59a97a79bd853da4df0d375f2558d" } } diff --git a/domains/_discord.debtlessflea.json b/domains/_discord.debtlessflea.json index 35624a5cc..2b350e59c 100644 --- a/domains/_discord.debtlessflea.json +++ b/domains/_discord.debtlessflea.json @@ -3,7 +3,7 @@ "username": "DebtlessFlea", "email": "citizen.caption020@passfwd.com" }, - "record": { + "records": { "TXT": "dh=ec2194e7089856af252f3cffdbc4378b193c4cd0" } } diff --git a/domains/_discord.dem0n.json b/domains/_discord.dem0n.json index a87d43dbe..2ad12860b 100644 --- a/domains/_discord.dem0n.json +++ b/domains/_discord.dem0n.json @@ -3,7 +3,7 @@ "username": "probablydem0n", "discord": 935272776586129400 }, - "record": { + "records": { "TXT": ["dh=5ce927a38096a3a9d48e24ba44d85b0655aa4fc6"] } } diff --git a/domains/_discord.devansh.json b/domains/_discord.devansh.json index 64f580054..f5251b342 100644 --- a/domains/_discord.devansh.json +++ b/domains/_discord.devansh.json @@ -6,7 +6,7 @@ "email": "dev8adam576@gmail.com", "twitter": "devanshyadav" }, - "record": { + "records": { "TXT": "dh=d14eedf95cd289bfd460f05eff5cca7a8a28d7f0" } } diff --git a/domains/_discord.devmatei.json b/domains/_discord.devmatei.json deleted file mode 100644 index 839e96167..000000000 --- a/domains/_discord.devmatei.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "devmatei", - "email": "matei.thoma@gmail.com" - }, - "record": { - "TXT": ["dh=7b59d54719ce94db5cc653b7439d2e090f724c7a"] - } -} diff --git a/domains/_discord.drake.json b/domains/_discord.drake.json index 26d9a6a25..b19c6adf3 100644 --- a/domains/_discord.drake.json +++ b/domains/_discord.drake.json @@ -1,10 +1,9 @@ { "owner": { "username": "drake-dot-o", - "discord": "197905102865039371", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mmPhx-ID9xqljgGC66-Zsd9EUwS4V3yi_xWUWAzQlcF42kfOFbW9SqczuiXOwuVXLyx5RaJoPCOhma2N_EgIcIxmi5zbPbW8u22M3-L0a3NRwLs0GHTs2JiCKyuKjQ-hxNqgY61oV2B_X3utIgMkG_oBgJp3F6EzN7Nawq-pSYAkhRRnhbcEFa0sQ7XQsTttoAszEZcJIORdxwdfDFfI91-Y5TJOudpT0Fd2LA8K0TSs8xcLO9uQKZwvoqiZQ4T-uEdIr54siJqzIyqKxgtMdcT_44xm6tabGT0F44K2X9Ns3hhj7VgXAxb3WRFjRdMIBqspRPs0kvqGgdEp9wNUlg.eC5L5l-_oNRn_fR_JaZQ9w.KyJyCZ9z-IvwVj1NWiY7aFa_7yOauoO-2i1L8pN60dqIafeVBdpt5mhI_6yiEZkxLsebFIZHX8YLhLRYiN3uXg7zm8E7sZveLzKwAZ6ARUE.gLvOaKt6jNjnsAk00eL4Bw" + "discord": "197905102865039371" }, - "record": { + "records": { "TXT": "dh=25c86cb259851742d4f9d6168db474328c6b27d0" } } diff --git a/domains/_discord.dscbmr.json b/domains/_discord.dscbmr.json index 32ee53f3e..b3ba02ab5 100644 --- a/domains/_discord.dscbmr.json +++ b/domains/_discord.dscbmr.json @@ -3,7 +3,7 @@ "username": "SRPVT", "email": "syedyaseeralirayan@gmail.com" }, - "record": { + "records": { "TXT": "dh=7864dbaf534fd1fe06980cef458e294c317390ad" } } diff --git a/domains/_discord.ducky.json b/domains/_discord.ducky.json new file mode 100644 index 000000000..86199291d --- /dev/null +++ b/domains/_discord.ducky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ducky4life", + "email": "duckylai@proton.me" + }, + "records": { + "TXT": "dh=925876829c7314b41fe3c2a412b7a4250214febf" + } +} diff --git a/domains/_discord.duckysolucky.json b/domains/_discord.duckysolucky.json index e5e96d7c9..69b0e1082 100644 --- a/domains/_discord.duckysolucky.json +++ b/domains/_discord.duckysolucky.json @@ -3,7 +3,7 @@ "username": "DuckySoLucky", "email": "robertkovac160@gmail.com" }, - "record": { + "records": { "TXT": "dh=7bb43942d51685c0980f38345bf6a13e4498157a" } } diff --git a/domains/_discord.dwigoric.json b/domains/_discord.dwigoric.json index 675e4dbeb..b865bdb47 100644 --- a/domains/_discord.dwigoric.json +++ b/domains/_discord.dwigoric.json @@ -4,7 +4,7 @@ "email": "dwigoric@pm.me", "discord": "295391820744228867" }, - "record": { + "records": { "TXT": "dh=0dbe5579faf14819c58607e423f955be71311f60" } } diff --git a/domains/_discord.dyno.json b/domains/_discord.dyno.json index abe4ec2b7..80d40052d 100644 --- a/domains/_discord.dyno.json +++ b/domains/_discord.dyno.json @@ -4,7 +4,7 @@ "email": "naffets0@gmail.com", "discord": "455608238335983617" }, - "record": { + "records": { "TXT": "dh=8bb2a3b679cd393d772165a0baf0eea849b5c698" } } diff --git a/domains/_discord.e.json b/domains/_discord.e.json index 8946c514d..dd6e3a23a 100644 --- a/domains/_discord.e.json +++ b/domains/_discord.e.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.E52gF-yRvCrEPcTRHxMbPUqD3h9rFOcrEu7zeUC8-bcjtSOLrw7TwnWKn0ca_trDmDAf0Se7lxfbhmMwv06eCgrZn-fBgaYD3YeQ6rHlmL3L6WQgx16qhF-KdjyyPRGCdPmSfeoowR45AxY_48QLixoDzNIxWte8CUvJ_nCmC2NKhA84HRD8qudA0w7I0riwr9J7JCz1NLkGaGqLg_Oi4IDClom8nOhb3cB4w0BgK5umz0BmiXH5SibsfG7fkFJ4ETvQzzIrNH_w8TLkNRGv5hs3lSBEobx4Qe_BCq1KHuSHo-LmE-Aw74G96GgVHATECw0RW2sVyK3OnIOTZKzwDg.efXKzrCWSo9Ze3Xir-KhUg.PCY3rWSr7tGJsVM_wF5VKnRB2Tk2QKNKS6pZPJJH9XirQY7TJocpov1F0xZxI4mzll5FjRgP_DxsErWY-p3YqLDUSk5lJ7RywtFpfr4wsLOrjEEcwj_yYNAVphDqxsI3.OL1QnPKxsZtqZXbrhbnk2w" + "discord": "1167825360151380032" }, - "record": { + "records": { "TXT": "dh=2812b2fbe8af8bd92dc2c1248d0d3a71a5b8555c" } } diff --git a/domains/_discord.ela.json b/domains/_discord.ela.json index 0a5dcf453..24646e58f 100644 --- a/domains/_discord.ela.json +++ b/domains/_discord.ela.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "DXRdev", - "discordID": "335635478684499970", - "discord": "elastrixx" - }, - "record": { - "TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"] - } -} + "owner": { + "username": "DXRdev", + "discordID": "335635478684499970", + "discord": "elastrixx" + }, + "records": { + "TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"] + } +} diff --git a/domains/_discord.enderpoint.json b/domains/_discord.enderpoint.json index 98e7dfa8e..2e93b61c2 100644 --- a/domains/_discord.enderpoint.json +++ b/domains/_discord.enderpoint.json @@ -3,7 +3,7 @@ "username": "EnderPoint07", "discord": "DotM38#5497" }, - "record": { + "records": { "TXT": "dh=1ad21660e3db8fba8f5f18150a89514bee83350e" } } diff --git a/domains/_discord.eryquicc.json b/domains/_discord.eryquicc.json index 178836ab0..94abaf87a 100644 --- a/domains/_discord.eryquicc.json +++ b/domains/_discord.eryquicc.json @@ -4,7 +4,7 @@ "email": "fathirzaidanmaulana@gmail.com", "discord": "629939924589608961" }, - "record": { + "records": { "TXT": "dh=7efcfd9b81fc26c7d20c998cbc23866c0d6bc407" } } diff --git a/domains/_discord.evie.json b/domains/_discord.evie.json index 435aef748..54b87795a 100644 --- a/domains/_discord.evie.json +++ b/domains/_discord.evie.json @@ -4,7 +4,7 @@ "discordId": "285329659023851520", "discord": "encyclopedic" }, - "record": { + "records": { "TXT": "dh=2ffdb09f9be5f3f51fe2089c4cced6ec296d490e" } } diff --git a/domains/_discord.exyxz.json b/domains/_discord.exyxz.json new file mode 100644 index 000000000..48ae49e75 --- /dev/null +++ b/domains/_discord.exyxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "records": { + "TXT": "dh=529be62f885915368b4b5c20beaef95a1c55ea98" + } +} diff --git a/domains/_discord.f.json b/domains/_discord.f.json index 9578873ce..79317d72c 100644 --- a/domains/_discord.f.json +++ b/domains/_discord.f.json @@ -1,10 +1,9 @@ { "owner": { "username": "iHategithub9000", - "discord": "836012649959522384", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IoMNwO2tYrmgvq3ChAPc1qf6eDMgrJfRbXdqbzBf8ywDPU9Ra5CAUcuBemL6SDw8kc7f6NLEAw14OV_zYwhEVVOWAr6g33gWIvtMQMaQFxp45c-SSOgSxFTPNIKhY5Cy7WirCXF0QBpaJkYn11BStJ19R2o33pzDEQD8wgabeDj72fe2E_kGwhjaDpIUvupkoa-07gXdrZwqA2SZezzi4RMGwTyw3BjKFfCliiEkjIHbyd8V8xy-mQsp0sIDzGWdt7JssjQg8bmPaqH_IAWH66SM6YqGriPSMrDWsgW1ziuJmWTv90LxbnNfsNohiNM0dwwfQjtIbapSm-BAeuaidQ.FWMYF89IinoFZTo43A6OCA.XE1-D9gvFshr40e-76KUCONloYxBJnfGpCgZhkryiJRh6wYkLfE6fImr9A2-AcbhKvuzKQrf9X5U0kquwWGxGU5GMX9AlwBFMvJHXJNVh08.rCvo-LUbkRogE7My_TgyWQ" + "discord": "836012649959522384" }, - "record": { + "records": { "TXT": "dh=dc67333f26184dd81afd46574761e6243b4b1fd8" } } diff --git a/domains/_discord.founderfie.json b/domains/_discord.founderfie.json index c6393a490..cce44e5a3 100644 --- a/domains/_discord.founderfie.json +++ b/domains/_discord.founderfie.json @@ -3,7 +3,7 @@ "username": "Founderfie", "email": "director@founderfie.in" }, - "record": { + "records": { "TXT": "dh=d0051682cdad6866306cdb315ae5abff7e314dcc" } } diff --git a/domains/_discord.fran.json b/domains/_discord.fran.json index 3ce849246..2b4207477 100644 --- a/domains/_discord.fran.json +++ b/domains/_discord.fran.json @@ -3,7 +3,7 @@ "username": "xzonix", "email": "imahalojigi@gmail.com" }, - "record": { + "records": { "TXT": "dh=9ffde6acccff8c74faeb599818e2901110d15fa5" } } diff --git a/domains/_discord.fryvex.json b/domains/_discord.fryvex.json new file mode 100644 index 000000000..4f69d755b --- /dev/null +++ b/domains/_discord.fryvex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x1yl", + "discord": "627947214576025610" + }, + "records": { + "TXT": "dh=8ce5db15dc011d17526c81dfeccab48d20447344" + } +} diff --git a/domains/_discord.ftn.json b/domains/_discord.ftn.json index f506d1092..867b398a3 100644 --- a/domains/_discord.ftn.json +++ b/domains/_discord.ftn.json @@ -3,7 +3,7 @@ "username": "furthir", "email": "furthir@pm.me" }, - "record": { + "records": { "TXT": "dh=a80a210e492f34a4378ffbb73352034cdc60fbb3" } } diff --git a/domains/_discord.funn.json b/domains/_discord.funn.json index ed904ab5a..224b401a9 100644 --- a/domains/_discord.funn.json +++ b/domains/_discord.funn.json @@ -3,7 +3,7 @@ "username": "funnsam", "email": "funnsam8@gmail.com" }, - "record": { + "records": { "TXT": "dh=901b963730610d7e0f1d4f29c48658f871d6e71d" } } diff --git a/domains/_discord.gattinhosbot.json b/domains/_discord.gattinhosbot.json index 537017d64..ae9d27e3f 100644 --- a/domains/_discord.gattinhosbot.json +++ b/domains/_discord.gattinhosbot.json @@ -1,10 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { + "records": { "TXT": "dh=03933534192052d1ca904fb933de9acde3b4ed48" } } diff --git a/domains/_discord.gioco.json b/domains/_discord.gioco.json index 249cbd259..aa9111cef 100644 --- a/domains/_discord.gioco.json +++ b/domains/_discord.gioco.json @@ -3,7 +3,7 @@ "username": "giocoliere", "email": "simcrigjeki@gmail.com" }, - "record": { + "records": { "TXT": "dh=4301bad793b7475c64673daa37b9599f04aafdd8" } } diff --git a/domains/_discord.gokulbarath.json b/domains/_discord.gokulbarath.json index b6448956d..52fb6a1f5 100644 --- a/domains/_discord.gokulbarath.json +++ b/domains/_discord.gokulbarath.json @@ -3,7 +3,7 @@ "username": "gokul6350", "email": "gokul00060@gmail.com" }, - "record": { + "records": { "TXT": ["dh=55a65497a2c3938fee2de54e3600a5b55524016c"] } } diff --git a/domains/_discord.gonpvp.json b/domains/_discord.gonpvp.json index 815b664b0..1a85e8185 100644 --- a/domains/_discord.gonpvp.json +++ b/domains/_discord.gonpvp.json @@ -1,10 +1,9 @@ { "owner": { "username": "iammehdib", - "discord": "949450590084292608", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OR-_LLE86-QZu2pD6feFI0Y3Kt93KL6A46ZN2IU_3DKZ2vHUrWnyEGQbP2svew27jqbdEzQSswWCpXByUS-jJKDYYZtjIBm0xuPqu-IuOO0wgAXQhMWCrvJuRJrT-Hhlf9dXu5LelKEAQlB8Qeid5FBdrjNst5xWMv8rlWHYINTScb-5oPBeHzt9GDKwPGvZOQRsVs_m9bJq8au1ISq_MakkQmMIRR_nBYN4ReSziJx-uVN09sbmSv8cSbBbZ9QZGvDgTF2GyRJYh301N8IeFBB2B5XzeA-ws93ajlVDkWcl7afuIXJEM8aBSHLWWJ_b8ocbvB-A-i3LXiE7-vkK5g.e-RplW2mFIb9IShDR4Zupg.MvnWmk7N-m6NJEdnLxfRPMX3pLB2X6XoXkLzENwH8rH7_ZD7k_-9vg9LFyVeSK927cKriwIIJ45quwC7wuB2pH8jk1RxnrgLCAaEnO2rVbk.iWR394yzOgznDeoa_mg5Jw" + "discord": "949450590084292608" }, - "record": { + "records": { "TXT": "dh=ba636b73eeffb865ffaf0fc772f7677061ff0982" } } diff --git a/domains/_discord.goyal.json b/domains/_discord.goyal.json index 0cb21f7f8..37f44f491 100644 --- a/domains/_discord.goyal.json +++ b/domains/_discord.goyal.json @@ -4,7 +4,7 @@ "discord": "somegumtank", "email": "anandrambkn@gmail.com" }, - "record": { + "records": { "TXT": "dh=f6d08bad0d4c2032a55386a83761bc8ddef363fa" } } diff --git a/domains/_discord.gunman.json b/domains/_discord.gunman.json index 945e01bc5..6665b0d3f 100644 --- a/domains/_discord.gunman.json +++ b/domains/_discord.gunman.json @@ -3,7 +3,7 @@ "username": "MukuJhansi", "email": "mukundagrawal800@gmail.com" }, - "record": { + "records": { "TXT": "dh=be7d82f3a9cf950d2aa2d3379ddf345aff4859f0" } } diff --git a/domains/_discord.hafi.json b/domains/_discord.hafi.json index 2e9ef3a96..5b276b71d 100644 --- a/domains/_discord.hafi.json +++ b/domains/_discord.hafi.json @@ -3,7 +3,7 @@ "username": "HafiTheCat", "discord": "hafi_the_cat" }, - "record": { + "records": { "TXT": "dh=1ae8d3b3460ce837d26bf5cfaa473a1bdc13460f" } } diff --git a/domains/_discord.harunabdullah.json b/domains/_discord.harunabdullah.json new file mode 100644 index 000000000..f59337e28 --- /dev/null +++ b/domains/_discord.harunabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harunabdullahrakin", + "email": "harunabdullahrakin@gmail.com" + }, + "records": { + "TXT": "dh=08ca7b2a348ba12437193e6d84e9b819dc75da31" + } +} diff --git a/domains/_discord.harys.json b/domains/_discord.harys.json new file mode 100644 index 000000000..cc52586f5 --- /dev/null +++ b/domains/_discord.harys.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harys722", + "discord": "1203357768610746385" + }, + "records": { + "TXT": "dh=b7e85268028e8c32676bf1e81122c1356159f27d" + } +} diff --git a/domains/_discord.hchs-bot.json b/domains/_discord.hchs-bot.json index 146b14f90..bdbdf5e2a 100644 --- a/domains/_discord.hchs-bot.json +++ b/domains/_discord.hchs-bot.json @@ -5,7 +5,7 @@ "twitter": "jimmyyo45639462", "discord": "xiaoxi_tw#0" }, - "record": { + "records": { "TXT": "dh=1001abef3571d8f5aa7d6d94543d8409f9e786ea" } } diff --git a/domains/_discord.hcj.json b/domains/_discord.hcj.json index b227fd8f9..38445ba5a 100644 --- a/domains/_discord.hcj.json +++ b/domains/_discord.hcj.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": "dh=4d34d136feda8f0fade8d9cbf34cfb3ff0adee15" - } - } \ No newline at end of file + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "records": { + "TXT": "dh=4d34d136feda8f0fade8d9cbf34cfb3ff0adee15" + } +} diff --git a/domains/_discord.heath.json b/domains/_discord.heath.json index 58cb8892f..8ac38a3cc 100644 --- a/domains/_discord.heath.json +++ b/domains/_discord.heath.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "minodab492", - "email": "heath.garvin@minodabproductions.dev" - }, - "record": { - "TXT": ["dh=5a45b7cd26a9cd21f027e4bbf1c010cac0b78204"] - } -} \ No newline at end of file + "owner": { + "username": "minodab492", + "email": "heath.garvin@minodabproductions.dev" + }, + "records": { + "TXT": ["dh=5a45b7cd26a9cd21f027e4bbf1c010cac0b78204"] + } +} diff --git a/domains/_discord.heyaxo.json b/domains/_discord.heyaxo.json new file mode 100644 index 000000000..831ec0fb6 --- /dev/null +++ b/domains/_discord.heyaxo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "verygafanhot", + "email": "verygafanhot@gmail.com" + }, + "records": { + "TXT": "dh=772e8981e6a0b8bc4e30ac4af5160be7fd175c8a" + } +} diff --git a/domains/_discord.hilight3r.json b/domains/_discord.hilight3r.json index 66ec18169..efba56c52 100644 --- a/domains/_discord.hilight3r.json +++ b/domains/_discord.hilight3r.json @@ -1,10 +1,9 @@ { "owner": { "username": "HIlight3R", - "discord": "632272741000544259", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lEEbmOZavCkur0apEhD0MigNx6rzV3Kqhd9_Lw4Wxt7U7b0rcV779rEFB1Fm4LdwKAVJJ8_MeDm1jf0y14lGqQotXsvYzRKOCBk5t7vLtS_541WkodNwOPbAUV_g2KBaq6MynjnwX5786OLkuRJE-QnxwflxQRQHtL76xYJV3d7UVmZk0ppSUxyCw5SdSXUp7zgoJiTE2JIshtR5dFULQCyH9QK7gVpNFJBwaoTJeoRsCOy_oYoXVhYysYhX94tubtwKzE4xSDmQW4UbOo8yLRNTIo-PkyuY6cBD4yYvueRcTAd_UChS12Y27QSFhQq78I7WLaE7u4cV060Th1fEmA.9kQc0tIg1PyfXJtKgbiBSQ.uFTPklnOgLBqnu-dg7ZsCEZ_QrMiuyiHY60IgI1X3CdE1kSQckWTdApOQF8AXTC0inYYfmSpfvzP02Rcgo3Z9vyrckWG_ZSJbmfKR2SOpeN_Cq94jwKAZQXW0U45LxB1.cYkl_VljmQbyvurLc7hF6Q" + "discord": "632272741000544259" }, - "record": { + "records": { "TXT": "dh=0d11368eef3be6f6195da6a3a1b55663a1bafb38" } } diff --git a/domains/_discord.imide.json b/domains/_discord.imide.json index b32866520..7ccfae942 100644 --- a/domains/_discord.imide.json +++ b/domains/_discord.imide.json @@ -3,7 +3,7 @@ "username": "imide", "discord": "555915168932954112" }, - "record": { + "records": { "TXT": "dh=5bac029dd3873cf20dba45eaec03433d5afe5608" } } diff --git a/domains/_discord.imm0nv1nhtv.json b/domains/_discord.imm0nv1nhtv.json deleted file mode 100644 index dcce76bce..000000000 --- a/domains/_discord.imm0nv1nhtv.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "imm0nv1nhtv", - "email": "windows10phamvinh+github@gmail.com" - }, - "record": { - "TXT": "dh=05d77c5d6895f487e96ea956a6a985fa532fa0ee" - } -} diff --git a/domains/_discord.imnahn.json b/domains/_discord.imnahn.json new file mode 100644 index 000000000..17414e022 --- /dev/null +++ b/domains/_discord.imnahn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imnotnahn", + "email": "thanhnhan.contact.work@gmail.com" + }, + "records": { + "TXT": "dh=04c429a9247eee97c4db2597f0bdf22e28a949a1" + } +} diff --git a/domains/_discord.infernum.json b/domains/_discord.infernum.json index 63552f868..b714fcbed 100644 --- a/domains/_discord.infernum.json +++ b/domains/_discord.infernum.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Infernum1" - }, - "record": { - "TXT": ["dh=b25f81ebab2ff999a86bbda2f49f609e03054b39"] - } -} + "owner": { + "username": "Infernum1" + }, + "records": { + "TXT": ["dh=b25f81ebab2ff999a86bbda2f49f609e03054b39"] + } +} diff --git a/domains/_discord.jadebetty.json b/domains/_discord.jadebetty.json index eb2b1b369..989a1df6d 100644 --- a/domains/_discord.jadebetty.json +++ b/domains/_discord.jadebetty.json @@ -3,7 +3,7 @@ "username": "JadeBetty", "discord": "758617912566087681" }, - "record": { + "records": { "TXT": "dh=94e84997f373f2235c194f248969912336c5c0e8" } } diff --git a/domains/_discord.jeff.json b/domains/_discord.jeff.json new file mode 100644 index 000000000..78b0b2cbb --- /dev/null +++ b/domains/_discord.jeff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PentSec", + "email": "jeffreysfu@gmail.com" + }, + "records": { + "TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824" + } +} diff --git a/domains/_discord.jes.json b/domains/_discord.jes.json new file mode 100644 index 000000000..c336f967f --- /dev/null +++ b/domains/_discord.jes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jesgran", + "email": "calzdani20@libero.it" + }, + "records": { + "TXT": "dh=4b2e5de25234f6ff12194b5a3c98ff0b5edea64e" + } +} diff --git a/domains/_discord.joesepp.json b/domains/_discord.joesepp.json index 5ebef5bdc..c34b9d846 100644 --- a/domains/_discord.joesepp.json +++ b/domains/_discord.joesepp.json @@ -3,7 +3,7 @@ "username": "joesepph", "email": "markwer.dev@proton.me" }, - "record": { + "records": { "TXT": "dh=9ce2fab52773c35cecf4a10133d502e0644e19cb" } } diff --git a/domains/_discord.joetroll.json b/domains/_discord.joetroll.json index a0776f3fa..0447d989f 100644 --- a/domains/_discord.joetroll.json +++ b/domains/_discord.joetroll.json @@ -3,7 +3,7 @@ "username": "trolljoe", "email": "joetechtok@proton.me" }, - "record": { + "records": { "TXT": "dh=0ebb35a3def7a74049859c553b91d46c3eccbf3f" } } diff --git a/domains/_discord.joshua.json b/domains/_discord.joshua.json index 6d26e6000..a0a8068b2 100644 --- a/domains/_discord.joshua.json +++ b/domains/_discord.joshua.json @@ -4,7 +4,7 @@ "email": "dwigoric@gmail.com", "discord": "295391820744228867" }, - "record": { + "records": { "TXT": "dh=091e5d13b0f360e03d1ae8a746c5bed81da680e2" } } diff --git a/domains/_discord.jumanji.json b/domains/_discord.jumanji.json new file mode 100644 index 000000000..ec188b6a4 --- /dev/null +++ b/domains/_discord.jumanji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge650@silomails.com" + }, + "records": { + "TXT": "dh=aa51fc97861c871fc4daece76efa42c15712f116" + } +} diff --git a/domains/_discord.justdeveloper.json b/domains/_discord.justdeveloper.json index dd6ef3666..556b1b3a8 100644 --- a/domains/_discord.justdeveloper.json +++ b/domains/_discord.justdeveloper.json @@ -1,9 +1,9 @@ { "owner": { "username": "JustDeveloper1", - "email": "lk.qq@ya.ru" + "email": "justdeveloper@juststudio.is-a.dev" }, - "record": { + "records": { "TXT": "dh=a468556178a0bac462fa84043545b67b982e7fe0" } } diff --git a/domains/_discord.juststudio.json b/domains/_discord.juststudio.json index 950bc1a5e..401c4cc4a 100644 --- a/domains/_discord.juststudio.json +++ b/domains/_discord.juststudio.json @@ -4,7 +4,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "TXT": "dh=33f1a73c2f587fed7b0f3c03f18e1bf4591f8aec" } } diff --git a/domains/_discord.justwinstuff.json b/domains/_discord.justwinstuff.json index f846fd946..6ca6fa6dc 100644 --- a/domains/_discord.justwinstuff.json +++ b/domains/_discord.justwinstuff.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "enderfoxbg", - "discord": "970380468090437672" - }, - "record": { - "TXT": ["dh=75e9bdc423ca4351bb8938087b552bc2ee9a3e16"] - } -} + "owner": { + "username": "enderfoxbg", + "discord": "970380468090437672" + }, + "records": { + "TXT": ["dh=75e9bdc423ca4351bb8938087b552bc2ee9a3e16"] + } +} diff --git a/domains/_discord.kappurumedia.json b/domains/_discord.kappurumedia.json index 0c1f534ad..040c8d314 100644 --- a/domains/_discord.kappurumedia.json +++ b/domains/_discord.kappurumedia.json @@ -3,7 +3,7 @@ "username": "CyrusCore", "email": "abramsatria7@gmail.com" }, - "record": { + "records": { "TXT": "dh=ce5c5f60ae66a7f508b44432fe2d9a0b51038fa8" } } diff --git a/domains/_discord.keiran.json b/domains/_discord.keiran.json index bce0dc353..d703e9c82 100644 --- a/domains/_discord.keiran.json +++ b/domains/_discord.keiran.json @@ -3,7 +3,7 @@ "username": "KeiranScript", "email": "keiran0@proton.me" }, - "record": { + "records": { "TXT": "dh=eb547686041eae67bd1cc80bb3ce863b47199c02" } } diff --git a/domains/_discord.kenny.json b/domains/_discord.kenny.json index 8ca4f5fa4..36c559b88 100644 --- a/domains/_discord.kenny.json +++ b/domains/_discord.kenny.json @@ -4,7 +4,7 @@ "email": "kennybugeja@gmail.com", "discord": "kenny.sb" }, - "record": { + "records": { "TXT": "dh=aaf780c8f8f85a096d0adea5223a0fdfd643de02" } } diff --git a/domains/_discord.keybinds.json b/domains/_discord.keybinds.json index 82012508a..8f66a1170 100644 --- a/domains/_discord.keybinds.json +++ b/domains/_discord.keybinds.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "tr1xem" - }, - "record": { - "TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"] - } -} + "owner": { + "username": "tr1xem" + }, + "records": { + "TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"] + } +} diff --git a/domains/_discord.kleb.json b/domains/_discord.kleb.json index a69be2446..727ec9a50 100644 --- a/domains/_discord.kleb.json +++ b/domains/_discord.kleb.json @@ -3,7 +3,7 @@ "username": "KrazyKleb", "email": "krazykleb@outlook.com" }, - "record": { + "records": { "TXT": "dh=3e455eb128d3f2996cd8226c6666872d617d7bdf" } } diff --git a/domains/_discord.kona.json b/domains/_discord.kona.json new file mode 100644 index 000000000..61272e06b --- /dev/null +++ b/domains/_discord.kona.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "konaa0", + "discord": "1149438819834269856", + "bluesky": "vornexx.has.fish" + }, + "records": { + "TXT": "dh=8e7a42d430aa6c34dc619b79f7d6fc1f3ca69845" + } +} diff --git a/domains/_discord.koriumm.json b/domains/_discord.koriumm.json index 32251e8fe..3913f78f7 100644 --- a/domains/_discord.koriumm.json +++ b/domains/_discord.koriumm.json @@ -4,7 +4,7 @@ "email": "KoriummLive@gmail.com", "discord": "hong.kong" }, - "record": { + "records": { "TXT": "dh=6bb4d63a46cfa4b087744e44ff2a2b68398bcf0f" } } diff --git a/domains/_discord.korrykatti.json b/domains/_discord.korrykatti.json index ef3a1bb50..955072373 100644 --- a/domains/_discord.korrykatti.json +++ b/domains/_discord.korrykatti.json @@ -3,7 +3,7 @@ "username": "korrykatti", "email": "8nctvx7gi@mozmail.com" }, - "record": { + "records": { "TXT": "dh=75cc1a7bea6d033882a519e2d3fb4dd85314d6ec" } } diff --git a/domains/_discord.krishanu.json b/domains/_discord.krishanu.json index c51cb976f..0ad8abac3 100644 --- a/domains/_discord.krishanu.json +++ b/domains/_discord.krishanu.json @@ -4,7 +4,7 @@ "email": "portfolio.krishanu@gmail.com", "discord": "977802250716078210" }, - "record": { + "records": { "TXT": "dh=1603c613efb962d2d1557e92b16fe8caf00d0680" } } diff --git a/domains/_discord.krishnan.json b/domains/_discord.krishnan.json index 76332d52c..a2af3222b 100644 --- a/domains/_discord.krishnan.json +++ b/domains/_discord.krishnan.json @@ -3,7 +3,7 @@ "username": "krishnans2006", "email": "krishnans2006@gmail.com" }, - "record": { + "records": { "TXT": "dh=fb4689a2ce0128317b7371c97ce6cc9c1940d73e" } } diff --git a/domains/_discord.krunch.json b/domains/_discord.krunch.json index 1a376298a..1b73b0924 100644 --- a/domains/_discord.krunch.json +++ b/domains/_discord.krunch.json @@ -1,9 +1,9 @@ { "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, - "record": { + "records": { "TXT": "dh=df2bf9fb87a1dc3ee29c6ddfa51ed86da28581c5" } } diff --git a/domains/_discord.l7neg.json b/domains/_discord.l7neg.json index 090bf45bc..9c4eff28b 100644 --- a/domains/_discord.l7neg.json +++ b/domains/_discord.l7neg.json @@ -4,7 +4,7 @@ "email": "l7negdev@gmail.com", "discord": "669453086418534400" }, - "record": { + "records": { "TXT": "dh=5d787c6b4618def8d0af7492ae43cbe337c6675d" } } diff --git a/domains/_discord.lasty.json b/domains/_discord.lasty.json index 449b3c9d2..3657755d9 100644 --- a/domains/_discord.lasty.json +++ b/domains/_discord.lasty.json @@ -3,7 +3,7 @@ "username": "me0w-0", "email": "lasty@outlook.in" }, - "record": { + "records": { "TXT": "dh=c380482ea03623c429b2750e9daa2f2778dc18b8" } } diff --git a/domains/_discord.letum.json b/domains/_discord.letum.json index 16a352e1f..9d0beae48 100644 --- a/domains/_discord.letum.json +++ b/domains/_discord.letum.json @@ -3,7 +3,7 @@ "username": "amoramicae", "discord": "1252631745514180790" }, - "record": { + "records": { "TXT": "dh=d49386149c842861e763ac8bf5ce74c93414ce5a" } } diff --git a/domains/_discord.lewdhutao.json b/domains/_discord.lewdhutao.json index 60c4f4a41..8d6647f79 100644 --- a/domains/_discord.lewdhutao.json +++ b/domains/_discord.lewdhutao.json @@ -3,7 +3,7 @@ "username": "LewdHuTao", "email": "lewdhutao@shittybot.xyz" }, - "record": { + "records": { "TXT": "dh=b54d35b2dcde4ad6184e155736f8fd9911772204" } } diff --git a/domains/_discord.liam.json b/domains/_discord.liam.json new file mode 100644 index 000000000..dafe836a9 --- /dev/null +++ b/domains/_discord.liam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "liamatienza", + "email": "liamdev@duck.com" + }, + "records": { + "TXT": "dh=c53cce4432aa366f65bd320ab681d468c8cea968" + } +} diff --git a/domains/_discord.lingle.json b/domains/_discord.lingle.json index 24dbdc6a5..69e3e4333 100644 --- a/domains/_discord.lingle.json +++ b/domains/_discord.lingle.json @@ -3,7 +3,7 @@ "username": "lingledev", "email": "gideon.lingle2023@gmail.com" }, - "record": { + "records": { "TXT": ["dh=21d66ba4bca0c546fa80a877a6d3df57216bd5f5"] } } diff --git a/domains/_discord.lua.json b/domains/_discord.lua.json new file mode 100644 index 000000000..67d1672df --- /dev/null +++ b/domains/_discord.lua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "notxlua", + "email": "notxlua@gmail.com" + }, + "records": { + "TXT": "dh=970cb15c19a813efa00124e99f198cbac7942338" + } +} diff --git a/domains/_discord.luihh.json b/domains/_discord.luihh.json index 4aae203c2..56c157efc 100644 --- a/domains/_discord.luihh.json +++ b/domains/_discord.luihh.json @@ -3,7 +3,7 @@ "username": "luihh", "email": "luihh@proton.me" }, - "record": { + "records": { "TXT": "dh=81d234bda025f0796690ab6cf411be3a6b6c73c2" } } diff --git a/domains/_discord.lumi.json b/domains/_discord.lumi.json index 94a9a1b26..4fe9760b6 100644 --- a/domains/_discord.lumi.json +++ b/domains/_discord.lumi.json @@ -1,9 +1,9 @@ { "owner": { - "username": "itsFatlum", + "username": "itssfatlum", "discord": "563697359423406082" }, - "record": { + "records": { "TXT": ["dh=e00668e963ac416881a25e0bb5f87429a5eb0792"] } } diff --git a/domains/_discord.lumix.json b/domains/_discord.lumix.json index cc4eb0f9b..124cba27f 100644 --- a/domains/_discord.lumix.json +++ b/domains/_discord.lumix.json @@ -3,7 +3,7 @@ "username": "o-lumix", "email": "bylumixxx@gmail.com" }, - "record": { + "records": { "TXT": "dh=bbcffd54d5f1b8489e6641a569f55d5e82a7a32f" } } diff --git a/domains/_discord.lver.json b/domains/_discord.lver.json new file mode 100644 index 000000000..9a24818e2 --- /dev/null +++ b/domains/_discord.lver.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "records": { + "TXT": "dh=2e24b5f5d9aa41852614d8b5760748d097b138b9" + } +} diff --git a/domains/_discord.matt3o0.json b/domains/_discord.matt3o0.json index 1e5d7731e..ee41e8aa2 100644 --- a/domains/_discord.matt3o0.json +++ b/domains/_discord.matt3o0.json @@ -3,7 +3,7 @@ "username": "duvbolone", "email": "duvbolone@gmail.com" }, - "record": { + "records": { "TXT": ["dh=00c8db5a2edc793156939308c6f9e4a11bbf27e7"] } } diff --git a/domains/_discord.meesam.json b/domains/_discord.meesam.json index 9d67256b3..81bb59e42 100644 --- a/domains/_discord.meesam.json +++ b/domains/_discord.meesam.json @@ -3,7 +3,7 @@ "username": "meesam4687", "email": "meesam4687@gmail.com" }, - "record": { + "records": { "TXT": "dh=f7e6c74947af4ca6f07d83d6b2fba1fcb965c9a6" } } diff --git a/domains/_discord.mehulpathak.json b/domains/_discord.mehulpathak.json new file mode 100644 index 000000000..b5184cb87 --- /dev/null +++ b/domains/_discord.mehulpathak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "m3hu1", + "email": "pathakkmehul@gmail.com" + }, + "records": { + "TXT": "dh=bb5a0d412e8f7f0b02dbf56d27610f20b99ac8a9" + } +} diff --git a/domains/_discord.meywy.json b/domains/_discord.meywy.json index 56cb01584..8f144bd42 100644 --- a/domains/_discord.meywy.json +++ b/domains/_discord.meywy.json @@ -3,7 +3,7 @@ "username": "Meywy", "email": "meywyy@gmail.com" }, - "record": { + "records": { "TXT": "dh=67bbe9b7f65f85288f9235e79cde1dbab8dc825f" } } diff --git a/domains/_discord.minhphan.json b/domains/_discord.minhphan.json index 4a3fc72d2..60cc3ad80 100644 --- a/domains/_discord.minhphan.json +++ b/domains/_discord.minhphan.json @@ -3,7 +3,7 @@ "username": "MinhPhan1203", "email": "phan48788@gmail.com" }, - "record": { + "records": { "TXT": "dh=78c7c89ac00d07ec34dd5e1d68289a3a877353dd" } } diff --git a/domains/_discord.miyuki.json b/domains/_discord.miyuki.json new file mode 100644 index 000000000..bd1194e07 --- /dev/null +++ b/domains/_discord.miyuki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YueMiyuki", + "email": "me@miyuki-yue.dev" + }, + "records": { + "TXT": "dh=b9df0d9c0ab6eced3bed9d5bca5f693962bb4e5c" + } +} diff --git a/domains/_discord.moddatei.json b/domains/_discord.moddatei.json new file mode 100644 index 000000000..dd40c4a4c --- /dev/null +++ b/domains/_discord.moddatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "moddatei", + "email": "moddatei@proton.me" + }, + "records": { + "TXT": "dh=61bcf3ed41433d6b179422a6b0bd4fc2b95acf4e" + } +} diff --git a/domains/_discord.mrstickypiston.json b/domains/_discord.mrstickypiston.json index 4375e3c41..5d35a07bb 100644 --- a/domains/_discord.mrstickypiston.json +++ b/domains/_discord.mrstickypiston.json @@ -4,7 +4,7 @@ "email": "mr.sticky.piston@gmail.com", "discord": "700766242268774471" }, - "record": { + "records": { "TXT": "dh=bf6dee9491a16ba5f5e3f6550e1fe4640843323e" } } diff --git a/domains/_discord.mwa.json b/domains/_discord.mwa.json index f29e0503d..2fd629ac5 100644 --- a/domains/_discord.mwa.json +++ b/domains/_discord.mwa.json @@ -3,7 +3,7 @@ "username": "totallynotmwa", "discord": "totallynotmwa" }, - "record": { + "records": { "TXT": "dh=7d4809eb409755939787cbc69a2de54a863b32d8" } } diff --git a/domains/_discord.mxritz.json b/domains/_discord.mxritz.json index 4dacc65db..f2270ec1e 100644 --- a/domains/_discord.mxritz.json +++ b/domains/_discord.mxritz.json @@ -3,7 +3,7 @@ "username": "mxritzdev", "email": "contact@mxritz.dev" }, - "record": { + "records": { "TXT": "dh=01795372b646a8a36087b00130313eda00b40928" } } diff --git a/domains/_discord.myrdin.json b/domains/_discord.myrdin.json index 8b73e6b53..c22d4a6bb 100644 --- a/domains/_discord.myrdin.json +++ b/domains/_discord.myrdin.json @@ -3,7 +3,7 @@ "username": "Myrdincx", "email": "myrdincx@gmail.com" }, - "record": { + "records": { "TXT": "dh=66640cb07a3d5f325ece17597144b38af7b75ec9" } } diff --git a/domains/_discord.narasima.json b/domains/_discord.narasima.json new file mode 100644 index 000000000..cbd55b8d4 --- /dev/null +++ b/domains/_discord.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "records": { + "TXT": "dh=d54feeb331611626de2134ef368bdcf7691cbbb3" + } +} diff --git a/domains/_discord.nek0zyx.json b/domains/_discord.nek0zyx.json new file mode 100644 index 000000000..0150df8ca --- /dev/null +++ b/domains/_discord.nek0zyx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nek0zyx", + "email": "nek0zyx@costmiku.space" + }, + "records": { + "TXT": "dh=540cae67bbdffb46fb380c384823dda2270a28f0" + } +} diff --git a/domains/_discord.nekitori17.json b/domains/_discord.nekitori17.json index c24a282a1..bd7dd3011 100644 --- a/domains/_discord.nekitori17.json +++ b/domains/_discord.nekitori17.json @@ -4,7 +4,7 @@ "email": "cuongnguyen286641@gmail.com", "discord": "nekitorihakari" }, - "record": { + "records": { "TXT": "dh=8849bd42df7ed435ec3e75b68585a930ec3634b0" } } diff --git a/domains/_discord.nekomyaa.json b/domains/_discord.nekomyaa.json new file mode 100644 index 000000000..06c28c72e --- /dev/null +++ b/domains/_discord.nekomyaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lolinekord", + "email": "contact@lolineko3.net" + }, + "records": { + "TXT": "dh=a761b99a6a7d449df2e423a119eab9a4ec773e7e" + } +} diff --git a/domains/_discord.neon.json b/domains/_discord.neon.json index dea66936a..e7e348940 100644 --- a/domains/_discord.neon.json +++ b/domains/_discord.neon.json @@ -5,7 +5,7 @@ "twitter": "NeonTheNerd", "email": "goodboyneon03@gmail.com" }, - "record": { + "records": { "TXT": "dh=9179ff512ac0562aeebd4d418a565cd7208cdfb2" } } diff --git a/domains/_discord.nick.json b/domains/_discord.nick.json new file mode 100644 index 000000000..db3d90097 --- /dev/null +++ b/domains/_discord.nick.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PrinceBunBun981", + "email": "me@nick.cool", + "discord": "nickwoah" + }, + "records": { + "TXT": "dh=b9e9ee170ceabd5d201a50225be187e055b9bbb6" + } +} diff --git a/domains/_discord.nickibreeki.json b/domains/_discord.nickibreeki.json new file mode 100644 index 000000000..fe44620be --- /dev/null +++ b/domains/_discord.nickibreeki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "n1ckibreeki", + "email": "nickibreeki@outlook.com" + }, + "records": { + "TXT": "dh=14acda3ef13ac5d15f7cf8e8cfd3a8556fc227eb" + } +} diff --git a/domains/_discord.niclqs.json b/domains/_discord.niclqs.json index 059975761..fec53110f 100644 --- a/domains/_discord.niclqs.json +++ b/domains/_discord.niclqs.json @@ -1,12 +1,11 @@ { - "description": "niclqs.is-a.dev discord verify „ownership''", - "repo": "https://github.com/niclqsger", - "owner": { - "discord": "niclqs", - "email": "discord@push-den-weg.de", - "username": "NiclqsGER" - }, - "record": { - "TXT": "dh=0b19779c5bdb5bdc6a6e3a5d7f44996deedab1dc" - } + "description": "niclqs.is-a.dev discord verify ownership", + "owner": { + "discord": "niclqs", + "email": "discord@push-den-weg.de", + "username": "NiclqsGER" + }, + "records": { + "TXT": "dh=0b19779c5bdb5bdc6a6e3a5d7f44996deedab1dc" + } } diff --git a/domains/_discord.niksne.json b/domains/_discord.niksne.json index 0d7a19eb1..fb75b2015 100644 --- a/domains/_discord.niksne.json +++ b/domains/_discord.niksne.json @@ -3,7 +3,7 @@ "username": "NiKSneMC", "email": "contact@niksne.ru" }, - "record": { + "records": { "TXT": "dh=47ed92cf32dd1f8ab41a7dd00ee21d1e09fc8317" } } diff --git a/domains/_discord.nikyofficial.json b/domains/_discord.nikyofficial.json index 0777d6d1a..1cc554c73 100644 --- a/domains/_discord.nikyofficial.json +++ b/domains/_discord.nikyofficial.json @@ -4,7 +4,7 @@ "email": "anhky581@gmail.com", "discord": "1007521768761729094" }, - "record": { + "records": { "TXT": "dh=eb8bcab3a2e8a1f278e7cb88404974b46f58a31c" } } diff --git a/domains/_discord.noob.json b/domains/_discord.noob.json new file mode 100644 index 000000000..38f14862d --- /dev/null +++ b/domains/_discord.noob.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "IMXNOOBX", + "email": "me@noob.bio" + }, + "records": { + "TXT": "dh=4bda89987e4e232aac78bb9d0a0e973c96166119" + } +} diff --git a/domains/_discord.notcoded.json b/domains/_discord.notcoded.json new file mode 100644 index 000000000..db718d240 --- /dev/null +++ b/domains/_discord.notcoded.json @@ -0,0 +1,11 @@ +{ + "description": "domain verification for discord", + "owner": { + "username": "not-coded", + "discord": "notcoded", + "discordUserID": "620662953347121163" + }, + "records": { + "TXT": "dh=0a6a5afd3a6ee9b2709a43a77e6679a2e9969384" + } +} diff --git a/domains/_discord.notzer0two.json b/domains/_discord.notzer0two.json new file mode 100644 index 000000000..622859baa --- /dev/null +++ b/domains/_discord.notzer0two.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "records": { + "TXT": "dh=89504c863f0365fd5e214e695141b54b8d44c6c7" + } +} diff --git a/domains/_discord.nuggew.json b/domains/_discord.nuggew.json new file mode 100644 index 000000000..b9dcf0c97 --- /dev/null +++ b/domains/_discord.nuggew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nuggew", + "email": "contato.guilherme.silva.araujo@gmail.com" + }, + "records": { + "TXT": "dh=a5d33ae1ddbac9692e675b562538f6b316f1aa1f" + } +} diff --git a/domains/_discord.okinea.json b/domains/_discord.okinea.json index cdd471c33..a2b8741d5 100644 --- a/domains/_discord.okinea.json +++ b/domains/_discord.okinea.json @@ -2,10 +2,9 @@ "owner": { "username": "okineadev", "discord": "okineadev", - "telegram": "okinea", - "email": "81070564+okineadev@users.noreply.github.com" + "telegram": "okinea" }, - "record": { + "records": { "TXT": "dh=72f6dea86d79bda34d2c61e1edb3037954caac82" } } diff --git a/domains/_discord.oliverg.json b/domains/_discord.oliverg.json new file mode 100644 index 000000000..6fcab03e7 --- /dev/null +++ b/domains/_discord.oliverg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oliver720", + "email": "olivergarro2017@gmail.com" + }, + "records": { + "TXT": "dh=9a0dc7af9a4d5bafe658ebee92cff00b08d46270" + } +} diff --git a/domains/_discord.osho.json b/domains/_discord.osho.json index 8375d9a64..2d1561608 100644 --- a/domains/_discord.osho.json +++ b/domains/_discord.osho.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "profxadke", - "email": "xadkeg@duck.com" - }, - "record": { - "TXT": ["dh=35ca5646ff4cbe25158bef568c0e26c7224f5a61"] - } + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "records": { + "TXT": ["dh=35ca5646ff4cbe25158bef568c0e26c7224f5a61"] + } } diff --git a/domains/_discord.oxmc.json b/domains/_discord.oxmc.json index 330958e8a..26f2f1acb 100644 --- a/domains/_discord.oxmc.json +++ b/domains/_discord.oxmc.json @@ -4,7 +4,7 @@ "email": "oxmc7769.mail@gmail.com", "discord": "oxmc7769" }, - "record": { + "records": { "TXT": "dh=6493e80ff0645ec8c706643ae6e357066becb660" } } diff --git a/domains/_discord.painscreen.json b/domains/_discord.painscreen.json index 63e730ba9..0e37c7b41 100644 --- a/domains/_discord.painscreen.json +++ b/domains/_discord.painscreen.json @@ -4,7 +4,7 @@ "discord": "836012649959522384", "reddit": "u/ahhlifeeee" }, - "record": { + "records": { "TXT": "dh=7e6fb461ca0baaa88aa3fd36db70d4f8efa67675" } } diff --git a/domains/_discord.paul.json b/domains/_discord.paul.json index ba7a1984e..2e47f63a0 100644 --- a/domains/_discord.paul.json +++ b/domains/_discord.paul.json @@ -3,7 +3,7 @@ "username": "NotKaskus", "email": "kaskus45@proton.me" }, - "record": { + "records": { "TXT": "dh=47c4b20ad8d876bd40060dd5cee8a4a201378626" } } diff --git a/domains/_discord.pig.json b/domains/_discord.pig.json index 332ae06de..2d4400628 100644 --- a/domains/_discord.pig.json +++ b/domains/_discord.pig.json @@ -3,7 +3,7 @@ "username": "ipigtw", "email": "diegogamingtw@gmail.com" }, - "record": { + "records": { "TXT": "dh=3f12653d72696e056aa42fc684e3177a5de4b7ba" } } diff --git a/domains/_discord.piker.json b/domains/_discord.piker.json new file mode 100644 index 000000000..a63120ab3 --- /dev/null +++ b/domains/_discord.piker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "piker98988", + "email": "iker.pavcur@gmail.com" + }, + "records": { + "TXT": "dh=fbea31b6c973108788a610db21edd08f23d92801" + } +} diff --git a/domains/_discord.piste.json b/domains/_discord.piste.json index 043fb9f30..4f2217ea8 100644 --- a/domains/_discord.piste.json +++ b/domains/_discord.piste.json @@ -3,7 +3,7 @@ "username": "zpiste", "email": "contact@piste.dev" }, - "record": { + "records": { "TXT": "dh=896e7262fdc9ab140d9c5b137e41917e8512a6bd" } } diff --git a/domains/_discord.poked.json b/domains/_discord.poked.json index 2f54d094c..0bd89635d 100644 --- a/domains/_discord.poked.json +++ b/domains/_discord.poked.json @@ -4,7 +4,7 @@ "email": "pokedwastaken@gmail.com", "discord": "poked" }, - "record": { + "records": { "TXT": "dh=14c9c8708542baf32a78da0ac413184b02e43486" } } diff --git a/domains/_discord.privatekey.json b/domains/_discord.privatekey.json deleted file mode 100644 index b5925c9cf..000000000 --- a/domains/_discord.privatekey.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "keydevelops", - "email": "rumaevvadim@gmail.com" - }, - "record": { - "TXT": "dh=be4a0fbe37df16fa2d25e29ec7bc4f669703a71d" - } -} diff --git a/domains/_discord.priyanshu.json b/domains/_discord.priyanshu.json index de00307ca..35b3dc87f 100644 --- a/domains/_discord.priyanshu.json +++ b/domains/_discord.priyanshu.json @@ -1,10 +1,10 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com", + "email": "priyansxu@yahoo.com", "discord": "priyansxu" }, - "record": { + "records": { "TXT": "dh=4784b7e772166e35d7f9a41207e1ddf7e3d57f82" } } diff --git a/domains/_discord.push.json b/domains/_discord.push.json index b827037a4..361b746a7 100644 --- a/domains/_discord.push.json +++ b/domains/_discord.push.json @@ -3,7 +3,7 @@ "username": "pushingcc", "email": "pushing@mailfence.com" }, - "record": { + "records": { "TXT": "dh=63d8f2f88286c81885273cdf5f07364b15884ff6" } } diff --git a/domains/_discord.qing762.json b/domains/_discord.qing762.json new file mode 100644 index 000000000..518ef1749 --- /dev/null +++ b/domains/_discord.qing762.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qing762", + "email": "q1ng762@outlook.com" + }, + "records": { + "TXT": "dh=c798ccabffa36b2206669860c46efe903852e675" + } +} diff --git a/domains/_discord.quantum.json b/domains/_discord.quantum.json new file mode 100644 index 000000000..e5aeb76a5 --- /dev/null +++ b/domains/_discord.quantum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lakshinhemachandran", + "email": "lh140313@outlook.com" + }, + "records": { + "TXT": "dh=5a5f9d502ca98ef9d724b197609538f5b5379c83" + } +} diff --git a/domains/_discord.raccoon.json b/domains/_discord.raccoon.json index 7ef5d6a23..9da6f19d6 100644 --- a/domains/_discord.raccoon.json +++ b/domains/_discord.raccoon.json @@ -1,10 +1,9 @@ { "owner": { "username": "nilsraccoon", - "discord": "1129507464589627512", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PPnoIJfcoL_7yxUSqZflrlb75Q3se_Tt1I62wfjtmAQ-SQoJnScuTko8x83owshF2icNswmUe5tn7f3DbxJYDnnIlumVntt0CezIbQEocX_x8TCMtRuTcTvD4ueeBQsxnBmEtvfKPsZj5Razij8afJmoUwgLJVmBwsqWzEdtYXBhcuJRwa0X-7LTx_1UKBPRhuoAbUUCyXLpnczz1O8q0ZUNLZE1fiIlpF-wvZV9n807Vq9_CdAPsywBKdBEp7bzdBl-J_Tz9eDL7fon71moFHCd9HK2m-KWJZx9WkspaTt7DQ4fgqj47VyvZKDtjyaAILpYQjlzE5AlLmMF54Sgew.m3UG6A4GKt7d98bD7Ipfdw.NJwkUVeZFpfRumoeOQA8ip8Uv-T74jhtnBIrtwQw6wWoBpOQMiIFmefxRWVvGqH2BZWfyupRFExmMqxmzLUIMZBwmNtwW7Six9ixDYXZPWM.nM4AkCd7tHSfBFyQ7313Jw" + "discord": "1129507464589627512" }, - "record": { + "records": { "TXT": "dh=e9381b84c8007443b186820d32a3797bd8fa537d" } } diff --git a/domains/_discord.ravener.json b/domains/_discord.ravener.json index 74860950c..6e5704678 100644 --- a/domains/_discord.ravener.json +++ b/domains/_discord.ravener.json @@ -5,7 +5,7 @@ "twitter": "RavenRavener", "discord": "292690616285134850" }, - "record": { + "records": { "TXT": "dh=da7bf917ef77c49f85bb9303d1703d0f10f492d8" } } diff --git a/domains/_discord.reading.json b/domains/_discord.reading.json index 6d673e529..f67ed50ca 100644 --- a/domains/_discord.reading.json +++ b/domains/_discord.reading.json @@ -3,7 +3,7 @@ "username": "readandprogress", "email": "readandprogress@duck.com" }, - "record": { + "records": { "TXT": "dh=c03f5e70eda99aaa08e966cb8c97135ec2a5b482" } } diff --git a/domains/_discord.receiptify.json b/domains/_discord.receiptify.json index 217046b70..f71c9b979 100644 --- a/domains/_discord.receiptify.json +++ b/domains/_discord.receiptify.json @@ -1,10 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { + "records": { "TXT": "dh=4ded2f0ba889f8dad38ad210e9a015c180dcc6c8" } } diff --git a/domains/_discord.rejectmodders.json b/domains/_discord.rejectmodders.json new file mode 100644 index 000000000..11aa3eb2e --- /dev/null +++ b/domains/_discord.rejectmodders.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RejectModders", + "email": "rejectmodders@disutils.com" + }, + "records": { + "TXT": "dh=b77acadd3e4e89069f1b25422dd5eded7bd1354c" + } +} diff --git a/domains/_discord.riku.json b/domains/_discord.riku.json index d429c336e..b33b71fc2 100644 --- a/domains/_discord.riku.json +++ b/domains/_discord.riku.json @@ -3,7 +3,7 @@ "username": "Rikuxyz", "email": "rikukagenou@gmail.com" }, - "record": { + "records": { "TXT": "dh=fb048a2833345c205c4d76f9e7a44a13b180967f" } } diff --git a/domains/_discord.riviox.json b/domains/_discord.riviox.json index ab7a84e79..c4107f32e 100644 --- a/domains/_discord.riviox.json +++ b/domains/_discord.riviox.json @@ -4,7 +4,7 @@ "email": "rivioxyt@hotmail.com", "discord": "1200520669570539620" }, - "record": { + "records": { "TXT": "dh=dd0ace532148756be1fc56725f272b263adb8978" } } diff --git a/domains/_discord.rllanonymous.json b/domains/_discord.rllanonymous.json index 63bce2cbc..39369e56b 100644 --- a/domains/_discord.rllanonymous.json +++ b/domains/_discord.rllanonymous.json @@ -3,7 +3,7 @@ "username": "RLLanonymous", "email": "ethanweirich31@gmail.com" }, - "record": { + "records": { "TXT": "dh=da8ae85aafa7325f95bd440a972eb5efa90c45f6" } } diff --git a/domains/_discord.roki.json b/domains/_discord.roki.json new file mode 100644 index 000000000..6d35ba0d9 --- /dev/null +++ b/domains/_discord.roki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Roki100", + "discord": "289479495444987904" + }, + "records": { + "TXT": "dh=7c71f3dd265b7bae0e9a7383a779bddc4e8adf62" + } +} diff --git a/domains/_discord.rouf0x.json b/domains/_discord.rouf0x.json index 7928bfeb6..82499ff85 100644 --- a/domains/_discord.rouf0x.json +++ b/domains/_discord.rouf0x.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "Roufox", - "email": "gabrielruf.fr@gmail.com", - "discord": "Roufox" - }, - "record": { - "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271" - } + "owner": { + "username": "Rouf0x", + "discord": "roufox" + }, + "records": { + "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271" + } } diff --git a/domains/_discord.rrcoder0167.json b/domains/_discord.rrcoder0167.json index 94386ec93..7a8ac96ec 100644 --- a/domains/_discord.rrcoder0167.json +++ b/domains/_discord.rrcoder0167.json @@ -3,7 +3,7 @@ "username": "rrcoder0167", "email": "riddhiman.rana@gmail.com" }, - "record": { + "records": { "TXT": "dh=edffc018717818b3b5679949d15c4d3014187e1f" } } diff --git a/domains/_discord.rusky.json b/domains/_discord.rusky.json index d347894a7..1286f933b 100644 --- a/domains/_discord.rusky.json +++ b/domains/_discord.rusky.json @@ -3,7 +3,7 @@ "username": "RuskyDev", "email": "iamayaanalee@gmail.com" }, - "record": { + "records": { "TXT": "dh=cb120c45e7e8c3ff2e65938b1e2fdf9d2f18707f" } } diff --git a/domains/_discord.s4il.json b/domains/_discord.s4il.json index 0bea70580..427221305 100644 --- a/domains/_discord.s4il.json +++ b/domains/_discord.s4il.json @@ -3,7 +3,7 @@ "username": "S4IL21", "email": "s4il.is.a.dev@gmail.com" }, - "record": { + "records": { "TXT": "dh=accf8fbd0fd5a197eecbedae299873b421de6430" } } diff --git a/domains/_discord.sabbir.json b/domains/_discord.sabbir.json deleted file mode 100644 index 1ae6b2940..000000000 --- a/domains/_discord.sabbir.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "s8rr" - }, - "record": { - "TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"] - } -} diff --git a/domains/_discord.sabidzpro.json b/domains/_discord.sabidzpro.json new file mode 100644 index 000000000..21cde4195 --- /dev/null +++ b/domains/_discord.sabidzpro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "saifulabidin", + "email": "syaiful.osd@yahoo.com" + }, + "records": { + "TXT": "a25a4d7cffc472b9402e6544f5f79f84c001e563" + } +} diff --git a/domains/_discord.sanooj.json b/domains/_discord.sanooj.json index 6d1aa5537..add714062 100644 --- a/domains/_discord.sanooj.json +++ b/domains/_discord.sanooj.json @@ -3,7 +3,7 @@ "username": "Sanoojes", "email": "sanoojes6371@gmail.com" }, - "record": { + "records": { "TXT": "dh=e486a386ca77d0104403742c5e9955c337ab70ec" } } diff --git a/domains/_discord.schuh.json b/domains/_discord.schuh.json new file mode 100644 index 000000000..eb1d98894 --- /dev/null +++ b/domains/_discord.schuh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vqpe", + "email": "theschuhofyou@gmail.com" + }, + "records": { + "TXT": "dh=7e4702912048b4ff69b652081db69782cd50ccf3" + } +} diff --git a/domains/_discord.sdp.json b/domains/_discord.sdp.json index 6c4a30a5f..b9fb5e4cb 100644 --- a/domains/_discord.sdp.json +++ b/domains/_discord.sdp.json @@ -1,10 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { + "records": { "TXT": "dh=a34d656a6fb91723bfe4f87e413345df85ca74f7" } } diff --git a/domains/_discord.seiko.json b/domains/_discord.seiko.json index fa30fc0d0..84162a0f3 100644 --- a/domains/_discord.seiko.json +++ b/domains/_discord.seiko.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Delta-0mega" - }, - "record": { - "TXT": ["dh=af891775cf595304f98791bd551966a1c2411fe4"] - } -} + "owner": { + "username": "Delta-0mega" + }, + "records": { + "TXT": ["dh=af891775cf595304f98791bd551966a1c2411fe4"] + } +} diff --git a/domains/_discord.sep.json b/domains/_discord.sep.json new file mode 100644 index 000000000..03c0b8c78 --- /dev/null +++ b/domains/_discord.sep.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sepultrex", + "email": "sepultrex@gmail.com" + }, + "records": { + "TXT": "dh=2f929b7a4935af1795801360d92ba2788e27a2ff" + } +} diff --git a/domains/_discord.seria.json b/domains/_discord.seria.json index 3eb6d4560..fcc0c8929 100644 --- a/domains/_discord.seria.json +++ b/domains/_discord.seria.json @@ -4,7 +4,7 @@ "email": "seria.ati@gmail.com", "discord": "seria_ati" }, - "record": { + "records": { "TXT": "dh=bbebabaaf56930459c8954d414197dddbc96ef11" } } diff --git a/domains/_discord.sewt.json b/domains/_discord.sewt.json index 315424025..53f895526 100644 --- a/domains/_discord.sewt.json +++ b/domains/_discord.sewt.json @@ -1,10 +1,9 @@ { "owner": { "username": "SkyExploreWasTaken", - "discord": "1049263707177353247", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + "discord": "1049263707177353247" }, - "record": { + "records": { "TXT": "dh=a34e8bb281bffd5d738efe81e189ab6ef231ebb5" } } diff --git a/domains/_discord.shan.json b/domains/_discord.shan.json index 0a25a1dd1..509a8ad4e 100644 --- a/domains/_discord.shan.json +++ b/domains/_discord.shan.json @@ -3,7 +3,7 @@ "username": "Adwaith-Shan-Pk", "email": "mail@adwaithshan.rf.gd" }, - "record": { + "records": { "TXT": "dh=edc2f8a1ed533b91a794ced9244cb4fa8a138531" } } diff --git a/domains/_discord.shimizu.json b/domains/_discord.shimizu.json new file mode 100644 index 000000000..c0de8699c --- /dev/null +++ b/domains/_discord.shimizu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "records": { + "TXT": "dh=a24d14132caded8f17f5e4fdd4222378e8df2b89" + } +} diff --git a/domains/_discord.shy.json b/domains/_discord.shy.json index 73f4581fb..5fcd7ad5c 100644 --- a/domains/_discord.shy.json +++ b/domains/_discord.shy.json @@ -3,7 +3,7 @@ "username": "ImShyMike", "discord": "582648583635992622" }, - "record": { + "records": { "TXT": "dh=4277dadd7134f6e2ee439faf5377801a9eec7b2c" } } diff --git a/domains/_discord.shymega.json b/domains/_discord.shymega.json index 55ad48b75..f9e2e8966 100644 --- a/domains/_discord.shymega.json +++ b/domains/_discord.shymega.json @@ -3,7 +3,7 @@ "username": "shymega", "email": "shymega@shymega.org.uk" }, - "record": { + "records": { "TXT": "dh=43b627cccb9f6828d48ec7db6a573824bccfabc5" } } diff --git a/domains/_discord.squair.json b/domains/_discord.squair.json new file mode 100644 index 000000000..940492fb3 --- /dev/null +++ b/domains/_discord.squair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "squairdev", + "email": "squairyt@gmail.com" + }, + "records": { + "TXT": "dh=fea8dd63e8fe19bf9094804dd5936fdaacbec5b5" + } +} diff --git a/domains/_discord.status.ciaobot.json b/domains/_discord.status.ciaobot.json deleted file mode 100644 index 88fa15427..000000000 --- a/domains/_discord.status.ciaobot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ciao287", - "discord": "687333016921440317" - }, - "record": { - "TXT": "dh=5b1ae56adf1959519abbb008b4803ee9911ff1b6" - } -} diff --git a/domains/_discord.sun.json b/domains/_discord.sun.json new file mode 100644 index 000000000..f158916a1 --- /dev/null +++ b/domains/_discord.sun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sxn4y", + "discord": "5unn7n" + }, + "records": { + "TXT": "dh=cfe36ed36af73c3bdcfbfa23744d5826b64d1cfc" + } +} diff --git a/domains/_discord.sussyrayan.json b/domains/_discord.sussyrayan.json index c78384ca1..3444adcae 100644 --- a/domains/_discord.sussyrayan.json +++ b/domains/_discord.sussyrayan.json @@ -3,7 +3,7 @@ "username": "syedrayangames", "email": "syedrayangames@gmail.com" }, - "record": { + "records": { "TXT": "dh=634d6d19cba1fa609a7e88e098292bcec9198aa7" } } diff --git a/domains/_discord.tat2008.json b/domains/_discord.tat2008.json deleted file mode 100644 index ef90431f4..000000000 --- a/domains/_discord.tat2008.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "tat2008", - "email": "tuan.trananh2008@gmail.com" - }, - "record": { - "TXT": "dh=9abe38f80f0a7adbf9ef20a7048ff7dd399d984b" - } -} diff --git a/domains/_discord.tay.json b/domains/_discord.tay.json index 0d3727a5d..13a8a7eef 100644 --- a/domains/_discord.tay.json +++ b/domains/_discord.tay.json @@ -4,7 +4,7 @@ "email": "mystixmew@gmail.com", "discord": "1050531216589332581" }, - "record": { + "records": { "TXT": "dh=e7e657ac53ef369ebb204320dd3fce49a25ed959" } } diff --git a/domains/_discord.tee.json b/domains/_discord.tee.json index 72f9cf2f9..bba0795cb 100644 --- a/domains/_discord.tee.json +++ b/domains/_discord.tee.json @@ -4,7 +4,7 @@ "email": "mystixmew@gmail.com", "discord": "1050531216589332581" }, - "record": { + "records": { "TXT": "dh=a15b4e8395d7033db9d69d9961dd8c15194a4cbe" } } diff --git a/domains/_discord.tentomasne.json b/domains/_discord.tentomasne.json index 129f3e26a..a338d32b9 100644 --- a/domains/_discord.tentomasne.json +++ b/domains/_discord.tentomasne.json @@ -2,7 +2,7 @@ "owner": { "username": "jasomtubratu" }, - "record": { + "records": { "TXT": ["dh=47fddb5e68440c61b93da59a8e57d91da546ae1e"] } } diff --git a/domains/_discord.thatoddshade.json b/domains/_discord.thatoddshade.json index 6f7fc8d1f..efeb25020 100644 --- a/domains/_discord.thatoddshade.json +++ b/domains/_discord.thatoddshade.json @@ -4,7 +4,7 @@ "email": "thatoddshade+contact@proton.me", "discord": "thatoddshade" }, - "record": { + "records": { "TXT": "dh=51cf54deca00dbc60a7d6f7985307a726223fdd8" } } diff --git a/domains/_discord.thenoppy12.json b/domains/_discord.thenoppy12.json index 4ed5817f9..be3d3b3ff 100644 --- a/domains/_discord.thenoppy12.json +++ b/domains/_discord.thenoppy12.json @@ -6,7 +6,7 @@ "email": "lengochuykiengiang@gmail.com", "discord": ".thenoppy12" }, - "record": { + "records": { "TXT": "dh=a865dfb9b8ef277f5edfaad346ddbbcfcba85b71" } } diff --git a/domains/_discord.thetommylong.json b/domains/_discord.thetommylong.json new file mode 100644 index 000000000..a3f5cafe9 --- /dev/null +++ b/domains/_discord.thetommylong.json @@ -0,0 +1,10 @@ +{ + "description": "Currently used for portfolio website and SMTP mail server", + "owner": { + "username": "TheTommylongIsHeree", + "discord": "thetommylong" + }, + "records": { + "TXT": "dh=112935453eef7c160175f5248382ad40924848b0" + } +} diff --git a/domains/_discord.toast.json b/domains/_discord.toast.json index 13c896aec..e60c4b5c2 100644 --- a/domains/_discord.toast.json +++ b/domains/_discord.toast.json @@ -3,7 +3,7 @@ "username": "lightly-toasted", "email": "tooast@duck.com" }, - "record": { + "records": { "TXT": "dh=bfb579423bd225af45d72942fe5c646b0504b2c6" } } diff --git a/domains/_discord.tobez.json b/domains/_discord.tobez.json index 76330cf99..39fdcab52 100644 --- a/domains/_discord.tobez.json +++ b/domains/_discord.tobez.json @@ -3,7 +3,7 @@ "username": "tobezdev", "email": "therealtobes28@gmail.com" }, - "record": { + "records": { "TXT": "dh=64624183b9e763aa7a812ddf39b0ae9261491182" } } diff --git a/domains/_discord.tomgxz.json b/domains/_discord.tomgxz.json index 36e55c167..5d62ccab2 100644 --- a/domains/_discord.tomgxz.json +++ b/domains/_discord.tomgxz.json @@ -3,7 +3,7 @@ "username": "tomgxz", "email": "tomgxz138@gmail.com" }, - "record": { + "records": { "TXT": "dh=ead80df9c64ea8aecd35e8a291ef261f0f26e133" } } diff --git a/domains/_discord.trix.json b/domains/_discord.trix.json index 4f83b7007..2e5b06f41 100644 --- a/domains/_discord.trix.json +++ b/domains/_discord.trix.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "tr1xem" - }, - "record": { - "TXT": ["dh=ecefe601258bdf0c1e1e20adb05d84c7b7229995"] - } -} + "owner": { + "username": "tr1xem" + }, + "records": { + "TXT": ["dh=ecefe601258bdf0c1e1e20adb05d84c7b7229995"] + } +} diff --git a/domains/_discord.turvenuija.json b/domains/_discord.turvenuija.json index 88b0b83ca..b5ee673d3 100644 --- a/domains/_discord.turvenuija.json +++ b/domains/_discord.turvenuija.json @@ -3,7 +3,7 @@ "username": "turvenuija1", "email": "akulehtola123@gmail.com" }, - "record": { + "records": { "TXT": "dh=6e9f6180791c2d3ba3454777dde4d4637bc66c17" } } diff --git a/domains/_discord.untitled.json b/domains/_discord.untitled.json deleted file mode 100644 index 6d57baa9a..000000000 --- a/domains/_discord.untitled.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "VihaanAnand", - "email": "macos14sonoma@gmail.com" - }, - "record": { - "TXT": "dh=635f70c64c210c98011d4391e0ba6a69adfedc89" - } -} diff --git a/domains/_discord.urging.json b/domains/_discord.urging.json index f556b7c19..6ba27db1b 100644 --- a/domains/_discord.urging.json +++ b/domains/_discord.urging.json @@ -3,7 +3,7 @@ "username": "UrgingOfc", "email": "diogo.lopes.silva.ch@gmail.com" }, - "record": { + "records": { "TXT": "dh=847ffa96587e4547c31ae6c36fbc5fed451bf886" } } diff --git a/domains/_discord.vornexx.json b/domains/_discord.vornexx.json index 462772ba8..606b55743 100644 --- a/domains/_discord.vornexx.json +++ b/domains/_discord.vornexx.json @@ -3,7 +3,7 @@ "username": "vornexx", "email": "ajay.ramnath@courvix.com" }, - "record": { + "records": { "TXT": "dh=d7455d2e7bbe608a4e60dee8c502c758d3d13464" } } diff --git a/domains/_discord.voxxdevv.json b/domains/_discord.voxxdevv.json index 3b379ef5b..69e6bcc20 100644 --- a/domains/_discord.voxxdevv.json +++ b/domains/_discord.voxxdevv.json @@ -1,9 +1,9 @@ { "owner": { "username": "voxxdevv", - "email": "aminrh@icloud.com" + "email": "nft@itis.top" }, - "record": { - "TXT": "dh=6d817006952096ed75c9c1c84fab50783bad46ac" + "records": { + "TXT": "dh=8df11236fd43bb1f7868e7467344a44a159aa35a" } } diff --git a/domains/_discord.webcubed.json b/domains/_discord.webcubed.json index b5a4d0ec4..360403fa5 100644 --- a/domains/_discord.webcubed.json +++ b/domains/_discord.webcubed.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "webcubed" - }, - "record": { - "TXT": ["dh=1612c48236f97b2a8b0fc79833cd7e46cf0c512d"] - } -} + "owner": { + "username": "webcubed" + }, + "records": { + "TXT": ["dh=1612c48236f97b2a8b0fc79833cd7e46cf0c512d"] + } +} diff --git a/domains/_discord.whisp.json b/domains/_discord.whisp.json deleted file mode 100644 index e84b61faf..000000000 --- a/domains/_discord.whisp.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "itswhisp", - "email": "ag.whisp@gmail.com" - }, - "record": { - "TXT": "dh=f98e45bf000905131a5ee712210c9561d2079b24" - } -} diff --git a/domains/_discord.windowsed.json b/domains/_discord.windowsed.json index 6db08e895..127b9a8c1 100644 --- a/domains/_discord.windowsed.json +++ b/domains/_discord.windowsed.json @@ -3,7 +3,7 @@ "username": "windowsed1225", "email": "me@windowsed.me" }, - "record": { + "records": { "TXT": "dh=bf0d796bf4de62ac96f875becc18c082d8896a0a" } } diff --git a/domains/_discord.wizardsword.json b/domains/_discord.wizardsword.json index e2b1afbb4..f9ddaef85 100644 --- a/domains/_discord.wizardsword.json +++ b/domains/_discord.wizardsword.json @@ -3,7 +3,7 @@ "username": "MukuJhansi", "email": "mukundagrawal800@gmail.com" }, - "record": { + "records": { "TXT": "dh=4df0e55d42947236385030525829593c2e5cbd62" } } diff --git a/domains/_discord.xhide341.json b/domains/_discord.xhide341.json new file mode 100644 index 000000000..5938076be --- /dev/null +++ b/domains/_discord.xhide341.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xhide341", + "email": "shawnehgn10@gmail.com" + }, + "records": { + "TXT": "dh=22c6450aa2c81b4a2ff82e9174d0381763db407a" + } +} diff --git a/domains/_discord.xiaoxi-tw.json b/domains/_discord.xiaoxi-tw.json index 7a0b2eff0..a45ae1c9d 100644 --- a/domains/_discord.xiaoxi-tw.json +++ b/domains/_discord.xiaoxi-tw.json @@ -5,7 +5,7 @@ "twitter": "jimmyyo45639462", "discord": "xiaoxi_tw#0" }, - "record": { + "records": { "TXT": "dh=816d1cc1b74e35ba02a286a5b9cbded58cbdf513" } } diff --git a/domains/_discord.xrap1dx.json b/domains/_discord.xrap1dx.json index 601278d21..f89deed6b 100644 --- a/domains/_discord.xrap1dx.json +++ b/domains/_discord.xrap1dx.json @@ -3,7 +3,7 @@ "username": "xrap1dx", "email": "sirrapid155@gmail.com" }, - "record": { + "records": { "TXT": "dh=5552cf7dcf2fec81360ac9ee4af0b0a674f1cd33" } } diff --git a/domains/_discord.yfa.json b/domains/_discord.yfa.json index cfb297860..2de059390 100644 --- a/domains/_discord.yfa.json +++ b/domains/_discord.yfa.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7" } } diff --git a/domains/_discord.yurei.json b/domains/_discord.yurei.json new file mode 100644 index 000000000..0650f2b78 --- /dev/null +++ b/domains/_discord.yurei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yurehito", + "discord": "https://discord.com/users/998608551431897170" + }, + "records": { + "TXT": "dh=5d5daac60e8c6f56c8c57a3cdf244a294049c273" + } +} diff --git a/domains/_discord.zayaanar.json b/domains/_discord.zayaanar.json index 4b4555eef..620f1852e 100644 --- a/domains/_discord.zayaanar.json +++ b/domains/_discord.zayaanar.json @@ -1,10 +1,9 @@ { "owner": { "username": "userandaname", - "discord": "823939421686071386", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a62ohGnPWnZcxwliAblMFZoEcnjztiOXGJrf3viuLFutyG5cwvSgEFmeYQAiODGndCak3XXgSJwLyFiS-HIsLWG6ViBhu9A48zkUMTv6IHO7OUFE9kNiGIqhp3S8h8lhaaxA3zW_OuOIQBoLFJnL0RqQgOd2QC6P-v1Fm6Aab3HMCGYN5tNwk1Jpl5vwisxnCG-PDUWrrgJ8PbMGRUa2Sa5qvFOJK0LML3yDqKOlFUGs9XmBcbTMc2KVdGjAm0F8l1w0WRDyx15hNFu_ppB7yaIS91o7iJS-g-ViSWf3-Hj0gCyUl1sHPQi3-2IE5GaNtfqVLQGNC2Kh6NBAkRRT7g.09Llm3K10Q7Tl3ceKAy76g.6NdcyRztDAFkqDFs5CWyaShozcshoMQ2qq1p7D8wQTG6O8shr8lbczRgMQZhgvzrq7u1g6HMQnW8bQdDdn2Mb1Jj3_qcHXnCUub6exAZONY.0ZXI8zVi0kGV0Qm7uvJOrA" + "discord": "823939421686071386" }, - "record": { + "records": { "TXT": "dh=b4e0c21a832a290e9c3d6d073a1c70ed8b9a344e" } } diff --git a/domains/_discord.zeaxey.json b/domains/_discord.zeaxey.json index 486063733..13ed733be 100644 --- a/domains/_discord.zeaxey.json +++ b/domains/_discord.zeaxey.json @@ -3,7 +3,7 @@ "username": "Pixel556", "email": "therealzeaxey123@gmail.com" }, - "record": { + "records": { "TXT": "dh=03271c5828f57362f1d12969313966fb88b6f83e" } } diff --git a/domains/_discord.zoom.json b/domains/_discord.zoom.json index 2306b16b2..c9756f8ab 100644 --- a/domains/_discord.zoom.json +++ b/domains/_discord.zoom.json @@ -5,7 +5,7 @@ "twitter": "theoldzoom", "discord": "theoldzoom" }, - "record": { + "records": { "TXT": "dh=170063c268dd129fa057f1517490d51aa9e792f7" } } diff --git a/domains/_dmarc.104.json b/domains/_dmarc.104.json new file mode 100644 index 000000000..d2bf9c0f9 --- /dev/null +++ b/domains/_dmarc.104.json @@ -0,0 +1,10 @@ +{ + "description": "DMARC", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "records": { + "TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400" + } +} diff --git a/domains/_dmarc.ciaobot.json b/domains/_dmarc.ciaobot.json deleted file mode 100644 index 454f80712..000000000 --- a/domains/_dmarc.ciaobot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ciao287", - "discord": "687333016921440317" - }, - "record": { - "TXT": "v=DMARC1; p=none; rua=mailto:dmarc.report@ciaobot.is-a.dev; ruf=mailto:dmarc.report@ciaobot.is-a.dev; fo=0; adkim=r; aspf=r; pct=100; ri=86400; sp=none" - } -} diff --git a/domains/_dmarc.dhilipan.json b/domains/_dmarc.dhilipan.json index 545f32d1c..2a6ef2828 100644 --- a/domains/_dmarc.dhilipan.json +++ b/domains/_dmarc.dhilipan.json @@ -1,10 +1,9 @@ { "owner": { "username": "Dhilipan-Git", - "discord": "1306595993055268875", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" + "discord": "1306595993055268875" }, - "record": { + "records": { "TXT": ["v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s"] } } diff --git a/domains/_dmarc.peme969.json b/domains/_dmarc.peme969.json new file mode 100644 index 000000000..8313652aa --- /dev/null +++ b/domains/_dmarc.peme969.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "peme969", + "email": "mrcoderpeme@gmail.com" + }, + "records": { + "TXT": [ + "forward-email=NjNhNjJlMjMzOGJhMWUxNy1hOTk2MzljYmY0ZDczZWViZDY2NTljZmUwMDc4OTM5MmQ3YmVjN2RmYWEyMjFlN2VhODAxZWUwOWI5ODhhNDY2" + ] + } +} diff --git a/domains/_dmarc.quincetart10.json b/domains/_dmarc.quincetart10.json new file mode 100644 index 000000000..d2bf9c0f9 --- /dev/null +++ b/domains/_dmarc.quincetart10.json @@ -0,0 +1,10 @@ +{ + "description": "DMARC", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "records": { + "TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400" + } +} diff --git a/domains/_dmarc.rt10.json b/domains/_dmarc.rt10.json new file mode 100644 index 000000000..d2bf9c0f9 --- /dev/null +++ b/domains/_dmarc.rt10.json @@ -0,0 +1,10 @@ +{ + "description": "DMARC", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "records": { + "TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400" + } +} diff --git a/domains/_dmarc.sewt.json b/domains/_dmarc.sewt.json new file mode 100644 index 000000000..b157f021f --- /dev/null +++ b/domains/_dmarc.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "records": { + "TXT": "v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s" + } +} diff --git a/domains/_dmarc.yxz.json b/domains/_dmarc.yxz.json index c7fdac868..93ad2e624 100644 --- a/domains/_dmarc.yxz.json +++ b/domains/_dmarc.yxz.json @@ -1,12 +1,11 @@ { - "owner": { - "username": "yz9551", - "email": "", - "discord": "yz9551" - }, - "record": { - "TXT": [ - "v=DMARC1; p=reject; pct=100; rua=mailto:dmarc-reports@yxz.is-a.dev; ruf=mailto:forensic-reports@yxz.is-a.dev; adkim=r; aspf=r" - ] - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "records": { + "TXT": [ + "v=DMARC1; p=reject; pct=100; rua=mailto:dmarc-reports@yxz.is-a.dev; ruf=mailto:forensic-reports@yxz.is-a.dev; adkim=r; aspf=r" + ] + } } diff --git a/domains/_dnslink.daoch4n.json b/domains/_dnslink.daoch4n.json new file mode 100644 index 000000000..0a3ebc7eb --- /dev/null +++ b/domains/_dnslink.daoch4n.json @@ -0,0 +1,11 @@ +{ + "description": "IPFS DNSLink integration for Web3-enabled video player", + "repo": "https://github.com/dtub3/DaokoTube", + "owner": { + "username": "daoch4n", + "email": "digitaimadness@pm.me" + }, + "records": { + "TXT": "/ipfs/bafybeictsmpmyy5cbtc52hr3awxgsl6gojyfgr3b23uudte4i7gmeof6om" + } +} diff --git a/domains/_gh-50xsuisse-o.50x.json b/domains/_gh-50xsuisse-o.50x.json index 9b9f2c8c3..46f1158f7 100644 --- a/domains/_gh-50xsuisse-o.50x.json +++ b/domains/_gh-50xsuisse-o.50x.json @@ -3,7 +3,7 @@ "username": "MullerIsabella", "email": "AlpineDreamer92@protonmail.com" }, - "record": { + "records": { "TXT": "8e7d9774b8" } } diff --git a/domains/_gh-deadcodegames-o.deadcode.json b/domains/_gh-deadcodegames-o.deadcode.json index d1de88822..a73e9beae 100644 --- a/domains/_gh-deadcodegames-o.deadcode.json +++ b/domains/_gh-deadcodegames-o.deadcode.json @@ -7,7 +7,7 @@ "bluesky": "kanshen.click", "telegram": "richardkanskje" }, - "record": { + "records": { "TXT": "392e701839" } } diff --git a/domains/_gh-is-a-dev-o.json b/domains/_gh-is-a-dev-o.json deleted file mode 100644 index b52a2f700..000000000 --- a/domains/_gh-is-a-dev-o.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "TXT": "9ac06a2c1c" - } -} diff --git a/domains/_gh-juststudio7-o.js.json b/domains/_gh-juststudio7-o.js.json new file mode 100644 index 000000000..94f5a9bf9 --- /dev/null +++ b/domains/_gh-juststudio7-o.js.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "records": { + "TXT": ["53741b79f9"] + } +} diff --git a/domains/_gh-juststudio7-o.juststudio.json b/domains/_gh-juststudio7-o.juststudio.json new file mode 100644 index 000000000..0b3c00a67 --- /dev/null +++ b/domains/_gh-juststudio7-o.juststudio.json @@ -0,0 +1,11 @@ +{ + "description": "JustStudio.", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "records": { + "TXT": ["d878bca923"] + } +} diff --git a/domains/_gh-lumidevelopment-o.lumi.json b/domains/_gh-lumidevelopment-o.lumi.json new file mode 100644 index 000000000..fea0a6140 --- /dev/null +++ b/domains/_gh-lumidevelopment-o.lumi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "itssfatlum" + }, + "records": { + "TXT": ["eade7c5be7"] + } +} diff --git a/domains/_gh-swissquotes-o.50x.json b/domains/_gh-swissquotes-o.50x.json index c07dbfe14..270438b56 100644 --- a/domains/_gh-swissquotes-o.50x.json +++ b/domains/_gh-swissquotes-o.50x.json @@ -3,7 +3,7 @@ "username": "MullerIsabella", "email": "AlpineDreamer92@protonmail.com" }, - "record": { + "records": { "TXT": "111c9dc10c" } } diff --git a/domains/_gh-uwunotislove-o.uwunotislove.json b/domains/_gh-uwunotislove-o.uwunotislove.json index 9338619f6..d13020a1f 100644 --- a/domains/_gh-uwunotislove-o.uwunotislove.json +++ b/domains/_gh-uwunotislove-o.uwunotislove.json @@ -3,7 +3,7 @@ "username": "uwunotislove", "email": "moody761@hotmail.com" }, - "record": { + "records": { "TXT": ["40e1ac102d"] } } diff --git a/domains/_github-challenge-spicydevs-org.spicy.json b/domains/_github-challenge-spicydevs-org.spicy.json deleted file mode 100644 index b38b357ca..000000000 --- a/domains/_github-challenge-spicydevs-org.spicy.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "oyepriyansh", - "email": "oyepriyansh@hotmail.com" - }, - "record": { - "TXT": "0e84f14f3a" - } -} diff --git a/domains/_github-challenge-thenoppy12-org.thenoppy12.json b/domains/_github-challenge-thenoppy12-org.thenoppy12.json index 1613186f9..cac4ab0ad 100644 --- a/domains/_github-challenge-thenoppy12-org.thenoppy12.json +++ b/domains/_github-challenge-thenoppy12-org.thenoppy12.json @@ -1,12 +1,11 @@ { "description": "Github Orgs Verify", - "repo": "https://github.com/thenoppy12", "owner": { "username": "BussyBakks", "email": "lengochuykiengiang@gmail.com", "discord": ".thenoppy12#0" }, - "record": { + "records": { "TXT": "19f2dbfb9a" } } diff --git a/domains/_github-challenge-yfadev-org.alpha.json b/domains/_github-challenge-yfadev-org.alpha.json index d975761bc..65172bfeb 100644 --- a/domains/_github-challenge-yfadev-org.alpha.json +++ b/domains/_github-challenge-yfadev-org.alpha.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "TXT": "9568f60569" } } diff --git a/domains/_github-challenge-yfadev-org.yfa.json b/domains/_github-challenge-yfadev-org.yfa.json index 555a47348..0a5732362 100644 --- a/domains/_github-challenge-yfadev-org.yfa.json +++ b/domains/_github-challenge-yfadev-org.yfa.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "TXT": "a4b5c60953" } } diff --git a/domains/_github-challenge-yfadev-org.yfadev.json b/domains/_github-challenge-yfadev-org.yfadev.json index 78cb27e9b..a418ee610 100644 --- a/domains/_github-challenge-yfadev-org.yfadev.json +++ b/domains/_github-challenge-yfadev-org.yfadev.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "TXT": "ed3c92c01a" } } diff --git a/domains/_github-pages-challenge-0pearlcz0.pearlcz.json b/domains/_github-pages-challenge-0pearlcz0.pearlcz.json index c53d7b221..8c509e236 100644 --- a/domains/_github-pages-challenge-0pearlcz0.pearlcz.json +++ b/domains/_github-pages-challenge-0pearlcz0.pearlcz.json @@ -1,10 +1,9 @@ { "owner": { "username": "0pearlcz0", - "discord": "809488731353776149", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.EWTrZf_5I2GQGS2_M2eRydgef__rnGfaJplaMYAtS-0BxFSldAaScbilhvJXA-LGBa7Y79M3fYvUG_WCaoEV-GUGrNubGdfub4EnUBCAiatsMr5c6jBAZKze2qp2xRzpwGbTFs2nLGK-ON6s6LmBQfmqDdBRMAofSeWYSDDmjntJ9YBiC0eEor-0DtB7ljRTonUt-8th_n5s1AszQxM6koZRO8IFIe7hfL4PylTZaR1n-9hSU4j7X6zHkpJmC0Q8x9VP8KzuPzmApFO4Trc2oN8fs1YsUJSeMR5PZ4A4XiCEQ_ZhUlm1QuuUB25pEao8uoFx4ZSDDRN5mougkdqYFg.vxBW0pzGpQAcBqm0jHWZOw.Zu5v21jKdWfaHo3ErT3SkOVdcmrCw0b8c2NLSflMvKagusHcXg6qhaKmyATLUjQn_uVE6epD1OEim54ji-S_a7ypkn40Ii_Rl7HXgWIHDZg.CPb58_yXhixs83QtFx3ROQ" + "discord": "809488731353776149" }, - "record": { + "records": { "TXT": "bf6f41543a58bffd08fd85ffd9d254" } } diff --git a/domains/_github-pages-challenge-0v90.json b/domains/_github-pages-challenge-0v90.json deleted file mode 100644 index ca64ecee6..000000000 --- a/domains/_github-pages-challenge-0v90.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "0v90", - "discord": "651519394673065989" - }, - "record": { - "TXT": "9e58408bb4a7267e5a81669f75cfb3" - } -} diff --git a/domains/_github-pages-challenge-256javy.256javy.json b/domains/_github-pages-challenge-256javy.256javy.json new file mode 100644 index 000000000..5c495b8e4 --- /dev/null +++ b/domains/_github-pages-challenge-256javy.256javy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "256javy", + "email": "256javiervillalba@gmail.com" + }, + "records": { + "TXT": "5274c84dbbf074d67b53fc4305ced5" + } +} diff --git a/domains/_github-pages-challenge-404dev-404.404.json b/domains/_github-pages-challenge-404dev-404.404.json index d7d28cf9a..59de1210e 100644 --- a/domains/_github-pages-challenge-404dev-404.404.json +++ b/domains/_github-pages-challenge-404dev-404.404.json @@ -3,7 +3,7 @@ "username": "404Dev-404", "email": "anthonyvaldes318+404@gmail.com" }, - "record": { + "records": { "TXT": "22a06372e0e8c1ce907acca87f8222" } } diff --git a/domains/_github-pages-challenge-9xn.44.json b/domains/_github-pages-challenge-9xn.44.json index 3452563d3..03bee000d 100644 --- a/domains/_github-pages-challenge-9xn.44.json +++ b/domains/_github-pages-challenge-9xn.44.json @@ -3,7 +3,7 @@ "username": "9xN", "email": "0@fbi.ac" }, - "record": { + "records": { "TXT": "e104ec0ddb56ddb03a3ced402e0b45" } } diff --git a/domains/_github-pages-challenge-aakankshabhende.aakanksha.json b/domains/_github-pages-challenge-aakankshabhende.aakanksha.json index dabf55d7f..b1c18f119 100644 --- a/domains/_github-pages-challenge-aakankshabhende.aakanksha.json +++ b/domains/_github-pages-challenge-aakankshabhende.aakanksha.json @@ -4,7 +4,7 @@ "username": "aakankshabhende", "email": "aakanksha0407@gmail.com" }, - "record": { + "records": { "TXT": "0e195a2a30854573db976207e5f2f2" } } diff --git a/domains/_github-pages-challenge-abaan5467.abaan.json b/domains/_github-pages-challenge-abaan5467.abaan.json index 1dc7d973f..a3215288f 100644 --- a/domains/_github-pages-challenge-abaan5467.abaan.json +++ b/domains/_github-pages-challenge-abaan5467.abaan.json @@ -3,7 +3,7 @@ "username": "Abaan5467", "email": "abaan@metfabproducts.com" }, - "record": { + "records": { "TXT": "325c1344f55d617d4e206517dde06c" } } diff --git a/domains/_github-pages-challenge-abdessattar23.abdessattar.json b/domains/_github-pages-challenge-abdessattar23.abdessattar.json index b5687792a..c933c8a20 100644 --- a/domains/_github-pages-challenge-abdessattar23.abdessattar.json +++ b/domains/_github-pages-challenge-abdessattar23.abdessattar.json @@ -3,7 +3,7 @@ "username": "abdessattar23", "email": "elyagoubiabdessattar@gmail.com" }, - "record": { + "records": { "TXT": "c9b03d3b0500160eabd33e0c27913c" } } diff --git a/domains/_github-pages-challenge-abiapp789.json b/domains/_github-pages-challenge-abiapp789.json deleted file mode 100644 index 5726a4a9a..000000000 --- a/domains/_github-pages-challenge-abiapp789.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "abiapp789", - "email": "abiapp2024@gmail.com" - }, - "record": { - "TXT": "5bcd2d69c4cca15abd91d504a5b72a" - } -} diff --git a/domains/_github-pages-challenge-acutewoof.acutewoof.json b/domains/_github-pages-challenge-acutewoof.acutewoof.json index ef063b23a..2ebe958eb 100644 --- a/domains/_github-pages-challenge-acutewoof.acutewoof.json +++ b/domains/_github-pages-challenge-acutewoof.acutewoof.json @@ -3,7 +3,7 @@ "username": "ACuteWoof", "email": "sutharshanvithushan@gmail.com" }, - "record": { + "records": { "TXT": "8a47d2fca716e0d7e0bcfd424d0784" } } diff --git a/domains/_github-pages-challenge-adil-uddin.adil.json b/domains/_github-pages-challenge-adil-uddin.adil.json new file mode 100644 index 000000000..31390146e --- /dev/null +++ b/domains/_github-pages-challenge-adil-uddin.adil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adil-uddin", + "email": "adilaryan786@gmail.com" + }, + "records": { + "TXT": "82f634e6b8d39d1a42bf48f2a2ccd3" + } +} diff --git a/domains/_github-pages-challenge-adolar0042.adolar0042.json b/domains/_github-pages-challenge-adolar0042.adolar0042.json index 3fec52a64..9cae0f48b 100644 --- a/domains/_github-pages-challenge-adolar0042.adolar0042.json +++ b/domains/_github-pages-challenge-adolar0042.adolar0042.json @@ -3,7 +3,7 @@ "username": "Adolar0042", "email": "adolar0042@gmail.com" }, - "record": { + "records": { "TXT": "927a8ca97dbdccd9140313116bd068" } } diff --git a/domains/_github-pages-challenge-ajtabjs.ajtabs.json b/domains/_github-pages-challenge-ajtabjs.ajtabs.json index bfb535bf7..a22db63d9 100644 --- a/domains/_github-pages-challenge-ajtabjs.ajtabs.json +++ b/domains/_github-pages-challenge-ajtabjs.ajtabs.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "ajtabjs" - }, - "record": { - "TXT": ["39626a2cbd8f72ba60b0e40dc06e45"] - } + "owner": { + "username": "ajtabjs" + }, + "records": { + "TXT": ["39626a2cbd8f72ba60b0e40dc06e45"] + } } diff --git a/domains/_github-pages-challenge-akk1to.json b/domains/_github-pages-challenge-akk1to.json deleted file mode 100644 index ccde44cd8..000000000 --- a/domains/_github-pages-challenge-akk1to.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "This website is my personal portfollo XD (let it on rq)", - "repo": "https://github.com/akk1to/akk1to.github.io", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "TXT": ["b7205350c0f56235a5eebee2fd1993"] - } -} diff --git a/domains/_github-pages-challenge-akpi816218.akpi.json b/domains/_github-pages-challenge-akpi816218.akpi.json deleted file mode 100644 index 030db64ef..000000000 --- a/domains/_github-pages-challenge-akpi816218.akpi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "akpi816218", - "discord": "equus_quagga" - }, - "record": { - "TXT": "83f74e3c71720aa4514d32cabe7324" - } -} diff --git a/domains/_github-pages-challenge-akzana.json b/domains/_github-pages-challenge-akzana.json deleted file mode 100644 index 3c3ba1691..000000000 --- a/domains/_github-pages-challenge-akzana.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "akzana" - }, - "record": { - "TXT": ["a9e7df1f4744431d00299a1ca92510"] - } -} diff --git a/domains/_github-pages-challenge-aldnnnz.aldnnnz.json b/domains/_github-pages-challenge-aldnnnz.aldnnnz.json index 71373891b..1020aa776 100644 --- a/domains/_github-pages-challenge-aldnnnz.aldnnnz.json +++ b/domains/_github-pages-challenge-aldnnnz.aldnnnz.json @@ -3,7 +3,7 @@ "username": "aldnnnz", "email": "aldynnn@yahoo.com" }, - "record": { + "records": { "TXT": "5fd4c25bc65bfba8a87f5aa0b38a37" } } diff --git a/domains/_github-pages-challenge-alenseeman.alen.json b/domains/_github-pages-challenge-alenseeman.alen.json new file mode 100644 index 000000000..2e6f937fa --- /dev/null +++ b/domains/_github-pages-challenge-alenseeman.alen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alenseeman", + "email": "alenseeman@hotmail.com" + }, + "records": { + "TXT": "8a6132b9777f26ea1a3f2a892f92f6" + } +} diff --git a/domains/_github-pages-challenge-alpha-og.athulanoop.json b/domains/_github-pages-challenge-alpha-og.athulanoop.json new file mode 100644 index 000000000..68a1cb11a --- /dev/null +++ b/domains/_github-pages-challenge-alpha-og.athulanoop.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alpha-og", + "email": "athulanoop2020@gmail.com" + }, + "records": { + "TXT": "f39f5fde5d918c2ca297b843c5776b" + } +} diff --git a/domains/_github-pages-challenge-alvitodev.alvito.json b/domains/_github-pages-challenge-alvitodev.alvito.json index 303a7d565..055dd4d4f 100644 --- a/domains/_github-pages-challenge-alvitodev.alvito.json +++ b/domains/_github-pages-challenge-alvitodev.alvito.json @@ -3,7 +3,7 @@ "username": "alvitodev", "email": "alvitodev@protonmail.com" }, - "record": { + "records": { "TXT": "c5a2eacc172cec9ec45a87d828b08c" } } diff --git a/domains/_github-pages-challenge-am333n.ameen.json b/domains/_github-pages-challenge-am333n.ameen.json new file mode 100644 index 000000000..fc5e2d576 --- /dev/null +++ b/domains/_github-pages-challenge-am333n.ameen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "am333n", + "email": "muhammedameen752@gmail.com" + }, + "records": { + "TXT": "ae46785afb026d6f57c4eb85f644eb" + } +} diff --git a/domains/_github-pages-challenge-amalpotra.amarjeet.json b/domains/_github-pages-challenge-amalpotra.amarjeet.json index 6e6260fef..d31c97a7e 100644 --- a/domains/_github-pages-challenge-amalpotra.amarjeet.json +++ b/domains/_github-pages-challenge-amalpotra.amarjeet.json @@ -3,7 +3,7 @@ "username": "amalpotra", "email": "amarjeetmalpotra@outlook.com" }, - "record": { + "records": { "TXT": "15c0eb5d4a85c75c4b205ac26a4d31" } } diff --git a/domains/_github-pages-challenge-amosmurmu.amosmurmu.json b/domains/_github-pages-challenge-amosmurmu.amosmurmu.json new file mode 100644 index 000000000..8878e29a9 --- /dev/null +++ b/domains/_github-pages-challenge-amosmurmu.amosmurmu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amosmurmu", + "email": "amosmurmu002@gmail.com" + }, + "records": { + "TXT": "6cd31a4dfd2ef9242a7478f015b26b" + } +} diff --git a/domains/_github-pages-challenge-anandyeole.anandyeole.json b/domains/_github-pages-challenge-anandyeole.anandyeole.json index b53887bfb..6d43a3653 100644 --- a/domains/_github-pages-challenge-anandyeole.anandyeole.json +++ b/domains/_github-pages-challenge-anandyeole.anandyeole.json @@ -3,7 +3,7 @@ "username": "anandyeole", "email": "anandyeole@duck.com" }, - "record": { + "records": { "TXT": "510cbb66f4422990546436db3c897a" } } diff --git a/domains/_github-pages-challenge-ananth-swamy.ananth.json b/domains/_github-pages-challenge-ananth-swamy.ananth.json index 2de98b708..be74c665b 100644 --- a/domains/_github-pages-challenge-ananth-swamy.ananth.json +++ b/domains/_github-pages-challenge-ananth-swamy.ananth.json @@ -5,7 +5,7 @@ "username": "ANANTH-SWAMY", "email": "ananth.nps@gmail.com" }, - "record": { + "records": { "TXT": "cb106acbe8da52273b1a5807fb1d9f" } } diff --git a/domains/_github-pages-challenge-andyfaizan.andy.json b/domains/_github-pages-challenge-andyfaizan.andy.json index b1ec9c9e8..c987ecda8 100644 --- a/domains/_github-pages-challenge-andyfaizan.andy.json +++ b/domains/_github-pages-challenge-andyfaizan.andy.json @@ -3,7 +3,7 @@ "username": "andyfaizan", "email": "andyfaizan@gmail.com" }, - "record": { + "records": { "TXT": "8c35e4942c57ea0659a1b4c0cae798" } } diff --git a/domains/_github-pages-challenge-animeshkotka.animesh-kotka.json b/domains/_github-pages-challenge-animeshkotka.animesh-kotka.json new file mode 100644 index 000000000..32272177b --- /dev/null +++ b/domains/_github-pages-challenge-animeshkotka.animesh-kotka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AnimeshKotka", + "email": "animeshkotka520@gmail.com" + }, + "records": { + "TXT": "516e1afaa96818228e8a61bf901188" + } +} diff --git a/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json b/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json deleted file mode 100644 index aef4a9302..000000000 --- a/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "TXT": "5f8c296170c0f2cd8aa1089b065900" - } -} diff --git a/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json b/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json index 3a7386337..f9070f751 100644 --- a/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json +++ b/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json @@ -4,7 +4,7 @@ "username": "anshtyagi0", "email": "tyagiansh175@gmail.com" }, - "record": { + "records": { "TXT": "7b628651b5ce7a58e0876e8ddbae98" } } diff --git a/domains/_github-pages-challenge-antton-dev.antton.json b/domains/_github-pages-challenge-antton-dev.antton.json index 88b88ee98..b5376f9b7 100644 --- a/domains/_github-pages-challenge-antton-dev.antton.json +++ b/domains/_github-pages-challenge-antton-dev.antton.json @@ -3,7 +3,7 @@ "username": "antton-dev", "email": "antton.chevrier@etik.com" }, - "record": { + "records": { "TXT": "a3787429898a0a8bb9b3cbffa253fa" } } diff --git a/domains/_github-pages-challenge-aravinds-arv.arv.json b/domains/_github-pages-challenge-aravinds-arv.arv.json index 6248563a8..51c1dd6bb 100644 --- a/domains/_github-pages-challenge-aravinds-arv.arv.json +++ b/domains/_github-pages-challenge-aravinds-arv.arv.json @@ -3,7 +3,7 @@ "username": "aravinds-arv", "email": "aravinds.arv@pm.me" }, - "record": { + "records": { "TXT": "4596a3ed04da898883da2218983b90" } } diff --git a/domains/_github-pages-challenge-arboygo.arboy.json b/domains/_github-pages-challenge-arboygo.arboy.json index c9e358d3b..a8fe745fd 100644 --- a/domains/_github-pages-challenge-arboygo.arboy.json +++ b/domains/_github-pages-challenge-arboygo.arboy.json @@ -4,7 +4,7 @@ "username": "arboygo", "email": "arboygo@duck.com" }, - "record": { + "records": { "TXT": "279fd9e58ed7ce7558663b3992f871" } } diff --git a/domains/_github-pages-challenge-arch881010.arch.json b/domains/_github-pages-challenge-arch881010.arch.json index 335a14182..ac7fa75ea 100644 --- a/domains/_github-pages-challenge-arch881010.arch.json +++ b/domains/_github-pages-challenge-arch881010.arch.json @@ -5,10 +5,9 @@ "username": "Arch881010", "email": "arch@arch1010.dev", "discord": "arch1010", - "discord-id": "410248634593050627", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kSAiARG7F3TMPQLHtfhtk3dE05kz7As2lA8g_FzeDJHxsc9y68hJe40iZByj83Q-A7wgguTAPkshy34EfXOlnbEW6QGE3nwCdu8BLCDAZFZSDYffesKjYPq7djQpYfIcrwaKQ8BNsPejDVBpfycXULTJKFg6860m6AQeCRBCTKbs1et_J_1LKbD58oCoA2fRjoOcmsfiuv177b0JB5y4YYJvv-ZUxnqfFOYs8z4cYa0sjLz1PHf45ZXI94YaiIGbctnl4-mCWmUyVAEzoZXMMZTpb2yDmkfkXbubaRL8ftl6dXFlsr_s8t5oNNn_qqydjVqHAgoBod7pnX8nnbNB7g.QIJDtBcgQc6abzpqMJEDQQ.yqolPrBs4ixr0g2Sd6FkMHqMg_CXvxV146dDoe4y8yeSmW951Au23QlBGwemyMKQmJv6fNMo7GPctGfxCxgaaL6hXPVbtJ13MdgtO22e5bA.vevEeBUZxq5C7dewSx_YUQ" + "discord-id": "410248634593050627" }, - "record": { + "records": { "TXT": "f7ef0429540150e9e2d26e968dc4de" } } diff --git a/domains/_github-pages-challenge-archelaus.archelaus.json b/domains/_github-pages-challenge-archelaus.archelaus.json index 217f44a4f..a1f00a1a6 100644 --- a/domains/_github-pages-challenge-archelaus.archelaus.json +++ b/domains/_github-pages-challenge-archelaus.archelaus.json @@ -3,7 +3,7 @@ "username": "archelaus", "email": "archelaus@skiff.com" }, - "record": { + "records": { "TXT": "58a91a812285d77c1c035298480109" } } diff --git a/domains/_github-pages-challenge-armoredvortex.armoredvortex.json b/domains/_github-pages-challenge-armoredvortex.armoredvortex.json index cdcc43e8f..409685834 100644 --- a/domains/_github-pages-challenge-armoredvortex.armoredvortex.json +++ b/domains/_github-pages-challenge-armoredvortex.armoredvortex.json @@ -3,7 +3,7 @@ "username": "armoredvortex", "email": "rachitpandey@protonmail.com" }, - "record": { + "records": { "TXT": "f333cd13b1edfcaa51d5413b7fd05f" } } diff --git a/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json new file mode 100644 index 000000000..75ef5dec9 --- /dev/null +++ b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "records": { + "TXT": "02ff8b21eeaed5e8333376fc244485" + } +} diff --git a/domains/_github-pages-challenge-aruntechpro.aruntechpro.json b/domains/_github-pages-challenge-aruntechpro.aruntechpro.json index e5a97f5a3..48aea27e4 100644 --- a/domains/_github-pages-challenge-aruntechpro.aruntechpro.json +++ b/domains/_github-pages-challenge-aruntechpro.aruntechpro.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "aruntechpro", - "email": "arunkumarakr03@gmail.com" - }, - "record": { - "TXT": "8583e778337112b720ebf6e1ec46a5" - } - } \ No newline at end of file +{ + "owner": { + "username": "aruntechpro", + "email": "arunkumarakr03@gmail.com" + }, + "records": { + "TXT": "8583e778337112b720ebf6e1ec46a5" + } +} diff --git a/domains/_github-pages-challenge-asbp.asbp.json b/domains/_github-pages-challenge-asbp.asbp.json new file mode 100644 index 000000000..17e9327bc --- /dev/null +++ b/domains/_github-pages-challenge-asbp.asbp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asbp", + "email": "guungofficial@gmail.com" + }, + "records": { + "TXT": "31b576be5fd342aa2473ebb2fb2816" + } +} diff --git a/domains/_github-pages-challenge-ashesh3.ashesh.json b/domains/_github-pages-challenge-ashesh3.ashesh.json index 4ad14d5b8..f20f4af12 100644 --- a/domains/_github-pages-challenge-ashesh3.ashesh.json +++ b/domains/_github-pages-challenge-ashesh3.ashesh.json @@ -3,7 +3,7 @@ "username": "Ashesh3", "email": "ashesh1708@gmail.com" }, - "record": { + "records": { "TXT": "a0d1fde4660333a6c2b992a1d5e637" } } diff --git a/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json b/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json new file mode 100644 index 000000000..1cb28d5f4 --- /dev/null +++ b/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AshishKingdom", + "email": "ashishkingdom@proton.me" + }, + "records": { + "TXT": "4281866da89d9e1bd20fcdb44adca3" + } +} diff --git a/domains/_github-pages-challenge-auravoid.aura.json b/domains/_github-pages-challenge-auravoid.aura.json index 3bb0e6741..15df7bc05 100644 --- a/domains/_github-pages-challenge-auravoid.aura.json +++ b/domains/_github-pages-challenge-auravoid.aura.json @@ -3,7 +3,7 @@ "username": "auravoid", "email": "github@auravoid.dev" }, - "record": { + "records": { "TXT": "a0182396037ba6edc7f689cf8847f9" } } diff --git a/domains/_github-pages-challenge-avellea.avellea.json b/domains/_github-pages-challenge-avellea.avellea.json index 4a0684fd4..eff555cf5 100644 --- a/domains/_github-pages-challenge-avellea.avellea.json +++ b/domains/_github-pages-challenge-avellea.avellea.json @@ -2,7 +2,7 @@ "owner": { "username": "avellea" }, - "record": { + "records": { "TXT": "5c38dbee73e6936232992c0f98829e" } } diff --git a/domains/_github-pages-challenge-avipars.avi.json b/domains/_github-pages-challenge-avipars.avi.json index 8ab3f2d7e..4ea9d6640 100644 --- a/domains/_github-pages-challenge-avipars.avi.json +++ b/domains/_github-pages-challenge-avipars.avi.json @@ -3,7 +3,7 @@ "username": "avipars", "email": "avi.pars@gmail.com" }, - "record": { + "records": { "TXT": "870948b647f71ebf9489fa34db4efb" } } diff --git a/domains/_github-pages-challenge-aw09.agung.json b/domains/_github-pages-challenge-aw09.agung.json new file mode 100644 index 000000000..512de41c6 --- /dev/null +++ b/domains/_github-pages-challenge-aw09.agung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aw09", + "email": "agungwck.99@gmail.com" + }, + "records": { + "TXT": "ec0ab3911b2f62b7dcad33e6fdd5f4" + } +} diff --git a/domains/_github-pages-challenge-axioris.axioris.json b/domains/_github-pages-challenge-axioris.axioris.json new file mode 100644 index 000000000..d0478b161 --- /dev/null +++ b/domains/_github-pages-challenge-axioris.axioris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "axioris", + "email": "dane.foster.collins@gmail.com" + }, + "records": { + "TXT": "3e68551b5f5903030133fb460e57db" + } +} diff --git a/domains/_github-pages-challenge-ayberktandogan.ayberk.json b/domains/_github-pages-challenge-ayberktandogan.ayberk.json new file mode 100644 index 000000000..5f02cef3c --- /dev/null +++ b/domains/_github-pages-challenge-ayberktandogan.ayberk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ayberktandogan", + "email": "ayberk.tandogan@outlook.com" + }, + "records": { + "TXT": "6fe6a3695f856260a2fa97ce9dfe94" + } +} diff --git a/domains/_github-pages-challenge-ayvacs.ave.json b/domains/_github-pages-challenge-ayvacs.ave.json index 1da3471f7..49c9d7663 100644 --- a/domains/_github-pages-challenge-ayvacs.ave.json +++ b/domains/_github-pages-challenge-ayvacs.ave.json @@ -5,7 +5,7 @@ "username": "ayvacs", "email": "ayvacs@proton.me" }, - "record": { + "records": { "TXT": "e0986b3076f4a103b5f4de9bb7a302" } } diff --git a/domains/_github-pages-challenge-b1ue-dev.blue.json b/domains/_github-pages-challenge-b1ue-dev.blue.json index 33036b267..d8be5ca4e 100644 --- a/domains/_github-pages-challenge-b1ue-dev.blue.json +++ b/domains/_github-pages-challenge-b1ue-dev.blue.json @@ -6,7 +6,7 @@ "email": "ngolong1396@hotmail.com", "twitter": "b1uedev" }, - "record": { + "records": { "TXT": "e921e6896e19bfdc214f60f54aaacc" } } diff --git a/domains/_github-pages-challenge-baturalp52.baturalp.json b/domains/_github-pages-challenge-baturalp52.baturalp.json new file mode 100644 index 000000000..65416ddf7 --- /dev/null +++ b/domains/_github-pages-challenge-baturalp52.baturalp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Baturalp52", + "email": "baturalpsonmez2002@gmail.com" + }, + "records": { + "TXT": "8e1fd82942a7ceae35f62019e370aa" + } +} diff --git a/domains/_github-pages-challenge-berzcode.saurabhkirve.json b/domains/_github-pages-challenge-berzcode.saurabhkirve.json index 89efda2a5..df9dcb79e 100644 --- a/domains/_github-pages-challenge-berzcode.saurabhkirve.json +++ b/domains/_github-pages-challenge-berzcode.saurabhkirve.json @@ -3,7 +3,7 @@ "username": "sxurabh", "email": "saurabhkirve@gmail.com" }, - "record": { + "records": { "TXT": "e587577c97f73d2047aaf6ec8ff92c" } } diff --git a/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json b/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json index b1d693157..a504e93ab 100644 --- a/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json +++ b/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json @@ -5,7 +5,7 @@ "username": "bi0hazarDD", "email": "jonathan-8@hotmail.co.uk" }, - "record": { + "records": { "TXT": "87235c5c433d52086cbf2ae6ddd9a1" } } diff --git a/domains/_github-pages-challenge-bikoil.biko.json b/domains/_github-pages-challenge-bikoil.biko.json index 165334db9..5eaf16cd4 100644 --- a/domains/_github-pages-challenge-bikoil.biko.json +++ b/domains/_github-pages-challenge-bikoil.biko.json @@ -3,7 +3,7 @@ "username": "bikoil", "email": "devbikoilu@gmail.com" }, - "record": { + "records": { "TXT": "aec0a553854eb46c3b87f4d4797407" } } diff --git a/domains/_github-pages-challenge-bimarsha69.bimarsha.json b/domains/_github-pages-challenge-bimarsha69.bimarsha.json index f53fe5cbf..6d7f1ee88 100644 --- a/domains/_github-pages-challenge-bimarsha69.bimarsha.json +++ b/domains/_github-pages-challenge-bimarsha69.bimarsha.json @@ -3,7 +3,7 @@ "username": "Bimarsha69", "email": "bimarshathapa2@gmail.com" }, - "record": { + "records": { "TXT": "ad9b8ff5793eb8dd58746a30bee4c7" } } diff --git a/domains/_github-pages-challenge-birabittoh.birabittoh.json b/domains/_github-pages-challenge-birabittoh.birabittoh.json index 9ac6e7baa..382465c07 100644 --- a/domains/_github-pages-challenge-birabittoh.birabittoh.json +++ b/domains/_github-pages-challenge-birabittoh.birabittoh.json @@ -3,7 +3,7 @@ "username": "BiRabittoh", "email": "andronacomarco@gmail.com" }, - "record": { + "records": { "TXT": "9b7611136c86e6ff35c8292b8f6a34" } } diff --git a/domains/_github-pages-challenge-blob2763.blob2763.json b/domains/_github-pages-challenge-blob2763.blob2763.json index 2b0dc3291..d6bce019a 100644 --- a/domains/_github-pages-challenge-blob2763.blob2763.json +++ b/domains/_github-pages-challenge-blob2763.blob2763.json @@ -3,7 +3,7 @@ "username": "Blob2763", "email": "blob2763@gmail.com" }, - "record": { + "records": { "TXT": "a658c7bf2ffa85c1e1c68cb3776ef7" } } diff --git a/domains/_github-pages-challenge-blob2763.utils.json b/domains/_github-pages-challenge-blob2763.utils.json index 2af16373e..b108635b6 100644 --- a/domains/_github-pages-challenge-blob2763.utils.json +++ b/domains/_github-pages-challenge-blob2763.utils.json @@ -3,7 +3,7 @@ "username": "Blob2763", "email": "blob2763@gmail.com" }, - "record": { + "records": { "TXT": "bac9fea219f8e188022d1c5f70a6c7" } } diff --git a/domains/_github-pages-challenge-bnyro.bnyro.json b/domains/_github-pages-challenge-bnyro.bnyro.json index 542433ac2..5e7c32253 100644 --- a/domains/_github-pages-challenge-bnyro.bnyro.json +++ b/domains/_github-pages-challenge-bnyro.bnyro.json @@ -3,7 +3,7 @@ "username": "Bnyro", "email": "bnyro@tutanota.com" }, - "record": { + "records": { "TXT": "44677d523e6eee7f03f41e5d062066" } } diff --git a/domains/_github-pages-challenge-bob16077.bob16077.json b/domains/_github-pages-challenge-bob16077.bob16077.json index 146441df3..fe69252dd 100644 --- a/domains/_github-pages-challenge-bob16077.bob16077.json +++ b/domains/_github-pages-challenge-bob16077.bob16077.json @@ -3,7 +3,7 @@ "username": "bob16077", "discord": "bob16077777" }, - "record": { + "records": { "TXT": "8e9dc25e9c1ae9cc0823ede9ba135d" } } diff --git a/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json b/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json deleted file mode 100644 index d32c795e4..000000000 --- a/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "boredcodebyk", - "email": "khromabyk+dev@gmail.com" - }, - "record": { - "TXT": "18eddbb722418d4b62eb8976f91621" - } -} diff --git a/domains/_github-pages-challenge-bqwerr.srujan.json b/domains/_github-pages-challenge-bqwerr.srujan.json index 5bcc6c1ac..3561b146c 100644 --- a/domains/_github-pages-challenge-bqwerr.srujan.json +++ b/domains/_github-pages-challenge-bqwerr.srujan.json @@ -3,7 +3,7 @@ "username": "bqwerr", "email": "srujan.t@outlook.com" }, - "record": { + "records": { "TXT": "0f2975970f0cdf325103a7d1f3ecf3" } } diff --git a/domains/_github-pages-challenge-breakertws.breakertws.json b/domains/_github-pages-challenge-breakertws.breakertws.json new file mode 100644 index 000000000..2405de3ba --- /dev/null +++ b/domains/_github-pages-challenge-breakertws.breakertws.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BreakerTWS", + "email": "breakingtws@gmail.com" + }, + "records": { + "TXT": "dcde9a29c9e10cbea2e47c46805b57" + } +} diff --git a/domains/_github-pages-challenge-xxtgamerxx.brin.json b/domains/_github-pages-challenge-brinterwastaken.brin.json similarity index 74% rename from domains/_github-pages-challenge-xxtgamerxx.brin.json rename to domains/_github-pages-challenge-brinterwastaken.brin.json index 359257854..a04f2c52d 100644 --- a/domains/_github-pages-challenge-xxtgamerxx.brin.json +++ b/domains/_github-pages-challenge-brinterwastaken.brin.json @@ -1,10 +1,10 @@ { "description": "Github verification", "owner": { - "username": "xXTgamerXx", + "username": "brinterwastaken", "email": "trin.n2848@gmail.com" }, - "record": { + "records": { "TXT": "5b311a39ce20cd583c17d400434929" } } diff --git a/domains/_github-pages-challenge-btleffler.btleffler.json b/domains/_github-pages-challenge-btleffler.btleffler.json new file mode 100644 index 000000000..e151ed340 --- /dev/null +++ b/domains/_github-pages-challenge-btleffler.btleffler.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "btleffler", + "email": "btleffler@gmail.com" + }, + "records": { + "TXT": "6c3fe486c491afe19b9ba3bbb03d2a" + } +} diff --git a/domains/_github-pages-challenge-cantcode023.bd.json b/domains/_github-pages-challenge-cantcode023.bd.json new file mode 100644 index 000000000..3dfea925c --- /dev/null +++ b/domains/_github-pages-challenge-cantcode023.bd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CantCode023", + "email": "cantcode023@gmail.com" + }, + "records": { + "TXT": "f1b87d5986bd9abd22ca7fc5da79ad" + } +} diff --git a/domains/_github-pages-challenge-caodoc.caodoc.json b/domains/_github-pages-challenge-caodoc.caodoc.json deleted file mode 100644 index 514a61b1d..000000000 --- a/domains/_github-pages-challenge-caodoc.caodoc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "caodoc", - "discord": "caodoc" - }, - "record": { - "TXT": "c3aa36c2b7f2e2bf94a92b760760ca" - } -} diff --git a/domains/_github-pages-challenge-carafelix.heroprotagonist.json b/domains/_github-pages-challenge-carafelix.heroprotagonist.json index c02fd3255..a037451b0 100644 --- a/domains/_github-pages-challenge-carafelix.heroprotagonist.json +++ b/domains/_github-pages-challenge-carafelix.heroprotagonist.json @@ -3,7 +3,7 @@ "username": "carafelix", "email": "heroprotagonist32@gmail.com" }, - "record": { + "records": { "TXT": "61ef4af708632a4018579e72c75b65" } } diff --git a/domains/_github-pages-challenge-catrinlam.catrin.json b/domains/_github-pages-challenge-catrinlam.catrin.json index b11bf2275..99a1cfc93 100644 --- a/domains/_github-pages-challenge-catrinlam.catrin.json +++ b/domains/_github-pages-challenge-catrinlam.catrin.json @@ -3,7 +3,7 @@ "username": "catrinlam", "discord": "614054830360494100" }, - "record": { + "records": { "TXT": "8091bea48326f3ad92c1cc296a5b33" } } diff --git a/domains/_github-pages-challenge-catto24.catto24.json b/domains/_github-pages-challenge-catto24.catto24.json index 60154beb2..a326030ef 100644 --- a/domains/_github-pages-challenge-catto24.catto24.json +++ b/domains/_github-pages-challenge-catto24.catto24.json @@ -3,7 +3,7 @@ "username": "catto24", "email": "catto24@proton.me" }, - "record": { + "records": { "TXT": "6616d125c078fe2114ba6b6a505ed6" } } diff --git a/domains/_github-pages-challenge-cc4dev.cc4dev.json b/domains/_github-pages-challenge-cc4dev.cc4dev.json new file mode 100644 index 000000000..fbba59847 --- /dev/null +++ b/domains/_github-pages-challenge-cc4dev.cc4dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cc4dev", + "email": "cc4dev@proton.me" + }, + "records": { + "TXT": "dc5371ee1973414c03ef5e837646e6" + } +} diff --git a/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json b/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json index d97c8b7a4..8780c640c 100644 --- a/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json +++ b/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json @@ -3,7 +3,7 @@ "username": "Cfhoiril", "email": "iamchoirilfk@gmail.com" }, - "record": { + "records": { "TXT": "9b283f49dbeb511d5060e9f26a83b4" } } diff --git a/domains/_github-pages-challenge-chadeeeee.chadee.json b/domains/_github-pages-challenge-chadeeeee.chadee.json index 5f66a6ca0..54aa16ccb 100644 --- a/domains/_github-pages-challenge-chadeeeee.chadee.json +++ b/domains/_github-pages-challenge-chadeeeee.chadee.json @@ -6,7 +6,7 @@ "telegram": "chadeeeeeeeeee", "email": "esurginet2011@gmail.com" }, - "record": { + "records": { "TXT": "86c9964ec0f6d3ccbb233390376306" } } diff --git a/domains/_github-pages-challenge-charmingdisorder.alexey.json b/domains/_github-pages-challenge-charmingdisorder.alexey.json index 0733d85c2..a192bca9d 100644 --- a/domains/_github-pages-challenge-charmingdisorder.alexey.json +++ b/domains/_github-pages-challenge-charmingdisorder.alexey.json @@ -2,7 +2,7 @@ "owner": { "username": "charmingdisorder" }, - "record": { + "records": { "TXT": "8045a0394db9ecae4e8f4a76f5c17c" } } diff --git a/domains/_github-pages-challenge-chauvansang.sang.json b/domains/_github-pages-challenge-chauvansang.sang.json new file mode 100644 index 000000000..bd2a6e729 --- /dev/null +++ b/domains/_github-pages-challenge-chauvansang.sang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chauvansang", + "email": "cvansang94@gmail.com" + }, + "records": { + "TXT": "8a2d191d582a62b817e10aa08b67f5" + } +} diff --git a/domains/_github-pages-challenge-chethanyadav456.chethan.json b/domains/_github-pages-challenge-chethanyadav456.chethan.json index 4d40fa57d..3fe7cc47b 100644 --- a/domains/_github-pages-challenge-chethanyadav456.chethan.json +++ b/domains/_github-pages-challenge-chethanyadav456.chethan.json @@ -3,7 +3,7 @@ "username": "chethanyadav456", "email": "rockchethan1111@gmail.com" }, - "record": { + "records": { "TXT": "9781ed4422557bd427d0eff2c17b99" } } diff --git a/domains/_github-pages-challenge-clay990.suraj.json b/domains/_github-pages-challenge-clay990.suraj.json index e4b114376..c422ea588 100644 --- a/domains/_github-pages-challenge-clay990.suraj.json +++ b/domains/_github-pages-challenge-clay990.suraj.json @@ -3,7 +3,7 @@ "username": "Clay990", "email": "asuraj991m@gmail.com" }, - "record": { + "records": { "TXT": ["dee6e1fa6a0e02df5af4edb0e40ac4"] } } diff --git a/domains/_github-pages-challenge-clumzyofficial.adarsh.json b/domains/_github-pages-challenge-clumzyofficial.adarsh.json index a86ab9cb5..5f161abfe 100644 --- a/domains/_github-pages-challenge-clumzyofficial.adarsh.json +++ b/domains/_github-pages-challenge-clumzyofficial.adarsh.json @@ -3,7 +3,7 @@ "username": "clumzyofficial", "email": "adarshshukla0344@gmail.com" }, - "record": { + "records": { "TXT": "b37649c87b3dc3594b1c44139e420a" } } diff --git a/domains/_github-pages-challenge-codemaine.maine.json b/domains/_github-pages-challenge-codemaine.maine.json index d8e26f5b0..d18bfc753 100644 --- a/domains/_github-pages-challenge-codemaine.maine.json +++ b/domains/_github-pages-challenge-codemaine.maine.json @@ -3,7 +3,7 @@ "username": "Codemaine", "email": "jermaineantwi22@gmail.com" }, - "record": { + "records": { "TXT": "9991ed48ef1e29bebb9213d814ebd6" } } diff --git a/domains/_github-pages-challenge-compcoder007.umesh.json b/domains/_github-pages-challenge-compcoder007.umesh.json index fb7600926..1f34dc6ea 100644 --- a/domains/_github-pages-challenge-compcoder007.umesh.json +++ b/domains/_github-pages-challenge-compcoder007.umesh.json @@ -4,7 +4,7 @@ "username": "compCoder007", "email": "competentcoder007@gmail.com" }, - "record": { + "records": { "TXT": "7e581a7ce40509036ecb310e92fd21" } } diff --git a/domains/_github-pages-challenge-crazy-max-blog.rpi.crazymax.json b/domains/_github-pages-challenge-crazy-max-blog.rpi.crazymax.json index 468d5157c..a4b1f05ef 100644 --- a/domains/_github-pages-challenge-crazy-max-blog.rpi.crazymax.json +++ b/domains/_github-pages-challenge-crazy-max-blog.rpi.crazymax.json @@ -3,7 +3,7 @@ "username": "Crazy-Max-Blog", "email": "Crazy-Max-2011@yandex.ru" }, - "record": { + "records": { "TXT": "78e02ece6b6361900c40e44be0079c" } } diff --git a/domains/_github-pages-challenge-creeperkafasi.deniz.json b/domains/_github-pages-challenge-creeperkafasi.deniz.json index ba2dc9223..92eb44945 100644 --- a/domains/_github-pages-challenge-creeperkafasi.deniz.json +++ b/domains/_github-pages-challenge-creeperkafasi.deniz.json @@ -3,7 +3,7 @@ "username": "creeperkafasi", "email": "creeperkafasiyt@gmail.com" }, - "record": { + "records": { "TXT": "a6a4af6f32972c69be7ec1700f7196" } } diff --git a/domains/_github-pages-challenge-creepsooff.creepso.json b/domains/_github-pages-challenge-creepsooff.creepso.json index 5a4f16fd3..58616916f 100644 --- a/domains/_github-pages-challenge-creepsooff.creepso.json +++ b/domains/_github-pages-challenge-creepsooff.creepso.json @@ -3,7 +3,7 @@ "username": "CreepsoOff", "email": "eternel_universite0s@icloud.com" }, - "record": { + "records": { "TXT": "299e56541b39e06bef97fc4006974a" } } diff --git a/domains/_github-pages-challenge-crischutu07.crischutu07.json b/domains/_github-pages-challenge-crischutu07.crischutu07.json index fbd8c58f1..502cf90d7 100644 --- a/domains/_github-pages-challenge-crischutu07.crischutu07.json +++ b/domains/_github-pages-challenge-crischutu07.crischutu07.json @@ -3,7 +3,7 @@ "username": "crischutu07", "email": "sondolavnxbox.omlet@gmail.com" }, - "record": { + "records": { "TXT": "bad00bc54be093493a43e915dfd349" } } diff --git a/domains/_github-pages-challenge-crystalbajgai.crystal.json b/domains/_github-pages-challenge-crystalbajgai.crystal.json index cc16256d8..dfed07d5a 100644 --- a/domains/_github-pages-challenge-crystalbajgai.crystal.json +++ b/domains/_github-pages-challenge-crystalbajgai.crystal.json @@ -3,7 +3,7 @@ "username": "crystalbajgai", "email": "crystalbajgai@gmail.com" }, - "record": { + "records": { "TXT": "6fbb6593b607699c01a1c17c8c2849" } } diff --git a/domains/_github-pages-challenge-d-pow.devon.json b/domains/_github-pages-challenge-d-pow.devon.json index 875c3aa2e..d1886e98d 100644 --- a/domains/_github-pages-challenge-d-pow.devon.json +++ b/domains/_github-pages-challenge-d-pow.devon.json @@ -1,10 +1,9 @@ { "description": "GitHub Pages verification for devon.is-a.dev", "owner": { - "username": "D-Pow", - "email": "D-Pow@users.noreply.github.com" + "username": "D-Pow" }, - "record": { + "records": { "TXT": "cec54b510828f770750c1b17cad7f2" } } diff --git a/domains/_github-pages-challenge-daamin909.daamin.json b/domains/_github-pages-challenge-daamin909.daamin.json index 685215e76..22a890009 100644 --- a/domains/_github-pages-challenge-daamin909.daamin.json +++ b/domains/_github-pages-challenge-daamin909.daamin.json @@ -3,7 +3,7 @@ "username": "Daamin909", "email": "ashai.daamin@gmail.com" }, - "record": { + "records": { "TXT": "3c96f2bc76027656f9d05fbdd95026" } } diff --git a/domains/_github-pages-challenge-dandepan303.dean.json b/domains/_github-pages-challenge-dandepan303.dean.json index 7b15a5600..44957e955 100644 --- a/domains/_github-pages-challenge-dandepan303.dean.json +++ b/domains/_github-pages-challenge-dandepan303.dean.json @@ -3,7 +3,7 @@ "username": "dandepan303", "email": "dandepan303@gmail.com" }, - "record": { + "records": { "TXT": "35714d694a49776a1e8125d03b4e0b" } } diff --git a/domains/_github-pages-challenge-danilezheng4.danilezheng4.json b/domains/_github-pages-challenge-danilezheng4.danilezheng4.json new file mode 100644 index 000000000..9273dafd2 --- /dev/null +++ b/domains/_github-pages-challenge-danilezheng4.danilezheng4.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "danilezheng4", + "email": "danilezheng4@outlook.com" + }, + "records": { + "TXT": "ecafb05290cd0377aecb8b624f8e7a" + } +} diff --git a/domains/_github-pages-challenge-darkdevil3610.gourav.json b/domains/_github-pages-challenge-darkdevil3610.gourav.json index 1d92d12ab..d81836e2e 100644 --- a/domains/_github-pages-challenge-darkdevil3610.gourav.json +++ b/domains/_github-pages-challenge-darkdevil3610.gourav.json @@ -3,7 +3,7 @@ "username": "darkdevil3610", "email": "herokugourav@gmail.com" }, - "record": { + "records": { "TXT": ["9c53fbad44d0be32a846af5f673015"] } } diff --git a/domains/_github-pages-challenge-daspete.pete.json b/domains/_github-pages-challenge-daspete.pete.json new file mode 100644 index 000000000..1f23cf375 --- /dev/null +++ b/domains/_github-pages-challenge-daspete.pete.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "daspete", + "email": "daspetemail@gmail.com" + }, + "records": { + "TXT": "ece69b9f0bf2d6d1bda512b8af30fa" + } +} diff --git a/domains/_github-pages-challenge-debkanchan.debkanchan.json b/domains/_github-pages-challenge-debkanchan.debkanchan.json new file mode 100644 index 000000000..d5db60380 --- /dev/null +++ b/domains/_github-pages-challenge-debkanchan.debkanchan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "debkanchan", + "email": "debu.samadder@gmail.com" + }, + "records": { + "TXT": "36f31b49ddb71ca70a8cb3dd21e61d" + } +} diff --git a/domains/_github-pages-challenge-debtlessflea.debtlessflea.json b/domains/_github-pages-challenge-debtlessflea.debtlessflea.json index ae92c5feb..a492c8756 100644 --- a/domains/_github-pages-challenge-debtlessflea.debtlessflea.json +++ b/domains/_github-pages-challenge-debtlessflea.debtlessflea.json @@ -3,7 +3,7 @@ "username": "DebtlessFlea", "email": "citizen.caption020@passfwd.com" }, - "record": { + "records": { "TXT": "ba015236c9b45aa3d3427b2b3c0f7e" } } diff --git a/domains/_github-pages-challenge-defective4.defective.json b/domains/_github-pages-challenge-defective4.defective.json index 591ea2ac9..04a663a7d 100644 --- a/domains/_github-pages-challenge-defective4.defective.json +++ b/domains/_github-pages-challenge-defective4.defective.json @@ -3,7 +3,7 @@ "username": "Defective4", "email": "def3ctive4@gmail.com" }, - "record": { + "records": { "TXT": "6a4d7169e05d83cb7512bd39e631ac" } } diff --git a/domains/_github-pages-challenge-deltafumble.deltafumble.json b/domains/_github-pages-challenge-deltafumble.deltafumble.json index 497b8b526..4a0305718 100644 --- a/domains/_github-pages-challenge-deltafumble.deltafumble.json +++ b/domains/_github-pages-challenge-deltafumble.deltafumble.json @@ -3,7 +3,7 @@ "username": "deltafumble", "email": "deltafumblecontact@skiff.com" }, - "record": { + "records": { "TXT": "39cc94cea6bb9c128a442df111f0c9" } } diff --git a/domains/_github-pages-challenge-denboy0123.juqwtf.json b/domains/_github-pages-challenge-denboy0123.juqwtf.json deleted file mode 100644 index f59cc1eba..000000000 --- a/domains/_github-pages-challenge-denboy0123.juqwtf.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "denboy0123", - "email": "pochtaproverka01@gmail.com" - }, - "record": { - "TXT": "6146edfce746644d8877fd941120eb" - } -} diff --git a/domains/_github-pages-challenge-dev-ajay-sahani.ajays.json b/domains/_github-pages-challenge-dev-ajay-sahani.ajays.json index 3c8332146..869b8a1d7 100644 --- a/domains/_github-pages-challenge-dev-ajay-sahani.ajays.json +++ b/domains/_github-pages-challenge-dev-ajay-sahani.ajays.json @@ -3,7 +3,7 @@ "username": "Dev-Ajay-sahani", "email": "ajays.dev.contact@gmail.com" }, - "record": { + "records": { "TXT": "41d8fd2a7b00dc0110fdfa4c1518c9" } } diff --git a/domains/_github-pages-challenge-dev-satyamjha.satyamjha.json b/domains/_github-pages-challenge-dev-satyamjha.satyamjha.json new file mode 100644 index 000000000..0df66b35a --- /dev/null +++ b/domains/_github-pages-challenge-dev-satyamjha.satyamjha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dev-satyamjha", + "email": "realsatyam02@gmail.com" + }, + "records": { + "TXT": "cfb164b676b453b9258240ca419ce0" + } +} diff --git a/domains/_github-pages-challenge-devendrakanojiya.devendra.json b/domains/_github-pages-challenge-devendrakanojiya.devendra.json index 961fb0562..cacbfc6df 100644 --- a/domains/_github-pages-challenge-devendrakanojiya.devendra.json +++ b/domains/_github-pages-challenge-devendrakanojiya.devendra.json @@ -3,7 +3,7 @@ "username": "devendrakanojiya", "email": "s_36100@bkbirlacollegekalyan.com" }, - "record": { + "records": { "TXT": "1bab44a51e777f98e075d71f2806a4" } } diff --git a/domains/_github-pages-challenge-devhammed.hammed.json b/domains/_github-pages-challenge-devhammed.hammed.json new file mode 100644 index 000000000..db36b9769 --- /dev/null +++ b/domains/_github-pages-challenge-devhammed.hammed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devhammed", + "email": "hey@hammed.dev" + }, + "records": { + "TXT": "7672b068b3140a9fbaaf9bfe0ab136" + } +} diff --git a/domains/_github-pages-challenge-devhanza.hansana.json b/domains/_github-pages-challenge-devhanza.hansana.json index 694ee904e..b0afa0880 100644 --- a/domains/_github-pages-challenge-devhanza.hansana.json +++ b/domains/_github-pages-challenge-devhanza.hansana.json @@ -3,7 +3,7 @@ "username": "DevHanza", "email": "josephandrew1@logicstreak.com" }, - "record": { + "records": { "TXT": "f8be8c81d5fc3ad6c97e687a404a9d" } } diff --git a/domains/_github-pages-challenge-diordnas.cassie.json b/domains/_github-pages-challenge-diordnas.cassie.json index 5c191eb92..81e519234 100644 --- a/domains/_github-pages-challenge-diordnas.cassie.json +++ b/domains/_github-pages-challenge-diordnas.cassie.json @@ -3,7 +3,7 @@ "username": "Diordnas", "email": "cassthepurple@gmail.com" }, - "record": { + "records": { "TXT": "756d917b8c992b5032094d6765915b" } } diff --git a/domains/_github-pages-challenge-drssoccer55.doug.json b/domains/_github-pages-challenge-drssoccer55.doug.json new file mode 100644 index 000000000..3df14e294 --- /dev/null +++ b/domains/_github-pages-challenge-drssoccer55.doug.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "drssoccer55", + "email": "sextondouglas@pm.me" + }, + "records": { + "TXT": "6605758124fbb4085b1687476d067b" + } +} diff --git a/domains/_github-pages-challenge-duc-ios.duc.json b/domains/_github-pages-challenge-duc-ios.duc.json new file mode 100644 index 000000000..ef270202e --- /dev/null +++ b/domains/_github-pages-challenge-duc-ios.duc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duc-ios", + "email": "hi@duk.one" + }, + "records": { + "TXT": "91c9fd955fd906fab980881cb5f477" + } +} diff --git a/domains/_github-pages-challenge-ducky4life.ducky.json b/domains/_github-pages-challenge-ducky4life.ducky.json new file mode 100644 index 000000000..42d59d250 --- /dev/null +++ b/domains/_github-pages-challenge-ducky4life.ducky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ducky4life", + "email": "duckylai@proton.me" + }, + "records": { + "TXT": "7b577ecd19bde96461d7b480a5f0a4" + } +} diff --git a/domains/_github-pages-challenge-dumprr.dumprr.json b/domains/_github-pages-challenge-dumprr.dumprr.json index a497bb694..1f9e5ad31 100644 --- a/domains/_github-pages-challenge-dumprr.dumprr.json +++ b/domains/_github-pages-challenge-dumprr.dumprr.json @@ -3,7 +3,7 @@ "username": "dumprr", "email": "duhhhmprr@proton.me" }, - "record": { + "records": { "TXT": "493971f29452bc15b55966259b43a5" } } diff --git a/domains/_github-pages-challenge-dushmanta05.dushmanta.json b/domains/_github-pages-challenge-dushmanta05.dushmanta.json index 471006b8b..65808d646 100644 --- a/domains/_github-pages-challenge-dushmanta05.dushmanta.json +++ b/domains/_github-pages-challenge-dushmanta05.dushmanta.json @@ -3,7 +3,7 @@ "username": "dushmanta05", "email": "dushmanta.dev@gmail.com" }, - "record": { + "records": { "TXT": "259ff2c88b910f54c7a1ec2d0da405" } } diff --git a/domains/_github-pages-challenge-dvandervlag.dennis.json b/domains/_github-pages-challenge-dvandervlag.dennis.json index ca38a7f53..b42b20a49 100644 --- a/domains/_github-pages-challenge-dvandervlag.dennis.json +++ b/domains/_github-pages-challenge-dvandervlag.dennis.json @@ -3,7 +3,7 @@ "username": "dvandervlag", "email": "dvandervlag@gmail.com" }, - "record": { + "records": { "TXT": "e0c9a40b22c0a75c4043ff40e1b926" } } diff --git a/domains/_github-pages-challenge-edenqwq.eden.json b/domains/_github-pages-challenge-edenqwq.eden.json index 2460433b0..3ff2cedf0 100644 --- a/domains/_github-pages-challenge-edenqwq.eden.json +++ b/domains/_github-pages-challenge-edenqwq.eden.json @@ -3,7 +3,7 @@ "username": "EdenQwQ", "email": "lsahlm1eden@gmail.com" }, - "record": { + "records": { "TXT": "2babcf1b4a0ae8e0f7bc801719d6af" } } diff --git a/domains/_github-pages-challenge-edwardthelegend.edward.json b/domains/_github-pages-challenge-edwardthelegend.edward.json index 8156a6b03..a5ee083f1 100644 --- a/domains/_github-pages-challenge-edwardthelegend.edward.json +++ b/domains/_github-pages-challenge-edwardthelegend.edward.json @@ -3,7 +3,7 @@ "username": "EdwardTheLegend", "email": "edward@edwardtlowe.com" }, - "record": { + "records": { "TXT": "fba1c393a4bf816cdb2aa4515feae1" } } diff --git a/domains/_github-pages-challenge-eldano.eldano.json b/domains/_github-pages-challenge-eldano.eldano.json index 6b3a52210..3a5ef260e 100644 --- a/domains/_github-pages-challenge-eldano.eldano.json +++ b/domains/_github-pages-challenge-eldano.eldano.json @@ -3,7 +3,7 @@ "username": "eldano", "email": "eldano.v2@gmail.com" }, - "record": { + "records": { "TXT": "f805956b9898312782616bc73ce1cd" } } diff --git a/domains/_github-pages-challenge-eldinesh.eldinesh.json b/domains/_github-pages-challenge-eldinesh.eldinesh.json index 754b01a0a..586278a12 100644 --- a/domains/_github-pages-challenge-eldinesh.eldinesh.json +++ b/domains/_github-pages-challenge-eldinesh.eldinesh.json @@ -3,7 +3,7 @@ "username": "eldinesh", "email": "dseera6@gmail.com" }, - "record": { + "records": { "TXT": "dafe75727b19da6bd62bf961a94c7d" } } diff --git a/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json b/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json index ecfbf1b52..40a3919ca 100644 --- a/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json +++ b/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json @@ -3,7 +3,7 @@ "username": "Endermanbugzjfc", "email": "endermanbugzjfc@gmail.com" }, - "record": { + "records": { "TXT": "238acf06da9051a27631863f11abbf" } } diff --git a/domains/_github-pages-challenge-enderpoint07.enderpoint.json b/domains/_github-pages-challenge-enderpoint07.enderpoint.json index 866fc1955..3fef2d721 100644 --- a/domains/_github-pages-challenge-enderpoint07.enderpoint.json +++ b/domains/_github-pages-challenge-enderpoint07.enderpoint.json @@ -6,7 +6,7 @@ "discord": "DotM38#5497", "instagram": "enderpoint07" }, - "record": { + "records": { "TXT": "ea82a679a2f0a737ed5a4c6a5d0e2b" } } diff --git a/domains/_github-pages-challenge-ethereumvd.ethereumvd.json b/domains/_github-pages-challenge-ethereumvd.ethereumvd.json new file mode 100644 index 000000000..8b5db874c --- /dev/null +++ b/domains/_github-pages-challenge-ethereumvd.ethereumvd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ethereumvd", + "email": "ethereum249@gmail.com" + }, + "records": { + "TXT": "acffd9c330d027fef82987d6dd8b4e" + } +} diff --git a/domains/_github-pages-challenge-exyxz.exyxz.json b/domains/_github-pages-challenge-exyxz.exyxz.json new file mode 100644 index 000000000..2d1944d02 --- /dev/null +++ b/domains/_github-pages-challenge-exyxz.exyxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "records": { + "TXT": "38873ba2da582e531282026e6fb4bf" + } +} diff --git a/domains/_github-pages-challenge-eyus00.eyus00.json b/domains/_github-pages-challenge-eyus00.eyus00.json new file mode 100644 index 000000000..3c1e247e8 --- /dev/null +++ b/domains/_github-pages-challenge-eyus00.eyus00.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eyus00", + "email": "eyus00@duck.com" + }, + "records": { + "TXT": "b96876543903f6ec6bdb91f857ea04" + } +} diff --git a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json b/domains/_github-pages-challenge-fa-fifi.fa-fifi.json deleted file mode 100644 index e68a19e0e..000000000 --- a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Github page domain verification", - "owner": { - "username": "fa-fifi", - "email": "fafifi1997@gmail.com" - }, - "record": { - "TXT": "4076c15aac94a89c1a131d252cf368" - } -} diff --git a/domains/_github-pages-challenge-fdciabdul.fdciabdul.json b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json index ff827cd72..14377ed70 100644 --- a/domains/_github-pages-challenge-fdciabdul.fdciabdul.json +++ b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json @@ -3,7 +3,7 @@ "username": "fdciabdul", "email": "cp@imtaqin.id" }, - "record": { + "records": { "TXT": "54ca8d4fa780d986e86c1306c00519" } } diff --git a/domains/_github-pages-challenge-flazepe.flazepe.json b/domains/_github-pages-challenge-flazepe.flazepe.json index 49f113584..a93978b8c 100644 --- a/domains/_github-pages-challenge-flazepe.flazepe.json +++ b/domains/_github-pages-challenge-flazepe.flazepe.json @@ -3,7 +3,7 @@ "username": "flazepe", "email": "flazepe@gmail.com" }, - "record": { + "records": { "TXT": "68edc295b0936fb51d13af5cbbfc3b" } } diff --git a/domains/_github-pages-challenge-flc995.florin.json b/domains/_github-pages-challenge-flc995.florin.json index 634deabb5..650e57a11 100644 --- a/domains/_github-pages-challenge-flc995.florin.json +++ b/domains/_github-pages-challenge-flc995.florin.json @@ -3,7 +3,7 @@ "username": "flc995", "email": "flc995@gmail.com" }, - "record": { + "records": { "TXT": "eab0530066ed691b55a4edd424f74b" } } diff --git a/domains/_github-pages-challenge-fluffythebunny.json b/domains/_github-pages-challenge-fluffythebunny.json deleted file mode 100644 index 3b3919f04..000000000 --- a/domains/_github-pages-challenge-fluffythebunny.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Fluffythebunny", - "email": "puglsytt@gmail.com" - }, - "record": { - "TXT": "beb68ebc988463b8b1753c41c14f9e" - } -} diff --git a/domains/_github-pages-challenge-formunagit.formuna.json b/domains/_github-pages-challenge-formunagit.formuna.json index 348d2f8de..bb2c58e89 100644 --- a/domains/_github-pages-challenge-formunagit.formuna.json +++ b/domains/_github-pages-challenge-formunagit.formuna.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "FormunaGit", - "discord": "formuna" - }, - "record": { - "TXT": ["f1190641c5391341d1097c3a2a8160"] - } + "owner": { + "username": "FormunaGit", + "discord": "formuna" + }, + "records": { + "TXT": ["f1190641c5391341d1097c3a2a8160"] + } } diff --git a/domains/_github-pages-challenge-foxsdenyt.foxsden.json b/domains/_github-pages-challenge-foxsdenyt.foxsden.json index d2b2622c5..f61bcdd88 100644 --- a/domains/_github-pages-challenge-foxsdenyt.foxsden.json +++ b/domains/_github-pages-challenge-foxsdenyt.foxsden.json @@ -4,7 +4,7 @@ "username": "FoxsDenYT", "email": "foxsdenyt+isadev@gmail.com" }, - "record": { + "records": { "TXT": "37455d1a9cf706acc4f0cd6ada2ce7" } } diff --git a/domains/_github-pages-challenge-foxy4096.foxy4096.json b/domains/_github-pages-challenge-foxy4096.foxy4096.json index c6e871060..67aad2a3a 100644 --- a/domains/_github-pages-challenge-foxy4096.foxy4096.json +++ b/domains/_github-pages-challenge-foxy4096.foxy4096.json @@ -3,7 +3,7 @@ "username": "foxy4096", "email": "adityapriyadarshi669@gmail.com" }, - "record": { + "records": { "TXT": "eb006bea4f375b57b795dbfc8dd3fe" } } diff --git a/domains/_github-pages-challenge-frost2k5.frost2k5.json b/domains/_github-pages-challenge-frost2k5.frost2k5.json index a1b0bec68..c0cb88a20 100644 --- a/domains/_github-pages-challenge-frost2k5.frost2k5.json +++ b/domains/_github-pages-challenge-frost2k5.frost2k5.json @@ -3,7 +3,7 @@ "username": "FrosT2k5", "email": "androygaming@gmail.com" }, - "record": { + "records": { "TXT": "470d49eac00aadbe7f580a6c455ad9" } } diff --git a/domains/_github-pages-challenge-funnsam.funn.json b/domains/_github-pages-challenge-funnsam.funn.json index 3e47a077a..5ca2c3cff 100644 --- a/domains/_github-pages-challenge-funnsam.funn.json +++ b/domains/_github-pages-challenge-funnsam.funn.json @@ -3,7 +3,7 @@ "username": "funnsam", "email": "funnsam8@gmail.com" }, - "record": { + "records": { "TXT": "a81a9e51e2583c003a02eba386cb78" } } diff --git a/domains/_github-pages-challenge-ganesh76.ganesh-g.json b/domains/_github-pages-challenge-ganesh76.ganesh-g.json new file mode 100644 index 000000000..d210bc5e3 --- /dev/null +++ b/domains/_github-pages-challenge-ganesh76.ganesh-g.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ganesh76", + "email": "ganesh.g.cse@gmail.com" + }, + "records": { + "TXT": "94df711e9b048a87929864206a479a" + } +} diff --git a/domains/_github-pages-challenge-gautamkrishnar.gkr.json b/domains/_github-pages-challenge-gautamkrishnar.gkr.json index c064bd3c7..1ede47fad 100644 --- a/domains/_github-pages-challenge-gautamkrishnar.gkr.json +++ b/domains/_github-pages-challenge-gautamkrishnar.gkr.json @@ -3,7 +3,7 @@ "username": "gautamkrishnar", "email": "rgautamkrishna@gmail.com" }, - "record": { + "records": { "TXT": "155ab7179ccadb58ed0627f0b45420" } } diff --git a/domains/_github-pages-challenge-gegendepressed.sairaj.json b/domains/_github-pages-challenge-gegendepressed.sairaj.json new file mode 100644 index 000000000..9d0201a06 --- /dev/null +++ b/domains/_github-pages-challenge-gegendepressed.sairaj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gegendepressed", + "email": "sairaj09pai@gmail.com" + }, + "records": { + "TXT": "c6a67c35d8e7aac91ac5afce904ad6" + } +} diff --git a/domains/_github-pages-challenge-gewaleelek.gewalee.json b/domains/_github-pages-challenge-gewaleelek.gewalee.json new file mode 100644 index 000000000..85fb6af9b --- /dev/null +++ b/domains/_github-pages-challenge-gewaleelek.gewalee.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "gewaleelek" + }, + "records": { + "TXT": "06e9ec8a834fc5e6c09ded6c524be4" + } +} diff --git a/domains/_github-pages-challenge-giocoliere.gioco.json b/domains/_github-pages-challenge-giocoliere.gioco.json index 9ea7ff84e..259953bec 100644 --- a/domains/_github-pages-challenge-giocoliere.gioco.json +++ b/domains/_github-pages-challenge-giocoliere.gioco.json @@ -3,7 +3,7 @@ "username": "giocoliere", "email": "simcrigjeki@gmail.com" }, - "record": { + "records": { "TXT": "6da8f68c4f74f990d4d75ad48bdd93" } } diff --git a/domains/_github-pages-challenge-githubfantest.bryce.json b/domains/_github-pages-challenge-githubfantest.bryce.json new file mode 100644 index 000000000..f12c68634 --- /dev/null +++ b/domains/_github-pages-challenge-githubfantest.bryce.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GitHubFanTest", + "email": "feelingbloxyburger24@gmail.com" + }, + "records": { + "TXT": "68769d2d26832aca71242d59740d72" + } +} diff --git a/domains/_github-pages-challenge-uuphoria2.uuphoria2.json b/domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json similarity index 55% rename from domains/_github-pages-challenge-uuphoria2.uuphoria2.json rename to domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json index f65e6dc95..7ab0dc6ef 100644 --- a/domains/_github-pages-challenge-uuphoria2.uuphoria2.json +++ b/domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json @@ -1,10 +1,10 @@ { "description": "Verification for my personal site", "owner": { - "username": "uuphoria2", + "username": "GManTheMarioGuy", "email": "gman36147@gmail.com" }, - "record": { - "TXT": "e102771c99f70130190148a2d00ee0" + "records": { + "TXT": "20f23b82e045272d36fadd99a6e464" } } diff --git a/domains/_github-pages-challenge-gokay05.gokay.json b/domains/_github-pages-challenge-gokay05.gokay.json new file mode 100644 index 000000000..15a71d80d --- /dev/null +++ b/domains/_github-pages-challenge-gokay05.gokay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gokay05", + "email": "gyamankurt@gmail.com" + }, + "records": { + "TXT": "7c83467aa6d55ff736d77d66a6f94e" + } +} diff --git a/domains/_github-pages-challenge-habeel06.habeel.json b/domains/_github-pages-challenge-habeel06.habeel.json index 8e7a9ce2e..682423469 100644 --- a/domains/_github-pages-challenge-habeel06.habeel.json +++ b/domains/_github-pages-challenge-habeel06.habeel.json @@ -2,7 +2,7 @@ "owner": { "username": "habeel06" }, - "record": { + "records": { "TXT": "6bbac3351ea3d8ad90603e1318c7ff" } } diff --git a/domains/_github-pages-challenge-harishnkr.hari.json b/domains/_github-pages-challenge-harishnkr.hari.json index 6e88e44c1..48497b92f 100644 --- a/domains/_github-pages-challenge-harishnkr.hari.json +++ b/domains/_github-pages-challenge-harishnkr.hari.json @@ -4,7 +4,7 @@ "username": "harishnkr", "email": "hari2menon1234@gmail.com" }, - "record": { + "records": { "TXT": "7f15aad6874de8ea118574464c8169" } } diff --git a/domains/_github-pages-challenge-harshnarayanjha.harshnj.json b/domains/_github-pages-challenge-harshnarayanjha.harshnj.json index a734dcfe0..87bb28b6f 100644 --- a/domains/_github-pages-challenge-harshnarayanjha.harshnj.json +++ b/domains/_github-pages-challenge-harshnarayanjha.harshnj.json @@ -3,7 +3,7 @@ "username": "HarshNarayanJha", "email": "harshnj@proton.me" }, - "record": { + "records": { "TXT": "fc925e645f243f84b9c9f0585add64" } } diff --git a/domains/_github-pages-challenge-hector-vigil.hector-vigil.json b/domains/_github-pages-challenge-hector-vigil.hector-vigil.json index 694ff157d..6bd1ffa23 100644 --- a/domains/_github-pages-challenge-hector-vigil.hector-vigil.json +++ b/domains/_github-pages-challenge-hector-vigil.hector-vigil.json @@ -3,7 +3,7 @@ "username": "hector-vigil", "email": "vigilescalera.h@gmail.com" }, - "record": { + "records": { "TXT": "01a4ef998725972f99991612a43336" } } diff --git a/domains/_github-pages-challenge-herwingx.ghsearch.json b/domains/_github-pages-challenge-herwingx.ghsearch.json new file mode 100644 index 000000000..51ddbcd42 --- /dev/null +++ b/domains/_github-pages-challenge-herwingx.ghsearch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "herwingx", + "email": "herwingmacias@gmail.com" + }, + "records": { + "TXT": "2a006f5ffbfb592d6001e215d479da" + } +} diff --git a/domains/_github-pages-challenge-hilight3r.hilight3r.json b/domains/_github-pages-challenge-hilight3r.hilight3r.json index 1b5b38a41..e77cf115e 100644 --- a/domains/_github-pages-challenge-hilight3r.hilight3r.json +++ b/domains/_github-pages-challenge-hilight3r.hilight3r.json @@ -1,10 +1,9 @@ { "owner": { "username": "HIlight3R", - "discord": "632272741000544259", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lEEbmOZavCkur0apEhD0MigNx6rzV3Kqhd9_Lw4Wxt7U7b0rcV779rEFB1Fm4LdwKAVJJ8_MeDm1jf0y14lGqQotXsvYzRKOCBk5t7vLtS_541WkodNwOPbAUV_g2KBaq6MynjnwX5786OLkuRJE-QnxwflxQRQHtL76xYJV3d7UVmZk0ppSUxyCw5SdSXUp7zgoJiTE2JIshtR5dFULQCyH9QK7gVpNFJBwaoTJeoRsCOy_oYoXVhYysYhX94tubtwKzE4xSDmQW4UbOo8yLRNTIo-PkyuY6cBD4yYvueRcTAd_UChS12Y27QSFhQq78I7WLaE7u4cV060Th1fEmA.9kQc0tIg1PyfXJtKgbiBSQ.uFTPklnOgLBqnu-dg7ZsCEZ_QrMiuyiHY60IgI1X3CdE1kSQckWTdApOQF8AXTC0inYYfmSpfvzP02Rcgo3Z9vyrckWG_ZSJbmfKR2SOpeN_Cq94jwKAZQXW0U45LxB1.cYkl_VljmQbyvurLc7hF6Q" + "discord": "632272741000544259" }, - "record": { + "records": { "TXT": "0c51eaecf1de5c4349169056229f46" } } diff --git a/domains/_github-pages-challenge-hima-pro.tdim.json b/domains/_github-pages-challenge-hima-pro.tdim.json index 6022b25f3..46635f91e 100644 --- a/domains/_github-pages-challenge-hima-pro.tdim.json +++ b/domains/_github-pages-challenge-hima-pro.tdim.json @@ -4,7 +4,7 @@ "username": "Hima-Pro", "email": "pnpop01027066161@gmail.com" }, - "record": { + "records": { "TXT": "c8b67d5aafafeb2e5ec1561e503552" } } diff --git a/domains/_github-pages-challenge-hmonsterg.soap.json b/domains/_github-pages-challenge-hmonsterg.soap.json index ad3c92831..f15d1ef0a 100644 --- a/domains/_github-pages-challenge-hmonsterg.soap.json +++ b/domains/_github-pages-challenge-hmonsterg.soap.json @@ -3,7 +3,7 @@ "username": "HmonsterG", "email": "Plzdontgethacked@outlook.com" }, - "record": { + "records": { "TXT": "e97c07c8d241804c777b23d7015d00" } } diff --git a/domains/_github-pages-challenge-hnks-gh.hnks.json b/domains/_github-pages-challenge-hnks-gh.hnks.json new file mode 100644 index 000000000..b0b9cbbaa --- /dev/null +++ b/domains/_github-pages-challenge-hnks-gh.hnks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hnks-gh", + "email": "contact@mellifluous.eu.org" + }, + "records": { + "TXT": "6483ec564b33c63fa8d736c3c73914" + } +} diff --git a/domains/_github-pages-challenge-hungthai1401.hungthai.json b/domains/_github-pages-challenge-hungthai1401.hungthai.json new file mode 100644 index 000000000..f5b8cbbcf --- /dev/null +++ b/domains/_github-pages-challenge-hungthai1401.hungthai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hungthai1401", + "email": "hungthai1401.it@gmail.com" + }, + "records": { + "TXT": "693e3be4f1121fc00f2fbad65439d0" + } +} diff --git a/domains/_github-pages-challenge-i-jer.jer.json b/domains/_github-pages-challenge-i-jer.jer.json index ba868f179..411e009fc 100644 --- a/domains/_github-pages-challenge-i-jer.jer.json +++ b/domains/_github-pages-challenge-i-jer.jer.json @@ -1,9 +1,9 @@ { "owner": { - "username": "JerBlox", + "username": "i-Jer", "email": "chen.fuyuan07@gmail.com" }, - "record": { + "records": { "TXT": "e1e6eda49ed7d363f8492c91821a1a" } } diff --git a/domains/_github-pages-challenge-iakzs.iakzs.json b/domains/_github-pages-challenge-iakzs.iakzs.json index 609a3f69b..17634ff03 100644 --- a/domains/_github-pages-challenge-iakzs.iakzs.json +++ b/domains/_github-pages-challenge-iakzs.iakzs.json @@ -4,7 +4,7 @@ "email": "iakzs@protonmail.com", "discord": "622795838032314388" }, - "record": { + "records": { "TXT": "e20d874e765da4afd4a221f6c8bce4" } } diff --git a/domains/_github-pages-challenge-iakzs.kz.json b/domains/_github-pages-challenge-iakzs.kz.json index 776d58091..96b12bbea 100644 --- a/domains/_github-pages-challenge-iakzs.kz.json +++ b/domains/_github-pages-challenge-iakzs.kz.json @@ -4,7 +4,7 @@ "email": "iakzs@protonmail.com", "discord": "622795838032314388" }, - "record": { + "records": { "TXT": "cb7cd68eea57b70a1cd2814629c399" } } diff --git a/domains/_github-pages-challenge-iamrony777.ronit.json b/domains/_github-pages-challenge-iamrony777.ronit.json index 23fce778c..44ddcc190 100644 --- a/domains/_github-pages-challenge-iamrony777.ronit.json +++ b/domains/_github-pages-challenge-iamrony777.ronit.json @@ -3,7 +3,7 @@ "username": "iamrony777", "email": "iamrony777@pm.me" }, - "record": { + "records": { "TXT": "702edaf64e30be353646b4988cbc26" } } diff --git a/domains/_github-pages-challenge-icky17.jairomorales.json b/domains/_github-pages-challenge-icky17.jairomorales.json index 0e4a4af87..75b2d450a 100644 --- a/domains/_github-pages-challenge-icky17.jairomorales.json +++ b/domains/_github-pages-challenge-icky17.jairomorales.json @@ -3,7 +3,7 @@ "username": "Icky17", "email": "jairomoralesperez0@gmail.com" }, - "record": { + "records": { "TXT": "bdff1e7214b7ebd125f3b9e9e9f1cd" } } diff --git a/domains/_github-pages-challenge-icm185.icm.json b/domains/_github-pages-challenge-icm185.icm.json index cd9a85d65..44235eba5 100644 --- a/domains/_github-pages-challenge-icm185.icm.json +++ b/domains/_github-pages-challenge-icm185.icm.json @@ -3,7 +3,7 @@ "username": "ICM185", "email": "ironcladmonster185@gmail.com" }, - "record": { + "records": { "TXT": "0a7797274484306ed45f07548705fa" } } diff --git a/domains/_github-pages-challenge-imnotnahn.imnahn.json b/domains/_github-pages-challenge-imnotnahn.imnahn.json new file mode 100644 index 000000000..18f3a6854 --- /dev/null +++ b/domains/_github-pages-challenge-imnotnahn.imnahn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imnotnahn", + "email": "thanhnhan.contact.work@gmail.com" + }, + "records": { + "TXT": "0078b8f8494de41ef1c90903f745c5" + } +} diff --git a/domains/_github-pages-challenge-impratik7.pratikmali.json b/domains/_github-pages-challenge-impratik7.pratikmali.json index 53c529cb3..002ff522e 100644 --- a/domains/_github-pages-challenge-impratik7.pratikmali.json +++ b/domains/_github-pages-challenge-impratik7.pratikmali.json @@ -3,7 +3,7 @@ "username": "impratik7", "email": "malipratik09@gmail.com" }, - "record": { + "records": { "TXT": "31f203aa7f5e0f5c0d7e984a718bc7" } } diff --git a/domains/_github-pages-challenge-imrmnabil.nabil.json b/domains/_github-pages-challenge-imrmnabil.nabil.json new file mode 100644 index 000000000..86c1dde07 --- /dev/null +++ b/domains/_github-pages-challenge-imrmnabil.nabil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imrmnabil", + "email": "imrmnabil@gmail.com" + }, + "records": { + "TXT": "ce38bed94bccbf581a0efa569f006a" + } +} diff --git a/domains/_github-pages-challenge-imshymike.shymike.json b/domains/_github-pages-challenge-imshymike.shymike.json index e920b6d7e..f6e462f20 100644 --- a/domains/_github-pages-challenge-imshymike.shymike.json +++ b/domains/_github-pages-challenge-imshymike.shymike.json @@ -3,7 +3,7 @@ "username": "ImShyMike", "discord": "582648583635992622" }, - "record": { + "records": { "TXT": "f3bee6548add17e5852c9b567d9a44" } } diff --git a/domains/_github-pages-challenge-inkilu.gautham.json b/domains/_github-pages-challenge-inkilu.gautham.json index 0002db549..c59773ea9 100644 --- a/domains/_github-pages-challenge-inkilu.gautham.json +++ b/domains/_github-pages-challenge-inkilu.gautham.json @@ -3,7 +3,7 @@ "username": "inkilu", "email": "gauthamgkm@gmail.com" }, - "record": { + "records": { "TXT": "c49ff3bbd82885e942c6785d410fd0" } } diff --git a/domains/_github-pages-challenge-inkilu.inkilu.json b/domains/_github-pages-challenge-inkilu.inkilu.json index b6033f50e..7831a47b2 100644 --- a/domains/_github-pages-challenge-inkilu.inkilu.json +++ b/domains/_github-pages-challenge-inkilu.inkilu.json @@ -3,7 +3,7 @@ "username": "inkilu", "email": "gauthamgkm@gmail.com" }, - "record": { + "records": { "TXT": "d84cc8928b4a48588344fd7d279fd6" } } diff --git a/domains/_github-pages-challenge-iostpa.cutedog5695.json b/domains/_github-pages-challenge-iostpa.cutedog5695.json index bc809f8d4..b88aebd1d 100644 --- a/domains/_github-pages-challenge-iostpa.cutedog5695.json +++ b/domains/_github-pages-challenge-iostpa.cutedog5695.json @@ -4,7 +4,7 @@ "discord": "716306888492318790", "twitter": "iostpa" }, - "record": { + "records": { "TXT": "cd8aac10494e4b5b76656163a11508" } } diff --git a/domains/_github-pages-challenge-iraviteja.raviteja.json b/domains/_github-pages-challenge-iraviteja.raviteja.json index 2378c5633..b1f920654 100644 --- a/domains/_github-pages-challenge-iraviteja.raviteja.json +++ b/domains/_github-pages-challenge-iraviteja.raviteja.json @@ -3,7 +3,7 @@ "username": "iraviteja", "email": "iraviteja77@gmail.com" }, - "record": { + "records": { "TXT": "6bb854139d8be9a7f37ccb05319b75" } } diff --git a/domains/_github-pages-challenge-is-a-dev.data.json b/domains/_github-pages-challenge-is-a-dev.data.json deleted file mode 100644 index 005bed746..000000000 --- a/domains/_github-pages-challenge-is-a-dev.data.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "TXT": "9b2dd0cf1f2f48466e165d39351c97" - } -} diff --git a/domains/_github-pages-challenge-is-a-dev.json b/domains/_github-pages-challenge-is-a-dev.json deleted file mode 100644 index 8ce70cb89..000000000 --- a/domains/_github-pages-challenge-is-a-dev.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "TXT": "aa6e2c0b-6ba9-486e-b632-b66f87e2862b" - } -} diff --git a/domains/_github-pages-challenge-is-a-dev.raw-api.json b/domains/_github-pages-challenge-is-a-dev.raw-api.json deleted file mode 100644 index 3b2c1b412..000000000 --- a/domains/_github-pages-challenge-is-a-dev.raw-api.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "TXT": "22bbab4068a6c51de6df06aac442d5" - } -} diff --git a/domains/_github-pages-challenge-is-a-dev.team.json b/domains/_github-pages-challenge-is-a-dev.team.json deleted file mode 100644 index 29349741a..000000000 --- a/domains/_github-pages-challenge-is-a-dev.team.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "TXT": "c551c059fb167540ec0498d9011556" - } -} diff --git a/domains/_github-pages-challenge-itachisan.giovanni.json b/domains/_github-pages-challenge-itachisan.giovanni.json index 41ccd7e29..71da0422f 100644 --- a/domains/_github-pages-challenge-itachisan.giovanni.json +++ b/domains/_github-pages-challenge-itachisan.giovanni.json @@ -3,7 +3,7 @@ "username": "ItachiSan", "email": "giovannisantini93@yahoo.it" }, - "record": { + "records": { "TXT": "e7997ccdbdbbd94187efc184b3acc3" } } diff --git a/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json b/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json index 971ce9da8..54d0bd18e 100644 --- a/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json +++ b/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json @@ -3,7 +3,7 @@ "username": "itsnicecraft", "email": "itsnicecraft@protonmail.com" }, - "record": { + "records": { "TXT": "af298352953860816795903319fbc9" } } diff --git a/domains/_github-pages-challenge-itsvick.itsvick.json b/domains/_github-pages-challenge-itsvick.itsvick.json index 20f609b06..f5c61672c 100644 --- a/domains/_github-pages-challenge-itsvick.itsvick.json +++ b/domains/_github-pages-challenge-itsvick.itsvick.json @@ -3,7 +3,7 @@ "username": "itsvick", "email": "vivek_kasture@techjoomla.com" }, - "record": { + "records": { "TXT": "6cccc8b9552901f383cdc6a606b185" } } diff --git a/domains/_github-pages-challenge-j3rrythomas.jerry.json b/domains/_github-pages-challenge-j3rrythomas.jerry.json index 685b4867c..28d06df5a 100644 --- a/domains/_github-pages-challenge-j3rrythomas.jerry.json +++ b/domains/_github-pages-challenge-j3rrythomas.jerry.json @@ -3,7 +3,7 @@ "username": "j3rrythomas", "email": "jerrythomasjohn9@gmail.com" }, - "record": { + "records": { "TXT": "8d2b658010e7359f0de68b61b4b6dd" } } diff --git a/domains/_github-pages-challenge-jakehe1226.jakehe.json b/domains/_github-pages-challenge-jakehe1226.jakehe.json index bb10367b2..c3505ed9e 100644 --- a/domains/_github-pages-challenge-jakehe1226.jakehe.json +++ b/domains/_github-pages-challenge-jakehe1226.jakehe.json @@ -3,7 +3,7 @@ "username": "jakehe1226", "email": "jakehe1226@gmail.com" }, - "record": { + "records": { "TXT": "d96dac12901888fba491ca3e7666b6" } } diff --git a/domains/_github-pages-challenge-jakethebest1238.jakehe.json b/domains/_github-pages-challenge-jakethebest1238.jakehe.json index bb10367b2..c3505ed9e 100644 --- a/domains/_github-pages-challenge-jakethebest1238.jakehe.json +++ b/domains/_github-pages-challenge-jakethebest1238.jakehe.json @@ -3,7 +3,7 @@ "username": "jakehe1226", "email": "jakehe1226@gmail.com" }, - "record": { + "records": { "TXT": "d96dac12901888fba491ca3e7666b6" } } diff --git a/domains/_github-pages-challenge-javascript-void0.java.json b/domains/_github-pages-challenge-javascript-void0.java.json index 4ce5cd90c..da417e704 100644 --- a/domains/_github-pages-challenge-javascript-void0.java.json +++ b/domains/_github-pages-challenge-javascript-void0.java.json @@ -3,7 +3,7 @@ "username": "javascript-void0", "discord": "Java#3865" }, - "record": { + "records": { "TXT": "ce7434d57dd03085f434bc76dbab2f" } } diff --git a/domains/_github-pages-challenge-jb3.joe.json b/domains/_github-pages-challenge-jb3.joe.json index a7b22c1f8..31c354aca 100644 --- a/domains/_github-pages-challenge-jb3.joe.json +++ b/domains/_github-pages-challenge-jb3.joe.json @@ -3,7 +3,7 @@ "username": "jb3", "email": "joe@jb3.dev" }, - "record": { + "records": { "TXT": "b10c435ad8d9bb1a305cf52669e9ad" } } diff --git a/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json b/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json index 0d8941195..3b281dc4f 100644 --- a/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json +++ b/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json @@ -3,7 +3,7 @@ "username": "jcarpenter48", "email": "jcarpenter48@mail.com" }, - "record": { + "records": { "TXT": "2b652a052305150f64e2df88a21d0f" } } diff --git a/domains/_github-pages-challenge-jcgaming-official.jcquieta.json b/domains/_github-pages-challenge-jcgaming-official.jcquieta.json index 32b4b98a9..3def2c053 100644 --- a/domains/_github-pages-challenge-jcgaming-official.jcquieta.json +++ b/domains/_github-pages-challenge-jcgaming-official.jcquieta.json @@ -3,7 +3,7 @@ "username": "jcgaming-official", "email": "quieta.johncarl158@gmail.com" }, - "record": { + "records": { "TXT": "c7ad513bd1a641f4be43d3ea718a5e" } } diff --git a/domains/_github-pages-challenge-jd1.jd1.json b/domains/_github-pages-challenge-jd1.jd1.json new file mode 100644 index 000000000..302b65b87 --- /dev/null +++ b/domains/_github-pages-challenge-jd1.jd1.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "jd1", + "email": "isadev@mail.dilli.me" + }, + "records": { + "TXT": "a3c21c7b2bda6160f0f072afcb5d67" + } +} diff --git a/domains/_github-pages-challenge-jecoh12.jecoh.json b/domains/_github-pages-challenge-jecoh12.jecoh.json new file mode 100644 index 000000000..321e24f9e --- /dev/null +++ b/domains/_github-pages-challenge-jecoh12.jecoh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jecoh12", + "email": "jecoh12@gmail.com" + }, + "records": { + "TXT": "06b17cb3b27f897547ef636ec8189d" + } +} diff --git a/domains/_github-pages-challenge-jesgran.jesgran.json b/domains/_github-pages-challenge-jesgran.jesgran.json index edef8f039..8f5451add 100644 --- a/domains/_github-pages-challenge-jesgran.jesgran.json +++ b/domains/_github-pages-challenge-jesgran.jesgran.json @@ -3,7 +3,7 @@ "username": "Jesgran", "email": "calzdani20@libero.it" }, - "record": { + "records": { "TXT": "4ca188e02efff19513cd6f803a57e2" } } diff --git a/domains/_github-pages-challenge-jesusvala.jesusvaladez.json b/domains/_github-pages-challenge-jesusvala.jesusvaladez.json new file mode 100644 index 000000000..e3d78feaa --- /dev/null +++ b/domains/_github-pages-challenge-jesusvala.jesusvaladez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JesusVala", + "email": "jesusvaladezf@outlook.com" + }, + "records": { + "TXT": "0d3d73c2f3c76a7ec6bb5484d88e97" + } +} diff --git a/domains/_github-pages-challenge-jeymen.jeymen.json b/domains/_github-pages-challenge-jeymen.jeymen.json deleted file mode 100644 index 3075b9884..000000000 --- a/domains/_github-pages-challenge-jeymen.jeymen.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Jeymen", - "email": "jeymen11@proton.me" - }, - "record": { - "TXT": "d01c3f5f2e886990f511ffb0dc7fcb" - } -} diff --git a/domains/_github-pages-challenge-jlai403.joey.json b/domains/_github-pages-challenge-jlai403.joey.json new file mode 100644 index 000000000..9d90e9cc7 --- /dev/null +++ b/domains/_github-pages-challenge-jlai403.joey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jlai403", + "discord": "120522740590575616" + }, + "records": { + "TXT": "f6ab04a95a9197df0b4d38f5426824" + } +} diff --git a/domains/_github-pages-challenge-jlwisedev.joshuawise.json b/domains/_github-pages-challenge-jlwisedev.joshuawise.json new file mode 100644 index 000000000..ba6eb8995 --- /dev/null +++ b/domains/_github-pages-challenge-jlwisedev.joshuawise.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jlwisedev", + "email": "jlwiseeha24@gmail.com" + }, + "records": { + "TXT": "6e82c24d04ec14cccaaf2398dfd0c2" + } +} diff --git a/domains/_github-pages-challenge-josemyduarte.josemy.json b/domains/_github-pages-challenge-josemyduarte.josemy.json new file mode 100644 index 000000000..2f28511cb --- /dev/null +++ b/domains/_github-pages-challenge-josemyduarte.josemy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "JosemyDuarte" + }, + "records": { + "TXT": "f9830295961050524a4ba5c3eb4b62" + } +} diff --git a/domains/_github-pages-challenge-juanpython1.juandev.json b/domains/_github-pages-challenge-juanpython1.juandev.json new file mode 100644 index 000000000..495c8f6c6 --- /dev/null +++ b/domains/_github-pages-challenge-juanpython1.juandev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanPython1", + "email": "kamilo201025@gmail.com" + }, + "records": { + "TXT": "0342f0aeddf970dce791538a82f3b4" + } +} diff --git a/domains/_github-pages-challenge-juansamayoa.juan-samayoa.json b/domains/_github-pages-challenge-juansamayoa.juan-samayoa.json new file mode 100644 index 000000000..324802908 --- /dev/null +++ b/domains/_github-pages-challenge-juansamayoa.juan-samayoa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanSamayoa", + "email": "juancho1705@gmail.com" + }, + "records": { + "TXT": "fc8f871bfa593a9c2c21cc89bc2a84" + } +} diff --git a/domains/_github-pages-challenge-juqwtf.juqwtf.json b/domains/_github-pages-challenge-juqwtf.juqwtf.json new file mode 100644 index 000000000..f0fc2912c --- /dev/null +++ b/domains/_github-pages-challenge-juqwtf.juqwtf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juqwtf", + "email": "juqwtf@gmail.com" + }, + "records": { + "TXT": "6146edfce746644d8877fd941120eb" + } +} diff --git a/domains/_github-pages-challenge-juststudio7.j.json b/domains/_github-pages-challenge-juststudio7.j.json index 005937eb8..69c00cede 100644 --- a/domains/_github-pages-challenge-juststudio7.j.json +++ b/domains/_github-pages-challenge-juststudio7.j.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "TXT": "3e256d5551b9e9252f9da7270f6aec" } } diff --git a/domains/_github-pages-challenge-juststudio7.juststudio.json b/domains/_github-pages-challenge-juststudio7.juststudio.json index cae15746c..e0cdb1f9c 100644 --- a/domains/_github-pages-challenge-juststudio7.juststudio.json +++ b/domains/_github-pages-challenge-juststudio7.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "TXT": ["9f7414e9ff060a1d5721a914dd48e3"] } } diff --git a/domains/_github-pages-challenge-justtobbi.justtobbi.json b/domains/_github-pages-challenge-justtobbi.justtobbi.json index 3c7a1ebc3..999dde621 100644 --- a/domains/_github-pages-challenge-justtobbi.justtobbi.json +++ b/domains/_github-pages-challenge-justtobbi.justtobbi.json @@ -3,7 +3,7 @@ "username": "justtobbi", "email": "justtobbi@gmail.com" }, - "record": { + "records": { "TXT": "40c1c0481529b00233ccf00048c45c" } } diff --git a/domains/_github-pages-challenge-jvdesignbavaria.jvdesign.json b/domains/_github-pages-challenge-jvdesignbavaria.jvdesign.json index 2ce88b196..467f63958 100644 --- a/domains/_github-pages-challenge-jvdesignbavaria.jvdesign.json +++ b/domains/_github-pages-challenge-jvdesignbavaria.jvdesign.json @@ -3,7 +3,7 @@ "username": "JVDesignBavaria", "twitter": "JVDesignBavaria" }, - "record": { + "records": { "TXT": "f4729fd3c0ae53d5150331f5f741a2" } } diff --git a/domains/_github-pages-challenge-kajpio.kajetan.json b/domains/_github-pages-challenge-kajpio.kajetan.json new file mode 100644 index 000000000..cba55efbf --- /dev/null +++ b/domains/_github-pages-challenge-kajpio.kajetan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kajpio", + "email": "thugmichel14@gmail.com" + }, + "records": { + "TXT": "22a0972632a2df28e644ae320025b9" + } +} diff --git a/domains/_github-pages-challenge-karify98.karify98.json b/domains/_github-pages-challenge-karify98.karify98.json new file mode 100644 index 000000000..82fb97184 --- /dev/null +++ b/domains/_github-pages-challenge-karify98.karify98.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "karify98", + "email": "nnnam048@gmail.com" + }, + "records": { + "TXT": "923edb3fd9f4e444dedd5c9bf4e52c" + } +} diff --git a/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json b/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json index c64213de6..5b5c19de8 100644 --- a/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json +++ b/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json @@ -4,7 +4,7 @@ "email": "kaustubh_2008@outlook.com", "twitter": "kaustubhkharvi" }, - "record": { + "records": { "TXT": "1ac125c3f84f3381a22491edf36bb0" } } diff --git a/domains/_github-pages-challenge-kellylawrence.kelly.json b/domains/_github-pages-challenge-kellylawrence.kelly.json new file mode 100644 index 000000000..7edb08d18 --- /dev/null +++ b/domains/_github-pages-challenge-kellylawrence.kelly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kellylawrence", + "email": "kelly@kellylawrence.ca" + }, + "records": { + "TXT": "26237ec72d51f1ba56e371e8e3fef9" + } +} diff --git a/domains/_github-pages-challenge-kenwuqianghao.kenwu.json b/domains/_github-pages-challenge-kenwuqianghao.kenwu.json index f89f348a2..6679adedd 100644 --- a/domains/_github-pages-challenge-kenwuqianghao.kenwu.json +++ b/domains/_github-pages-challenge-kenwuqianghao.kenwu.json @@ -6,7 +6,7 @@ "email": "wooqianghao@gmail.com", "twitter": "KenWuqianghao" }, - "record": { + "records": { "TXT": "ddd9e6fce10cefd43829dc21e9bc09" } } diff --git a/domains/_github-pages-challenge-keshav-writes-code.keshav.json b/domains/_github-pages-challenge-keshav-writes-code.keshav.json new file mode 100644 index 000000000..cf877aeef --- /dev/null +++ b/domains/_github-pages-challenge-keshav-writes-code.keshav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "keshav-writes-code", + "email": "dhimankeshav201@gmail.com" + }, + "records": { + "TXT": "40cdee3db2d50651a7e32d4f46c1f1" + } +} diff --git a/domains/_github-pages-challenge-kiensamson0000.khuathuykien.json b/domains/_github-pages-challenge-kiensamson0000.khuathuykien.json index 0d7ce5a96..771cf5c52 100644 --- a/domains/_github-pages-challenge-kiensamson0000.khuathuykien.json +++ b/domains/_github-pages-challenge-kiensamson0000.khuathuykien.json @@ -3,7 +3,7 @@ "username": "kiensamson0000", "email": "kienkh99@gmail.com" }, - "record": { + "records": { "TXT": "5bcdd0e68060954c89ee00291531a9" } } diff --git a/domains/_github-pages-challenge-knowgaurav.gauravsingh.json b/domains/_github-pages-challenge-knowgaurav.gauravsingh.json new file mode 100644 index 000000000..79b3a23c0 --- /dev/null +++ b/domains/_github-pages-challenge-knowgaurav.gauravsingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "knowgaurav", + "email": "qj1b83fmt@mozmail.com" + }, + "records": { + "TXT": "eaf70c3b4e96a8417de6d506d64c88" + } +} diff --git a/domains/_github-pages-challenge-krishnans2006.krishnan.json b/domains/_github-pages-challenge-krishnans2006.krishnan.json index b5377951e..927e40682 100644 --- a/domains/_github-pages-challenge-krishnans2006.krishnan.json +++ b/domains/_github-pages-challenge-krishnans2006.krishnan.json @@ -3,7 +3,7 @@ "username": "krishnans2006", "email": "krishnans2006@gmail.com" }, - "record": { + "records": { "TXT": "98ed55fbc51103499325626a360a64" } } diff --git a/domains/_github-pages-challenge-kristiantokarim.kristiantokarim.json b/domains/_github-pages-challenge-kristiantokarim.kristiantokarim.json new file mode 100644 index 000000000..59b3b42b6 --- /dev/null +++ b/domains/_github-pages-challenge-kristiantokarim.kristiantokarim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kristiantokarim", + "email": "kristiantokarim@gmail.com" + }, + "records": { + "TXT": "c6f935a2b6c9f21fcf59e79838cdc5" + } +} diff --git a/domains/_github-pages-challenge-krix12.krix.json b/domains/_github-pages-challenge-krix12.krix.json index b54e2d599..c746909c0 100644 --- a/domains/_github-pages-challenge-krix12.krix.json +++ b/domains/_github-pages-challenge-krix12.krix.json @@ -3,7 +3,7 @@ "username": "Krix12", "email": "kristjan.kocevar89@gmail.com" }, - "record": { + "records": { "TXT": "178ab459221fd277af8029cae84a63" } } diff --git a/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json new file mode 100644 index 000000000..44db4dd27 --- /dev/null +++ b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kunalpurandare", + "email": "kunalpurandare1703@gmail.com" + }, + "records": { + "TXT": "6ab808f578d906f3b0fe8333da9b57" + } +} diff --git a/domains/_github-pages-challenge-kunsh13.kunsh13.json b/domains/_github-pages-challenge-kunsh13.kunsh13.json index 9307de79e..2b28358dc 100644 --- a/domains/_github-pages-challenge-kunsh13.kunsh13.json +++ b/domains/_github-pages-challenge-kunsh13.kunsh13.json @@ -3,7 +3,7 @@ "username": "kunsh13", "email": "kunshmaurya@gmail.com" }, - "record": { + "records": { "TXT": "72d4c5c21140c36045a8acebb81bd3" } } diff --git a/domains/_github-pages-challenge-labus3.madhav.json b/domains/_github-pages-challenge-labus3.madhav.json index 7308650c5..727fad310 100644 --- a/domains/_github-pages-challenge-labus3.madhav.json +++ b/domains/_github-pages-challenge-labus3.madhav.json @@ -3,7 +3,7 @@ "username": "LaBus3", "email": "madhav.v.1996@gmail.com" }, - "record": { + "records": { "TXT": "7362cb36811c9eefc5039e6e6da778" } } diff --git a/domains/_github-pages-challenge-lakshinhemachandran.quantum.json b/domains/_github-pages-challenge-lakshinhemachandran.quantum.json new file mode 100644 index 000000000..e9acdd920 --- /dev/null +++ b/domains/_github-pages-challenge-lakshinhemachandran.quantum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lakshinhemachandran", + "email": "lh140313@outlook.com" + }, + "records": { + "TXT": "00db49f0b434dd009acb3da9e09700" + } +} diff --git a/domains/_github-pages-challenge-lean-cc.kars.json b/domains/_github-pages-challenge-lean-cc.kars.json deleted file mode 100644 index 3b0f43bdf..000000000 --- a/domains/_github-pages-challenge-lean-cc.kars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website.", - "repo": "https://github.com/lean-cc/Personal-site", - "owner": { - "username": "lean-cc", - "email": "leancc3020@gmail.com" - }, - "record": { - "TXT": "3c11059b471a5b5163437912c020df" - } -} diff --git a/domains/_github-pages-challenge-leespencer.spencer.json b/domains/_github-pages-challenge-leespencer.spencer.json new file mode 100644 index 000000000..0bab3a993 --- /dev/null +++ b/domains/_github-pages-challenge-leespencer.spencer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LeeSpencer", + "email": "mr.lee.spencer@gmail.com" + }, + "records": { + "TXT": "d2ec009b06395dafb0b2a7cb525a3a" + } +} diff --git a/domains/_github-pages-challenge-levanivashadze.levani.json b/domains/_github-pages-challenge-levanivashadze.levani.json index 1ce35f930..0567a0b06 100644 --- a/domains/_github-pages-challenge-levanivashadze.levani.json +++ b/domains/_github-pages-challenge-levanivashadze.levani.json @@ -3,7 +3,7 @@ "username": "LevaniVashadze", "email": "vashadzelevani11@gmail.com" }, - "record": { + "records": { "TXT": "ed2358814bd1764933a1fb860ab339" } } diff --git a/domains/_github-pages-challenge-liamatienza.liam.json b/domains/_github-pages-challenge-liamatienza.liam.json new file mode 100644 index 000000000..738209bc9 --- /dev/null +++ b/domains/_github-pages-challenge-liamatienza.liam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "liamatienza", + "email": "liamdev@duck.com" + }, + "records": { + "TXT": "21465fcb0d62d07a3c97587145ebea" + } +} diff --git a/domains/_github-pages-challenge-liancastellon.liancg.json b/domains/_github-pages-challenge-liancastellon.liancg.json index e21d8313a..033a5cc52 100644 --- a/domains/_github-pages-challenge-liancastellon.liancg.json +++ b/domains/_github-pages-challenge-liancastellon.liancg.json @@ -3,7 +3,7 @@ "username": "liancastellon", "email": "liancg@gmail.com" }, - "record": { + "records": { "TXT": "de487db710c1daf905269fb57775b6" } } diff --git a/domains/_github-pages-challenge-lightly-toasted.toast.json b/domains/_github-pages-challenge-lightly-toasted.toast.json index 6b9d99795..e0695e1cb 100644 --- a/domains/_github-pages-challenge-lightly-toasted.toast.json +++ b/domains/_github-pages-challenge-lightly-toasted.toast.json @@ -3,7 +3,7 @@ "username": "lightly-toasted", "email": "tooast@duck.com" }, - "record": { + "records": { "TXT": "b92470bdf6083c1af8509ee249c02f" } } diff --git a/domains/_github-pages-challenge-ligmatv.ligmatv.json b/domains/_github-pages-challenge-ligmatv.ligmatv.json deleted file mode 100644 index 7e27b7ac0..000000000 --- a/domains/_github-pages-challenge-ligmatv.ligmatv.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "TXT": "de8560c4ea3c0f753266b402385c50" - } -} diff --git a/domains/_github-pages-challenge-linuzzx.linusx.json b/domains/_github-pages-challenge-linuzzx.linusx.json index ba45a31e0..6107cf1e2 100644 --- a/domains/_github-pages-challenge-linuzzx.linusx.json +++ b/domains/_github-pages-challenge-linuzzx.linusx.json @@ -3,7 +3,7 @@ "username": "linuzzx", "email": "GalaxyLinus@gmail.com" }, - "record": { + "records": { "TXT": "029ab228dfd885b308be6aef43066d" } } diff --git a/domains/_github-pages-challenge-lisaterumi.elisaterumi.json b/domains/_github-pages-challenge-lisaterumi.elisaterumi.json new file mode 100644 index 000000000..7ab76329b --- /dev/null +++ b/domains/_github-pages-challenge-lisaterumi.elisaterumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lisaterumi", + "email": "contato@mulheresprogramando.com.br" + }, + "records": { + "TXT": "98eae69c84dbf5a9e26ece5b4ad0eb" + } +} diff --git a/domains/_github-pages-challenge-lizhiyao.zhiyao.json b/domains/_github-pages-challenge-lizhiyao.zhiyao.json index f10c1066f..61bdf881c 100644 --- a/domains/_github-pages-challenge-lizhiyao.zhiyao.json +++ b/domains/_github-pages-challenge-lizhiyao.zhiyao.json @@ -3,7 +3,7 @@ "username": "lizhiyao", "email": "dancerlzy@gmail.com" }, - "record": { + "records": { "TXT": "5079abdefe48796d3c55f058920bee" } } diff --git a/domains/_github-pages-challenge-lnminh1411.lnminh1411.json b/domains/_github-pages-challenge-lnminh1411.lnminh1411.json index 1513cd3ef..830c8d3b9 100644 --- a/domains/_github-pages-challenge-lnminh1411.lnminh1411.json +++ b/domains/_github-pages-challenge-lnminh1411.lnminh1411.json @@ -3,7 +3,7 @@ "username": "lnminh1411", "email": "nhatminh.forwarding@gmail.com" }, - "record": { + "records": { "TXT": "4f83fedca6340871b27f2bb29e61ae" } } diff --git a/domains/_github-pages-challenge-loisvelasco.loisvelasco.json b/domains/_github-pages-challenge-loisvelasco.loisvelasco.json index a0b715d7e..826fc5efa 100644 --- a/domains/_github-pages-challenge-loisvelasco.loisvelasco.json +++ b/domains/_github-pages-challenge-loisvelasco.loisvelasco.json @@ -4,7 +4,7 @@ "username": "loiSvelasco", "email": "loisuperficialvelasco@gmail.com" }, - "record": { + "records": { "TXT": "e45f5cee8c9438fe563d3bf4b2fbbe" } } diff --git a/domains/_github-pages-challenge-lowkeyguy4444.akshya.json b/domains/_github-pages-challenge-lowkeyguy4444.akshya.json index c6b0bb7ef..333a9a3dd 100644 --- a/domains/_github-pages-challenge-lowkeyguy4444.akshya.json +++ b/domains/_github-pages-challenge-lowkeyguy4444.akshya.json @@ -3,7 +3,7 @@ "username": "lowkeyguy4444", "email": "akshyathapa23@gmail.com" }, - "record": { + "records": { "TXT": "b29322c856bfcf9889e95c6cd95b91" } } diff --git a/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json b/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json index 313d46ba1..0c6458b71 100644 --- a/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json +++ b/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json @@ -3,7 +3,7 @@ "username": "LRxDarkDevil", "email": "tahaadnanawan@gmail.com" }, - "record": { + "records": { "TXT": "13dafb5731efc3b35b3e1fe1a20ac2" } } diff --git a/domains/_github-pages-challenge-lyaxsh.lyaxsh.json b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json new file mode 100644 index 000000000..7efb3a8e2 --- /dev/null +++ b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lyaxsh", + "email": "lakshnahar.forwork@gmail.com" + }, + "records": { + "TXT": "052e15826ee7e1723c713d222b1bcc" + } +} diff --git a/domains/_github-pages-challenge-m0m0k4s4n.momoka.json b/domains/_github-pages-challenge-m0m0k4s4n.momoka.json new file mode 100644 index 000000000..48089a5b6 --- /dev/null +++ b/domains/_github-pages-challenge-m0m0k4s4n.momoka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "M0M0K4S4N", + "email": "momokasan@proton.me" + }, + "records": { + "TXT": "5d381e72b5a25f499b81b5956c56c7" + } +} diff --git a/domains/_github-pages-challenge-machip3r.machip3r.json b/domains/_github-pages-challenge-machip3r.machip3r.json new file mode 100644 index 000000000..19117c944 --- /dev/null +++ b/domains/_github-pages-challenge-machip3r.machip3r.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "machip3r", + "email": "mac_258@hotmail.com" + }, + "records": { + "TXT": "cfc7c8e9fa922388850fe07ad3a7da" + } +} diff --git a/domains/_github-pages-challenge-madebytragic.madebytragic.json b/domains/_github-pages-challenge-madebytragic.madebytragic.json index ed97e08a4..bf4e8c95c 100644 --- a/domains/_github-pages-challenge-madebytragic.madebytragic.json +++ b/domains/_github-pages-challenge-madebytragic.madebytragic.json @@ -3,7 +3,7 @@ "username": "lrmn7", "email": "lrmnid@gmail.com" }, - "record": { + "records": { "TXT": "9693d9e721696f4184aa3abfa35921" } } diff --git a/domains/_github-pages-challenge-madisonwirtanen.zwyz.json b/domains/_github-pages-challenge-madisonwirtanen.zwyz.json index 594e85860..afe249853 100644 --- a/domains/_github-pages-challenge-madisonwirtanen.zwyz.json +++ b/domains/_github-pages-challenge-madisonwirtanen.zwyz.json @@ -3,7 +3,7 @@ "username": "madisonwirtanen", "email": "isadev@imkk.uk" }, - "record": { + "records": { "TXT": "18776d6f831dd6e69e7889f4747ecb" } } diff --git a/domains/_github-pages-challenge-manugeni.manugeni.json b/domains/_github-pages-challenge-manugeni.manugeni.json new file mode 100644 index 000000000..2f3b5e9c3 --- /dev/null +++ b/domains/_github-pages-challenge-manugeni.manugeni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "manugeni", + "email": "rendaniman@outlook.com" + }, + "records": { + "TXT": "c43b4f0460a8d8b9c05affa2da77ef" + } +} diff --git a/domains/_github-pages-challenge-marcossatoshi.satoshi.json b/domains/_github-pages-challenge-marcossatoshi.satoshi.json index cd34c9e68..a9a126930 100644 --- a/domains/_github-pages-challenge-marcossatoshi.satoshi.json +++ b/domains/_github-pages-challenge-marcossatoshi.satoshi.json @@ -3,7 +3,7 @@ "username": "marcossatoshi", "email": "marcos.satoshi@gmail.com" }, - "record": { + "records": { "TXT": "f3045f0960ac5562a7d764b72d102a" } } diff --git a/domains/_github-pages-challenge-mateuseap.mateuseap.json b/domains/_github-pages-challenge-mateuseap.mateuseap.json new file mode 100644 index 000000000..693d5afd0 --- /dev/null +++ b/domains/_github-pages-challenge-mateuseap.mateuseap.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mateuseap", + "email": "mateuseap@mateuseap.com" + }, + "records": { + "TXT": "ce7a3cbd81e6cafe34709d195aa0ed" + } +} diff --git a/domains/_github-pages-challenge-mcalec-dev.mcalec.json b/domains/_github-pages-challenge-mcalec-dev.mcalec.json new file mode 100644 index 000000000..be8f1883f --- /dev/null +++ b/domains/_github-pages-challenge-mcalec-dev.mcalec.json @@ -0,0 +1,12 @@ +{ + "description": "mcalec.is-a.dev", + "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev", + "owner": { + "username": "mcalec-dev", + "email": "hello@mcalec.dev", + "discord": "mcalec" + }, + "records": { + "TXT": "015fcfab7237a3342e028237414716" + } +} diff --git a/domains/_github-pages-challenge-mcotocel.mcotocel.json b/domains/_github-pages-challenge-mcotocel.mcotocel.json index 6e0d751cf..33d367b8c 100644 --- a/domains/_github-pages-challenge-mcotocel.mcotocel.json +++ b/domains/_github-pages-challenge-mcotocel.mcotocel.json @@ -3,7 +3,7 @@ "username": "MCotocel", "email": "mcotocel@outlook.com" }, - "record": { + "records": { "TXT": "059ac86f94300091a59d2cef8b09a6" } } diff --git a/domains/_github-pages-challenge-mesflit.mesflit.json b/domains/_github-pages-challenge-mesflit.mesflit.json index 4bd57e960..ec7b0fd90 100644 --- a/domains/_github-pages-challenge-mesflit.mesflit.json +++ b/domains/_github-pages-challenge-mesflit.mesflit.json @@ -3,7 +3,7 @@ "username": "mesflit", "email": "benomerfaruk11@gmail.com" }, - "record": { + "records": { "TXT": "67874e41f93805b9e30bd65ea1ca5a" } } diff --git a/domains/_github-pages-challenge-mh0386.mohamedhisham.json b/domains/_github-pages-challenge-mh0386.mohamedhisham.json new file mode 100644 index 000000000..c9cf7e203 --- /dev/null +++ b/domains/_github-pages-challenge-mh0386.mohamedhisham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MH0386", + "email": "mohamed.hisham.abdelzaher@gmail.com" + }, + "records": { + "TXT": "c6abd6e81620b17a3fc408bfbbbe06" + } +} diff --git a/domains/_github-pages-challenge-mikeymoo5.moothecow.json b/domains/_github-pages-challenge-mikeymoo5.moothecow.json index abb91996a..1c443e7ed 100644 --- a/domains/_github-pages-challenge-mikeymoo5.moothecow.json +++ b/domains/_github-pages-challenge-mikeymoo5.moothecow.json @@ -3,7 +3,7 @@ "username": "mikeymoo5", "email": "smartguy9964@gmail.com" }, - "record": { + "records": { "TXT": "2f899dd96f9394c2c189dc9a31aaf6" } } diff --git a/domains/_github-pages-challenge-mkblane.mkblane.json b/domains/_github-pages-challenge-mkblane.mkblane.json new file mode 100644 index 000000000..2479b9376 --- /dev/null +++ b/domains/_github-pages-challenge-mkblane.mkblane.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mkblane", + "email": "rendaniman@outlook.com" + }, + "records": { + "TXT": "1bd7f45bbafab3d1735f40245f5f6c" + } +} diff --git a/domains/_github-pages-challenge-mnhtng.mnhtng.json b/domains/_github-pages-challenge-mnhtng.mnhtng.json new file mode 100644 index 000000000..5d3ca8e3e --- /dev/null +++ b/domains/_github-pages-challenge-mnhtng.mnhtng.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mnhtng" + }, + "records": { + "TXT": "d3bfa02a77af7eec2db5df3a4d98da" + } +} diff --git a/domains/_github-pages-challenge-mohamadoday.bn3di.json b/domains/_github-pages-challenge-mohamadoday.bn3di.json new file mode 100644 index 000000000..790ce8974 --- /dev/null +++ b/domains/_github-pages-challenge-mohamadoday.bn3di.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohamadOday", + "email": "adada133321t@gmail.com" + }, + "records": { + "TXT": "a67c1c7ad9e8f589a22c5c161548f8" + } +} diff --git a/domains/_github-pages-challenge-mr1cecream.mricecream.json b/domains/_github-pages-challenge-mr1cecream.mricecream.json index dd9c1f358..e050573db 100644 --- a/domains/_github-pages-challenge-mr1cecream.mricecream.json +++ b/domains/_github-pages-challenge-mr1cecream.mricecream.json @@ -4,7 +4,7 @@ "email": "guy@ochakov.com", "twitter": "Mr__Icecream" }, - "record": { + "records": { "TXT": "86fe9c2f7e2d0be6a7a1c16a1c8032" } } diff --git a/domains/_github-pages-challenge-mrasif.mrasif.json b/domains/_github-pages-challenge-mrasif.mrasif.json index 4578316ae..eb96194c8 100644 --- a/domains/_github-pages-challenge-mrasif.mrasif.json +++ b/domains/_github-pages-challenge-mrasif.mrasif.json @@ -3,7 +3,7 @@ "username": "mrasif", "email": "admin@mrasif.in" }, - "record": { + "records": { "TXT": "3a800ee62fcc8911956495882b71ec" } } diff --git a/domains/_github-pages-challenge-mrdavidss-vgg.mrdavidss.json b/domains/_github-pages-challenge-mrdavidss-vgg.mrdavidss.json new file mode 100644 index 000000000..405c80d5c --- /dev/null +++ b/domains/_github-pages-challenge-mrdavidss-vgg.mrdavidss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrdavidss-vgg", + "email": "mrdavidssbusiness@gmail.com" + }, + "records": { + "TXT": "9fec60a74c61b74371cb9873163ac0" + } +} diff --git a/domains/_github-pages-challenge-mrdev88.mahdiruiz.json b/domains/_github-pages-challenge-mrdev88.mahdiruiz.json index a131fd24c..c2141d213 100644 --- a/domains/_github-pages-challenge-mrdev88.mahdiruiz.json +++ b/domains/_github-pages-challenge-mrdev88.mahdiruiz.json @@ -1,10 +1,9 @@ { "owner": { "username": "Mrdev88", - "discord": "1182049473673830435", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ePsSqFOGNkSh4H1BcdgVTr7Ie66h4JZ2t3AQPLM9OBgfOZcSTDU6VYAxTy2sHEMZkOPVGC97DpDVmngpyKQgkJD8B3nxecnzpboapW1lY6tlNp0drwcIeGfHH9oHdAw8ylY9BarqkAzxKeHtiqf6NPWCBc2xmgszDzk9CN4fKY6RelA9Yhdu_HUFnKHVUdSvm2MVfZYUzaChN2hOZoMmm_TUQI3s__CeXKlOPlywcP3L21zQk7uFdO3_pyavpesO2BB4f5gTerRYQE1CodhJvtkPTfxHEM0bWgzQ8g3gBJptcWR8937-yU2V7rFrvPCbyKpICP9TnpE5Pi5ncG4WLQ.ivq5ahY4SO1IXoJyhTghVw.3ma2bVTFuG7H6kaPUrzFl39vDPtx_0rHRftLlUD2eslqmlXm1tH2TAIZvZcQvuNTNLnX6gF_JBoPvqIr9TtRxg.9aIDcwUbsqrjtsqT9LOAsQ" + "discord": "1182049473673830435" }, - "record": { + "records": { "TXT": "892403b0e8310067a1787afeb3e8f7" } } diff --git a/domains/_github-pages-challenge-mrinjamul.mrinjamul.json b/domains/_github-pages-challenge-mrinjamul.mrinjamul.json index e233c0633..50c32e4e7 100644 --- a/domains/_github-pages-challenge-mrinjamul.mrinjamul.json +++ b/domains/_github-pages-challenge-mrinjamul.mrinjamul.json @@ -1,10 +1,10 @@ { - "description": "Personal Website", - "owner": { - "username": "mrinjamul", - "email": "injamulmohammadmollah@gmail.com" - }, - "record": { - "TXT": "f89efe65af996d174d8f254c511bf3" - } + "description": "Personal Website", + "owner": { + "username": "mrinjamul", + "email": "injamulmohammadmollah@gmail.com" + }, + "records": { + "TXT": "f89efe65af996d174d8f254c511bf3" + } } diff --git a/domains/_github-pages-challenge-mrsanjaya.jasa.json b/domains/_github-pages-challenge-mrsanjaya.jasa.json new file mode 100644 index 000000000..cfb139014 --- /dev/null +++ b/domains/_github-pages-challenge-mrsanjaya.jasa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrsanjaya", + "email": "sandhysanjaya0110@gmail.com" + }, + "records": { + "TXT": "d8a383c1e9f79f3d08781238025862" + } +} diff --git a/domains/_github-pages-challenge-mrsiir.xavier.json b/domains/_github-pages-challenge-mrsiir.xavier.json new file mode 100644 index 000000000..e2567e376 --- /dev/null +++ b/domains/_github-pages-challenge-mrsiir.xavier.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrSiir", + "email": "mrsiir@gmail.com" + }, + "records": { + "TXT": "137e2b17a723cce89a10e5e245a3b5" + } +} diff --git a/domains/_github-pages-challenge-muazsrc.muaz.json b/domains/_github-pages-challenge-muazsrc.muaz.json new file mode 100644 index 000000000..aa29b9c35 --- /dev/null +++ b/domains/_github-pages-challenge-muazsrc.muaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muazsrc", + "email": "muazsrc17@gmail.com" + }, + "records": { + "TXT": "fbd85152dbc991f3daa13d534b5875" + } +} diff --git a/domains/_github-pages-challenge-muizu.muiz.json b/domains/_github-pages-challenge-muizu.muiz.json new file mode 100644 index 000000000..4ea42b878 --- /dev/null +++ b/domains/_github-pages-challenge-muizu.muiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MuizU", + "email": "muizuvais99@gmail.com" + }, + "records": { + "TXT": "8cf896945b34d5309a335f41eb2000" + } +} diff --git a/domains/_github-pages-challenge-mukujhansi.gunman.json b/domains/_github-pages-challenge-mukujhansi.gunman.json index 3ef8ee16f..8cbdc2659 100644 --- a/domains/_github-pages-challenge-mukujhansi.gunman.json +++ b/domains/_github-pages-challenge-mukujhansi.gunman.json @@ -3,7 +3,7 @@ "username": "MukuJhansi", "email": "mukundagrawal800@gmail.com" }, - "record": { + "records": { "TXT": "c891d48a286f45f50eb814e97f60df" } } diff --git a/domains/_github-pages-challenge-myrdincx.myrdin.json b/domains/_github-pages-challenge-myrdincx.myrdin.json index 8f23e4a78..9f8b66d54 100644 --- a/domains/_github-pages-challenge-myrdincx.myrdin.json +++ b/domains/_github-pages-challenge-myrdincx.myrdin.json @@ -3,7 +3,7 @@ "username": "Myrdincx", "email": "myrdincx@gmail.com" }, - "record": { + "records": { "TXT": "73c422f79a3a088a46e52e7844cb08" } } diff --git a/domains/_github-pages-challenge-mysterv.my5ter.json b/domains/_github-pages-challenge-mysterv.my5ter.json new file mode 100644 index 000000000..6634e7e26 --- /dev/null +++ b/domains/_github-pages-challenge-mysterv.my5ter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MysterV", + "email": "myster@ik.me" + }, + "records": { + "TXT": "b3c336392a691368a55de53cff8fd8" + } +} diff --git a/domains/_github-pages-challenge-mysterv.myster.json b/domains/_github-pages-challenge-mysterv.myster.json new file mode 100644 index 000000000..a03f08f1d --- /dev/null +++ b/domains/_github-pages-challenge-mysterv.myster.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MysterV", + "email": "myster@ik.me" + }, + "records": { + "TXT": "e87fc6899d83da116cebe8335835d2" + } +} diff --git a/domains/_github-pages-challenge-n0r1uno.steffen.json b/domains/_github-pages-challenge-n0r1uno.steffen.json index d8c7fba21..55ef581b4 100644 --- a/domains/_github-pages-challenge-n0r1uno.steffen.json +++ b/domains/_github-pages-challenge-n0r1uno.steffen.json @@ -3,7 +3,7 @@ "username": "N0r1uno", "email": "steffen.florschuetz@t-online.de" }, - "record": { + "records": { "TXT": "06dbcd4fdc6325c0bce9ab6031937a" } } diff --git a/domains/_github-pages-challenge-namesmt.namesmt.json b/domains/_github-pages-challenge-namesmt.namesmt.json index 51c701b9a..5717b75a6 100644 --- a/domains/_github-pages-challenge-namesmt.namesmt.json +++ b/domains/_github-pages-challenge-namesmt.namesmt.json @@ -3,7 +3,7 @@ "username": "NamesMT", "email": "dangquoctrung123@gmail.com" }, - "record": { + "records": { "TXT": "6ec39f629cd9510bca23b84ba61aff" } } diff --git a/domains/_github-pages-challenge-narasimapandiyan.narasima.json b/domains/_github-pages-challenge-narasimapandiyan.narasima.json new file mode 100644 index 000000000..48d80d87e --- /dev/null +++ b/domains/_github-pages-challenge-narasimapandiyan.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "records": { + "TXT": "0cd2fb39489f7652da9a4942df4a75" + } +} diff --git a/domains/_github-pages-challenge-natblida68.ashwa.json b/domains/_github-pages-challenge-natblida68.ashwa.json index 76d0989cd..58bd11dbc 100644 --- a/domains/_github-pages-challenge-natblida68.ashwa.json +++ b/domains/_github-pages-challenge-natblida68.ashwa.json @@ -3,7 +3,7 @@ "username": "NatBLida68", "email": "aswajith.jithu888@gmail.com" }, - "record": { + "records": { "TXT": "f20bb532af2838eed8bfe622378d4b" } } diff --git a/domains/_github-pages-challenge-natedog2424.nd24.json b/domains/_github-pages-challenge-natedog2424.nd24.json new file mode 100644 index 000000000..d5b53091e --- /dev/null +++ b/domains/_github-pages-challenge-natedog2424.nd24.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "natedog2424", + "email": "natedog2424mail@gmail.com" + }, + "records": { + "TXT": "277ecd07aa6d1593b09b96c9329e3b" + } +} diff --git a/domains/_github-pages-challenge-nayanjd.nayandas.json b/domains/_github-pages-challenge-nayanjd.nayandas.json new file mode 100644 index 000000000..a6ba7d617 --- /dev/null +++ b/domains/_github-pages-challenge-nayanjd.nayandas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NayanJD", + "email": "dastms@gmail.com" + }, + "records": { + "TXT": "1f61f6ce0b038f2d48a6d726e715f5" + } +} diff --git a/domains/_github-pages-challenge-ncenti.centi.json b/domains/_github-pages-challenge-ncenti.centi.json index bc24cbf30..3bb2b01b6 100644 --- a/domains/_github-pages-challenge-ncenti.centi.json +++ b/domains/_github-pages-challenge-ncenti.centi.json @@ -3,7 +3,7 @@ "username": "nCenti", "email": "contactocenti@gmail.com" }, - "record": { + "records": { "TXT": "0623291ff64cbeebbfad2df7939f83" } } diff --git a/domains/_github-pages-challenge-nduartech.nathan.json b/domains/_github-pages-challenge-nduartech.nathan.json new file mode 100644 index 000000000..2b767e969 --- /dev/null +++ b/domains/_github-pages-challenge-nduartech.nathan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nduartech", + "email": "nduartech101@gmail.com" + }, + "records": { + "TXT": "79d3051264abe353b91b26d27d0e42" + } +} diff --git a/domains/_github-pages-challenge-nekitori17.nekitori17.json b/domains/_github-pages-challenge-nekitori17.nekitori17.json index 4af3ddf19..aeb05ca5f 100644 --- a/domains/_github-pages-challenge-nekitori17.nekitori17.json +++ b/domains/_github-pages-challenge-nekitori17.nekitori17.json @@ -4,7 +4,7 @@ "email": "cuongnguyen286641@gmail.com", "discord": "nekitorihakari" }, - "record": { + "records": { "TXT": "24cd28e86ee31fda98f1ffb6c3c732" } } diff --git a/domains/_github-pages-challenge-neoapps-dev.neoapps.json b/domains/_github-pages-challenge-neoapps-dev.neoapps.json index e60647c68..c7783939a 100644 --- a/domains/_github-pages-challenge-neoapps-dev.neoapps.json +++ b/domains/_github-pages-challenge-neoapps-dev.neoapps.json @@ -3,7 +3,7 @@ "username": "neoapps-dev", "email": "asd22.info@gmail.com" }, - "record": { + "records": { "TXT": "e18c9ddc220cc83720a8cf6a0d2b2c" } } diff --git a/domains/_github-pages-challenge-nerdwithcomputers.m1raclemax.json b/domains/_github-pages-challenge-nerdwithcomputers.m1raclemax.json index eaa999d69..bca292fec 100644 --- a/domains/_github-pages-challenge-nerdwithcomputers.m1raclemax.json +++ b/domains/_github-pages-challenge-nerdwithcomputers.m1raclemax.json @@ -3,7 +3,7 @@ "username": "nerdwithcomputers", "email": "hpscigeek@gmail.com" }, - "record": { + "records": { "TXT": "c944d7c547efbee69cf6537db51faa" } } diff --git a/domains/_github-pages-challenge-ngocjohn.ngocjohn.json b/domains/_github-pages-challenge-ngocjohn.ngocjohn.json index 919cb433e..013b913c9 100644 --- a/domains/_github-pages-challenge-ngocjohn.ngocjohn.json +++ b/domains/_github-pages-challenge-ngocjohn.ngocjohn.json @@ -3,7 +3,7 @@ "username": "ngocjohn", "email": "ngocjohn@me.com" }, - "record": { + "records": { "TXT": "ffa3766e16ef7c648239c0d3292491" } } diff --git a/domains/_github-pages-challenge-niksnemc.niksne.json b/domains/_github-pages-challenge-niksnemc.niksne.json index c4fe3f77b..ac5ddf16b 100644 --- a/domains/_github-pages-challenge-niksnemc.niksne.json +++ b/domains/_github-pages-challenge-niksnemc.niksne.json @@ -3,7 +3,7 @@ "username": "NikSneMC", "email": "contact@niksne.ru" }, - "record": { + "records": { "TXT": "6cde33bca742bd0dd9adf39a8f6d82" } } diff --git a/domains/_github-pages-challenge-ninja-5000.canavan.json b/domains/_github-pages-challenge-ninja-5000.canavan.json new file mode 100644 index 000000000..f4a275522 --- /dev/null +++ b/domains/_github-pages-challenge-ninja-5000.canavan.json @@ -0,0 +1,10 @@ +{ + "description": "GitHub pages verification", + "owner": { + "username": "Ninja-5000", + "discord": "707170199861854209" + }, + "records": { + "TXT": "1b6dcad6637eb7ef2c5de98714aff4" + } +} diff --git a/domains/_github-pages-challenge-noahziheng.noahgao.json b/domains/_github-pages-challenge-noahziheng.noahgao.json index 63500d9e0..a5bd10998 100644 --- a/domains/_github-pages-challenge-noahziheng.noahgao.json +++ b/domains/_github-pages-challenge-noahziheng.noahgao.json @@ -3,7 +3,7 @@ "username": "noahziheng", "email": "noahgaocn@outlook.com" }, - "record": { + "records": { "TXT": "a25695a5c49f374f6eb483ff49c7c7" } } diff --git a/domains/_github-pages-challenge-nobody5050.6502.json b/domains/_github-pages-challenge-nobody5050.6502.json index 89758a2e7..bc8651879 100644 --- a/domains/_github-pages-challenge-nobody5050.6502.json +++ b/domains/_github-pages-challenge-nobody5050.6502.json @@ -3,7 +3,7 @@ "username": "nobody5050", "email": "levibelland@gmail.com" }, - "record": { + "records": { "TXT": "0648c9309d9441b7f6b0dea3a78194" } } diff --git a/domains/_github-pages-challenge-noma4321.noma.json b/domains/_github-pages-challenge-noma4321.noma.json index d2491c88a..e1ab3b623 100644 --- a/domains/_github-pages-challenge-noma4321.noma.json +++ b/domains/_github-pages-challenge-noma4321.noma.json @@ -3,7 +3,7 @@ "username": "Noma4321", "email": "noam.malka1yt@gmail.com" }, - "record": { + "records": { "TXT": "3050b2d9504b6f7cab6049c0d11f64" } } diff --git a/domains/_github-pages-challenge-noobshubham.shubham.json b/domains/_github-pages-challenge-noobshubham.shubham.json index a935a9a32..50c000d5e 100644 --- a/domains/_github-pages-challenge-noobshubham.shubham.json +++ b/domains/_github-pages-challenge-noobshubham.shubham.json @@ -5,7 +5,7 @@ "username": "noobshubham", "email": "noobshubham65@gmail.com" }, - "record": { + "records": { "TXT": "d195c824403985d365b744c05663fb" } } diff --git a/domains/_github-pages-challenge-not-a-ethan.not-ethan.json b/domains/_github-pages-challenge-not-a-ethan.not-ethan.json index 216dbae71..6aa876077 100644 --- a/domains/_github-pages-challenge-not-a-ethan.not-ethan.json +++ b/domains/_github-pages-challenge-not-a-ethan.not-ethan.json @@ -3,7 +3,7 @@ "username": "not-a-ethan", "discord": "not_ethan." }, - "record": { + "records": { "TXT": "72fd44f779f6bd6ad363ff20bdeffb" } } diff --git a/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json b/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json index 7f8fdea03..b39fb1536 100644 --- a/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json +++ b/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json @@ -3,7 +3,7 @@ "username": "not-a-ethan", "discord": "not_ethan." }, - "record": { + "records": { "TXT": "6a37d74710c72cb55ff05fffd71974" } } diff --git a/domains/_github-pages-challenge-not-coded.notcoded.json b/domains/_github-pages-challenge-not-coded.notcoded.json index ca343d4fe..bbfdf4fae 100644 --- a/domains/_github-pages-challenge-not-coded.notcoded.json +++ b/domains/_github-pages-challenge-not-coded.notcoded.json @@ -4,7 +4,7 @@ "discord": "notcoded", "discordUserID": "620662953347121163" }, - "record": { + "records": { "TXT": "54806bbd47bc06fa6f626952eb06aa" } } diff --git a/domains/_github-pages-challenge-notnotrachit.rachit.json b/domains/_github-pages-challenge-notnotrachit.rachit.json index 658bac750..d59af4418 100644 --- a/domains/_github-pages-challenge-notnotrachit.rachit.json +++ b/domains/_github-pages-challenge-notnotrachit.rachit.json @@ -3,7 +3,7 @@ "username": "notnotrachit", "email": "rachitkhurana40@gmail.com" }, - "record": { + "records": { "TXT": "934b26e127661bad98765dc4d571f2" } } diff --git a/domains/_github-pages-challenge-nuraly-v.nuraly.json b/domains/_github-pages-challenge-nuraly-v.nuraly.json new file mode 100644 index 000000000..3c7a67c48 --- /dev/null +++ b/domains/_github-pages-challenge-nuraly-v.nuraly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nuraly-v", + "email": "mescorpx@gmail.com" + }, + "records": { + "TXT": "aecce766c2f539c48be6e59e611020" + } +} diff --git a/domains/_github-pages-challenge-nxb1t.nxb1t.json b/domains/_github-pages-challenge-nxb1t.nxb1t.json index bdac95dbd..5cb5f7cbe 100644 --- a/domains/_github-pages-challenge-nxb1t.nxb1t.json +++ b/domains/_github-pages-challenge-nxb1t.nxb1t.json @@ -4,7 +4,7 @@ "username": "nxb1t", "email": "nxb1t@proton.me" }, - "record": { + "records": { "TXT": "c18d4423748e2acdfacadefa6495a6" } } diff --git a/domains/_github-pages-challenge-o-lumix.lumix.json b/domains/_github-pages-challenge-o-lumix.lumix.json index 9d906c972..f87eb5919 100644 --- a/domains/_github-pages-challenge-o-lumix.lumix.json +++ b/domains/_github-pages-challenge-o-lumix.lumix.json @@ -3,7 +3,7 @@ "username": "o-lumix", "email": "bylumixxx@gmail.com" }, - "record": { + "records": { "TXT": "5eeb1461cd186204552743313555e9" } } diff --git a/domains/_github-pages-challenge-ogsamrat.samrat.json b/domains/_github-pages-challenge-ogsamrat.samrat.json index 86bb70b25..a27d7270f 100644 --- a/domains/_github-pages-challenge-ogsamrat.samrat.json +++ b/domains/_github-pages-challenge-ogsamrat.samrat.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "ogsamrat" - }, - "record": { - "TXT": ["eeef7c979489f42f420873389f2bef"] - } + "owner": { + "username": "ogsamrat" + }, + "records": { + "TXT": ["eeef7c979489f42f420873389f2bef"] + } } diff --git a/domains/_github-pages-challenge-okineadev.okinea.json b/domains/_github-pages-challenge-okineadev.okinea.json index 08e93918c..ee791c384 100644 --- a/domains/_github-pages-challenge-okineadev.okinea.json +++ b/domains/_github-pages-challenge-okineadev.okinea.json @@ -1,11 +1,9 @@ { "description": "Okinea Dev website", - "repo": "https://github.com/okineadev", "owner": { - "username": "okineadev", - "email": "81070564+okineadev@users.noreply.github.com" + "username": "okineadev" }, - "record": { + "records": { "TXT": "a4553ebffa6a3356fc37fb4f8e8a14" } } diff --git a/domains/_github-pages-challenge-onkarsathe007.onkarsathe.json b/domains/_github-pages-challenge-onkarsathe007.onkarsathe.json new file mode 100644 index 000000000..a4b777b31 --- /dev/null +++ b/domains/_github-pages-challenge-onkarsathe007.onkarsathe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Onkarsathe007", + "email": "onkarsathe96k@gmail.com" + }, + "records": { + "TXT": "8d02480f39dc3dfcfa2ebc8104135c" + } +} diff --git a/domains/_github-pages-challenge-opaayush.aayush.json b/domains/_github-pages-challenge-opaayush.aayush.json index 6749023b3..81f8a5cd4 100644 --- a/domains/_github-pages-challenge-opaayush.aayush.json +++ b/domains/_github-pages-challenge-opaayush.aayush.json @@ -3,7 +3,7 @@ "username": "OpAayush", "email": "aayushmagrawal@gmail.com" }, - "record": { + "records": { "TXT": "d609a47482f885a41a61549fbad3ee" } } diff --git a/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json b/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json index 9bb2054c5..61195b39e 100644 --- a/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json +++ b/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json @@ -3,7 +3,7 @@ "username": "OrangeLeafDev", "email": "caluzajacob07@gmail.com" }, - "record": { + "records": { "TXT": "46dcf591ef5db2595dc3ba5180bfc8" } } diff --git a/domains/_github-pages-challenge-ottercodes101.otter.json b/domains/_github-pages-challenge-ottercodes101.otter.json index bce3e58f5..e54028fb0 100644 --- a/domains/_github-pages-challenge-ottercodes101.otter.json +++ b/domains/_github-pages-challenge-ottercodes101.otter.json @@ -4,7 +4,7 @@ "username": "OtterCodes101", "email": "oliver.anderson4435@gmail.com" }, - "record": { + "records": { "TXT": "39223fa7956e66887c05db8b244538" } } diff --git a/domains/_github-pages-challenge-owentechv.owentech.json b/domains/_github-pages-challenge-owentechv.owentech.json deleted file mode 100644 index 927cddd9f..000000000 --- a/domains/_github-pages-challenge-owentechv.owentech.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "owentechv", - "email": "dowenx83@gmail.com" - }, - "record": { - "TXT": "c07b3c627d33a0c9fe4cbc593a2234" - } -} diff --git a/domains/_github-pages-challenge-oxmc.oxmc.json b/domains/_github-pages-challenge-oxmc.oxmc.json index 742e18a45..f3f71c074 100644 --- a/domains/_github-pages-challenge-oxmc.oxmc.json +++ b/domains/_github-pages-challenge-oxmc.oxmc.json @@ -4,7 +4,7 @@ "email": "oxmc7769.mail@gmail.com", "discord": "oxmc7769" }, - "record": { + "records": { "TXT": "eb7d97f93f961fd03de6e26db45846" } } diff --git a/domains/_github-pages-challenge-pansy27.pansy.json b/domains/_github-pages-challenge-pansy27.pansy.json index 838551c31..7b067cb4e 100644 --- a/domains/_github-pages-challenge-pansy27.pansy.json +++ b/domains/_github-pages-challenge-pansy27.pansy.json @@ -3,7 +3,7 @@ "username": "pansy27", "email": "uselessshogun99@gmail.com" }, - "record": { + "records": { "TXT": "f7dedb2a4d727663fc9b0198fe3797" } } diff --git a/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json b/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json index 0554a72d7..6e7b284cb 100644 --- a/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json +++ b/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json @@ -3,7 +3,7 @@ "username": "patrickzhou1234", "discord": "moist__nugget" }, - "record": { + "records": { "TXT": "d7c5e799b2dc38d36cb2345dd0e78d" } } diff --git a/domains/_github-pages-challenge-pavan-ambekar.pa1.json b/domains/_github-pages-challenge-pavan-ambekar.pa1.json new file mode 100644 index 000000000..588f2e96b --- /dev/null +++ b/domains/_github-pages-challenge-pavan-ambekar.pa1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pavan-ambekar", + "email": "pavan479ec@gmail.com" + }, + "records": { + "TXT": "703d6f0036517a3bad381ba97d5e8e" + } +} diff --git a/domains/_github-pages-challenge-peme969.peme969.json b/domains/_github-pages-challenge-peme969.peme969.json new file mode 100644 index 000000000..c40fce504 --- /dev/null +++ b/domains/_github-pages-challenge-peme969.peme969.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "peme969", + "email": "me@peme969.dev" + }, + "records": { + "TXT": "cd6136f17efbca44cec061b3fd6121" + } +} diff --git a/domains/_github-pages-challenge-pentsec.jeff.json b/domains/_github-pages-challenge-pentsec.jeff.json new file mode 100644 index 000000000..63bb9d2d1 --- /dev/null +++ b/domains/_github-pages-challenge-pentsec.jeff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PentSec", + "email": "jeffreysfu@gmail.com" + }, + "records": { + "TXT": "c1f0e5d392a06b64a632b42f794b1a" + } +} diff --git a/domains/_github-pages-challenge-peterbuga.peterbuga.json b/domains/_github-pages-challenge-peterbuga.peterbuga.json new file mode 100644 index 000000000..999dc8d56 --- /dev/null +++ b/domains/_github-pages-challenge-peterbuga.peterbuga.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "peterbuga", + "discord": "902580031044325407" + }, + "records": { + "TXT": "02d47f8f8f4e0b58658a80eff34a66" + } +} diff --git a/domains/_github-pages-challenge-pibiswal.piyushrb.json b/domains/_github-pages-challenge-pibiswal.piyushrb.json new file mode 100644 index 000000000..f9a2076e4 --- /dev/null +++ b/domains/_github-pages-challenge-pibiswal.piyushrb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pibiswal", + "email": "urpiyush39@gmail.com" + }, + "records": { + "TXT": "88b57a52bf70abe3255cb330bdc2e2" + } +} diff --git a/domains/_github-pages-challenge-pingoda.pingoda.json b/domains/_github-pages-challenge-pingoda.pingoda.json index 7116c4e7e..b6150c209 100644 --- a/domains/_github-pages-challenge-pingoda.pingoda.json +++ b/domains/_github-pages-challenge-pingoda.pingoda.json @@ -4,7 +4,7 @@ "email": "francescoclem915@gmail.com", "twitter": "Pingoda_" }, - "record": { + "records": { "TXT": "9ddc01a76b306b3cef2aba7445689b" } } diff --git a/domains/_github-pages-challenge-pixelgeek.pixelgeek.json b/domains/_github-pages-challenge-pixelgeek.pixelgeek.json index 49a6de195..23a07d5e4 100644 --- a/domains/_github-pages-challenge-pixelgeek.pixelgeek.json +++ b/domains/_github-pages-challenge-pixelgeek.pixelgeek.json @@ -3,7 +3,7 @@ "username": "pixelgeek", "email": "pxe.geek+github@gmail.com" }, - "record": { + "records": { "TXT": "6ca9401189820db4d366aacc7832c3" } } diff --git a/domains/_github-pages-challenge-pjschinske.peter.json b/domains/_github-pages-challenge-pjschinske.peter.json index 100be8040..a3cb14b41 100644 --- a/domains/_github-pages-challenge-pjschinske.peter.json +++ b/domains/_github-pages-challenge-pjschinske.peter.json @@ -3,7 +3,7 @@ "username": "pjschinske", "email": "pjschinske@gmail.com" }, - "record": { + "records": { "TXT": "ae060fca298593aaf2b5cc7aec64e6" } } diff --git a/domains/_github-pages-challenge-plu5.ck.json b/domains/_github-pages-challenge-plu5.ck.json index 6bac36094..7aef0a8aa 100644 --- a/domains/_github-pages-challenge-plu5.ck.json +++ b/domains/_github-pages-challenge-plu5.ck.json @@ -5,7 +5,7 @@ "email": "ctre@users.sourceforge.net", "twitter": "preminster" }, - "record": { + "records": { "TXT": "1d92c5eb70762c032ba6d32b9b631e" } } diff --git a/domains/_github-pages-challenge-pokedwastaken.poked.json b/domains/_github-pages-challenge-pokedwastaken.poked.json index e3df4a54d..3048caadf 100644 --- a/domains/_github-pages-challenge-pokedwastaken.poked.json +++ b/domains/_github-pages-challenge-pokedwastaken.poked.json @@ -4,7 +4,7 @@ "email": "pokedwastaken@gmail.com", "discord": "poked" }, - "record": { + "records": { "TXT": "492698bed250302903bda08e024c89" } } diff --git a/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json index 6f78b4294..47087dbd9 100644 --- a/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json +++ b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json @@ -3,7 +3,7 @@ "username": "prakhillohiya", "email": "prakhillohiya@gmail.com" }, - "record": { + "records": { "TXT": "31f067f6796f63a3cb4e0110ff10df" } } diff --git a/domains/_github-pages-challenge-privacysecured.ps.json b/domains/_github-pages-challenge-privacysecured.ps.json index 1763ace11..b91905814 100644 --- a/domains/_github-pages-challenge-privacysecured.ps.json +++ b/domains/_github-pages-challenge-privacysecured.ps.json @@ -1,10 +1,9 @@ { "owner": { "username": "PrivacySecured", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ", "notes": "I rarely go on my emails. If I do its because I needed a verification code." }, - "record": { + "records": { "TXT": "620bc13d511697c02f9ca4f41179ea" } } diff --git a/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json b/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json index cb1d3a612..febc40cd9 100644 --- a/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json +++ b/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json @@ -3,7 +3,7 @@ "username": "proudmuslim-dev", "email": "proudmuslim-dev@protonmail.com" }, - "record": { + "records": { "TXT": "47cff427b2b6f1e86c38ea84e341f2" } } diff --git a/domains/_github-pages-challenge-prs96.pranavs.json b/domains/_github-pages-challenge-prs96.pranavs.json new file mode 100644 index 000000000..d53a0a5e6 --- /dev/null +++ b/domains/_github-pages-challenge-prs96.pranavs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Prs96", + "email": "pranavsudheesh34@gmail.com" + }, + "records": { + "TXT": "191a26c6879278f22117451ad5d91c" + } +} diff --git a/domains/_github-pages-challenge-qavv.qavv.json b/domains/_github-pages-challenge-qavv.qavv.json new file mode 100644 index 000000000..a800d35e3 --- /dev/null +++ b/domains/_github-pages-challenge-qavv.qavv.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "qavv" + }, + "records": { + "TXT": "88d0603bf399dde4dd55cd7313e1b2" + } +} diff --git a/domains/_github-pages-challenge-quiww.qui.json b/domains/_github-pages-challenge-quiww.qui.json index 32d93a106..9229b8199 100644 --- a/domains/_github-pages-challenge-quiww.qui.json +++ b/domains/_github-pages-challenge-quiww.qui.json @@ -3,7 +3,7 @@ "username": "quiww", "mastodon": "qui@bsd.cafe" }, - "record": { + "records": { "TXT": "88feaaecca94fbb634748f98c0c48e" } } diff --git a/domains/_github-pages-challenge-quvvii.quvi.json b/domains/_github-pages-challenge-quvvii.quvi.json index 88e036937..26e7313c3 100644 --- a/domains/_github-pages-challenge-quvvii.quvi.json +++ b/domains/_github-pages-challenge-quvvii.quvi.json @@ -3,7 +3,7 @@ "username": "quvvii", "email": "quvi.top@gmail.com" }, - "record": { + "records": { "TXT": "73689a256517432e99c181b07d0a83" } } diff --git a/domains/_github-pages-challenge-radioactivepotato.krunch.json b/domains/_github-pages-challenge-radioactivepotato.krunch.json index f8c99bf1d..da8f1ec03 100644 --- a/domains/_github-pages-challenge-radioactivepotato.krunch.json +++ b/domains/_github-pages-challenge-radioactivepotato.krunch.json @@ -1,9 +1,9 @@ { "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, - "record": { + "records": { "TXT": "05dc6febabf44f8decab35d01609ee" } } diff --git a/domains/_github-pages-challenge-ravikhokhar23.ravi.json b/domains/_github-pages-challenge-ravikhokhar23.ravi.json new file mode 100644 index 000000000..21d0584be --- /dev/null +++ b/domains/_github-pages-challenge-ravikhokhar23.ravi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ravikhokhar23", + "email": "khokhar.ravikumar@gmail.com" + }, + "records": { + "TXT": "48fae48f04aa23f0be9bb8b052c7d0" + } +} diff --git a/domains/_github-pages-challenge-razobeckett.mayurraut.json b/domains/_github-pages-challenge-razobeckett.mayurraut.json new file mode 100644 index 000000000..0af298a5c --- /dev/null +++ b/domains/_github-pages-challenge-razobeckett.mayurraut.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "razobeckett", + "email": "mayurraut.dev@gmail.com" + }, + "records": { + "TXT": "e104db834f904b13e65dd9337ae48e" + } +} diff --git a/domains/_github-pages-challenge-reuel-k.reuel.json b/domains/_github-pages-challenge-reuel-k.reuel.json index c4b7bbc18..aa7e37982 100644 --- a/domains/_github-pages-challenge-reuel-k.reuel.json +++ b/domains/_github-pages-challenge-reuel-k.reuel.json @@ -3,7 +3,7 @@ "username": "reuel-k", "email": "reuelk@protonmail.com" }, - "record": { + "records": { "TXT": "2a76de58b3d71c4918f07e57c92d5b" } } diff --git a/domains/_github-pages-challenge-revolutionisme.biplob.json b/domains/_github-pages-challenge-revolutionisme.biplob.json index c7fe01116..479e5314f 100644 --- a/domains/_github-pages-challenge-revolutionisme.biplob.json +++ b/domains/_github-pages-challenge-revolutionisme.biplob.json @@ -3,7 +3,7 @@ "username": "revolutionisme", "email": "revolutionisme@gmail.com" }, - "record": { + "records": { "TXT": "96bdd0268b2a0bb2c79eaeae1fd833" } } diff --git a/domains/_github-pages-challenge-riihime.riihime.json b/domains/_github-pages-challenge-riihime.riihime.json index ce529cd03..6c145f140 100644 --- a/domains/_github-pages-challenge-riihime.riihime.json +++ b/domains/_github-pages-challenge-riihime.riihime.json @@ -3,7 +3,7 @@ "username": "Riihime", "discord": "riihime" }, - "record": { + "records": { "TXT": "dbf468dcc12907dc90b485737f344a" } } diff --git a/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json deleted file mode 100644 index 844946459..000000000 --- a/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "riviox", - "email": "rivioxyt@hotmail.com" - }, - "record": { - "TXT": "15bce163359555d636e6bd2cc5903f" - } -} diff --git a/domains/_github-pages-challenge-riviox.riviox.json b/domains/_github-pages-challenge-riviox.riviox.json index 34f04eb04..7fe11bf0e 100644 --- a/domains/_github-pages-challenge-riviox.riviox.json +++ b/domains/_github-pages-challenge-riviox.riviox.json @@ -3,7 +3,7 @@ "username": "riviox", "email": "rivioxyt@hotmail.com" }, - "record": { + "records": { "TXT": "56a8f3f0363cd17d881a7380ede544" } } diff --git a/domains/_github-pages-challenge-rivioxgaming.riviox.json b/domains/_github-pages-challenge-rivioxgaming.riviox.json index ef31b36ee..a462f417d 100644 --- a/domains/_github-pages-challenge-rivioxgaming.riviox.json +++ b/domains/_github-pages-challenge-rivioxgaming.riviox.json @@ -3,7 +3,7 @@ "username": "riviox", "email": "rivioxyt@hotmail.com" }, - "record": { + "records": { "TXT": "2f2432d565a3e7e8f3a4577c0e4a90" } } diff --git a/domains/_github-pages-challenge-roadblockeddev.roadblocked.json b/domains/_github-pages-challenge-roadblockeddev.roadblocked.json index b2c794620..74c177317 100644 --- a/domains/_github-pages-challenge-roadblockeddev.roadblocked.json +++ b/domains/_github-pages-challenge-roadblockeddev.roadblocked.json @@ -3,7 +3,7 @@ "username": "roadblockeddev", "email": "roadblockeddevcontact@skiff.com" }, - "record": { + "records": { "TXT": "f255fd01482003b03f51e13141c132" } } diff --git a/domains/_github-pages-challenge-robinjesba.robin.json b/domains/_github-pages-challenge-robinjesba.robin.json new file mode 100644 index 000000000..92fb1bcdd --- /dev/null +++ b/domains/_github-pages-challenge-robinjesba.robin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RobinJesba", + "email": "jb.robinm@gmail.com" + }, + "records": { + "TXT": "eed44d532373578471a0fb245336c4" + } +} diff --git a/domains/_github-pages-challenge-roger-padrell.rpadrell.json b/domains/_github-pages-challenge-roger-padrell.rpadrell.json new file mode 100644 index 000000000..4ba32575b --- /dev/null +++ b/domains/_github-pages-challenge-roger-padrell.rpadrell.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roger-padrell", + "email": "padrell.roger@gmail.com" + }, + "records": { + "TXT": "814c8119eaa1cf941877c3cacea189" + } +} diff --git a/domains/_github-pages-challenge-roktim32.gitninja.json b/domains/_github-pages-challenge-roktim32.gitninja.json index d323d33ca..66d6e0e42 100644 --- a/domains/_github-pages-challenge-roktim32.gitninja.json +++ b/domains/_github-pages-challenge-roktim32.gitninja.json @@ -3,7 +3,7 @@ "username": "roktim32", "email": "roktimsenapoty2@gmail.com" }, - "record": { + "records": { "TXT": "d6e6727362997465d332f12898ad6b" } } diff --git a/domains/_github-pages-challenge-roktim32.roktim.json b/domains/_github-pages-challenge-roktim32.roktim.json index 6d183c603..1248538e4 100644 --- a/domains/_github-pages-challenge-roktim32.roktim.json +++ b/domains/_github-pages-challenge-roktim32.roktim.json @@ -3,7 +3,7 @@ "username": "roktim32", "email": "roktimsenapoty2@gmail.com" }, - "record": { + "records": { "TXT": "9870d553eddd629da2c41de6add304" } } diff --git a/domains/_github-pages-challenge-roktim32.yourdad.json b/domains/_github-pages-challenge-roktim32.yourdad.json index 7f8470e3f..5c7be008e 100644 --- a/domains/_github-pages-challenge-roktim32.yourdad.json +++ b/domains/_github-pages-challenge-roktim32.yourdad.json @@ -3,7 +3,7 @@ "username": "roktim32", "email": "roktimsenapoty2@gmail.com" }, - "record": { + "records": { "TXT": "f2a400f4d62cba7fa18b6c288f38b1" } } diff --git a/domains/_github-pages-challenge-romzyytv.romzyytv.json b/domains/_github-pages-challenge-romzyytv.romzyytv.json index 0f2c3d0ee..3a50cfc22 100644 --- a/domains/_github-pages-challenge-romzyytv.romzyytv.json +++ b/domains/_github-pages-challenge-romzyytv.romzyytv.json @@ -3,7 +3,7 @@ "username": "RomzyyTV", "email": "jesaisqpaspourquoi@gmail.com" }, - "record": { + "records": { "TXT": "09d37b4f10c58e217e89458dad3fef" } } diff --git a/domains/_github-pages-challenge-rouf0x.json b/domains/_github-pages-challenge-rouf0x.json deleted file mode 100644 index 16c8283a8..000000000 --- a/domains/_github-pages-challenge-rouf0x.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Rouf0x", - "email": "Gabrielruf.fr@gmail.com" - }, - "record": { - "TXT": "f01cd0a4cbac68efe6b87568776ad9" - } -} diff --git a/domains/_github-pages-challenge-rubinskiy.bob.json b/domains/_github-pages-challenge-rubinskiy.bob.json index a3dc297c9..bfd23f4f5 100644 --- a/domains/_github-pages-challenge-rubinskiy.bob.json +++ b/domains/_github-pages-challenge-rubinskiy.bob.json @@ -4,7 +4,7 @@ "discord": "rubinskiy#5258", "email": "roebebin@gmail.com" }, - "record": { + "records": { "TXT": "c3cc9a1718038c0034ac2b6d16f69e" } } diff --git a/domains/_github-pages-challenge-rudwolf.rodolfo.json b/domains/_github-pages-challenge-rudwolf.rodolfo.json new file mode 100644 index 000000000..81c0ddd82 --- /dev/null +++ b/domains/_github-pages-challenge-rudwolf.rodolfo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rudwolf", + "email": "rudwolf@gmail.com" + }, + "records": { + "TXT": "549d8e2eaf3753b07362c99c2eb240" + } +} diff --git a/domains/_github-pages-challenge-rushi0n.rushi.json b/domains/_github-pages-challenge-rushi0n.rushi.json index fd62108ce..9431e598a 100644 --- a/domains/_github-pages-challenge-rushi0n.rushi.json +++ b/domains/_github-pages-challenge-rushi0n.rushi.json @@ -3,7 +3,7 @@ "username": "rushi0n", "email": "rushikushare99@gmail.com" }, - "record": { + "records": { "TXT": "cfaabf5e62265f5c2f811c0b22efae" } } diff --git a/domains/_github-pages-challenge-rv178.rv178.json b/domains/_github-pages-challenge-rv178.rv178.json index ee9d3ee03..504ed4e78 100644 --- a/domains/_github-pages-challenge-rv178.rv178.json +++ b/domains/_github-pages-challenge-rv178.rv178.json @@ -3,7 +3,7 @@ "username": "rv178", "email": "idliyout@gmail.com" }, - "record": { + "records": { "TXT": "e90b3dc10573fa656898bbbf08108c" } } diff --git a/domains/_github-pages-challenge-rwithik.rwithik.json b/domains/_github-pages-challenge-rwithik.rwithik.json index 58d276f08..5f5251848 100644 --- a/domains/_github-pages-challenge-rwithik.rwithik.json +++ b/domains/_github-pages-challenge-rwithik.rwithik.json @@ -3,7 +3,7 @@ "username": "rwithik", "email": "rwithik@gmail.com" }, - "record": { + "records": { "TXT": "7a912f12f50a5cd49fc6148d672574" } } diff --git a/domains/_github-pages-challenge-s3mant.semant.json b/domains/_github-pages-challenge-s3mant.semant.json index 63eee66bc..21e660069 100644 --- a/domains/_github-pages-challenge-s3mant.semant.json +++ b/domains/_github-pages-challenge-s3mant.semant.json @@ -3,7 +3,7 @@ "username": "ihacksemant", "email": "contact@semant.is-a.dev" }, - "record": { + "records": { "TXT": "137038fe5e46e3f5a6859e5985b8fd" } } diff --git a/domains/_github-pages-challenge-saganaki22.drbaph.json b/domains/_github-pages-challenge-saganaki22.drbaph.json new file mode 100644 index 000000000..149c096fd --- /dev/null +++ b/domains/_github-pages-challenge-saganaki22.drbaph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saganaki22", + "email": "info@drbaph.dev" + }, + "records": { + "TXT": "5aa90f589281a20522ec58d7b8a739" + } +} diff --git a/domains/_github-pages-challenge-sajidshahriar72543.sajid.json b/domains/_github-pages-challenge-sajidshahriar72543.sajid.json new file mode 100644 index 000000000..036c08f36 --- /dev/null +++ b/domains/_github-pages-challenge-sajidshahriar72543.sajid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sajidshahriar72543", + "email": "sazidshahriar39@gmail.com" + }, + "records": { + "TXT": "d93567f4844049ce8f6ba59b0c42ab" + } +} diff --git a/domains/_github-pages-challenge-sanchay9.sanchay.json b/domains/_github-pages-challenge-sanchay9.sanchay.json index d93771c7a..273f573c5 100644 --- a/domains/_github-pages-challenge-sanchay9.sanchay.json +++ b/domains/_github-pages-challenge-sanchay9.sanchay.json @@ -3,7 +3,7 @@ "username": "sanchay9", "email": "sanchaykumar9@gmail.com" }, - "record": { + "records": { "TXT": "25bca04982f50f307259901d6f7688" } } diff --git a/domains/_github-pages-challenge-sandunmadhushan.sandun.json b/domains/_github-pages-challenge-sandunmadhushan.sandun.json new file mode 100644 index 000000000..0088b109e --- /dev/null +++ b/domains/_github-pages-challenge-sandunmadhushan.sandun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sandunMadhushan", + "email": "sandunhmadushan9330@gmail.com" + }, + "records": { + "TXT": "6f8cbcd17af6f3e277eb864f78cfeb" + } +} diff --git a/domains/_github-pages-challenge-sangeeth-606.sangeeth.json b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json new file mode 100644 index 000000000..5745d8f77 --- /dev/null +++ b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sangeeth-606", + "email": "sangeeth999123@gmail.com" + }, + "records": { + "TXT": "db86cdabc094732729851d093e4c47" + } +} diff --git a/domains/_github-pages-challenge-sc136.sc.json b/domains/_github-pages-challenge-sc136.sc.json index 2e5bc234a..c32dbe036 100644 --- a/domains/_github-pages-challenge-sc136.sc.json +++ b/domains/_github-pages-challenge-sc136.sc.json @@ -1,10 +1,9 @@ { "owner": { "username": "SC136", - "discord": "594504468931018752", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UsBPZMyJypoRJ7FHuSCetm8xsuHGYmsrg0OMKR4F9AmvsbyW-AJvr9B4JqiMH68KFStc5sUkGa-rFuTS-A6X-3B3rJYvEv3VCBvvex0YbIRglLyjInmb1A_fwGUbFBrRC5L3MIItoFP3ozHrw-FLDBb8TWcsuH9DGkpRwO5m8ciCyV7hG47ucBbUQ7IjZQKSxoKMKsn13L-8fG1UmYDrO0NZ20F6jvJE5B6hxyBu7J2wqRfYDNmJe-UUsw7bAF07x3vyop29kk3QeULJ34-fbxC_ORUjc2VJhup-aqOmZiQRVPisiTX6z-HILvVsl8pMpn2rWiB0enHxP4qkAWh8Mg.foeauPuiVIE2DPD0uV63_w.r6Bl0pgQn6r58gtYr0mPsEqtpUPWN9DtYswrItO0OsvqanlNFf4hRIf5vSQjFnfLK3BFfKQW1Jr9fNOyzxB21InBYsETZVgBmC1XBNTTaHo.ffvkZoLVZOcTmmeWmOyoEQ" + "discord": "594504468931018752" }, - "record": { + "records": { "TXT": "49195bdb90c44e0a7a76ae0e2a624d" } } diff --git a/domains/_github-pages-challenge-scythemediathedev.scythemedia.json b/domains/_github-pages-challenge-scythemediathedev.scythemedia.json index 53ad119dd..a33c47b8d 100644 --- a/domains/_github-pages-challenge-scythemediathedev.scythemedia.json +++ b/domains/_github-pages-challenge-scythemediathedev.scythemedia.json @@ -3,7 +3,7 @@ "username": "ScytheMediaTheDev", "email": "tswartz22@aol.com" }, - "record": { + "records": { "TXT": "46b3d088175cbb38e9c4b3b81cdb4b" } } diff --git a/domains/_github-pages-challenge-sekharmalla.chandra.json b/domains/_github-pages-challenge-sekharmalla.chandra.json index fd0020367..19a23ec0a 100644 --- a/domains/_github-pages-challenge-sekharmalla.chandra.json +++ b/domains/_github-pages-challenge-sekharmalla.chandra.json @@ -3,7 +3,7 @@ "username": "sekharmalla", "email": "sekharmalla.vfx@gmail.com" }, - "record": { + "records": { "TXT": "11ecb44a01a667c78ba76d704d9fc5" } } diff --git a/domains/_github-pages-challenge-sepultrex.sep.json b/domains/_github-pages-challenge-sepultrex.sep.json new file mode 100644 index 000000000..0d273419b --- /dev/null +++ b/domains/_github-pages-challenge-sepultrex.sep.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "sepultrex" + }, + "records": { + "TXT": "9d48d99c569b77b148651f4052b25f" + } +} diff --git a/domains/_github-pages-challenge-seriaati.seria.json b/domains/_github-pages-challenge-seriaati.seria.json index ab4af411d..9e5f4a770 100644 --- a/domains/_github-pages-challenge-seriaati.seria.json +++ b/domains/_github-pages-challenge-seriaati.seria.json @@ -3,7 +3,7 @@ "username": "seriaati", "email": "seria.ati@gmail.com" }, - "record": { + "records": { "TXT": "2b63f16e0af54ee011fd27e02091a0" } } diff --git a/domains/_github-pages-challenge-sh770.sh770.json b/domains/_github-pages-challenge-sh770.sh770.json new file mode 100644 index 000000000..202e31c2b --- /dev/null +++ b/domains/_github-pages-challenge-sh770.sh770.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sh770", + "email": "sh770h@gmail.com" + }, + "records": { + "TXT": "ece6eb427012a2050ec0a76cf9c7a6" + } +} diff --git a/domains/_github-pages-challenge-sharkaboi.sarath.json b/domains/_github-pages-challenge-sharkaboi.sarath.json index 06146e3f1..d8def89f4 100644 --- a/domains/_github-pages-challenge-sharkaboi.sarath.json +++ b/domains/_github-pages-challenge-sharkaboi.sarath.json @@ -3,7 +3,7 @@ "username": "Sharkaboi", "email": "sarathsedu@gmail.com" }, - "record": { + "records": { "TXT": "9cc661fc83c313e055250b32fedfac" } } diff --git a/domains/_github-pages-challenge-shaunak-pandya.shaunak.json b/domains/_github-pages-challenge-shaunak-pandya.shaunak.json index 76e432573..f2d86fccf 100644 --- a/domains/_github-pages-challenge-shaunak-pandya.shaunak.json +++ b/domains/_github-pages-challenge-shaunak-pandya.shaunak.json @@ -4,7 +4,7 @@ "username": "Shaunak-Pandya", "email": "shaunak.n.pandya@gmail.com" }, - "record": { + "records": { "TXT": "c5b15a4e5d620c286cd1a5dd937560" } } diff --git a/domains/_github-pages-challenge-shaunfurtado.blog.shaunfurtado.json b/domains/_github-pages-challenge-shaunfurtado.blog.shaunfurtado.json index 1776a907a..f40d5b0a9 100644 --- a/domains/_github-pages-challenge-shaunfurtado.blog.shaunfurtado.json +++ b/domains/_github-pages-challenge-shaunfurtado.blog.shaunfurtado.json @@ -4,7 +4,7 @@ "username": "Shaunfurtado", "email": "shaunf1801@gmail.com" }, - "record": { + "records": { "TXT": "08ce2f232e7028cbeb1a6baf8c8e49" } } diff --git a/domains/_github-pages-challenge-shays24.shays.json b/domains/_github-pages-challenge-shays24.shays.json index 4e6f78c3f..ebad9d563 100644 --- a/domains/_github-pages-challenge-shays24.shays.json +++ b/domains/_github-pages-challenge-shays24.shays.json @@ -3,7 +3,7 @@ "username": "SHays24", "email": "shays24@student.sacs.nsw.edu.au" }, - "record": { + "records": { "TXT": "16d1b82e4e76d05a0301fbf7a80f9b" } } diff --git a/domains/_github-pages-challenge-shinyzenith.aakash.json b/domains/_github-pages-challenge-shinyzenith.aakash.json index 7fbd1f953..797aaa92f 100644 --- a/domains/_github-pages-challenge-shinyzenith.aakash.json +++ b/domains/_github-pages-challenge-shinyzenith.aakash.json @@ -3,7 +3,7 @@ "username": "Shinyzenith", "email": "aakashsensharma@gmail.com" }, - "record": { + "records": { "TXT": "6f217d98c6a92f084c092bab59d8b1" } } diff --git a/domains/_github-pages-challenge-shorecn.cs.json b/domains/_github-pages-challenge-shorecn.cs.json index 319730a93..8530d7a67 100644 --- a/domains/_github-pages-challenge-shorecn.cs.json +++ b/domains/_github-pages-challenge-shorecn.cs.json @@ -3,7 +3,7 @@ "username": "ShoreCN", "email": "c.shore.cn@gmail.com" }, - "record": { + "records": { "TXT": "d4e6cbb56d440ddedd7bf5079b0d81" } } diff --git a/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json b/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json index 99165a8f8..9e1a0edd9 100644 --- a/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json +++ b/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json @@ -5,7 +5,7 @@ "username": "Shreyas-ITB", "email": "shreyasbrillint@gmail.com" }, - "record": { + "records": { "TXT": "737cf4521bb4d1c2a7530ce67a8304" } } diff --git a/domains/_github-pages-challenge-shukraditya.shukraditya.json b/domains/_github-pages-challenge-shukraditya.shukraditya.json new file mode 100644 index 000000000..ebe356a59 --- /dev/null +++ b/domains/_github-pages-challenge-shukraditya.shukraditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shukraditya", + "email": "shukra12bose@gmail.com" + }, + "records": { + "TXT": "617d0b9d13126957daf657d7396ec2" + } +} diff --git a/domains/_github-pages-challenge-shymega.shymega.json b/domains/_github-pages-challenge-shymega.shymega.json index ebda0f2f6..f2c7d0095 100644 --- a/domains/_github-pages-challenge-shymega.shymega.json +++ b/domains/_github-pages-challenge-shymega.shymega.json @@ -3,7 +3,7 @@ "username": "shymega", "email": "shymega@shymega.org.uk" }, - "record": { + "records": { "TXT": "83c50be1b56ddbe89e971e9f77aa0b" } } diff --git a/domains/_github-pages-challenge-siddhant385.sid385.json b/domains/_github-pages-challenge-siddhant385.sid385.json new file mode 100644 index 000000000..9c864e6f4 --- /dev/null +++ b/domains/_github-pages-challenge-siddhant385.sid385.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siddhant385", + "email": "ssiddhant.ssharma@gmail.com" + }, + "records": { + "TXT": "7ab62ad1edbe21138f130dba9bc89b" + } +} diff --git a/domains/_github-pages-challenge-sidhant947.sidhant.json b/domains/_github-pages-challenge-sidhant947.sidhant.json new file mode 100644 index 000000000..ae5d28618 --- /dev/null +++ b/domains/_github-pages-challenge-sidhant947.sidhant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sidhant947", + "email": "khatkarsidhant@gmail.com" + }, + "records": { + "TXT": "6c4f29a8923a09d9e9c36a95669015" + } +} diff --git a/domains/_github-pages-challenge-sife-shuo.sife.json b/domains/_github-pages-challenge-sife-shuo.sife.json index 9880d9229..eb90d136a 100644 --- a/domains/_github-pages-challenge-sife-shuo.sife.json +++ b/domains/_github-pages-challenge-sife-shuo.sife.json @@ -3,7 +3,7 @@ "username": "Sife-shuo", "email": "sifed@qq.com" }, - "record": { + "records": { "TXT": "35bbdb5b21b0f5706786ea4bc01002" } } diff --git a/domains/_github-pages-challenge-skandabhairava.terroid.json b/domains/_github-pages-challenge-skandabhairava.terroid.json index ab5c579c1..d7b19e48c 100644 --- a/domains/_github-pages-challenge-skandabhairava.terroid.json +++ b/domains/_github-pages-challenge-skandabhairava.terroid.json @@ -3,7 +3,7 @@ "username": "skandabhairava", "email": "skandabhairava@gmail.com" }, - "record": { + "records": { "TXT": "73004005801e8467de8a643a7c1cf8" } } diff --git a/domains/_github-pages-challenge-skyexplorewastaken.sewt.json b/domains/_github-pages-challenge-skyexplorewastaken.sewt.json index 7382773d6..1b4259156 100644 --- a/domains/_github-pages-challenge-skyexplorewastaken.sewt.json +++ b/domains/_github-pages-challenge-skyexplorewastaken.sewt.json @@ -1,10 +1,9 @@ { "owner": { "username": "SkyExploreWasTaken", - "discord": "1049263707177353247", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + "discord": "1049263707177353247" }, - "record": { + "records": { "TXT": "6db7bbc1e3f533f3dad4925751cdc7" } } diff --git a/domains/_github-pages-challenge-sneh-al.snehal.json b/domains/_github-pages-challenge-sneh-al.snehal.json new file mode 100644 index 000000000..00309caa6 --- /dev/null +++ b/domains/_github-pages-challenge-sneh-al.snehal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneh-al", + "email": "snehal1380@gmail.com" + }, + "records": { + "TXT": "c0b50465868652285e959813c2b5c9" + } +} diff --git a/domains/_github-pages-challenge-socketlike.evie.json b/domains/_github-pages-challenge-socketlike.evie.json index 08df47490..0a8e3cbbd 100644 --- a/domains/_github-pages-challenge-socketlike.evie.json +++ b/domains/_github-pages-challenge-socketlike.evie.json @@ -4,7 +4,7 @@ "discordId": "285329659023851520", "discord": "encyclopedic" }, - "record": { + "records": { "TXT": "351773beb3717122300722aeb5d1ac" } } diff --git a/domains/_github-pages-challenge-sohrubh.saurabh.json b/domains/_github-pages-challenge-sohrubh.saurabh.json index 27a5f3b0f..a72dc89ce 100644 --- a/domains/_github-pages-challenge-sohrubh.saurabh.json +++ b/domains/_github-pages-challenge-sohrubh.saurabh.json @@ -3,7 +3,7 @@ "username": "sohrubh", "email": "saurabhyadav5931@gmail.com" }, - "record": { + "records": { "TXT": "0c51849fbc5921380ddc445251597b" } } diff --git a/domains/_github-pages-challenge-soymadip.soymadip.json b/domains/_github-pages-challenge-soymadip.soymadip.json new file mode 100644 index 000000000..98af603ad --- /dev/null +++ b/domains/_github-pages-challenge-soymadip.soymadip.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "soymadip", + "email": "soumadip@zohomail.in" + }, + "records": { + "TXT": "5d04ea047efd00f6377e5ad12bb373" + } +} diff --git a/domains/_github-pages-challenge-spaxly.spaxly.json b/domains/_github-pages-challenge-spaxly.spaxly.json index 5bc8c142f..dab4493ce 100644 --- a/domains/_github-pages-challenge-spaxly.spaxly.json +++ b/domains/_github-pages-challenge-spaxly.spaxly.json @@ -3,7 +3,7 @@ "username": "Spaxly", "email": "ohmrc2545@gmail.com" }, - "record": { + "records": { "TXT": "94c657ca404ce17483065583db2e61" } } diff --git a/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json b/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json new file mode 100644 index 000000000..a27017568 --- /dev/null +++ b/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SpreadSheets600", + "email": "sohammaity006@gmail.com" + }, + "records": { + "TXT": "b1bfc537d107d9e43ad2afd111fe3d" + } +} diff --git a/domains/_github-pages-challenge-squairdev.squair.json b/domains/_github-pages-challenge-squairdev.squair.json new file mode 100644 index 000000000..933f616e9 --- /dev/null +++ b/domains/_github-pages-challenge-squairdev.squair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "squairdev", + "email": "squairyt@gmail.com" + }, + "records": { + "TXT": "ba54cb9cae1e4213228abf2e39cbb0" + } +} diff --git a/domains/_github-pages-challenge-stacksyz.stacksyz.json b/domains/_github-pages-challenge-stacksyz.stacksyz.json index 6d6de7983..084fd8472 100644 --- a/domains/_github-pages-challenge-stacksyz.stacksyz.json +++ b/domains/_github-pages-challenge-stacksyz.stacksyz.json @@ -3,7 +3,7 @@ "username": "Stacksyz", "email": "thedevmonke@gmail.com" }, - "record": { + "records": { "TXT": "121e8450b6aa5b9edbe73dd077ca57" } } diff --git a/domains/_github-pages-challenge-stardust-kyun.star.json b/domains/_github-pages-challenge-stardust-kyun.star.json index e8f7d2b11..7da604477 100644 --- a/domains/_github-pages-challenge-stardust-kyun.star.json +++ b/domains/_github-pages-challenge-stardust-kyun.star.json @@ -3,7 +3,7 @@ "username": "stardust-kyun", "email": "stardust-kyun@proton.me" }, - "record": { + "records": { "TXT": "714f8a049247726086dbea6777c092" } } diff --git a/domains/_github-pages-challenge-stef-00012.gbot.json b/domains/_github-pages-challenge-stef-00012.gbot.json index 48988e6c2..7b49ba03a 100644 --- a/domains/_github-pages-challenge-stef-00012.gbot.json +++ b/domains/_github-pages-challenge-stef-00012.gbot.json @@ -1,10 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { + "records": { "TXT": ["7d2f026325a7a6b08efdb7c6031370"] } } diff --git a/domains/_github-pages-challenge-stef-00012.receiptify.json b/domains/_github-pages-challenge-stef-00012.receiptify.json index a75a3ff08..c7d0f1956 100644 --- a/domains/_github-pages-challenge-stef-00012.receiptify.json +++ b/domains/_github-pages-challenge-stef-00012.receiptify.json @@ -1,10 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { + "records": { "TXT": ["bd419a0cfdcbf998e7de1e486cbb4c"] } } diff --git a/domains/_github-pages-challenge-studiousgamer.natya.json b/domains/_github-pages-challenge-studiousgamer.natya.json index f5c5a845b..405494f20 100644 --- a/domains/_github-pages-challenge-studiousgamer.natya.json +++ b/domains/_github-pages-challenge-studiousgamer.natya.json @@ -3,7 +3,7 @@ "username": "studiousgamer", "email": "natyavidhanbiswas10@gmail.com" }, - "record": { + "records": { "TXT": "4bab75757c1cd0f3fc332eadf5e1a9" } } diff --git a/domains/_github-pages-challenge-suhasdissa.suhasdissa.json b/domains/_github-pages-challenge-suhasdissa.suhasdissa.json index 4b7380b81..52d9cbecb 100644 --- a/domains/_github-pages-challenge-suhasdissa.suhasdissa.json +++ b/domains/_github-pages-challenge-suhasdissa.suhasdissa.json @@ -3,7 +3,7 @@ "username": "SuhasDissa", "email": "suhasdissa@gmail.com" }, - "record": { + "records": { "TXT": "50e98ca19e56d314f4ab5b37d19d4b" } } diff --git a/domains/_github-pages-challenge-surv-is-a-dev.surv.json b/domains/_github-pages-challenge-surv-is-a-dev.surv.json index ea54e5331..dc74a806a 100644 --- a/domains/_github-pages-challenge-surv-is-a-dev.surv.json +++ b/domains/_github-pages-challenge-surv-is-a-dev.surv.json @@ -3,7 +3,7 @@ "username": "yuri-kiss", "email": "a_2oo@outlook.com" }, - "record": { + "records": { "TXT": "762ac4818881ad8a0420c077a2ab99" } } diff --git a/domains/_github-pages-challenge-suryanarayanrenjith.surya.json b/domains/_github-pages-challenge-suryanarayanrenjith.surya.json index 5844c2edc..0ef7576cc 100644 --- a/domains/_github-pages-challenge-suryanarayanrenjith.surya.json +++ b/domains/_github-pages-challenge-suryanarayanrenjith.surya.json @@ -3,7 +3,7 @@ "username": "suryanarayanrenjith", "email": "suryanarayanrenjith@outlook.com" }, - "record": { + "records": { "TXT": "2c563764487945f6157ee1c82e15d6" } } diff --git a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json index 89efda2a5..df9dcb79e 100644 --- a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json +++ b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json @@ -3,7 +3,7 @@ "username": "sxurabh", "email": "saurabhkirve@gmail.com" }, - "record": { + "records": { "TXT": "e587577c97f73d2047aaf6ec8ff92c" } } diff --git a/domains/_github-pages-challenge-syahiramali.syahiramali.json b/domains/_github-pages-challenge-syahiramali.syahiramali.json index 3c2af2f09..4b362332b 100644 --- a/domains/_github-pages-challenge-syahiramali.syahiramali.json +++ b/domains/_github-pages-challenge-syahiramali.syahiramali.json @@ -3,7 +3,7 @@ "username": "syahirAmali", "email": "syahirAmali@gmail.com" }, - "record": { + "records": { "TXT": "f6c381205b87390aaf3c1eaebc9023" } } diff --git a/domains/_github-pages-challenge-t-dynamos.anshdadwal.json b/domains/_github-pages-challenge-t-dynamos.anshdadwal.json index 1e5f433c4..e9ae0a8ac 100644 --- a/domains/_github-pages-challenge-t-dynamos.anshdadwal.json +++ b/domains/_github-pages-challenge-t-dynamos.anshdadwal.json @@ -3,7 +3,7 @@ "username": "T-Dynamos", "email": "anshdadwal298@gmail.com" }, - "record": { + "records": { "TXT": "75957defcd9e7e37ed359579a7dc2b" } } diff --git a/domains/_github-pages-challenge-takase1121.takase.json b/domains/_github-pages-challenge-takase1121.takase.json index 4bee63c79..7295e87d2 100644 --- a/domains/_github-pages-challenge-takase1121.takase.json +++ b/domains/_github-pages-challenge-takase1121.takase.json @@ -3,7 +3,7 @@ "username": "takase1121", "email": "takase1121@proton.me" }, - "record": { + "records": { "TXT": "f735d72a61c58977384c6f13305387" } } diff --git a/domains/_github-pages-challenge-talinthedev.talinsharma.json b/domains/_github-pages-challenge-talinthedev.talinsharma.json index c7e5b19b5..4de64f9ad 100644 --- a/domains/_github-pages-challenge-talinthedev.talinsharma.json +++ b/domains/_github-pages-challenge-talinthedev.talinsharma.json @@ -3,7 +3,7 @@ "username": "TalinTheDev", "email": "talinsharma.dev@gmail.com" }, - "record": { + "records": { "TXT": "2f1f6ebe67567dd216878b0619f465" } } diff --git a/domains/_github-pages-challenge-tayrp.tay.json b/domains/_github-pages-challenge-tayrp.tay.json index e7a02c16c..fc6f2ee83 100644 --- a/domains/_github-pages-challenge-tayrp.tay.json +++ b/domains/_github-pages-challenge-tayrp.tay.json @@ -4,7 +4,7 @@ "email": "mystixmew@gmail.com", "discord": "1050531216589332581" }, - "record": { + "records": { "TXT": "360bbac0c42cd6beedbe67a62c8da5" } } diff --git a/domains/_github-pages-challenge-tayrp.tee.json b/domains/_github-pages-challenge-tayrp.tee.json index 457a6d4db..5424ebbea 100644 --- a/domains/_github-pages-challenge-tayrp.tee.json +++ b/domains/_github-pages-challenge-tayrp.tee.json @@ -4,7 +4,7 @@ "email": "mystixmew@gmail.com", "discord": "1050531216589332581" }, - "record": { + "records": { "TXT": "d255c6b97eabe6a65415232f8bdf4b" } } diff --git a/domains/_github-pages-challenge-tclement0922.tclement0922.json b/domains/_github-pages-challenge-tclement0922.tclement0922.json index 895a32409..c650b1f71 100644 --- a/domains/_github-pages-challenge-tclement0922.tclement0922.json +++ b/domains/_github-pages-challenge-tclement0922.tclement0922.json @@ -3,7 +3,7 @@ "username": "tclement0922", "email": "thibault.clement09@gmail.com" }, - "record": { + "records": { "TXT": "9e402ea7933ed1c8da4935e5454fac" } } diff --git a/domains/_github-pages-challenge-technohacker.technohacker.json b/domains/_github-pages-challenge-technohacker.technohacker.json index 409233497..d2d8f4b7a 100644 --- a/domains/_github-pages-challenge-technohacker.technohacker.json +++ b/domains/_github-pages-challenge-technohacker.technohacker.json @@ -3,7 +3,7 @@ "username": "Technohacker", "email": "technohacker1995@gmail.com" }, - "record": { + "records": { "TXT": "5ad5e489ef3611f4d9a1b21f248218" } } diff --git a/domains/_github-pages-challenge-techpixel.tech.json b/domains/_github-pages-challenge-techpixel.tech.json index 80c1ac9d2..1ee815373 100644 --- a/domains/_github-pages-challenge-techpixel.tech.json +++ b/domains/_github-pages-challenge-techpixel.tech.json @@ -3,7 +3,7 @@ "username": "techpixel", "email": "manitejb@outlook.com" }, - "record": { + "records": { "TXT": "123a1eec949122d5708325108c81b2" } } diff --git a/domains/_github-pages-challenge-testbot-github.mathiscool.json b/domains/_github-pages-challenge-testbot-github.mathiscool.json index c2dfb573d..43a3149d5 100644 --- a/domains/_github-pages-challenge-testbot-github.mathiscool.json +++ b/domains/_github-pages-challenge-testbot-github.mathiscool.json @@ -3,7 +3,7 @@ "username": "testbot-github", "email": "songboosterz.yt@gmail.com" }, - "record": { + "records": { "TXT": "9c350d66193d49dec4cb05b15d387b" } } diff --git a/domains/_github-pages-challenge-th3-c0der.th3.json b/domains/_github-pages-challenge-th3-c0der.th3.json index 217b2c892..d2b83aa86 100644 --- a/domains/_github-pages-challenge-th3-c0der.th3.json +++ b/domains/_github-pages-challenge-th3-c0der.th3.json @@ -3,7 +3,7 @@ "username": "Th3-C0der", "email": "Th3Drag8N@proton.me" }, - "record": { + "records": { "TXT": "5eb5141d4526c7035a1a9e1613b3d6" } } diff --git a/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json index 9334e6e7b..a41666cc1 100644 --- a/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json +++ b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json @@ -3,7 +3,7 @@ "username": "TheHackerDude1083", "email": "TheHackerDude1083@proton.me" }, - "record": { + "records": { "TXT": "66bceec5d092b15c1fcac188b02903" } } diff --git a/domains/_github-pages-challenge-thehatkid.hatkid.json b/domains/_github-pages-challenge-thehatkid.hatkid.json index b23120824..db4e90080 100644 --- a/domains/_github-pages-challenge-thehatkid.hatkid.json +++ b/domains/_github-pages-challenge-thehatkid.hatkid.json @@ -3,7 +3,7 @@ "username": "thehatkid", "email": "saha22023@gmail.com" }, - "record": { + "records": { "TXT": "20405c421d70798fcddcbe0bb3d06d" } } diff --git a/domains/_github-pages-challenge-thenoppy12.thenoppy12.json b/domains/_github-pages-challenge-thenoppy12.thenoppy12.json index 816ddcdd9..bb9386b8e 100644 --- a/domains/_github-pages-challenge-thenoppy12.thenoppy12.json +++ b/domains/_github-pages-challenge-thenoppy12.thenoppy12.json @@ -6,7 +6,7 @@ "email": "lengochuykiengiang@gmail.com", "discord": ".thenoppy12" }, - "record": { + "records": { "TXT": "b41e7f365072dbb42ed1ee40c250db" } } diff --git a/domains/_github-pages-challenge-theoldzoom.zoom.json b/domains/_github-pages-challenge-theoldzoom.zoom.json index bf25ddd7b..8188fef1d 100644 --- a/domains/_github-pages-challenge-theoldzoom.zoom.json +++ b/domains/_github-pages-challenge-theoldzoom.zoom.json @@ -5,7 +5,7 @@ "twitter": "theoldzoom", "discord": "theoldzoom" }, - "record": { + "records": { "TXT": "617b3a42e42c46cb26aef97305fd8e" } } diff --git a/domains/_github-pages-challenge-therealcrazyfuy.abeja.json b/domains/_github-pages-challenge-therealcrazyfuy.abeja.json new file mode 100644 index 000000000..1274dacec --- /dev/null +++ b/domains/_github-pages-challenge-therealcrazyfuy.abeja.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheRealCrazyfuy", + "discord": "realabeja", + "reddit": "crazyfuy" + }, + "records": { + "TXT": "57fda717044e3715b197fe293216f9" + } +} diff --git a/domains/_github-pages-challenge-therookiecoder.therookiecoder.json b/domains/_github-pages-challenge-therookiecoder.therookiecoder.json new file mode 100644 index 000000000..7ab699ded --- /dev/null +++ b/domains/_github-pages-challenge-therookiecoder.therookiecoder.json @@ -0,0 +1,12 @@ +{ + "description": "GitHub domain verification for my personal website", + "repo": "https://github.com/theRookieCoder/theRookieCoder.github.io", + "owner": { + "username": "theRookieCoder", + "email": "ileshkt@gmail.com", + "discord": "therookiecoder" + }, + "records": { + "TXT": "11a49aa635c8bc15e62134fbd34a46" + } +} diff --git a/domains/_github-pages-challenge-thesanju.thesanju.json b/domains/_github-pages-challenge-thesanju.thesanju.json index a7a2e7c69..beed0874b 100644 --- a/domains/_github-pages-challenge-thesanju.thesanju.json +++ b/domains/_github-pages-challenge-thesanju.thesanju.json @@ -3,7 +3,7 @@ "username": "thesanju", "email": "sanjayjr1official@gmail.com" }, - "record": { + "records": { "TXT": "1ef563891d9e0572cd59f4a3e80b42" } } diff --git a/domains/_github-pages-challenge-thesct22.sharath.json b/domains/_github-pages-challenge-thesct22.sharath.json index 95249d979..fb0cf53f0 100644 --- a/domains/_github-pages-challenge-thesct22.sharath.json +++ b/domains/_github-pages-challenge-thesct22.sharath.json @@ -3,7 +3,7 @@ "username": "thesct22", "email": "sharathct22@gmail.com" }, - "record": { + "records": { "TXT": "1cfa8b70882ea9cdf466e7b40dbe81" } } diff --git a/domains/_github-pages-challenge-thewonglife.thewonglife.json b/domains/_github-pages-challenge-thewonglife.thewonglife.json index 7e2626680..76c78b909 100644 --- a/domains/_github-pages-challenge-thewonglife.thewonglife.json +++ b/domains/_github-pages-challenge-thewonglife.thewonglife.json @@ -3,7 +3,7 @@ "username": "TheWongLife", "email": "nwong27@illinois.edu" }, - "record": { + "records": { "TXT": "eab75ad7eaab8f055c0d350cb1d28e" } } diff --git a/domains/_github-pages-challenge-thisisthamizh.thamizh.json b/domains/_github-pages-challenge-thisisthamizh.thamizh.json index 0cfcb2579..bdb92ab5a 100644 --- a/domains/_github-pages-challenge-thisisthamizh.thamizh.json +++ b/domains/_github-pages-challenge-thisisthamizh.thamizh.json @@ -3,7 +3,7 @@ "username": "ThisisThamizh", "email": "venthank88@gmail.com" }, - "record": { + "records": { "TXT": "55f7385e475bf5148e262bf6a07289" } } diff --git a/domains/_github-pages-challenge-thl007.foyet.json b/domains/_github-pages-challenge-thl007.foyet.json new file mode 100644 index 000000000..e417bbfaa --- /dev/null +++ b/domains/_github-pages-challenge-thl007.foyet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thl007", + "email": "thl7.de@gmail.com" + }, + "records": { + "TXT": "d5d33e7eb5318920ea43ce39b072d8" + } +} diff --git a/domains/_github-pages-challenge-thorito.thorito.json b/domains/_github-pages-challenge-thorito.thorito.json new file mode 100644 index 000000000..443c5afad --- /dev/null +++ b/domains/_github-pages-challenge-thorito.thorito.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thorito", + "email": "victor.villar.misa@gmail.com" + }, + "records": { + "TXT": "900d61c3e5e63880bf2f15832064bc" + } +} diff --git a/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json b/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json index a0971a4cb..1beabc379 100644 --- a/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json +++ b/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json @@ -3,7 +3,7 @@ "username": "thou-mayest", "twitter": "Dr_whoami_" }, - "record": { + "records": { "TXT": "8c76c4245faa447e805828e24f3743" } } diff --git a/domains/_github-pages-challenge-thunder-coding.cd.json b/domains/_github-pages-challenge-thunder-coding.cd.json index 572d11aa2..9a4034d1b 100644 --- a/domains/_github-pages-challenge-thunder-coding.cd.json +++ b/domains/_github-pages-challenge-thunder-coding.cd.json @@ -4,7 +4,7 @@ "email": "yakshbari4@gmail.com", "discord": "codingthunder" }, - "record": { + "records": { "TXT": "f56bab0740238435ae2bfe3a7d9283" } } diff --git a/domains/_github-pages-challenge-tim-vdb.tim-vdb.json b/domains/_github-pages-challenge-tim-vdb.tim-vdb.json new file mode 100644 index 000000000..b36702c24 --- /dev/null +++ b/domains/_github-pages-challenge-tim-vdb.tim-vdb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tim-vdb", + "email": "timotheevdbosch@gmail.com" + }, + "records": { + "TXT": "ccd9ff03f723b201d75c2ae79c3245" + } +} diff --git a/domains/_github-pages-challenge-timi2506.timi2506.json b/domains/_github-pages-challenge-timi2506.timi2506.json new file mode 100644 index 000000000..c1698e425 --- /dev/null +++ b/domains/_github-pages-challenge-timi2506.timi2506.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "timi2506", + "email": "tim@glos-omu.uk" + }, + "records": { + "TXT": "592f4627c522780ea398a91a6c1d59" + } +} diff --git a/domains/_github-pages-challenge-totalolage.filip.json b/domains/_github-pages-challenge-totalolage.filip.json new file mode 100644 index 000000000..0b64271a9 --- /dev/null +++ b/domains/_github-pages-challenge-totalolage.filip.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "totalolage", + "email": "filip@kalny.net" + }, + "records": { + "TXT": "7023b937e5e580da1a941ec57734df" + } +} diff --git a/domains/_github-pages-challenge-toxocious.toxocious.json b/domains/_github-pages-challenge-toxocious.toxocious.json index e08d2c0e0..44e14e3e4 100644 --- a/domains/_github-pages-challenge-toxocious.toxocious.json +++ b/domains/_github-pages-challenge-toxocious.toxocious.json @@ -3,7 +3,7 @@ "username": "toxocious", "email": "toxocious@gmail.com" }, - "record": { + "records": { "TXT": "d6440f69b31a9769f46475a3bfd91a" } } diff --git a/domains/_github-pages-challenge-true1ann.ann.json b/domains/_github-pages-challenge-true1ann.ann.json index ed3bacfbf..b9037f9d0 100644 --- a/domains/_github-pages-challenge-true1ann.ann.json +++ b/domains/_github-pages-challenge-true1ann.ann.json @@ -3,7 +3,7 @@ "username": "true1ann", "email": "true1ann@tutamail.com" }, - "record": { + "records": { "TXT": "9907c95c8764b5b6ddfa33bfe5486e" } } diff --git a/domains/_github-pages-challenge-turquoisetnt.tnt.json b/domains/_github-pages-challenge-turquoisetnt.tnt.json index c5e01ce24..85232946b 100644 --- a/domains/_github-pages-challenge-turquoisetnt.tnt.json +++ b/domains/_github-pages-challenge-turquoisetnt.tnt.json @@ -3,7 +3,7 @@ "username": "SebTNT", "email": "turquoisetntmultimedia@gmail.com" }, - "record": { + "records": { "TXT": "a70919bec5e292800f53b8bd87da03" } } diff --git a/domains/_github-pages-challenge-turvenuija1.turvenuija.json b/domains/_github-pages-challenge-turvenuija1.turvenuija.json index c56dbfa78..7341b10e1 100644 --- a/domains/_github-pages-challenge-turvenuija1.turvenuija.json +++ b/domains/_github-pages-challenge-turvenuija1.turvenuija.json @@ -3,7 +3,7 @@ "username": "turvenuija1", "email": "4209@lattahattu.fi" }, - "record": { + "records": { "TXT": "91c902200720c9032d320f25ae736c" } } diff --git a/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json new file mode 100644 index 000000000..442d2966c --- /dev/null +++ b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UnidentifiedX", + "email": "sunzizhuo33@gmail.com" + }, + "records": { + "TXT": "82c071e58d59a58ca0ac52f3240f65" + } +} diff --git a/domains/_github-pages-challenge-userandaname.zayaanar.json b/domains/_github-pages-challenge-userandaname.zayaanar.json index 100504cb8..205c1045a 100644 --- a/domains/_github-pages-challenge-userandaname.zayaanar.json +++ b/domains/_github-pages-challenge-userandaname.zayaanar.json @@ -1,10 +1,9 @@ { "owner": { "username": "userandaname", - "discord": "823939421686071386", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a62ohGnPWnZcxwliAblMFZoEcnjztiOXGJrf3viuLFutyG5cwvSgEFmeYQAiODGndCak3XXgSJwLyFiS-HIsLWG6ViBhu9A48zkUMTv6IHO7OUFE9kNiGIqhp3S8h8lhaaxA3zW_OuOIQBoLFJnL0RqQgOd2QC6P-v1Fm6Aab3HMCGYN5tNwk1Jpl5vwisxnCG-PDUWrrgJ8PbMGRUa2Sa5qvFOJK0LML3yDqKOlFUGs9XmBcbTMc2KVdGjAm0F8l1w0WRDyx15hNFu_ppB7yaIS91o7iJS-g-ViSWf3-Hj0gCyUl1sHPQi3-2IE5GaNtfqVLQGNC2Kh6NBAkRRT7g.09Llm3K10Q7Tl3ceKAy76g.6NdcyRztDAFkqDFs5CWyaShozcshoMQ2qq1p7D8wQTG6O8shr8lbczRgMQZhgvzrq7u1g6HMQnW8bQdDdn2Mb1Jj3_qcHXnCUub6exAZONY.0ZXI8zVi0kGV0Qm7uvJOrA" + "discord": "823939421686071386" }, - "record": { + "records": { "TXT": "1488773820f7aed95586658ce389c2" } } diff --git a/domains/_github-pages-challenge-utilsfortheweb.utils.json b/domains/_github-pages-challenge-utilsfortheweb.utils.json index c371bc2a5..02997cb65 100644 --- a/domains/_github-pages-challenge-utilsfortheweb.utils.json +++ b/domains/_github-pages-challenge-utilsfortheweb.utils.json @@ -3,7 +3,7 @@ "username": "Blob2763", "email": "blob2763@gmail.com" }, - "record": { + "records": { "TXT": "c5ac9060fffaa7b40b58852449f983" } } diff --git a/domains/_github-pages-challenge-vachanmn123.vachanmn.json b/domains/_github-pages-challenge-vachanmn123.vachanmn.json index ed98ab2f7..0d87c70eb 100644 --- a/domains/_github-pages-challenge-vachanmn123.vachanmn.json +++ b/domains/_github-pages-challenge-vachanmn123.vachanmn.json @@ -3,7 +3,7 @@ "username": "vachanmn123", "email": "vachanmn123@gmail.com" }, - "record": { + "records": { "TXT": "c8d038d8f44978beb4910c6c425cc8" } } diff --git a/domains/_github-pages-challenge-vcntttt.vrivera.json b/domains/_github-pages-challenge-vcntttt.vrivera.json new file mode 100644 index 000000000..e7d923d31 --- /dev/null +++ b/domains/_github-pages-challenge-vcntttt.vrivera.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vcntttt", + "email": "vrivera.dev@gmail.com" + }, + "records": { + "TXT": "f2d624f5252ae88e5308c9098ae958" + } +} diff --git a/domains/_github-pages-challenge-verygafanhot.heyaxo.json b/domains/_github-pages-challenge-verygafanhot.heyaxo.json new file mode 100644 index 000000000..2b94e42c9 --- /dev/null +++ b/domains/_github-pages-challenge-verygafanhot.heyaxo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "verygafanhot", + "email": "verygafanhot@gmail.com" + }, + "records": { + "TXT": "e3ae5ee11a576cc86f89140043ca2b" + } +} diff --git a/domains/_github-pages-challenge-vihaananand.untitled.json b/domains/_github-pages-challenge-vihaananand.untitled.json deleted file mode 100644 index e5fe95813..000000000 --- a/domains/_github-pages-challenge-vihaananand.untitled.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "VihaanAnand", - "email": "macos14sonoma@gmail.com" - }, - "record": { - "TXT": "53234a8871b871e94e29adff5a8e91" - } -} diff --git a/domains/_github-pages-challenge-vivek-oraon.vivek.json b/domains/_github-pages-challenge-vivek-oraon.vivek.json index fd9fec9c2..d4d7315e1 100644 --- a/domains/_github-pages-challenge-vivek-oraon.vivek.json +++ b/domains/_github-pages-challenge-vivek-oraon.vivek.json @@ -3,7 +3,7 @@ "username": "vivek-oraon", "email": "vivekoraon@pm.me" }, - "record": { + "records": { "TXT": "99d887f6958e3be7f2e1972d9ec212" } } diff --git a/domains/_github-pages-challenge-vj-abishek.abishek.json b/domains/_github-pages-challenge-vj-abishek.abishek.json index 71a346b4b..9d5a91217 100644 --- a/domains/_github-pages-challenge-vj-abishek.abishek.json +++ b/domains/_github-pages-challenge-vj-abishek.abishek.json @@ -3,7 +3,7 @@ "username": "vj-abishek", "email": "abigosearch@gmail.com" }, - "record": { + "records": { "TXT": "fe9c9b544613d7bf05295ad995cbaa" } } diff --git a/domains/_github-pages-challenge-vncsmnl.vinicius.json b/domains/_github-pages-challenge-vncsmnl.vinicius.json index f678da650..f077f1c3b 100644 --- a/domains/_github-pages-challenge-vncsmnl.vinicius.json +++ b/domains/_github-pages-challenge-vncsmnl.vinicius.json @@ -1,12 +1,11 @@ { "description": "My personal website", - "repo": "https://github.com/vncsmnl", "owner": { "username": "vncsmnl", "twitter": "vncsmnl", "discord": "vncsmnl#7835" }, - "record": { + "records": { "TXT": "1bb7647bdc766f138d036f6fdbd2e6" } } diff --git a/domains/_github-pages-challenge-voidkeishi.keishi.json b/domains/_github-pages-challenge-voidkeishi.keishi.json new file mode 100644 index 000000000..93324a66c --- /dev/null +++ b/domains/_github-pages-challenge-voidkeishi.keishi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VoidKeishi", + "email": "phananha4@gmail.com" + }, + "records": { + "TXT": "24873b574f17ea257bd32d1f505781" + } +} diff --git a/domains/_github-pages-challenge-vontey.vontey.json b/domains/_github-pages-challenge-vontey.vontey.json new file mode 100644 index 000000000..d8d590d4b --- /dev/null +++ b/domains/_github-pages-challenge-vontey.vontey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vontey", + "email": "ash2vee@outlook.com" + }, + "records": { + "TXT": "c5d23775aa8514a3dd88ee55d78a14" + } +} diff --git a/domains/_github-pages-challenge-vurihuang.vuri.json b/domains/_github-pages-challenge-vurihuang.vuri.json index 06ab3fb80..551d07528 100644 --- a/domains/_github-pages-challenge-vurihuang.vuri.json +++ b/domains/_github-pages-challenge-vurihuang.vuri.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "TXT": ["2447215d9fcea09574fc1831f99c8d"] - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "records": { + "TXT": ["2447215d9fcea09574fc1831f99c8d"] } - \ No newline at end of file +} diff --git a/domains/_github-pages-challenge-vurihuang.vurihuang.json b/domains/_github-pages-challenge-vurihuang.vurihuang.json index ec6d49879..d2b8443b1 100644 --- a/domains/_github-pages-challenge-vurihuang.vurihuang.json +++ b/domains/_github-pages-challenge-vurihuang.vurihuang.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "TXT": ["8ba2660c4c9bb5915177df7123d158"] - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "records": { + "TXT": ["8ba2660c4c9bb5915177df7123d158"] } - \ No newline at end of file +} diff --git a/domains/_github-pages-challenge-vyshuks.vysakh.json b/domains/_github-pages-challenge-vyshuks.vysakh.json index d239bd2ad..e8c5f7c20 100644 --- a/domains/_github-pages-challenge-vyshuks.vysakh.json +++ b/domains/_github-pages-challenge-vyshuks.vysakh.json @@ -3,7 +3,7 @@ "username": "vyshuks", "email": "vyshuks@gmail.com" }, - "record": { + "records": { "TXT": "0cb8ba615b779ff95bfe738257a888" } } diff --git a/domains/_github-pages-challenge-wdhdev.william.json b/domains/_github-pages-challenge-wdhdev.william.json index 2542d31a6..c0908027c 100644 --- a/domains/_github-pages-challenge-wdhdev.william.json +++ b/domains/_github-pages-challenge-wdhdev.william.json @@ -3,7 +3,7 @@ "username": "wdhdev", "email": "william@is-a.dev" }, - "record": { + "records": { "TXT": "6b3a5de4756e5840afc94698b74712" } } diff --git a/domains/_github-pages-challenge-webcubed.webcubed.json b/domains/_github-pages-challenge-webcubed.webcubed.json index 2de31857f..15a1257ac 100644 --- a/domains/_github-pages-challenge-webcubed.webcubed.json +++ b/domains/_github-pages-challenge-webcubed.webcubed.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "webcubed" - }, - "record": { - "TXT": ["d4d8fdb1fea56bbbf4470d4e6f5e40"] - } + "owner": { + "username": "webcubed" + }, + "records": { + "TXT": ["d4d8fdb1fea56bbbf4470d4e6f5e40"] + } } diff --git a/domains/_github-pages-challenge-weebneedweed.harley.json b/domains/_github-pages-challenge-weebneedweed.harley.json new file mode 100644 index 000000000..ab3b43aa7 --- /dev/null +++ b/domains/_github-pages-challenge-weebneedweed.harley.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "weebNeedWeed", + "email": "rivenmle@gmail.com" + }, + "records": { + "TXT": "659c12dc6e08a166dc1e88780bd87d" + } +} diff --git a/domains/_github-pages-challenge-window5000.window5.json b/domains/_github-pages-challenge-window5000.window5.json index 688618ff1..5fe3535e4 100644 --- a/domains/_github-pages-challenge-window5000.window5.json +++ b/domains/_github-pages-challenge-window5000.window5.json @@ -3,7 +3,7 @@ "username": "Window5000", "email": "spam.window5.spam@gmail.com" }, - "record": { + "records": { "TXT": "e0f44964a7e707b4d78755bb66b3e4" } } diff --git a/domains/_github-pages-challenge-wizcann.wizcann.json b/domains/_github-pages-challenge-wizcann.wizcann.json index f95b28284..4ffbe8d97 100644 --- a/domains/_github-pages-challenge-wizcann.wizcann.json +++ b/domains/_github-pages-challenge-wizcann.wizcann.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "wizcann" - }, - "record": { - "TXT": ["76bdb40edcf54ac449921a71e3e388"] - } + "owner": { + "username": "wizcann" + }, + "records": { + "TXT": ["76bdb40edcf54ac449921a71e3e388"] + } } diff --git a/domains/_github-pages-challenge-wmoralesl.wilson.json b/domains/_github-pages-challenge-wmoralesl.wilson.json new file mode 100644 index 000000000..bcc2526d0 --- /dev/null +++ b/domains/_github-pages-challenge-wmoralesl.wilson.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wmoralesl", + "email": "wilsonm57wm@gmail.com" + }, + "records": { + "TXT": "10f8fd2a05d93142f03d2a6ee4142e" + } +} diff --git a/domains/_github-pages-challenge-xkhronoz.xkhronoz.json b/domains/_github-pages-challenge-xkhronoz.xkhronoz.json index 3c4bc48d3..f75a127cb 100644 --- a/domains/_github-pages-challenge-xkhronoz.xkhronoz.json +++ b/domains/_github-pages-challenge-xkhronoz.xkhronoz.json @@ -3,7 +3,7 @@ "username": "xKhronoz", "email": "yeek3063@gmail.com" }, - "record": { + "records": { "TXT": "ea9be10bf29f3df4c2c6a77fc2b9ed" } } diff --git a/domains/_github-pages-challenge-xrendani.xrendani.json b/domains/_github-pages-challenge-xrendani.xrendani.json new file mode 100644 index 000000000..ed4c679da --- /dev/null +++ b/domains/_github-pages-challenge-xrendani.xrendani.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xrendani", + "email": "rendaniman@outlook.com" + }, + "records": { + "TXT": "32d8f1c5a015e17af51e00beed50cc" + } +} diff --git a/domains/_github-pages-challenge-yantcaccia.antonio.json b/domains/_github-pages-challenge-yantcaccia.antonio.json index 11bca6447..3e1673c4c 100644 --- a/domains/_github-pages-challenge-yantcaccia.antonio.json +++ b/domains/_github-pages-challenge-yantcaccia.antonio.json @@ -3,7 +3,7 @@ "username": "YantCaccia", "email": "yantcaccia@gmail.com" }, - "record": { + "records": { "TXT": "7af4c3a94c5f7fa70f489c3c8c901f" } } diff --git a/domains/_github-pages-challenge-yashokuu.yas.json b/domains/_github-pages-challenge-yashokuu.yas.json new file mode 100644 index 000000000..a102620d6 --- /dev/null +++ b/domains/_github-pages-challenge-yashokuu.yas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashoukuu", + "email": "yas.studios.en@gmail.com" + }, + "records": { + "TXT": "3dc5a3f950e7f70f6535b6bf715042" + } +} diff --git a/domains/_github-pages-challenge-yorodm.yorodm.json b/domains/_github-pages-challenge-yorodm.yorodm.json index 58ad2781a..9140b2f8d 100644 --- a/domains/_github-pages-challenge-yorodm.yorodm.json +++ b/domains/_github-pages-challenge-yorodm.yorodm.json @@ -3,7 +3,7 @@ "username": "yorodm", "email": "yoandy.rmartinez@gmail.com" }, - "record": { + "records": { "TXT": "4e4101d7a9a7606d96f9757829a24d" } } diff --git a/domains/_github-pages-challenge-youfoundalpha.alpha.json b/domains/_github-pages-challenge-youfoundalpha.alpha.json index b2d81c0f0..28af26263 100644 --- a/domains/_github-pages-challenge-youfoundalpha.alpha.json +++ b/domains/_github-pages-challenge-youfoundalpha.alpha.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "TXT": "123b9197abda60197a8afa64af5cf0" } } diff --git a/domains/_github-pages-challenge-yourtilak.tilak.json b/domains/_github-pages-challenge-yourtilak.tilak.json index 516682e02..9a303790c 100644 --- a/domains/_github-pages-challenge-yourtilak.tilak.json +++ b/domains/_github-pages-challenge-yourtilak.tilak.json @@ -4,7 +4,7 @@ "username": "YourTilak", "email": "rj05tilak@gmail.com" }, - "record": { + "records": { "TXT": "c599b4c1ad1e049f9a34ab0534ede8" } } diff --git a/domains/_github-pages-challenge-yummyoreo.oreo.json b/domains/_github-pages-challenge-yummyoreo.oreo.json index 9400f38ef..51f1a05d6 100644 --- a/domains/_github-pages-challenge-yummyoreo.oreo.json +++ b/domains/_github-pages-challenge-yummyoreo.oreo.json @@ -3,7 +3,7 @@ "username": "YummyOreo", "email": "bobgim20@gmail.com" }, - "record": { + "records": { "TXT": "91193592629d4273fa574d6c88a7e4" } } diff --git a/domains/_github-pages-challenge-yunexiz.cat.json b/domains/_github-pages-challenge-yunexiz.cat.json index 7ea3239fb..b50fbdbd7 100644 --- a/domains/_github-pages-challenge-yunexiz.cat.json +++ b/domains/_github-pages-challenge-yunexiz.cat.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "TXT": "7b0048087227dc98eb47a46c9f1b43" } } diff --git a/domains/_github-pages-challenge-yunexiz.dog.json b/domains/_github-pages-challenge-yunexiz.dog.json index 7df7f6da2..04de0f6c3 100644 --- a/domains/_github-pages-challenge-yunexiz.dog.json +++ b/domains/_github-pages-challenge-yunexiz.dog.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "TXT": "5fa47df0612540ae6e92989a4007e9" } } diff --git a/domains/_github-pages-challenge-yunexiz.y.json b/domains/_github-pages-challenge-yunexiz.y.json index bb4ea0393..8ec1605de 100644 --- a/domains/_github-pages-challenge-yunexiz.y.json +++ b/domains/_github-pages-challenge-yunexiz.y.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "TXT": "e510e7d345184525230751fbbf1e5b" } } diff --git a/domains/_github-pages-challenge-yunexiz.yunexiz.json b/domains/_github-pages-challenge-yunexiz.yunexiz.json index 8c32f4beb..67a3b9e24 100644 --- a/domains/_github-pages-challenge-yunexiz.yunexiz.json +++ b/domains/_github-pages-challenge-yunexiz.yunexiz.json @@ -3,7 +3,7 @@ "username": "Yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "TXT": ["273b8f26fd1aacf2cd47be00178179"] } } diff --git a/domains/_github-pages-challenge-yz9551.yxz.json b/domains/_github-pages-challenge-yz9551.yxz.json index 3e6b82cd8..e43295d9b 100644 --- a/domains/_github-pages-challenge-yz9551.yxz.json +++ b/domains/_github-pages-challenge-yz9551.yxz.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "yz9551", - "email": "", - "discord": "yz9551" - }, - "record": { - "TXT": [ - "1b83953af6bc9eb40dc5ccfb434238" - ] - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "records": { + "TXT": ["1b83953af6bc9eb40dc5ccfb434238"] + } } diff --git a/domains/_github-pages-challenge-zpiste.piste.json b/domains/_github-pages-challenge-zpiste.piste.json index 9398fd245..23278101e 100644 --- a/domains/_github-pages-challenge-zpiste.piste.json +++ b/domains/_github-pages-challenge-zpiste.piste.json @@ -3,7 +3,7 @@ "username": "zpiste", "email": "contact@piste.dev" }, - "record": { + "records": { "TXT": "ad901dc238a681f67e4979e64eac7e" } } diff --git a/domains/_github-pages-challenge-zyrouge.zyrouge.json b/domains/_github-pages-challenge-zyrouge.zyrouge.json index cdfc9e1c4..0d2fce000 100644 --- a/domains/_github-pages-challenge-zyrouge.zyrouge.json +++ b/domains/_github-pages-challenge-zyrouge.zyrouge.json @@ -4,7 +4,7 @@ "email": "zyrouge@hotmail.com", "twitter": "_zyrouge_" }, - "record": { + "records": { "TXT": "dde2728dbadb035a4ffeda6f696112" } } diff --git a/domains/_github-pages-challenge.wildchamo.json b/domains/_github-pages-challenge.wildchamo.json new file mode 100644 index 000000000..09daddd0d --- /dev/null +++ b/domains/_github-pages-challenge.wildchamo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wildchamo", + "email": "wildchamo@gmail.com" + }, + "records": { + "TXT": "5b9a158bcd9821a7a78b5b362bccf0" + } +} diff --git a/domains/_gitlab-pages-verification-code.frost-voltage-wiki.json b/domains/_gitlab-pages-verification-code.frost-voltage-wiki.json new file mode 100644 index 000000000..9fa66a5e5 --- /dev/null +++ b/domains/_gitlab-pages-verification-code.frost-voltage-wiki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Karan-Frost", + "email": "frost.github@gmail.com" + }, + "records": { + "TXT": "gitlab-pages-verification-code=57f76737bb8badd568b055bc4ff9d405" + } +} diff --git a/domains/_gitlab-pages-verification-code.meerkats.shays.json b/domains/_gitlab-pages-verification-code.meerkats.shays.json index e7a7d28ef..6f4ce4dac 100644 --- a/domains/_gitlab-pages-verification-code.meerkats.shays.json +++ b/domains/_gitlab-pages-verification-code.meerkats.shays.json @@ -3,7 +3,7 @@ "username": "SHays24", "email": "SHays24@student.sacs.nsw.edu.au" }, - "record": { + "records": { "TXT": "gitlab-pages-verification-code=621b768139e0bfaf6eb43d60db03cabf" } } diff --git a/domains/_gitlab-pages-verification-code.pinage404.json b/domains/_gitlab-pages-verification-code.pinage404.json index 072c8147a..701ef9750 100644 --- a/domains/_gitlab-pages-verification-code.pinage404.json +++ b/domains/_gitlab-pages-verification-code.pinage404.json @@ -3,7 +3,7 @@ "username": "pinage404", "email": "pinage404+is-a.dev@gmail.com" }, - "record": { + "records": { "TXT": "gitlab-pages-verification-code=d43eb39124dec340bdbb11a4d6aa6b52" } } diff --git a/domains/_gitlab-pages-verification-code.sadkon.json b/domains/_gitlab-pages-verification-code.sadkon.json index a25d79e18..28e216883 100644 --- a/domains/_gitlab-pages-verification-code.sadkon.json +++ b/domains/_gitlab-pages-verification-code.sadkon.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhc@outlook.com" }, - "record": { + "records": { "TXT": "gitlab-pages-verification-code=478e4a7c8445704809ba0fa31e003df3" } } diff --git a/domains/_minecraft._tcp.mc.3gee.json b/domains/_minecraft._tcp.mc.3gee.json index bafac6205..e49c88327 100644 --- a/domains/_minecraft._tcp.mc.3gee.json +++ b/domains/_minecraft._tcp.mc.3gee.json @@ -1,21 +1,16 @@ -{ - - "owner": { - - "username": "3geETR", - - "email": "egemacun@gmail.com" - - }, - - "record": { - "SRV": [ - { - "priority": 0, - "weight": 5, - "port": 32279, - "target": "gold.magmanode.com" - } - ] - } -} +{ + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "records": { + "SRV": [ + { + "priority": 0, + "weight": 5, + "port": 32279, + "target": "mc.3gee.is-a.dev" + } + ] + } +} diff --git a/domains/_minecraft._tcp.mrdiamond.json b/domains/_minecraft._tcp.mrdiamond.json new file mode 100644 index 000000000..d24490107 --- /dev/null +++ b/domains/_minecraft._tcp.mrdiamond.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "records": { + "SRV": [ + { + "priority": 0, + "weight": 5, + "port": 28225, + "target": "minecraft.mrdiamond.is-a.dev" + } + ] + } +} diff --git a/domains/_psl.json b/domains/_psl.json deleted file mode 100644 index 80ac8a2f0..000000000 --- a/domains/_psl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "TXT": ["https://github.com/publicsuffix/list/pull/2225"] - } -} diff --git a/domains/_serveo-authkey.pds.hcj.json b/domains/_serveo-authkey.pds.hcj.json new file mode 100644 index 000000000..53884675a --- /dev/null +++ b/domains/_serveo-authkey.pds.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "records": { + "TXT": "SHA256:KFRJFKicG2rnITzSxLQn62svO68oydMpEDpQ6yRbtR0" + } +} diff --git a/domains/_vercel.1ndrajeet.json b/domains/_vercel.1ndrajeet.json new file mode 100644 index 000000000..44eb55629 --- /dev/null +++ b/domains/_vercel.1ndrajeet.json @@ -0,0 +1,12 @@ +{ + "description": "Applying for an is-a.dev domain for my portfolio. (1ndrajeet.vercel.app)", + "repo": "https://github.com/1ndrajeet/1ndrajeet.github.io", + + "owner": { + "username": "1ndrajeet", + "email": "omkar.kulkarni.3174@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=1ndrajeet.is-a.dev,00cac18202bfab99e890" + } +} diff --git a/domains/_vercel.2.json b/domains/_vercel.2.json index 24db2720e..41ad6375a 100644 --- a/domains/_vercel.2.json +++ b/domains/_vercel.2.json @@ -1,10 +1,10 @@ { - "description": "LIGMATV's URL Manager (aka 2)", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=2.is-a.dev,ea014a1b9a6ec8986aa0"] - } -} + "description": "LIGMATV's URL Manager (aka 2)", + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=2.is-a.dev,ea014a1b9a6ec8986aa0"] + } +} diff --git a/domains/_vercel.4hmet.json b/domains/_vercel.4hmet.json new file mode 100644 index 000000000..499d3a288 --- /dev/null +++ b/domains/_vercel.4hmet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahmetunsal", + "email": "web.unsalahmet@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=4hmet.is-a.dev,c313bc7151ebff9a1f1f" + } +} diff --git a/domains/_vercel.5y8z.json b/domains/_vercel.5y8z.json new file mode 100644 index 000000000..0f3725020 --- /dev/null +++ b/domains/_vercel.5y8z.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "5y8z" + }, + "records": { + "TXT": ["vc-domain-verify=5y8z.is-a.dev,3e6a94035dca0123b793"] + } +} diff --git a/domains/_vercel.aadityaa.json b/domains/_vercel.aadityaa.json new file mode 100644 index 000000000..da284f696 --- /dev/null +++ b/domains/_vercel.aadityaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aadityaa2606", + "email": "aadityaa2606@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=aadityaa.is-a.dev,ac8d0d70ecad184cddfa" + } +} diff --git a/domains/_vercel.aakashrawat.json b/domains/_vercel.aakashrawat.json new file mode 100644 index 000000000..774d4b2dc --- /dev/null +++ b/domains/_vercel.aakashrawat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aakashrawat04", + "email": "2004rawataakash@gmail.com", + "discord": "759817307957493800" + }, + "records": { + "TXT": "vc-domain-verify=aakashrawat.is-a.dev,d80839eb94f222e03728" + } +} diff --git a/domains/_vercel.aaqif.json b/domains/_vercel.aaqif.json new file mode 100644 index 000000000..d3217dac0 --- /dev/null +++ b/domains/_vercel.aaqif.json @@ -0,0 +1,10 @@ +{ + "description": "React Portfolio", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=aaqif.is-a.dev,77eef1ecff0a4bec5f86"] + } +} diff --git a/domains/_vercel.abdullah-al-mridul.json b/domains/_vercel.abdullah-al-mridul.json new file mode 100644 index 000000000..7b3dfa752 --- /dev/null +++ b/domains/_vercel.abdullah-al-mridul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdullah-al-mridul", + "email": "rim89987@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=abdullah-al-mridul.is-a.dev,28add02b5250c0339353" + } +} diff --git a/domains/_vercel.abdullah.maqbool.json b/domains/_vercel.abdullah.maqbool.json new file mode 100644 index 000000000..eb443e83b --- /dev/null +++ b/domains/_vercel.abdullah.maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=abdullah.maqbool.is-a.dev,7d30d66cf0ff8ca544ba" + } +} diff --git a/domains/_vercel.abdullahcxd.json b/domains/_vercel.abdullahcxd.json new file mode 100644 index 000000000..b99471cec --- /dev/null +++ b/domains/_vercel.abdullahcxd.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "records": { + "TXT": "vc-domain-verify=docs.abdullahcxd.is-a.dev,88eae4c1971934256cdf" + } +} diff --git a/domains/_vercel.abranico.json b/domains/_vercel.abranico.json new file mode 100644 index 000000000..84a709456 --- /dev/null +++ b/domains/_vercel.abranico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abranico", + "email": "abranico011@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=abranico.is-a.dev,82f8209e355477d34c12" + } +} diff --git a/domains/_vercel.adam.json b/domains/_vercel.adam.json new file mode 100644 index 000000000..b737f05af --- /dev/null +++ b/domains/_vercel.adam.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio", + "owner": { + "username": "adamrexo", + "email": "rexosheesh@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=adam.is-a.dev,98e3c00d5bc75fc35a57"] + } +} diff --git a/domains/_vercel.adiii3692.json b/domains/_vercel.adiii3692.json new file mode 100644 index 000000000..8381b44a8 --- /dev/null +++ b/domains/_vercel.adiii3692.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adiii3692", + "email": "adinair0206@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=adiii3692.is-a.dev,be704332b1928225a1ce" + } +} diff --git a/domains/_vercel.aditya.json b/domains/_vercel.aditya.json new file mode 100644 index 000000000..9e9308f4d --- /dev/null +++ b/domains/_vercel.aditya.json @@ -0,0 +1,10 @@ +{ + "description": "Aditya portfolio", + "owner": { + "username": "raghav-45", + "email": "raghavbhai4545@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=aditya.is-a.dev,bb0fe79d43ee24597631" + } +} diff --git a/domains/_vercel.aessaputra.json b/domains/_vercel.aessaputra.json new file mode 100644 index 000000000..dec865502 --- /dev/null +++ b/domains/_vercel.aessaputra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aessaputra", + "twitter": "pioonrey" + }, + "records": { + "TXT": "vc-domain-verify=aessaputra.is-a.dev,e4ae1f9f5dd0538d0b82" + } +} diff --git a/domains/_vercel.aeyika.json b/domains/_vercel.aeyika.json index 93f019f86..13fda9971 100644 --- a/domains/_vercel.aeyika.json +++ b/domains/_vercel.aeyika.json @@ -1,12 +1,10 @@ { - "description": "Domain for my portfolio website", - "owner": { - "username": "aeyika", - "email": "aeyikastech@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=aeyika.is-a.dev,84418c102cd22e0a172c" - ] - } + "description": "Domain for my portfolio website", + "owner": { + "username": "aeyika", + "email": "aeyikastech@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=aeyika.is-a.dev,84418c102cd22e0a172c"] + } } diff --git a/domains/_vercel.aga.json b/domains/_vercel.aga.json new file mode 100644 index 000000000..4519daead --- /dev/null +++ b/domains/_vercel.aga.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "lcnghulam", + "email": "lcnghulam1@gmail.com", + "discord": "blessing455451" + }, + "records": { + "TXT": [ + "vc-domain-verify=aga.is-a.dev,c9684d0007365a74f553", + "google-site-verification=p24qfEdTMTlahtU3hQxVU_txDQkifpoJH1xS4jmCmlw" + ] + } +} diff --git a/domains/_vercel.agungfir.json b/domains/_vercel.agungfir.json new file mode 100644 index 000000000..a1c747a69 --- /dev/null +++ b/domains/_vercel.agungfir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "agungfir10", + "email": "agungfirid@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=agungfir.is-a.dev,f3a8d63f073d51dadc29" + } +} diff --git a/domains/_vercel.ahios.json b/domains/_vercel.ahios.json new file mode 100644 index 000000000..8807bbca7 --- /dev/null +++ b/domains/_vercel.ahios.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ahios.is-a.dev,4937fc5cde05797c4fc3" + } +} diff --git a/domains/_vercel.ahmad.json b/domains/_vercel.ahmad.json new file mode 100644 index 000000000..db930fd27 --- /dev/null +++ b/domains/_vercel.ahmad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "azrelic", + "email": "ahmadking78654@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ahmad.is-a.dev,c01e9cd660fc60d75301" + } +} diff --git a/domains/_vercel.ahmed.json b/domains/_vercel.ahmed.json new file mode 100644 index 000000000..3b07cdadb --- /dev/null +++ b/domains/_vercel.ahmed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ahmed.is-a.dev,e3140ad99c613cbd32f1" + } +} diff --git a/domains/_vercel.ahmedosama.json b/domains/_vercel.ahmedosama.json new file mode 100644 index 000000000..4aa2fa86d --- /dev/null +++ b/domains/_vercel.ahmedosama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ahmedosama.is-a.dev,5b628779e8a3ff964dbb" + } +} diff --git a/domains/_vercel.ahmedosamamath.json b/domains/_vercel.ahmedosamamath.json new file mode 100644 index 000000000..e018a29eb --- /dev/null +++ b/domains/_vercel.ahmedosamamath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ahmedosamamath.is-a.dev,796151d584bede738264" + } +} diff --git a/domains/_vercel.aishik999.json b/domains/_vercel.aishik999.json new file mode 100644 index 000000000..02ebd406d --- /dev/null +++ b/domains/_vercel.aishik999.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aishik999", + "email": "aishikm2002@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=aishik999.is-a.dev,ee81dd1464c614776855" + } +} diff --git a/domains/_vercel.aitji.json b/domains/_vercel.aitji.json new file mode 100644 index 000000000..a4b2f4747 --- /dev/null +++ b/domains/_vercel.aitji.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aitji", + "email": "ait.suriya@gmail.com", + "discord": "aitji" + }, + "records": { + "TXT": "vc-domain-verify=aitji.is-a.dev,0a05468b82f542c74dea" + } +} diff --git a/domains/_vercel.aj.json b/domains/_vercel.aj.json index 6222bd81b..4a2ed0925 100644 --- a/domains/_vercel.aj.json +++ b/domains/_vercel.aj.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "TXT": [ "vc-domain-verify=aj.is-a.dev,36e2705ac5c66c596f85", "vc-domain-verify=www.aj.is-a.dev,55d888d08b935336a7ef" diff --git a/domains/_vercel.akanksha.json b/domains/_vercel.akanksha.json new file mode 100644 index 000000000..fc9a8d179 --- /dev/null +++ b/domains/_vercel.akanksha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AkankshaMishra2", + "email": "akankshamishra20042@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=akanksha.is-a.dev,b1e4bbe531cb73a59644" + } +} diff --git a/domains/_vercel.akashkumar.json b/domains/_vercel.akashkumar.json new file mode 100644 index 000000000..510d36c28 --- /dev/null +++ b/domains/_vercel.akashkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akash-kumar-dev", + "email": "akashkumar.dev00@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=akashkumar.is-a.dev,844132b059abdd5bd808" + } +} diff --git a/domains/_vercel.akay.json b/domains/_vercel.akay.json index 3f05cfc52..5b42f1cc7 100644 --- a/domains/_vercel.akay.json +++ b/domains/_vercel.akay.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "AKBORANA3" - }, - "record": { - "TXT": [ - "vc-domain-verify=akay.is-a.dev,f9e6eaccf85abfddae57" - ] - } + "owner": { + "username": "AKBORANA3" + }, + "records": { + "TXT": ["vc-domain-verify=akay.is-a.dev,f9e6eaccf85abfddae57"] + } } diff --git a/domains/_vercel.akib.json b/domains/_vercel.akib.json new file mode 100644 index 000000000..9595a157a --- /dev/null +++ b/domains/_vercel.akib.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akibsaleh", + "email": "akibsaleh.dev@gmail.com", + "discord": "akibsalehzihan" + }, + "records": { + "TXT": "vc-domain-verify=akib.is-a.dev,3605c2dfdaf80295f8b3" + } +} diff --git a/domains/_vercel.akk1to.json b/domains/_vercel.akk1to.json new file mode 100644 index 000000000..eb07427b6 --- /dev/null +++ b/domains/_vercel.akk1to.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=blogs.akk1to.is-a.dev,18b784bd5f6ecb5feeb8" + } +} diff --git a/domains/_vercel.akshtt.json b/domains/_vercel.akshtt.json new file mode 100644 index 000000000..331a77c5b --- /dev/null +++ b/domains/_vercel.akshtt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218" + }, + "records": { + "TXT": "vc-domain-verify=akshtt.is-a.dev,456706754e19d95b29f0" + } +} diff --git a/domains/_vercel.al-nahianhasan.json b/domains/_vercel.al-nahianhasan.json new file mode 100644 index 000000000..5050cbe50 --- /dev/null +++ b/domains/_vercel.al-nahianhasan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nahianhasan161", + "email": "nahianhasan161@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=al-nahianhasan.is-a.dev,1deeff67e64c983a1be6" + } +} diff --git a/domains/_vercel.alexandra.json b/domains/_vercel.alexandra.json new file mode 100644 index 000000000..b7fb7fc3d --- /dev/null +++ b/domains/_vercel.alexandra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alexxandraSalazar", + "email": "alexandrasalazar121205@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=alexandra.is-a.dev,c8a58aad1c7c9d2802c7" + } +} diff --git a/domains/_vercel.alexismansilla.json b/domains/_vercel.alexismansilla.json new file mode 100644 index 000000000..0e92479aa --- /dev/null +++ b/domains/_vercel.alexismansilla.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dv-del", + "email": "", + "discord": "dv_del" + }, + "records": { + "TXT": "vc-domain-verify=alexismansilla.is-a.dev,a2848ebac3678d67a5c0" + } +} diff --git a/domains/_vercel.alimad.json b/domains/_vercel.alimad.json new file mode 100644 index 000000000..a93b42d68 --- /dev/null +++ b/domains/_vercel.alimad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Alimadcorp", + "email": "alimad.co.ltd@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=alimad.is-a.dev,f6e1ccbe103767db5c66" + } +} diff --git a/domains/_vercel.alisa.json b/domains/_vercel.alisa.json index efc76ec48..4840f3851 100644 --- a/domains/_vercel.alisa.json +++ b/domains/_vercel.alisa.json @@ -2,9 +2,9 @@ "owner": { "username": "lunas-private-dungeon", "email": "luna.tsx@proton.me", - "discord": "507625218467168257" + "discord": "507625218467168257" }, - "record": { + "records": { "TXT": ["vc-domain-verify=alisa.is-a.dev,01abd793050b01c5d63f"] } } diff --git a/domains/_vercel.alora.json b/domains/_vercel.alora.json index d203c2aef..6dea93acb 100644 --- a/domains/_vercel.alora.json +++ b/domains/_vercel.alora.json @@ -4,11 +4,13 @@ "email": "xaloramia@gmail.com", "discord": "1236292707371057216" }, - "record": { + "records": { "TXT": [ "vc-domain-verify=drive.alora.is-a.dev,395400702612ae6db6a8", "vc-domain-verify=profile.alora.is-a.dev,71bd18cc5db61dc75f91", - "vc-domain-verify=blog.alora.is-a.dev,39b11f87634c4710b9ab" + "vc-domain-verify=blog.alora.is-a.dev,39b11f87634c4710b9ab", + "vc-domain-verify=verify.alora.is-a.dev,df9b78e72bc7a2889bc8", + "vc-domain-verify=share.alora.is-a.dev,abbc2694ca2401b3a842" ] } } diff --git a/domains/_vercel.alphatechnolog.json b/domains/_vercel.alphatechnolog.json index 656362fb4..62af79ed3 100644 --- a/domains/_vercel.alphatechnolog.json +++ b/domains/_vercel.alphatechnolog.json @@ -4,7 +4,7 @@ "email": "gfranklings@gmail.com", "discord": "695333243637072002" }, - "record": { + "records": { "TXT": ["vc-domain-verify=alphatechnolog.is-a.dev,60b952897ab1957420d3"] } } diff --git a/domains/_vercel.alrakib.json b/domains/_vercel.alrakib.json new file mode 100644 index 000000000..b65ac101f --- /dev/null +++ b/domains/_vercel.alrakib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alrakibthedev", + "email": "alrakibthedev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=alrakib.is-a.dev,3a2663fe979960b1dad2" + } +} diff --git a/domains/_vercel.alvin.json b/domains/_vercel.alvin.json index 73cbbec62..6ae37329a 100644 --- a/domains/_vercel.alvin.json +++ b/domains/_vercel.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "TXT": [ "vc-domain-verify=www.alvin.is-a.dev,8cfb8dfac816eacccf2d", "vc-domain-verify=hive.alvin.is-a.dev,c60034f22ad745c15021", @@ -11,7 +11,9 @@ "vc-domain-verify=chat.alvin.is-a.dev,520a1452a367459dd568", "vc-domain-verify=www.chat.alvin.is-a.dev,df452600790ef98fd42e", "vc-domain-verify=todo.alvin.is-a.dev,08b2734d859de7c855c5", - "vc-domain-verify=www.todo.alvin.is-a.dev,affd5e1204871843ebb8" + "vc-domain-verify=www.todo.alvin.is-a.dev,affd5e1204871843ebb8", + "vc-domain-verify=sign.alvin.is-a.dev,2563e8f2f9edc85132ac", + "vc-domain-verify=www.sign.alvin.is-a.dev,94900e209df86ce94741" ] } } diff --git a/domains/_vercel.alvindennis.json b/domains/_vercel.alvindennis.json index fb39676e5..1ef067eb5 100644 --- a/domains/_vercel.alvindennis.json +++ b/domains/_vercel.alvindennis.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "alvin-dennis", - "discord": "alvindennis" - }, - "record": { - "TXT": "vc-domain-verify=alvindennis.is-a.dev,0cce0dce190e046ef841" - } + "owner": { + "username": "alvin-dennis", + "discord": "alvindennis" + }, + "records": { + "TXT": "vc-domain-verify=alvindennis.is-a.dev,0cce0dce190e046ef841" } - \ No newline at end of file +} diff --git a/domains/_vercel.aman.json b/domains/_vercel.aman.json new file mode 100644 index 000000000..0e4454793 --- /dev/null +++ b/domains/_vercel.aman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amang9446", + "email": "dev.aman7571@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=aman.is-a.dev,d6447d0d30e57c351c44" + } +} diff --git a/domains/_vercel.amandajauregui.json b/domains/_vercel.amandajauregui.json new file mode 100644 index 000000000..9dc5332a5 --- /dev/null +++ b/domains/_vercel.amandajauregui.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jauregao", + "email": "amandajauregui.dev@gmail.com", + "discord": "jauregao" + }, + "records": { + "TXT": "vc-domain-verify=amandajauregui.is-a.dev,a3853c2f774bcc618d55" + } +} diff --git a/domains/_vercel.amardeep.json b/domains/_vercel.amardeep.json new file mode 100644 index 000000000..388462d9c --- /dev/null +++ b/domains/_vercel.amardeep.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amardeeplakshkar", + "email": "amardeep.devs@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=amardeep.is-a.dev,3d113f019450ce88d3a8" + } +} diff --git a/domains/_vercel.amenya.json b/domains/_vercel.amenya.json new file mode 100644 index 000000000..5b54e9f38 --- /dev/null +++ b/domains/_vercel.amenya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aspects19", + "email": "ambezos388@hotmail.com" + }, + "records": { + "TXT": "vc-domain-verify=amenya.is-a.dev,d5089d38c63537eecdaf" + } +} diff --git a/domains/_vercel.amitkr.json b/domains/_vercel.amitkr.json new file mode 100644 index 000000000..3efb4d14f --- /dev/null +++ b/domains/_vercel.amitkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "buddhhu", + "email": "amitsharma123234@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=amitkr.is-a.dev,ee59d7888c4ddd580b2a" + } +} diff --git a/domains/_vercel.anaj00.json b/domains/_vercel.anaj00.json index 0351d5239..f88efc62f 100644 --- a/domains/_vercel.anaj00.json +++ b/domains/_vercel.anaj00.json @@ -3,7 +3,7 @@ "username": "anaj00", "discord": "726173201264279583" }, - "record": { + "records": { "TXT": ["vc-domain-verify=anaj00.is-a.dev,68d5c0091e41f6b9cd2f"] } } diff --git a/domains/_vercel.anand.json b/domains/_vercel.anand.json new file mode 100644 index 000000000..84c59bd45 --- /dev/null +++ b/domains/_vercel.anand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anandd17", + "email": "avdoddamani123@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=anand.is-a.dev,3a42c86f85216132b3ef" + } +} diff --git a/domains/_vercel.andres-jaramillo.json b/domains/_vercel.andres-jaramillo.json new file mode 100644 index 000000000..e5be8ea50 --- /dev/null +++ b/domains/_vercel.andres-jaramillo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "andresfer1799", + "email": "andresfer1799@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=andres-jaramillo.is-a.dev,19f46a0dbb75aa279425" + } +} diff --git a/domains/_vercel.andresarr.json b/domains/_vercel.andresarr.json new file mode 100644 index 000000000..9f0954b6a --- /dev/null +++ b/domains/_vercel.andresarr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anonymous1223334444", + "email": "replit005@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=andresarr.is-a.dev,c7c6b930211214eb12c5" + } +} diff --git a/domains/_vercel.aneeqkhurram007.json b/domains/_vercel.aneeqkhurram007.json new file mode 100644 index 000000000..fcf0f0ec7 --- /dev/null +++ b/domains/_vercel.aneeqkhurram007.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aneeqkhurram007", + "email": "aneeqkhurram007@yahoo.com" + }, + "records": { + "TXT": "vc-domain-verify=aneeqkhurram007.is-a.dev,a2ee93d3908119d926c6" + } +} diff --git a/domains/_vercel.aneeshraskar.json b/domains/_vercel.aneeshraskar.json new file mode 100644 index 000000000..9713d7bc0 --- /dev/null +++ b/domains/_vercel.aneeshraskar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zephyrus02", + "email": "aneeshraskar@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=aneeshraskar.is-a.dev,15a32ae23fd15bc3d6ff" + } +} diff --git a/domains/_vercel.ansh.json b/domains/_vercel.ansh.json new file mode 100644 index 000000000..20e767520 --- /dev/null +++ b/domains/_vercel.ansh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anshaneja5", + "email": "anshanejaa@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ansh.is-a.dev,074c2e585d197374e108" + } +} diff --git a/domains/_vercel.anto.json b/domains/_vercel.anto.json index c42655648..99fdc20bf 100644 --- a/domains/_vercel.anto.json +++ b/domains/_vercel.anto.json @@ -3,7 +3,7 @@ "username": "hardianto01", "email": "hardiantojek92@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=anto.is-a.dev,c6f0fc6ee41a39c2c435"] } } diff --git a/domains/_vercel.anujer.json b/domains/_vercel.anujer.json new file mode 100644 index 000000000..1450c88d7 --- /dev/null +++ b/domains/_vercel.anujer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anuj-er", + "email": "anujkumar142000@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=anujer.is-a.dev,5f217a3fd00ee5fff7bc" + } +} diff --git a/domains/_vercel.anushi.json b/domains/_vercel.anushi.json new file mode 100644 index 000000000..e527a2b19 --- /dev/null +++ b/domains/_vercel.anushi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anushi13prsnl", + "email": "anushi4849@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=anushi.is-a.dev,714e2ca17c98df2b9c74" + } +} diff --git a/domains/_vercel.anw.json b/domains/_vercel.anw.json new file mode 100644 index 000000000..6721228c0 --- /dev/null +++ b/domains/_vercel.anw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=anw.is-a.dev,311da8db0edf384b5617" + } +} diff --git a/domains/_vercel.app.vyductan.json b/domains/_vercel.app.vyductan.json new file mode 100644 index 000000000..827fccd3b --- /dev/null +++ b/domains/_vercel.app.vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "records": { + "TXT": "vc-domain-verify=*.vyductan.is-a.dev,f7fc15db084fa96cf967" + } +} diff --git a/domains/_vercel.arceus.json b/domains/_vercel.arceus.json index a2378e847..c9b671c45 100644 --- a/domains/_vercel.arceus.json +++ b/domains/_vercel.arceus.json @@ -3,7 +3,7 @@ "username": "arceusdev", "discord": "1055478076013817936" }, - "record": { + "records": { "TXT": "vc-domain-verify=arceus.is-a.dev,0f512cd8861911af26b6" } } diff --git a/domains/_vercel.arhanansari.json b/domains/_vercel.arhanansari.json new file mode 100644 index 000000000..76bc2cdfc --- /dev/null +++ b/domains/_vercel.arhanansari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=arhanansari.is-a.dev,73384f1ab64fc8f50509" + } +} diff --git a/domains/_vercel.arjuncodess.json b/domains/_vercel.arjuncodess.json new file mode 100644 index 000000000..ae00c5db7 --- /dev/null +++ b/domains/_vercel.arjuncodess.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arjuncodess", + "email": "arjunv.prakash12345@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=arjuncodess.is-a.dev,772c34dd22de18adabaa"] + } +} diff --git a/domains/_vercel.arkan.json b/domains/_vercel.arkan.json new file mode 100644 index 000000000..5f705a102 --- /dev/null +++ b/domains/_vercel.arkan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArizalArkan", + "email": "arizalarkan@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=arkan.is-a.dev,1950c16be793b47f3a76" + } +} diff --git a/domains/_vercel.arlan.json b/domains/_vercel.arlan.json new file mode 100644 index 000000000..01f6e4516 --- /dev/null +++ b/domains/_vercel.arlan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=arlan.is-a.dev,0ab1dd26cecd05574326" + } +} diff --git a/domains/_vercel.arnxv.json b/domains/_vercel.arnxv.json index a950636ca..2f4fd0e34 100644 --- a/domains/_vercel.arnxv.json +++ b/domains/_vercel.arnxv.json @@ -1,13 +1,13 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=arnxv.is-a.dev,2b36da5314d05cea9737", - "vc-domain-verify=works.arnxv.is-a.dev,f8b0553cc89bfe7097fa", - "vc-domain-verify=kind-nodes.arnxv.is-a.dev,ba40e23d4384053b8059" - ] - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "records": { + "TXT": [ + "vc-domain-verify=arnxv.is-a.dev,2b36da5314d05cea9737", + "vc-domain-verify=works.arnxv.is-a.dev,f8b0553cc89bfe7097fa", + "vc-domain-verify=kind-nodes.arnxv.is-a.dev,ba40e23d4384053b8059" + ] + } } diff --git a/domains/_vercel.arshman.json b/domains/_vercel.arshman.json index 3d42d54ea..6b3f4865a 100644 --- a/domains/_vercel.arshman.json +++ b/domains/_vercel.arshman.json @@ -1,9 +1,8 @@ { "owner": { - "username": "syedtahseen", - "email": "" + "username": "syedtahseen" }, - "record": { + "records": { "TXT": ["vc-domain-verify=arshman.is-a.dev,b92115f7845437a44890"] } } diff --git a/domains/_vercel.arunlorenz.json b/domains/_vercel.arunlorenz.json new file mode 100644 index 000000000..8cde50378 --- /dev/null +++ b/domains/_vercel.arunlorenz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arunlorenz", + "email": "nsak1763@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=arunlorenz.is-a.dev,066c5320af2515eb11a3" + } +} diff --git a/domains/_vercel.arvind.json b/domains/_vercel.arvind.json new file mode 100644 index 000000000..31bd15dab --- /dev/null +++ b/domains/_vercel.arvind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coderman400", + "email": "achurox1121@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=arvind.is-a.dev,6078db13fb7b19c2e83d" + } +} diff --git a/domains/_vercel.aryan.json b/domains/_vercel.aryan.json new file mode 100644 index 000000000..0a93e8791 --- /dev/null +++ b/domains/_vercel.aryan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aryanpatel142006", + "email": "aryanpatel142006@gmail.com", + "discord": "aryanpatel142006" + }, + "records": { + "TXT": "vc-domain-verify=aryan.is-a.dev,589c160d472fa2b93174" + } +} diff --git a/domains/_vercel.aryann.json b/domains/_vercel.aryann.json new file mode 100644 index 000000000..7a541a2da --- /dev/null +++ b/domains/_vercel.aryann.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aryanm830", + "email": "aryanm830@proton.me", + "discord": "riftfiree" + }, + "records": { + "TXT": "vc-domain-verify=aryann.is-a.dev,055a43d91c6031804886" + } +} diff --git a/domains/_vercel.ash.json b/domains/_vercel.ash.json index 07148a49e..535bd5a58 100644 --- a/domains/_vercel.ash.json +++ b/domains/_vercel.ash.json @@ -3,7 +3,7 @@ "username": "BloodLetters", "discord": "961870785486671872" }, - "record": { + "records": { "TXT": "vc-domain-verify=ash.is-a.dev,6543a60bcc98259cc8d5" } } diff --git a/domains/_vercel.ashwin-s-nambiar.json b/domains/_vercel.ashwin-s-nambiar.json index a88ce2c77..3c2971cd3 100644 --- a/domains/_vercel.ashwin-s-nambiar.json +++ b/domains/_vercel.ashwin-s-nambiar.json @@ -3,7 +3,7 @@ "username": "ashwin-s-nambiar", "discord": "ashwin_nambiar" }, - "record": { + "records": { "TXT": "vc-domain-verify=ashwin-s-nambiar.is-a.dev,a34b7f9eac4c8f6d6a83" } } diff --git a/domains/_vercel.at-muhammad.json b/domains/_vercel.at-muhammad.json new file mode 100644 index 000000000..67e74846a --- /dev/null +++ b/domains/_vercel.at-muhammad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "xgovernor", + "email": "abutahermuhammad@outlook.com", + "description": "Portfolio website of Abu Taher Muhammad" + }, + "records": { + "TXT": "vc-domain-verify=at-muhammad.is-a.dev,398740ea0c7de20b1a80" + } +} diff --git a/domains/_vercel.athanasopoulos.json b/domains/_vercel.athanasopoulos.json index 5cf63ba90..702b97f84 100644 --- a/domains/_vercel.athanasopoulos.json +++ b/domains/_vercel.athanasopoulos.json @@ -4,7 +4,7 @@ "email": "manos.athanasopoulos@yahoo.gr", "discord": "187183823354724352" }, - "record": { + "records": { "TXT": "vc-domain-verify=athanasopoulos.is-a.dev,56d11a7196dfe6d19e95" } } diff --git a/domains/_vercel.atharvd.json b/domains/_vercel.atharvd.json index ccd8cbb0d..1a4ce1352 100644 --- a/domains/_vercel.atharvd.json +++ b/domains/_vercel.atharvd.json @@ -2,7 +2,7 @@ "owner": { "username": "D-Atharv" }, - "record": { + "records": { "TXT": ["vc-domain-verify=atharvd.is-a.dev,a9192e60bfd581760d17"] } } diff --git a/domains/_vercel.awhvish.json b/domains/_vercel.awhvish.json new file mode 100644 index 000000000..9bc9ff8da --- /dev/null +++ b/domains/_vercel.awhvish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "awhvish", + "email": "avislowha9@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=awhvish.is-a.dev,f4fbe002837b72638f88"] + } +} diff --git a/domains/_vercel.ayushk.json b/domains/_vercel.ayushk.json new file mode 100644 index 000000000..ba55cbc68 --- /dev/null +++ b/domains/_vercel.ayushk.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ayushk-1801", + "email": "ayush.kumara1801@gmail.com", + "discord": "ayushk_1801" + }, + "records": { + "TXT": "vc-domain-verify=ayushk.is-a.dev,339b6861f1513bf39684" + } +} diff --git a/domains/_vercel.azrifatihah.json b/domains/_vercel.azrifatihah.json new file mode 100644 index 000000000..ae2e8fcd2 --- /dev/null +++ b/domains/_vercel.azrifatihah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muhAzri", + "email": "muhammad.azri.f.s@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=azrifatihah.is-a.dev,99b5bc49dc0a636f9bcf" + } +} diff --git a/domains/_vercel.baibhav.json b/domains/_vercel.baibhav.json new file mode 100644 index 000000000..599a65ba6 --- /dev/null +++ b/domains/_vercel.baibhav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Baibhavos", + "email": "baibhavkumar303@gmal.com" + }, + "records": { + "TXT": "vc-domain-verify=baibhav.is-a.dev,b652350d2b3b8f0bef49" + } +} diff --git a/domains/_vercel.bala.json b/domains/_vercel.bala.json new file mode 100644 index 000000000..0bdf78c0a --- /dev/null +++ b/domains/_vercel.bala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=bala.is-a.dev,7d0037d117e48bf24960" + } +} diff --git a/domains/_vercel.balaji.json b/domains/_vercel.balaji.json new file mode 100644 index 000000000..b2cc6049d --- /dev/null +++ b/domains/_vercel.balaji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "balaji-atoa", + "discord": "popz06" + }, + "records": { + "TXT": "vc-domain-verify=balaji.is-a.dev,b4898f8e7508d5de541e" + } +} diff --git a/domains/_vercel.banda.json b/domains/_vercel.banda.json new file mode 100644 index 000000000..d857f4d07 --- /dev/null +++ b/domains/_vercel.banda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bandabahariputra", + "discord": "banda" + }, + "records": { + "TXT": ["vc-domain-verify=banda.is-a.dev,e684b7e614c3912ba446"] + } +} diff --git a/domains/_vercel.barnacl437.json b/domains/_vercel.barnacl437.json new file mode 100644 index 000000000..c3dc2f85c --- /dev/null +++ b/domains/_vercel.barnacl437.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Barnacl437", + "email": "barnacl437@proton.me" + }, + "records": { + "TXT": "vc-domain-verify=blog.barnacl437.is-a.dev,835f01acb5999fa8605a" + } +} diff --git a/domains/_vercel.bdn-fr.json b/domains/_vercel.bdn-fr.json new file mode 100644 index 000000000..fda648255 --- /dev/null +++ b/domains/_vercel.bdn-fr.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "bdn-fr" + }, + "records": { + "TXT": "vc-domain-verify=bdn-fr.is-a.dev,85271b1cab848c134027" + } +} diff --git a/domains/_vercel.bhavyagupta.json b/domains/_vercel.bhavyagupta.json new file mode 100644 index 000000000..1e392238e --- /dev/null +++ b/domains/_vercel.bhavyagupta.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BhavyaGupta315", + "email": "bhavyagupta315@gmail.com", + "discord": "bhavya_gupta_" + }, + "records": { + "TXT": "vc-domain-verify=bhavyagupta.is-a.dev,6ad4b583ec5dfd020162" + } +} diff --git a/domains/_vercel.bhushankhopkarr.json b/domains/_vercel.bhushankhopkarr.json index 969c478a0..f81af6729 100644 --- a/domains/_vercel.bhushankhopkarr.json +++ b/domains/_vercel.bhushankhopkarr.json @@ -2,7 +2,7 @@ "owner": { "username": "bhushankhopkarr" }, - "record": { + "records": { "TXT": ["vc-domain-verify=bhushankhopkarr.is-a.dev,13f67c25702161e88fce"] } } diff --git a/domains/_vercel.bilalmansuri.json b/domains/_vercel.bilalmansuri.json new file mode 100644 index 000000000..40d8d1f97 --- /dev/null +++ b/domains/_vercel.bilalmansuri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bilal-23", + "email": "work.bilalmansuri@gmail.com", + "discord": "bilal_23" + }, + "records": { + "TXT": "vc-domain-verify=bilal.is-a.dev,de7575c2e6976d25ab24" + } +} diff --git a/domains/_vercel.bladimir.json b/domains/_vercel.bladimir.json new file mode 100644 index 000000000..8084724f8 --- /dev/null +++ b/domains/_vercel.bladimir.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Esbruiz", + "discord": "190241825540276245", + "email": "esbruizc@gmail.com", + "bluesky": "did:plc:xkczclld4e5vvpypnu5z6m2g" + }, + "records": { + "TXT": "vc-domain-verify=bladimir.is-a.dev,e64e9cb20c3d9e344c18" + } +} diff --git a/domains/_vercel.blog.chuyentinorz.json b/domains/_vercel.blog.chuyentinorz.json index 09c735fba..0e0a83ff3 100644 --- a/domains/_vercel.blog.chuyentinorz.json +++ b/domains/_vercel.blog.chuyentinorz.json @@ -6,7 +6,7 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { + "records": { "TXT": ["vc-domain-verify=blog.chuyentinorz.is-a.dev,8c86561445eea418c27a"] } } diff --git a/domains/_vercel.blog.jumanji.json b/domains/_vercel.blog.jumanji.json new file mode 100644 index 000000000..35a6a0884 --- /dev/null +++ b/domains/_vercel.blog.jumanji.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "heyjumanji" + }, + "records": { + "TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"] + } +} diff --git a/domains/_vercel.bm.json b/domains/_vercel.bm.json new file mode 100644 index 000000000..9c6a749c7 --- /dev/null +++ b/domains/_vercel.bm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BM87006", + "email": "bm.is.a.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=bm.is-a.dev,d8bab26fdcf36f857b96" + } +} diff --git a/domains/_vercel.bumidenpasar.json b/domains/_vercel.bumidenpasar.json new file mode 100644 index 000000000..a2396c12f --- /dev/null +++ b/domains/_vercel.bumidenpasar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BumiDenpasar", + "instagram": "ibummmbumi" + }, + "records": { + "TXT": "vc-domain-verify=bumidenpasar.is-a.dev,2acace80e7ea336fd678" + } +} diff --git a/domains/_vercel.caelan.json b/domains/_vercel.caelan.json new file mode 100644 index 000000000..1f75107d3 --- /dev/null +++ b/domains/_vercel.caelan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CaeCur", + "email": "caelan.curry+isadev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=caelan.is-a.dev,8b8aef79a843715439f0" + } +} diff --git a/domains/_vercel.cedrickfeze.json b/domains/_vercel.cedrickfeze.json new file mode 100644 index 000000000..d19393d42 --- /dev/null +++ b/domains/_vercel.cedrickfeze.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cedrickdev", + "email": "cedrickv.tchindaf@hes-so.ch" + }, + "records": { + "TXT": "vc-domain-verify=cedrickfeze.is-a.dev,71a63578cf6cddd91370" + } +} diff --git a/domains/_vercel.cesarmr.json b/domains/_vercel.cesarmr.json index 2a0026efe..0412f60c0 100644 --- a/domains/_vercel.cesarmr.json +++ b/domains/_vercel.cesarmr.json @@ -4,7 +4,7 @@ "email": "c3s1r@proton.me", "discord": "740861702215565333" }, - "record": { + "records": { "TXT": "vc-domain-verify=cesarmr.is-a.dev,f90aad152beffe874989" } } diff --git a/domains/_vercel.cgmuros.json b/domains/_vercel.cgmuros.json new file mode 100644 index 000000000..6fed819ac --- /dev/null +++ b/domains/_vercel.cgmuros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cgmuros", + "email": "cgmuros@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=cgmuros.is-a.dev,12145ac3f3c3d53d6095" + } +} diff --git a/domains/_vercel.chamal1120.json b/domains/_vercel.chamal1120.json new file mode 100644 index 000000000..8544beb1a --- /dev/null +++ b/domains/_vercel.chamal1120.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chamal1120", + "email": "kenway213beep@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=chamal1120.is-a.dev,cfcb568d46b4ccb8601f" + } +} diff --git a/domains/_vercel.chandsi.json b/domains/_vercel.chandsi.json index 9817f69bc..0ffab37ae 100644 --- a/domains/_vercel.chandsi.json +++ b/domains/_vercel.chandsi.json @@ -3,7 +3,7 @@ "username": "Gauravisdev", "discord": "1119494339735867422" }, - "record": { + "records": { "TXT": ["vc-domain-verify=chandsi.is-a.dev,8654576292b580f414fe"] } } diff --git a/domains/_vercel.charly.json b/domains/_vercel.charly.json new file mode 100644 index 000000000..88f2a8333 --- /dev/null +++ b/domains/_vercel.charly.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "soy-charly", + "email": "carlos.scarrasco08@gmail.com", + "discord": "charly0572" + }, + "records": { + "TXT": "vc-domain-verify=charly.is-a.dev,ecb785240907dd83c0cc" + } +} diff --git a/domains/_vercel.chirxg.json b/domains/_vercel.chirxg.json new file mode 100644 index 000000000..4cca1bbc1 --- /dev/null +++ b/domains/_vercel.chirxg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "definitelynotchirag", + "email": "chiragdave1888@gmail.com", + "discord": "hellchirag" + }, + "records": { + "TXT": "vc-domain-verify=chirxg.is-a.dev,701cf9d2a75e9216fd53" + } +} diff --git a/domains/_vercel.chrisbase12.json b/domains/_vercel.chrisbase12.json index 0ca5c7765..bbc02a09d 100644 --- a/domains/_vercel.chrisbase12.json +++ b/domains/_vercel.chrisbase12.json @@ -2,7 +2,7 @@ "owner": { "username": "OverCharred" }, - "record": { + "records": { "TXT": "vc-domain-verify=chrisbase12.is-a.dev,2adfe83fcf59b08d47b0" } } diff --git a/domains/_vercel.chriscent.json b/domains/_vercel.chriscent.json new file mode 100644 index 000000000..ee688c3d4 --- /dev/null +++ b/domains/_vercel.chriscent.json @@ -0,0 +1,11 @@ +{ + "description": "A practice portfolio for web design challenges.", + "repo": "https://github.com/KishonShrill/website-portfolio", + "owner": { + "username": "KishonShrill", + "email": "crystalbluew@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=chriscent.is-a.dev,0bd491999fe494552e50" + } +} diff --git a/domains/_vercel.chuyentinorz.json b/domains/_vercel.chuyentinorz.json index f8a6c0b83..dc74c5549 100644 --- a/domains/_vercel.chuyentinorz.json +++ b/domains/_vercel.chuyentinorz.json @@ -1,13 +1,11 @@ { - "description": "Vercel verification of chuyentinorz.is-a.dev", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "TXT": [ - "vc-domain-verify=chuyentinorz.is-a.dev,46d8c5be943cf4eb7cd2" - ] - } + "description": "Vercel verification of chuyentinorz.is-a.dev", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "records": { + "TXT": ["vc-domain-verify=chuyentinorz.is-a.dev,46d8c5be943cf4eb7cd2"] + } } diff --git a/domains/_vercel.cnvrs.json b/domains/_vercel.cnvrs.json index 5c31fec88..7e860dfab 100644 --- a/domains/_vercel.cnvrs.json +++ b/domains/_vercel.cnvrs.json @@ -2,7 +2,7 @@ "owner": { "username": "2nvrs" }, - "record": { + "records": { "TXT": ["vc-domain-verify=cnvrs.is-a.dev,759e0953091c88d99f57"] } } diff --git a/domains/_vercel.coderzen.json b/domains/_vercel.coderzen.json new file mode 100644 index 000000000..b77135e1f --- /dev/null +++ b/domains/_vercel.coderzen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Realtrickz", + "email": "isamismail8273@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=coderzen.is-a.dev,5ccfa8ada71ce5978b97" + } +} diff --git a/domains/_vercel.codesoft.json b/domains/_vercel.codesoft.json new file mode 100644 index 000000000..a133db09b --- /dev/null +++ b/domains/_vercel.codesoft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "records": { + "TXT": "vc-domain-verify=codesoft.is-a.dev,18c04513308f15b350a9" + } +} diff --git a/domains/_vercel.codexkun.json b/domains/_vercel.codexkun.json new file mode 100644 index 000000000..eab46924e --- /dev/null +++ b/domains/_vercel.codexkun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KunalBishwal", + "email": "kunalbishwal2004@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=codexkun.is-a.dev,0c262cd5c5e3a73e7717" + } +} diff --git a/domains/_vercel.computerblade.json b/domains/_vercel.computerblade.json index f4053f971..d7651c1bb 100644 --- a/domains/_vercel.computerblade.json +++ b/domains/_vercel.computerblade.json @@ -1,8 +1,8 @@ -{ - "owner": { - "username": "computerblade-official" - }, - "record": { - "TXT": ["vc-domain-verify=computerblade.is-a.dev,0b4d70954aeb7d2d0656"] - } -} +{ + "owner": { + "username": "computerblade-official" + }, + "records": { + "TXT": ["vc-domain-verify=computerblade.is-a.dev,0b4d70954aeb7d2d0656"] + } +} diff --git a/domains/_vercel.crazo7924.json b/domains/_vercel.crazo7924.json index 923948162..eb8f67a8b 100644 --- a/domains/_vercel.crazo7924.json +++ b/domains/_vercel.crazo7924.json @@ -1,10 +1,9 @@ { "owner": { "username": "crazo7924", - "discord": "466605393309859840", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lK0DenxkbchUi8yOUyDH6gdvlQs6bXJRyaYAYCBgVjJUUoQ61fUcOHtdb2fltgObjiNYVqGywMpRFLuUOjQN3Uxb8Uv-NTND52eAkakL1xh4Vj5sbsVr05ehnAlCXDO1ykZpkn4kwldQBOQcYUFkNVhxFblPQO7jAybjc9QNpqsgW113BrPsY7aN0TWhARO8JTiWtOQT8oKfCqfYZH3F7qiU1wk-pvwaQBWy8Jiu0CiKQmTzIT4lN3lCCZpNL0PiyLXcSZEuEGzmt_LFuHcGtYrwavaN2ZbrC6gb_U4L6sBRAx5NNPDuEBMtX9ncP5WCDikgMVXsftbXW_KU8yHhVQ.wUUcKotRy8LSzAU6amSQ9A.on4Jq5kL1mB9zWF3OlqN2ckyZjOYboXbE_RzWE2UHOADNEDogYLvEl9rU3J6JNlw6fXyRFyDjNnosUvNBC2tBl7tSyrMaWkDXoWW8q3OoKhv1r0fUuNl93epFeYMg3yr.pUMvwVEA92EQgEXTwm2_PQ" + "discord": "466605393309859840" }, - "record": { + "records": { "TXT": "vc-domain-verify=blog.crazo7924.is-a.dev,08987fe260da74fe448e" } } diff --git a/domains/_vercel.cryptid.json b/domains/_vercel.cryptid.json index 34713092c..9206e71c7 100644 --- a/domains/_vercel.cryptid.json +++ b/domains/_vercel.cryptid.json @@ -4,7 +4,7 @@ "email": "cryptid@thingai.xyz", "discord": "545305641212706819" }, - "record": { + "records": { "TXT": "vc-domain-verify=cryptid.is-a.dev,c6c6b86d7991baca2498" } } diff --git a/domains/_vercel.crystal.json b/domains/_vercel.crystal.json new file mode 100644 index 000000000..5f8e05a9d --- /dev/null +++ b/domains/_vercel.crystal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "crystalbajgai", + "email": "crystalbajgai@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=crystal.is-a.dev,ef573673a0e376748ea9" + } +} diff --git a/domains/_vercel.cutedog5695.json b/domains/_vercel.cutedog5695.json index aadb56683..ac439b3e4 100644 --- a/domains/_vercel.cutedog5695.json +++ b/domains/_vercel.cutedog5695.json @@ -4,7 +4,7 @@ "discord": "716306888492318790", "twitter": "iostpa" }, - "record": { + "records": { "TXT": "vc-domain-verify=vercel.cutedog5695.is-a.dev,92820276b2029f5426ec" } } diff --git a/domains/_vercel.cynik.json b/domains/_vercel.cynik.json new file mode 100644 index 000000000..ee11fe6e0 --- /dev/null +++ b/domains/_vercel.cynik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "criticic", + "email": "acriticalcynic@outlook.com" + }, + "records": { + "TXT": "vc-domain-verify=cynik.is-a.dev,c3bf65e6e52c2bd9ce40" + } +} diff --git a/domains/_vercel.dai.json b/domains/_vercel.dai.json new file mode 100644 index 000000000..0e4355312 --- /dev/null +++ b/domains/_vercel.dai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ncdai", + "email": "dai@chanhdai.com" + }, + "records": { + "TXT": ["vc-domain-verify=dai.is-a.dev,1f58fc0d6c2eb6cc92d7"] + } +} diff --git a/domains/_vercel.daim.json b/domains/_vercel.daim.json index 511e8b8db..164a4c8ad 100644 --- a/domains/_vercel.daim.json +++ b/domains/_vercel.daim.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "sYnceDez41", - "email": "zdaim78@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=daim.is-a.dev,d88985a4876213470d49" - ] - } + "owner": { + "username": "sYnceDez41", + "email": "zdaim78@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=daim.is-a.dev,d88985a4876213470d49"] + } } diff --git a/domains/_vercel.damian.json b/domains/_vercel.damian.json new file mode 100644 index 000000000..2bc01230e --- /dev/null +++ b/domains/_vercel.damian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meliadamian17", + "email": "meliadamian17@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=damian.is-a.dev,4dce4cc5e2ccdbc3e472" + } +} diff --git a/domains/_vercel.dang.json b/domains/_vercel.dang.json new file mode 100644 index 000000000..1e8ac91a7 --- /dev/null +++ b/domains/_vercel.dang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chanhdangcom", + "email": "ncdang@quaric.com" + }, + "records": { + "TXT": ["vc-domain-verify=dang.is-a.dev,75e81b9a2a5ada157a8e"] + } +} diff --git a/domains/_vercel.danieltampe.json b/domains/_vercel.danieltampe.json new file mode 100644 index 000000000..802ae1e9d --- /dev/null +++ b/domains/_vercel.danieltampe.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DanielTampeCaamano", + "email": "danieltampe@hotmail.com", + "discord": "246811015285571586" + }, + "records": { + "TXT": "vc-domain-verify=danieltampe.is-a.dev,0d68ec9f81c4e5ed7837" + } +} diff --git a/domains/_vercel.darkyzhou.json b/domains/_vercel.darkyzhou.json new file mode 100644 index 000000000..d47b7961a --- /dev/null +++ b/domains/_vercel.darkyzhou.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "darkyzhou", + "email": "me@zqy.io" + }, + "records": { + "TXT": "vc-domain-verify=darkyzhou.is-a.dev,811f7082bde4a2cf77b8" + } +} diff --git a/domains/_vercel.darshan.json b/domains/_vercel.darshan.json new file mode 100644 index 000000000..60a09b6c6 --- /dev/null +++ b/domains/_vercel.darshan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dqrshan", + "email": "darshan310268@gmail.com", + "discord": "838620835282812969" + }, + "records": { + "TXT": "vc-domain-verify=darshan.is-a.dev,f0974387e063ffff633d" + } +} diff --git a/domains/_vercel.davechbga.json b/domains/_vercel.davechbga.json new file mode 100644 index 000000000..1a8b64e4c --- /dev/null +++ b/domains/_vercel.davechbga.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "davechbga" + }, + "records": { + "TXT": "vc-domain-verify=davechbga.is-a.dev,54fb1a1b8fbc8affd8f7" + } +} diff --git a/domains/_vercel.davr.json b/domains/_vercel.davr.json new file mode 100644 index 000000000..a0eb95a9a --- /dev/null +++ b/domains/_vercel.davr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cernoh", + "email": "davincey06@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=davr.is-a.dev,ac46906b38acef6b29bf" + } +} diff --git a/domains/_vercel.deadshot.json b/domains/_vercel.deadshot.json new file mode 100644 index 000000000..c9af99a4e --- /dev/null +++ b/domains/_vercel.deadshot.json @@ -0,0 +1,12 @@ +{ + "description": "A simple portfolio template made by me.", + "repo": "https://github.com/deadshotofficial/minimal-portfolio", + "owner": { + "username": "deadshotofficial", + "email": "deadshot3r@pm.me", + "discord": "416952474587496449" + }, + "records": { + "TXT": "vc-domain-verify=deadshot.is-a.dev,5bc34658e6351c74153c" + } +} diff --git a/domains/_vercel.debaditya.json b/domains/_vercel.debaditya.json new file mode 100644 index 000000000..85c9e7574 --- /dev/null +++ b/domains/_vercel.debaditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DebadityaMalakar", + "email": "debadityamalakar@outlook.com" + }, + "records": { + "TXT": "vc-domain-verify=debaditya.is-a.dev,f128baf9ce52685deeb4" + } +} diff --git a/domains/_vercel.deeptanshu.json b/domains/_vercel.deeptanshu.json new file mode 100644 index 000000000..2dfeb0fe4 --- /dev/null +++ b/domains/_vercel.deeptanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Deeptanshuu", + "email": "laldeeptanshu96@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=deeptanshu.is-a.dev,28a4f0adf29f7fd2f9c3" + } +} diff --git a/domains/_vercel.devanshu.json b/domains/_vercel.devanshu.json new file mode 100644 index 000000000..385d3b278 --- /dev/null +++ b/domains/_vercel.devanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevanshuTripathi", + "email": "aditheprince120@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=devanshu.is-a.dev,e278253baf18d3dda9c1" + } +} diff --git a/domains/_vercel.devmatei.json b/domains/_vercel.devmatei.json deleted file mode 100644 index 3d3f09f75..000000000 --- a/domains/_vercel.devmatei.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "devmatei" - }, - "record": { - "TXT": ["vc-domain-verify=chatbot.devmatei.is-a.dev,6928d211a16fe5cd94d1"] - } -} diff --git a/domains/_vercel.dhika.json b/domains/_vercel.dhika.json new file mode 100644 index 000000000..d5c713887 --- /dev/null +++ b/domains/_vercel.dhika.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thisisdhika", + "email": "dhikaardana87@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=dhika.is-a.dev,3b4f3c565c41289d2f66" + } +} diff --git a/domains/_vercel.dilpreetgrover.json b/domains/_vercel.dilpreetgrover.json new file mode 100644 index 000000000..c8baf8172 --- /dev/null +++ b/domains/_vercel.dilpreetgrover.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dfordp", + "email": "dilpreetgrover2@gmail.com", + "discord": "dfordp" + }, + "records": { + "TXT": "vc-domain-verify=dilpreetgrover.is-a.dev,a46f6b3fc877e4d2cbcc" + } +} diff --git a/domains/_vercel.dimasandriano.json b/domains/_vercel.dimasandriano.json index 52c2f0077..03d1e3693 100644 --- a/domains/_vercel.dimasandriano.json +++ b/domains/_vercel.dimasandriano.json @@ -3,7 +3,7 @@ "username": "dimasandriano", "email": "dimas.andriano.h@gmail.com" }, - "record": { + "records": { "TXT": "vc-domain-verify=dimasandriano.is-a.dev,e6171f1cd28f96238ae2" } } diff --git a/domains/_vercel.dishant.json b/domains/_vercel.dishant.json new file mode 100644 index 000000000..016715cfc --- /dev/null +++ b/domains/_vercel.dishant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dishant402955", + "email": "dishantradadiya3036@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=dishant.is-a.dev,cfc2c6cd0ad49054757b" + } +} diff --git a/domains/_vercel.divyanshudhruv.json b/domains/_vercel.divyanshudhruv.json new file mode 100644 index 000000000..b2677a435 --- /dev/null +++ b/domains/_vercel.divyanshudhruv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "divyanshudhruv", + "email": "divyanshudhruv24@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=divyanshudhruv.is-a.dev,3736859f922a85d87e46"] + } +} diff --git a/domains/_vercel.divyanshuvashu.json b/domains/_vercel.divyanshuvashu.json new file mode 100644 index 000000000..1b961e3bf --- /dev/null +++ b/domains/_vercel.divyanshuvashu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "divyanshu-vashu", + "email": "vashusingh2004.jan@gmail.com", + "discord": "ram_ravan69" + }, + "records": { + "TXT": "vc-domain-verify=divyanshuvashu.is-a.dev,26b8f5f55295c4a8ec71" + } +} diff --git a/domains/_vercel.docs.flowwing.json b/domains/_vercel.docs.flowwing.json new file mode 100644 index 000000000..972f9fc74 --- /dev/null +++ b/domains/_vercel.docs.flowwing.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation Flow-Wing Programming Language", + "repo": "https://github.com/kushagra1212/Flow-Wing", + "owner": { + "username": "kushagra1212", + "email": "kushagrarathore002@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=docs.flowwing.is-a.dev,8a0161596d3b715322c0" + } +} diff --git a/domains/_vercel.dokiet.json b/domains/_vercel.dokiet.json new file mode 100644 index 000000000..40914389d --- /dev/null +++ b/domains/_vercel.dokiet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kietdo-dev", + "email": "lionvs12345@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=dokiet.is-a.dev,1e2bde9af2e3aef379fd" + } +} diff --git a/domains/_vercel.drew.json b/domains/_vercel.drew.json new file mode 100644 index 000000000..a80d1f14e --- /dev/null +++ b/domains/_vercel.drew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zessu", + "email": "regime-pluck-gulf@duck.com" + }, + "records": { + "TXT": "vc-domain-verify=drew.is-a.dev,78b1c3bcf18815fe9bfe" + } +} diff --git a/domains/_vercel.drive.alora.json b/domains/_vercel.drive.alora.json index 4ea73e91a..a628d23ea 100644 --- a/domains/_vercel.drive.alora.json +++ b/domains/_vercel.drive.alora.json @@ -4,7 +4,7 @@ "email": "xaloramia@gmail.com", "discord": "1236292707371057216" }, - "record": { + "records": { "TXT": "vc-domain-verify=drive.alora.is-a.dev,395400702612ae6db6a8" } } diff --git a/domains/_vercel.duypt14.json b/domains/_vercel.duypt14.json new file mode 100644 index 000000000..8a6d9b99c --- /dev/null +++ b/domains/_vercel.duypt14.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ptduy14", + "email": "phantanduy14@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=duypt14.is-a.dev,14245b40810d20910d2a" + } +} diff --git a/domains/_vercel.ebooks.json b/domains/_vercel.ebooks.json new file mode 100644 index 000000000..d3387c301 --- /dev/null +++ b/domains/_vercel.ebooks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "records": { + "TXT": "vc-domain-verify=ebooks.is-a.dev,5fa4e0aa7b17c9f52a9d" + } +} diff --git a/domains/_vercel.elvis-tran.json b/domains/_vercel.elvis-tran.json new file mode 100644 index 000000000..4b13c4933 --- /dev/null +++ b/domains/_vercel.elvis-tran.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "totargaming", + "email": "elvistranhere@gmail.com", + "discord": "elvistran.here" + }, + "records": { + "TXT": ["vc-domain-verify=elvis-tran.is-a.dev,cb733ac2167fe3a593a3"] + } +} diff --git a/domains/_vercel.elyesghorbel.json b/domains/_vercel.elyesghorbel.json new file mode 100644 index 000000000..7f49259c2 --- /dev/null +++ b/domains/_vercel.elyesghorbel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "elyescesar", + "email": "elyesghorbeldev@gmail.com", + "discord": "840182191244705802" + }, + "records": { + "TXT": "vc-domain-verify=elyesghorbel.is-a.dev,7c52422c3800285ef8f7" + } +} diff --git a/domains/_vercel.emanuel-prado.json b/domains/_vercel.emanuel-prado.json new file mode 100644 index 000000000..42db72a2d --- /dev/null +++ b/domains/_vercel.emanuel-prado.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emanu-dev", + "email": "emanuel.prado.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=emanuel-prado.is-a.dev,2852fb034d376417491f" + } +} diff --git a/domains/_vercel.ericksantos.json b/domains/_vercel.ericksantos.json new file mode 100644 index 000000000..c8cc5c81f --- /dev/null +++ b/domains/_vercel.ericksantos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "erickjonatthan", + "email": "erick.jonathan@ufrpe.br" + }, + "records": { + "TXT": "vc-domain-verify=ericksantos.is-a.dev,b3536d938f21875ae7fb" + } +} diff --git a/domains/_vercel.ethantran.json b/domains/_vercel.ethantran.json new file mode 100644 index 000000000..1ee1d4a74 --- /dev/null +++ b/domains/_vercel.ethantran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ethanxcode", + "email": "trannguyendanhuy2904@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ethantran.is-a.dev,5f35b845871b948c0035" + } +} diff --git a/domains/_vercel.exigent-app.json b/domains/_vercel.exigent-app.json index 3d5a4cb30..5d5f9d764 100644 --- a/domains/_vercel.exigent-app.json +++ b/domains/_vercel.exigent-app.json @@ -3,7 +3,7 @@ "username": "Exigent07", "discord": "exigent07" }, - "record": { + "records": { "TXT": "vc-domain-verify=exigent-app.is-a.dev,e9abd842187022c39fa4" } } diff --git a/domains/_vercel.f3ntt.json b/domains/_vercel.f3ntt.json index 646ee1ea8..5ae73bd4b 100644 --- a/domains/_vercel.f3ntt.json +++ b/domains/_vercel.f3ntt.json @@ -2,7 +2,7 @@ "owner": { "username": "2nvrs" }, - "record": { + "records": { "TXT": ["vc-domain-verify=f3ntt.is-a.dev,dc540a58beec30597866"] } } diff --git a/domains/_vercel.fabien.json b/domains/_vercel.fabien.json new file mode 100644 index 000000000..012124f7b --- /dev/null +++ b/domains/_vercel.fabien.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fabien-h", + "email": "fabien.huet@gmail.com", + "discord": "fabien_huet" + }, + "records": { + "TXT": "vc-domain-verify=fabien.is.a.dev,65d8329499551546ef22" + } +} diff --git a/domains/_vercel.factory.json b/domains/_vercel.factory.json new file mode 100644 index 000000000..f1b0fdb73 --- /dev/null +++ b/domains/_vercel.factory.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "orangci", + "email": "c@orangc.net" + }, + "records": { + "TXT": ["vc-domain-verify=factory.is-a.dev,482c23b2de7e2ba81e1e"] + } +} diff --git a/domains/_vercel.farooq.json b/domains/_vercel.farooq.json index 32d631ffd..54b462a10 100644 --- a/domains/_vercel.farooq.json +++ b/domains/_vercel.farooq.json @@ -1,10 +1,9 @@ { "owner": { "username": "fexxix", - "email": "fexxix@gmail.com", - "discord": "" + "email": "fexxix@gmail.com" }, - "record": { + "records": { "TXT": "vc-domain-verify=farooq.is-a.dev,a240a8b43ff88d419864" } } diff --git a/domains/_vercel.farouk.json b/domains/_vercel.farouk.json new file mode 100644 index 000000000..0ba0a2168 --- /dev/null +++ b/domains/_vercel.farouk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "faroukchebaiki", + "email": "farouk.chebaiki@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=farouk.is-a.dev,ec3de2841315d1108853" + } +} diff --git a/domains/_vercel.fbik.json b/domains/_vercel.fbik.json new file mode 100644 index 000000000..47e77d25e --- /dev/null +++ b/domains/_vercel.fbik.json @@ -0,0 +1,10 @@ +{ + "description": "Vercel Domain Verification", + "owner": { + "username": "FBIKdot", + "email": "fbik@duck.com" + }, + "records": { + "TXT": "vc-domain-verify=fbik.is-a.dev,0a7d295b422625e5916c" + } +} diff --git a/domains/_vercel.felipe.json b/domains/_vercel.felipe.json new file mode 100644 index 000000000..c675cf2c4 --- /dev/null +++ b/domains/_vercel.felipe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "felipecalderon", + "email": "hola@felipe.bio" + }, + "records": { + "TXT": ["vc-domain-verify=felipe.is-a.dev,07f2247f0a80372e5d48"] + } +} diff --git a/domains/_vercel.fendimohamed.json b/domains/_vercel.fendimohamed.json new file mode 100644 index 000000000..041ac2968 --- /dev/null +++ b/domains/_vercel.fendimohamed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FendiMohamed", + "email": "fendimohamed615@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=fendimohamed.is-a.dev,36783fd4f5b7c8306eb5" + } +} diff --git a/domains/_vercel.fodilfliti.json b/domains/_vercel.fodilfliti.json new file mode 100644 index 000000000..14cbd590d --- /dev/null +++ b/domains/_vercel.fodilfliti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fodilfliti", + "email": "fodilfliti150@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=fodilfliti.is-a.dev,4fd9fffa402a9f014dc9" + } +} diff --git a/domains/_vercel.formuna.json b/domains/_vercel.formuna.json index ca43747eb..8498f262d 100644 --- a/domains/_vercel.formuna.json +++ b/domains/_vercel.formuna.json @@ -3,7 +3,7 @@ "username": "FormunaGit", "discord": "754657845563097108" }, - "record": { + "records": { "TXT": "vc-domain-verify=api.formuna.is-a.dev,d52d0266198bf7ac4e7d" } } diff --git a/domains/_vercel.francodurand.json b/domains/_vercel.francodurand.json new file mode 100644 index 000000000..7622d8c17 --- /dev/null +++ b/domains/_vercel.francodurand.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "FrancoDurand" + }, + "records": { + "TXT": "vc-domain-verify=francodurand.is-a.dev,ad7840fa5cb01e5d90c1" + } +} diff --git a/domains/_vercel.francoleon.json b/domains/_vercel.francoleon.json new file mode 100644 index 000000000..93de30047 --- /dev/null +++ b/domains/_vercel.francoleon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "francoleon08", + "email": "francoleon284@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=francoleon.is-a.dev,ead369809cf9c9018296" + } +} diff --git a/domains/_vercel.fryvex.json b/domains/_vercel.fryvex.json new file mode 100644 index 000000000..322bb3983 --- /dev/null +++ b/domains/_vercel.fryvex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x1yl", + "discord": "627947214576025610" + }, + "records": { + "TXT": "vc-domain-verify=fryvex.is-a.dev,e21cd006ac5a44e6958e" + } +} diff --git a/domains/_vercel.funinkina.json b/domains/_vercel.funinkina.json new file mode 100644 index 000000000..3b8818a69 --- /dev/null +++ b/domains/_vercel.funinkina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "funinkina", + "email": "aryankushwaha3101@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=funinkina.is-a.dev,8581bc99ee19dbb2326b" + } +} diff --git a/domains/_vercel.fynnlukah.json b/domains/_vercel.fynnlukah.json new file mode 100644 index 000000000..e0ce8d417 --- /dev/null +++ b/domains/_vercel.fynnlukah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fynnlukah", + "discord": "727590288209608824" + }, + "records": { + "TXT": "vc-domain-verify=fynnlukah.is-a.dev,cb31ebf997d8ee866ca5" + } +} diff --git a/domains/_vercel.gb.json b/domains/_vercel.gb.json new file mode 100644 index 000000000..9b8f6277b --- /dev/null +++ b/domains/_vercel.gb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gbijwe", + "email": "gaurav.a.bijwe@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=gb.is-a.dev,a243301b3c4cc33de482" + } +} diff --git a/domains/_vercel.gcet.aaqif.json b/domains/_vercel.gcet.aaqif.json new file mode 100644 index 000000000..dce9c2857 --- /dev/null +++ b/domains/_vercel.gcet.aaqif.json @@ -0,0 +1,10 @@ +{ + "description": "Gcet Project", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=gcet.aaqif.is-a.dev,51f4e956bd2e1a1f9160"] + } +} diff --git a/domains/_vercel.gizzy.json b/domains/_vercel.gizzy.json index fbe71f454..fe21599ad 100644 --- a/domains/_vercel.gizzy.json +++ b/domains/_vercel.gizzy.json @@ -3,7 +3,7 @@ "username": "GizzyUwU", "discord": "669947245776338994" }, - "record": { + "records": { "TXT": "vc-domain-verify=api.gizzy.is-a.dev,34435322ec6f3a031174" } } diff --git a/domains/_vercel.glitched-da-kitty-cat.json b/domains/_vercel.glitched-da-kitty-cat.json new file mode 100644 index 000000000..bc35e876f --- /dev/null +++ b/domains/_vercel.glitched-da-kitty-cat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GlitchedDaKittyCatSchoolaccount", + "email": "glitcheddacat@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=glitched-da-kitty-cat.is-a.dev,d3ead0cedf604d462fbb" + } +} diff --git a/domains/_vercel.gokulbarath.json b/domains/_vercel.gokulbarath.json index 982bb600d..fc0f938bf 100644 --- a/domains/_vercel.gokulbarath.json +++ b/domains/_vercel.gokulbarath.json @@ -3,7 +3,7 @@ "username": "gokul6350", "email": "gokul00060@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=gokulbarath.is-a.dev,b6d252e3dde12b69cc05"] } } diff --git a/domains/_vercel.gongal.json b/domains/_vercel.gongal.json new file mode 100644 index 000000000..683c72b71 --- /dev/null +++ b/domains/_vercel.gongal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mayankgongal5", + "email": "mayank@clovers.live" + }, + "records": { + "TXT": "vc-domain-verify=gongal.is-a.dev,91c7a4f0358c6631f158" + } +} diff --git a/domains/_vercel.goutam.json b/domains/_vercel.goutam.json index 2e3ff7287..738aac14f 100644 --- a/domains/_vercel.goutam.json +++ b/domains/_vercel.goutam.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "MatrixCoder0101" - }, - "record": { - "TXT": [ - "vc-domain-verify=goutam.is-a.dev,cde668462cf6a679633f" - ] - } + "owner": { + "username": "MatrixCoder0101" + }, + "records": { + "TXT": ["vc-domain-verify=goutam.is-a.dev,cde668462cf6a679633f"] + } } diff --git a/domains/_vercel.graxya.json b/domains/_vercel.graxya.json new file mode 100644 index 000000000..219e0b3ba --- /dev/null +++ b/domains/_vercel.graxya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GratiaManullang03", + "email": "felixmanullang81@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=graxya.is-a.dev,f57c22ab53c078ea60ce" + } +} diff --git a/domains/_vercel.grazitukozaki.json b/domains/_vercel.grazitukozaki.json new file mode 100644 index 000000000..69d2abf8c --- /dev/null +++ b/domains/_vercel.grazitukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GrazielyTukozaki", + "email": "grazitukozaki@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=grazitukozaki.is-a.dev,f0e6150082fdc4fa5b27" + } +} diff --git a/domains/_vercel.guidocaru.json b/domains/_vercel.guidocaru.json new file mode 100644 index 000000000..1a8460c23 --- /dev/null +++ b/domains/_vercel.guidocaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "guidocaru", + "discord": "696554384817127486" + }, + "records": { + "TXT": "vc-domain-verify=guidocaru.is-a.dev,6106f8de674c39bfb732" + } +} diff --git a/domains/_vercel.gunman.json b/domains/_vercel.gunman.json index b63ab8209..65b2bf6f9 100644 --- a/domains/_vercel.gunman.json +++ b/domains/_vercel.gunman.json @@ -1,12 +1,10 @@ { - "owner": { + "owner": { "username": "MukuJhansi", "email": "mukundagrawal800@gmail.com", "discord": "1115658967012626542" - }, - "record": { - "TXT": [ - "vc-domain-verify=gunman.is-a.dev,a31e97770fb8c89e3b57" - ] - } + }, + "records": { + "TXT": ["vc-domain-verify=gunman.is-a.dev,a31e97770fb8c89e3b57"] + } } diff --git a/domains/_vercel.hafeez.json b/domains/_vercel.hafeez.json new file mode 100644 index 000000000..a3eac6e13 --- /dev/null +++ b/domains/_vercel.hafeez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hamid1882", + "email": "hussainhafeez1100@gmail.com", + "discord": "hamid1882" + }, + "records": { + "TXT": "vc-domain-verify=hafeez.is-a.dev,2a3f79f801934e7298bf" + } +} diff --git a/domains/_vercel.hareesh.json b/domains/_vercel.hareesh.json new file mode 100644 index 000000000..5bcc6fc77 --- /dev/null +++ b/domains/_vercel.hareesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hareesh108", + "email": "hareeshbhittam@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=hareesh.is-a.dev,477c6844f0ac3a8191e6" + } +} diff --git a/domains/_vercel.haripajjuri.json b/domains/_vercel.haripajjuri.json index 386a40ecc..7603565ae 100644 --- a/domains/_vercel.haripajjuri.json +++ b/domains/_vercel.haripajjuri.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "haripajjuri", - "email": "haripajjuri@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=haripajjuri.is-a.dev,6d1bb3e0585ec67dde26"] - } + "owner": { + "username": "haripajjuri", + "email": "haripajjuri@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=haripajjuri.is-a.dev,6d1bb3e0585ec67dde26"] + } } diff --git a/domains/_vercel.harish.json b/domains/_vercel.harish.json new file mode 100644 index 000000000..dcddc3b2c --- /dev/null +++ b/domains/_vercel.harish.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HarishChandran3304", + "email": "harish3304.work@gmail.com", + "discord": "harish3304" + }, + "records": { + "TXT": "vc-domain-verify=harish.is-a.dev,f67b0eba2383a0492136" + } +} diff --git a/domains/_vercel.harshmallick.json b/domains/_vercel.harshmallick.json new file mode 100644 index 000000000..22af5c875 --- /dev/null +++ b/domains/_vercel.harshmallick.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harsh-mallick", + "email": "harshmallick052009@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=harshmallick.is-a.dev,323ae0e1146fa7bc07e2" + } +} diff --git a/domains/_vercel.harshshah.json b/domains/_vercel.harshshah.json new file mode 100644 index 000000000..ce60fde7b --- /dev/null +++ b/domains/_vercel.harshshah.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "harshshah-codes", + "email": "harshshah.dev@gmail.com", + "discord": "889700837520199761" + }, + "records": { + "TXT": [ + "vc-domain-verify=harshshah.is-a.dev,42f8ad923b9e4a9aa010", + "vc-domain-verify=about.harshshah.is-a.dev,f9d8e16efb5cc0d31d96" + ] + } +} diff --git a/domains/_vercel.harshvardhan.json b/domains/_vercel.harshvardhan.json new file mode 100644 index 000000000..f229a3aea --- /dev/null +++ b/domains/_vercel.harshvardhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Harshvardhan5703", + "email": "shekhawat.harsh287@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=harshvardhan.is-a.dev,a93c0d07e2b0286b32b3"] + } +} diff --git a/domains/_vercel.hasanbithto.json b/domains/_vercel.hasanbithto.json new file mode 100644 index 000000000..dd61ec001 --- /dev/null +++ b/domains/_vercel.hasanbithto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "01HB", + "email": "hasanbithto207058@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=hasanbithto.is-a.dev,0422b355c897ac45ba16" + } +} diff --git a/domains/_vercel.hashan.json b/domains/_vercel.hashan.json new file mode 100644 index 000000000..0077fa1c4 --- /dev/null +++ b/domains/_vercel.hashan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hashaaan", + "email": "shalithadev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=hashan.is-a.dev,f61cc7f79144a261bd12" + } +} diff --git a/domains/_vercel.hassan.json b/domains/_vercel.hassan.json index e97a57c0c..9785dacf8 100644 --- a/domains/_vercel.hassan.json +++ b/domains/_vercel.hassan.json @@ -3,7 +3,7 @@ "username": "HassanCodez", "email": "hassan.atef01100@gmail.com" }, - "record": { + "records": { "TXT": "vc-domain-verify=hassan.is-a.dev,e3a8644f36c84599e9d9" } } diff --git a/domains/_vercel.hcj.json b/domains/_vercel.hcj.json index c903acfb5..67d4cf9ea 100644 --- a/domains/_vercel.hcj.json +++ b/domains/_vercel.hcj.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": ["vc-domain-verify=hcj.is-a.dev,010396202f45aacdad27"] - } + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "records": { + "TXT": ["vc-domain-verify=hcj.is-a.dev,010396202f45aacdad27"] } - \ No newline at end of file +} diff --git a/domains/_vercel.hellokhangtran.json b/domains/_vercel.hellokhangtran.json new file mode 100644 index 000000000..e5e27edc5 --- /dev/null +++ b/domains/_vercel.hellokhangtran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KN2222", + "email": "hellokhangtran03@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=hellokhangtran.is-a.dev,c6412bc4cdbfa93fe3a1" + } +} diff --git a/domains/_vercel.henderythmix.json b/domains/_vercel.henderythmix.json new file mode 100644 index 000000000..28d0acaab --- /dev/null +++ b/domains/_vercel.henderythmix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Henderythmix", + "email": "robertoselleswork@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=henderythmix.is-a.dev,daad531219c3ad9b7579" + } +} diff --git a/domains/_vercel.hien.json b/domains/_vercel.hien.json index e8d7c314e..eef206fee 100644 --- a/domains/_vercel.hien.json +++ b/domains/_vercel.hien.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hienlh", - "email": "hienlh1298@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=hien.is-a.dev,8c95220c38753532b45f"] - } + "owner": { + "username": "hienlh", + "email": "hienlh1298@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=hien.is-a.dev,8c95220c38753532b45f"] + } } diff --git a/domains/_vercel.hieu.json b/domains/_vercel.hieu.json new file mode 100644 index 000000000..d9157bcd3 --- /dev/null +++ b/domains/_vercel.hieu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hieutm83", + "email": "minhhieu.832k@gmail.com", + "discord": "729364691398164490" + }, + "records": { + "TXT": "vc-domain-verify=hieu.is-a.dev,dc7e0df748913559410b" + } +} diff --git a/domains/_vercel.hjr.json b/domains/_vercel.hjr.json new file mode 100644 index 000000000..2ad3377e4 --- /dev/null +++ b/domains/_vercel.hjr.json @@ -0,0 +1,10 @@ +{ + "description": "Vercel verification of hjr.is-a.dev", + "owner": { + "username": "hongjr03", + "email": "me@jrhim.com" + }, + "records": { + "TXT": ["vc-domain-verify=hjr.is-a.dev,fb939de5f77b0e1360cf"] + } +} diff --git a/domains/_vercel.hmp.json b/domains/_vercel.hmp.json new file mode 100644 index 000000000..e7d9419bf --- /dev/null +++ b/domains/_vercel.hmp.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain points to my portfolio website. https://blog-jimmy-hoangs-projects.vercel.app/ is the link for a preview of the website", + "owner": { + "username": "hmphu", + "email": "me@hmphu.com", + "discord": "830872854677422150" + }, + "records": { + "TXT": ["vc-domain-verify=hmp.is-a.dev,f49576d3e029b34c2305"] + } +} diff --git a/domains/_vercel.hsn.json b/domains/_vercel.hsn.json new file mode 100644 index 000000000..6832b396e --- /dev/null +++ b/domains/_vercel.hsn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hasan-bro-coder", + "email": "hasanur23910@gmail.com", + "discord": "hasan894" + }, + "records": { + "TXT": "vc-domain-verify=hsn.is-a.dev,8e27ffda53d18220c019" + } +} diff --git a/domains/_vercel.hujjat.json b/domains/_vercel.hujjat.json index 263fe3fa1..eb5dafd8b 100644 --- a/domains/_vercel.hujjat.json +++ b/domains/_vercel.hujjat.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hujjatiii", - "email": "hujjatx@yahoo.com" - }, - "record": { - "TXT": "vc-domain-verify=hujjat.is-a.dev,73fd6f83a3b034bfc044" - } + "owner": { + "username": "hujjatiii", + "email": "hujjatx@yahoo.com" + }, + "records": { + "TXT": "vc-domain-verify=hujjat.is-a.dev,73fd6f83a3b034bfc044" + } } diff --git a/domains/_vercel.id.json b/domains/_vercel.id.json index 8a35bb9f4..a9eebdbe7 100644 --- a/domains/_vercel.id.json +++ b/domains/_vercel.id.json @@ -3,7 +3,7 @@ "username": "its-id", "discord": "342664542754570250" }, - "record": { + "records": { "TXT": "vc-domain-verify=id.is-a.dev,c2cc3946f3d170914ef2" } } diff --git a/domains/_vercel.idriss.json b/domains/_vercel.idriss.json new file mode 100644 index 000000000..695261080 --- /dev/null +++ b/domains/_vercel.idriss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AstroDriss", + "email": "drisspennywise@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=idriss.is-a.dev,375d6639e027c0907afd" + } +} diff --git a/domains/_vercel.ikram.json b/domains/_vercel.ikram.json new file mode 100644 index 000000000..a0baab34e --- /dev/null +++ b/domains/_vercel.ikram.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "records": { + "TXT": [ + "vc-domain-verify=ikram.is-a.dev,1c55c62cbbc1ce244ebe", + "vc-domain-verify=links.ikram.is-a.dev,706c366017aed069745e", + "vc-domain-verify=kakureta.ikram.is-a.dev,cea58e1b5cb084a5d961" + ] + } +} diff --git a/domains/_vercel.ikramth.json b/domains/_vercel.ikramth.json new file mode 100644 index 000000000..d5b552bbb --- /dev/null +++ b/domains/_vercel.ikramth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arcfoz", + "email": "ikramtauffiqulh@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ikramth.is-a.dev,ffebaa8e7ae5f74fdd95" + } +} diff --git a/domains/_vercel.imnahn.json b/domains/_vercel.imnahn.json new file mode 100644 index 000000000..aa46b5690 --- /dev/null +++ b/domains/_vercel.imnahn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imnotnahn", + "email": "thanhnhan.contact.work@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=imnahn.is-a.dev,464cfe62baa469c20c00" + } +} diff --git a/domains/_vercel.inputly.json b/domains/_vercel.inputly.json new file mode 100644 index 000000000..dba9b6fdb --- /dev/null +++ b/domains/_vercel.inputly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NateNear", + "email": "matternate21@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=inputly.is-a.dev,650df8c4415b2035e3e3" + } +} diff --git a/domains/_vercel.iomiras.json b/domains/_vercel.iomiras.json new file mode 100644 index 000000000..51f4134fd --- /dev/null +++ b/domains/_vercel.iomiras.json @@ -0,0 +1,10 @@ +{ + "description": "This subdomain points to my portfolio website.", + "owner": { + "username": "iomiras", + "email": "miras.shaltayev+isadev@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=iomiras.is-a.dev,f475f7d08678209bfa1f"] + } +} diff --git a/domains/_vercel.ios.json b/domains/_vercel.ios.json new file mode 100644 index 000000000..2212b7c93 --- /dev/null +++ b/domains/_vercel.ios.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ios.is-a.dev,535168654c257a38deb0" + } +} diff --git a/domains/_vercel.isaacrobert33.json b/domains/_vercel.isaacrobert33.json new file mode 100644 index 000000000..00f671900 --- /dev/null +++ b/domains/_vercel.isaacrobert33.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "isaacrobert33", + "email": "isaacrobertoluwaseun@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=isaacrobert33.is-a.dev,1688a3dfda585e08298e" + } +} diff --git a/domains/_vercel.ishbenjamin.json b/domains/_vercel.ishbenjamin.json new file mode 100644 index 000000000..e54a699bb --- /dev/null +++ b/domains/_vercel.ishbenjamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aurumdev952", + "email": "benjamugi20072@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ishbenjamin.is-a.dev,787c8741716d7d7ae200" + } +} diff --git a/domains/_vercel.ishwar.json b/domains/_vercel.ishwar.json new file mode 100644 index 000000000..a7c626334 --- /dev/null +++ b/domains/_vercel.ishwar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ishwar00", + "email": "ishwargowda100@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ishwar.is-a.dev,6a55bd5a5a9d43473b7f" + } +} diff --git a/domains/_vercel.itsjhonalex.json b/domains/_vercel.itsjhonalex.json new file mode 100644 index 000000000..4fae01ee7 --- /dev/null +++ b/domains/_vercel.itsjhonalex.json @@ -0,0 +1,11 @@ +{ + "description": "itsjhonalex.is-a.dev", + "repo": "github.com/ItsJhonAlex/PortfolioDev", + "owner": { + "username": "ItsJhonAlex", + "email": "itsjhonalex@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=itsjhonalex.is-a.dev,8c4f4f96f1fa142804c7" + } +} diff --git a/domains/_vercel.ivin-mathew.json b/domains/_vercel.ivin-mathew.json new file mode 100644 index 000000000..5f27bc67a --- /dev/null +++ b/domains/_vercel.ivin-mathew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ivin-Mathew", + "email": "ivinmk2410@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ivin-mathew.is-a.dev,0ef6e3e9074e997b831b" + } +} diff --git a/domains/_vercel.izerr.json b/domains/_vercel.izerr.json index f4cd711b3..ec8b8e231 100644 --- a/domains/_vercel.izerr.json +++ b/domains/_vercel.izerr.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Explodey-Wolf", - "email": "peanutplays61@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=izerr.is-a.dev,16607c905489ac70ec6d" - ] - } + "owner": { + "username": "Explodey-Wolf", + "email": "peanutplays61@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=izerr.is-a.dev,16607c905489ac70ec6d"] + } } diff --git a/domains/_vercel.jacek.json b/domains/_vercel.jacek.json new file mode 100644 index 000000000..70b27fe44 --- /dev/null +++ b/domains/_vercel.jacek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smolak", + "email": "jacek.smolak@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=jacek.is-a.dev,7c72f1224f5190ca82a2" + } +} diff --git a/domains/_vercel.jacques.json b/domains/_vercel.jacques.json new file mode 100644 index 000000000..283c304d2 --- /dev/null +++ b/domains/_vercel.jacques.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jacques2Marais", + "discord": "itsmejackmorris" + }, + "records": { + "TXT": "vc-domain-verify=jacques.is-a.dev,99cb4c27dc634df28742" + } +} diff --git a/domains/_vercel.jake.json b/domains/_vercel.jake.json index 08c660da0..b3eea778e 100644 --- a/domains/_vercel.jake.json +++ b/domains/_vercel.jake.json @@ -1,9 +1,8 @@ { "owner": { - "username": "xzrci", - "email": "" + "username": "xzrci" }, - "record": { + "records": { "TXT": ["vc-domain-verify=jake.is-a.dev,1075ab07de85fa87e8cd"] } } diff --git a/domains/_vercel.jal.json b/domains/_vercel.jal.json new file mode 100644 index 000000000..c31a0c5e4 --- /dev/null +++ b/domains/_vercel.jal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jal-GG", + "email": "jalvrund2017@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=jal.is-a.dev,1fa1419e6567c483a5d6" + } +} diff --git a/domains/_vercel.jar.json b/domains/_vercel.jar.json new file mode 100644 index 000000000..edc47f545 --- /dev/null +++ b/domains/_vercel.jar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jartf", + "email": "hi@jar.tf" + }, + "records": { + "TXT": "vc-domain-verify=jar.is-a.dev,faf9fc9ca0c53d380bd7" + } +} diff --git a/domains/_vercel.jax.json b/domains/_vercel.jax.json index 26bd8beeb..410cf498d 100644 --- a/domains/_vercel.jax.json +++ b/domains/_vercel.jax.json @@ -2,7 +2,7 @@ "owner": { "username": "jxaq" }, - "record": { + "records": { "TXT": ["vc-domain-verify=jax.is-a.dev,f8cf558f95e96e1c703e"] } } diff --git a/domains/_vercel.jeanclaude.json b/domains/_vercel.jeanclaude.json new file mode 100644 index 000000000..86f72e9e9 --- /dev/null +++ b/domains/_vercel.jeanclaude.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jeanclaudegeagea", + "email": "jeanclaude.geagea@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=jeanclaude.is-a.dev,76b49022de3c560947e8" + } +} diff --git a/domains/_vercel.jefino.json b/domains/_vercel.jefino.json new file mode 100644 index 000000000..0d32a2419 --- /dev/null +++ b/domains/_vercel.jefino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jefino9488", + "email": "jefinojacob9488@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=jefino.is-a.dev,06a21d01141d355de2b1" + } +} diff --git a/domains/_vercel.jemalahmedov.json b/domains/_vercel.jemalahmedov.json new file mode 100644 index 000000000..47433dd13 --- /dev/null +++ b/domains/_vercel.jemalahmedov.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jimjja", + "email": "jemalja.dev@gmail.com", + "discord": "665635903955533845" + }, + "records": { + "TXT": "vc-domain-verify=jemalahmedov.is-a.dev,3f41428af72725b71a10" + } +} diff --git a/domains/_vercel.jhone.json b/domains/_vercel.jhone.json new file mode 100644 index 000000000..f1126c6d9 --- /dev/null +++ b/domains/_vercel.jhone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jhon-E", + "email": "jhoneospino@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=jhone.is-a.dev,ab1c32c70d59957b3c41" + } +} diff --git a/domains/_vercel.jigarbhoye.json b/domains/_vercel.jigarbhoye.json new file mode 100644 index 000000000..052d55231 --- /dev/null +++ b/domains/_vercel.jigarbhoye.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jigarbhoye04", + "discord": "jigx.04", + "email": "jigarbhoye04@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=jigarbhoye.is-a.dev,194424ab5762042e64fa" + } +} diff --git a/domains/_vercel.jmc.json b/domains/_vercel.jmc.json new file mode 100644 index 000000000..9033f1dd0 --- /dev/null +++ b/domains/_vercel.jmc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "josem430", + "email": "jmc300499@gmail.com", + "discord": "josem430" + }, + "records": { + "TXT": "vc-domain-verify=jmc.is-a.dev,27b92885b5a4c6e96615" + } +} diff --git a/domains/_vercel.johntran.json b/domains/_vercel.johntran.json new file mode 100644 index 000000000..f91a2ecd3 --- /dev/null +++ b/domains/_vercel.johntran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "johntranz", + "email": "john.tran.engineer@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=johntran.is-a.dev,dcd9c5b1d53d9961e19a" + } +} diff --git a/domains/_vercel.jonasfroeller.json b/domains/_vercel.jonasfroeller.json index addf90ec4..38a7c5a9f 100644 --- a/domains/_vercel.jonasfroeller.json +++ b/domains/_vercel.jonasfroeller.json @@ -1,10 +1,9 @@ { "owner": { "username": "jonasfroeller", - "discord": "", "email": "j.froe@gmx.at" }, - "record": { + "records": { "TXT": "vc-domain-verify=jonasfroeller.is-a.dev,5e5ba77b2dbfd27d1094" } } diff --git a/domains/_vercel.jong.json b/domains/_vercel.jong.json new file mode 100644 index 000000000..5f15fdf6b --- /dev/null +++ b/domains/_vercel.jong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jongo22", + "email": "jingyiong22@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=jong.is-a.dev,d7331d87860e2795082e" + } +} diff --git a/domains/_vercel.jorge-lopz.json b/domains/_vercel.jorge-lopz.json new file mode 100644 index 000000000..7e341dd78 --- /dev/null +++ b/domains/_vercel.jorge-lopz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Jorge-lopz", + "email": "jlpenero2005@gmail.com", + "discord": "713831494761840753" + }, + "records": { + "TXT": "vc-domain-verify=jorge-lopz.is-a.dev,5bfcd4cedc07714c2319" + } +} diff --git a/domains/_vercel.joy.json b/domains/_vercel.joy.json new file mode 100644 index 000000000..dcced1f85 --- /dev/null +++ b/domains/_vercel.joy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Harmfulllll", + "email": "harmfulllll114@gmail.com", + "discord": "1007561787257933885" + }, + "records": { + "TXT": "vc-domain-verify=joy.is-a.dev,b9818cfcdf90b4080e52" + } +} diff --git a/domains/_vercel.juan-morales.json b/domains/_vercel.juan-morales.json new file mode 100644 index 000000000..2c97afd9e --- /dev/null +++ b/domains/_vercel.juan-morales.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Juanmorales1810", + "email": "juan.exequiel.morales@gmail.com", + "discord": "746910653343596574" + }, + "records": { + "TXT": "vc-domain-verify=juan-morales.is-a.dev,ccd6e4ba9d4b2196b5f7" + } +} diff --git a/domains/_vercel.juanca.json b/domains/_vercel.juanca.json new file mode 100644 index 000000000..0e67e5538 --- /dev/null +++ b/domains/_vercel.juanca.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wJuanca", + "email": "juancarlosturcios2001@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=juanca.is-a.dev,ff43fca0fbca1d9d8eda" + } +} diff --git a/domains/_vercel.juanespachon.json b/domains/_vercel.juanespachon.json new file mode 100644 index 000000000..f8b18f4f7 --- /dev/null +++ b/domains/_vercel.juanespachon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanesPachon", + "email": "yeroparce1@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=juanespachon.is-a.dev,2b4b64d61c46b5b6384a" + } +} diff --git a/domains/_vercel.juanhuete.json b/domains/_vercel.juanhuete.json new file mode 100644 index 000000000..0f74895df --- /dev/null +++ b/domains/_vercel.juanhuete.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "juanjose23", + "email": "jrios9836@gmail.com", + "discord": "988647501236162641" + }, + "records": { + "TXT": "vc-domain-verify=juanhuete.is-a.dev,479b0bcf59c976d6f921" + } +} diff --git a/domains/_vercel.juanpabloleonmaya.json b/domains/_vercel.juanpabloleonmaya.json new file mode 100644 index 000000000..1af277533 --- /dev/null +++ b/domains/_vercel.juanpabloleonmaya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juanleon8581", + "email": "juanleon8581@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=juanpabloleonmaya.is-a.dev,60444b8f6c0ae7c91c12" + } +} diff --git a/domains/_vercel.jumanji.json b/domains/_vercel.jumanji.json index d82ad7099..230b70848 100644 --- a/domains/_vercel.jumanji.json +++ b/domains/_vercel.jumanji.json @@ -1,8 +1,9 @@ { "owner": { - "username": "heyjumanji" + "username": "heyjumanji", + "email": "madhuchutiya.unhinge50@silomails.com" }, - "record": { - "TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"] + "records": { + "TXT": "vc-domain-verify=jumanji.is-a.dev,291766e76a7ab5de1bc7" } } diff --git a/domains/_vercel.justwinstuff.json b/domains/_vercel.justwinstuff.json index e93831283..800189e0b 100644 --- a/domains/_vercel.justwinstuff.json +++ b/domains/_vercel.justwinstuff.json @@ -3,7 +3,7 @@ "username": "enderfoxbg", "discord": "970380468090437672" }, - "record": { + "records": { "TXT": ["vc-domain-verify=justwinstuff.is-a.dev,f7737c243dc3c1080dd7"] } } diff --git a/domains/_vercel.kachi.json b/domains/_vercel.kachi.json index c439cf023..d1bf659da 100644 --- a/domains/_vercel.kachi.json +++ b/domains/_vercel.kachi.json @@ -3,7 +3,7 @@ "username": "joshex150", "email": "joshex150@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=kachi.is-a.dev,54646f7970a9cf358f0c"] } } diff --git a/domains/_vercel.kareem.json b/domains/_vercel.kareem.json new file mode 100644 index 000000000..32fc430bc --- /dev/null +++ b/domains/_vercel.kareem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kareem-m", + "email": "kareemmoh1911@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=kareem.is-a.dev,227f1873f5be3f29395e" + } +} diff --git a/domains/_vercel.kawsar.json b/domains/_vercel.kawsar.json index f2399898a..0167f7423 100644 --- a/domains/_vercel.kawsar.json +++ b/domains/_vercel.kawsar.json @@ -2,9 +2,9 @@ "owner": { "username": "KawsarDev", "email": "kawsar.dev1@gmail.com", - "discord": "520373269979988000" + "discord": "520373269979988000" }, - "record": { + "records": { "TXT": ["vc-domain-verify=kawsar.is-a.dev,e77e8c258bee5d9213b7"] } } diff --git a/domains/_vercel.ken-kuro.json b/domains/_vercel.ken-kuro.json new file mode 100644 index 000000000..0803c1c07 --- /dev/null +++ b/domains/_vercel.ken-kuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ken-kuro", + "linkedin": "hieuhm2610" + }, + "records": { + "TXT": "vc-domain-verify=ken-kuro.is-a.dev,f7190a78aaa06c66bd44" + } +} diff --git a/domains/_vercel.kendikasir.json b/domains/_vercel.kendikasir.json new file mode 100644 index 000000000..b42253e04 --- /dev/null +++ b/domains/_vercel.kendikasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "records": { + "TXT": ["vc-domain-verify=kendikasir.is-a.dev,cd9855791e5cf175a69f"] + } +} diff --git a/domains/_vercel.kevinmolina.json b/domains/_vercel.kevinmolina.json new file mode 100644 index 000000000..4bd9d447d --- /dev/null +++ b/domains/_vercel.kevinmolina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kevinmolinadev", + "email": "kevinmolina.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=kevinmolina.is-a.dev,514e23dcdfedeb5ae4c5" + } +} diff --git a/domains/_vercel.khaif.json b/domains/_vercel.khaif.json new file mode 100644 index 000000000..579c68482 --- /dev/null +++ b/domains/_vercel.khaif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khxif", + "email": "code.khaif@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=khaif.is-a.dev,fe39b6b2d8e96026a707" + } +} diff --git a/domains/_vercel.khaled-bakhti.json b/domains/_vercel.khaled-bakhti.json index 86de81b6d..b7a164c6b 100644 --- a/domains/_vercel.khaled-bakhti.json +++ b/domains/_vercel.khaled-bakhti.json @@ -3,7 +3,7 @@ "username": "OTK-98", "discord": "bkt26" }, - "record": { + "records": { "TXT": "vc-domain-verify=khaled-bakhti.is-a.dev,3772eae9e765bacee0f5" } } diff --git a/domains/_vercel.khanhngn.json b/domains/_vercel.khanhngn.json new file mode 100644 index 000000000..fa4dce3d9 --- /dev/null +++ b/domains/_vercel.khanhngn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khanhngn-dev", + "email": "khanhngn.dev@gmail.com", + "discord": "jerry.ng" + }, + "records": { + "TXT": "vc-domain-verify=khanhngn.is-a.dev,22d6c072955bf792ff60" + } +} diff --git a/domains/_vercel.khoacao.json b/domains/_vercel.khoacao.json index a3ae78ba0..3874d7193 100644 --- a/domains/_vercel.khoacao.json +++ b/domains/_vercel.khoacao.json @@ -3,7 +3,7 @@ "username": "khoacao2k4", "email": "cqnhatkhoa@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=khoacao.is-a.dev,9b86aeda2d7aa9f99748"] } } diff --git a/domains/_vercel.khoivudev.json b/domains/_vercel.khoivudev.json new file mode 100644 index 000000000..b4f6e42e5 --- /dev/null +++ b/domains/_vercel.khoivudev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khoivudevz", + "email": "khoivudev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=khoivudev.is-a.dev,777db716599f724e221d" + } +} diff --git a/domains/_vercel.kilamieaz.json b/domains/_vercel.kilamieaz.json new file mode 100644 index 000000000..5b9ea38be --- /dev/null +++ b/domains/_vercel.kilamieaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kilamieaz", + "email": "im.sultaan05@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=kilamieaz.is-a.dev,43bb0e712f64dcb9c8a5" + } +} diff --git a/domains/_vercel.kinfhertix.json b/domains/_vercel.kinfhertix.json new file mode 100644 index 000000000..1734f3e6c --- /dev/null +++ b/domains/_vercel.kinfhertix.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Kinfhertix", + "email": "kinfhertix@gmail.com", + "discord": "i_mert" + }, + "records": { + "TXT": "vc-domain-verify=kinfhertix.is-a.dev,059b1c9b761eee935ee8" + } +} diff --git a/domains/_vercel.krebinkkj.json b/domains/_vercel.krebinkkj.json index 31db69c73..fa5865da7 100644 --- a/domains/_vercel.krebinkkj.json +++ b/domains/_vercel.krebinkkj.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "krebinkkj", - "email": "krebinkkj@gmail.com", - "discord": "1041878326169587732" - }, - "record": { - "TXT": [ - "vc-domain-verify=krebinkkj.is-a.dev,dadd7998d7a4c506db3b" - ] - } + "owner": { + "username": "krebinkkj", + "email": "krebinkkj@gmail.com", + "discord": "1041878326169587732" + }, + "records": { + "TXT": ["vc-domain-verify=krebinkkj.is-a.dev,dadd7998d7a4c506db3b"] + } } diff --git a/domains/_vercel.kunalshah017.json b/domains/_vercel.kunalshah017.json new file mode 100644 index 000000000..75546ed4e --- /dev/null +++ b/domains/_vercel.kunalshah017.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kunalshah017", + "email": "kunalmanishshah@gmail.com", + "discord": "kunalshah17" + }, + "records": { + "TXT": "vc-domain-verify=kunalshah017.is-a.dev,4c9e39c65c2d0426535e" + } +} diff --git a/domains/_vercel.kushdhingra.json b/domains/_vercel.kushdhingra.json deleted file mode 100644 index 350a577a1..000000000 --- a/domains/_vercel.kushdhingra.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "kushdhingra" - }, - "record": { - "TXT": ["vc-domain-verify=kushdhingra.is-a.dev,a0343a97ff791537efcd"] - } -} diff --git a/domains/_vercel.lakshya.json b/domains/_vercel.lakshya.json new file mode 100644 index 000000000..f4619f23a --- /dev/null +++ b/domains/_vercel.lakshya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lakshyaCreates", + "email": "lakshya.creates07@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=lakshya.is-a.dev,c263f1e52b86bcfa3ce6"] + } +} diff --git a/domains/_vercel.larry.json b/domains/_vercel.larry.json new file mode 100644 index 000000000..b06de9571 --- /dev/null +++ b/domains/_vercel.larry.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dlir2404", + "email": "dinhlinh.work24@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=larry.is-a.dev,e80ab9e4db63485894d6" + } +} diff --git a/domains/_vercel.layhout.json b/domains/_vercel.layhout.json new file mode 100644 index 000000000..058c5f86b --- /dev/null +++ b/domains/_vercel.layhout.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "layhout", + "email": "layhoutworkmail@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=layhout.is-a.dev,be218a450dbf76cb68f1"] + } +} diff --git a/domains/_vercel.lee.json b/domains/_vercel.lee.json new file mode 100644 index 000000000..cd80517ab --- /dev/null +++ b/domains/_vercel.lee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kneesdev", + "email": "kneesdev@naver.com" + }, + "records": { + "TXT": "vc-domain-verify=lee.is-a.dev,9a9ce92e1f8d76f0b38b" + } +} diff --git a/domains/_vercel.lexy.json b/domains/_vercel.lexy.json new file mode 100644 index 000000000..56dec0853 --- /dev/null +++ b/domains/_vercel.lexy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Olalexy1", + "email": "ajayiolalekan729@gmail.com", + "discord": "olalexy1" + }, + "records": { + "TXT": "vc-domain-verify=lexy.is-a.dev,a923e9c352f68e881f90" + } +} diff --git a/domains/_vercel.liaobots.json b/domains/_vercel.liaobots.json index 4f378641f..7abe0a93e 100644 --- a/domains/_vercel.liaobots.json +++ b/domains/_vercel.liaobots.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IxKNZgVI5n43WciMzoLIog8fLCn4SGOde7wnXV8YxNdupHigRYf1qPNLM6mf9fFyJE7QYM63I-efJGBeYIGxYCHqIP8wOJqQCO-7LQ96HeEOvr0H1DT5qgmgleU3hyLAiktHJkSJrVxJJt6GED2aMSQNkz0FGlpFvh2ts8yGXJdgxqfGowNfsbK9nMtk_TYA682_jI4nd3G8F0VY8BZ8b5q5mdRFqXb8xSDztui4mW9dHJegNz55-wMC7aT4EF5I5yZ2XWnmBxPZHMAJyJDymkN4e4m0FqfQ1Us0cJwX7ZLFA-L3ScxnR9d-LQnq8hwvXzUSQXTef5Kc__MXyPbkXQ.S_klH5E-coNoQwAL3qtqVA.-AfcX7vCIVK0g_F55nTxlgmefAScdcA3w9EksOSkd9h0heFdtYzqpsRrMJqI0T9YN7fK532nNZXLcPwPCddfXcc4h3GASYGQ_grPhr5QcRInvgD9phM8FPpF8RZzIkcI.XYLRmlV-8SElUpXJbF_FkA" + "discord": "1167825360151380032" }, - "record": { + "records": { "TXT": ["vc-domain-verify=liaobots.is-a.dev,8571d70b82b73973b70d"] } } diff --git a/domains/_vercel.linhtutkyaw.json b/domains/_vercel.linhtutkyaw.json new file mode 100644 index 000000000..88d6c56f2 --- /dev/null +++ b/domains/_vercel.linhtutkyaw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "linhtutkyawdev", + "email": "linhtutkyaw.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=linhtutkyaw.is-a.dev,0d9ce126d75cfb7fe853" + } +} diff --git a/domains/_vercel.litmus.json b/domains/_vercel.litmus.json index d4fb6020e..da213073e 100644 --- a/domains/_vercel.litmus.json +++ b/domains/_vercel.litmus.json @@ -3,7 +3,7 @@ "username": "litmus-zhang", "email": "abdulsalamlukmon9@gmail.com" }, - "record": { + "records": { "TXT": "78ba183f9678f5722897" } } diff --git a/domains/_vercel.ljean.json b/domains/_vercel.ljean.json new file mode 100644 index 000000000..8fd737b03 --- /dev/null +++ b/domains/_vercel.ljean.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Granpiecito", + "email": "jeanpierresprrymanaleman@gmail.com", + "discord": "294318911791562752" + }, + "records": { + "TXT": "vc-domain-verify=ljean.is-a.dev,1864955b5da34f083f9b" + } +} diff --git a/domains/_vercel.llucx.json b/domains/_vercel.llucx.json new file mode 100644 index 000000000..71fe1badc --- /dev/null +++ b/domains/_vercel.llucx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "llucxdev", + "email": "puertesarrue@gmail.com", + "discord": "lluuuc_12" + }, + "records": { + "TXT": "vc-domain-verify=llucx.is-a.dev,27a5a8414f3e33fd7634" + } +} diff --git a/domains/_vercel.lobo.json b/domains/_vercel.lobo.json new file mode 100644 index 000000000..c43538771 --- /dev/null +++ b/domains/_vercel.lobo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lobooooooo14", + "discord": "783120232134082580" + }, + "records": { + "TXT": "vc-domain-verify=lobo.is-a.dev,aa27648658caa1c96bb8" + } +} diff --git a/domains/_vercel.locionic.json b/domains/_vercel.locionic.json new file mode 100644 index 000000000..b95448a71 --- /dev/null +++ b/domains/_vercel.locionic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "locionic", + "email": "noone000a@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=locionic.is-a.dev,1d6fe75265bd8065f222" + } +} diff --git a/domains/_vercel.lohit.json b/domains/_vercel.lohit.json index f58bae239..093274948 100644 --- a/domains/_vercel.lohit.json +++ b/domains/_vercel.lohit.json @@ -4,7 +4,7 @@ "email": "lohitkolluri@gmail.com", "discord": "drxven" }, - "record": { + "records": { "TXT": "vc-domain-verify=lohit.is-a.dev,0195609f54fd0b8bb019" } } diff --git a/domains/_vercel.loomeh.json b/domains/_vercel.loomeh.json new file mode 100644 index 000000000..c8c9f06ed --- /dev/null +++ b/domains/_vercel.loomeh.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "records": { + "TXT": [ + "vc-domain-verify=loomeh.is-a.dev,a6084877a07f81dfa4b2", + "vc-domain-verify=libresplit.loomeh.is-a.dev,345e69da9c8565af78cb", + "vc-domain-verify=libresplit-resources.loomeh.is-a.dev,41fad39e7213cf56c118", + "vc-domain-verify=ktpguesser.loomeh.is-a.dev,7e26e46b10152c2df032" + ] + } +} diff --git a/domains/_vercel.loutre.json b/domains/_vercel.loutre.json index a91423ede..5cf9ca29d 100644 --- a/domains/_vercel.loutre.json +++ b/domains/_vercel.loutre.json @@ -4,7 +4,7 @@ "email": "loutrinesk@gmail.com", "discord": "1222265538672201759" }, - "record": { + "records": { "TXT": ["vc-domain-verify=loutre.is-a.dev,240b5982bf14aba93163"] } } diff --git a/domains/_vercel.lraffdev.json b/domains/_vercel.lraffdev.json new file mode 100644 index 000000000..499afe6d7 --- /dev/null +++ b/domains/_vercel.lraffdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LRaffDev", + "email": "raffaele.la.cerra@outlook.it" + }, + "records": { + "TXT": "vc-domain-verify=lraffdev.is-a.dev,d1e53d0b8211a025d0ad" + } +} diff --git a/domains/_vercel.lucvuro.json b/domains/_vercel.lucvuro.json new file mode 100644 index 000000000..cf2a7f285 --- /dev/null +++ b/domains/_vercel.lucvuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lucvuro", + "email": "lucvuit@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=lucvuro.is-a.dev,da1967c10a4607cdefe4" + } +} diff --git a/domains/_vercel.luihh.json b/domains/_vercel.luihh.json index 7a6bc3945..42bdb7f5e 100644 --- a/domains/_vercel.luihh.json +++ b/domains/_vercel.luihh.json @@ -4,7 +4,7 @@ "email": "luihh@proton.me", "discord": "481268875586174986" }, - "record": { + "records": { "TXT": "vc-domain-verify=luihh.is-a.dev,918089867ac61f642dfc" } } diff --git a/domains/_vercel.luisalejandrobf.json b/domains/_vercel.luisalejandrobf.json index 3d5682ea8..5d94c3602 100644 --- a/domains/_vercel.luisalejandrobf.json +++ b/domains/_vercel.luisalejandrobf.json @@ -3,7 +3,7 @@ "username": "luisalejandrobf", "email": "luisalejandrobravoferreira@gmail.com" }, - "record": { + "records": { "TXT": "vc-domain-verify=luisalejandrobf.is-a.dev,c49494ec4242b7e00e01" } } diff --git a/domains/_vercel.luked.json b/domains/_vercel.luked.json new file mode 100644 index 000000000..3eba4a5e2 --- /dev/null +++ b/domains/_vercel.luked.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luked177", + "twitter": "lukedore_" + }, + "records": { + "TXT": "vc-domain-verify=luked.is-a.dev,f942d726bfbd3e8bd435" + } +} diff --git a/domains/_vercel.luvtoxic.json b/domains/_vercel.luvtoxic.json new file mode 100644 index 000000000..785199105 --- /dev/null +++ b/domains/_vercel.luvtoxic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luvtoxic", + "email": "ammarbags2023@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=luvtoxic.is-a.dev,fe679dc4161b66e8e00f" + } +} diff --git a/domains/_vercel.lycoris.json b/domains/_vercel.lycoris.json new file mode 100644 index 000000000..be438825f --- /dev/null +++ b/domains/_vercel.lycoris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lycorissss", + "email": "beelzebub5758@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=lycoris.is-a.dev,c3b18b1afc1e66757025" + } +} diff --git a/domains/_vercel.lyxtem.json b/domains/_vercel.lyxtem.json new file mode 100644 index 000000000..7172c84e4 --- /dev/null +++ b/domains/_vercel.lyxtem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lyxtem", + "email": "nu284955@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=lyxtem.is-a.dev,bf84cf6cc0d0a77baa9d" + } +} diff --git a/domains/_vercel.maanripe.json b/domains/_vercel.maanripe.json new file mode 100644 index 000000000..b6099990c --- /dev/null +++ b/domains/_vercel.maanripe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "argkont", + "email": "kohacaelo+is-a-dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=maanripe.is-a.dev,58b3a98b581598b3f572" + } +} diff --git a/domains/_vercel.macielsuassuna.json b/domains/_vercel.macielsuassuna.json new file mode 100644 index 000000000..4422d28ab --- /dev/null +++ b/domains/_vercel.macielsuassuna.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maciel64", + "discord": "macielmano", + "email": "macielsuassuna14@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=macielsuassuna.is-a.dev,8c379ebe1b06a321ff44" + } +} diff --git a/domains/_vercel.mack.json b/domains/_vercel.mack.json new file mode 100644 index 000000000..ad94f8502 --- /dev/null +++ b/domains/_vercel.mack.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mackcodes", + "email": "mackcodes03@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=mack.is-a.dev,ae3eddaff5956b0fea51" + } +} diff --git a/domains/_vercel.magedibrahim.json b/domains/_vercel.magedibrahim.json new file mode 100644 index 000000000..b8c108adb --- /dev/null +++ b/domains/_vercel.magedibrahim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maqed", + "email": "magedibra@yahoo.com", + "discord": "272808689688248320" + }, + "records": { + "TXT": "vc-domain-verify=magedibrahim.is-a.dev,7bdbe7e115da902cbd7d" + } +} diff --git a/domains/_vercel.magitian.json b/domains/_vercel.magitian.json index 18fdbffd3..01f2e7139 100644 --- a/domains/_vercel.magitian.json +++ b/domains/_vercel.magitian.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "magitian", - "email": "magitian@duck.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=magitian.is-a.dev,645e2d8f0ecf6f802922" - ] - } + "owner": { + "username": "magitian", + "email": "magitian@duck.com" + }, + "records": { + "TXT": ["vc-domain-verify=magitian.is-a.dev,645e2d8f0ecf6f802922"] + } } diff --git a/domains/_vercel.maher-xubair.json b/domains/_vercel.maher-xubair.json new file mode 100644 index 000000000..fadd6feb0 --- /dev/null +++ b/domains/_vercel.maher-xubair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maher-xubair", + "email": "za998192@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=maher-xubair.is-a.dev,da5ba9cd6ff94d8690f8" + } +} diff --git a/domains/_vercel.maheshpaul.json b/domains/_vercel.maheshpaul.json new file mode 100644 index 000000000..ab8a09ecd --- /dev/null +++ b/domains/_vercel.maheshpaul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maheshpaulj", + "email": "mahesh.paul.j@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=maheshpaul.is-a.dev,a6be9b77a63b6d4c8cd6" + } +} diff --git a/domains/_vercel.mak5er.json b/domains/_vercel.mak5er.json new file mode 100644 index 000000000..be4435ec1 --- /dev/null +++ b/domains/_vercel.mak5er.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mak5er", + "telegram": "@Mak5er" + }, + "records": { + "TXT": "vc-domain-verify=mak5er.is-a.dev,9971a80509e246fda674" + } +} diff --git a/domains/_vercel.manhnguyen18.json b/domains/_vercel.manhnguyen18.json new file mode 100644 index 000000000..8058751b7 --- /dev/null +++ b/domains/_vercel.manhnguyen18.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nguyenmanh18", + "email": "nguyenmanh1891997@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=manhnguyen18.is-a.dev,32b5b9a6627ffaa77e66" + } +} diff --git a/domains/_vercel.mantou.json b/domains/_vercel.mantou.json index 7ecbaec79..1be458dc0 100644 --- a/domains/_vercel.mantou.json +++ b/domains/_vercel.mantou.json @@ -3,7 +3,7 @@ "username": "Mantouisyummy", "discord": "549056425943629825" }, - "record": { + "records": { "TXT": "vc-domain-verify=mantou.is-a.dev,c8a46ea52ff24c67a0a6" } } diff --git a/domains/_vercel.maqbool.json b/domains/_vercel.maqbool.json new file mode 100644 index 000000000..eb443e83b --- /dev/null +++ b/domains/_vercel.maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=abdullah.maqbool.is-a.dev,7d30d66cf0ff8ca544ba" + } +} diff --git a/domains/_vercel.markasaad.json b/domains/_vercel.markasaad.json new file mode 100644 index 000000000..f8d6a3f44 --- /dev/null +++ b/domains/_vercel.markasaad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voltonik", + "email": "markasaadramzy@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=markasaad.is-a.dev,466430b693facfcda35d" + } +} diff --git a/domains/_vercel.marlonbaatjes.json b/domains/_vercel.marlonbaatjes.json new file mode 100644 index 000000000..ac2d14b89 --- /dev/null +++ b/domains/_vercel.marlonbaatjes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mdesignscode", + "email": "marlonbaatjes62@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=marlonbaatjes.is-a.dev,e393641c1319b97e701e" + } +} diff --git a/domains/_vercel.martinvruiz.json b/domains/_vercel.martinvruiz.json new file mode 100644 index 000000000..51f94316e --- /dev/null +++ b/domains/_vercel.martinvruiz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "martinvruiz", + "email": "martinvruiz10@gmail.com", + "discord": "martinvruiz10" + }, + "records": { + "TXT": "vc-domain-verify=martinvruiz.is-a.dev,16e98638bc17973af9e7" + } +} diff --git a/domains/_vercel.mateogariboglio.json b/domains/_vercel.mateogariboglio.json new file mode 100644 index 000000000..4c641131a --- /dev/null +++ b/domains/_vercel.mateogariboglio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mateo-404", + "discord": "gary_______" + }, + "records": { + "TXT": "vc-domain-verify=mateogariboglio.is-a.dev,5241b76c19e0f7de2f4a" + } +} diff --git a/domains/_vercel.matheusdev.json b/domains/_vercel.matheusdev.json new file mode 100644 index 000000000..1bdc60847 --- /dev/null +++ b/domains/_vercel.matheusdev.json @@ -0,0 +1,13 @@ +{ + "description": "Web Developer Portifolio", + "repo": "https://github.com/matheusfdosan/portifolio/", + "owner": { + "username": "matheusfdosan", + "email": "matheusfaustinoe20@gmail.com", + "linkedin": "https://www.linkedin.com/in/matheusfaus/", + "discord": "979816215281279019" + }, + "records": { + "TXT": ["vc-domain-verify=matheusdev.is-a.dev,833172e5fe4b188e4883"] + } +} diff --git a/domains/_vercel.matt3o0.json b/domains/_vercel.matt3o0.json index d03be1a44..4138e9a41 100644 --- a/domains/_vercel.matt3o0.json +++ b/domains/_vercel.matt3o0.json @@ -3,7 +3,7 @@ "username": "duvbolone", "email": "duvbolone@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=matt3o0.is-a.dev,f6f05e41e90e74cd0c09"] } } diff --git a/domains/_vercel.mcstatus.json b/domains/_vercel.mcstatus.json index c1d1ffbc9..838b0e3ba 100644 --- a/domains/_vercel.mcstatus.json +++ b/domains/_vercel.mcstatus.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cIYK5Y5_SWXX7gKAiLBmDtHvrjGDi0aVBaferTdh30YqRxym9e3qiRCswWXVOhUtPdgjPk9Essb65dYJmc34_GAdGcwdZWCSAL8_sFsU9nB5YPnum-2c5U_U2fkeQJ75Pq3Gcc_NUcYWiXqyoMRnaqaRe4ShbFVFVhOmUucHB8GvQaiAB-qJwNBuOxPsl6n2QsJ8bctj4PqrU86YFX-NLpqEG_F1uJxIBAbG1hPgIhTMEAnDBhcd_m_sI4_PsBeT1qBrkBRSTiK_pKsrUslmTLuDa2G8pejqSBB17j93XxSKeVPVKIwI1n4zlvudxpDUnefFKiVASknIOwEu8LawAA.IKdlOLsrWCCCfh305StpJw.ordx4etig711lFs9y1udqq-2zvW6fEptKUl3cqHHGgOArR3X5ZzSvlb3LYDtHjKlxqUlxbjJ5ZTj1GksBUFETPNl8EmfzR4bcBQSAGpg6PP913r_yjk5-Tujf7P61Iy8.qZdmfqe_pHg2Q9IVSXNWtg" + "discord": "1167825360151380032" }, - "record": { + "records": { "TXT": "vc-domain-verify=in.mcstatus.is-a.dev,b4848ed9d0fbecb86308" } } diff --git a/domains/_vercel.meghdip.json b/domains/_vercel.meghdip.json new file mode 100644 index 000000000..644b9beee --- /dev/null +++ b/domains/_vercel.meghdip.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "karmakarmeghdip", + "email": "karmakarmeghdip@gmail.com", + "discord": "479631349167423509" + }, + "records": { + "TXT": "vc-domain-verify=meghdip.is-a.dev,c42a80a81afe4ac5800c" + } +} diff --git a/domains/_vercel.menn.json b/domains/_vercel.menn.json new file mode 100644 index 000000000..d74ec3a8b --- /dev/null +++ b/domains/_vercel.menn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hedgehog-menn", + "email": "kp.thananchai@gmail.com", + "discord": "26623men" + }, + "records": { + "TXT": "vc-domain-verify=menn.is-a.dev,888e516936e6a1278bc0" + } +} diff --git a/domains/_vercel.michi.json b/domains/_vercel.michi.json index 9e313e8c0..edaba9349 100644 --- a/domains/_vercel.michi.json +++ b/domains/_vercel.michi.json @@ -3,7 +3,7 @@ "username": "Michi4", "email": "michael.ruep@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=michi.is-a.dev,d0e5ddd1aa39de41c31a"] } } diff --git a/domains/_vercel.mico.json b/domains/_vercel.mico.json index 655089ea6..c7397f187 100644 --- a/domains/_vercel.mico.json +++ b/domains/_vercel.mico.json @@ -2,7 +2,7 @@ "owner": { "username": "micoms" }, - "record": { + "records": { "TXT": ["vc-domain-verify=mico.is-a.dev,1c71f89a6944e037c8f7"] } } diff --git a/domains/_vercel.midnight0s.json b/domains/_vercel.midnight0s.json index cad85d58b..e1fa73815 100644 --- a/domains/_vercel.midnight0s.json +++ b/domains/_vercel.midnight0s.json @@ -3,7 +3,7 @@ "username": "midnight0s", "discord": "817858871388799026" }, - "record": { + "records": { "TXT": "vc-domain-verify=midnight0s.is-a.dev,333b53956284ddc6d49d" } } diff --git a/domains/_vercel.mig.json b/domains/_vercel.mig.json index 73ebbfbbc..329f03175 100644 --- a/domains/_vercel.mig.json +++ b/domains/_vercel.mig.json @@ -7,7 +7,7 @@ "discord": "747499334383304755", "instagram": "miguelcodes7" }, - "record": { + "records": { "TXT": ["vc-domain-verify=mig.is-a.dev,c9171d74a3897a0defc6"] } } diff --git a/domains/_vercel.minhtan.json b/domains/_vercel.minhtan.json new file mode 100644 index 000000000..7a0fc8cde --- /dev/null +++ b/domains/_vercel.minhtan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=minhtan.is-a.dev,7be64448654af271a7c5" + } +} diff --git a/domains/_vercel.mjresu.json b/domains/_vercel.mjresu.json new file mode 100644 index 000000000..de7a9b2b5 --- /dev/null +++ b/domains/_vercel.mjresu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mjdsj", + "email": "work.mjdsj+is-a-dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=mjresu.is-a.dev,2122712d466f4e306e1d" + } +} diff --git a/domains/_vercel.mkeko.json b/domains/_vercel.mkeko.json index 08c102457..b47b11270 100644 --- a/domains/_vercel.mkeko.json +++ b/domains/_vercel.mkeko.json @@ -3,7 +3,7 @@ "username": "Mkeko", "discord": "1212043905059790881" }, - "record": { + "records": { "TXT": "vc-domain-verify=mkeko.is-a.dev,060738e86128a300ceee" } } diff --git a/domains/_vercel.moein.json b/domains/_vercel.moein.json new file mode 100644 index 000000000..ec8e0edaf --- /dev/null +++ b/domains/_vercel.moein.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TrueMoein", + "email": "truemoein@gmail.com", + "discord": "truemoein" + }, + "records": { + "TXT": "vc-domain-verify=moein.is-a.dev,eccbf656847788d65795" + } +} diff --git a/domains/_vercel.monosen.json b/domains/_vercel.monosen.json new file mode 100644 index 000000000..57bab14ed --- /dev/null +++ b/domains/_vercel.monosen.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Monosen", + "email": "edisonbj21@gmail.com", + "discord": "monosen" + }, + "records": { + "TXT": "vc-domain-verify=monosen.is-a.dev,a2fd2dc04b730870b37c" + } +} diff --git a/domains/_vercel.mr-julus.json b/domains/_vercel.mr-julus.json new file mode 100644 index 000000000..b2eb44848 --- /dev/null +++ b/domains/_vercel.mr-julus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BougSoon-Studio", + "email": "bougsoon.studio@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=mr-julus.is-a.dev,caaed911982c75cb0961" + } +} diff --git a/domains/_vercel.mrincer.json b/domains/_vercel.mrincer.json new file mode 100644 index 000000000..2734ba346 --- /dev/null +++ b/domains/_vercel.mrincer.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khincer", + "email": "kirk.incerg@gmail.com", + "discord": "kyllhua" + }, + "records": { + "TXT": "vc-domain-verify=mrincer.is-a.dev,b49fbc8c9c4be061da53" + } +} diff --git a/domains/_vercel.mrtspeedy.json b/domains/_vercel.mrtspeedy.json new file mode 100644 index 000000000..f7728319c --- /dev/null +++ b/domains/_vercel.mrtspeedy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mrtspeedy", + "email": "toxicspeedytv@gmail.com", + "discord": "1095502790534627348" + }, + "records": { + "TXT": "vc-domain-verify=mrtspeedy.is-a.dev,c168ba7b9bdca5dd1be8" + } +} diff --git a/domains/_vercel.mudasir.json b/domains/_vercel.mudasir.json new file mode 100644 index 000000000..256088244 --- /dev/null +++ b/domains/_vercel.mudasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzamudassir", + "discord": "0xmudassir" + }, + "records": { + "TXT": "vc-domain-verify=mudasir.is-a.dev,2d0551deb0d92e5838a7" + } +} diff --git a/domains/_vercel.muhammed.json b/domains/_vercel.muhammed.json new file mode 100644 index 000000000..373cca7e3 --- /dev/null +++ b/domains/_vercel.muhammed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MhmdFais", + "email": "mofam534@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=muhammed.is-a.dev,98134514b3a6d270df4b" + } +} diff --git a/domains/_vercel.munir.json b/domains/_vercel.munir.json new file mode 100644 index 000000000..2706ec62e --- /dev/null +++ b/domains/_vercel.munir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "munirsiddiqui54", + "email": "munir230204@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=munir.is-a.dev,c7f53494eaedfcf41c03" + } +} diff --git a/domains/_vercel.muralikrishna.json b/domains/_vercel.muralikrishna.json new file mode 100644 index 000000000..89578776a --- /dev/null +++ b/domains/_vercel.muralikrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muralimallela", + "email": "mmallela9@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=muralikrishna.is-a.dev,aa4acc43d9653d1ae68d" + } +} diff --git a/domains/_vercel.muthomi.json b/domains/_vercel.muthomi.json new file mode 100644 index 000000000..1d6e29a72 --- /dev/null +++ b/domains/_vercel.muthomi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "michaelmuthomi", + "discord": "michaelgikunda" + }, + "records": { + "TXT": "vc-domain-verify=muthomi.is-a.dev,9e31bd88e28832c37f97" + } +} diff --git a/domains/_vercel.mzaman.json b/domains/_vercel.mzaman.json new file mode 100644 index 000000000..ae840493f --- /dev/null +++ b/domains/_vercel.mzaman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzazaman", + "email": "mirzazaman828@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=mzaman.is-a.dev,23ba156f3878cfc860f7" + } +} diff --git a/domains/_vercel.n.json b/domains/_vercel.n.json index 9313a98af..a0e427db7 100644 --- a/domains/_vercel.n.json +++ b/domains/_vercel.n.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=n.is-a.dev,8435c76be2d4e8aaa229" - ] - } + "owner": { + "username": "NotNalin", + "email": "notnalin@protonmail.com", + "discord": "trickygamer" + }, + "records": { + "TXT": "vc-domain-verify=n.is-a.dev,5cac954ec8313a534159" + } } diff --git a/domains/_vercel.nabin.json b/domains/_vercel.nabin.json new file mode 100644 index 000000000..1aafa27f6 --- /dev/null +++ b/domains/_vercel.nabin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nabinkatwal7", + "email": "mediocampistaa@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=nabin.is-a.dev,bfd13935a3cb2aaea0e5" + } +} diff --git a/domains/_vercel.naimur.json b/domains/_vercel.naimur.json new file mode 100644 index 000000000..7e7327bd0 --- /dev/null +++ b/domains/_vercel.naimur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mohammad-naimur-rahman", + "discord": "829283275846975488" + }, + "records": { + "TXT": "vc-domain-verify=naimur.is-a.dev,0a757d4e3b315863d368" + } +} diff --git a/domains/_vercel.namansethi.json b/domains/_vercel.namansethi.json new file mode 100644 index 000000000..b50b2bdb7 --- /dev/null +++ b/domains/_vercel.namansethi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "namansethi13", + "discord": "namansethi", + "email": "namansethi1328@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=namansethi.is-a.dev,e0b892773250b43800c9" + } +} diff --git a/domains/_vercel.namansrivastava.json b/domains/_vercel.namansrivastava.json new file mode 100644 index 000000000..6ecd5f34a --- /dev/null +++ b/domains/_vercel.namansrivastava.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "naman-0804", + "email": "namansrivastava1608@gmail.com", + "discord": "naman_1101" + }, + "records": { + "TXT": "vc-domain-verify=namansrivastava.is-a.dev,7b128b70cd9aae28bf1c" + } +} diff --git a/domains/_vercel.namht.json b/domains/_vercel.namht.json new file mode 100644 index 000000000..2c94405aa --- /dev/null +++ b/domains/_vercel.namht.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lagux-coding", + "email": "nguyenhientrungnam@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=namht.is-a.dev,e9380ff504bc157f2eda" + } +} diff --git a/domains/_vercel.narasima.json b/domains/_vercel.narasima.json new file mode 100644 index 000000000..a3212cf31 --- /dev/null +++ b/domains/_vercel.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=blog.narasima.is-a.dev,f77f79e5650f4790387a" + } +} diff --git a/domains/_vercel.nathanospino.json b/domains/_vercel.nathanospino.json new file mode 100644 index 000000000..d7ab568bd --- /dev/null +++ b/domains/_vercel.nathanospino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "C4lumny", + "email": "ospinonathan@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=nathanospino.is-a.dev,4130bdbb1e9dc4fcfcc0" + } +} diff --git a/domains/_vercel.navdeep.json b/domains/_vercel.navdeep.json new file mode 100644 index 000000000..94f42d7e9 --- /dev/null +++ b/domains/_vercel.navdeep.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Navdeep-Codes", + "email": "navdeep13dps@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=navdeep.is-a.dev,f3b3d4488b914f2fb991" + } +} diff --git a/domains/_vercel.nestornahuel.json b/domains/_vercel.nestornahuel.json new file mode 100644 index 000000000..b4d0d66d4 --- /dev/null +++ b/domains/_vercel.nestornahuel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NestorNahuel", + "email": "nahuel6195@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=nestornahuel.is-a.dev,efb92feab05594a5f526" + } +} diff --git a/domains/_vercel.newtun-code-cheat-sheet.json b/domains/_vercel.newtun-code-cheat-sheet.json new file mode 100644 index 000000000..81afd47bd --- /dev/null +++ b/domains/_vercel.newtun-code-cheat-sheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=newtun-code-cheat-sheet.is-a.dev,d8b78b5284419c18ec16" + } +} diff --git a/domains/_vercel.newtun.json b/domains/_vercel.newtun.json new file mode 100644 index 000000000..699b93037 --- /dev/null +++ b/domains/_vercel.newtun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=newtun.is-a.dev,4bb1f2ec7e540d7f7a2b" + } +} diff --git a/domains/_vercel.ngoutam.json b/domains/_vercel.ngoutam.json new file mode 100644 index 000000000..22cbe8165 --- /dev/null +++ b/domains/_vercel.ngoutam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Goutam-04", + "email": "goutamnayak2804+github1@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=ngoutam.is-a.dev,9c110859b66d7ddcd7b5"] + } +} diff --git a/domains/_vercel.nguyenminhtuan.json b/domains/_vercel.nguyenminhtuan.json new file mode 100644 index 000000000..92d414c68 --- /dev/null +++ b/domains/_vercel.nguyenminhtuan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "records": { + "TXT": "vc-domain-verify=nguyenminhtuan.is-a.dev,2910b5006f1f208b05e6" + } +} diff --git a/domains/_vercel.nicolas.json b/domains/_vercel.nicolas.json new file mode 100644 index 000000000..b87f0deca --- /dev/null +++ b/domains/_vercel.nicolas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "niicojs", + "discord": ".niico." + }, + "records": { + "TXT": "vc-domain-verify=nicolas.is-a.dev,1acb257fda76a2df31ce" + } +} diff --git a/domains/_vercel.nine.json b/domains/_vercel.nine.json index 98e167692..be63f2e89 100644 --- a/domains/_vercel.nine.json +++ b/domains/_vercel.nine.json @@ -3,7 +3,7 @@ "username": "NineLEL", "email": "notninelel@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=nine.is-a.dev,787b08b6c27017d410df"] } } diff --git a/domains/_vercel.nithinramkalava.json b/domains/_vercel.nithinramkalava.json new file mode 100644 index 000000000..cd6306510 --- /dev/null +++ b/domains/_vercel.nithinramkalava.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nithinramkalava", + "email": "nithinramkalava@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=nithinramkalava.is-a.dev,2c94b1dbc37b602f2519" + } +} diff --git a/domains/_vercel.notzer0two.json b/domains/_vercel.notzer0two.json new file mode 100644 index 000000000..218380d18 --- /dev/null +++ b/domains/_vercel.notzer0two.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=notzer0two.is-a.dev,38a2a717010666874386" + } +} diff --git a/domains/_vercel.nparashar150.json b/domains/_vercel.nparashar150.json new file mode 100644 index 000000000..8d6da34b5 --- /dev/null +++ b/domains/_vercel.nparashar150.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nparashar150", + "email": "nparashar150@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=nparashar150.is-a.dev,129e61876792da1afb53" + } +} diff --git a/domains/_vercel.olasubomi.json b/domains/_vercel.olasubomi.json new file mode 100644 index 000000000..5ba3974b6 --- /dev/null +++ b/domains/_vercel.olasubomi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "firstaxel", + "email": "olasubomiolubisi@geeg.space", + "discord": "1209136236607049758" + }, + "records": { + "TXT": "vc-domain-verify=olasubomi.is-a.dev,f6bc7744ff52f86278e8" + } +} diff --git a/domains/_vercel.omshahane.json b/domains/_vercel.omshahane.json index d857ad4b4..315ea2ab8 100644 --- a/domains/_vercel.omshahane.json +++ b/domains/_vercel.omshahane.json @@ -1,10 +1,9 @@ { "owner": { "username": "shahane806", - "email": "om.p.shahane@gmail.com", - "discord": "" + "email": "om.p.shahane@gmail.com" }, - "record": { + "records": { "TXT": "vc-domain-verify=omshahane.is-a.dev,6e9f5b8eb4f56ccf9b5a" } } diff --git a/domains/_vercel.onerandom.json b/domains/_vercel.onerandom.json new file mode 100644 index 000000000..d0d670d90 --- /dev/null +++ b/domains/_vercel.onerandom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OneRandom1509", + "email": "anantukid@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=onerandom.is-a.dev,e18318031614810f658f" + } +} diff --git a/domains/_vercel.orellanamatias.json b/domains/_vercel.orellanamatias.json new file mode 100644 index 000000000..2c12efb45 --- /dev/null +++ b/domains/_vercel.orellanamatias.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OrellanaMatias", + "email": "meorellanaramirez@gmail.com", + "discord": "1151115185419997184" + }, + "records": { + "TXT": "vc-domain-verify=orellanamatias.is-a.dev,784ca0f60e4e4a43e240" + } +} diff --git a/domains/_vercel.osama.json b/domains/_vercel.osama.json new file mode 100644 index 000000000..27e2edc4c --- /dev/null +++ b/domains/_vercel.osama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=osama.is-a.dev,635c93c34867abdfb117" + } +} diff --git a/domains/_vercel.panntod.json b/domains/_vercel.panntod.json new file mode 100644 index 000000000..a385662b4 --- /dev/null +++ b/domains/_vercel.panntod.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "panntod", + "email": "munjalindra.pandhu@gmail.com", + "discord": "975960358999171152" + }, + "records": { + "TXT": "vc-domain-verify=panntod.is-a.dev,435ff362356e5d45062f" + } +} diff --git a/domains/_vercel.paul8liveira.json b/domains/_vercel.paul8liveira.json new file mode 100644 index 000000000..7ee9afbe1 --- /dev/null +++ b/domains/_vercel.paul8liveira.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paul8liveira", + "email": "paul8liveira@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=paul8liveira.is-a.dev,86dcef96f01c5029a229" + } +} diff --git a/domains/_vercel.pdf.aaqif.json b/domains/_vercel.pdf.aaqif.json new file mode 100644 index 000000000..2298b39ef --- /dev/null +++ b/domains/_vercel.pdf.aaqif.json @@ -0,0 +1,10 @@ +{ + "description": "PDF Project", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=pdf.aaqif.is-a.dev,a494cb00a704dae80483"] + } +} diff --git a/domains/_vercel.pedrofff.json b/domains/_vercel.pedrofff.json new file mode 100644 index 000000000..01eb4c73e --- /dev/null +++ b/domains/_vercel.pedrofff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pedrofff23", + "email": "pmendes09@hotmail.com" + }, + "records": { + "TXT": "vc-domain-verify=pedrofff.is-a.dev,5dd6c195a19c9a69c00b" + } +} diff --git a/domains/_vercel.phongli.json b/domains/_vercel.phongli.json new file mode 100644 index 000000000..a5be08998 --- /dev/null +++ b/domains/_vercel.phongli.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PhongLi", + "email": "longpt1109@gmail.com", + "discord": "_younglin" + }, + "records": { + "TXT": "vc-domain-verify=phongli.is-a.dev,b6623ffbab5ed6f97cf5" + } +} diff --git a/domains/_vercel.poysa213.json b/domains/_vercel.poysa213.json new file mode 100644 index 000000000..35ec08bc4 --- /dev/null +++ b/domains/_vercel.poysa213.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "poysa213", + "email": "hanaiayoucef@gmail.com", + "discord": "944238875566551110", + "twitter": "poysa213", + "repo": "https://github.com/poysa213/portfolio" + }, + "records": { + "TXT": "vc-domain-verify=poysa213.is-a.dev,0635f123b973ee05436d" + } +} diff --git a/domains/_vercel.pranoy.json b/domains/_vercel.pranoy.json new file mode 100644 index 000000000..6c1d02d63 --- /dev/null +++ b/domains/_vercel.pranoy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pranoymajumdar", + "email": "pranoyfr@gmail.com", + "discord": "1303089079809740904" + }, + "records": { + "TXT": "vc-domain-verify=pranoy.is-a.dev,9c5ff5dc93544c9ffee0" + } +} diff --git a/domains/_vercel.prashil.json b/domains/_vercel.prashil.json new file mode 100644 index 000000000..90ff49dc4 --- /dev/null +++ b/domains/_vercel.prashil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prashilthul", + "email": "prashil1411@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=prashil.is-a.dev,4d4ecde09797589bede3"] + } +} diff --git a/domains/_vercel.pratham.json b/domains/_vercel.pratham.json new file mode 100644 index 000000000..91f73b5b3 --- /dev/null +++ b/domains/_vercel.pratham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Prathamdas3", + "email": "daspratham3@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=pratham.is-a.dev,b632047325056df87293" + } +} diff --git a/domains/_vercel.pratham15541.json b/domains/_vercel.pratham15541.json new file mode 100644 index 000000000..f5b96d03b --- /dev/null +++ b/domains/_vercel.pratham15541.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pratham15541", + "email": "prathamparikh94@gmail.com", + "discord": "951846985172938782" + }, + "records": { + "TXT": "vc-domain-verify=pratham15541.is-a.dev,6cf0b1eb1387b1d6aa5f" + } +} diff --git a/domains/_vercel.prathm.json b/domains/_vercel.prathm.json new file mode 100644 index 000000000..49062ac40 --- /dev/null +++ b/domains/_vercel.prathm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prathm", + "email": "prathmtayade30@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=prathm.is-a.dev,e592414faa9bcf8fe0a4"] + } +} diff --git a/domains/_vercel.praveen-2006.json b/domains/_vercel.praveen-2006.json new file mode 100644 index 000000000..f791d987c --- /dev/null +++ b/domains/_vercel.praveen-2006.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "InfiniteCoder06", + "email": "mallidipraveenkumar@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=praveen-2006.is-a.dev,6ed24154aab38b23b2d3" + } +} diff --git a/domains/_vercel.princeprajapati.json b/domains/_vercel.princeprajapati.json index 827de3b7f..44755c8c9 100644 --- a/domains/_vercel.princeprajapati.json +++ b/domains/_vercel.princeprajapati.json @@ -3,7 +3,7 @@ "username": "notreallyprince", "email": "prince30112001@gmail.com" }, - "record": { - "TXT": "vc-domain-verify=princeprajapati.is-a.dev,9b919407776e11ecff7a" + "records": { + "TXT": "vc-domain-verify=princeprajapati.is-a.dev,f0d9843f925488ed34bb" } } diff --git a/domains/_vercel.princexd.json b/domains/_vercel.princexd.json index 46c385427..0235c4672 100644 --- a/domains/_vercel.princexd.json +++ b/domains/_vercel.princexd.json @@ -3,7 +3,7 @@ "username": "notreallyprince", "email": "prince30112001@gmail.com" }, - "record": { - "TXT": "vc-domain-verify=princexd.is-a.dev,acf5910bb60fc8fecfd1" + "records": { + "TXT": "vc-domain-verify=princexd.is-a.dev,5fd1a3d1dc5108343da7" } } diff --git a/domains/_vercel.pritam.json b/domains/_vercel.pritam.json new file mode 100644 index 000000000..9464df204 --- /dev/null +++ b/domains/_vercel.pritam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ImDarkShadow", + "email": "itspritam@proton.me" + }, + "records": { + "TXT": "pvc-domain-verify=pritam.is-a.dev,8deacca92e10a3d2f865" + } +} diff --git a/domains/_vercel.profile.alora.json b/domains/_vercel.profile.alora.json index ee7601e82..9565e18c4 100644 --- a/domains/_vercel.profile.alora.json +++ b/domains/_vercel.profile.alora.json @@ -4,7 +4,7 @@ "email": "xaloramia@gmail.com", "discord": "1236292707371057216" }, - "record": { + "records": { "TXT": "vc-domain-verify=profile.alora.is-a.dev,71bd18cc5db61dc75f91" } } diff --git a/domains/_vercel.pythonweb.json b/domains/_vercel.pythonweb.json new file mode 100644 index 000000000..1ae336cfd --- /dev/null +++ b/domains/_vercel.pythonweb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeGeekR", + "discord": "768080481924677632" + }, + "records": { + "TXT": "vc-domain-verify=pythonweb.is-a.dev,395acbd091553c5523bb" + } +} diff --git a/domains/_vercel.q.json b/domains/_vercel.q.json index bdf225642..cf3d5b627 100644 --- a/domains/_vercel.q.json +++ b/domains/_vercel.q.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=q.is-a.dev,8798cf095e1f783b5302" - ] - } + "owner": { + "username": "syedtahseen", + "email": "itxtahseen@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=q.is-a.dev,8798cf095e1f783b5302"] + } } diff --git a/domains/_vercel.raafey.json b/domains/_vercel.raafey.json new file mode 100644 index 000000000..961da3f19 --- /dev/null +++ b/domains/_vercel.raafey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RaafeyRaza", + "email": "raafeyraza1@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=raafey.is-a.dev,aa0e06a894333b259a4b" + } +} diff --git a/domains/_vercel.rabug.json b/domains/_vercel.rabug.json index ea9a995f1..8afd2514f 100644 --- a/domains/_vercel.rabug.json +++ b/domains/_vercel.rabug.json @@ -3,7 +3,7 @@ "username": "NotRabug50", "discord": "541194606214250496" }, - "record": { + "records": { "TXT": "vc-domain-verify=rabug.is-a.dev,4ba0ae912b528f63a9a7" } } diff --git a/domains/_vercel.rafsanza.json b/domains/_vercel.rafsanza.json new file mode 100644 index 000000000..87527379e --- /dev/null +++ b/domains/_vercel.rafsanza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rafsanza-hub", + "email": "rapsanza@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=rafsanza.is-a.dev,6b6643acbebdf80cd44b" + } +} diff --git a/domains/_vercel.raghu.json b/domains/_vercel.raghu.json new file mode 100644 index 000000000..a10b67a25 --- /dev/null +++ b/domains/_vercel.raghu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raghu-8", + "email": "raghu.project.websites@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=raghu.is-a.dev,64be76cc9f11decf61dd" + } +} diff --git a/domains/_vercel.rahulgurujala.json b/domains/_vercel.rahulgurujala.json new file mode 100644 index 000000000..9ab02b408 --- /dev/null +++ b/domains/_vercel.rahulgurujala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rahulgurujala", + "email": "isaacnewtonrahul@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=rahulgurujala.is-a.dev,6daa2c803848d4e808d9" + } +} diff --git a/domains/_vercel.rajeshkumar.json b/domains/_vercel.rajeshkumar.json new file mode 100644 index 000000000..625e6f094 --- /dev/null +++ b/domains/_vercel.rajeshkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354586@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=rajeshkumar.is-a.dev,52cd27c94b7115d293d5" + } +} diff --git a/domains/_vercel.rajeshreddy.json b/domains/_vercel.rajeshreddy.json new file mode 100644 index 000000000..ebf4ec815 --- /dev/null +++ b/domains/_vercel.rajeshreddy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rajesh-reddy1", + "email": "mrrajeshreddy1@gmail.com", + "discord": "suuiii_1" + }, + "records": { + "TXT": "vc-domain-verify=rajeshreddy.is-a.dev,400e697edc993cbbeab7" + } +} diff --git a/domains/_vercel.rajputshashank.json b/domains/_vercel.rajputshashank.json new file mode 100644 index 000000000..d812a02f0 --- /dev/null +++ b/domains/_vercel.rajputshashank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rajputshashank003", + "email": "hariomshashank@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=rajputshashank.is-a.dev,b54453fc10c77cf72c1d"] + } +} diff --git a/domains/_vercel.ramirocosa.json b/domains/_vercel.ramirocosa.json new file mode 100644 index 000000000..5c3544a0f --- /dev/null +++ b/domains/_vercel.ramirocosa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RadikeCosa", + "email": "ramirocosa@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=ramirocosa.is-a.dev,7455e9c60351674f2f23"] + } +} diff --git a/domains/_vercel.ramya.json b/domains/_vercel.ramya.json new file mode 100644 index 000000000..01923ff1c --- /dev/null +++ b/domains/_vercel.ramya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ramya-Me", + "email": "ramyashah.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ramya.is-a.dev,01d3d04febd477ec42b8" + } +} diff --git a/domains/_vercel.ranjityadav.json b/domains/_vercel.ranjityadav.json new file mode 100644 index 000000000..83013c0a6 --- /dev/null +++ b/domains/_vercel.ranjityadav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "13yadav", + "email": "yadavranjit521@gmail.com", + "discord": "529604454908035083" + }, + "records": { + "TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43" + } +} diff --git a/domains/_vercel.raoufbakhti.json b/domains/_vercel.raoufbakhti.json index 50eef27c1..c204a6076 100644 --- a/domains/_vercel.raoufbakhti.json +++ b/domains/_vercel.raoufbakhti.json @@ -3,7 +3,7 @@ "username": "Raoufbaa", "discord": "515230523128414228" }, - "record": { + "records": { "TXT": "vc-domain-verify=raoufbakhti.is-a.dev,6a370dda8552268e5cb6" } } diff --git a/domains/_vercel.rashed.json b/domains/_vercel.rashed.json index 0cc4de9b5..bfb461f42 100644 --- a/domains/_vercel.rashed.json +++ b/domains/_vercel.rashed.json @@ -3,7 +3,7 @@ "username": "Rashed360", "email": "ruman.rush+isadev@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=rashed.is-a.dev,b900d35114e0f3394b8c"] } } diff --git a/domains/_vercel.rathee.json b/domains/_vercel.rathee.json new file mode 100644 index 000000000..a40ac81e1 --- /dev/null +++ b/domains/_vercel.rathee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abhinavrathee", + "email": "abhinavrathee00007@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=rathee.is-a.dev,1ee9ef074e87326c7f99" + } +} diff --git a/domains/_vercel.ravener.json b/domains/_vercel.ravener.json index a712d2f1b..85e276315 100644 --- a/domains/_vercel.ravener.json +++ b/domains/_vercel.ravener.json @@ -5,7 +5,7 @@ "twitter": "RavenRavener", "discord": "292690616285134850" }, - "record": { + "records": { "TXT": "vc-domain-verify=ravener.is-a.dev,80897cd5c55c67bd2af7" } } diff --git a/domains/_vercel.raynaldescala.json b/domains/_vercel.raynaldescala.json new file mode 100644 index 000000000..0c451acc3 --- /dev/null +++ b/domains/_vercel.raynaldescala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raynaldescala", + "email": "raynaldescala01@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=raynaldescala.is-a.dev,7c5440b0cdb643d66472" + } +} diff --git a/domains/_vercel.redaassemghor.json b/domains/_vercel.redaassemghor.json index 8761743b5..d5050758d 100644 --- a/domains/_vercel.redaassemghor.json +++ b/domains/_vercel.redaassemghor.json @@ -3,7 +3,7 @@ "username": "redaassemghor", "discord": "r3dapt" }, - "record": { + "records": { "TXT": "vc-domain-verify=reda.is-a.dev,6d8fb75a7046531955bf" } } diff --git a/domains/_vercel.reiiv-beta.json b/domains/_vercel.reiiv-beta.json new file mode 100644 index 000000000..8a3cca073 --- /dev/null +++ b/domains/_vercel.reiiv-beta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=reiiv.is-a.dev,82bf39e1f2c36339a232" + } +} diff --git a/domains/_vercel.reiiv-dev.json b/domains/_vercel.reiiv-dev.json new file mode 100644 index 000000000..2e7c03979 --- /dev/null +++ b/domains/_vercel.reiiv-dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=reiiv-is.a.dev,cd29cdb7ae300a2b1652" + } +} diff --git a/domains/_vercel.reiiv.json b/domains/_vercel.reiiv.json new file mode 100644 index 000000000..8a3cca073 --- /dev/null +++ b/domains/_vercel.reiiv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=reiiv.is-a.dev,82bf39e1f2c36339a232" + } +} diff --git a/domains/_vercel.rejectmodders.json b/domains/_vercel.rejectmodders.json new file mode 100644 index 000000000..48a0c9a6e --- /dev/null +++ b/domains/_vercel.rejectmodders.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RejectModders", + "email": "rejectmodders@disutils.com", + "discord": "RejectModders" + }, + "records": { + "TXT": "vc-domain-verify=rejectmodders.is-a.dev,96098d7f80d62c706b12" + } +} diff --git a/domains/_vercel.renant.json b/domains/_vercel.renant.json new file mode 100644 index 000000000..69e6b577e --- /dev/null +++ b/domains/_vercel.renant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "renant", + "email": "renan_replay@live.com" + }, + "records": { + "TXT": "vc-domain-verify=renant.is-a.dev,fe738eebddc5a20097e6" + } +} diff --git a/domains/_vercel.renato-dulog.json b/domains/_vercel.renato-dulog.json new file mode 100644 index 000000000..1361b84bb --- /dev/null +++ b/domains/_vercel.renato-dulog.json @@ -0,0 +1,10 @@ +{ + "description": "Web Developer Portifolio", + "owner": { + "username": "renskiedulog", + "email": "renrendulog@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=renato-dulog.is-a.dev,eff46947abaf954087b7" + } +} diff --git a/domains/_vercel.renzcole.json b/domains/_vercel.renzcole.json new file mode 100644 index 000000000..9eca21ed7 --- /dev/null +++ b/domains/_vercel.renzcole.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeBuddySLTNS", + "email": "renz2arjhay@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=renzcole.is-a.dev,ed459816c1440ddeef46" + } +} diff --git a/domains/_vercel.retrouser955.json b/domains/_vercel.retrouser955.json index 89f29a701..2ce41ad7c 100644 --- a/domains/_vercel.retrouser955.json +++ b/domains/_vercel.retrouser955.json @@ -3,7 +3,7 @@ "username": "retrouser955", "discord": "691111067807514685" }, - "record": { + "records": { "TXT": "vc-domain-verify=retrouser955.is-a.dev,7846a7cf34232910d04d" } } diff --git a/domains/_vercel.reyuki.json b/domains/_vercel.reyuki.json new file mode 100644 index 000000000..b8aff30f6 --- /dev/null +++ b/domains/_vercel.reyuki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyukii", + "email": "me@reyuki.site" + }, + "records": { + "TXT": "vc-domain-verify=reyuki.is-a.dev,e29957b5ec5dfbe90704" + } +} diff --git a/domains/_vercel.riccardo126.json b/domains/_vercel.riccardo126.json new file mode 100644 index 000000000..6261e6cf4 --- /dev/null +++ b/domains/_vercel.riccardo126.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riccardo126", + "email": "riccardopassacantando@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=riccardo126.is-a.dev,408e1d0b2f39a662b0ae" + } +} diff --git a/domains/_vercel.ridwan.json b/domains/_vercel.ridwan.json new file mode 100644 index 000000000..b27627944 --- /dev/null +++ b/domains/_vercel.ridwan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ridwanyinus", + "email": "ridwanyinusa15@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ridwan.is-a.dev,225e2c74c9221022a84f" + } +} diff --git a/domains/_vercel.risqiahmad.json b/domains/_vercel.risqiahmad.json new file mode 100644 index 000000000..f1a7b283f --- /dev/null +++ b/domains/_vercel.risqiahmad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "records": { + "TXT": "vc-domain-verify=risqiahmad.is-a.dev,8bd8af8f24fe915c1ac4" + } +} diff --git a/domains/_vercel.ritam.json b/domains/_vercel.ritam.json index b7dbe65bd..0593f4dff 100644 --- a/domains/_vercel.ritam.json +++ b/domains/_vercel.ritam.json @@ -3,7 +3,7 @@ "username": "nxrmqlly", "email": "ritam@duck.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=ritam.is-a.dev,fc2fd1d325b0a4f9269b"] } } diff --git a/domains/_vercel.rith.json b/domains/_vercel.rith.json new file mode 100644 index 000000000..edd988e31 --- /dev/null +++ b/domains/_vercel.rith.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rithb898", + "email": "rithb2004@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=rith.is-a.dev,9233c12a34113300d9af" + } +} diff --git a/domains/_vercel.rizz.json b/domains/_vercel.rizz.json index 137b386a2..cd3530e14 100644 --- a/domains/_vercel.rizz.json +++ b/domains/_vercel.rizz.json @@ -3,7 +3,7 @@ "username": "bananaking6", "discord": "skibidibagel" }, - "record": { - "TXT": "vc-domain-verify=rizz.is-a.dev,cbd2a4123c68d5d0fef0" + "records": { + "TXT": "vc-domain-verify=old.rizz.is-a.dev,b78dc00492f43dce5eb2" } } diff --git a/domains/_vercel.roger.json b/domains/_vercel.roger.json new file mode 100644 index 000000000..c94297b3c --- /dev/null +++ b/domains/_vercel.roger.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rogerHuntGauntlet", + "email": "regorhunt02052@gmail.com", + "discord": "roger_jgs404040" + }, + "records": { + "TXT": "vc-domain-verify=roger.is-a.dev,3c1580f4736931662645" + } +} diff --git a/domains/_vercel.ronaldo.json b/domains/_vercel.ronaldo.json new file mode 100644 index 000000000..8a753d427 --- /dev/null +++ b/domains/_vercel.ronaldo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ronaldoao", + "email": "ronaldoa.ojeda@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ronaldo.is-a.dev,bba2427440502a716d1c" + } +} diff --git a/domains/_vercel.roque.json b/domains/_vercel.roque.json new file mode 100644 index 000000000..af5aa4b0c --- /dev/null +++ b/domains/_vercel.roque.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "luisfroquez", + "email": "luisfroquez@gmail.com", + "discord": "lroque.dev" + }, + "records": { + "TXT": "vc-domain-verify=roque.is-a.dev,43b1a7bc843584779f24" + } +} diff --git a/domains/_vercel.rushabh.json b/domains/_vercel.rushabh.json new file mode 100644 index 000000000..8935ff963 --- /dev/null +++ b/domains/_vercel.rushabh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rushabhcodes", + "email": "rushabhpatil.dev@gmail.com", + "discord": "_rushabh" + }, + "records": { + "TXT": "vc-domain-verify=rushabh.is-a.dev,e47a4ecf75c610a591e3" + } +} diff --git a/domains/_vercel.ryanbaig.json b/domains/_vercel.ryanbaig.json index 0e7a80730..ef7ad29cc 100644 --- a/domains/_vercel.ryanbaig.json +++ b/domains/_vercel.ryanbaig.json @@ -1,8 +1,9 @@ { "owner": { - "username": "RyanBaig" + "username": "RyanBaig", + "discord": "757475933170040893" }, - "record": { + "records": { "TXT": ["vc-domain-verify=ryanbaig.is-a.dev,6611c040f39e1689070b"] } } diff --git a/domains/_vercel.s1dd.json b/domains/_vercel.s1dd.json new file mode 100644 index 000000000..1696e67c1 --- /dev/null +++ b/domains/_vercel.s1dd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nots1dd", + "email": "sid9.karanam@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=s1dd.is-a.dev,e08de74daf627d6e653d" + } +} diff --git a/domains/_vercel.sabidzpro.json b/domains/_vercel.sabidzpro.json new file mode 100644 index 000000000..2e35a177f --- /dev/null +++ b/domains/_vercel.sabidzpro.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio saya yang di-deploy di Vercel", + "repo": "https://github.com/saifulabidin/saifulabidin.github.io", + "owner": { + "username": "saifulabidin", + "email": "syaiful.osd@yahoo.com" + }, + "records": { + "TXT":"vc-domain-verify=sabidzpro.is-a.dev,d94791005dd8e24e874c" + } + } \ No newline at end of file diff --git a/domains/_vercel.sadik.json b/domains/_vercel.sadik.json new file mode 100644 index 000000000..fd619c7c4 --- /dev/null +++ b/domains/_vercel.sadik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "square-story", + "email": "gibmepreo@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=sadik.is-a.dev,7e3d1f287fcea04a1ec3" + } +} diff --git a/domains/_vercel.saif.json b/domains/_vercel.saif.json new file mode 100644 index 000000000..99a4acc34 --- /dev/null +++ b/domains/_vercel.saif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saifkhanz", + "email": "saif137.khan@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=saif.is-a.dev,8f2dcd17056c670b7276" + } +} diff --git a/domains/_vercel.salman.json b/domains/_vercel.salman.json new file mode 100644 index 000000000..aa1ce67d4 --- /dev/null +++ b/domains/_vercel.salman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "salmaniyad", + "email": "eng.salmaniyad@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=salman.is-a.dev,f9d09088248e6fdd1e9a" + } +} diff --git a/domains/_vercel.samirkhanal.json b/domains/_vercel.samirkhanal.json new file mode 100644 index 000000000..93e34373d --- /dev/null +++ b/domains/_vercel.samirkhanal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khanal-samir", + "email": "gdssamir@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=samirkhanal.is-a.dev,ea1c15390e801aa3ea34" + } +} diff --git a/domains/_vercel.samishoukat.json b/domains/_vercel.samishoukat.json new file mode 100644 index 000000000..a9ccb53d5 --- /dev/null +++ b/domains/_vercel.samishoukat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samishoukat12", + "email": "samishoukat12@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=samishoukat.is-a.dev,f7c3cb972c650104d507" + } +} diff --git a/domains/_vercel.sampath.json b/domains/_vercel.sampath.json index 47bc6f7d8..75a63bbd9 100644 --- a/domains/_vercel.sampath.json +++ b/domains/_vercel.sampath.json @@ -1,10 +1,9 @@ { "owner": { "username": "gujarathisampath", - "discord": "984015688807100419", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.HdRKWFBWLb9Jow6ok8KJNePBagFbW4z4fYlKRDJsiLJaIMHoY0uuWuI2GfZncB8gVBGIkkahmVVtAogA9jEcJsvPnJq9KJm3m4gnCAUZqMUf7yb_Wo7SAMBTj5qdvQEvMbQdRHYBk9aHu5hna6vjPXe3PMDM6zBeLL9478YDFWUYo-PGuTOZOoea7Y6oqlgLEKAu1Qv8_Hn9P9ev4UD3FPjCoVDpUV0AypUr61W5BsHnmeLT3yrd_w0cKrPUsKdGZ8ChK4M_Hx3-bSAvNYnxO4PPDwZd_m2GCFATUCY6YIyCZpbH_YDXhhyruRDLQ_ExYpuvn015a1Y-OA2KsJ6pSQ.jz4w3iTeX1vzZRvWmZdFKA.bjI7XBJ1E7_P7NsFJ8ITY3G3bm1XVHjsTyhTtI09_UkO20BRVX1YQeyp03Gk2Pjjp5BMSq6AbY3hoTbkhhFnDJ0ryLWSgSQBdBx2vWjI4kREcXHkcrgWrj1ZqMQaM0Fz.gh6XZkWRwBpF3AXU9l3wkg" + "discord": "984015688807100419" }, - "record": { + "records": { "TXT": "vc-domain-verify=sampath.is-a.dev,2b8694fbc2f1811cbff4" } } diff --git a/domains/_vercel.sanchit.json b/domains/_vercel.sanchit.json new file mode 100644 index 000000000..e3bb1955f --- /dev/null +++ b/domains/_vercel.sanchit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sanchitbajaj02", + "email": "sanchit02@outlook.com", + "discord": "704721578029744299" + }, + "records": { + "TXT": "vc-domain-verify=sanchit.is-a.dev,85dd1a4269915e4797f9" + } +} diff --git a/domains/_vercel.sandepten.json b/domains/_vercel.sandepten.json new file mode 100644 index 000000000..2ba17d49a --- /dev/null +++ b/domains/_vercel.sandepten.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sandepten", + "email": "sandepten@gmail.com", + "discord": "sandepten" + }, + "records": { + "TXT": "vc-domain-verify=sandepten.is-a.dev,ccad8d5e970586727f72" + } +} diff --git a/domains/_vercel.santty.json b/domains/_vercel.santty.json new file mode 100644 index 000000000..36242f355 --- /dev/null +++ b/domains/_vercel.santty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "santiagogr05", + "email": "san7iagogr.05@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=santty.is-a.dev,42e7e83a90cfeb305cbf"] + } +} diff --git a/domains/_vercel.saunak.json b/domains/_vercel.saunak.json new file mode 100644 index 000000000..efbb6a94e --- /dev/null +++ b/domains/_vercel.saunak.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Saunakghosh10", + "email": "saunakghosh710@gmail.com", + "discord": "695672697270829116" + }, + "records": { + "TXT": "vc-domain-verify=saunak.is-a.dev,1127684a6f45539a1ebe" + } +} diff --git a/domains/_vercel.saxophone.json b/domains/_vercel.saxophone.json new file mode 100644 index 000000000..bb25ed62e --- /dev/null +++ b/domains/_vercel.saxophone.json @@ -0,0 +1,10 @@ +{ + "description": "vercel stuff for personal site", + "owner": { + "username": "saxophone-dev", + "email": "itsarchit@keemail.me" + }, + "records": { + "TXT": ["vc-domain-verify=saxophone.is-a.dev,e2dac8b9c5e42361fda8"] + } +} diff --git a/domains/_vercel.sebaslv.json b/domains/_vercel.sebaslv.json index 89156d7f2..e8fbcfe05 100644 --- a/domains/_vercel.sebaslv.json +++ b/domains/_vercel.sebaslv.json @@ -4,7 +4,7 @@ "email": "juans.lopez2004@gmail.com", "discord": "886029396400570429" }, - "record": { + "records": { "TXT": "vc-domain-verify=sebaslv.is-a.dev,6ca8920001de10180ecf" } } diff --git a/domains/_vercel.sebastianriveros.json b/domains/_vercel.sebastianriveros.json new file mode 100644 index 000000000..bd8124ae6 --- /dev/null +++ b/domains/_vercel.sebastianriveros.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wisauw", + "email": "riveross92@gmail.com", + "discord": "313046852415258625" + }, + "records": { + "TXT": "vc-domain-verify=sebastianriveros.is-a.dev,be3bca98d22aab14d046" + } +} diff --git a/domains/_vercel.seiko.json b/domains/_vercel.seiko.json index 725e45b73..5681513f0 100644 --- a/domains/_vercel.seiko.json +++ b/domains/_vercel.seiko.json @@ -4,7 +4,7 @@ "email": "zxroff@proton.me", "discord": "1279377552561147964" }, - "record": { + "records": { "TXT": "vc-domain-verify=seiko.is-a.dev,e8e0dd92b8aecad6d7af" } } diff --git a/domains/_vercel.sergioperea.json b/domains/_vercel.sergioperea.json new file mode 100644 index 000000000..9c7ab64f9 --- /dev/null +++ b/domains/_vercel.sergioperea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sperea", + "email": "perea@mailfence.com" + }, + "records": { + "TXT": "vc-domain-verify=sergioperea.is-a.dev,ff9bc4d6b26eca2587d7" + } +} diff --git a/domains/_vercel.shimizu.json b/domains/_vercel.shimizu.json new file mode 100644 index 000000000..1c1a22e42 --- /dev/null +++ b/domains/_vercel.shimizu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=shimizu.is-a.dev,3356672e8054fe9b4d65" + } +} diff --git a/domains/_vercel.shirshen.json b/domains/_vercel.shirshen.json new file mode 100644 index 000000000..b544822b0 --- /dev/null +++ b/domains/_vercel.shirshen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shu-vro", + "email": "official.shirshen@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=shirshen.is-a.dev,705710dcfadad4d92d2b" + } +} diff --git a/domains/_vercel.shivansh.json b/domains/_vercel.shivansh.json new file mode 100644 index 000000000..de59d0858 --- /dev/null +++ b/domains/_vercel.shivansh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shivansh722", + "email": "shivanshcha722@gmail.com", + "discord": "839163183141748807" + }, + "records": { + "TXT": "vc-domain-verify=shivansh.is-a.dev,497638a309315f26b590" + } +} diff --git a/domains/_vercel.shockbs.json b/domains/_vercel.shockbs.json index 068810efd..6e1461bc3 100644 --- a/domains/_vercel.shockbs.json +++ b/domains/_vercel.shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "TXT": "vc-domain-verify=shockbs.is-a.dev,effffa7584f4e7aa0f82" } } diff --git a/domains/_vercel.shri.json b/domains/_vercel.shri.json new file mode 100644 index 000000000..5809cd0d1 --- /dev/null +++ b/domains/_vercel.shri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shari003", + "email": "shri.harii@hotmail.com", + "discord": "744620219976253481" + }, + "records": { + "TXT": ["vc-domain-verify=shri.is-a.dev,0dc8bc43ef83d72e5753"] + } +} diff --git a/domains/_vercel.shubh.json b/domains/_vercel.shubh.json index 79802a66f..538c014b4 100644 --- a/domains/_vercel.shubh.json +++ b/domains/_vercel.shubh.json @@ -2,7 +2,7 @@ "owner": { "username": "R3tr0LastKnight" }, - "record": { + "records": { "TXT": ["vc-domain-verify=shubh.is-a.dev,ec236054bf6268762e7e"] } } diff --git a/domains/_vercel.shubhamprajapati.json b/domains/_vercel.shubhamprajapati.json new file mode 100644 index 000000000..9c7527954 --- /dev/null +++ b/domains/_vercel.shubhamprajapati.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShubhamP528", + "email": "shubham528prajapati@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=shubhamprajapati.is-a.dev,a8d0420a3cd14b3d2928" + } +} diff --git a/domains/_vercel.shuhaab.json b/domains/_vercel.shuhaab.json index fd9fac460..6356e39a0 100644 --- a/domains/_vercel.shuhaab.json +++ b/domains/_vercel.shuhaab.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Shuhaab-coder" - }, - "record": { - "TXT": ["vc-domain-verify=shuhaab.is-a.dev,4f90144524ddbcf1a09b"] - } - } \ No newline at end of file + "owner": { + "username": "Shuhaab-coder" + }, + "records": { + "TXT": ["vc-domain-verify=shuhaab.is-a.dev,4f90144524ddbcf1a09b"] + } +} diff --git a/domains/_vercel.siddharthjain.json b/domains/_vercel.siddharthjain.json new file mode 100644 index 000000000..696870c43 --- /dev/null +++ b/domains/_vercel.siddharthjain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siddharth9300", + "discord": "sidd9300" + }, + "records": { + "TXT": "vc-domain-verify=siddharthjain.is-a.dev,bf30c11f1d56bbab2dd7" + } +} diff --git a/domains/_vercel.sifat.json b/domains/_vercel.sifat.json new file mode 100644 index 000000000..5d5ee6731 --- /dev/null +++ b/domains/_vercel.sifat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mahi160", + "email": "omarsifat288@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=sifat.is-a.dev,cc8d1b30995eac869fea" + } +} diff --git a/domains/_vercel.simone.json b/domains/_vercel.simone.json new file mode 100644 index 000000000..9fc613cd6 --- /dev/null +++ b/domains/_vercel.simone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cimasim89", + "email": "cimasim89@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=simone.is-a.dev,dc2853a2476427303b16" + } +} diff --git a/domains/_vercel.siya.json b/domains/_vercel.siya.json new file mode 100644 index 000000000..7945f85d8 --- /dev/null +++ b/domains/_vercel.siya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rajputsiya", + "email": "siyarajput9258@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=siya.is-a.dev,8b5584a1aeb3bb9a60c5"] + } +} diff --git a/domains/_vercel.skarwuuu.json b/domains/_vercel.skarwuuu.json index 17b8e20f9..0eede238f 100644 --- a/domains/_vercel.skarwuuu.json +++ b/domains/_vercel.skarwuuu.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "skarwuuu", - "email": "sakshrwt@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=skarwuuu.is-a.dev,eb14a67d4b3b06f29c5c" - ] - } + "owner": { + "username": "skarwuuu", + "email": "sakshrwt@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=skarwuuu.is-a.dev,eb14a67d4b3b06f29c5c"] + } } diff --git a/domains/_vercel.skibidi.json b/domains/_vercel.skibidi.json new file mode 100644 index 000000000..49621fce8 --- /dev/null +++ b/domains/_vercel.skibidi.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "bananaking6", + "discord": "skibidibagel" + }, + "records": { + "TXT": [ + "vc-domain-verify=skibidi.is-a.dev,b75173107a422d2f8244", + "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d", + "vc-domain-verify=projects.skibidi.is-a.dev,33f08aa6e287f18f368b" + ] + } +} diff --git a/domains/_vercel.sneazy25.json b/domains/_vercel.sneazy25.json new file mode 100644 index 000000000..f738609d2 --- /dev/null +++ b/domains/_vercel.sneazy25.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "records": { + "TXT": ["vc-domain-verify=sneazy25.is-a.dev,2f9caf76ec1be24030a6"] + } +} diff --git a/domains/_vercel.snowy.json b/domains/_vercel.snowy.json index 4810ff204..2e5a385c7 100644 --- a/domains/_vercel.snowy.json +++ b/domains/_vercel.snowy.json @@ -2,7 +2,7 @@ "owner": { "username": "HayBael" }, - "record": { + "records": { "TXT": ["vc-domain-verify=snowy.is-a.dev,710433a43c7209070848"] } } diff --git a/domains/_vercel.sohag.json b/domains/_vercel.sohag.json new file mode 100644 index 000000000..c17a31b17 --- /dev/null +++ b/domains/_vercel.sohag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sohag02", + "discord": "sohagjabed" + }, + "records": { + "TXT": "vc-domain-verify=sohag.is-a.dev,905a0fff3e8fdda0052e" + } +} diff --git a/domains/_vercel.solfeggio-training.json b/domains/_vercel.solfeggio-training.json new file mode 100644 index 000000000..402285398 --- /dev/null +++ b/domains/_vercel.solfeggio-training.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "henrique-coder", + "email": "hjyz6rqyb@mozmail.com" + }, + "records": { + "TXT": "vc-domain-verify=solfeggio-training.is-a.dev,64b9db841f2e5fa03a48" + } +} diff --git a/domains/_vercel.sombochea.json b/domains/_vercel.sombochea.json new file mode 100644 index 000000000..e668c954a --- /dev/null +++ b/domains/_vercel.sombochea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sombochea", + "email": "sombochea100@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=sombochea.is-a.dev,2cdc71284d8d8193f021" + } +} diff --git a/domains/_vercel.sopi.json b/domains/_vercel.sopi.json new file mode 100644 index 000000000..d20dbbfc1 --- /dev/null +++ b/domains/_vercel.sopi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sopiseptiansyah", + "email": "sopiseptiansyah@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=sopi.is-a.dev,d05d90937f151b8c1f8d" + } +} diff --git a/domains/_vercel.sortalost.json b/domains/_vercel.sortalost.json new file mode 100644 index 000000000..8a5c22096 --- /dev/null +++ b/domains/_vercel.sortalost.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sortalost", + "email": "sortalost@cock.li" + }, + "records": { + "TXT": "vc-domain-verify=sortalost.is-a.dev,9d2eea9fbc54a478f71c" + } +} diff --git a/domains/_vercel.soul.json b/domains/_vercel.soul.json new file mode 100644 index 000000000..a19534461 --- /dev/null +++ b/domains/_vercel.soul.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SoulDevs", + "email": "soulcosmic1406@proton.me", + "discord": "soulcosmic1406_" + }, + "records": { + "TXT": "vc-domain-verify=soul.is-a.dev,6f957e2edcd5bb791896" + } +} diff --git a/domains/_vercel.stevenle.json b/domains/_vercel.stevenle.json index 72e2a4bf4..c267443dd 100644 --- a/domains/_vercel.stevenle.json +++ b/domains/_vercel.stevenle.json @@ -4,7 +4,7 @@ "email": "stevenleusa79@yahoo.com", "discord": "237307564419842050" }, - "record": { + "records": { "TXT": "vc-domain-verify=stevenle.is-a.dev,f3f7af055e99ad957025" } } diff --git a/domains/_vercel.subhan.json b/domains/_vercel.subhan.json new file mode 100644 index 000000000..1112e4253 --- /dev/null +++ b/domains/_vercel.subhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MS1034", + "email": "muhammadsubhan5701@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=subhan.is-a.dev,1996a182add3a767436b" + } +} diff --git a/domains/_vercel.sujal.json b/domains/_vercel.sujal.json new file mode 100644 index 000000000..5272a7cb9 --- /dev/null +++ b/domains/_vercel.sujal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "suzalshrestha", + "email": "sujalshresthawork@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=sujal.is-a.dev,58e578ab39aef3cf41e8" + } +} diff --git a/domains/_vercel.sun.json b/domains/_vercel.sun.json new file mode 100644 index 000000000..82a0aed66 --- /dev/null +++ b/domains/_vercel.sun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sxn4y", + "discord": "5unn7n" + }, + "records": { + "TXT": "vc-domain-verify=sun.is-a.dev,3d30eed3d9b17b680b03" + } +} diff --git a/domains/_vercel.supperfreddo.json b/domains/_vercel.supperfreddo.json new file mode 100644 index 000000000..aed17a754 --- /dev/null +++ b/domains/_vercel.supperfreddo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "supperfreddo", + "email": "supperfreddoio@gmail.com", + "discord": "supperfreddo" + }, + "records": { + "TXT": "vc-domain-verify=supperfreddo.is-a.dev,68c20273ddb3ea11e1d6" + } +} diff --git a/domains/_vercel.swami.json b/domains/_vercel.swami.json index 96e206351..325e4d280 100644 --- a/domains/_vercel.swami.json +++ b/domains/_vercel.swami.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "aadltya" - }, - "record": { - "TXT": [ - "vc-domain-verify=swami.is-a.dev,ebd6de23b5512663a728" - ] - } -} \ No newline at end of file + "owner": { + "username": "aadltya" + }, + "records": { + "TXT": ["vc-domain-verify=swami.is-a.dev,ebd6de23b5512663a728"] + } +} diff --git a/domains/_vercel.synthara.json b/domains/_vercel.synthara.json new file mode 100644 index 000000000..b4cb802c3 --- /dev/null +++ b/domains/_vercel.synthara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=synthara.is-a.dev,5cfe1b6f6a8530d47a55" + } +} diff --git a/domains/_vercel.t3vada.json b/domains/_vercel.t3vada.json index bf382de2a..2ff492705 100644 --- a/domains/_vercel.t3vada.json +++ b/domains/_vercel.t3vada.json @@ -3,7 +3,7 @@ "username": "wythh24", "email": "t3vadadev@gmail.com" }, - "record": { + "records": { "TXT": "vc-domain-verify=t3vada.is-a.dev,5b01b0c87e766671d811" } } diff --git a/domains/_vercel.tajul.json b/domains/_vercel.tajul.json index 003987eb8..b437414ef 100644 --- a/domains/_vercel.tajul.json +++ b/domains/_vercel.tajul.json @@ -3,7 +3,7 @@ "username": "arifintajul4", "discord": "yaelahjul" }, - "record": { + "records": { "TXT": "vc-domain-verify=tajul.is-a.dev,9a85b13fc7e25fb4237d" } } diff --git a/domains/_vercel.tanbaycu.json b/domains/_vercel.tanbaycu.json new file mode 100644 index 000000000..da8c42d5b --- /dev/null +++ b/domains/_vercel.tanbaycu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=tanbaycu.is-a.dev,39c822aec04365116c16" + } +} diff --git a/domains/_vercel.tandevhtml.json b/domains/_vercel.tandevhtml.json new file mode 100644 index 000000000..e838940bf --- /dev/null +++ b/domains/_vercel.tandevhtml.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "mnew20128@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=tandevhtml.is-a.dev,37900e6853b2485cb803" + } +} diff --git a/domains/_vercel.tanvir.json b/domains/_vercel.tanvir.json new file mode 100644 index 000000000..f0c8fd38b --- /dev/null +++ b/domains/_vercel.tanvir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tnv1r", + "email": "dev@tanvir.io" + }, + "records": { + "TXT": "vc-domain-verify=tanvir.is-a.dev,65aed7f787867b45aa7c" + } +} diff --git a/domains/_vercel.terry.json b/domains/_vercel.terry.json new file mode 100644 index 000000000..06c617389 --- /dev/null +++ b/domains/_vercel.terry.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyoterry", + "email": "theterrykim@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=terry.is-a.dev,77663b6ef45302529609" + } +} diff --git a/domains/_vercel.thavirak.json b/domains/_vercel.thavirak.json new file mode 100644 index 000000000..a416d65f3 --- /dev/null +++ b/domains/_vercel.thavirak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thavirak", + "email": "thavirak@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=thavirak.is-a.dev,7a6a4ebd89476f7b339a"] + } +} diff --git a/domains/_vercel.thegoofy-guy.json b/domains/_vercel.thegoofy-guy.json new file mode 100644 index 000000000..53814af40 --- /dev/null +++ b/domains/_vercel.thegoofy-guy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thegoofy-dev", + "email": "pankajtyagi1601@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=thegoofy-guy.is-a.dev,382a00f94cc6e561761e" + } +} diff --git a/domains/_vercel.thiagotukozaki.json b/domains/_vercel.thiagotukozaki.json new file mode 100644 index 000000000..d44cce7a6 --- /dev/null +++ b/domains/_vercel.thiagotukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TukozakiT", + "email": "contato.thiagoeiji@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=thiagotukozaki.is-a.dev,cf21301c66cbaaf29419" + } +} diff --git a/domains/_vercel.tobias.json b/domains/_vercel.tobias.json new file mode 100644 index 000000000..672848b83 --- /dev/null +++ b/domains/_vercel.tobias.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smarterToby", + "discord": "724712767080235049" + }, + "records": { + "TXT": "vc-domain-verify=tobias.is-a.dev,21171b13f4596f6ef9ee" + } +} diff --git a/domains/_vercel.tranminhtan.json b/domains/_vercel.tranminhtan.json new file mode 100644 index 000000000..058d5851a --- /dev/null +++ b/domains/_vercel.tranminhtan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "mnew20128@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=tranminhtan.is-a.dev,80e210f84d0b0529d7eb" + } +} diff --git a/domains/_vercel.tsania.json b/domains/_vercel.tsania.json new file mode 100644 index 000000000..f3c7e06da --- /dev/null +++ b/domains/_vercel.tsania.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tsnzzhr", + "email": "tsnzzhr102@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=tsania.is-a.dev,cb5fadd5728a99eb3c4d" + } +} diff --git a/domains/_vercel.tykea.json b/domains/_vercel.tykea.json new file mode 100644 index 000000000..066967b8c --- /dev/null +++ b/domains/_vercel.tykea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tykealy", + "email": "tykeaboyloy@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=tykea.is-a.dev,6107010761e516843251" + } +} diff --git a/domains/_vercel.udhaya.json b/domains/_vercel.udhaya.json index 34ac03ecd..4895e6281 100644 --- a/domains/_vercel.udhaya.json +++ b/domains/_vercel.udhaya.json @@ -4,7 +4,7 @@ "username": "xAceDuke", "email": "kinghtth0@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=udhaya.is-a.dev,accd4809ddad58ac55a4"] } } diff --git a/domains/_vercel.udit.json b/domains/_vercel.udit.json new file mode 100644 index 000000000..e3bbb00e5 --- /dev/null +++ b/domains/_vercel.udit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "uditdev", + "email": "uditdev0008@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=udit.is-a.dev,8718c1c2a08417265d7e"] + } +} diff --git a/domains/_vercel.ujjvaljoshi.json b/domains/_vercel.ujjvaljoshi.json new file mode 100644 index 000000000..fa75c32eb --- /dev/null +++ b/domains/_vercel.ujjvaljoshi.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/ujjvaljoshi45/ujjvaljoshi45", + "owner": { + "username": "ujjvaljoshi45", + "email": "ujjvaljoshi45@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=ujjvaljoshi.is-a.dev,f7ed737aeb48311d634c" + } +} diff --git a/domains/_vercel.ukino.json b/domains/_vercel.ukino.json index 8540ac80e..4e3242082 100644 --- a/domains/_vercel.ukino.json +++ b/domains/_vercel.ukino.json @@ -3,7 +3,7 @@ "username": "ukinon", "email": "arfianoj@gmail.com" }, - "record": { + "records": { "TXT": ["vc-domain-verify=ukino.is-a.dev,abcf9c3157f2470d8c51"] } } diff --git a/domains/_vercel.uralamin.json b/domains/_vercel.uralamin.json index 497d12360..4e5d577a9 100644 --- a/domains/_vercel.uralamin.json +++ b/domains/_vercel.uralamin.json @@ -3,7 +3,7 @@ "username": "MrAlaminH", "discord": "440574272856129547" }, - "record": { + "records": { "TXT": "vc-domain-verify=uralamin.is-a.dev,898bea95e45e3ecf00a7" } } diff --git a/domains/_vercel.usmanbaig.json b/domains/_vercel.usmanbaig.json new file mode 100644 index 000000000..2f3ff5895 --- /dev/null +++ b/domains/_vercel.usmanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UsmanBaig001", + "email": "usmanbaig1572@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=usmanbaig.is-a.dev,c2f96e70ebd3aef5458b" + } +} diff --git a/domains/_vercel.utkarsh-singhal.json b/domains/_vercel.utkarsh-singhal.json new file mode 100644 index 000000000..2a41bea77 --- /dev/null +++ b/domains/_vercel.utkarsh-singhal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Utkarsh-Singhal-26", + "email": "singhalutkarsh26@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=utkarsh-singhal.is-a.dev,31f5c6e60805af21e98f" + } +} diff --git a/domains/_vercel.v.json b/domains/_vercel.v.json index b9cd9e583..84aeb9368 100644 --- a/domains/_vercel.v.json +++ b/domains/_vercel.v.json @@ -1,9 +1,8 @@ { "owner": { - "username": "leofelix908", - "email": "" + "username": "leofelix908" }, - "record": { + "records": { "TXT": ["vc-domain-verify=v.is-a.dev,9bd0999222ffc1417790"] } } diff --git a/domains/_vercel.vanshaggarwal.json b/domains/_vercel.vanshaggarwal.json new file mode 100644 index 000000000..608acc7e6 --- /dev/null +++ b/domains/_vercel.vanshaggarwal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AggarwalVansh", + "email": "aggvans@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=vanshaggarwal.is-a.dev,60de91efb37f86a6bb50" + } +} diff --git a/domains/_vercel.vantage.json b/domains/_vercel.vantage.json index 084102fc1..433b9fc70 100644 --- a/domains/_vercel.vantage.json +++ b/domains/_vercel.vantage.json @@ -1,13 +1,9 @@ { - "owner": { - "username": "blaze-099", - "email": "", - "discord": "1186691290759434350", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QLo89mhM4fE7MyI0fwTOoE1gwfqgTROR4XPtssSWrCFKdjAMxwFLRxSVKfTTk47ZdvtFcNQ-9i6zANMmvnKWqb4lk-A_IYDgCTI-rzfl7lIAsff092nh30jydQF4TCaaPwer3yrDZs-cHqnPJe1M9tVGLROeCpH5ndmRFCFCTp0SF5fIlyed9zElmsvmVm1In-pKSTFghIOm7W5A0Y_TGgGRz1GnCd7rUL0y_2Pww__W_JmiPYaqnIaas5YfHZSeSv68f4u6TicVOUFMCmRCAeF17ajRHB8NJJmAZ_5o0pvPs-YTFttOGRRp0MV7AMObacFMFpYufgvFM6amMBuKFA.nFT85dthPK_PLwebqK3zVw.w_dE_O8xeNrfXjtiPx_VM3hBR_p0i8huGEZfvGafCIBBtWm42cuIYAZ_kNh_qai31o3i7oRRi7UXOBGeShlvXW7znEXB9nx6Xy81QrbL878.l30yta1ym3dOqtn8MC7dZA" - }, - "record": { - "TXT": [ - "vc-domain-verify=vantage.is-a.dev,880ae7aaeb22f3419bd0" - ] - } + "owner": { + "username": "blaze-099", + "discord": "1186691290759434350" + }, + "records": { + "TXT": ["vc-domain-verify=vantage.is-a.dev,880ae7aaeb22f3419bd0"] + } } diff --git a/domains/_vercel.vapr.json b/domains/_vercel.vapr.json new file mode 100644 index 000000000..a58d60226 --- /dev/null +++ b/domains/_vercel.vapr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bitsamedida", + "email": "bitsamedida@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=vapr.is-a.dev,e0a739ae617bd141d6f0" + } +} diff --git a/domains/_vercel.vdevanarayan.json b/domains/_vercel.vdevanarayan.json new file mode 100644 index 000000000..26a30f68a --- /dev/null +++ b/domains/_vercel.vdevanarayan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeTitan7", + "email": "octavius1983bc@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=vdevanarayan.is-a.dev,0c0c081b89b565d7ece1" + } +} diff --git a/domains/_vercel.venkat.json b/domains/_vercel.venkat.json new file mode 100644 index 000000000..b944a2aaf --- /dev/null +++ b/domains/_vercel.venkat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "venkatk-git", + "email": "venkatkumar.profiles@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=venkat.is-a.dev,4238dd29261ea2c96bda" + } +} diff --git a/domains/_vercel.verify.alora.json b/domains/_vercel.verify.alora.json new file mode 100644 index 000000000..0ce2663b0 --- /dev/null +++ b/domains/_vercel.verify.alora.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=verify.alora.is-a.dev,df9b78e72bc7a2889bc8" + } +} diff --git a/domains/_vercel.veygax.json b/domains/_vercel.veygax.json new file mode 100644 index 000000000..a40841197 --- /dev/null +++ b/domains/_vercel.veygax.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "veygax", + "email": "veyga@checkpoint.llc", + "discord": "1119938236245094521" + }, + "records": { + "TXT": "vc-domain-verify=veygax.is-a.dev,a56bc04fff9fc5e6e38d" + } +} diff --git a/domains/_vercel.vgwarden.json b/domains/_vercel.vgwarden.json index d86a3551a..1f4869d27 100644 --- a/domains/_vercel.vgwarden.json +++ b/domains/_vercel.vgwarden.json @@ -2,7 +2,7 @@ "owner": { "username": "VGWARDEN" }, - "record": { + "records": { "TXT": ["vc-domain-verify=vgwarden.is-a.dev,fb2beec697ea06b98fb5"] } } diff --git a/domains/_vercel.victordev.json b/domains/_vercel.victordev.json new file mode 100644 index 000000000..a1319c195 --- /dev/null +++ b/domains/_vercel.victordev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VictorHumberto01", + "email": "victor.humberto.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=victordev.is-a.dev,249570ae89a082ed0670" + } +} diff --git a/domains/_vercel.victoria.json b/domains/_vercel.victoria.json index 488bff22c..74fc2310d 100644 --- a/domains/_vercel.victoria.json +++ b/domains/_vercel.victoria.json @@ -1,9 +1,8 @@ { "owner": { - "username": "itahseen", - "email": "" + "username": "itahseen" }, - "record": { + "records": { "TXT": ["vc-domain-verify=victoria.is-a.dev,c0c6d37bd2ddf96a77aa"] } } diff --git a/domains/_vercel.vignesh.json b/domains/_vercel.vignesh.json new file mode 100644 index 000000000..6bf8ff0e6 --- /dev/null +++ b/domains/_vercel.vignesh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Vignesh025", + "email": "vigneshjayakumar9221@gmail.com", + "discord": "vignesh025" + }, + "records": { + "TXT": "vc-domain-verify=vignesh.is-a.dev,f3df13929e17acd366ea" + } +} diff --git a/domains/_vercel.vihangayt.json b/domains/_vercel.vihangayt.json index daad9f08a..63007513c 100644 --- a/domains/_vercel.vihangayt.json +++ b/domains/_vercel.vihangayt.json @@ -4,7 +4,7 @@ "email": "vihangapubg44@gmail.com", "discord": "1088099426570092594" }, - "record": { + "records": { "TXT": "vc-domain-verify=vihangayt.is-a.dev,b6c7db40e44efe0c8226" } } diff --git a/domains/_vercel.vinay.json b/domains/_vercel.vinay.json new file mode 100644 index 000000000..a53c8fc53 --- /dev/null +++ b/domains/_vercel.vinay.json @@ -0,0 +1,13 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/vinugawade/vinux.in", + "owner": { + "username": "vinugawade", + "email": "vinulike11@gmail.com", + "linkedin": "https://www.linkedin.com/in/vinu-gawade", + "discord": "830872854677422150" + }, + "records": { + "TXT": ["vc-domain-verify=vinay.is-a.dev,fbe9cb0c6fd1fdf4c943"] + } +} diff --git a/domains/_vercel.vinayaka.json b/domains/_vercel.vinayaka.json new file mode 100644 index 000000000..892050609 --- /dev/null +++ b/domains/_vercel.vinayaka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinayaka-iyer", + "email": "vinayakaiyer999@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=vinayaka.is-a.dev,7cf7d34ae5fa35840467" + } +} diff --git a/domains/_vercel.vineeth.json b/domains/_vercel.vineeth.json new file mode 100644 index 000000000..746fd4cac --- /dev/null +++ b/domains/_vercel.vineeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vineeth-motati", + "email": "vineethmotati@duck.com" + }, + "records": { + "TXT": "vc-domain-verify=vineeth.is-a.dev,772d59fe1bf7422c8f8f" + } +} diff --git a/domains/_vercel.violet.json b/domains/_vercel.violet.json new file mode 100644 index 000000000..2d46b1518 --- /dev/null +++ b/domains/_vercel.violet.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "violetlaire", + "email": "violetlaire@proton.me", + "discord": "994135527815118898" + }, + "records": { + "TXT": [ + "vc-domain-verify=violet.is-a.dev,dd60430c61df7957e114", + "vc-domain-verify=me.violet.is-a.dev,3fad7d0a3bfe3724aaf1", + "vc-domain-verify=blog.violet.is-a.dev,27a12f9f237682d5ca9a" + ] + } +} diff --git a/domains/_vercel.vldm.json b/domains/_vercel.vldm.json new file mode 100644 index 000000000..c744e720a --- /dev/null +++ b/domains/_vercel.vldm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VLDeMenezes", + "email": "victorleandrodemenezes@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=vldm.is-a.dev,a2a022436d0631ef5231" + } +} diff --git a/domains/_vercel.voidvault.json b/domains/_vercel.voidvault.json new file mode 100644 index 000000000..b5bda80bf --- /dev/null +++ b/domains/_vercel.voidvault.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354686@gmail.com" + }, + "records": { + "TXT": ["vc-domain-verify=voidvault.is-a.dev,fdc2aadb068bd286d372"] + } +} diff --git a/domains/_vercel.vukhoi.json b/domains/_vercel.vukhoi.json new file mode 100644 index 000000000..689f5a8fc --- /dev/null +++ b/domains/_vercel.vukhoi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khoivt", + "email": "khoidragonslayer@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=vukhoi.is-a.dev,40bd929996059a5dbea2" + } +} diff --git a/domains/_vercel.vyductan.json b/domains/_vercel.vyductan.json new file mode 100644 index 000000000..2a97ade38 --- /dev/null +++ b/domains/_vercel.vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "records": { + "TXT": "vc-domain-verify=vyductan.is-a.dev,55a7295a416ad7fd8e1f" + } +} diff --git a/domains/_vercel.w3teal.json b/domains/_vercel.w3teal.json new file mode 100644 index 000000000..8bfac1bd0 --- /dev/null +++ b/domains/_vercel.w3teal.json @@ -0,0 +1,11 @@ +{ + "description": "Used for my W3Teal's blog website.", + "repo": "https://github.com/w3teal/w3teal.github.io", + "owner": { + "username": "w3teal", + "email": "w3teal@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=w3teal.is-a.dev,d0cb532c15b16a993c2a" + } +} diff --git a/domains/_vercel.waki.json b/domains/_vercel.waki.json index a872c59a2..f42c47e4f 100644 --- a/domains/_vercel.waki.json +++ b/domains/_vercel.waki.json @@ -2,7 +2,7 @@ "owner": { "username": "aiwaki" }, - "record": { + "records": { "TXT": ["vc-domain-verify=waki.is-a.dev,b5349446a26c3f0b8c9f"] } } diff --git a/domains/_vercel.wallsified.json b/domains/_vercel.wallsified.json new file mode 100644 index 000000000..314d8b957 --- /dev/null +++ b/domains/_vercel.wallsified.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wallsified", + "email": "danielparedes@ciencias.unam.mx" + }, + "records": { + "TXT": "vc-domain-verify=wallsified.is-a.dev,a6e231e5e5b6733aba43" + } +} diff --git a/domains/_vercel.waltersonna.json b/domains/_vercel.waltersonna.json new file mode 100644 index 000000000..a9e4a84e9 --- /dev/null +++ b/domains/_vercel.waltersonna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RichestHumanAlive", + "email": "walter.n.sonna@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=waltersonna.is-a.dev,95c219c6eb52eab7ed7c" + } +} diff --git a/domains/_vercel.wasim.json b/domains/_vercel.wasim.json new file mode 100644 index 000000000..839aef21e --- /dev/null +++ b/domains/_vercel.wasim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simbaig", + "email": "wasimbaig000@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=wasim.is-a.dev,6b4abdaf07b7f6517075" + } +} diff --git a/domains/_vercel.whothree.json b/domains/_vercel.whothree.json new file mode 100644 index 000000000..b600e6bca --- /dev/null +++ b/domains/_vercel.whothree.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gottaegbert", + "email": "gottaegbert@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=whothree.is-a.dev,aa6eb3d9cb5de94a6aaa" + } +} diff --git a/domains/_vercel.willymateo.json b/domains/_vercel.willymateo.json new file mode 100644 index 000000000..93c1c8dcb --- /dev/null +++ b/domains/_vercel.willymateo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "willymateo", + "email": "matheoowilly@gmail.com", + "discord": "willycocolon" + }, + "records": { + "TXT": "vc-domain-verify=willymateo.is-a.dev,6c7018f1721c84a520df" + } +} diff --git a/domains/_vercel.windowsed.json b/domains/_vercel.windowsed.json index de75fcff5..c11c3b8ea 100644 --- a/domains/_vercel.windowsed.json +++ b/domains/_vercel.windowsed.json @@ -1,10 +1,9 @@ { "owner": { "username": "windowsed1225", - "discord": "906415095473655810", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a-9JVOA2JaMUvluRZbdp86QqNgeudFNVjYFoXPMx-Jh9noecZerTZaLxOyUg5ayJy9dyEXhf0B4zNZ1Rzwidmh7j13xCqd1yzbn3kTwnslr2vIi_y9jhzOU88ICnt3fFg-TIInmOoFS4R_qQhbYisc1RBRxSYB-T7h2BulQ8IsDlhMM13riRbprmjP8G-BXFp0LXTUFStwDqdtmbKUrQzGSihKc1G3NeWBsdvWE6VAp7YseD7X9QVd5lK1EF8PPiLqUO_DchocY7lhnEWsMuNbHcI9uayviJD91_hH_IKPV_PAhZCWTl6uQzxCdn3jHiYXh9OMN591x9q-OtkdRh0w.Sco_cW3oKPy6DxN3DvssTA.0xK3c1KZGJ_fzD8AMRyzoMYpatPbc-U4N-Miy3s4LLSKLp0hLN_Yj763HZ12u1t54m8lo2q3ChMGh_7WDiWwiF2nm17cpEYEJQ9MkLshCm5fEyxdNSkkDuLsb_0AzKg5PxxieE9dcW_IHgKIfU9kTg.3kH8224BAKJxuXUASG7OCA" + "discord": "906415095473655810" }, - "record": { + "records": { "TXT": "vc-domain-verify=windowsed.is-a.dev,e5344d1f26e8286585de" } } diff --git a/domains/_vercel.wintkhantlin.json b/domains/_vercel.wintkhantlin.json new file mode 100644 index 000000000..0dad62276 --- /dev/null +++ b/domains/_vercel.wintkhantlin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "happer64bit", + "email": "wintkhantlin@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=wintkhantlin.is-a.dev,f8f4a5cc91e355b805b2" + } +} diff --git a/domains/_vercel.wisit.json b/domains/_vercel.wisit.json new file mode 100644 index 000000000..16e55f68d --- /dev/null +++ b/domains/_vercel.wisit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Wisitt", + "email": "wisitmoondet@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=wisit.is-a.dev,00d864c9655408665e4c" + } +} diff --git a/domains/_vercel.wizardsword.json b/domains/_vercel.wizardsword.json index 9d6d33c4a..70ec0c0d8 100644 --- a/domains/_vercel.wizardsword.json +++ b/domains/_vercel.wizardsword.json @@ -1,11 +1,9 @@ -{ - "owner": { - "username": "MukuJhansi", - "discord": "1115658967012626542" - }, - "record": { - "TXT": [ - "vc-domain-verify=wizardsword.is-a.dev,bf203775c8ab97f0aa24" - ] - } -} +{ + "owner": { + "username": "MukuJhansi", + "discord": "1115658967012626542" + }, + "records": { + "TXT": ["vc-domain-verify=wizardsword.is-a.dev,bf203775c8ab97f0aa24"] + } +} diff --git a/domains/_vercel.woogi.json b/domains/_vercel.woogi.json new file mode 100644 index 000000000..8c377ffae --- /dev/null +++ b/domains/_vercel.woogi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "woogi-kang", + "email": "woogi.dev@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=woogi.is-a.dev,067989673fe543ef5114" + } +} diff --git a/domains/_vercel.wouter.json b/domains/_vercel.wouter.json new file mode 100644 index 000000000..c8e98e4c3 --- /dev/null +++ b/domains/_vercel.wouter.json @@ -0,0 +1,10 @@ +{ + "description": "Wouter's personal website", + "owner": { + "username": "wouter173", + "email": "wouter@debruijn.dev" + }, + "records": { + "TXT": ["vc-domain-verify=wouter.is-a.dev,b69cd5b6b6811fe3538d"] + } +} diff --git a/domains/_vercel.xenonrexo.json b/domains/_vercel.xenonrexo.json new file mode 100644 index 000000000..0ba2b00da --- /dev/null +++ b/domains/_vercel.xenonrexo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shshams", + "email": "shahadathossenshams@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=xenonrexo.is-a.dev,8fbb85bd77adeb090add" + } +} diff --git a/domains/_vercel.yatharth.json b/domains/_vercel.yatharth.json new file mode 100644 index 000000000..75cdf1d7d --- /dev/null +++ b/domains/_vercel.yatharth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yatharthbhatia", + "email": "yatharthbhatia2004@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=yatharth.is-a.dev,59d3e946b8d099555345" + } +} diff --git a/domains/_vercel.yaxh.json b/domains/_vercel.yaxh.json new file mode 100644 index 000000000..dff5ce787 --- /dev/null +++ b/domains/_vercel.yaxh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yaxhcodes", + "email": "meyashjoshi3101@gmail.com", + "discord": "965845932782526495" + }, + "records": { + "TXT": "vc-domain-verify=yaxh.is-a.dev,6469548bcd2901c7c348" + } +} diff --git a/domains/_vercel.yean.json b/domains/_vercel.yean.json index cd514ff10..f48083beb 100644 --- a/domains/_vercel.yean.json +++ b/domains/_vercel.yean.json @@ -3,7 +3,7 @@ "username": "joshex150", "email": "joshex150@gmail.com" }, - "record": { + "records": { "TXT": "vc-domain-verify=yean.is-a.dev,c671dbf711ab7400712a" } } diff --git a/domains/_vercel.yoan.json b/domains/_vercel.yoan.json new file mode 100644 index 000000000..7dd7a0ae2 --- /dev/null +++ b/domains/_vercel.yoan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yoan-gilliand", + "email": "yoangilliand@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=yoan.is-a.dev,74485448b7e7f2fd4b95" + } +} diff --git a/domains/_vercel.yohanesrioirsan.json b/domains/_vercel.yohanesrioirsan.json new file mode 100644 index 000000000..be56e42f9 --- /dev/null +++ b/domains/_vercel.yohanesrioirsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yohanesrioirsan", + "email": "rioirsan8@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=yohanesrioirsan.is-a.dev,2c8b157439c95db80770" + } +} diff --git a/domains/_vercel.youssef.json b/domains/_vercel.youssef.json new file mode 100644 index 000000000..750473bf9 --- /dev/null +++ b/domains/_vercel.youssef.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YoussefDevPro", + "email": "youssef.pro.coding@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=youssef.is-a.dev,8a21ff17b71b3518be3c" + } +} diff --git a/domains/_vercel.yuko.json b/domains/_vercel.yuko.json index c7bcd6e69..b4687f1cd 100644 --- a/domains/_vercel.yuko.json +++ b/domains/_vercel.yuko.json @@ -1,10 +1,9 @@ { "owner": { "username": "DreamLikeAmonster", - "discord": "918872621892911164", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FyzirrX9msJ22dfqcMb_F476tQ5rUYYmG681OE-Iel2p4ng72GCkf6U1y2jE3W8y8EpmY4SIZLyCQxnfkChRJB3Sf6SHBg54FaZYrhwZL6c42HNf5qbXPo1G8SMafzENqI4NuVFdpy4ctY-kqet3IUdELwb5Ca062tHi0f4ofxygXCvbPeL5Kwr7pttv87nFdrXyQXbONOyBSIEdkV_svZSqoIeN_pvYFwP6Ui5uPXLu1MK_wrhmDkCfsaq9fW1dhxJG9cg70pqTJLt9DsrhQydcG4CWC335MNjy4xPpSWWgIzraJGyf-tGpME8_gsYCSq0KFt7LDw8sDhfyJ-E_jQ.OErg6Z3UQeu0J_ICaJ2fNQ.BwUoHl2d0Hr1OfmCOg_m-LtJ_wwn_K2hSYsx3hiUvbzYzw5JTTM5c9phF5t_EX1ceBnp_-0cTtPOc7525aB8ThlWuEgqfa5yEd2XRy5GFpU._yB2iJ0EFbGg6MwFxU7p0A" + "discord": "918872621892911164" }, - "record": { + "records": { "TXT": "vc-domain-verify=yuko.is-a.dev,69ddf764dd9d6db9011e" } } diff --git a/domains/_vercel.z.json b/domains/_vercel.z.json deleted file mode 100644 index 45d4bfd88..000000000 --- a/domains/_vercel.z.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "jakeharrison90", - "email": "overtonmarke@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=z.is-a.dev,9be8de01c9c241334606"] - } -} diff --git a/domains/_vercel.zai.json b/domains/_vercel.zai.json index c102016a0..191379bfd 100644 --- a/domains/_vercel.zai.json +++ b/domains/_vercel.zai.json @@ -1,10 +1,9 @@ { "owner": { "username": "Zai-Kun", - "discord": "1100460955390988410", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.m6cKdJTirBBSL5dhwU-39VbjpjyfPP_9mSRhao-tr5TYYAZ2KnkwkYsCWJ9euM2LB4GZyUqNCviMtjOM1AXoxWq_lVH7pHgvC8I3a-HeKX0TNcy819o5nlrINjiM4770f09woEl5GVw3bGajgeJLWTPmj7PTWBvQkQ3Ug9Iuye7HmZ-UAIgh8kEw7LJzhyOKS2UTIgrA4hFF7epgCXSrma27dhHqTOjDPeg30dBO1aF8LNaF9GRnAn_IZE8Lah1ZFB9kqZRta466Zuzz8k5ztk4d-cPZEpuR6s6QIpHnddumx_hIt386nsfyQezQIo6TF5InIMT6fWkXUxDlkTyYqQ.D2xW1pY3dTkoLE7rwujNmw.PAHfsXDfCMvwEnw2-xyEYy1PCsEnfFJrkz9wAUOzUebiQsVvJ8_EjuuRFj9okzrjerIpOt2jVSyc_d9F6JFKR4AD9vbFtsMgQ0ni-6wdH6I.2MpIxeaOipjNwh0uvaaAEw" + "discord": "1100460955390988410" }, - "record": { + "records": { "TXT": "vc-domain-verify=zai.is-a.dev,d6fe937cdbbdde7c76a4" } } diff --git a/domains/_vercel.zalnars.json b/domains/_vercel.zalnars.json new file mode 100644 index 000000000..4c01130a6 --- /dev/null +++ b/domains/_vercel.zalnars.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "zalnaRs", + "email": "zalnars@proton.me", + "discord": "zalnars" + }, + "records": { + "TXT": "vc-domain-verify=zalnars.is-a.dev,61ba9176019e738b5c09" + } +} diff --git a/domains/_vercel.zara.json b/domains/_vercel.zara.json new file mode 100644 index 000000000..5b9eb28f4 --- /dev/null +++ b/domains/_vercel.zara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tutupharirabu", + "email": "code.zharaurien@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=zara.is-a.dev,54fd6194f447f7c5295b" + } +} diff --git a/domains/_vercel.zehao.json b/domains/_vercel.zehao.json new file mode 100644 index 000000000..4712d168c --- /dev/null +++ b/domains/_vercel.zehao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "2eha0", + "email": "zehao93@outlook.com" + }, + "records": { + "TXT": "vc-domain-verify=zehao.is-a.dev,6fbc4cc62fac0cd68f14" + } +} diff --git a/domains/_vercel.zold.json b/domains/_vercel.zold.json new file mode 100644 index 000000000..1a94f8f56 --- /dev/null +++ b/domains/_vercel.zold.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=zold.is-a.dev,43d9c99b8a4db2628eed" + } +} diff --git a/domains/_vercel.zpleum.json b/domains/_vercel.zpleum.json new file mode 100644 index 000000000..3a8394122 --- /dev/null +++ b/domains/_vercel.zpleum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zpleum", + "email": "wiraphat.makwong@gmail.com" + }, + "records": { + "TXT": "vc-domain-verify=zpleum.is-a.dev,34df59a5daf8df76e183" + } +} diff --git a/domains/a-furry.json b/domains/a-furry.json index 531fec104..3eaf85ff6 100644 --- a/domains/a-furry.json +++ b/domains/a-furry.json @@ -6,7 +6,7 @@ "email": "tsuuunyaaa@gmail.com", "twitter": "TsU1" }, - "record": { + "records": { "CNAME": "sxshley.github.io" } } diff --git a/domains/a-j.json b/domains/a-j.json index 708026569..da990cf5f 100644 --- a/domains/a-j.json +++ b/domains/a-j.json @@ -3,7 +3,7 @@ "username": "alijafari-gd", "email": "ali.jafari.sn@gmail.com" }, - "record": { + "records": { "URL": "https://alijafari.is-a.dev" } } diff --git a/domains/a-little-hat.json b/domains/a-little-hat.json index 2e2679abb..e53869fc7 100644 --- a/domains/a-little-hat.json +++ b/domains/a-little-hat.json @@ -3,7 +3,7 @@ "username": "A-Little-Hat", "email": "soumyasarkar309@gmail.com" }, - "record": { + "records": { "CNAME": "a-little-hat.github.io" } } diff --git a/domains/a.json b/domains/a.json deleted file mode 100644 index 387844593..000000000 --- a/domains/a.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "dhruvakalur", - "discord": "794802369216380949", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.n6sY7FH0bwRVpn5paxjZE9b0AS1bS9fiw6WV4sdfPhfnRrO9vR_Mxznkv_LzM5IWuOPUrNzJ8el1rUP1_BEnafofpoSYWV4J326U0TjFnhOysYjmpJ00oNE_TkBdF-gIlwZ3Ps6X2_i5OwLkWysa6oz7-DPHMA2bN27pC7VV7uMwt8gbvLH7BBgnpgZk7vf9eQ7hb8lgHDfjaeaxfG8PoGnO4SBMxcS_Q9hQxW-z7WsfBTTOeKC8jDg3ql5CCtw4epp61hmMGMD8Fk0ETZTDXVHLRVVLsR78uKwgRm-eifgDRVgycfoGfZpRkdZAWFG5fmAYTAxOxCFj6Efa44n-tA.PzULyP0rlpaGmeRh1tX5pA._J47HD2_nZv5f8j_vl5QZZCxbm6K4_nvrZ4LVcTdjH275xenN3SC3fbM-kQFokjiiKtiaSdZMxokzZtBbDBXHORYh2Z9Ve1ENytjWkmOP3U.YDrfLdRHD6-J3Bb9_7iysA" - }, - "record": { - "A": ["45.90.12.29"] - } -} diff --git a/domains/a1x5h04.json b/domains/a1x5h04.json index 10d265193..758c36178 100644 --- a/domains/a1x5h04.json +++ b/domains/a1x5h04.json @@ -5,7 +5,7 @@ }, "description": "a1x5h04's Portfolio", "repo": "https://github.com/a1x5h04/portfolio", - "record": { + "records": { "CNAME": "a1x5h04.pages.dev" } } diff --git a/domains/aa.json b/domains/aa.json index 64cb3a11a..a73c113a5 100644 --- a/domains/aa.json +++ b/domains/aa.json @@ -3,7 +3,7 @@ "username": "Abdullah-Albanna", "email": "albannaa78@gmail.com" }, - "record": { + "records": { "CNAME": "abdullah-albanna.github.io" } } diff --git a/domains/aadi.json b/domains/aadi.json deleted file mode 100644 index 2594b614b..000000000 --- a/domains/aadi.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "repo": "https://github.com/ringholder/ringholder.github.io", - "owner": { - "username": "ringholder", - "discord": "ringholder" - }, - "record": { - "CNAME": "ringholder.github.io" - } -} diff --git a/domains/aadirajuthup.json b/domains/aadirajuthup.json index dd110b351..9e7d46002 100644 --- a/domains/aadirajuthup.json +++ b/domains/aadirajuthup.json @@ -3,7 +3,7 @@ "username": "aadirajuthup", "email": "aadi.rajuthup@gmail.com" }, - "record": { + "records": { "A": ["150.136.148.164"] } } diff --git a/domains/aaditya.json b/domains/aaditya.json new file mode 100644 index 000000000..92cee40bf --- /dev/null +++ b/domains/aaditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aaditya2200", + "email": "aaditya2200@gmail.com" + }, + "records": { + "CNAME": "aaditya2200.github.io" + } +} diff --git a/domains/aadityaa.json b/domains/aadityaa.json new file mode 100644 index 000000000..d2ce5631f --- /dev/null +++ b/domains/aadityaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aadityaa2606", + "email": "aadityaa2606@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/aag.json b/domains/aag.json new file mode 100644 index 000000000..086c6d2fe --- /dev/null +++ b/domains/aag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "01AleX12", + "email": "aag.devv@gmail.com" + }, + "records": { + "CNAME": "01alex12.github.io" + } +} diff --git a/domains/aakanksha.json b/domains/aakanksha.json index f71b5dc98..228296959 100644 --- a/domains/aakanksha.json +++ b/domains/aakanksha.json @@ -5,7 +5,7 @@ "username": "aakankshabhende", "email": "aakanksha0407@gmail.com" }, - "record": { + "records": { "CNAME": "aakankshabhende.github.io" } } diff --git a/domains/aakarsh.json b/domains/aakarsh.json new file mode 100644 index 000000000..fdeaabf15 --- /dev/null +++ b/domains/aakarsh.json @@ -0,0 +1,12 @@ +{ + "description": "My portfolio website", + "repo": "https://github.com/Aakarsh-Kumar/persnol", + "owner": { + "username": "Aakarsh-Kumar", + "email": "aakarsh2504@gmail.com", + "discord": "spyperx" + }, + "records": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/aakash.json b/domains/aakash.json index 82f277b04..ddb533562 100644 --- a/domains/aakash.json +++ b/domains/aakash.json @@ -4,7 +4,7 @@ "username": "Shinyzenith", "email": "aakashsensharma@gmail.com" }, - "record": { + "records": { "CNAME": "shinyzenith.github.io" } } diff --git a/domains/aakashrawat.json b/domains/aakashrawat.json new file mode 100644 index 000000000..5dcc486bc --- /dev/null +++ b/domains/aakashrawat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aakashrawat04", + "email": "2004rawataakash@gmail.com", + "discord": "759817307957493800" + }, + "records": { + "CNAME": "aakashrawat.vercel.app" + } +} diff --git a/domains/aakashs.json b/domains/aakashs.json index ee582b803..9221287f8 100644 --- a/domains/aakashs.json +++ b/domains/aakashs.json @@ -5,7 +5,7 @@ "email": "aakashshivhare1704@gmail.com", "discord": "AakashS#9630" }, - "record": { + "records": { "CNAME": "aakash-kun.github.io" } } diff --git a/domains/aakashuuuu.json b/domains/aakashuuuu.json index d94b5b9e9..c4bd8c6a6 100644 --- a/domains/aakashuuuu.json +++ b/domains/aakashuuuu.json @@ -3,7 +3,7 @@ "username": "itsAakashz", "email": "gzatrop@gmail.com" }, - "record": { + "records": { "CNAME": "nextjs-aakashuu-portfolio.pages.dev" } } diff --git a/domains/aakhilv.json b/domains/aakhilv.json index de8ba652a..f7189df10 100644 --- a/domains/aakhilv.json +++ b/domains/aakhilv.json @@ -6,7 +6,7 @@ "email": "bluninja165@gmail.com", "twitter": "corruptblu" }, - "record": { + "records": { "CNAME": "aakhilv.github.io" } } diff --git a/domains/aaksa.json b/domains/aaksa.json index 0d323b382..71e85886b 100644 --- a/domains/aaksa.json +++ b/domains/aaksa.json @@ -5,7 +5,7 @@ "username": "aaksa", "email": "andiaksa16@gmail.com" }, - "record": { + "records": { "CNAME": "aaksa.github.io" } } diff --git a/domains/aalcantara.json b/domains/aalcantara.json index d4f2171bb..bc6c431bc 100644 --- a/domains/aalcantara.json +++ b/domains/aalcantara.json @@ -5,7 +5,7 @@ "username": "Aalcantaraxxx", "email": "angele2705@gmail.com" }, - "record": { + "records": { "CNAME": "aalcantara-is-a-dev.web.app" } } diff --git a/domains/aankit.json b/domains/aankit.json new file mode 100644 index 000000000..b0a103628 --- /dev/null +++ b/domains/aankit.json @@ -0,0 +1,13 @@ +{ + "description": "Ankit's GitHub page", + "repo": "https://github.com/Ankit-0310", + "owner": { + "username": "Ankit-0310", + "email": "ankitarya753@gmail.com", + "telegram": "F0RBIDDEN_USER", + "github": "Ankit-0310" + }, + "records": { + "CNAME": "Ankit-0310.github.io" + } +} diff --git a/domains/aaqif.json b/domains/aaqif.json new file mode 100644 index 000000000..81c454e40 --- /dev/null +++ b/domains/aaqif.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/aaqifshafi/react-portfolio", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "records": { + "CNAME": "react-portfolio-ashen-tau.vercel.app" + } +} diff --git a/domains/aaraam.json b/domains/aaraam.json index 7021124bb..3ec5ad9b0 100644 --- a/domains/aaraam.json +++ b/domains/aaraam.json @@ -5,7 +5,7 @@ "username": "aaraam", "email": "aaraam.goblin@gmail.com" }, - "record": { + "records": { "CNAME": "aaraam.github.io" } } diff --git a/domains/aargh.json b/domains/aargh.json deleted file mode 100644 index a1eef442d..000000000 --- a/domains/aargh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "aargh.is-a.dev", - "repo": "https://github.com/FloatingComet62/floatingcomet62.github.io", - "owner": { - "username": "FloatingComet62", - "email": "shubh2007rai@gmail.com" - }, - "record": { - "CNAME": "floatingcomet62.github.io" - } -} diff --git a/domains/aarno.json b/domains/aarno.json index 5d3f92cc3..fa6221bc3 100644 --- a/domains/aarno.json +++ b/domains/aarno.json @@ -5,7 +5,7 @@ "username": "DorianAarno", "email": "aarnodorian56@gmail.com" }, - "record": { + "records": { "CNAME": "dorianaarno.github.io" } } diff --git a/domains/aaron.json b/domains/aaron.json new file mode 100644 index 000000000..8fffbd23b --- /dev/null +++ b/domains/aaron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AaronPerezPerez", + "email": "aarperper@gmail.com" + }, + "records": { + "CNAME": "terminal-portfolio-h80h9v8ub-aaronperezperez.vercel.app" + } +} diff --git a/domains/aaronfort.json b/domains/aaronfort.json new file mode 100644 index 000000000..25e9b0dd0 --- /dev/null +++ b/domains/aaronfort.json @@ -0,0 +1,10 @@ +{ + "description": "Documentation website for Aaron Fort", + "owner": { + "username": "AaronFortG", + "email": "aaronfortg@gmail.com" + }, + "records": { + "CNAME": "mycurriculum.salleurl.edu" + } +} diff --git a/domains/aaryan.json b/domains/aaryan.json index 728e3ac2b..d9f4149e9 100644 --- a/domains/aaryan.json +++ b/domains/aaryan.json @@ -1,10 +1,9 @@ { "owner": { "username": "Aaryan-N", - "discord": "652433042153144321", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RE4SnzQsF8mU81IgFbFll-aRz00dgrRzHb93gKwvaM03w_ksZTABXtjQBNe91kffdNc9M3JpnZVUlRPWGsXcdcyIUGUctweC7d7HZKNylvAYm12-xVmaX8PYM5B4l1TwTfZfACx2LckVKZUR0dZUkIVvTVHPCMF2xCGb7z8Ic-iSSu2Dp5mywp5XN8qu1dC8ep46fzkqfMeVWtzv8daNB332nz-nwKVDx_22MuYJy3mpeMMQVPRU41oWILQoWYVWYVhsiqpgw1VXKdyd52VmzgfmG6Gj0bYPeoIDzWIX8Tb-zhjxiy67tXaZYqZ7Y6DhT-t8FoZtrAfkWVyH28VOgA.KHOXZEbbSdswKeb51IRQzw.9asWvdPDaCTj6nfgO7jC4juUIdDmstvUHCjd2lb_7LK0EKJyiriVsW8F6yG7L0hCUFvPGYRfWCgn1ffzGJsbCxn-sC7aN4vfildGU5geAHA.4lTkjQOfgK2NOf2Pdf7b9A" + "discord": "652433042153144321" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] diff --git a/domains/aashutosh.json b/domains/aashutosh.json index 0d59751a8..e879f4d28 100644 --- a/domains/aashutosh.json +++ b/domains/aashutosh.json @@ -4,7 +4,7 @@ "username": "aashutoshrathi", "email": "me@aashutosh.dev" }, - "record": { + "records": { "CNAME": "aashutosh.dev" } } diff --git a/domains/aasoft.json b/domains/aasoft.json new file mode 100644 index 000000000..9ed5cebd8 --- /dev/null +++ b/domains/aasoft.json @@ -0,0 +1,10 @@ +{ + "description": "alireza mohebbi threejs project - aasoft.ir", + "owner": { + "username": "aasoftir", + "email": "aasoftmohebbi@gmail.com" + }, + "records": { + "URL": "https://glitch-text-threejs.vercel.app/" + } +} diff --git a/domains/aayush.json b/domains/aayush.json index ac503c299..75dfa2645 100644 --- a/domains/aayush.json +++ b/domains/aayush.json @@ -4,7 +4,7 @@ "email": "aayushmagrawal@gmail.com", "discord": "Aayu5h#1737" }, - "record": { + "records": { "CNAME": "opaayush.pages.dev" } } diff --git a/domains/aayushakacloudy.json b/domains/aayushakacloudy.json index 6feb21808..ae522cf3f 100644 --- a/domains/aayushakacloudy.json +++ b/domains/aayushakacloudy.json @@ -5,7 +5,7 @@ "username": "gamedevCloudy", "email": "aaayush.dev@gmail.com" }, - "record": { + "records": { "CNAME": "gamedevcloudy.github.io" } } diff --git a/domains/aayushbharti.json b/domains/aayushbharti.json index 9f57910d9..3505c7f7a 100644 --- a/domains/aayushbharti.json +++ b/domains/aayushbharti.json @@ -3,7 +3,7 @@ "username": "aayushbharti", "email": "iaayushbharti@gmail.com" }, - "record": { + "records": { "CNAME": "aayushbharti.pages.dev" } } diff --git a/domains/aayushsiwa.json b/domains/aayushsiwa.json index 295bb4b0c..cdfb44f26 100644 --- a/domains/aayushsiwa.json +++ b/domains/aayushsiwa.json @@ -3,7 +3,7 @@ "username": "aayushsiwa", "email": "22052177@kiit.ac.in" }, - "record": { + "records": { "CNAME": "aayushsiwa.pages.dev" } } diff --git a/domains/abaan.json b/domains/abaan.json index b0b914af9..f6d9220a6 100644 --- a/domains/abaan.json +++ b/domains/abaan.json @@ -3,7 +3,7 @@ "username": "Abaan5467", "email": "abaan@metfabproducts.com" }, - "record": { + "records": { "CNAME": "abaan5467.github.io" } } diff --git a/domains/abby.json b/domains/abby.json deleted file mode 100644 index 70ff7f6dd..000000000 --- a/domains/abby.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "MiloDev123", - "email": "milo@milosantos.com", - "discord": "699318362848886864" - }, - "record": { - "NS": [ - "kristin.ns.cloudflare.com", - "uriah.ns.cloudflare.com" - ] - } -} diff --git a/domains/abc.json b/domains/abc.json index 4747a5b5c..ff471d619 100644 --- a/domains/abc.json +++ b/domains/abc.json @@ -3,7 +3,7 @@ "username": "neohe", "email": "he_neo@163.com" }, - "record": { + "records": { "CNAME": "neohe.github.io" } } diff --git a/domains/abdallahbari.json b/domains/abdallahbari.json new file mode 100644 index 000000000..b99644ec0 --- /dev/null +++ b/domains/abdallahbari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdallah01win", + "email": "abdellah01win@gmail.com" + }, + "records": { + "CNAME": "portfolio-bf2.pages.dev" + } +} diff --git a/domains/abdeba.json b/domains/abdeba.json index 0d9f2d7c9..af20d6dfd 100644 --- a/domains/abdeba.json +++ b/domains/abdeba.json @@ -3,7 +3,7 @@ "username": "abde0ba", "email": "abdesoft1@gmail.com" }, - "record": { + "records": { "URL": "https://ab-portfolio-one.vercel.app" } } diff --git a/domains/abdelghani.json b/domains/abdelghani.json index 37b3275b7..34fa964ee 100644 --- a/domains/abdelghani.json +++ b/domains/abdelghani.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "abdessattar23", - "discord": "1226143665567567954", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.eU0sigYFTiUmRSsjTm8HIpmuwsrshbwh3EHiAN0We7TPTvlwMZxh3Yf7G9dkLOygXKomX08LOA1ELcJB9vK2OWbbK2k6fOJQQCKr6S7pV9ZU4HifKGXPxQKoPAmo72Zqenp9PBZ0USq0j05eprWD5deGY3YvW_L6o38wcDJdSD2k8ivwPFxvY3PUA1ntL8tHVAhq-oMPXUVXVpsHjZqDGbatQEHyUe0vQhc7dbmJF5HlvRVXOw3M-1EQmBURw_5tEAKDxZSzn2G0zu2hGnzT_vqgi-OAu9cSM1br4ytgLbUHG1VnuU9VQtEXLF1Rvp8aWPUwxq_1ojm07mzXBChM4g.JuGnrwrSF9PLG44nC_dtRA.Lb1j-9z9OQiV-bS8d0vSFUqV367FZpYp2wZmKlodkAagnu8suFiGz2DzxT086wdpucbFOCRJD4l1jjBVcNDq7R12hdcpu5_o-zh8r5JwpbDVyjC4Mjdxs4hLpwZH5OEp.OmkfnGL8CjO_8IJtjAfnwQ" - }, - - "record": { - "CNAME": "king255-del.github.io" - } - } + "owner": { + "username": "abdessattar23", + "discord": "1226143665567567954" + }, + "records": { + "CNAME": "king255-del.github.io" + } +} diff --git a/domains/abdelhamied.json b/domains/abdelhamied.json new file mode 100644 index 000000000..2acfe3544 --- /dev/null +++ b/domains/abdelhamied.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdelhamied403", + "email": "abdelhamied403@gmail.com" + }, + "records": { + "CNAME": "abdelhamied.vercel.app" + } +} diff --git a/domains/abdelkarim-ain.json b/domains/abdelkarim-ain.json deleted file mode 100644 index 64ace5d29..000000000 --- a/domains/abdelkarim-ain.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "abdelkarimain", - "email": "abdelkarimain0@gmail.com" - }, - "record": { - "CNAME": "abdelkarimain.github.io" - } -} diff --git a/domains/abdelkarimain.json b/domains/abdelkarimain.json index 64ace5d29..b7206d274 100644 --- a/domains/abdelkarimain.json +++ b/domains/abdelkarimain.json @@ -3,7 +3,7 @@ "username": "abdelkarimain", "email": "abdelkarimain0@gmail.com" }, - "record": { + "records": { "CNAME": "abdelkarimain.github.io" } } diff --git a/domains/abdessattar.json b/domains/abdessattar.json index 8e81cca0b..2e455eca9 100644 --- a/domains/abdessattar.json +++ b/domains/abdessattar.json @@ -3,7 +3,7 @@ "username": "abdessattar23", "email": "elyagoubiabdessattar@gmail.com" }, - "record": { + "records": { "CNAME": "abdessattar23.github.io" } } diff --git a/domains/abdi.json b/domains/abdi.json new file mode 100644 index 000000000..bb3195a78 --- /dev/null +++ b/domains/abdi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdiopp", + "email": "ginnieabdullah007@gmail.com" + }, + "records": { + "CNAME": "abdi-portfolio.web.app" + } +} diff --git a/domains/abdisa.json b/domains/abdisa.json index 162199d0b..af241f1a7 100644 --- a/domains/abdisa.json +++ b/domains/abdisa.json @@ -4,7 +4,7 @@ "username": "abdisadev", "email": "abdisadev@gmail.com" }, - "record": { + "records": { "CNAME": "abdisa.me" } } diff --git a/domains/abdo.json b/domains/abdo.json index 61a492730..72db2f553 100644 --- a/domains/abdo.json +++ b/domains/abdo.json @@ -6,7 +6,7 @@ "email": "xabdoat@gmail.com", "twitter": "xAbdoAT" }, - "record": { + "records": { "CNAME": "xabdoat.github.io" } } diff --git a/domains/abdul.json b/domains/abdul.json index 60f35a05b..4d4aa0c09 100644 --- a/domains/abdul.json +++ b/domains/abdul.json @@ -4,7 +4,7 @@ "email": "ahad4387@gmail.com" }, "description": "portofolio website.", - "record": { + "records": { "URL": "https://abdul-ahad-portfolio.webflow.io" } } diff --git a/domains/abdullah-al-mridul.json b/domains/abdullah-al-mridul.json new file mode 100644 index 000000000..68e90d0a6 --- /dev/null +++ b/domains/abdullah-al-mridul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdullah-al-mridul", + "email": "rim89987@gmail.com" + }, + "records": { + "CNAME": "abdullah-al-mridul-dev.vercel.app" + } +} diff --git a/domains/abdullah.json b/domains/abdullah.json index 549ce8855..4e7507194 100644 --- a/domains/abdullah.json +++ b/domains/abdullah.json @@ -1,10 +1,11 @@ { + "description": "Abdullah Personal Website", + "repo": "https://github.com/Mdabdullah3/me-portfolio", "owner": { - "username": "adistar964", - "email": "adistar964@gmail.com" + "username": "Mdabdullah3", + "email": "mdabdullahnoman777@gmail.com" }, - "description": "this is for my personal website made.", - "record": { - "CNAME": "adistar964.github.io" + "records": { + "CNAME": "mdabdullah3.github.io" } } diff --git a/domains/abdullah.maqbool.json b/domains/abdullah.maqbool.json new file mode 100644 index 000000000..f346deda6 --- /dev/null +++ b/domains/abdullah.maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "records": { + "CNAME": "abdullahmaqbool-portfolio.vercel.app" + } +} diff --git a/domains/abdullahcxd.json b/domains/abdullahcxd.json new file mode 100644 index 000000000..489ab2f9c --- /dev/null +++ b/domains/abdullahcxd.json @@ -0,0 +1,14 @@ +{ + "description": "Portfolio use", + "repo": "https://github.com/abdullahcxd/abdullahcxd.github.io", + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "records": { + "A": ["185.199.109.153", "185.199.110.153", "185.199.108.153", "185.199.111.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/abdullyahuza.json b/domains/abdullyahuza.json new file mode 100644 index 000000000..4c4969b67 --- /dev/null +++ b/domains/abdullyahuza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdullyahuza", + "email": "yahuzaabdulrazak@gmail.com" + }, + "records": { + "CNAME": "abdullyahuza.github.io" + } +} diff --git a/domains/abdulquddus.json b/domains/abdulquddus.json new file mode 100644 index 000000000..5edd55b0a --- /dev/null +++ b/domains/abdulquddus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aqdev-tech", + "email": "abdulquddusinda@gmail.com" + }, + "records": { + "CNAME": "abdulquddus.onrender.com" + } +} diff --git a/domains/abdulrahman.json b/domains/abdulrahman.json index 87bf2a14f..1bff2f1a5 100644 --- a/domains/abdulrahman.json +++ b/domains/abdulrahman.json @@ -5,7 +5,7 @@ "username": "abdulrahman1s", "email": "mail@abdulrahman.dev" }, - "record": { + "records": { "URL": "https://abdulrahman.dev" } } diff --git a/domains/abdulrazzaq.json b/domains/abdulrazzaq.json new file mode 100644 index 000000000..f1be462ba --- /dev/null +++ b/domains/abdulrazzaq.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio Website", + "owner": { + "username": "algo-encoders", + "email": "a.razzaq4085@gmail.com" + }, + "records": { + "A": ["75.119.140.170"] + } +} diff --git a/domains/abdulrshaikh.json b/domains/abdulrshaikh.json index 0ff5b2b12..c080d3efa 100644 --- a/domains/abdulrshaikh.json +++ b/domains/abdulrshaikh.json @@ -5,7 +5,7 @@ "username": "ariskycode", "email": "arirfanshaikh23@gmail.com" }, - "record": { + "records": { "CNAME": "ariskycode.github.io" } } diff --git a/domains/abe.json b/domains/abe.json index 4685df8eb..bbe8c27c1 100644 --- a/domains/abe.json +++ b/domains/abe.json @@ -4,7 +4,7 @@ "email": "skyrocket180@gmail.com", "discord": "1201432681913778260" }, - "record": { + "records": { "CNAME": "profile01.overstand.app" } } diff --git a/domains/abeer.json b/domains/abeer.json new file mode 100644 index 000000000..6e07bc975 --- /dev/null +++ b/domains/abeer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abeer555", + "email": "abeergupta555@gmail.com" + }, + "records": { + "CNAME": "abeer555.github.io" + } +} diff --git a/domains/abegehr.json b/domains/abegehr.json index 78b7f1e39..395941318 100644 --- a/domains/abegehr.json +++ b/domains/abegehr.json @@ -6,7 +6,7 @@ "email": "anton@begehr.me", "twitter": "antonbegehr" }, - "record": { + "records": { "CNAME": "abegehr.github.io" } } diff --git a/domains/abeja.json b/domains/abeja.json new file mode 100644 index 000000000..19703fdbd --- /dev/null +++ b/domains/abeja.json @@ -0,0 +1,12 @@ +{ + "description": "Abeja's portfolio", + "repo": "https://github.com/TheRealCrazyfuy/TheRealCrazyfuy.github.io", + "owner": { + "username": "TheRealCrazyfuy", + "discord": "realabeja", + "reddit": "crazyfuy" + }, + "records": { + "CNAME": "TheRealCrazyfuy.github.io" + } +} diff --git a/domains/abelblue.json b/domains/abelblue.json index 49af5c49d..e0dfc53fc 100644 --- a/domains/abelblue.json +++ b/domains/abelblue.json @@ -5,7 +5,7 @@ "username": "abel-blue", "email": "abelmgetnet@gmail.com" }, - "record": { + "records": { "CNAME": "abel-blue.github.io" } } diff --git a/domains/abeltranp94.json b/domains/abeltranp94.json index 8fc1b502b..ce11442ab 100644 --- a/domains/abeltranp94.json +++ b/domains/abeltranp94.json @@ -5,7 +5,7 @@ "username": "abeltranp9476", "email": "abeltran.9476@gmail.com" }, - "record": { + "records": { "CNAME": "abeltranp9476.github.io" } } diff --git a/domains/abh80.json b/domains/abh80.json index c53647599..62cf00fe6 100644 --- a/domains/abh80.json +++ b/domains/abh80.json @@ -6,7 +6,7 @@ "email": "boatgithub27@gmail.com", "twitter": "trackerstars" }, - "record": { + "records": { "CNAME": "abh80.github.io" } } diff --git a/domains/abhay.json b/domains/abhay.json index 470df7cdc..aa20b9f85 100644 --- a/domains/abhay.json +++ b/domains/abhay.json @@ -1,10 +1,9 @@ { "owner": { "username": "uniquepersun", - "email": "abhay.i0am@gmail.com", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WIRf3W3gkAD5c_yyczIieWIABVFKWjmCVV0l_jrxtMMOnT2mWlAELQAVfwDsjz2XEX6NcrWmCEaTEYC0aVCeWEgSjnl_r077RRwQuAOED2ICK-M5WvKDPdUuPlChYVtpbRiByY1nmFWUp5DGn7Z2faQrla_7Ji2e924mSSJppOeBuhcDZ0mZ0Mc3Z8X4DWgQ5xBbKFoREVkyuPSs9Y6Q0-lZsFZijj9khQsQDbDgZT8v3Fv9swLkqAdt-ZMBr7ZdvJSkBbtWj8L038WAZ6dSg-ix3xpkluU97jQt6kLkOyRYY5MKDFoSkxraBumZA9-YDB3pDL_2yAZ23cvHywnPDg.kU_H99RhrpznpQWwrfJ_Aw.yuZV5PvTwNvz5T1JlXOnGw7JjHcUDj_KdD9XGpvQ2rQQ9twNQJESMqj55Jxbgx2jX6mzJsRWmlJDPkE3eSkMQOv3AJuxuWdX4kGpREkxeixFGB8N1oviCe6z0JoYfRuW.GdyFBUkFmKP1fVuGM1CdCA" + "email": "abhay.i0am@gmail.com" }, - "record": { + "records": { "URL": "https://uniquepersun.hackclub.app" } } diff --git a/domains/abhi.json b/domains/abhi.json index 3b9c6b2b6..eb5540782 100644 --- a/domains/abhi.json +++ b/domains/abhi.json @@ -3,7 +3,7 @@ "username": "actuallyabhi", "email": "mabhishek7081@zohomail.in" }, - "record": { + "records": { "URL": "https://actuallyabhi.netlify.app" } } diff --git a/domains/abhigyantrips.json b/domains/abhigyantrips.json index 7a981f390..a52b9faf9 100644 --- a/domains/abhigyantrips.json +++ b/domains/abhigyantrips.json @@ -5,7 +5,7 @@ "username": "abhigyantrips", "email": "abhigyantrips@gmail.com" }, - "record": { + "records": { "CNAME": "abhigyantrips.github.io" } } diff --git a/domains/abhiii.json b/domains/abhiii.json new file mode 100644 index 000000000..3a8a24c64 --- /dev/null +++ b/domains/abhiii.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wiz-abhi", + "email": "abbhiiishekk@proton.me" + }, + "records": { + "URL": "https://abhiishekk.netlify.app" + } +} diff --git a/domains/abhijeet.json b/domains/abhijeet.json new file mode 100644 index 000000000..4765a889f --- /dev/null +++ b/domains/abhijeet.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abhijeet486", + "email": "sabhijeet652@gmail.com" + }, + "records": { + "CNAME": "portfolio-website-mocha-beta.vercel.app" + }, + "proxy": false +} diff --git a/domains/abhijith.json b/domains/abhijith.json new file mode 100644 index 000000000..df75c1ba3 --- /dev/null +++ b/domains/abhijith.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/abhisawesome/abhisawesome.github.io", + "owner": { + "username": "abhisawesome", + "email": "abhijithababhijith@gmail.com" + }, + "records": { + "CNAME": "abhisawesome.github.io" + } +} diff --git a/domains/abhilash.json b/domains/abhilash.json index 8048cae1d..5801b36cf 100644 --- a/domains/abhilash.json +++ b/domains/abhilash.json @@ -6,7 +6,7 @@ "email": "abhilashk1@proton.me", "twitter": "OstrichHimself" }, - "record": { + "records": { "CNAME": "ostrichization.github.io" } } diff --git a/domains/abhinav-shyju.json b/domains/abhinav-shyju.json new file mode 100644 index 000000000..049af8f23 --- /dev/null +++ b/domains/abhinav-shyju.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abhinavshyju", + "email": "abhinavshyjupc@gmail.com" + }, + "records": { + "CNAME": "portfolio-6ns.pages.dev" + } +} diff --git a/domains/abhinav.json b/domains/abhinav.json new file mode 100644 index 000000000..cd5f385e8 --- /dev/null +++ b/domains/abhinav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abh1nav", + "email": "abhinav316@gmail.com" + }, + "records": { + "CNAME": "blog.abhinav.ca" + } +} diff --git a/domains/abhint.json b/domains/abhint.json index d9e6cc780..c71d02ed8 100644 --- a/domains/abhint.json +++ b/domains/abhint.json @@ -6,7 +6,7 @@ "email": "notifyabhijith@gmail.com", "twitter": "abhint6" }, - "record": { + "records": { "CNAME": "abhint.github.io" } } diff --git a/domains/abhishek-sharma.json b/domains/abhishek-sharma.json index 82aba4eef..ebec79624 100644 --- a/domains/abhishek-sharma.json +++ b/domains/abhishek-sharma.json @@ -3,7 +3,7 @@ "username": "AbhiSharma096", "email": "Abhisheksharma10a@gmail.com" }, - "record": { + "records": { "URL": "https://abhishek-sharma-01.netlify.app/" } } diff --git a/domains/abhishek.json b/domains/abhishek.json index b0097a288..7d1f5c278 100644 --- a/domains/abhishek.json +++ b/domains/abhishek.json @@ -1,11 +1,10 @@ { "description": "Abhishek's personal website", - "repo": "https://github.com/nullpointxr", "owner": { "username": "nullpointxr", "email": "abhishek.sankar.in@protonmail.com" }, - "record": { + "records": { "CNAME": "abhisheks.me" } } diff --git a/domains/abhishekissac.json b/domains/abhishekissac.json index 04f9c199c..97ca0e157 100644 --- a/domains/abhishekissac.json +++ b/domains/abhishekissac.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Abhishek-Issac", - "email": "abhishekissac0@gmail.com" - }, - "record": { - "CNAME": "abhishek-issac.github.io" - }, - "proxied": false + "owner": { + "username": "Abhishek-Issac", + "email": "abhishekissac0@gmail.com" + }, + "records": { + "CNAME": "abhishek-issac.github.io" + }, + "proxied": false } diff --git a/domains/abhishekkumar.json b/domains/abhishekkumar.json index 81ca81759..3602c694a 100644 --- a/domains/abhishekkumar.json +++ b/domains/abhishekkumar.json @@ -1,11 +1,10 @@ { "description": "Abhishek's personal developer website", - "repo": "https://github.com/Abhishek-569", "owner": { "username": "Abhishek-569", "email": "akabhishek4444@gmail.com" }, - "record": { + "records": { "URL": "https://akabhishek4444.wixsite.com/abhishek-kumar" } } diff --git a/domains/abhrajitdas.json b/domains/abhrajitdas.json index d0c26388f..cf456e7ed 100644 --- a/domains/abhrajitdas.json +++ b/domains/abhrajitdas.json @@ -6,7 +6,7 @@ "email": "abhrajitdas12245@gmail.com", "twitter": "abhrajit2002" }, - "record": { + "records": { "CNAME": "abhrajitdas02.github.io" } } diff --git a/domains/abiapp789.json b/domains/abiapp789.json deleted file mode 100644 index 4472f5420..000000000 --- a/domains/abiapp789.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "domain": "abiapp1789.is-a.dev", - "owner": { - "username": "abiapp789", - "email": "abiapp2024@gmail.com" - }, - "record": { - "CNAME": "trytodownloadme.rf.gd" - } -} diff --git a/domains/abidraza.json b/domains/abidraza.json new file mode 100644 index 000000000..ef52c0876 --- /dev/null +++ b/domains/abidraza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ariabid", + "email": "ari.abid@gmail.com" + }, + "records": { + "URL": "https://abidraza.com" + } +} diff --git a/domains/abiels.json b/domains/abiels.json index 53d0546fc..ad76e0ce0 100644 --- a/domains/abiels.json +++ b/domains/abiels.json @@ -3,12 +3,7 @@ "email": "usagecomputer1@gmail.com", "username": "Abiel0" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/abineethan.json b/domains/abineethan.json new file mode 100644 index 000000000..28fcd6b46 --- /dev/null +++ b/domains/abineethan.json @@ -0,0 +1,10 @@ +{ + "description": "This is my portfolio website.", + "owner": { + "username": "abineethan", + "email": "abineethan22@gmail.com" + }, + "records": { + "CNAME": "abineethan-dev.web.app" + } +} diff --git a/domains/abishek.json b/domains/abishek.json index cd33a0738..37598a5be 100644 --- a/domains/abishek.json +++ b/domains/abishek.json @@ -5,7 +5,7 @@ "username": "vj-abishek", "email": "abigosearch@gmail.com" }, - "record": { + "records": { "CNAME": "vj-abishek.github.io" } } diff --git a/domains/aboutjes.json b/domains/aboutjes.json index 53c17e34b..41b82924f 100644 --- a/domains/aboutjes.json +++ b/domains/aboutjes.json @@ -5,7 +5,7 @@ "username": "octyn-yt", "email": "simplelogin-newsletter.idealize471@simplelogin.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/abranico.json b/domains/abranico.json new file mode 100644 index 000000000..ed19b80a5 --- /dev/null +++ b/domains/abranico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abranico", + "email": "abranico011@gmail.com" + }, + "records": { + "CNAME": "abranico.vercel.app" + } +} diff --git a/domains/abu.json b/domains/abu.json new file mode 100644 index 000000000..6971cf712 --- /dev/null +++ b/domains/abu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mohamed-faaris", + "email": "mohammedfaaris2005@gmail.com" + }, + "records": { + "URL": "https://github.com/Mohamed-Abu-Bakkar" + } +} diff --git a/domains/abubakar.json b/domains/abubakar.json index 9143d444b..04c3b33a5 100644 --- a/domains/abubakar.json +++ b/domains/abubakar.json @@ -5,7 +5,7 @@ "username": "AbubakarKang", "discord": "TheHacker#4418" }, - "record": { + "records": { "CNAME": "abubakarkang.github.io" } } diff --git a/domains/abysmal.json b/domains/abysmal.json index d51988040..28afe3596 100644 --- a/domains/abysmal.json +++ b/domains/abysmal.json @@ -4,7 +4,7 @@ "username": "abysmal26", "email": "abysmal@disroot.org" }, - "record": { + "records": { "URL": "https://abysmal.eu.org" } } diff --git a/domains/abyss.json b/domains/abyss.json index 4e050d48c..6287be31d 100644 --- a/domains/abyss.json +++ b/domains/abyss.json @@ -3,7 +3,7 @@ "username": "ultimduck", "email": "zultimduk@gmail.com" }, - "record": { + "records": { "CNAME": "ultimduck.github.io" } } diff --git a/domains/ac.json b/domains/ac.json index 688a1d5e7..971e6644f 100644 --- a/domains/ac.json +++ b/domains/ac.json @@ -4,7 +4,7 @@ "username": "acdev1508", "email": "acgamer1508@gmail.com" }, - "record": { + "records": { "CNAME": "acdev1508.github.io" } } diff --git a/domains/ac21.json b/domains/ac21.json index cc9e15090..3fc1298bd 100644 --- a/domains/ac21.json +++ b/domains/ac21.json @@ -5,7 +5,7 @@ "username": "atharva21-stack", "email": "chandwadkar28@gmail.com" }, - "record": { + "records": { "CNAME": "atharva21-stack.github.io" } } diff --git a/domains/acaiberii.json b/domains/acaiberii.json index 8e0faf623..b5d6ffbc9 100644 --- a/domains/acaiberii.json +++ b/domains/acaiberii.json @@ -5,7 +5,7 @@ "username": "acaiberii", "email": "studiouifxdesignersandcoders@gmail.com" }, - "record": { + "records": { "CNAME": "acaiberii.github.io" } } diff --git a/domains/account.juststudio.json b/domains/account.juststudio.json index 0e9c53ba8..9947492bd 100644 --- a/domains/account.juststudio.json +++ b/domains/account.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "juststudio-account.web.app" } } diff --git a/domains/accounts.juststudio.json b/domains/accounts.juststudio.json index e2655ff63..4561c6268 100644 --- a/domains/accounts.juststudio.json +++ b/domains/accounts.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "accounts.clerk.services" } } diff --git a/domains/acctuke.json b/domains/acctuke.json index 96f7c2c5d..9d1f3e6b0 100644 --- a/domains/acctuke.json +++ b/domains/acctuke.json @@ -3,7 +3,7 @@ "username": "Roing", "email": "yang4421@outlook.com" }, - "record": { + "records": { "A": ["47.120.72.157"] } } diff --git a/domains/ace.json b/domains/ace.json index 740356487..29cd271b7 100644 --- a/domains/ace.json +++ b/domains/ace.json @@ -3,7 +3,7 @@ "username": "diamond-gold", "email": "diamond-gold-ace@outlook.com" }, - "record": { + "records": { "URL": "https://github.com/diamond-gold" } } diff --git a/domains/acey.json b/domains/acey.json index e3ac2f977..b3ba46a45 100644 --- a/domains/acey.json +++ b/domains/acey.json @@ -3,7 +3,7 @@ "username": "AceyDoCodes", "email": "aceygoesboom@gmail.com" }, - "record": { + "records": { "CNAME": "website-5qo.pages.dev" } } diff --git a/domains/acgaming.json b/domains/acgaming.json index 39856b8e9..2237049fa 100644 --- a/domains/acgaming.json +++ b/domains/acgaming.json @@ -4,7 +4,7 @@ "email": "acgamer861@gmail.com" }, "repo": "https://github.com/ACGaming1508/ACGaming1508.github.io", - "record": { + "records": { "CNAME": "acgaming1508.github.io" } } diff --git a/domains/achim.json b/domains/achim.json index 1ca781547..68b6aac01 100644 --- a/domains/achim.json +++ b/domains/achim.json @@ -3,7 +3,7 @@ "username": "nohli", "twitter": "joachi_" }, - "record": { + "records": { "CNAME": "achim.io" } } diff --git a/domains/achraf.json b/domains/achraf.json index e5173a56b..bc8f13230 100644 --- a/domains/achraf.json +++ b/domains/achraf.json @@ -5,7 +5,7 @@ "username": "Ax-r", "email": "hostmaster@netcourrier.com" }, - "record": { + "records": { "CNAME": "ax-r.github.io" } } diff --git a/domains/achyut.json b/domains/achyut.json new file mode 100644 index 000000000..657989636 --- /dev/null +++ b/domains/achyut.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "achyutkneupane", + "email": "achyutkneupane@gmail.com", + "linkedin": "achyutneupane" + }, + "records": { + "CNAME": "achyut.com.np" + } +} diff --git a/domains/acronical.json b/domains/acronical.json index b63c4de95..5ef22cc52 100644 --- a/domains/acronical.json +++ b/domains/acronical.json @@ -3,7 +3,7 @@ "username": "AcronicalYT", "email": "acronicalbusiness@gmail.com" }, - "record": { + "records": { "CNAME": "acronical.pages.dev" } } diff --git a/domains/acutewoof.json b/domains/acutewoof.json index d2509f5b9..5542ca1a5 100644 --- a/domains/acutewoof.json +++ b/domains/acutewoof.json @@ -5,7 +5,7 @@ "username": "acutewoof", "email": "acutewoof@gmail.com" }, - "record": { + "records": { "CNAME": "acutewoof.github.io" } } diff --git a/domains/ad.lver.json b/domains/ad.lver.json new file mode 100644 index 000000000..1821f501f --- /dev/null +++ b/domains/ad.lver.json @@ -0,0 +1,11 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "records": { + "A": ["52.72.49.79"] + }, + "proxied": true +} diff --git a/domains/ada.json b/domains/ada.json index df38c2c70..a3c701661 100644 --- a/domains/ada.json +++ b/domains/ada.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ada-lovecraft", - "email": "ada@codevinsky.com" - }, - "record": { - "CNAME": "ada-lovecraft.github.io" - } + "owner": { + "username": "ada-lovecraft", + "email": "ada@codevinsky.com" + }, + "records": { + "CNAME": "ada-lovecraft.github.io" + } } diff --git a/domains/adais.json b/domains/adais.json index be4a05f10..2e1833fff 100644 --- a/domains/adais.json +++ b/domains/adais.json @@ -5,7 +5,7 @@ "username": "leixiaoda", "email": "leixiaoda@gmail.com" }, - "record": { + "records": { "CNAME": "leixiaoda.github.io" } } diff --git a/domains/adam.json b/domains/adam.json index 3aadd5915..f1ba15a34 100644 --- a/domains/adam.json +++ b/domains/adam.json @@ -1,10 +1,10 @@ { + "description": "Portfolio", "owner": { "username": "adamrexo", - "discord": "898638440592191509", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UQXA3K1mX8Pq_S_dcKeoB7MzL_ON5vOvOGOA_0xPft015rDYunl47BEB_lxW0viGYUMvnecBkv6vBnxUrCtoh9F1f2QNnSfJMpDLRnEoiJt4gwt3wSuW8zlw7Y4gkr0oGoqPqXoVZkZOXtn1-SAB5h_rHksFxolsoxNUGbqfcqTcsHScsjVDhlfRSK7eGn-0iWJCjiQc0nL4HPHm-ziu0p2q4bFXzp6XreLITFZIASffgJzFldC2lmxXe3iR1A_T1zHw93f6rUrgdKgWRAN4qhmxHeSUatmI3uMTc0sd2BS0c99IumRnEYVzQDNkSutfw_zo5wDTjp2aabyb7XqusQ.dj4_olpViy2ITJcHo1Fo6g.IXDL4TFulPcVWPZMZ9SR5yoKVD0dS44Rx1-dHODPZw1ZoOUDliQDqUF5csyOdbLGLXiRAl6bsePXCVLIpYoPGwC25zKxI1z7maAu4uHQ6dI.QvaiUlJyNs4nk2-cV_HgDg" + "email": "rexosheesh@gmail.com" }, - "record": { - "A": ["130.162.237.143"] + "records": { + "CNAME": "adamrexo.vercel.app" } } diff --git a/domains/adamkarepin.json b/domains/adamkarepin.json index ad01bd17e..4a37d6034 100644 --- a/domains/adamkarepin.json +++ b/domains/adamkarepin.json @@ -5,7 +5,7 @@ "username": "K7Adam", "twitter": "7AdamK" }, - "record": { + "records": { "CNAME": "8b23b621a9d04b0718dd.b-cdn.net" } } diff --git a/domains/adamperkowski.json b/domains/adamperkowski.json new file mode 100644 index 000000000..8dda3d1f5 --- /dev/null +++ b/domains/adamperkowski.json @@ -0,0 +1,11 @@ +{ + "description": "Adam Perkowski's personal website", + "repo": "https://github.com/adamperkowski/website", + "owner": { + "username": "adamperkowski", + "email": "adas1per@protonmail.com" + }, + "records": { + "CNAME": "adamperkowski.dev" + } +} diff --git a/domains/adamski.json b/domains/adamski.json index 68c836593..d945b4038 100644 --- a/domains/adamski.json +++ b/domains/adamski.json @@ -3,7 +3,7 @@ "username": "edtimer", "email": "b4timer@protonamil.com" }, - "record": { + "records": { "CNAME": "adamski.pages.dev" } } diff --git a/domains/adarsh.json b/domains/adarsh.json index 2a5ecfbe1..0cb016ddf 100644 --- a/domains/adarsh.json +++ b/domains/adarsh.json @@ -3,7 +3,7 @@ "username": "clumzyofficial", "email": "adarshshukla0344@gmail.com" }, - "record": { + "records": { "CNAME": "clumzyofficial.github.io" } } diff --git a/domains/adarshblog.json b/domains/adarshblog.json index ca079d348..06f2f1f1c 100644 --- a/domains/adarshblog.json +++ b/domains/adarshblog.json @@ -3,7 +3,7 @@ "username": "itsmeadarsh2008", "email": "gourabmahalikadarsh@gmail.com" }, - "record": { + "records": { "URL": "https://broughtbyalgorithm.blogspot.com" } } diff --git a/domains/adarshkumar.json b/domains/adarshkumar.json new file mode 100644 index 000000000..a5ad818d1 --- /dev/null +++ b/domains/adarshkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adarsh R. Kumar", + "email": "adarshravikumar2@gmail.com" + }, + "records": { + "CNAME": "adarshrkumar.github.io" + } +} diff --git a/domains/adarshs.json b/domains/adarshs.json index a235a68d2..66fda5b46 100644 --- a/domains/adarshs.json +++ b/domains/adarshs.json @@ -1,11 +1,10 @@ { "description": "The portfolio of Adarsh S", - "repo": "https://github.com/adarshsuresh07", "owner": { "username": "adarshsuresh07", "email": "adarshsuresh@cet.ac.in" }, - "record": { + "records": { "CNAME": "adarshsuresh07.github.io" } } diff --git a/domains/adarshvijay.json b/domains/adarshvijay.json index ca764aa88..70e3f20a3 100644 --- a/domains/adarshvijay.json +++ b/domains/adarshvijay.json @@ -5,7 +5,7 @@ "username": "adarsh-av13", "email": "dra4474@gmail.com" }, - "record": { + "records": { "CNAME": "adarsh-av13.github.io" } } diff --git a/domains/adeebkhan.json b/domains/adeebkhan.json index d2abea43e..d1d4b7654 100644 --- a/domains/adeebkhan.json +++ b/domains/adeebkhan.json @@ -5,7 +5,7 @@ "username": "akpathan2799", "email": "akpathan2799@gmail.com" }, - "record": { + "records": { "CNAME": "akpathan2799.github.io" } } diff --git a/domains/adel-dafi.json b/domains/adel-dafi.json new file mode 100644 index 000000000..4e89c0bf6 --- /dev/null +++ b/domains/adel-dafi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ad019El", + "email": "a.dafi@esi-sba.dz" + }, + "records": { + "CNAME": "adel-dafi.pages.dev" + } +} diff --git a/domains/adharsh.json b/domains/adharsh.json new file mode 100644 index 000000000..40f365e4a --- /dev/null +++ b/domains/adharsh.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/adharsh-A/portfolio2024", + "owner": { + "username": "adharsh-a", + "email": "adharshcodes@gmail.com" + }, + "records": { + "URL": "https://adharsh-portfolio.netlify.app/" + } +} diff --git a/domains/adhi.json b/domains/adhi.json index a32db6a53..a70ad920f 100644 --- a/domains/adhi.json +++ b/domains/adhi.json @@ -5,7 +5,7 @@ "username": "Adhi", "email": "akrishna.cse21@gmail.com" }, - "record": { + "records": { "CNAME": "adhithyakrishna.github.io" } } diff --git a/domains/adhitht.json b/domains/adhitht.json index 14f5ceeff..cc1a42142 100644 --- a/domains/adhitht.json +++ b/domains/adhitht.json @@ -3,7 +3,7 @@ "username": "adhitht", "email": "adhith.tharammal@gmail.com" }, - "record": { + "records": { "URL": "https://adhitht.me" } } diff --git a/domains/adi.json b/domains/adi.json index 5b629d332..be551d6dc 100644 --- a/domains/adi.json +++ b/domains/adi.json @@ -5,7 +5,7 @@ "username": "stryfe200fps", "email": "fsdainsleif@gmail.com" }, - "record": { + "records": { "CNAME": "stryfe200fps.github.io" } } diff --git a/domains/adib.json b/domains/adib.json index ff5c21a4d..e8b79fe73 100644 --- a/domains/adib.json +++ b/domains/adib.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Adib23704", - "email": "adib23704@gmail.com" - }, - "record": { - "URL": "https://adib23704.com" - } + "owner": { + "username": "Adib23704", + "email": "adib23704@gmail.com" + }, + "records": { + "URL": "https://adib23704.com" + } } diff --git a/domains/adigen.json b/domains/adigen.json index cb5dafb48..d7aba264f 100644 --- a/domains/adigen.json +++ b/domains/adigen.json @@ -3,7 +3,7 @@ "username": "mradigen", "email": "mr.adigen@protonmail.com" }, - "record": { + "records": { "CNAME": "mradigen.github.io" } } diff --git a/domains/adiii3692.json b/domains/adiii3692.json new file mode 100644 index 000000000..8511cd425 --- /dev/null +++ b/domains/adiii3692.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adiii3692", + "email": "adinair0206@gmail.com" + }, + "records": { + "CNAME": "portfolio-rho-sand-13.vercel.app" + } +} diff --git a/domains/adil.json b/domains/adil.json new file mode 100644 index 000000000..68b70d87e --- /dev/null +++ b/domains/adil.json @@ -0,0 +1,11 @@ +{ + "description": "Adil Mohammed's Dev Portfolio", + "repo": "https://github.com/adil-uddin/adil-uddin.github.io", + "owner": { + "username": "adil-uddin", + "email": "adilaryan786@gmail.com" + }, + "records": { + "CNAME": "adil-uddin.github.io" + } +} diff --git a/domains/adit.json b/domains/adit.json index e3a663c15..691f7fb3d 100644 --- a/domains/adit.json +++ b/domains/adit.json @@ -3,7 +3,7 @@ "username": "aditya-lika-ardiansyah", "email": "Adytialikaardiansyah@gmail.com" }, - "record": { + "records": { "CNAME": "aditya-lika-ardiansyah.github.io" } } diff --git a/domains/adithya.json b/domains/adithya.json index 928901c94..1cf8fb724 100644 --- a/domains/adithya.json +++ b/domains/adithya.json @@ -3,7 +3,7 @@ "username": "adithyakb10", "email": "adithyakb93@gmail.com" }, - "record": { + "records": { "URL": "https://adithyakb.carrd.co/" } } diff --git a/domains/adithyan.json b/domains/adithyan.json new file mode 100644 index 000000000..2149b785d --- /dev/null +++ b/domains/adithyan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "A-d-i-t-h-y-a-n", + "email": "hermit0bot@gmail.com" + }, + "records": { + "CNAME": "whoami-tn1.pages.dev" + }, + "proxied": true +} diff --git a/domains/adithyapaib.json b/domains/adithyapaib.json new file mode 100644 index 000000000..bb4647be5 --- /dev/null +++ b/domains/adithyapaib.json @@ -0,0 +1,12 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/adithyapaib/adithyapaib.github.io", + "owner": { + "username": "adithyapaib", + "email": "paiadithya26@gmail.com", + "twitter": "adithyapaib" + }, + "records": { + "CNAME": "adithyapaib.github.io" + } +} diff --git a/domains/aditya.json b/domains/aditya.json index 60cf9857a..d6f7cbe6e 100644 --- a/domains/aditya.json +++ b/domains/aditya.json @@ -1,13 +1,10 @@ { - "description": "my personal homepage", - "repo": "https://github.com/dedomil", + "description": "Aditya portfolio", "owner": { - "username": "dedomil", - "email": "ishqaddy@gmail.com", - "twitter": "aadixl", - "discord": "dedomil" + "username": "raghav-45", + "email": "raghavbhai4545@gmail.com" }, - "record": { - "CNAME": "dedomil.github.io" + "records": { + "A": ["76.76.21.21"] } } diff --git a/domains/adityabh.json b/domains/adityabh.json index 19a91c588..4c7a5cf17 100644 --- a/domains/adityabh.json +++ b/domains/adityabh.json @@ -3,7 +3,7 @@ "username": "AdityaBhattacharya1", "email": "ec6isyf0@anonaddy.me" }, - "record": { + "records": { "CNAME": "adityabhattacharya1.github.io" } } diff --git a/domains/adityajyoti.json b/domains/adityajyoti.json index 5ada85f5e..214161365 100644 --- a/domains/adityajyoti.json +++ b/domains/adityajyoti.json @@ -3,7 +3,7 @@ "username": "Aditya-Jyoti", "email": "aj.adityajyoti@gmail.com" }, - "record": { + "records": { "URL": "https://aditya-jyoti.github.io" } } diff --git a/domains/adityavag.json b/domains/adityavag.json index 502e07869..fc039567f 100644 --- a/domains/adityavag.json +++ b/domains/adityavag.json @@ -5,7 +5,7 @@ "username": "adityavag", "email": "adi247u@gmail.com" }, - "record": { + "records": { "CNAME": "adityavag.github.io" } } diff --git a/domains/adityavijay.json b/domains/adityavijay.json index 0b267c1e3..5932152e8 100644 --- a/domains/adityavijay.json +++ b/domains/adityavijay.json @@ -3,7 +3,7 @@ "username": "adityavijay21", "email": "adityavijay2103@gmail.com" }, - "record": { + "records": { "CNAME": "resume-qt2q.onrender.com" } } diff --git a/domains/admir.json b/domains/admir.json index fb6ab3bd0..4de59ff46 100644 --- a/domains/admir.json +++ b/domains/admir.json @@ -5,7 +5,7 @@ "username": "justadmir", "email": "admirtahiraj242@gmail.com" }, - "record": { + "records": { "CNAME": "justadmir.github.io" } } diff --git a/domains/adnan.json b/domains/adnan.json index dd626bac9..c695ab138 100644 --- a/domains/adnan.json +++ b/domains/adnan.json @@ -3,7 +3,7 @@ "username": "Adnan0131", "email": "sonuadnan6@gmail.com" }, - "record": { - "CNAME": "adnan0131.github.io" + "records": { + "CNAME": "adnan-ahamed-portfolio.vercel.app" } } diff --git a/domains/adolar0042.json b/domains/adolar0042.json index f8354e325..4c1898aa2 100644 --- a/domains/adolar0042.json +++ b/domains/adolar0042.json @@ -5,7 +5,7 @@ "username": "Adolar0042", "email": "adolar0042@gmail.com" }, - "record": { + "records": { "CNAME": "adolar0042.github.io" } } diff --git a/domains/adonisfx.json b/domains/adonisfx.json index 8213ee39a..72eca076b 100644 --- a/domains/adonisfx.json +++ b/domains/adonisfx.json @@ -6,7 +6,7 @@ "email": "ogulcanozturk72@gmail.com", "twitter": "ogulcanztrk1" }, - "record": { + "records": { "CNAME": "adonisfx.github.io" } } diff --git a/domains/adoqet.json b/domains/adoqet.json index 66b43beae..82af864cf 100644 --- a/domains/adoqet.json +++ b/domains/adoqet.json @@ -3,13 +3,8 @@ "username": "AdoQeT", "email": "adoqet@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.111.153", - "185.199.110.153", - "185.199.109.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.111.153", "185.199.110.153", "185.199.109.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/adrenocortico.json b/domains/adrenocortico.json new file mode 100644 index 000000000..c813d6dc6 --- /dev/null +++ b/domains/adrenocortico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adrenocortico", + "email": "francesco.dulio@icloud.com" + }, + "records": { + "CNAME": "adrenocortico.github.io" + } +} diff --git a/domains/adri.json b/domains/adri.json index b6e5c5aea..308a7d70c 100644 --- a/domains/adri.json +++ b/domains/adri.json @@ -3,7 +3,7 @@ "username": "adripo", "email": "adripo@hi2.in" }, - "record": { + "records": { "URL": "https://github.com/adripo" } } diff --git a/domains/adrian.json b/domains/adrian.json index 2d7f15c7b..fb92df02a 100644 --- a/domains/adrian.json +++ b/domains/adrian.json @@ -5,7 +5,7 @@ "username": "usmcamgrimm", "email": "usmcamgrimm@gmail.com" }, - "record": { + "records": { "CNAME": "usmcamgrimm.github.io" } } diff --git a/domains/adriancmiranda.json b/domains/adriancmiranda.json new file mode 100644 index 000000000..360a3fe1a --- /dev/null +++ b/domains/adriancmiranda.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "adriancmiranda", + "email": "ad@is-a.dev" + }, + "records": { + "URL": "https://adrian-miranda.vercel.app" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/adriancmiranda", + "/linkedin": "https://www.linkedin.com/in/adriancmiranda" + }, + "redirect_paths": true + } +} diff --git a/domains/adrianqr.json b/domains/adrianqr.json new file mode 100644 index 000000000..670a5be11 --- /dev/null +++ b/domains/adrianqr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AdrianQR01", + "email": "adrianquenard@gmail.com" + }, + "records": { + "CNAME": "adrianqr01.github.io" + } +} diff --git a/domains/adrien.json b/domains/adrien.json new file mode 100644 index 000000000..13f9e08df --- /dev/null +++ b/domains/adrien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "technetist", + "email": "adrien@maranville.io" + }, + "records": { + "URL": "https://maranville.io" + } +} diff --git a/domains/adriichu.json b/domains/adriichu.json index 3f3fc169b..1fe3d5260 100644 --- a/domains/adriichu.json +++ b/domains/adriichu.json @@ -5,7 +5,7 @@ "twitter": "Adriichuu", "discord": "Aaron#0069" }, - "record": { + "records": { "CNAME": "aaron-web.pages.dev" } } diff --git a/domains/advance-bot.json b/domains/advance-bot.json index 0d0fa56fb..dd54256ab 100644 --- a/domains/advance-bot.json +++ b/domains/advance-bot.json @@ -4,7 +4,7 @@ "email": "gpratham522@gmail.com", "discord": "840244590870003762" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/advik.json b/domains/advik.json index 3c91a02e7..222f603a7 100644 --- a/domains/advik.json +++ b/domains/advik.json @@ -4,7 +4,7 @@ "email": "advik.b@gmail.com", "discord": "765739254164357121" }, - "record": { + "records": { "CNAME": "advik-b.github.io" } } diff --git a/domains/adwait.json b/domains/adwait.json new file mode 100644 index 000000000..aee3b7e92 --- /dev/null +++ b/domains/adwait.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio-Website", + "repo": "https://github.com/Adwait0901/Portfolio", + "owner": { + "username": "Adwait0901", + "email": "adwaitpatil0901@gmail.com" + }, + "records": { + "CNAME": "adwait0901.github.io" + } +} diff --git a/domains/aeon.json b/domains/aeon.json index 284dfcd90..51f7276b2 100644 --- a/domains/aeon.json +++ b/domains/aeon.json @@ -3,7 +3,7 @@ "username": "DaynLalwani", "email": "Daynlalwani23@gmail.com" }, - "record": { + "records": { "CNAME": "daynlalwani.github.io" } } diff --git a/domains/aespada.json b/domains/aespada.json new file mode 100644 index 000000000..6c1f6b044 --- /dev/null +++ b/domains/aespada.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/alexES13/alexES13.github.io", + "owner": { + "username": "alexES13", + "email": "butano_tren.7r@icloud.com" + }, + "records": { + "CNAME": "alexes13.github.io" + } +} diff --git a/domains/aessaputra.json b/domains/aessaputra.json new file mode 100644 index 000000000..7813c24a9 --- /dev/null +++ b/domains/aessaputra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aessaputra", + "twitter": "pioonrey" + }, + "records": { + "CNAME": "github-profile-summary-cards-aes-saputras-projects.vercel.app" + } +} diff --git a/domains/aesyncio.json b/domains/aesyncio.json index 2e3fcf001..a2f6f2203 100644 --- a/domains/aesyncio.json +++ b/domains/aesyncio.json @@ -4,7 +4,7 @@ "email": "ssupercow@proton.me", "discord": "1235901872649539604" }, - "record": { + "records": { "CNAME": "aesyncio.github.io" } } diff --git a/domains/aeyika.json b/domains/aeyika.json index fcc67f8f7..ee63dab78 100644 --- a/domains/aeyika.json +++ b/domains/aeyika.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "aeyika", - "email": "aeyikastech@gmail.com" - }, - "record": { - "CNAME": "portfolio-aeyikas-projects.vercel.app" - } + "owner": { + "username": "aeyika", + "email": "aeyikastech@gmail.com" + }, + "records": { + "CNAME": "portfolio-aeyikas-projects.vercel.app" + } } diff --git a/domains/affan.json b/domains/affan.json new file mode 100644 index 000000000..867e53f09 --- /dev/null +++ b/domains/affan.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "orkkz", + "email": "affanorakzai19@gmail.com" + }, + "records": { + "A": ["75.2.60.5"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": [ + "v=spf1 include:_spf.mx.cloudflare.net include:spf.improvmx.com ~all", + "dh=92c9945830f32cb180df547af9f491ff1a4c75a9", + "google-site-verification=siT0966V4oDzv8eaTUk2ISSZY5Ox6BU2eM28sg2fUFo" + ] + } +} diff --git a/domains/affidev.json b/domains/affidev.json index 07c9a0359..2f85e4e45 100644 --- a/domains/affidev.json +++ b/domains/affidev.json @@ -3,7 +3,7 @@ "username": "eabdalmufid", "email": "eabdalmufid@gmail.com" }, - "record": { + "records": { "CNAME": "eabdalmufid.github.io" } } diff --git a/domains/afidev.json b/domains/afidev.json index 07c9a0359..2f85e4e45 100644 --- a/domains/afidev.json +++ b/domains/afidev.json @@ -3,7 +3,7 @@ "username": "eabdalmufid", "email": "eabdalmufid@gmail.com" }, - "record": { + "records": { "CNAME": "eabdalmufid.github.io" } } diff --git a/domains/afk.json b/domains/afk.json index a34e49d0c..21cfbd436 100644 --- a/domains/afk.json +++ b/domains/afk.json @@ -3,7 +3,7 @@ "username": "RainWill", "email": "2782401449@qq.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/afnan.json b/domains/afnan.json new file mode 100644 index 000000000..2d663bce6 --- /dev/null +++ b/domains/afnan.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio website", + "repo": "https://github.com/Sayed-Afnan-Khazi/sayed-afnan-khazi.github.io", + "owner": { + "username": "Sayed-Afnan-Khazi", + "email": "oofnanfake1@gmail.com" + }, + "records": { + "CNAME": "sayed-afnan-khazi.github.io" + } +} diff --git a/domains/afonsoribeiro.json b/domains/afonsoribeiro.json new file mode 100644 index 000000000..e83cddf66 --- /dev/null +++ b/domains/afonsoribeiro.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "owner": { + "username": "Afons0Ribeiro", + "email": "afonsomsfribeiro@gmail.com" + }, + "records": { + "A": ["94.61.156.248"], + "AAAA": ["2001:818:eb38:800:c13b:6eab:f74c:b965"] + }, + "proxied": false +} diff --git a/domains/afp.json b/domains/afp.json index 18874e3b2..0949cfefb 100644 --- a/domains/afp.json +++ b/domains/afp.json @@ -3,7 +3,7 @@ "username": "AndreasFxPro", "discord": "423906482904629268" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/afrtite.json b/domains/afrtite.json index ca405cf8c..33f16486b 100644 --- a/domains/afrtite.json +++ b/domains/afrtite.json @@ -3,7 +3,7 @@ "username": "5enox", "email": "animikantan@gmail.com" }, - "record": { + "records": { "CNAME": "my-proto.onrender.com" } } diff --git a/domains/aftermath.json b/domains/aftermath.json index ebce80cbf..3804762fe 100644 --- a/domains/aftermath.json +++ b/domains/aftermath.json @@ -6,7 +6,7 @@ "email": "amrmafalani@yahoo.com", "twitter": "iBadDroid" }, - "record": { + "records": { "CNAME": "aftermath9.github.io" } } diff --git a/domains/afton.json b/domains/afton.json index b11a4c175..1b384fdd6 100644 --- a/domains/afton.json +++ b/domains/afton.json @@ -6,7 +6,7 @@ "email": "williamafton.codes@gmail.com", "twitter": "aftoncodes" }, - "record": { + "records": { "URL": "https://aftoncodes.vercel.app" } } diff --git a/domains/ag.json b/domains/ag.json index d543ffcf8..8f4584300 100644 --- a/domains/ag.json +++ b/domains/ag.json @@ -5,7 +5,7 @@ "username": "andreasgrafen", "email": "software@grafen.info" }, - "record": { + "records": { "URL": "https://unseen.ninja" } } diff --git a/domains/aga.json b/domains/aga.json new file mode 100644 index 000000000..4f20ea0c6 --- /dev/null +++ b/domains/aga.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lcnghulam", + "email": "lcnghulam1@gmail.com", + "discord": "blessing455451" + }, + "records": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=p24qfEdTMTlahtU3hQxVU_txDQkifpoJH1xS4jmCmlw" + } +} diff --git a/domains/agam778.json b/domains/agam778.json index 3a41fe69b..ce5582127 100644 --- a/domains/agam778.json +++ b/domains/agam778.json @@ -1,11 +1,10 @@ { "description": "Agam's Website", - "repo": "https://github.com/agam778", "owner": { "username": "agam778", "email": "agam778@zohomail.in" }, - "record": { + "records": { "CNAME": "agamsblog.pages.dev" } } diff --git a/domains/agamjot-singh.json b/domains/agamjot-singh.json index 629719d9a..23a83a8ee 100644 --- a/domains/agamjot-singh.json +++ b/domains/agamjot-singh.json @@ -6,7 +6,7 @@ "email": "agamjotsingh1801@gmail.com", "twitter": "_agamjotsingh" }, - "record": { + "records": { "CNAME": "agamjotsingh18.github.io" } } diff --git a/domains/agelos.json b/domains/agelos.json new file mode 100644 index 000000000..2d6872400 --- /dev/null +++ b/domains/agelos.json @@ -0,0 +1,11 @@ +{ + "description": "agelospanagiotakis profile", + "repo": "https://github.com/agelospanagiotakis/agelospanagiotakis.github.io", + "owner": { + "username": "agelospanagiotakis", + "email": "agelospanagiotakis@gmail.com" + }, + "records": { + "CNAME": "agelospanagiotakis.github.io" + } +} diff --git a/domains/agent.json b/domains/agent.json new file mode 100644 index 000000000..06aa210f5 --- /dev/null +++ b/domains/agent.json @@ -0,0 +1,13 @@ +{ + "description": "Agent's Developer Portfolio", + "repo": "https://github.com/relentiousdragon/isadev-site/tree/main", + "owner": { + "username": "relentiousdragon", + "email": "relentoor@gmail.com", + "discord": "agentzzrp" + }, + "records": { + "CNAME": "isadev-site.pages.dev" + }, + "proxied": true +} diff --git a/domains/agilani.json b/domains/agilani.json new file mode 100644 index 000000000..6c9945cf9 --- /dev/null +++ b/domains/agilani.json @@ -0,0 +1,10 @@ +{ + "description": "agilani.is-a.dev", + "owner": { + "username": "agilani", + "email": "me@agilani.me" + }, + "records": { + "CNAME": "www.agilani.me" + } +} diff --git a/domains/agn.json b/domains/agn.json index abb5350e6..6e620b8a7 100644 --- a/domains/agn.json +++ b/domains/agn.json @@ -4,7 +4,7 @@ "email": "agnesmoret@proton.me", "discord": "694917200720429066" }, - "record": { + "records": { "CNAME": "agnesmonret.github.io" } } diff --git a/domains/agold.json b/domains/agold.json index b70dfd3e7..2755fffbd 100644 --- a/domains/agold.json +++ b/domains/agold.json @@ -4,7 +4,7 @@ "discord": "aGold#9596", "email": "abloggoldwin@gmail.com" }, - "record": { + "records": { "CNAME": "agolddev.github.io" } } diff --git a/domains/agrim.json b/domains/agrim.json index a0ffc37f0..06cc50545 100644 --- a/domains/agrim.json +++ b/domains/agrim.json @@ -4,7 +4,7 @@ "username": "Agrim-Bansal", "email": "agrimx2@gmail.com" }, - "record": { + "records": { "CNAME": "agrim-bansal.github.io" } } diff --git a/domains/agung.json b/domains/agung.json new file mode 100644 index 000000000..3dc592e4f --- /dev/null +++ b/domains/agung.json @@ -0,0 +1,11 @@ +{ + "description": "Profile Page", + "repo": "https://github.com/aw09/aw09.github.io", + "owner": { + "username": "aw09", + "email": "agungwck.99@gmail.com" + }, + "records": { + "CNAME": "aw09.github.io" + } +} diff --git a/domains/agungfir.json b/domains/agungfir.json new file mode 100644 index 000000000..7031ec9c6 --- /dev/null +++ b/domains/agungfir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "agungfir10", + "email": "agungfirid@gmail.com" + }, + "records": { + "CNAME": "agungfir.vercel.app" + } +} diff --git a/domains/aguspedhot.json b/domains/aguspedhot.json index 95ef4fc86..248121039 100644 --- a/domains/aguspedhot.json +++ b/domains/aguspedhot.json @@ -3,7 +3,7 @@ "username": "Pedhot-Dev", "email": "wanzgamerz2@gmail.com" }, - "record": { + "records": { "CNAME": "aguspedhot.000webhostapp.com" } } diff --git a/domains/ah2.json b/domains/ah2.json index 9e8fb54fc..06be2ad20 100644 --- a/domains/ah2.json +++ b/domains/ah2.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ah2", - "email": "uni.ahmamy@gmail.com" - }, - "record": { - "URL": "https://hamd.cloud.libraryofcode.org" - } + "owner": { + "username": "ah2", + "email": "uni.ahmamy@gmail.com" + }, + "records": { + "URL": "https://hamd.cloud.libraryofcode.org" + } } diff --git a/domains/ahammednibras.json b/domains/ahammednibras.json index 5b4ca3270..b6f475a25 100644 --- a/domains/ahammednibras.json +++ b/domains/ahammednibras.json @@ -6,7 +6,7 @@ "email": "ahammednibras@hey.com", "twitter": "ahammednibras8" }, - "record": { + "records": { "CNAME": "ahammednibras8.github.io" } } diff --git a/domains/ahios.json b/domains/ahios.json new file mode 100644 index 000000000..389af7797 --- /dev/null +++ b/domains/ahios.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "records": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=vIUwZhHqcAiiHZW2nNaE21Lb0H1_FIEBHyYs6f3b0KA", + "MX": ["SMTP.GOOGLE.COM"] + } +} diff --git a/domains/ahku.json b/domains/ahku.json index 5c10f18ad..3f92c3206 100644 --- a/domains/ahku.json +++ b/domains/ahku.json @@ -3,7 +3,7 @@ "username": "pebna7d9", "email": "pebna7d9@gmail.com" }, - "record": { + "records": { "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 index 74d39cdac..b05221f9f 100644 --- a/domains/ahmad-muhajir.json +++ b/domains/ahmad-muhajir.json @@ -5,7 +5,7 @@ "username": "amuhajirs", "email": "jeremyjeferson71@gmail.com" }, - "record": { + "records": { "CNAME": "amuhajirs.github.io" } } diff --git a/domains/ahmad.json b/domains/ahmad.json new file mode 100644 index 000000000..d7e70a7f9 --- /dev/null +++ b/domains/ahmad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "azrelic", + "email": "ahmadking78654@gmail.com" + }, + "records": { + "CNAME": "ahmadazizportfolio.vercel.app" + } +} diff --git a/domains/ahmadeyamin.json b/domains/ahmadeyamin.json index b24d22523..fea76091a 100644 --- a/domains/ahmadeyamin.json +++ b/domains/ahmadeyamin.json @@ -5,7 +5,7 @@ "username": "ahmadeyamin", "email": "ahmadeyamin@gmail.com" }, - "record": { + "records": { "CNAME": "ahmadeyamin.pages.dev" } } diff --git a/domains/ahmed.json b/domains/ahmed.json new file mode 100644 index 000000000..e35b7f42d --- /dev/null +++ b/domains/ahmed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ahmedashraf.json b/domains/ahmedashraf.json index 382661f1f..379d1b7fb 100644 --- a/domains/ahmedashraf.json +++ b/domains/ahmedashraf.json @@ -5,7 +5,7 @@ "username": "ahmedrashraf", "email": "ahmedr.0331@gmail.com" }, - "record": { + "records": { "CNAME": "ahmedrashraf.github.io" } } diff --git a/domains/ahmedosama.json b/domains/ahmedosama.json new file mode 100644 index 000000000..e35b7f42d --- /dev/null +++ b/domains/ahmedosama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ahmedosamamath.json b/domains/ahmedosamamath.json new file mode 100644 index 000000000..e35b7f42d --- /dev/null +++ b/domains/ahmedosamamath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ahmedtohamy.json b/domains/ahmedtohamy.json index 44fc48511..ecda0bf92 100644 --- a/domains/ahmedtohamy.json +++ b/domains/ahmedtohamy.json @@ -3,7 +3,7 @@ "username": "ahmedtohamy1", "email": "1ahmed.tohamy@gmail.com" }, - "record": { + "records": { "CNAME": "ahmedtohamy1.github.io" } } diff --git a/domains/ahmosys.json b/domains/ahmosys.json index 6bdaaba2f..923bf4a1e 100644 --- a/domains/ahmosys.json +++ b/domains/ahmosys.json @@ -6,7 +6,7 @@ "email": "ahmosyspro@protonmail.com", "twitter": "ahmosys" }, - "record": { + "records": { "CNAME": "ahmosys.github.io" } } diff --git a/domains/ahnaf.json b/domains/ahnaf.json new file mode 100644 index 000000000..7aa4519ba --- /dev/null +++ b/domains/ahnaf.json @@ -0,0 +1,10 @@ +{ + "description": "For my personal portfolio website", + "owner": { + "username": "AhnafFarhanHossain", + "email": "ahnaffarhanhossain@gmail.com" + }, + "records": { + "A": ["103.62.149.9"] + } +} diff --git a/domains/ahsanu.json b/domains/ahsanu.json index a7d507a27..c73c9c1f5 100644 --- a/domains/ahsanu.json +++ b/domains/ahsanu.json @@ -3,7 +3,7 @@ "username": "ahsanu123", "email": "caasperahsanuamala5@gmail.com" }, - "record": { + "records": { "CNAME": "ahsanu123.github.io" } } diff --git a/domains/ahsw.json b/domains/ahsw.json index 5a9ab36d7..8c3335dab 100644 --- a/domains/ahsw.json +++ b/domains/ahsw.json @@ -1,11 +1,10 @@ { "description": "Ahsw Personal Website", - "repo": "https://github.com/Ahsw7", "owner": { "username": "Ahsw", "email": "jasjusjambu.segar@gmail.com" }, - "record": { + "records": { "CNAME": "rd73mzgq78p59yq0.preview.edgeapp.net" } } diff --git a/domains/ahuja-m.json b/domains/ahuja-m.json index c89d72ea7..597f0b217 100644 --- a/domains/ahuja-m.json +++ b/domains/ahuja-m.json @@ -4,7 +4,7 @@ "owner": { "username": "ahuja-m" }, - "record": { + "records": { "CNAME": "ahuja-m.github.io" } } diff --git a/domains/ahyalfan.json b/domains/ahyalfan.json new file mode 100644 index 000000000..8dd0e8988 --- /dev/null +++ b/domains/ahyalfan.json @@ -0,0 +1,10 @@ +{ + "description": "this is for my personal website made.", + "owner": { + "username": "ahyalfan", + "email": "alfandi0857@gmail.com" + }, + "records": { + "URL": "https://ahyalfan.my.id" + } +} diff --git a/domains/ahysa.andgyk.json b/domains/ahysa.andgyk.json index 72a0fe1e2..dac02600e 100644 --- a/domains/ahysa.andgyk.json +++ b/domains/ahysa.andgyk.json @@ -5,7 +5,7 @@ "username": "andgyk", "email": "an4g7k@gmail.com" }, - "record": { + "records": { "CNAME": "ahysa.github.io" } } diff --git a/domains/ai-demo.json b/domains/ai-demo.json index abda22637..99beb423b 100644 --- a/domains/ai-demo.json +++ b/domains/ai-demo.json @@ -4,7 +4,7 @@ "email": "andrew@maintainers.is-a.dev", "discord": "598245488977903688" }, - "record": { + "records": { "CNAME": "andrewstech.github.io" } } diff --git a/domains/ai.json b/domains/ai.json index 1f6312968..eb2d55892 100644 --- a/domains/ai.json +++ b/domains/ai.json @@ -3,7 +3,7 @@ "username": "Bananalolok", "discord": "banana_lol_7678" }, - "record": { + "records": { "NS": ["audrey.ns.cloudflare.com", "hank.ns.cloudflare.com"] } } diff --git a/domains/aichat.json b/domains/aichat.json index ef8dc3532..5018d9521 100644 --- a/domains/aichat.json +++ b/domains/aichat.json @@ -3,7 +3,7 @@ "username": "TechnoFusionTech", "email": "technofusiontech@techie.com" }, - "record": { + "records": { "CNAME": "technofusiontech.is-a.dev" } } diff --git a/domains/aida.json b/domains/aida.json index cc459d361..c24b36c8e 100644 --- a/domains/aida.json +++ b/domains/aida.json @@ -1,10 +1,9 @@ { "owner": { "username": "thorerik", - "discord": "107056552212447232", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.F6zhssd8zE-flkk300JMr63UJLCkeuPHAwqIH5cGnonDP518oKiR1OZYawVLnzKrIHNrGcZBPX09cCxiLg9sebHfP0TLthuGpM3PWEw6F0Zmbo3kvIHYWlmtnCJLhM5a4bxxwGJYS_Lb77-SzZkZrRsc__slqrpzZspu4R0SFjC6XSvfutYJLac00Wfp0yW4PZhgja9v-2W0DVW7a5fGUAKJT-E-JXfIORrmjHOCysJdxGfn468h6TDKxYDJbwjFffjNuY3jVHNK1s9Nouf7bya9bTvgtdQCoiaPO0OdlX4PIbeHKD01oLAOlKQjcPkUC2L9YLqN0rrwpHop3vHwBA.-rIc3UZYeyaMd64cOpSYbw.UridMk-3yNDqMa0VdqmjUKjS8rSmY2blxZDEv7DoMB6dd_Eb6yLFq1MYWujwTO93W6EatgvotWXAM9ZUPhYchWY1uPMQ99S_1P_Q4c6qR7Ch7yTSvKnU_qYsT4QiC-gO.BYZgAlo82oK0UJsCavGwSg" + "discord": "107056552212447232" }, - "record": { + "records": { "CNAME": "beorn-blog.pages.dev" } } diff --git a/domains/aidan.json b/domains/aidan.json index 4c83a2f42..1e1d6e9d7 100644 --- a/domains/aidan.json +++ b/domains/aidan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sangnd2x", - "email": "sanguyen128@gmail.com" - }, - "record": { - "A": ["103.211.201.28"] - } + "owner": { + "username": "sangnd2x", + "email": "sanguyen128@gmail.com" + }, + "records": { + "A": ["103.211.201.28"] + } } diff --git a/domains/aiden.json b/domains/aiden.json index cbb9b220a..dedda22f8 100644 --- a/domains/aiden.json +++ b/domains/aiden.json @@ -5,7 +5,7 @@ "username": "ignSKRRRTT", "email": "me@aiden.gg" }, - "record": { + "records": { "URL": "https://aiden.gg" } } diff --git a/domains/aidhani.json b/domains/aidhani.json index 421dac4f6..8ddb32207 100644 --- a/domains/aidhani.json +++ b/domains/aidhani.json @@ -3,7 +3,7 @@ "username": "AidhaniDev", "email": "aidhanidev@gmail.com" }, - "record": { + "records": { "URL": "https://sites.google.com/view/aidhanidev/home" } } diff --git a/domains/aidzlt.json b/domains/aidzlt.json new file mode 100644 index 000000000..e60dfd18f --- /dev/null +++ b/domains/aidzlt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aidzlt", + "email": "aidzlt0001@gmail.com" + }, + "records": { + "CNAME": "aidzlt.github.io" + } +} diff --git a/domains/aiko.json b/domains/aiko.json index a89817a76..704d93a1a 100644 --- a/domains/aiko.json +++ b/domains/aiko.json @@ -3,7 +3,7 @@ "username": "AikoNee", "email": "shenzie1131@gmail.com" }, - "record": { + "records": { "CNAME": "aiko.pages.dev" } } diff --git a/domains/ain3abdo.json b/domains/ain3abdo.json index 246306030..3c683e836 100644 --- a/domains/ain3abdo.json +++ b/domains/ain3abdo.json @@ -3,7 +3,7 @@ "username": "ainabdelkarim", "email": "abdelkarimain0@gmail.com" }, - "record": { + "records": { "CNAME": "ainabdelkarim.github.io" } } diff --git a/domains/air.json b/domains/air.json index dc7a76be0..ea8a916ea 100644 --- a/domains/air.json +++ b/domains/air.json @@ -4,7 +4,7 @@ "email": "iididhejejdj@gmail.com", "discord": "850820069310201896" }, - "record": { + "records": { "CNAME": "air-busl.onrender.com" } } diff --git a/domains/aish.json b/domains/aish.json index 4f1926b86..45bee33be 100644 --- a/domains/aish.json +++ b/domains/aish.json @@ -3,7 +3,7 @@ "username": "code-hunt-in", "email": "aishwary.pandore@somaiya.edu" }, - "record": { + "records": { "CNAME": "code-hunt-in.github.io" } } diff --git a/domains/aishik999.json b/domains/aishik999.json new file mode 100644 index 000000000..a7cbff626 --- /dev/null +++ b/domains/aishik999.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aishik999", + "email": "aishikm2002@gmail.com" + }, + "records": { + "CNAME": "aishik999.vercel.app" + } +} diff --git a/domains/aitji.json b/domains/aitji.json new file mode 100644 index 000000000..eec44ecd6 --- /dev/null +++ b/domains/aitji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aitji", + "email": "ait.suriya@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/aixiaoji.json b/domains/aixiaoji.json index dbeecaec5..ef8320d40 100644 --- a/domains/aixiaoji.json +++ b/domains/aixiaoji.json @@ -3,7 +3,7 @@ "username": "HelloAIXIAOJI", "email": "aixiaoji2020@163.com" }, - "record": { + "records": { "CNAME": "ip.hk.dhost.devskyr.com" } } diff --git a/domains/aizuu.json b/domains/aizuu.json index 928524511..7b6874243 100644 --- a/domains/aizuu.json +++ b/domains/aizuu.json @@ -1,11 +1,10 @@ { "description": "Aizuu's Personal Website", - "repo": "https://github.com/VeguiIzumi", "owner": { "username": "Aizuu", "email": "baby@alvindaldi.my.id" }, - "record": { + "records": { "URL": "https://aizuu.my.id" } } diff --git a/domains/aj.json b/domains/aj.json index 486c3c722..0cda870e0 100644 --- a/domains/aj.json +++ b/domains/aj.json @@ -3,10 +3,8 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"], - "TXT": [ - "google-site-verification=CT0XYnjNC4mKSCOf5Bg0MhiAI1iA5fE2j0cQRJ6PNNo" - ] + "TXT": ["google-site-verification=CT0XYnjNC4mKSCOf5Bg0MhiAI1iA5fE2j0cQRJ6PNNo"] } } diff --git a/domains/aj7.json b/domains/aj7.json index caa135dfc..ee65ade1b 100644 --- a/domains/aj7.json +++ b/domains/aj7.json @@ -1,10 +1,9 @@ { "owner": { "username": "Aj-Seven", - "discord": "1001724019764105307", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PrSBRDaJlKvzZqQ36RQuk7LNoUgHNzidvrUf1soAaR-omfIi3O45AhrScQhU9kLyAzrXUVomzObZ1t9PEmdkIEkRB2ixGfUGNw2QXoLGE_YD7bXSuiQ37FI3wlpQnSbhwEEInlrN1m4k7B4q-NieWDVy6TUUvjwJRHB3PoX_v2sBeyHAq8z0JPgKxtqZa87tRl5HOV-l8-3oUdVWBALzy29V67leds49-JiZUhSlBtI8i9ffL9vsSVJd_ZDBtCivc69jraLmeqcUaeRs6gBCf6PCEKedFL0DFESQJs20Q3NycNBM-lDbTnRAELwIH_qTR-Kp-1mlGRZRi86negfShg.LsD0K6KH_2ix58TY5XVo7A.XVuT8kmSk4-Et5is2YvbWkV2j1BmeJmP_hsXPIro3M1eYZpxSGdD6UEeTkPVA1Y5_jap3XmImFi5cytqLn0v5eWiZqFDdB4_bbsL1eDqzJc.28Rc2WPMDexZtJVxuECDqw" + "discord": "1001724019764105307" }, - "record": { + "records": { "CNAME": "ajseven.eu.org" } } diff --git a/domains/ajay-charotariya.json b/domains/ajay-charotariya.json index 790b15b2e..28154d314 100644 --- a/domains/ajay-charotariya.json +++ b/domains/ajay-charotariya.json @@ -4,7 +4,7 @@ "owner": { "username": "ajay-charotariya" }, - "record": { + "records": { "CNAME": "ajay-charotariya.github.io" } } diff --git a/domains/ajay.json b/domains/ajay.json index 32b4b1176..d3a0d1915 100644 --- a/domains/ajay.json +++ b/domains/ajay.json @@ -3,7 +3,7 @@ "username": "Aj-Cdr", "email": "ajaysathishpreetha2.0@gmail.com" }, - "record": { + "records": { "URL": "https://ajay.framer.ai/" } } diff --git a/domains/ajayanto.json b/domains/ajayanto.json index c64961cbc..df0ab1902 100644 --- a/domains/ajayanto.json +++ b/domains/ajayanto.json @@ -3,7 +3,7 @@ "username": "AjayAntoIsDev", "email": "ajayantoisdev@gmail.com" }, - "record": { + "records": { "CNAME": "ajayanto.pages.dev" } } diff --git a/domains/ajayj.json b/domains/ajayj.json new file mode 100644 index 000000000..ccd725ba0 --- /dev/null +++ b/domains/ajayj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AJAY260505", + "email": "ajay260505@gmail.com" + }, + "records": { + "CNAME": "ajayjaisankar.netlify.app" + } +} diff --git a/domains/ajaykrshna.json b/domains/ajaykrshna.json index aa08adbd6..2fbb806d1 100644 --- a/domains/ajaykrshna.json +++ b/domains/ajaykrshna.json @@ -5,7 +5,7 @@ "username": "ajaykrshna", "email": "ajaykfan@gmail.com" }, - "record": { + "records": { "CNAME": "ajaykrshna.github.io" } } diff --git a/domains/ajays.json b/domains/ajays.json index fc9561518..04d4e2426 100644 --- a/domains/ajays.json +++ b/domains/ajays.json @@ -5,7 +5,7 @@ "username": "Dev-Ajay-sahani", "email": "ajays.dev.contact@gmail.com" }, - "record": { + "records": { "CNAME": "dev-ajay-sahani.github.io" } } diff --git a/domains/ajaysathvik.json b/domains/ajaysathvik.json new file mode 100644 index 000000000..650224ae5 --- /dev/null +++ b/domains/ajaysathvik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ajaysathvik", + "email": "ajaysathviksu@gmail.com" + }, + "records": { + "CNAME": "ajaysathvik.vercel.app" + } +} diff --git a/domains/ajie.json b/domains/ajie.json index f0b5e92c5..213439d84 100644 --- a/domains/ajie.json +++ b/domains/ajie.json @@ -3,7 +3,7 @@ "username": "AjieDev", "email": "ajiedev@ajieblogs.eu.org" }, - "record": { + "records": { "CNAME": "ajiedev.pages.dev" } } diff --git a/domains/ajit-thakor.json b/domains/ajit-thakor.json index 366303fd1..f14b829e5 100644 --- a/domains/ajit-thakor.json +++ b/domains/ajit-thakor.json @@ -4,7 +4,7 @@ "owner": { "username": "ajit-thakor" }, - "record": { + "records": { "CNAME": "ajit-thakor.github.io" } } diff --git a/domains/ajt-lkmn.json b/domains/ajt-lkmn.json index 8ca65f40c..d19edac5c 100644 --- a/domains/ajt-lkmn.json +++ b/domains/ajt-lkmn.json @@ -5,7 +5,7 @@ "username": "ajanthaa-lakkshmanan", "email": "ajanthal@srmist.edu.in" }, - "record": { + "records": { "CNAME": "ajanthaa-lakkshmanan.github.io" } } diff --git a/domains/ajtabs.json b/domains/ajtabs.json index d022ee1f0..d8fcd0b5a 100644 --- a/domains/ajtabs.json +++ b/domains/ajtabs.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ajtabjs", - "email": "oro10jua@gmail.com" - }, - "record": { - "CNAME": "aj-swag-portfolio.pages.dev" - } -} + "owner": { + "username": "ajtabjs", + "email": "oro10jua@gmail.com" + }, + "records": { + "CNAME": "aj-swag-portfolio.pages.dev" + } +} diff --git a/domains/ak-dev.json b/domains/ak-dev.json index a25661d66..6d2b2609d 100644 --- a/domains/ak-dev.json +++ b/domains/ak-dev.json @@ -3,7 +3,7 @@ "username": "LRxDarkDevil", "email": "tahaadnanawan@gmail.com" }, - "record": { + "records": { "CNAME": "ak-dev.github.io" } } diff --git a/domains/ak-profile.json b/domains/ak-profile.json new file mode 100644 index 000000000..5dfa46392 --- /dev/null +++ b/domains/ak-profile.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Akash0816", + "email": "akashoffical321@gmail.com" + }, + "records": { + "CNAME": "akash0816.github.io" + } +} diff --git a/domains/ak.json b/domains/ak.json index c7a428523..3c24f8655 100644 --- a/domains/ak.json +++ b/domains/ak.json @@ -1,12 +1,11 @@ { "description": "AK's Dev Website", - "repo": "https://github.com/AKGaming0001", "owner": { "username": "AKGaming0001", "twitter": "NotAKGaming", "discord": "AKGaming#7664" }, - "record": { + "records": { "CNAME": "akgaming0001.github.io" } } diff --git a/domains/ak47.json b/domains/ak47.json index 53c17e34b..41b82924f 100644 --- a/domains/ak47.json +++ b/domains/ak47.json @@ -5,7 +5,7 @@ "username": "octyn-yt", "email": "simplelogin-newsletter.idealize471@simplelogin.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/akai.json b/domains/akai.json index 464021e18..6791c56fc 100644 --- a/domains/akai.json +++ b/domains/akai.json @@ -3,7 +3,7 @@ "username": "AmazingAkai", "discord": "Akai#8199" }, - "record": { + "records": { "CNAME": "akai.onrender.com" } } diff --git a/domains/akanksha.json b/domains/akanksha.json new file mode 100644 index 000000000..b488ef49d --- /dev/null +++ b/domains/akanksha.json @@ -0,0 +1,11 @@ +{ + "description": "Akanksha' Welcome to my portfolio", + "repo": "https://github.com/AkankshaMishra2/Akanksha-Folio", + "owner": { + "username": "AkankshaMishra2", + "email": "akankshamishra20042@gmail.com" + }, + "records": { + "CNAME": "akankshamishra.vercel.app" + } +} diff --git a/domains/akash.json b/domains/akash.json index d6c799907..fdca88894 100644 --- a/domains/akash.json +++ b/domains/akash.json @@ -3,7 +3,7 @@ "username": "CruxCoder7", "email": "akashrangesh07@gmail.com" }, - "record": { + "records": { "CNAME": "cruxcoder7.github.io" } } diff --git a/domains/akashj.json b/domains/akashj.json new file mode 100644 index 000000000..03f24fe53 --- /dev/null +++ b/domains/akashj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akash-janapati", + "email": "akash2009janapati@gmail.com" + }, + "records": { + "CNAME": "akash-janapati.github.io" + } +} diff --git a/domains/akashkumar.json b/domains/akashkumar.json new file mode 100644 index 000000000..190c9065d --- /dev/null +++ b/domains/akashkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akash-kumar-dev", + "email": "akashkumar.dev00@gmail.com" + }, + "records": { + "CNAME": "akashkumar-dev.vercel.app" + } +} diff --git a/domains/akashr.json b/domains/akashr.json index 985641834..7e0a5bdd1 100644 --- a/domains/akashr.json +++ b/domains/akashr.json @@ -3,7 +3,7 @@ "username": "akash2600707", "email": "akashramesh2607@gmail.com" }, - "record": { + "records": { "CNAME": "akashr-portfolio.onrender.com" } } diff --git a/domains/akatsuki.json b/domains/akatsuki.json index e996dfee6..a348693cf 100644 --- a/domains/akatsuki.json +++ b/domains/akatsuki.json @@ -4,7 +4,7 @@ "email": "wilsonmigueljalla@gmail.com", "discord": "1223721772051075193" }, - "record": { + "records": { "CNAME": "akatsuki-crew.rf.gd" } } diff --git a/domains/akay.json b/domains/akay.json index b44511fed..af6b27c83 100644 --- a/domains/akay.json +++ b/domains/akay.json @@ -1,17 +1,10 @@ { - "owner": { - "username": "AKBORANA3" - }, - "record": { - "A": [ - "76.76.21.21" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] - } + "owner": { + "username": "AKBORANA3" + }, + "records": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } } diff --git a/domains/akbar.json b/domains/akbar.json index b4c5d32ea..0fa45d650 100644 --- a/domains/akbar.json +++ b/domains/akbar.json @@ -4,7 +4,7 @@ "username": "akbarrdev", "email": "teamnevolution@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-7to.pages.dev" } } diff --git a/domains/akcord.json b/domains/akcord.json index da8d0c122..778f1468c 100644 --- a/domains/akcord.json +++ b/domains/akcord.json @@ -6,7 +6,7 @@ "email": "shrestha.aeniv@gmail.com", "discord": "AKCord" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/akhilesh.json b/domains/akhilesh.json index 94d164882..bf21cc699 100644 --- a/domains/akhilesh.json +++ b/domains/akhilesh.json @@ -5,7 +5,7 @@ "username": "ProCoderAkhil", "email": "AkhilRamachandran@gmail.com" }, - "record": { + "records": { "CNAME": "procoderakhil.github.io" } } diff --git a/domains/akib.json b/domains/akib.json new file mode 100644 index 000000000..94cc58094 --- /dev/null +++ b/domains/akib.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akibsaleh", + "email": "akibsaleh.dev@gmail.com", + "discord": "akibsalehzihan" + }, + "records": { + "CNAME": "akibsaleh.vercel.app" + } +} diff --git a/domains/akiitr.json b/domains/akiitr.json new file mode 100644 index 000000000..32ed149c3 --- /dev/null +++ b/domains/akiitr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akiitr", + "twitter": "akiitr", + "discord": "akiitr" + }, + "records": { + "CNAME": "akiitr.github.io" + } +} diff --git a/domains/akira.json b/domains/akira.json new file mode 100644 index 000000000..d67796ecc --- /dev/null +++ b/domains/akira.json @@ -0,0 +1,11 @@ +{ + "description": "Akira's Dev Webpage", + "repo": "https://github.com/cakira/cakira.github.io.git", + "owner": { + "username": "cakira", + "email": "cleber.akira@gmail.com" + }, + "records": { + "CNAME": "cakira.github.io" + } +} diff --git a/domains/akk1to.json b/domains/akk1to.json index 95c7591f2..9cca909c4 100644 --- a/domains/akk1to.json +++ b/domains/akk1to.json @@ -6,16 +6,9 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { - "A":[ - "185.199.108.153", - "185.199.111.153", - "185.199.110.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], + "records": { + "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/akki.json b/domains/akki.json index 658a98354..c74266bd4 100644 --- a/domains/akki.json +++ b/domains/akki.json @@ -4,7 +4,7 @@ "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, - "record": { + "records": { "A": ["69.197.135.203"] } } diff --git a/domains/aknb.json b/domains/aknb.json index 24ab31650..5e568fb54 100644 --- a/domains/aknb.json +++ b/domains/aknb.json @@ -3,7 +3,7 @@ "username": "Abdulazizkhan-K-N-B", "email": "abdulazizkhan.k.n.b@gmail.com" }, - "record": { + "records": { "CNAME": "abdulazizkhan-k-n-b.github.io" } } diff --git a/domains/akorn.json b/domains/akorn.json index 39114c383..f3db4dcc2 100644 --- a/domains/akorn.json +++ b/domains/akorn.json @@ -2,7 +2,7 @@ "owner": { "username": "Akronical" }, - "record": { + "records": { "CNAME": "akronical.github.io" } } diff --git a/domains/akpi.json b/domains/akpi.json index 95059fe6c..657bb60d3 100644 --- a/domains/akpi.json +++ b/domains/akpi.json @@ -1,15 +1,10 @@ { "owner": { - "username": "akpi816218", + "username": "ackle-dev", "discord": "equus_quagga" }, - "record": { - "A": [ - "185.199.110.153", - "185.199.108.153", - "185.199.111.153", - "185.199.109.153" - ], + "records": { + "URL": "https://ackle.vercel.app/", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/akprofile.json b/domains/akprofile.json new file mode 100644 index 000000000..07742e803 --- /dev/null +++ b/domains/akprofile.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Akash0816", + "email": "akashoffical321@gmail.com" + }, + "records": { + "CNAME": "Akash0816.github.io" + } +} diff --git a/domains/akrm.json b/domains/akrm.json index ab7c96961..2e3f46d7d 100644 --- a/domains/akrm.json +++ b/domains/akrm.json @@ -1,11 +1,12 @@ { + "description": "my portfolio", + "repo": "https://github.com/KemoXtech/my-portfolio", "owner": { "username": "KemoXtech", "email": "aljmalrealstate@gmail.com", "discord": "868339557593137212" }, - "record": { - "A": ["64.62.151.106"], - "AAAA": ["2001:470:1:1ee::2009"] + "records": { + "CNAME": "KemoXtech.github.io" } } diff --git a/domains/akshat.json b/domains/akshat.json index 3570057b6..f17fdb1d2 100644 --- a/domains/akshat.json +++ b/domains/akshat.json @@ -3,7 +3,7 @@ "username": "akshatgurnani", "email": "Akshatgurnani@outlook.com" }, - "record": { + "records": { "URL": "https://www.github.com/akshatgurnani" } } diff --git a/domains/akshath.json b/domains/akshath.json index 28ea47ef5..e9a51e31f 100644 --- a/domains/akshath.json +++ b/domains/akshath.json @@ -3,7 +3,7 @@ "username": "d7dx", "email": "d7dx@proton.me" }, - "record": { + "records": { "CNAME": "d7dx.github.io" } } diff --git a/domains/akshatjain.json b/domains/akshatjain.json index 4d090e345..864e53fb8 100644 --- a/domains/akshatjain.json +++ b/domains/akshatjain.json @@ -3,7 +3,7 @@ "username": "akshatjain", "email": "akshatjain1567@gmail.com" }, - "record": { + "records": { "URL": "https://www.github.com/akshatjaiin" } } diff --git a/domains/akshay-n.json b/domains/akshay-n.json index a255c39e3..56a4067cc 100644 --- a/domains/akshay-n.json +++ b/domains/akshay-n.json @@ -5,7 +5,7 @@ "username": "phenax", "email": "phenax5@gmail.com" }, - "record": { + "records": { "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 741acd48d..e4b83aa5c 100644 --- a/domains/akshay.json +++ b/domains/akshay.json @@ -5,7 +5,7 @@ "username": "phenax", "email": "phenax5@gmail.com" }, - "record": { + "records": { "URL": "https://ediblemonad.dev" } } diff --git a/domains/akshayan.json b/domains/akshayan.json index e487935fc..3f63ed67b 100644 --- a/domains/akshayan.json +++ b/domains/akshayan.json @@ -5,7 +5,7 @@ "username": "akshayans", "email": "akshayan@afhstudio.ml" }, - "record": { + "records": { "CNAME": "akshayans.github.io" } } diff --git a/domains/akshayks.json b/domains/akshayks.json index ac5fabd1c..7a40548a1 100644 --- a/domains/akshayks.json +++ b/domains/akshayks.json @@ -3,7 +3,7 @@ "username": "akshaynox", "email": "mail.akshayks@gmail.com" }, - "record": { + "records": { "URL": "https://akshayks.vercel.app/" } } diff --git a/domains/akshit-jain.json b/domains/akshit-jain.json new file mode 100644 index 000000000..1a208e909 --- /dev/null +++ b/domains/akshit-jain.json @@ -0,0 +1,10 @@ +{ + "description": "Akshit's Personal Website", + "owner": { + "username": "akshitjain16", + "email": "gang.akshitjain@gmail.com" + }, + "records": { + "URL": "https://akshit-jain.netlify.app/" + } +} diff --git a/domains/akshit.json b/domains/akshit.json new file mode 100644 index 000000000..82c347375 --- /dev/null +++ b/domains/akshit.json @@ -0,0 +1,11 @@ +{ + "description": "Akshit's Personal Website", + "repo": "github.com/4kshi7/akshit2k", + "owner": { + "username": "4kshi7", + "email": "akshitgaur2003@gmail.com" + }, + "records": { + "CNAME": "akshit2k.vercel.app" + } +} diff --git a/domains/akshsingla.json b/domains/akshsingla.json index 7306ad99e..31817d5fb 100644 --- a/domains/akshsingla.json +++ b/domains/akshsingla.json @@ -5,7 +5,7 @@ }, "description": "Personal website.", "repo": "https://github.com/Aktindo/personal-website", - "record": { + "records": { "URL": "https://akshsingla.vercel.app" } } diff --git a/domains/akshtt.json b/domains/akshtt.json index ad11a082f..21e0f8f09 100644 --- a/domains/akshtt.json +++ b/domains/akshtt.json @@ -4,7 +4,7 @@ "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, - "record": { - "A": ["69.197.135.202"] + "records": { + "A": ["76.76.21.21"] } } diff --git a/domains/akshya.json b/domains/akshya.json index 330661566..dfacec186 100644 --- a/domains/akshya.json +++ b/domains/akshya.json @@ -5,7 +5,7 @@ "username": "LowkeyGUY4444", "email": "akshyathapa23@gmail.com" }, - "record": { + "records": { "CNAME": "lowkeyguy4444.github.io" } } diff --git a/domains/akta-chavda.json b/domains/akta-chavda.json index f60353aca..122905d20 100644 --- a/domains/akta-chavda.json +++ b/domains/akta-chavda.json @@ -4,7 +4,7 @@ "owner": { "username": "akta-chavda" }, - "record": { + "records": { "CNAME": "akta-chavda.github.io" } } diff --git a/domains/akxd.json b/domains/akxd.json index 772c0a468..9bf91b13c 100644 --- a/domains/akxd.json +++ b/domains/akxd.json @@ -1,11 +1,10 @@ { "description": "Aditya's Portfolio", - "repo": "https://github.com/adityakumarxd", "owner": { "username": "adityakumarxd", "discord": "akxd" }, - "record": { + "records": { "CNAME": "adityakumarxd.github.io" } } diff --git a/domains/akzana.json b/domains/akzana.json index d8fefc099..20acea5dd 100644 --- a/domains/akzana.json +++ b/domains/akzana.json @@ -5,7 +5,7 @@ "username": "akzana", "email": "akzanaklepsch@outlook.com" }, - "record": { + "records": { "CNAME": "akzana.github.io" } } diff --git a/domains/al-nahianhasan.json b/domains/al-nahianhasan.json new file mode 100644 index 000000000..2ad4aa961 --- /dev/null +++ b/domains/al-nahianhasan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nahianhasan161", + "email": "nahianhasan161@gmail.com" + }, + "records": { + "CNAME": "al-nahian-portfolio.vercel.app" + } +} diff --git a/domains/alain.json b/domains/alain.json index 893395671..a51bb736f 100644 --- a/domains/alain.json +++ b/domains/alain.json @@ -5,7 +5,7 @@ "email": "ghghello30@gmail.com", "discord": "970325505989574656" }, - "record": { + "records": { "CNAME": "alainsdev.github.io" } } diff --git a/domains/alan-huynh.json b/domains/alan-huynh.json index 660323ea1..ce69dfc00 100644 --- a/domains/alan-huynh.json +++ b/domains/alan-huynh.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "hdmquan", - "email": "hdmquan@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } -} \ No newline at end of file + "owner": { + "username": "hdmquan", + "email": "hdmquan@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/alan-ren.json b/domains/alan-ren.json new file mode 100644 index 000000000..6e05edca3 --- /dev/null +++ b/domains/alan-ren.json @@ -0,0 +1,10 @@ +{ + "description": "Alan Ren's Developer Website", + "owner": { + "username": "alanvww", + "email": "hello@me.alan.ooo" + }, + "records": { + "URL": "https://alan.ooo" + } +} diff --git a/domains/alan-smith.json b/domains/alan-smith.json index c1cc6c8df..dd18dea5f 100644 --- a/domains/alan-smith.json +++ b/domains/alan-smith.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "AlanDoesCS", - "email": "", - "discord": "730009898942988299", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Immp3HgqOvoplEYYoUA3Svp2THkx-M7zYK40QEwo92htoYTIMb06Jr41viIoiS54WxHndFOTfKu8mVfkfBn6Ddvv3NVhj99R__0OtqqiBkyu7F7uBnZwyq-bGRx8y4SNVhek_NKLuEMbIxHnE21lZEMScbTuL6v_C5mjVZ4EYD8KIPOni_PqBDqrgmRd9ECIPuVAs55ekba6in7jiSbm0-ERfrQ7KqAASTpw17VtjXEL99uPVbx45amsbTMKUjcgZJ-xN_Z4heIcPlxnllVYUZ2fCDw4PhJlGGh8Bg2LCyXbLUMVw5vQESFxEpm682p_rruCRSBCNbHdP4TIF6bI2w.5LaEVt0VljKihoKo-ohj5Q.3bF4ihh9j5tyc916AhgbzB6-LdNGzp4l1VsRT390mcE2fvN9mj46niGBDBapwZqjRiNZgNOzAqKKVUwde-gfek6OgLe4ZsGJSATvF-B6YaM.XnzWEJO3I3UYsV1yl5SfYg" - }, - "record": { - "CNAME": "alandoescs.github.io" - } + "owner": { + "username": "AlanDoesCS", + "discord": "730009898942988299" + }, + "records": { + "CNAME": "alandoescs.github.io" + } } diff --git a/domains/alan.json b/domains/alan.json index 988353fe7..90dfd2923 100644 --- a/domains/alan.json +++ b/domains/alan.json @@ -1,11 +1,10 @@ { "description": "Alan's personal developer website", - "repo": "https://github.com/schirrel", "owner": { "username": "schirrel", "email": "alan@schirrel.dev" }, - "record": { + "records": { "URL": "https://schirrel.dev" } } diff --git a/domains/aland.json b/domains/aland.json new file mode 100644 index 000000000..778d08e18 --- /dev/null +++ b/domains/aland.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alanrme", + "email": "is-a-contact@alanr.me" + }, + "records": { + "URL": "https://alanr.me" + }, + "proxied": false +} diff --git a/domains/alanr.json b/domains/alanr.json new file mode 100644 index 000000000..778d08e18 --- /dev/null +++ b/domains/alanr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alanrme", + "email": "is-a-contact@alanr.me" + }, + "records": { + "URL": "https://alanr.me" + }, + "proxied": false +} diff --git a/domains/alanrme.json b/domains/alanrme.json new file mode 100644 index 000000000..778d08e18 --- /dev/null +++ b/domains/alanrme.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alanrme", + "email": "is-a-contact@alanr.me" + }, + "records": { + "URL": "https://alanr.me" + }, + "proxied": false +} diff --git a/domains/alas.json b/domains/alas.json new file mode 100644 index 000000000..e20f05cc8 --- /dev/null +++ b/domains/alas.json @@ -0,0 +1,13 @@ +{ + "description": "better domain for a portfolio website and email", + "repo": "https://github.com/alastrantia/alastrantia.github.io", + "owner": { + "username": "Alastrantia", + "email": "niklasnoneedtoknow@gmail.com" + }, + "records": { + "URL": "https://alastrantia.github.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/albakhet.json b/domains/albakhet.json index 49e8b9333..f33bec53b 100644 --- a/domains/albakhet.json +++ b/domains/albakhet.json @@ -1,14 +1,11 @@ -{ - "description": "my email forwarding domain", - "owner": { - "username": "Somaiya-XI", - "discord": "Sen!#0577" - }, - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": ["v=spf1 include:spf.improvmx.com ~all"] - } -} +{ + "description": "my email forwarding domain", + "owner": { + "username": "Somaiya-XI", + "discord": "Sen!#0577" + }, + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/albert.json b/domains/albert.json index 5fefa9cb9..19787382b 100644 --- a/domains/albert.json +++ b/domains/albert.json @@ -6,7 +6,7 @@ "email": "vuongdingtuong.an@gmail.com", "twitter": "albert_26_10" }, - "record": { + "records": { "CNAME": "albert1033.github.io" } } diff --git a/domains/albertoaig.json b/domains/albertoaig.json new file mode 100644 index 000000000..5b81835a0 --- /dev/null +++ b/domains/albertoaig.json @@ -0,0 +1,10 @@ +{ + "description": "albertoaig.is-a.dev", + "owner": { + "username": "Albertoaig", + "email": "alberto.aig10@gmail.com" + }, + "records": { + "CNAME": "portafolio-bay-eight.vercel.app" + } +} diff --git a/domains/albertodm.json b/domains/albertodm.json new file mode 100644 index 000000000..0749d9e48 --- /dev/null +++ b/domains/albertodm.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/MonforteGG/portfolio", + "owner": { + "username": "MonforteGG", + "email": "albdiamun@gmail.com" + }, + "description": "portfolio website", + "records": { + "CNAME": "albertodm.netlify.app" + } +} diff --git a/domains/albin.json b/domains/albin.json index 99aaabdb6..6262d98f3 100644 --- a/domains/albin.json +++ b/domains/albin.json @@ -3,7 +3,7 @@ "username": "ALBINPRAVEEN", "email": "albinpraveen135790@gmail.com" }, - "record": { + "records": { "URL": "https://albinpraveen.vercel.app" } } diff --git a/domains/albinvar.json b/domains/albinvar.json index 80deb66b7..2bb1b5874 100644 --- a/domains/albinvar.json +++ b/domains/albinvar.json @@ -5,7 +5,7 @@ "username": "albinvar", "email": "albinvar@pm.me" }, - "record": { + "records": { "CNAME": "albinvar.github.io" } } diff --git a/domains/alblandino.json b/domains/alblandino.json new file mode 100644 index 000000000..8e7102441 --- /dev/null +++ b/domains/alblandino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joel", + "email": "joel@alblandino.com" + }, + "records": { + "URL": "https://alblandino.com" + } +} diff --git a/domains/alcantara.json b/domains/alcantara.json index 700e43494..8186aed3c 100644 --- a/domains/alcantara.json +++ b/domains/alcantara.json @@ -4,7 +4,7 @@ "email": "angele2705@gmail.com", "discord": "713108034171437066" }, - "record": { + "records": { "CNAME": "aalcantara-is-a-dev.web.app" } } diff --git a/domains/alden.json b/domains/alden.json index 5b5e94d6b..00db138b9 100644 --- a/domains/alden.json +++ b/domains/alden.json @@ -7,7 +7,7 @@ "discord": "footballfan0891", "note": "this is my friend's website, because he dosent really understands about these thing, im managing it" }, - "record": { + "records": { "CNAME": "aldenpbm.github.io" } } diff --git a/domains/aldess.json b/domains/aldess.json index e88e64276..aad12e1ae 100644 --- a/domains/aldess.json +++ b/domains/aldess.json @@ -3,7 +3,7 @@ "username": "AldessScratch", "email": "aldess.sc@gmail.com" }, - "record": { + "records": { "CNAME": "aldess.pages.dev" } } diff --git a/domains/aldnnnz.json b/domains/aldnnnz.json index 9447f9be8..62ecace9c 100644 --- a/domains/aldnnnz.json +++ b/domains/aldnnnz.json @@ -1,12 +1,11 @@ { "description": "portofolio", - "domain": "aldnnnz.is-a.dev", "repo": "https://github.com/aldnnnz/aldnnnz.github.io", "owner": { "username": "aldnnnz", "email": "aldynnn@yahoo.com" }, - "record": { + "records": { "CNAME": "aldnnnz.github.io" } } diff --git a/domains/ale.json b/domains/ale.json new file mode 100644 index 000000000..575b2f198 --- /dev/null +++ b/domains/ale.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alekitopi", + "email": "hola@alekitopi.es" + }, + "records": { + "URL": "https://alekitopi.es", + "MX": ["mail.alekitopi.es"] + } +} diff --git a/domains/alec.json b/domains/alec.json new file mode 100644 index 000000000..649b44d23 --- /dev/null +++ b/domains/alec.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "asidsdamad1" + }, + "records": { + "CNAME": "asidsdamad1.github.io" + } +} diff --git a/domains/alechu.json b/domains/alechu.json index 2a1e557b3..c2349fabe 100644 --- a/domains/alechu.json +++ b/domains/alechu.json @@ -5,7 +5,7 @@ "username": "Alechuu", "email": "alechu.dev@icloud.com" }, - "record": { + "records": { "CNAME": "alechuu.github.io" } } diff --git a/domains/alecks.json b/domains/alecks.json index 6d0e88aef..e659f8728 100644 --- a/domains/alecks.json +++ b/domains/alecks.json @@ -1,11 +1,10 @@ { "owner": { "username": "Alecks20", - "email": "contact@alecks.dev", + "email": "hi@alecks.dev", "discord": "612522818294251522" }, - "record": { - "CNAME": "evergarden.alecks.cloud" - }, - "proxied": true + "records": { + "CNAME": "alecks.pages.dev" + } } diff --git a/domains/alejandro.json b/domains/alejandro.json new file mode 100644 index 000000000..f4ebe3b3e --- /dev/null +++ b/domains/alejandro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AlejandroSanchezSerrano", + "email": "alexxsanse@gmail.com" + }, + "records": { + "CNAME": "alejandrosanchezserrano.github.io" + } +} diff --git a/domains/alejandropi.json b/domains/alejandropi.json new file mode 100644 index 000000000..d71c74a6e --- /dev/null +++ b/domains/alejandropi.json @@ -0,0 +1,11 @@ +{ + "description": "Alejandro's Portfolio ", + "repo": "https://github.com/AlejandroPiCano/alejandropi", + "owner": { + "username": "AlejandroPiCano", + "email": "alejandro.pi87@gmail.com" + }, + "records": { + "CNAME": "alejandropicano.github.io" + } +} diff --git a/domains/alejosm.json b/domains/alejosm.json index 028d88666..eff9a4bb8 100644 --- a/domains/alejosm.json +++ b/domains/alejosm.json @@ -3,7 +3,7 @@ "username": "ralexale", "email": "ralexale@gmail.com" }, - "record": { + "records": { "CNAME": "ralexale.github.io" } } diff --git a/domains/aleks.json b/domains/aleks.json index 9ee4c832c..93570681c 100644 --- a/domains/aleks.json +++ b/domains/aleks.json @@ -5,7 +5,7 @@ "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": { + "records": { "CNAME": "connordoesdev.github.io" } } diff --git a/domains/alemi.json b/domains/alemi.json new file mode 100644 index 000000000..7e701e39b --- /dev/null +++ b/domains/alemi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alemiherbert", + "email": "alemiherbert@gmail.com" + }, + "records": { + "CNAME": "alemiherbert.github.io" + } +} diff --git a/domains/alen.json b/domains/alen.json new file mode 100644 index 000000000..c8bcf0749 --- /dev/null +++ b/domains/alen.json @@ -0,0 +1,11 @@ +{ + "description": "Alen's page", + "repo": "https://github.com/alenseeman/alenseeman.github.io", + "owner": { + "username": "alenseeman", + "email": "alenseeman@hotmail.com" + }, + "records": { + "CNAME": "alenseeman.github.io" + } +} diff --git a/domains/alephdiallo.json b/domains/alephdiallo.json index fcb845305..2a3c331dc 100644 --- a/domains/alephdiallo.json +++ b/domains/alephdiallo.json @@ -4,13 +4,8 @@ "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" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=alephdiallo@mail.com" } diff --git a/domains/alessandro.json b/domains/alessandro.json index ccda7c8f5..cebd492e8 100644 --- a/domains/alessandro.json +++ b/domains/alessandro.json @@ -5,7 +5,7 @@ "username": "alessandroaussems", "email": "me@alessandroaussems.be" }, - "record": { + "records": { "URL": "https://alessandroaussems.be" } } diff --git a/domains/alessandrobellesia.json b/domains/alessandrobellesia.json new file mode 100644 index 000000000..d6985dc53 --- /dev/null +++ b/domains/alessandrobellesia.json @@ -0,0 +1,11 @@ +{ + "description": "Alessandro Bellesia personal website", + "repo": "https://github.com/alessandrobellesia/alessandrobellesia.github.io", + "owner": { + "username": "alessandrobellesia", + "x": "@ale_bellesia" + }, + "records": { + "CNAME": "alessandrobellesia.github.io" + } +} diff --git a/domains/alestor123.json b/domains/alestor123.json index 9807d60dc..4bb8e7fbb 100644 --- a/domains/alestor123.json +++ b/domains/alestor123.json @@ -5,7 +5,7 @@ "username": "alestor123", "email": "alestoraldous@gmail.com" }, - "record": { + "records": { "CNAME": "alestor123.github.io" } } diff --git a/domains/alex.json b/domains/alex.json index c27579060..afa951511 100644 --- a/domains/alex.json +++ b/domains/alex.json @@ -1,11 +1,10 @@ { "description": "Alex's personal developer website", - "repo": "https://github.com/alexmorrisnz", "owner": { "username": "alexmorrisnz", "email": "alex@navra.nz" }, - "record": { + "records": { "CNAME": "alexmorris.nz" } } diff --git a/domains/alexanderzhx.json b/domains/alexanderzhx.json index 80ced8a43..87e013a31 100644 --- a/domains/alexanderzhx.json +++ b/domains/alexanderzhx.json @@ -3,7 +3,7 @@ "username": "AZ777xx", "email": "bugattiforever@gmail.com" }, - "record": { + "records": { "CNAME": "az777xx.github.io" } } diff --git a/domains/alexandra.json b/domains/alexandra.json new file mode 100644 index 000000000..fec0f8d99 --- /dev/null +++ b/domains/alexandra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alexxandraSalazar", + "email": "alexandrasalazar121205@gmail.com" + }, + "records": { + "CNAME": "alexandrasalazar.vercel.app" + } +} diff --git a/domains/alexandre-machado.json b/domains/alexandre-machado.json new file mode 100644 index 000000000..fa9f90d1d --- /dev/null +++ b/domains/alexandre-machado.json @@ -0,0 +1,11 @@ +{ + "description": "My personal domain.", + "repo": "https://github.com/alexandre-machado/alexandre-machado.github.io", + "owner": { + "username": "alexandre-machado", + "email": "alexandre@machado.cc" + }, + "records": { + "URL": "https://alexandre.machado.cc" + } +} diff --git a/domains/alexbartles.json b/domains/alexbartles.json index e4a561f4d..4d0a4c3eb 100644 --- a/domains/alexbartles.json +++ b/domains/alexbartles.json @@ -5,7 +5,7 @@ "email": "alexbartles2012@gmail.com", "discord": "_alexbartles" }, - "record": { + "records": { "CNAME": "alexbartles.github.io" } } diff --git a/domains/alexcantor.json b/domains/alexcantor.json new file mode 100644 index 000000000..26717aeb1 --- /dev/null +++ b/domains/alexcantor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alex-cantor", + "email": "alexcantor99@gmail.com" + }, + "records": { + "CNAME": "alex-cantor.github.io" + } +} diff --git a/domains/alexd.json b/domains/alexd.json index 4f6abb107..fa5d149f7 100644 --- a/domains/alexd.json +++ b/domains/alexd.json @@ -4,7 +4,7 @@ "email": "AlexanderDDevelopment@gmail.com", "discord": "1237578569358639190" }, - "record": { + "records": { "CNAME": "alexanderd.pages.dev" } } diff --git a/domains/alexey.json b/domains/alexey.json index dc46d3458..22e9520ed 100644 --- a/domains/alexey.json +++ b/domains/alexey.json @@ -2,7 +2,7 @@ "owner": { "username": "charmingdisorder" }, - "record": { + "records": { "CNAME": "charmingdisorder.github.io" } } diff --git a/domains/alexis.json b/domains/alexis.json index 6b0ee7bd0..15893df27 100644 --- a/domains/alexis.json +++ b/domains/alexis.json @@ -6,7 +6,7 @@ "email": "contact@alexiis.fr", "twitter": "un_nalexis" }, - "record": { + "records": { "CNAME": "alexis-elaxis.github.io" } } diff --git a/domains/alexismaison.json b/domains/alexismaison.json index c135d4713..624eb06d8 100644 --- a/domains/alexismaison.json +++ b/domains/alexismaison.json @@ -3,7 +3,7 @@ "username": "alexis2m", "email": "hello@alexismaison.com" }, - "record": { + "records": { "URL": "https://alexismaison.com" } } diff --git a/domains/alexismansilla.json b/domains/alexismansilla.json new file mode 100644 index 000000000..449adb192 --- /dev/null +++ b/domains/alexismansilla.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dv-del", + "email": "", + "discord": "dv_del" + }, + "records": { + "CNAME": "alexismansilla.vercel.app" + } +} diff --git a/domains/alexjoseph.json b/domains/alexjoseph.json index 94e6eb662..0adbcbcd4 100644 --- a/domains/alexjoseph.json +++ b/domains/alexjoseph.json @@ -5,7 +5,7 @@ "username": "alexkjoseph", "email": "aj71563@gmail.com" }, - "record": { + "records": { "CNAME": "alexkjoseph.github.io" } } diff --git a/domains/alexlykesas.json b/domains/alexlykesas.json index 884493aca..c6c241e53 100644 --- a/domains/alexlykesas.json +++ b/domains/alexlykesas.json @@ -5,7 +5,7 @@ "username": "alexookah", "email": "alexlykesas@gmail.com" }, - "record": { + "records": { "URL": "https://alexlykesas.com" } } diff --git a/domains/alexmercerind.json b/domains/alexmercerind.json index 176b26537..bd8542e6c 100644 --- a/domains/alexmercerind.json +++ b/domains/alexmercerind.json @@ -7,7 +7,7 @@ "twitter": "alexmercerind", "discord": "alexmercerind#3898" }, - "record": { + "records": { "CNAME": "alexmercerind.github.io" } } diff --git a/domains/alexpcooper.json b/domains/alexpcooper.json index e54ab8c03..1ee7b6d9a 100644 --- a/domains/alexpcooper.json +++ b/domains/alexpcooper.json @@ -1,7 +1,6 @@ { "description": "Developer in the United Kingdom", - "repo": "https://github.com/alexpcooper", - "record": { + "records": { "URL": "https://alexpcooper.co.uk" }, "owner": { diff --git a/domains/alexsquibbs.json b/domains/alexsquibbs.json index f60c3b1ca..0e8951ff6 100644 --- a/domains/alexsquibbs.json +++ b/domains/alexsquibbs.json @@ -1,9 +1,8 @@ { "description": "alexsquibbs.is-a.dev --> alexsquibbs.com", - "record": { + "records": { "URL": "https://alexsquibbs.com" }, - "repo": "https://github.com/alexsquibbs", "owner": { "discord": "alex squibbs#7777", "email": "alexsquibbs.is-a.dev@alexsquibbs.com", diff --git a/domains/alexxhumilde.json b/domains/alexxhumilde.json new file mode 100644 index 000000000..ca97488ac --- /dev/null +++ b/domains/alexxhumilde.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ALEXXHUMILDE", + "email": "alexxcrack3@gmail.com" + }, + "records": { + "CNAME": "alexxhumilde.netlify.app" + } +} diff --git a/domains/alfanaan.json b/domains/alfanaan.json index 10a510b3b..ece2f5d6c 100644 --- a/domains/alfanaan.json +++ b/domains/alfanaan.json @@ -4,7 +4,7 @@ "email": "hmmm202031520062021@gmail.com", "discord": "775012312876711936" }, - "record": { + "records": { "URL": "https://timevoice.onrender.com", "MX": ["mail.is-a.dev"], "TXT": "v=spf1 mx a:mail.is-a.dev ~all" diff --git a/domains/alfari.json b/domains/alfari.json index d442f3731..262f1efe6 100644 --- a/domains/alfari.json +++ b/domains/alfari.json @@ -3,7 +3,7 @@ "username": "alfari24", "email": "ari@alfari.id" }, - "record": { + "records": { "A": ["194.15.36.220"] } } diff --git a/domains/alfred.json b/domains/alfred.json index 190259ff9..bbbc14b37 100644 --- a/domains/alfred.json +++ b/domains/alfred.json @@ -5,7 +5,7 @@ "username": "AlfredDiscordBot", "email": "alvinallen333@gmail.com" }, - "record": { + "records": { "CNAME": "alfreddiscordbot.github.io" } } diff --git a/domains/alfredjophy.json b/domains/alfredjophy.json new file mode 100644 index 000000000..2eca097e1 --- /dev/null +++ b/domains/alfredjophy.json @@ -0,0 +1,10 @@ +{ + "description": "Redirect for my personal website.", + "owner": { + "username": "alfredjophy", + "email": "mail@alfredjophy.com" + }, + "records": { + "CNAME": "alfredjophy.com" + } +} diff --git a/domains/algebraic-effects.akshay.json b/domains/algebraic-effects.akshay.json index 563a84c7b..cdb4498c4 100644 --- a/domains/algebraic-effects.akshay.json +++ b/domains/algebraic-effects.akshay.json @@ -5,7 +5,7 @@ "username": "phenax", "email": "phenax5@gmail.com" }, - "record": { + "records": { "CNAME": "phenax.github.io" } } diff --git a/domains/ali-abdurrazzak.json b/domains/ali-abdurrazzak.json index b411fc225..929af9cbe 100644 --- a/domains/ali-abdurrazzak.json +++ b/domains/ali-abdurrazzak.json @@ -6,7 +6,7 @@ "email": "aliabdurrazzak@gmail.com", "twitter": "aliabdurrazzak" }, - "record": { + "records": { "CNAME": "aliabdurrazzak.github.io" } } diff --git a/domains/ali.json b/domains/ali.json index 2dd37ffac..54f80771b 100644 --- a/domains/ali.json +++ b/domains/ali.json @@ -5,7 +5,7 @@ "username": "hmd-ali", "email": "letsmailali.h@gmail.com" }, - "record": { + "records": { "CNAME": "hmd-ali.github.io" } } diff --git a/domains/alian.json b/domains/alian.json index d1152607e..f032de76f 100644 --- a/domains/alian.json +++ b/domains/alian.json @@ -3,7 +3,7 @@ "username": "alianhakim9", "email": "alianhakim9@gmail.com" }, - "record": { + "records": { "URL": "https://alianhakim9.vercel.app/" } } diff --git a/domains/aliezan.json b/domains/aliezan.json deleted file mode 100644 index aa5890989..000000000 --- a/domains/aliezan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Aliezan", - "email": "muhammadalieza4@gmail.com" - }, - "record": { - "CNAME": "aliezan.github.io" - } -} diff --git a/domains/alijafari.json b/domains/alijafari.json index 639d61198..04ba7e135 100644 --- a/domains/alijafari.json +++ b/domains/alijafari.json @@ -3,7 +3,7 @@ "username": "alijafari-gd", "email": "ali.jafari.sn@gmail.com" }, - "record": { + "records": { "URL": "https://alijafari-gd.github.io" } } diff --git a/domains/alimad.json b/domains/alimad.json new file mode 100644 index 000000000..27a544bc8 --- /dev/null +++ b/domains/alimad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Alimadcorp", + "email": "alimad.co.ltd@gmail.com" + }, + "records": { + "CNAME": "alimad.vercel.app" + } +} diff --git a/domains/alimd.json b/domains/alimd.json index ecf2199d5..8b9c6dd69 100644 --- a/domains/alimd.json +++ b/domains/alimd.json @@ -3,7 +3,7 @@ "username": "AliMD", "email": "ali@mihandoost.com" }, - "record": { + "records": { "CNAME": "alimd.github.io" } } diff --git a/domains/alimehdi.json b/domains/alimehdi.json index 703bf6956..a2f53aa04 100644 --- a/domains/alimehdi.json +++ b/domains/alimehdi.json @@ -3,7 +3,7 @@ "username": "DeadMan30", "email": "its.alimehdi25@gmail.com" }, - "record": { + "records": { "CNAME": "alimehdi.pages.dev" } } diff --git a/domains/alireza.json b/domains/alireza.json index f834a6805..c9fd667e3 100644 --- a/domains/alireza.json +++ b/domains/alireza.json @@ -3,7 +3,7 @@ "username": "faghani", "twitter": "alireza_faghani" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/alisa.json b/domains/alisa.json index 78dae86ba..a6c2d28e0 100644 --- a/domains/alisa.json +++ b/domains/alisa.json @@ -4,7 +4,7 @@ "email": "luna.tsx@proton.me", "discord": "507625218467168257" }, - "record": { + "records": { "CNAME": "alisa-win95.vercel.app" } } diff --git a/domains/alisabry.json b/domains/alisabry.json index 49ac2cb56..bbbd9e7da 100644 --- a/domains/alisabry.json +++ b/domains/alisabry.json @@ -3,7 +3,7 @@ "username": "ali-sabry", "email": "alisabry.official@gmail.com" }, - "record": { + "records": { "URL": "https://alisabry.netlify.app" } } diff --git a/domains/alivaliev.json b/domains/alivaliev.json index 2a1a18af6..3474876ec 100644 --- a/domains/alivaliev.json +++ b/domains/alivaliev.json @@ -1,10 +1,9 @@ { "owner": { "username": "ali-valiev", - "discord": "722403528705966080", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JSdx7lWn1j953PUFzYC5SKNlzI-3owSSeRuL8BVKm3P1xwN1Ufuhssfzul-weVp-srPf-YXIN4e1tuB2cUProneSkZUANnd4Cl5oCRd4TG1SRUKdI7pkWauG6ysFEFCHwf1LmANGdjzjI0YDNYbGIU3-0nWSmxF5inVadCE8Y281Y6D2lf9A7ceihxwoRq3MCqGo8yCQuNO9FUWwcxZWHa0F7pGYSPqlE26szjWdhFX6rrNS_ypi5wTqhMAC6FdS36zP5bRRSc8b_9TGpE9vj0FleWb1hqXzAiAxToTCTuIGCuTaVY_pfWvpT43sDLN5d7ouXUCgdDGDnntAGLDs4Q.zgoE3RG741k1s-HFrWT7dA.utROG6r9NR6Awzk5pi-TqsCVuoAKn4zG6IbVSFn5il2EKcXDmXt6nzkQYORhyMUptajbkDd3O98WGRaVqG3qkvJUUQu6h_3H4pwRoZQd0fvYqG6G_ymfSlgynEP1y4EZ.jYbY2Ak8PSXN95hhiA2EXg" + "discord": "722403528705966080" }, - "record": { + "records": { "CNAME": "ali-valiev.github.io" } } diff --git a/domains/aliwoto.json b/domains/aliwoto.json index edd87667c..d889488a2 100644 --- a/domains/aliwoto.json +++ b/domains/aliwoto.json @@ -3,7 +3,7 @@ "username": "ALiwoto", "email": "aminnimaj@gmail.com" }, - "record": { + "records": { "A": ["5.9.188.232"] } } diff --git a/domains/alkorsan.json b/domains/alkorsan.json new file mode 100644 index 000000000..43a3a8062 --- /dev/null +++ b/domains/alkorsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "badrelmers", + "email": "alkorsan@gmail.com" + }, + "records": { + "CNAME": "alkorsan.pages.dev" + } +} diff --git a/domains/all.json b/domains/all.json new file mode 100644 index 000000000..b7d93b000 --- /dev/null +++ b/domains/all.json @@ -0,0 +1,16 @@ +{ + "description": "Visualization of raw-api.is-a.dev", + "repo": "https://github.com/JustDeveloper1/all.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "dev@j.is-a.dev", + "discord": "1117482901353812088" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "TXT": [ + "google-site-verification=BbYZhMhwA6qo69R2udUA6wKJidmrTiWflfU01Kjm7eI", + "yandex-verification: 7cc47fa77df61676" + ] + } +} diff --git a/domains/allancoding.json b/domains/allancoding.json index 98605aa55..c2fa80c30 100644 --- a/domains/allancoding.json +++ b/domains/allancoding.json @@ -7,7 +7,7 @@ "twitter": "allancoding", "discord": "allancoding" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com include:_spf.google.com ~all" diff --git a/domains/allen-xavier.json b/domains/allen-xavier.json new file mode 100644 index 000000000..d62e7c9fc --- /dev/null +++ b/domains/allen-xavier.json @@ -0,0 +1,11 @@ +{ + "description": "For Portfolio Website", + "repo": "https://github.com/xavierallem/AllenXavier", + "owner": { + "username": "xavierallem", + "email": "xavierallem1999@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/allen.json b/domains/allen.json index a48f293d7..aca9c4041 100644 --- a/domains/allen.json +++ b/domains/allen.json @@ -1,12 +1,11 @@ { "description": "A full-stack developer.", - "repo": "https://github.com/xiaofuyesnew", "owner": { "username": "xiaofuyesnew", "email": "xiaofuyesnew@qq.com", "twitter": "xiaofuyesnew" }, - "record": { + "records": { "URL": "https://github.com/xiaofuyesnew" } } diff --git a/domains/alltawd.json b/domains/alltawd.json index 7184a18c6..ebd80fd4b 100644 --- a/domains/alltawd.json +++ b/domains/alltawd.json @@ -3,7 +3,7 @@ "username": "AlltAWD", "email": "hanson_2014@hotmail.com" }, - "record": { + "records": { "CNAME": "alltawd.github.io" } } diff --git a/domains/allvaa.json b/domains/allvaa.json index 868cb2733..0d57e432e 100644 --- a/domains/allvaa.json +++ b/domains/allvaa.json @@ -1,11 +1,10 @@ { "description": "Allvaa's personal website", - "repo": "https://github.com/Allvaa", "owner": { "username": "Allvaa", "twitter": "allvzx" }, - "record": { + "records": { "URL": "https://allvaa.my.id" } } diff --git a/domains/ally.json b/domains/ally.json index 28df78154..e3633745e 100644 --- a/domains/ally.json +++ b/domains/ally.json @@ -1,11 +1,10 @@ { "description": "Ally's personal website", - "repo": "https://github.com/AllyTally", "owner": { "username": "AllyTally", "email": "alexiatilde@gmail.com" }, - "record": { + "records": { "URL": "https://ally.moe" } } diff --git a/domains/almatch.json b/domains/almatch.json index 858fd84b7..9649cee8d 100644 --- a/domains/almatch.json +++ b/domains/almatch.json @@ -1,11 +1,10 @@ { "description": "Imad", - "repo": "https://github.com/imadboy89", "owner": { "username": "imadboy89", "email": "imad.kh@outlook.com" }, - "record": { + "records": { "CNAME": "imadboy89.github.io" } } diff --git a/domains/almaz.json b/domains/almaz.json index 4fb80f100..acade944e 100644 --- a/domains/almaz.json +++ b/domains/almaz.json @@ -3,7 +3,7 @@ "username": "AlmaziikDev", "email": "almazgamer228@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/almightynan.json b/domains/almightynan.json index e592fa237..c6d36cf58 100644 --- a/domains/almightynan.json +++ b/domains/almightynan.json @@ -1,10 +1,9 @@ { - "repo": "https://github.com/almightynan", "owner": { "username": "almightynan", "email": "almightynan@gmail.com" }, - "record": { + "records": { "CNAME": "almightynandev-production.up.railway.app" } } diff --git a/domains/almuqbel.json b/domains/almuqbel.json index 6b8338a90..f65e45263 100644 --- a/domains/almuqbel.json +++ b/domains/almuqbel.json @@ -3,7 +3,7 @@ "username": "AMAZINGMAN2", "email": "Hashim.almuqbel@gmail.com" }, - "record": { + "records": { "A": ["185.176.43.100"] } } diff --git a/domains/alokik.json b/domains/alokik.json index e0ad97655..b5ed547eb 100644 --- a/domains/alokik.json +++ b/domains/alokik.json @@ -3,7 +3,7 @@ "username": "OpAayush", "email": "aayushmagrawal@gmail.com" }, - "record": { + "records": { "CNAME": "alokik-here.github.io" } } diff --git a/domains/aloo-bun.json b/domains/aloo-bun.json index bedc9b1c7..3ae97bb78 100644 --- a/domains/aloo-bun.json +++ b/domains/aloo-bun.json @@ -5,7 +5,7 @@ "username": "AshC1ty", "email": "ashcity07734@gmail.com" }, - "record": { + "records": { "CNAME": "ashc1ty.github.io" } } diff --git a/domains/alora.json b/domains/alora.json index 8ac370fc4..688213315 100644 --- a/domains/alora.json +++ b/domains/alora.json @@ -4,13 +4,8 @@ "email": "xaloramia@gmail.com", "discord": "7q8x" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"], "TXT": [ "v=spf1 include:zohomail.in ~all", diff --git a/domains/alperen.json b/domains/alperen.json index a758fe960..bc732ecab 100644 --- a/domains/alperen.json +++ b/domains/alperen.json @@ -5,7 +5,7 @@ "username": "alperenasln", "email": "alperenaslan55@gmail.com" }, - "record": { + "records": { "CNAME": "alperenasln.github.io" } } diff --git a/domains/alpha.json b/domains/alpha.json index 9256c4955..eef56044b 100644 --- a/domains/alpha.json +++ b/domains/alpha.json @@ -5,8 +5,8 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { - "URL": "https://yfadev.pw", + "records": { + "URL": "https://youfoundalpha.pages.dev", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/alphabet.json b/domains/alphabet.json index 33de206c2..5855ccad5 100644 --- a/domains/alphabet.json +++ b/domains/alphabet.json @@ -3,7 +3,7 @@ "username": "Commandify", "email": "commandify@gmail.com" }, - "record": { + "records": { "A": ["68.183.191.223"] } } diff --git a/domains/alphaspheredotai.json b/domains/alphaspheredotai.json new file mode 100644 index 000000000..700647280 --- /dev/null +++ b/domains/alphaspheredotai.json @@ -0,0 +1,11 @@ +{ + "description": "Website of AlphaSphere.AI Team", + "repo": "https://github.com/AlphaSphereDotAI/AlphaSphereDotAI.github.io", + "owner": { + "username": "AlphaSphereDotAI", + "email": "AlphaSphere.AI@gmail.com" + }, + "records": { + "CNAME": "alphaspheredotai.github.io" + } +} diff --git a/domains/alphatechnolog.json b/domains/alphatechnolog.json index 20ab4706a..8f2b13ec1 100644 --- a/domains/alphatechnolog.json +++ b/domains/alphatechnolog.json @@ -4,7 +4,7 @@ "email": "gfranklings@gmail.com", "discord": "695333243637072002" }, - "record": { + "records": { "CNAME": "alphatechnolog.vercel.app" } } diff --git a/domains/alrakib.json b/domains/alrakib.json new file mode 100644 index 000000000..ee630cfb6 --- /dev/null +++ b/domains/alrakib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alrakibthedev", + "email": "alrakibthedev@gmail.com" + }, + "records": { + "CNAME": "alrakibthedev.vercel.app" + } +} diff --git a/domains/alriy.json b/domains/alriy.json new file mode 100644 index 000000000..80fa195bd --- /dev/null +++ b/domains/alriy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dami6u9", + "email": "danielyalikotte@gmail.com" + }, + "records": { + "CNAME": "dami6u9.github.io" + } +} diff --git a/domains/altude.json b/domains/altude.json index 08e335d1d..b017dc944 100644 --- a/domains/altude.json +++ b/domains/altude.json @@ -3,7 +3,7 @@ "username": "altude", "email": "altude@skiff.com" }, - "record": { + "records": { "CNAME": "altude.pages.dev" } } diff --git a/domains/aluwi.json b/domains/aluwi.json index d4fed6030..d1f45ae68 100644 --- a/domains/aluwi.json +++ b/domains/aluwi.json @@ -6,7 +6,7 @@ "email": "21fayyadh@gmail.com", "twitter": "Aluwi_" }, - "record": { + "records": { "CNAME": "aluwi21.github.io" } } diff --git a/domains/alvaro14.json b/domains/alvaro14.json new file mode 100644 index 000000000..ffb43905c --- /dev/null +++ b/domains/alvaro14.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lovian", + "email": "stikamera26@gmail.com" + }, + "records": { + "CNAME": "cfpages-4pw.pages.dev" + } +} diff --git a/domains/alvin.json b/domains/alvin.json index db33e407b..3d3220a83 100644 --- a/domains/alvin.json +++ b/domains/alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"], "A": ["76.76.21.21"], "TXT": [ diff --git a/domains/alvindennis.json b/domains/alvindennis.json index 2605e68a7..e3268b668 100644 --- a/domains/alvindennis.json +++ b/domains/alvindennis.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "alvin-dennis", - "discord": "732503927940972605" - }, - - "record": { - "CNAME": "alvindennis.vercel.app" - } - } + "owner": { + "username": "alvin-dennis", + "discord": "732503927940972605" + }, + "records": { + "CNAME": "alvindennis.vercel.app" + } +} diff --git a/domains/alvito.json b/domains/alvito.json index dc7ddd347..eeb47e404 100644 --- a/domains/alvito.json +++ b/domains/alvito.json @@ -5,7 +5,7 @@ "username": "alvitodev", "email": "alvitodev@protonmail.com" }, - "record": { + "records": { "CNAME": "alvitodev.github.io" } } diff --git a/domains/alwen.json b/domains/alwen.json new file mode 100644 index 000000000..5a22228fe --- /dev/null +++ b/domains/alwen.json @@ -0,0 +1,11 @@ +{ + "description": "Arvind's portfolio website", + "repo": "https://github.com/alwenpy/alwen-portfolio", + "owner": { + "username": "alwenpy", + "email": "alwen1928@gmail.com" + }, + "records": { + "CNAME": "ym60h2na.up.railway.app" + } +} diff --git a/domains/aly.json b/domains/aly.json new file mode 100644 index 000000000..930107b7b --- /dev/null +++ b/domains/aly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "el7amrawy", + "email": "el7amrawy@outlook.com" + }, + "records": { + "CNAME": "portfolio-8sc.pages.dev" + } +} diff --git a/domains/am.json b/domains/am.json index 78c20c100..87b57fad1 100644 --- a/domains/am.json +++ b/domains/am.json @@ -3,7 +3,7 @@ "username": "sa-mustafa", "email": "s.a.mustafa@yandex.com" }, - "record": { + "records": { "CNAME": "dev.imagesmith.io" } } diff --git a/domains/amaankazi.json b/domains/amaankazi.json index b8c867adb..0e711f80c 100644 --- a/domains/amaankazi.json +++ b/domains/amaankazi.json @@ -5,7 +5,7 @@ "username": "Amaan-Kazi", "email": "amaankazi1793@gmail.com" }, - "record": { + "records": { "CNAME": "amaankazi.pages.dev" } } diff --git a/domains/amal-sebastian.json b/domains/amal-sebastian.json index 9f4c18d39..82bdf7787 100644 --- a/domains/amal-sebastian.json +++ b/domains/amal-sebastian.json @@ -5,7 +5,7 @@ "username": "amalsebs", "email": "amalsebastian48@gmail.com" }, - "record": { + "records": { "CNAME": "amalsebs.github.io" } } diff --git a/domains/amal.json b/domains/amal.json index 9f4c18d39..82bdf7787 100644 --- a/domains/amal.json +++ b/domains/amal.json @@ -5,7 +5,7 @@ "username": "amalsebs", "email": "amalsebastian48@gmail.com" }, - "record": { + "records": { "CNAME": "amalsebs.github.io" } } diff --git a/domains/aman.json b/domains/aman.json new file mode 100644 index 000000000..52c389daa --- /dev/null +++ b/domains/aman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amang9446", + "email": "dev.aman7571@gmail.com" + }, + "records": { + "CNAME": "dev-aman.vercel.app" + } +} diff --git a/domains/amandajauregui.json b/domains/amandajauregui.json new file mode 100644 index 000000000..e4d45b2a5 --- /dev/null +++ b/domains/amandajauregui.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jauregao", + "email": "amandajauregui.dev@gmail.com", + "discord": "jauregao" + }, + "records": { + "CNAME": "portifolio-amandajauregui.vercel.app" + } +} diff --git a/domains/amanthakur.json b/domains/amanthakur.json index 89cfff114..467676fdd 100644 --- a/domains/amanthakur.json +++ b/domains/amanthakur.json @@ -4,7 +4,7 @@ "email": "amant8425@gmail.com", "discord": "523813766295715851" }, - "record": { + "records": { "CNAME": "aman7thakurr.github.io" } } diff --git a/domains/amanza17.json b/domains/amanza17.json new file mode 100644 index 000000000..e7a55a8eb --- /dev/null +++ b/domains/amanza17.json @@ -0,0 +1,11 @@ +{ + "description": "amanza17.is-a.dev", + "repo": "https://github.com/Amanza17/Amanza17.github.io.git", + "owner": { + "username": "Amanza17", + "email": "a.manzanares.2023@alumnos.urjc.es" + }, + "records": { + "CNAME": "amanza17.github.io" + } +} diff --git a/domains/amardeep.json b/domains/amardeep.json new file mode 100644 index 000000000..af91e3df6 --- /dev/null +++ b/domains/amardeep.json @@ -0,0 +1,11 @@ +{ + "description": "Amardeep Lakshkar Portfolio", + "repo": "https://github.com/amardeeplakshkar/portfolio", + "owner": { + "username": "amardeeplakshkar", + "email": "amardeep.devs@gmail.com" + }, + "records": { + "CNAME": "amardeep-portfolio.vercel.app" + } +} diff --git a/domains/amarjeet.json b/domains/amarjeet.json index c2d8bdb11..3c46e1fd5 100644 --- a/domains/amarjeet.json +++ b/domains/amarjeet.json @@ -3,7 +3,7 @@ "username": "amalpotra", "email": "amarjeetmalpotra@outlook.com" }, - "record": { + "records": { "CNAME": "amalpotra.github.io" } } diff --git a/domains/ambaskaryash.json b/domains/ambaskaryash.json index 366a77e7b..357110918 100644 --- a/domains/ambaskaryash.json +++ b/domains/ambaskaryash.json @@ -3,7 +3,7 @@ "username": "ambaskaryash", "email": "kimetsu119@gmail.com" }, - "record": { + "records": { "CNAME": "ambaskaryash.github.io" } } diff --git a/domains/ameen.json b/domains/ameen.json new file mode 100644 index 000000000..d0a28bc2b --- /dev/null +++ b/domains/ameen.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio website", + "repo": "https://github.com/am333n/my_portfolio", + "owner": { + "username": "am333n", + "email": "muhammedameen752@gmail.com" + }, + "records": { + "CNAME": "am333n.github.io" + } +} diff --git a/domains/amenya.json b/domains/amenya.json new file mode 100644 index 000000000..6c0182d1a --- /dev/null +++ b/domains/amenya.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio", + "repo": "https://github.com/aspects19/aspects19", + "owner": { + "username": "aspects19", + "email": "ambezos388@hotmail.com" + }, + "records": { + "CNAME": "portfolio-aspect.vercel.app" + } +} diff --git a/domains/amerigo.json b/domains/amerigo.json index 090913f5b..96ca4c31f 100644 --- a/domains/amerigo.json +++ b/domains/amerigo.json @@ -3,7 +3,7 @@ "username": "north-site", "email": "v.imreadrian@gmail.com" }, - "record": { + "records": { "CNAME": "5c13057597f8.sn.mynetname.net" } } diff --git a/domains/amey.json b/domains/amey.json index 1ee19d2cd..9fdc6c0bd 100644 --- a/domains/amey.json +++ b/domains/amey.json @@ -3,7 +3,7 @@ "username": "panditamey", "email": "codewithamey@gmail.com" }, - "record": { + "records": { "CNAME": "panditamey.github.io" } } diff --git a/domains/amila.json b/domains/amila.json index ee47dd29e..99724d1a6 100644 --- a/domains/amila.json +++ b/domains/amila.json @@ -3,7 +3,7 @@ "username": "Y-AmilaNirmal", "email": "yamilanirmal@gmail.com" }, - "record": { + "records": { "CNAME": "y-amilanirmal.github.io" } } diff --git a/domains/amin.json b/domains/amin.json index f7f2a9d04..98d64aeb1 100644 --- a/domains/amin.json +++ b/domains/amin.json @@ -5,12 +5,7 @@ "username": "amenm0", "email": "mjmwtmjls@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/amine-brahmi.json b/domains/amine-brahmi.json index cf3ecd2e2..7d25b1ca4 100644 --- a/domains/amine-brahmi.json +++ b/domains/amine-brahmi.json @@ -4,7 +4,7 @@ "username": "thou-mayest", "twitter": "Dr_whoami_" }, - "record": { + "records": { "CNAME": "thou-mayest.github.io" } } diff --git a/domains/amiralam.json b/domains/amiralam.json index 1f38ec173..374602cbe 100644 --- a/domains/amiralam.json +++ b/domains/amiralam.json @@ -6,7 +6,7 @@ "email": "sameer72135@gmail.com", "twitter": "AmirAlam72135" }, - "record": { + "records": { "CNAME": "amiralamf4.github.io" } } diff --git a/domains/amit.json b/domains/amit.json index 0a5f22ee2..c076d686e 100644 --- a/domains/amit.json +++ b/domains/amit.json @@ -5,7 +5,7 @@ "username": "amittkulkarni", "email": "amitcoolkarni@outlook.com" }, - "record": { + "records": { "CNAME": "amittkulkarni.github.io" } } diff --git a/domains/amitkr.json b/domains/amitkr.json new file mode 100644 index 000000000..d74195f15 --- /dev/null +++ b/domains/amitkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "buddhhu", + "email": "amitsharma123234@gmail.com" + }, + "records": { + "CNAME": "amitkr.vercel.app" + } +} diff --git a/domains/amity.json b/domains/amity.json index 8e38034fe..2b738a83b 100644 --- a/domains/amity.json +++ b/domains/amity.json @@ -3,7 +3,7 @@ "username": "winrg", "email": "alyx@aleteoryx.me" }, - "record": { + "records": { "URL": "https://aleteoryx.me" } } diff --git a/domains/amiyo.json b/domains/amiyo.json index c551b7e87..a6ce499ee 100644 --- a/domains/amiyo.json +++ b/domains/amiyo.json @@ -2,11 +2,10 @@ "owner": { "username": "DevAmiyo", "email": "devamiyosp@gmail.com", - "repo": "https://github.com/DevAmiyo", "discord": "Amiyo#7978", "twitter": "AmiyoTweets" }, - "record": { + "records": { "URL": "https://github.amiyo.tk" } } diff --git a/domains/ammar.json b/domains/ammar.json new file mode 100644 index 000000000..96c3a3281 --- /dev/null +++ b/domains/ammar.json @@ -0,0 +1,11 @@ +{ + "description": "Ammar's personal website", + "repo": "https://github.com/Ammaryasser1998/ammaryasser1998.github.io", + "owner": { + "username": "Ammaryasser1998", + "email": "amyss1910@gmail.com" + }, + "records": { + "CNAME": "ammaryasser1998.github.io" + } +} diff --git a/domains/ammthecoder.json b/domains/ammthecoder.json index f9166f589..94c4860ee 100644 --- a/domains/ammthecoder.json +++ b/domains/ammthecoder.json @@ -3,7 +3,7 @@ "username": "Aung-myat-min", "email": "koaungmyatmin0@gmail.com" }, - "record": { + "records": { "URL": "https://ammthercoder.vercel.app/" } } diff --git a/domains/amol254542.json b/domains/amol254542.json index 26257a95b..c22e4c01b 100644 --- a/domains/amol254542.json +++ b/domains/amol254542.json @@ -3,7 +3,7 @@ "username": "amol234545", "email": "amolmilton@gmail.com" }, - "record": { + "records": { "CNAME": "amol234545.github.io" } } diff --git a/domains/amol3.json b/domains/amol3.json index 26257a95b..c22e4c01b 100644 --- a/domains/amol3.json +++ b/domains/amol3.json @@ -3,7 +3,7 @@ "username": "amol234545", "email": "amolmilton@gmail.com" }, - "record": { + "records": { "CNAME": "amol234545.github.io" } } diff --git a/domains/amoramicae.json b/domains/amoramicae.json index 59e334273..772716857 100644 --- a/domains/amoramicae.json +++ b/domains/amoramicae.json @@ -3,7 +3,7 @@ "username": "amoramicae", "email": "amoramicae@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/amosmurmu.json b/domains/amosmurmu.json new file mode 100644 index 000000000..12bd4b37b --- /dev/null +++ b/domains/amosmurmu.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Software Portfolio", + "repo": "https://github.com/amosmurmu/amosmurmu.github.io.git", + "owner": { + "username": "amosmurmu", + "email": "amosmurmu002@gmail.com" + }, + "records": { + "CNAME": "amosmurmu.github.io" + } +} diff --git a/domains/amr.json b/domains/amr.json new file mode 100644 index 000000000..9cfdebc0d --- /dev/null +++ b/domains/amr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "agawish", + "email": "amr.gawish@gmail.com" + }, + "records": { + "CNAME": "amr-gawish.com" + } +} diff --git a/domains/amrut.json b/domains/amrut.json new file mode 100644 index 000000000..f3abf960f --- /dev/null +++ b/domains/amrut.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "amrutgawade", + "email": "amrutgawade.08@gmail.com", + "linkedin": "https://www.linkedin.com/in/amrut-gawade" + }, + "records": { + "CNAME": "amrutgawade.github.io" + } +} diff --git a/domains/amuffin.json b/domains/amuffin.json index 4d0538eed..2c5988a8c 100644 --- a/domains/amuffin.json +++ b/domains/amuffin.json @@ -5,7 +5,7 @@ "username": "amagicmuffin", "email": "2014wcheng@gmail.com" }, - "record": { + "records": { "CNAME": "amagicmuffin.github.io" } } diff --git a/domains/amy.json b/domains/amy.json index 0ec869526..5a815f628 100644 --- a/domains/amy.json +++ b/domains/amy.json @@ -5,7 +5,7 @@ "username": "nullishamy", "email": "contact@amyerskine.me" }, - "record": { + "records": { "CNAME": "nullishamy.github.io" } } diff --git a/domains/an.json b/domains/an.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/an.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/anaj00.json b/domains/anaj00.json index 3946ff60d..4199d3046 100644 --- a/domains/anaj00.json +++ b/domains/anaj00.json @@ -1,10 +1,9 @@ { "owner": { "username": "anaj00", - "discord": "726173201264279583", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.q9dOipcfQfyG9bEddrKynmNIS0Fex44YsKgBhDOFPFbGUX-BDKKePgU58S8VoJpNOZOlf1z0t_IOROvA_yXOgqboi8RWJ7MeohAFp9Vd_O4llkxDlHGzuRNrEqqUzr_ufvh2QSNQhkqFxG8Hg5P8F7BkPr51qA1gaZBPXfp-qYgTsgY1AAsB1BsQ0UUEpB6kwQPreJgoIiHQVI0Q7R9adXhQe11WIKhqAgGjl3pdCtTvTli2FsJCK6CaxeoQpnhLaoFT3HDzTNUUExBzG-cJRXwREWnJwbp6wKZ34HKFaNlf21cAsJRrGJCpzzE-oE6Yq_Si3Lqs9_1uacxjEtbTeA.-w3-ZOu80dbxWcgpHkIATw.hy-ckqmE-5uaKK-UlkLeahUomolJu7-GJWiQQpFvGqr4yCWxUSb6iduWtHWhsy9MIqphktkR6iAKH4fX7mx0Cpgp3C-CTx5hsVKoUohl-HE.jydd8-vu6z5ykX2vzY6weQ" + "discord": "726173201264279583" }, - "record": { + "records": { "CNAME": "anaj00.vercel.app" } } diff --git a/domains/analogsombra.json b/domains/analogsombra.json index 053b4d1e1..c1f835792 100644 --- a/domains/analogsombra.json +++ b/domains/analogsombra.json @@ -3,7 +3,7 @@ "username": "analog-sombra", "email": "analogsombra@gmail.com" }, - "record": { + "records": { "CNAME": "analog-sombra.github.io" } } diff --git a/domains/analytics.juststudio.json b/domains/analytics.juststudio.json new file mode 100644 index 000000000..fa434efbb --- /dev/null +++ b/domains/analytics.juststudio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "records": { + "A": ["34.120.54.55"], + "AAAA": ["2600:1901:0:6d85::"] + } +} diff --git a/domains/anamay.json b/domains/anamay.json index 1fb8f1101..da95e3eac 100644 --- a/domains/anamay.json +++ b/domains/anamay.json @@ -1,11 +1,10 @@ { "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" + "records": { + "CNAME": "anamay.eu.org" } } diff --git a/domains/anand-ramakrishna.json b/domains/anand-ramakrishna.json index 2df09e848..24a7234ec 100644 --- a/domains/anand-ramakrishna.json +++ b/domains/anand-ramakrishna.json @@ -4,7 +4,7 @@ "username": "theanandramakrishna", "email": "theanandramakrishna@gmail.com" }, - "record": { + "records": { "CNAME": "theanandramakrishna.github.io" } } diff --git a/domains/anand.json b/domains/anand.json new file mode 100644 index 000000000..13e3b611c --- /dev/null +++ b/domains/anand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anandd17", + "email": "avdoddamani123@gmail.com" + }, + "records": { + "CNAME": "anandd17.vercel.app" + } +} diff --git a/domains/anandyeole.json b/domains/anandyeole.json index dfef22de1..df96db15b 100644 --- a/domains/anandyeole.json +++ b/domains/anandyeole.json @@ -4,7 +4,7 @@ "username": "anandyeole", "email": "anandyeole@duck.com" }, - "record": { + "records": { "CNAME": "anandyeole.github.io" } } diff --git a/domains/ananth.json b/domains/ananth.json index a95fca724..2747e8483 100644 --- a/domains/ananth.json +++ b/domains/ananth.json @@ -5,7 +5,7 @@ "username": "ANANTH-SWAMY", "email": "ananth.nps@gmail.com" }, - "record": { + "records": { "CNAME": "ananth-swamy.github.io" } } diff --git a/domains/anas.json b/domains/anas.json index 96a8ab4e9..260da127f 100644 --- a/domains/anas.json +++ b/domains/anas.json @@ -5,7 +5,7 @@ "username": "ItzAnasov", "email": "anasybal@mail.ru" }, - "record": { + "records": { "CNAME": "itzanasov.github.io" } } diff --git a/domains/anatoli.json b/domains/anatoli.json new file mode 100644 index 000000000..387bca8aa --- /dev/null +++ b/domains/anatoli.json @@ -0,0 +1,10 @@ +{ + "description": "Anatoli Nicolae", + "owner": { + "username": "anatolinicolae", + "email": "is-a-dev@anatolinicolae.com" + }, + "records": { + "URL": "https://anatolinicolae.com/" + } +} diff --git a/domains/anautonell.json b/domains/anautonell.json index 6ccd9a8a7..eb5227d40 100644 --- a/domains/anautonell.json +++ b/domains/anautonell.json @@ -6,7 +6,7 @@ "email": "help@myprotect.xyz", "twitter": "fastsecurerblx" }, - "record": { + "records": { "CNAME": "anautonell.github.io" } } diff --git a/domains/anay-208.json b/domains/anay-208.json index 6d2c4d712..17958f80e 100644 --- a/domains/anay-208.json +++ b/domains/anay-208.json @@ -4,7 +4,7 @@ "email": "me@anayparaswani.dev", "discord": "anay_208" }, - "record": { + "records": { "URL": "https://anayparaswani.dev/" } } diff --git a/domains/anay.json b/domains/anay.json index 6d2c4d712..17958f80e 100644 --- a/domains/anay.json +++ b/domains/anay.json @@ -4,7 +4,7 @@ "email": "me@anayparaswani.dev", "discord": "anay_208" }, - "record": { + "records": { "URL": "https://anayparaswani.dev/" } } diff --git a/domains/anayparaswani.json b/domains/anayparaswani.json index 6d2c4d712..17958f80e 100644 --- a/domains/anayparaswani.json +++ b/domains/anayparaswani.json @@ -4,7 +4,7 @@ "email": "me@anayparaswani.dev", "discord": "anay_208" }, - "record": { + "records": { "URL": "https://anayparaswani.dev/" } } diff --git a/domains/anbuinfosec.json b/domains/anbuinfosec.json index 8f930e996..76e0d18c9 100644 --- a/domains/anbuinfosec.json +++ b/domains/anbuinfosec.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "anbuinfosec" - }, - "record": { - "CNAME": "anbuinfosec.github.io" - } -} + "owner": { + "username": "anbuinfosec" + }, + "records": { + "CNAME": "anbuinfosec.github.io" + } +} diff --git a/domains/andgyk.json b/domains/andgyk.json index 7263195f7..c8b14826e 100644 --- a/domains/andgyk.json +++ b/domains/andgyk.json @@ -5,7 +5,7 @@ "username": "andgyk", "email": "an4g7k@gmail.com" }, - "record": { + "records": { "CNAME": "andgyk.github.io" } } diff --git a/domains/andr.json b/domains/andr.json index 69528613d..fc15a8966 100644 --- a/domains/andr.json +++ b/domains/andr.json @@ -5,7 +5,7 @@ "username": "rbaks", "email": "andri.bakoson@gmail.com" }, - "record": { + "records": { "CNAME": "rbaks.github.io" } } diff --git a/domains/andre.json b/domains/andre.json new file mode 100644 index 000000000..0d6271a87 --- /dev/null +++ b/domains/andre.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/andrexduarte/adx", + "owner": { + "username": "andrexduarte", + "email": "andrexduarte@gmail.com" + }, + "records": { + "CNAME": "andrexduarte.github.io" + } +} diff --git a/domains/andrea.json b/domains/andrea.json index 515c2db76..29d88899f 100644 --- a/domains/andrea.json +++ b/domains/andrea.json @@ -1,11 +1,10 @@ { "description": "Personal site", - "repo": "https://github.com/andrea-capigiri", "owner": { "username": "andrea-capigiri", "email": "uadopo+isadev@pm.me" }, - "record": { - "A": ["212.237.38.154"] + "records": { + "A": ["62.171.176.192"] } } diff --git a/domains/andreh.json b/domains/andreh.json new file mode 100644 index 000000000..152d8ddd0 --- /dev/null +++ b/domains/andreh.json @@ -0,0 +1,10 @@ +{ + "description": "Personal coolify website for fun", + "owner": { + "username": "quickburrrn", + "email": "andre.hansen146@gmail.com" + }, + "records": { + "A": ["65.108.219.118"] + } +} diff --git a/domains/andrei.json b/domains/andrei.json index 4bd069461..086f3feba 100644 --- a/domains/andrei.json +++ b/domains/andrei.json @@ -4,7 +4,7 @@ "email": "ekingproject@gmail.com", "discord": "419584364410699786" }, - "record": { + "records": { "CNAME": "calegariandrei.github.io" } } diff --git a/domains/andreijiroh.json b/domains/andreijiroh.json index a02dd8b11..93fb89bd9 100644 --- a/domains/andreijiroh.json +++ b/domains/andreijiroh.json @@ -2,11 +2,10 @@ "owner": { "username": "ajhalili2006", "discord": "437044173825114113", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYflKk2IBSfS6chUMYUGHREeeZVR18nZA-TlYCa5lgQGaR1P6lixNKJAJcJv72mUkHus2VyrrxSkl5ttCTtBXFdFs8eA4jNFPjtvC_7Qt-i_v0UWs5rxtdZ2y3MsN6jzPeVzHcVq2gQG9RFdIniBHMKuEOfiPCPqXp_CbdjBddCRQRsIzunnAwof917053o4EV3JCMVN9ObW3Jdq9GD9QaB_vPG9HjFqzwlvSA6QFbQYYilvij7UF5I3pcLfNyOw3tascM6GMDlXJxtqL2r6HLo58MSagDKycFCuuxdfsRljnLypuwF0m_3bEV76QRpvMWY_NmW6FaveHLjzd82l0g.ABEBdXC3pvmyqoKfDAw86A.NNKf3gP3_-fzpnvGWIBJaSzsU-d1ZJsDFJSyc52B6pjz1LrYOeK_0-QjF8w1Y1xiaRz475Drvb-27xOCjANJjZlgtCVrG1mgVxWDanb30kmyV8KtNLnlGO3VKMWXqy7r.K9X3W6jos3JsIFCn6LGifA", "fediverse": "@ajhalili2006@tilde.zone", "bsky": "did:plc:wcx4c3osbuzrwmxkqdfqygwv" }, - "record": { - "NS": ["kallie.ns.cloudflare.com","tadeo.ns.cloudflare.com"] + "records": { + "NS": ["kallie.ns.cloudflare.com", "tadeo.ns.cloudflare.com"] } } diff --git a/domains/andres-jaramillo.json b/domains/andres-jaramillo.json new file mode 100644 index 000000000..9e66c8374 --- /dev/null +++ b/domains/andres-jaramillo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "andresfer1799", + "email": "andresfer1799@gmail.com" + }, + "records": { + "CNAME": "mi-portafolio-wine.vercel.app" + } +} diff --git a/domains/andres.json b/domains/andres.json index b72e4c382..0d92914f5 100644 --- a/domains/andres.json +++ b/domains/andres.json @@ -3,7 +3,7 @@ "username": "eneru2", "email": "elementaov@gmail.com" }, - "record": { + "records": { "A": ["130.61.184.180"] } } diff --git a/domains/andresarr.json b/domains/andresarr.json new file mode 100644 index 000000000..c75629b77 --- /dev/null +++ b/domains/andresarr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anonymous1223334444", + "email": "replit005@gmail.com" + }, + "records": { + "CNAME": "portofoliowebdev.vercel.app" + } +} diff --git a/domains/andrew.json b/domains/andrew.json new file mode 100644 index 000000000..20d354fd7 --- /dev/null +++ b/domains/andrew.json @@ -0,0 +1,11 @@ +{ + "description": "my portofolio", + "owner": { + "username": "lightningON90hz", + "email": "andrewworkmail123@gmail.com" + }, + "records": { + "A": ["69.30.249.53"] + }, + "proxied": false +} diff --git a/domains/andrewdxz.json b/domains/andrewdxz.json index c88dd2b21..2d0c24403 100644 --- a/domains/andrewdxz.json +++ b/domains/andrewdxz.json @@ -4,7 +4,7 @@ "email": "ghghello30@gmail.com", "discord": "970325505989574656" }, - "record": { + "records": { "CNAME": "andrewmack1.github.io" } } diff --git a/domains/andriampeno.json b/domains/andriampeno.json new file mode 100644 index 000000000..27fe1aebd --- /dev/null +++ b/domains/andriampeno.json @@ -0,0 +1,11 @@ +{ + "description": "Domain for my personal portfolio", + "repo": "https://github.com/odie100/odie100.github.io", + "owner": { + "username": "odie100", + "email": "andriampeno.odilon@gmail.com" + }, + "records": { + "CNAME": "odie100.github.io" + } +} diff --git a/domains/andrianina.json b/domains/andrianina.json index 69528613d..fc15a8966 100644 --- a/domains/andrianina.json +++ b/domains/andrianina.json @@ -5,7 +5,7 @@ "username": "rbaks", "email": "andri.bakoson@gmail.com" }, - "record": { + "records": { "CNAME": "rbaks.github.io" } } diff --git a/domains/andronasef.json b/domains/andronasef.json index 25145d5e1..6d06bc469 100644 --- a/domains/andronasef.json +++ b/domains/andronasef.json @@ -6,7 +6,7 @@ "email": "andronasef@gmail.com", "twitter": "andronasef" }, - "record": { + "records": { "CNAME": "andronasef.github.io" } } diff --git a/domains/andros.json b/domains/andros.json index 009bd3cf0..cbc0b0eaf 100644 --- a/domains/andros.json +++ b/domains/andros.json @@ -1,11 +1,10 @@ { "description": "Andros's personal developer website", - "repo": "https://github.com/tanrax", "owner": { "username": "tanrax", "twitter": "androsfenollosa" }, - "record": { + "records": { "URL": "https://programadorwebvalencia.com" } } diff --git a/domains/andy.json b/domains/andy.json index e6d4ec8f3..ddb2310fd 100644 --- a/domains/andy.json +++ b/domains/andy.json @@ -5,7 +5,7 @@ "username": "andyfaizan", "email": "andyfaizan@gmail.com" }, - "record": { + "records": { "CNAME": "andyfaizan.github.io" } } diff --git a/domains/aneeqkhurram007.json b/domains/aneeqkhurram007.json new file mode 100644 index 000000000..fa65ef4a6 --- /dev/null +++ b/domains/aneeqkhurram007.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aneeqkhurram007", + "email": "aneeqkhurram007@yahoo.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/aneeshraskar.json b/domains/aneeshraskar.json new file mode 100644 index 000000000..b121babca --- /dev/null +++ b/domains/aneeshraskar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zephyrus02", + "email": "aneeshraskar@gmail.com" + }, + "records": { + "CNAME": "aneesh-raskar.vercel.app" + } +} diff --git a/domains/angel.json b/domains/angel.json deleted file mode 100644 index 2b8a5383d..000000000 --- a/domains/angel.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "chewieleaf", - "email": "cchirrpy@outlook.com" - }, - "record": { - "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512" - } -} diff --git a/domains/angela-caldas.json b/domains/angela-caldas.json new file mode 100644 index 000000000..25f741902 --- /dev/null +++ b/domains/angela-caldas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sucodelarangela", + "email": "aes.caldas@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} \ No newline at end of file diff --git a/domains/angellopomayay.json b/domains/angellopomayay.json index e99027890..04cc5681b 100644 --- a/domains/angellopomayay.json +++ b/domains/angellopomayay.json @@ -3,7 +3,7 @@ "username": "Angello-Pomayay", "email": "angelopomayay@gmail.com" }, - "record": { + "records": { "CNAME": "angello-pomayay.github.io" } } diff --git a/domains/angelo.json b/domains/angelo.json index 248103332..504a08f58 100644 --- a/domains/angelo.json +++ b/domains/angelo.json @@ -5,7 +5,7 @@ "username": "angelofallars", "email": "ba.fallaria@gmail.com" }, - "record": { + "records": { "CNAME": "angelofallars.github.io" } } diff --git a/domains/angelwuff.json b/domains/angelwuff.json index b6f298fbb..13e946324 100644 --- a/domains/angelwuff.json +++ b/domains/angelwuff.json @@ -5,7 +5,7 @@ "username": "Angelix1", "twitter": "AngelTheWolfy" }, - "record": { + "records": { "CNAME": "angelix1.github.io" } } diff --git a/domains/angganix.json b/domains/angganix.json new file mode 100644 index 000000000..844a6a1ac --- /dev/null +++ b/domains/angganix.json @@ -0,0 +1,13 @@ +{ + "description": "For personal site, blogging, and displayed portofolio", + "repo": "https://github.com/angganix/angganix.github.io", + "owner": { + "username": "angganix", + "email": "angganix@gmail.com" + }, + "records": { + "CNAME": "angganix.github.io", + "TXT": "google-site-verification=q5JulUF0tB8rSEi7z2cnvV6IgMZr5En3l_O_uq70ijI" + }, + "proxied": true +} diff --git a/domains/anhdt.json b/domains/anhdt.json new file mode 100644 index 000000000..9d463c382 --- /dev/null +++ b/domains/anhdt.json @@ -0,0 +1,10 @@ +{ + "description": "anhdt.is-a.dev", + "owner": { + "username": "dtavnn", + "email": "dtafzum@gmail.com" + }, + "records": { + "CNAME": "dtavnn.github.io" + } +} diff --git a/domains/anhnguyen.json b/domains/anhnguyen.json index 57d64afc5..b15f358c5 100644 --- a/domains/anhnguyen.json +++ b/domains/anhnguyen.json @@ -1,15 +1,11 @@ { "owner": { "username": "NgTuanAnhDev", - "discord": "828117990746226730", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.dxFeMXIpetS-y-w2HhyPm3jT9qQD7VXlzrjuKr0X2tYaDAsa5e-ZLfdoQ0Vi6ij2hVaULCTbvnhDGodA8Vfo2Bav69FAanB0eQp_-9e8C2O8XTm7Hc1PfQG0-QdASqYXzQLxa2K8Zsyi7i_MnjW9QcXB6OopVDPzuQkIFCD0ZBIMpxfSMYoZIJwWMIODl7qkdlrwOJaHev94VAEU8wjl9jdTJ7qUqwG_K8r2FXnRU4nvA8UUGbqoiTwqXgNWdln4S_dT6gRG1oINXS8MU55sRP_nrUsNYm5QRWiqFsKe9Ti8z00YhSJ3bvZLl353penT2lQfSdj2zEqBVNdp_J4s9Q._wjr6pPUcgjV8Pcqmb5jZw.qP7dPu7h2ZYoxAL8EzCmNuh_96Ak46xR4iMj14zoxcBMRnIKqxWQzPMp31OhvCP-a4j-_Ch3Xx4Qyl0AFKHF1b_itAmAo29o5QuG9Z3meYcHkwIxE7rrHLhnT6YaGXL_.2L3kt8GB7vNmXFwn5NauTA" + "discord": "828117990746226730" }, - "record": { + "records": { "A": ["103.97.126.29"], - "TXT": [ - "zoho-verification=zb23469214.zmverify.zoho.com", - "v=spf1 include:zohomail.com ~all" - ], + "TXT": ["zoho-verification=zb23469214.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] } } diff --git a/domains/anhnguyen94.json b/domains/anhnguyen94.json index 498cfa301..2897a0021 100644 --- a/domains/anhnguyen94.json +++ b/domains/anhnguyen94.json @@ -1,10 +1,10 @@ { - "description": "Portfolio redirect for anhnguyen1907", - "owner": { - "username": "anhnguyen1907", - "email": "cau2tomy@gmail.com" - }, - "record": { + "description": "Portfolio redirect for anhnguyen1907", + "owner": { + "username": "anhnguyen1907", + "email": "cau2tomy@gmail.com" + }, + "records": { "CNAME": "anhnguyen1907.github.io" - } + } } diff --git a/domains/anhvt.json b/domains/anhvt.json new file mode 100644 index 000000000..7b144e0c8 --- /dev/null +++ b/domains/anhvt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anhvt3010", + "email": "anh.vt.3010@gmail.com" + }, + "records": { + "CNAME": "build-cv.vercel.app" + } +} diff --git a/domains/anibalbastiass.json b/domains/anibalbastiass.json new file mode 100644 index 000000000..7a0cd306f --- /dev/null +++ b/domains/anibalbastiass.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anibalbastiass", + "email": "anibal.bastias@gmail.com" + }, + "records": { + "CNAME": "anibalbastiass.github.io" + } +} diff --git a/domains/aniket-thapa.json b/domains/aniket-thapa.json index f6c9aad0e..26019e0d6 100644 --- a/domains/aniket-thapa.json +++ b/domains/aniket-thapa.json @@ -4,7 +4,7 @@ "email": "aniketthapa04@gmail.com", "discord": "1249367001961463962" }, - "record": { + "records": { "CNAME": "aniket-thapa.github.io" } } diff --git a/domains/aniket.json b/domains/aniket.json new file mode 100644 index 000000000..571aec6fc --- /dev/null +++ b/domains/aniket.json @@ -0,0 +1,10 @@ +{ + "description": "Domain that redirects to my personal portfolio", + "owner": { + "username": "anikxt", + "email": "aniket15304@gmail.com" + }, + "records": { + "URL": "https://aniket.codes" + } +} diff --git a/domains/aniketrajsingh.json b/domains/aniketrajsingh.json index 063829a74..dbc457490 100644 --- a/domains/aniketrajsingh.json +++ b/domains/aniketrajsingh.json @@ -6,7 +6,7 @@ "email": "aniket@tfug-ghaziabad.tech", "twitter": "aniketrajsingh_" }, - "record": { + "records": { "CNAME": "aniketrajsingh.github.io" } } diff --git a/domains/anime-oni.json b/domains/anime-oni.json index 6ad6ff2cd..0b38d7a08 100644 --- a/domains/anime-oni.json +++ b/domains/anime-oni.json @@ -4,7 +4,7 @@ "email": "hiba.aashir@gmail.com", "discord": "1014232959143907429" }, - "record": { + "records": { "CNAME": "anime-oni.github.io" } } diff --git a/domains/anime.girl.json b/domains/anime.girl.json new file mode 100644 index 000000000..f790320b1 --- /dev/null +++ b/domains/anime.girl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "records": { + "CNAME": "ukriu.pages.dev" + } +} diff --git a/domains/anime.json b/domains/anime.json deleted file mode 100644 index e2c8dec17..000000000 --- a/domains/anime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "zarqizoubir", - "email": "zarqi.ezzoubair@etu.uae.ac.ma" - }, - "record": { - "CNAME": "zarqizoubir.github.io" - } -} diff --git a/domains/animesh-kotka.json b/domains/animesh-kotka.json new file mode 100644 index 000000000..6767df3d1 --- /dev/null +++ b/domains/animesh-kotka.json @@ -0,0 +1,11 @@ +{ + "description": "Simple Portfolio", + "repo": "https://github.com/AnimeshKotka/Animesh-Kotka-Portfolio", + "owner": { + "username": "AnimeshKotka", + "email": "animesh@kotka.tech" + }, + "records": { + "CNAME": "animeshkotka.github.io" + } +} diff --git a/domains/animesh.json b/domains/animesh.json index fb1bad073..dbb9086a7 100644 --- a/domains/animesh.json +++ b/domains/animesh.json @@ -3,7 +3,7 @@ "username": "animeshryu", "email": "animeshryu@gmail.com" }, - "record": { + "records": { "CNAME": "animesh.pages.dev" } } diff --git a/domains/anindra.json b/domains/anindra.json index b3402c5b3..6619aba96 100644 --- a/domains/anindra.json +++ b/domains/anindra.json @@ -5,7 +5,7 @@ "email": "anindrakarmakar+pnswp5ix@proton.me", "twitter": "i_anindra" }, - "record": { + "records": { "CNAME": "meanindra.github.io" } } diff --git a/domains/anirbaaaan.json b/domains/anirbaaaan.json deleted file mode 100644 index b2ba80add..000000000 --- a/domains/anirbaaaan.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "AAAA": [ - "2606:50c0:8000::153", - "2606:50c0:8001::153", - "2606:50c0:8002::153", - "2606:50c0:8003::153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] - } -} diff --git a/domains/anirban-das.json b/domains/anirban-das.json new file mode 100644 index 000000000..cb6ccbea3 --- /dev/null +++ b/domains/anirban-das.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sherlock5000", + "email": "danirban5000@gmail.com" + }, + "records": { + "CNAME": "sherlock5000.github.io" + } +} diff --git a/domains/anish.json b/domains/anish.json index 8b26bd598..b6d6a3bfe 100644 --- a/domains/anish.json +++ b/domains/anish.json @@ -6,7 +6,7 @@ }, "description": "This website is for my personal portfolio.", "repo": "https://github.com/anish-mandal/anish-mandal.github.io", - "record": { + "records": { "CNAME": "anish-mandal.github.io" } } diff --git a/domains/aniwon.json b/domains/aniwon.json index e3db2432c..e3e46fbf9 100644 --- a/domains/aniwon.json +++ b/domains/aniwon.json @@ -4,7 +4,7 @@ "email": "panwarnishchey+02@gmail.com", "discord": "821976026984611850" }, - "record": { + "records": { "A": ["185.191.231.137"] } } diff --git a/domains/ankiprajapati.json b/domains/ankiprajapati.json index 3537ed120..ebc893d14 100644 --- a/domains/ankiprajapati.json +++ b/domains/ankiprajapati.json @@ -4,7 +4,7 @@ "owner": { "username": "ankiprajapati" }, - "record": { + "records": { "CNAME": "ankiprajapati.github.io" } } diff --git a/domains/ankit-acquaintsoft.json b/domains/ankit-acquaintsoft.json index 8fbc75f61..fbe906a7f 100644 --- a/domains/ankit-acquaintsoft.json +++ b/domains/ankit-acquaintsoft.json @@ -4,7 +4,7 @@ "owner": { "username": "ankit-dere" }, - "record": { + "records": { "CNAME": "ankit-acquaintsoft.github.io" } } diff --git a/domains/ankit-chaubey.json b/domains/ankit-chaubey.json index d5e3be97d..d3179da9e 100644 --- a/domains/ankit-chaubey.json +++ b/domains/ankit-chaubey.json @@ -7,7 +7,7 @@ "telegram": "ankit_chaubey", "github": "ankit-chaubey" }, - "record": { + "records": { "CNAME": "ankit-chaubey.github.io" } } diff --git a/domains/ankit-kelkar.json b/domains/ankit-kelkar.json new file mode 100644 index 000000000..d809dfd8d --- /dev/null +++ b/domains/ankit-kelkar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akelkar3", + "email": "ankit.kelkar@gmail.com" + }, + "records": { + "CNAME": "akelkar3.github.io" + } +} diff --git a/domains/ankit.json b/domains/ankit.json index d251fed82..f9bc5b8cf 100644 --- a/domains/ankit.json +++ b/domains/ankit.json @@ -5,7 +5,7 @@ "username": "ankitjain-1", "email": "akjain6067.aj@gmail.com" }, - "record": { + "records": { "CNAME": "ankitjain-1.github.io" } } diff --git a/domains/ankitchaubey.json b/domains/ankitchaubey.json index d5e3be97d..d3179da9e 100644 --- a/domains/ankitchaubey.json +++ b/domains/ankitchaubey.json @@ -7,7 +7,7 @@ "telegram": "ankit_chaubey", "github": "ankit-chaubey" }, - "record": { + "records": { "CNAME": "ankit-chaubey.github.io" } } diff --git a/domains/anmail.json b/domains/anmail.json index f6144335f..6fea1f054 100644 --- a/domains/anmail.json +++ b/domains/anmail.json @@ -5,7 +5,7 @@ "username": "ririko5834", "email": "wolfo89+anmail@protonmail.com" }, - "record": { + "records": { "A": ["167.235.217.200"], "MX": [ "5d84c429388a8a21.mx2.emailprofi.seznam.cz", diff --git a/domains/anmol-chaudhary.json b/domains/anmol-chaudhary.json new file mode 100644 index 000000000..eff313293 --- /dev/null +++ b/domains/anmol-chaudhary.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/4nmolChaudhary/portfolio-v2", + "owner": { + "username": "4nmolChaudhary", + "email": "chaudharyanmol321@gmail.com" + }, + "records": { + "CNAME": "anmol-chaudhary.vercel.app" + } +} diff --git a/domains/anmol.json b/domains/anmol.json new file mode 100644 index 000000000..a9e03c592 --- /dev/null +++ b/domains/anmol.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio webpage", + "repo": "https://github.com/tecanmol/Portfolio", + "owner": { + "username": "tecanmol", + "email": "panmol735@gmail.com" + }, + "records": { + "CNAME": "tecanmol.github.io" + } +} diff --git a/domains/ann.json b/domains/ann.json index c89a3086d..335ea1e04 100644 --- a/domains/ann.json +++ b/domains/ann.json @@ -5,7 +5,7 @@ "username": "true1ann", "email": "true1ann@tutamail.com" }, - "record": { + "records": { "CNAME": "true1ann.github.io" } } diff --git a/domains/anna.json b/domains/anna.json index 622e3f44c..b429943e2 100644 --- a/domains/anna.json +++ b/domains/anna.json @@ -4,7 +4,7 @@ "email": "iamrvins@gmail.com", "discord": "1206164385911799850" }, - "record": { + "records": { "CNAME": "annanas271.github.io" } } diff --git a/domains/annant.json b/domains/annant.json index 78cb5f780..4b11c367d 100644 --- a/domains/annant.json +++ b/domains/annant.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "ThatNerdyKun", -"discord": "629851641579044874" - }, - - "record": { - "CNAME": "annant.pages.dev" - } + "owner": { + "username": "ThatNerdyKun", + "discord": "629851641579044874" + }, + "records": { + "CNAME": "annant.pages.dev" + } } diff --git a/domains/annihilatorrrr.json b/domains/annihilatorrrr.json index 600f87a54..f89ca15f1 100644 --- a/domains/annihilatorrrr.json +++ b/domains/annihilatorrrr.json @@ -6,7 +6,7 @@ "email": "annihilatorspark@gmail.com", "telegram": "annihilatorrrr" }, - "record": { + "records": { "CNAME": "annihilatorrrr.github.io" } } diff --git a/domains/anon.json b/domains/anon.json index 9a4eb40da..81ad0da0c 100644 --- a/domains/anon.json +++ b/domains/anon.json @@ -5,7 +5,7 @@ "username": "anondev-sudo", "email": "contact@anonym-dev.tk" }, - "record": { + "records": { "A": ["216.24.57.1"], "MX": [ "4e7b2afdee66dc77.mx1.emailprofi.seznam.cz", diff --git a/domains/anonfr.json b/domains/anonfr.json index 4cc83aa68..53d5ffc63 100644 --- a/domains/anonfr.json +++ b/domains/anonfr.json @@ -3,7 +3,7 @@ "username": "anonfr", "email": "anonfrr@protonmail.com" }, - "record": { + "records": { "CNAME": "anonfr.github.io" } } diff --git a/domains/anony.json b/domains/anony.json new file mode 100644 index 000000000..89287a3c9 --- /dev/null +++ b/domains/anony.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "celestix", + "email": "i@anodite.me" + }, + "records": { + "URL": "https://anodite.me/" + } +} diff --git a/domains/ansari-atharnadim.json b/domains/ansari-atharnadim.json index 6837342f1..afb52eaa1 100644 --- a/domains/ansari-atharnadim.json +++ b/domains/ansari-atharnadim.json @@ -4,7 +4,7 @@ "owner": { "username": "ansari-atharnadim" }, - "record": { + "records": { "CNAME": "ansari-atharnadim.github.io" } } diff --git a/domains/ansari-saify.json b/domains/ansari-saify.json index 59002b04f..8a0467f4c 100644 --- a/domains/ansari-saify.json +++ b/domains/ansari-saify.json @@ -4,7 +4,7 @@ "owner": { "username": "ansari-saify" }, - "record": { + "records": { "CNAME": "ansari-saify.github.io" } } diff --git a/domains/ansh.json b/domains/ansh.json new file mode 100644 index 000000000..44273d83c --- /dev/null +++ b/domains/ansh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anshaneja5", + "email": "anshanejaa@gmail.com" + }, + "records": { + "CNAME": "portfolio-xi-liard-96.vercel.app" + } +} diff --git a/domains/anshdadwal.json b/domains/anshdadwal.json index fb6ea974c..bd302efda 100644 --- a/domains/anshdadwal.json +++ b/domains/anshdadwal.json @@ -3,7 +3,7 @@ "username": "T-Dynamos", "email": "anshdadwal298@gmail.com" }, - "record": { + "records": { "CNAME": "t-dynamos.github.io" } } diff --git a/domains/anshkabra.json b/domains/anshkabra.json new file mode 100644 index 000000000..ed0c5ad60 --- /dev/null +++ b/domains/anshkabra.json @@ -0,0 +1,12 @@ +{ + "description": "For my portfolio", + "repo": "https://github.com/Anshkabra2012/portfolio", + "owner": { + "username": "AnshKabra2012", + "email": "anshkabra.india@gmail.com", + "discord": "anshkabra2012" + }, + "records": { + "CNAME": "anshkabra2012.github.io" + } +} diff --git a/domains/anshtyagi.json b/domains/anshtyagi.json index d67363e53..28440ae26 100644 --- a/domains/anshtyagi.json +++ b/domains/anshtyagi.json @@ -1,11 +1,10 @@ { "description": "Ansh's personal website", - "repo": "https://github.com/anshtyagi0", "owner": { "username": "anshtyagi0", "email": "tyagiansh175@gmail.com" }, - "record": { + "records": { "CNAME": "anshtyagi0093.github.io" } } diff --git a/domains/anshu.json b/domains/anshu.json index 6b337d13d..b1a2750fe 100644 --- a/domains/anshu.json +++ b/domains/anshu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anshu-prakash", - "email": "anshuprakash8445@gmail.com" - }, - "record": { - "CNAME": "anshu-prakash.github.io" - } + "owner": { + "username": "anshu-prakash", + "email": "anshuprakash8445@gmail.com" + }, + "records": { + "CNAME": "anshu-prakash.github.io" + } } diff --git a/domains/ante.json b/domains/ante.json index 3e3cb8301..1ca1dabf6 100644 --- a/domains/ante.json +++ b/domains/ante.json @@ -1,10 +1,28 @@ { - "owner": { - "username": "antebrl", - "email": "ahcwnh@gmail.com" - }, - "record": { - "A": ["130.61.108.36"], - "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] - } + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "records": { + "A": ["130.61.108.36"], + "MX": [ + { + "target": "mx.zoho.eu", + "priority": 10 + }, + { + "target": "mx2.zoho.eu", + "priority": 20 + }, + { + "target": "mx3.zoho.eu", + "priority": 50 + } + ], + "TXT": [ + "dh=6d109bce7d0aeacdc4a573c959d85a778d239527", + "zoho-verification=zb08689376.zmverify.zoho.eu", + "v=spf1 include:zohomail.eu ~all" + ] + } } diff --git a/domains/anthony.json b/domains/anthony.json index a9586a5b3..d3b6009ee 100644 --- a/domains/anthony.json +++ b/domains/anthony.json @@ -4,7 +4,7 @@ "username": "hubsta", "email": "admin@thehubble.com.au" }, - "record": { + "records": { "CNAME": "brisbaneweb.dev" } } diff --git a/domains/anthony2be.json b/domains/anthony2be.json index aa83523a4..625972aa1 100644 --- a/domains/anthony2be.json +++ b/domains/anthony2be.json @@ -6,7 +6,7 @@ "email": "adubovitsky1234@gmail.com", "discord": "anthony2be#1900" }, - "record": { + "records": { "CNAME": "anthony2be-blog.deno.dev" } } diff --git a/domains/anthonydev.json b/domains/anthonydev.json new file mode 100644 index 000000000..f40035dda --- /dev/null +++ b/domains/anthonydev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anthonyuseche", + "email": "anthonyuseche64@gmail.com" + }, + "records": { + "CNAME": "anthonyuseche.github.io" + } +} diff --git a/domains/anthrxc.json b/domains/anthrxc.json new file mode 100644 index 000000000..5510a1866 --- /dev/null +++ b/domains/anthrxc.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/anthrxc/portfolio", + "owner": { + "username": "anthrxc", + "email": "anthromadayt@gmail.com" + }, + "records": { + "CNAME": "anthrxc.github.io" + } +} diff --git a/domains/anthxny.json b/domains/anthxny.json new file mode 100644 index 000000000..56c6bb3fb --- /dev/null +++ b/domains/anthxny.json @@ -0,0 +1,11 @@ +{ + "description": "My perosnal portfolio", + "repo": "https://github.com/anthonycursewl/brd-portfolio", + "owner": { + "username": "anthonycursewl", + "email": "zerpaathony.wx@breadriuss.com" + }, + "records": { + "CNAME": "anthportafolio.netlify.app" + } +} diff --git a/domains/anticens.json b/domains/anticens.json index 8b530db41..b999a7f9b 100644 --- a/domains/anticens.json +++ b/domains/anticens.json @@ -3,7 +3,7 @@ "username": "IfVar", "email": "LZT7@proton.me" }, - "record": { + "records": { "CNAME": "anticens.github.io" } } diff --git a/domains/antimanipulationbridgade.json b/domains/antimanipulationbridgade.json index 726befd50..4dcdef8bf 100644 --- a/domains/antimanipulationbridgade.json +++ b/domains/antimanipulationbridgade.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/antlis.json b/domains/antlis.json index f70809489..2bc7cf424 100644 --- a/domains/antlis.json +++ b/domains/antlis.json @@ -5,7 +5,7 @@ "username": "antlis", "email": "crabs@cock.li" }, - "record": { + "records": { "CNAME": "antlis.github.io" } } diff --git a/domains/anto.json b/domains/anto.json index 8e0e1174e..4318ccf4e 100644 --- a/domains/anto.json +++ b/domains/anto.json @@ -3,7 +3,7 @@ "username": "hardianto01", "email": "hardiantojek92@gmail.com" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/antoangiaothong.akk1to.json b/domains/antoangiaothong.akk1to.json index 1e9ffd5d2..dd3addfe3 100644 --- a/domains/antoangiaothong.akk1to.json +++ b/domains/antoangiaothong.akk1to.json @@ -6,7 +6,7 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { + "records": { "CNAME": "akk1to.github.io" } } diff --git a/domains/antogamer.json b/domains/antogamer.json index 0cc101220..a1eb178c7 100644 --- a/domains/antogamer.json +++ b/domains/antogamer.json @@ -5,7 +5,7 @@ "discord": "thisisanto", "twitter": "ThisIsAnto_" }, - "record": { + "records": { "A": ["141.144.196.233"] } } diff --git a/domains/anton.json b/domains/anton.json index e61a5235a..16c09c75f 100644 --- a/domains/anton.json +++ b/domains/anton.json @@ -3,7 +3,7 @@ "username": "rorosin", "email": "rosin886@gmail.com" }, - "record": { + "records": { "CNAME": "ru.ardev.tk" } } diff --git a/domains/antonio.json b/domains/antonio.json index 636e10ca0..5e3e40151 100644 --- a/domains/antonio.json +++ b/domains/antonio.json @@ -5,7 +5,7 @@ "username": "YantCaccia", "email": "yantcaccia@gmail.com" }, - "record": { + "records": { "CNAME": "yantcaccia.github.io" } } diff --git a/domains/antony.json b/domains/antony.json new file mode 100644 index 000000000..ac6f6c9fb --- /dev/null +++ b/domains/antony.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AntonyPeter0", + "email": "antonypeter1998@gmail.com" + }, + "description": "Sample resume page created for placeholding", + "records": { + "CNAME": "antonypeter0.github.io" + } +} diff --git a/domains/antton.json b/domains/antton.json index c054120bd..58f89fec7 100644 --- a/domains/antton.json +++ b/domains/antton.json @@ -3,7 +3,7 @@ "username": "antton-dev", "email": "antton.chevrier@etik.com" }, - "record": { + "records": { "CNAME": "antton-dev.github.io" } } diff --git a/domains/anttondev.json b/domains/anttondev.json index 3f8cd350e..12c82360b 100644 --- a/domains/anttondev.json +++ b/domains/anttondev.json @@ -5,7 +5,7 @@ "username": "antton-dev", "email": "antton.chevrier@etik.com" }, - "record": { + "records": { "CNAME": "antton-dev.github.io" } } diff --git a/domains/anubhav-pathak.json b/domains/anubhav-pathak.json index 4daf901ba..8c251c3a4 100644 --- a/domains/anubhav-pathak.json +++ b/domains/anubhav-pathak.json @@ -5,7 +5,7 @@ "username": "Anubhav-Pathak", "email": "anubhavpathak99@gmail.com" }, - "record": { + "records": { "CNAME": "anubhav-pathak.github.io" } } diff --git a/domains/anubhav823.json b/domains/anubhav823.json index 66b5a26ab..d3fd19ccc 100644 --- a/domains/anubhav823.json +++ b/domains/anubhav823.json @@ -4,7 +4,7 @@ "username": "anubhav823", "email": "anubhav823@gmail.com" }, - "record": { + "records": { "URL": "https://anubhav823.github.io/wordle" } } diff --git a/domains/anuj.json b/domains/anuj.json index 895e640b6..d9951ac30 100644 --- a/domains/anuj.json +++ b/domains/anuj.json @@ -5,7 +5,7 @@ "username": "AnujMutha", "email": "mutha.am16@gmail.com" }, - "record": { + "records": { "CNAME": "anujmutha.github.io" } } diff --git a/domains/anujer.json b/domains/anujer.json new file mode 100644 index 000000000..8e58eccec --- /dev/null +++ b/domains/anujer.json @@ -0,0 +1,11 @@ +{ + "description": "Anuj' Welcome to my portfolio", + "repo": "https://github.com/Anuj-er/Folio-Anuj", + "owner": { + "username": "Anuj-er", + "email": "anujkumar142000@gmail.com" + }, + "records": { + "CNAME": "siwach.vercel.app" + } +} diff --git a/domains/anukarop.json b/domains/anukarop.json index b25c1a9aa..5a3895cdf 100644 --- a/domains/anukarop.json +++ b/domains/anukarop.json @@ -4,7 +4,7 @@ "email": "anukarmishra2707@gmail.com", "discord": "AnukarOP" }, - "record": { + "records": { "CNAME": "anukarop.github.io" } } diff --git a/domains/anumeya.json b/domains/anumeya.json index 650a1eaf7..91428b09f 100644 --- a/domains/anumeya.json +++ b/domains/anumeya.json @@ -3,7 +3,7 @@ "username": "KreativeThinker", "email": "sagely2005eagle@gmail.com" }, - "record": { + "records": { "CNAME": "kreativethinker.github.io" } } diff --git a/domains/anurag.json b/domains/anurag.json index 90a981b07..8de448414 100644 --- a/domains/anurag.json +++ b/domains/anurag.json @@ -3,7 +3,7 @@ "username": "anuragjawalkar", "email": "anurag24jawalkar@gmail.com" }, - "record": { + "records": { "CNAME": "anuragjawalkar.github.io" } } diff --git a/domains/anuraglimbu.json b/domains/anuraglimbu.json new file mode 100644 index 000000000..d29fecad4 --- /dev/null +++ b/domains/anuraglimbu.json @@ -0,0 +1,10 @@ +{ + "description": "This subdomain is for my personal portfolio website.", + "owner": { + "username": "auraglimbu", + "email": "anuraglimbu2018@gmail.com" + }, + "records": { + "URL": "https://anuraglimbu.com.np" + } +} diff --git a/domains/anushi.json b/domains/anushi.json new file mode 100644 index 000000000..7d7db4762 --- /dev/null +++ b/domains/anushi.json @@ -0,0 +1,11 @@ +{ + "description": "Anushi' Welcome to my portfolio", + "repo": "https://github.com/anushi13prsnl/Anushi-Portfolio/", + "owner": { + "username": "Anushi13prsnl", + "email": "anushi4849@gmail.com" + }, + "records": { + "CNAME": "anushi-portfolio.vercel.app" + } +} diff --git a/domains/anveshraman.json b/domains/anveshraman.json new file mode 100644 index 000000000..7d05b68f4 --- /dev/null +++ b/domains/anveshraman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SA-Army", + "email": "anveshraman.ae@gmail.com" + }, + "records": { + "CNAME": "developeranveshraman.github.io" + } +} diff --git a/domains/anw.json b/domains/anw.json new file mode 100644 index 000000000..c8d31292b --- /dev/null +++ b/domains/anw.json @@ -0,0 +1,10 @@ +{ + "description": "ANW's (Subhrajit Sain) Personal Site", + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "records": { + "CNAME": "anw-site.vercel.app" + } +} diff --git a/domains/any.json b/domains/any.json index de7da893f..2558e8123 100644 --- a/domains/any.json +++ b/domains/any.json @@ -3,7 +3,7 @@ "username": "IRDMctorl", "email": "fun64646969@gmail.com" }, - "record": { + "records": { "CNAME": "any-w1a3.onrender.com" } } diff --git a/domains/aocsa.json b/domains/aocsa.json new file mode 100644 index 000000000..575ce2362 --- /dev/null +++ b/domains/aocsa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aocsa", + "email": "alexander.ocsa@gmail.com" + }, + "records": { + "CNAME": "aocsa.github.io" + } +} diff --git a/domains/aoozora.json b/domains/aoozora.json new file mode 100644 index 000000000..84fc055fe --- /dev/null +++ b/domains/aoozora.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aoozoraa", + "email": "akuummuu@gmail.com" + }, + "records": { + "A": ["143.47.59.128"] + } +} diff --git a/domains/aozora.json b/domains/aozora.json index 35701f9af..ab8e8843a 100644 --- a/domains/aozora.json +++ b/domains/aozora.json @@ -1,11 +1,10 @@ { "description": "Just my personal website", - "repo": "https://github.com/AozoraDev", "owner": { "username": "AozoraDev", "email": "aozoradeveloper@gmail.com" }, - "record": { + "records": { "CNAME": "website-production-5fc2.up.railway.app" } } diff --git a/domains/ap2.json b/domains/ap2.json index 4f1926b86..45bee33be 100644 --- a/domains/ap2.json +++ b/domains/ap2.json @@ -3,7 +3,7 @@ "username": "code-hunt-in", "email": "aishwary.pandore@somaiya.edu" }, - "record": { + "records": { "CNAME": "code-hunt-in.github.io" } } diff --git a/domains/apam.json b/domains/apam.json index ace8aeeb8..c533c727b 100644 --- a/domains/apam.json +++ b/domains/apam.json @@ -3,7 +3,7 @@ "username": "iamxani", "email": "xenpei11@gmail.com" }, - "record": { + "records": { "CNAME": "iamxani.github.io" } } diff --git a/domains/apep.json b/domains/apep.json index 500e0129c..4eaabc336 100644 --- a/domains/apep.json +++ b/domains/apep.json @@ -4,7 +4,7 @@ "email": "afifeka20@gmail.com", "discord": "331616752767205378" }, - "record": { + "records": { "A": ["8.222.249.188"] } } diff --git a/domains/apgyorfi.json b/domains/apgyorfi.json index ded124ff7..05b112b43 100644 --- a/domains/apgyorfi.json +++ b/domains/apgyorfi.json @@ -3,7 +3,7 @@ "username": "apgyorfi", "email": "apgyorfi@protonmail.com" }, - "record": { + "records": { "CNAME": "gfsys.hu" } } diff --git a/domains/api-kirito.json b/domains/api-kirito.json index f5bafe9cb..ab5068697 100644 --- a/domains/api-kirito.json +++ b/domains/api-kirito.json @@ -1,11 +1,10 @@ { "description": "For My API!", - "repo": "https://github.com/ThisMe124", "owner": { "username": "ThisMe124", "email": "anonymous.orgn@gmail.com" }, - "record": { + "records": { "CNAME": "only-devs-production.up.railway.app" } } diff --git a/domains/api-peantastic.json b/domains/api-peantastic.json index 97223312a..a15682f33 100644 --- a/domains/api-peantastic.json +++ b/domains/api-peantastic.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "peantastic", - "email": "leostark.vndev@gmail.com" - }, - "description": "Hello, my name is Peantastic, and I am a dedicated developer with a passion for creating innovative solutions and enhancing user experiences. It's a pleasure to connect with you!", - "repo": "https://github.com/peantastic/", - "record": { - "CNAME": "tantinh.onrender.com" - } -} \ No newline at end of file + "owner": { + "username": "peantastic", + "email": "leostark.vndev@gmail.com" + }, + "description": "Hello, my name is Peantastic, and I am a dedicated developer with a passion for creating innovative solutions and enhancing user experiences. It's a pleasure to connect with you!", + "repo": "https://github.com/peantastic/", + "records": { + "CNAME": "tantinh.onrender.com" + } +} diff --git a/domains/api.acronical.json b/domains/api.acronical.json index 335fb70a7..7dc9d2ef3 100644 --- a/domains/api.acronical.json +++ b/domains/api.acronical.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "AcronicalYT", - "email": "acronicalbusiness@gmail.com" - }, - "record": { - "A": [ - "138.68.133.84" - ] - } + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "records": { + "A": ["138.68.133.84"] + } } diff --git a/domains/api.anshtyagi.json b/domains/api.anshtyagi.json index e237132d7..2350bbb55 100644 --- a/domains/api.anshtyagi.json +++ b/domains/api.anshtyagi.json @@ -1,11 +1,10 @@ { "description": "API WEBSITE", - "repo": "https://github.com/anshtyagi0", "owner": { "username": "anshtyagi0", "email": "tyagiansh175@gmail.com" }, - "record": { + "records": { "A": ["20.197.60.252"] } } diff --git a/domains/api.bala.json b/domains/api.bala.json new file mode 100644 index 000000000..acee87d5f --- /dev/null +++ b/domains/api.bala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "records": { + "CNAME": "s37e9nua.up.railway.app" + } +} diff --git a/domains/api.catzboy.json b/domains/api.catzboy.json index 376e4f271..312a7b509 100644 --- a/domains/api.catzboy.json +++ b/domains/api.catzboy.json @@ -5,7 +5,7 @@ "username": "Maruful007", "email": "marufulislamsami2007@gmail.com" }, - "record": { + "records": { "CNAME": "maruful007.github.io" } } diff --git a/domains/api.dark.json b/domains/api.dark.json new file mode 100644 index 000000000..abed31ca3 --- /dev/null +++ b/domains/api.dark.json @@ -0,0 +1,11 @@ +{ + "description": "API for a Discord bot", + "owner": { + "username": "BruhDark", + "email": "darkpxint@gmail.com", + "discord": "dark.py" + }, + "records": { + "A": ["34.57.65.208"] + } +} diff --git a/domains/api.formuna.json b/domains/api.formuna.json index 9e85e83df..28ddba866 100644 --- a/domains/api.formuna.json +++ b/domains/api.formuna.json @@ -2,7 +2,7 @@ "owner": { "username": "FormunaGit" }, - "record": { + "records": { "CNAME": "formuna-api.vercel.app" } } diff --git a/domains/api.gizzy.json b/domains/api.gizzy.json index dfda75708..2aebe6c89 100644 --- a/domains/api.gizzy.json +++ b/domains/api.gizzy.json @@ -4,7 +4,7 @@ "username": "GizzyUwU", "discord": "gizzyowo" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/api.juststudio.json b/domains/api.juststudio.json index f6d1dc59b..2e9fbbda8 100644 --- a/domains/api.juststudio.json +++ b/domains/api.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "A": ["34.120.54.55"], "AAAA": ["2600:1901:0:6d85::"] } diff --git a/domains/api.karyakarsa.willo.json b/domains/api.karyakarsa.willo.json deleted file mode 100644 index c70b3e330..000000000 --- a/domains/api.karyakarsa.willo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "api for karyakarsa", - "repo": "https://github.com/WilloIzCitron/karyakarsa-rest-api", - "owner": { - "username": "WilloIzCitron", - "twitter": "willoizcitron" - }, - "record": { - "CNAME": "karyakarsa-rest-api-production.up.railway.app" - } -} diff --git a/domains/api.katidoki.json b/domains/api.katidoki.json new file mode 100644 index 000000000..e1a8fc769 --- /dev/null +++ b/domains/api.katidoki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hitoshi-okada", + "email": "okada@katidoki.com" + }, + "records": { + "CNAME": "hitoshi-okada.github.io" + } +} diff --git a/domains/api.kruase.json b/domains/api.kruase.json new file mode 100644 index 000000000..73a8578de --- /dev/null +++ b/domains/api.kruase.json @@ -0,0 +1,12 @@ +{ + "description": "Development and pet-project APIs", + "repo": "https://github.com/KruASe76", + "owner": { + "username": "KruASe76", + "email": "kruanse@ya.ru", + "telegram": "https://t.me/KruASe" + }, + "records": { + "A": ["89.19.177.86"] + } +} diff --git a/domains/api.namkun.json b/domains/api.namkun.json index c06d4d968..e00414e07 100644 --- a/domains/api.namkun.json +++ b/domains/api.namkun.json @@ -3,7 +3,7 @@ "username": "beocaca", "email": "namdev1402@gmail.com" }, - "record": { + "records": { "CNAME": "a.namkun.workers.dev" } } diff --git a/domains/api.rachancheet.json b/domains/api.rachancheet.json new file mode 100644 index 000000000..b72500285 --- /dev/null +++ b/domains/api.rachancheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rachancheet", + "email": "raxxsngh37@gmail.com" + }, + "records": { + "A": ["152.67.163.7"] + } +} diff --git a/domains/api.seiko.json b/domains/api.seiko.json new file mode 100644 index 000000000..043af1273 --- /dev/null +++ b/domains/api.seiko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Delta-0mega", + "email": "seikoo.dev@gmail.com", + "discord": "1293641904860172389" + }, + "records": { + "A": ["88.151.197.194"] + } +} diff --git a/domains/api.semant.json b/domains/api.semant.json index eef2b7841..34d81f05a 100644 --- a/domains/api.semant.json +++ b/domains/api.semant.json @@ -5,7 +5,7 @@ "email": "contact@semant.is-a.dev", "discord": "445073800850046977" }, - "record": { + "records": { "A": ["69.197.135.205"] } } diff --git a/domains/api.shockbs.json b/domains/api.shockbs.json index d7029f533..07ab33995 100644 --- a/domains/api.shockbs.json +++ b/domains/api.shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/api.yunexiz.json b/domains/api.yunexiz.json new file mode 100644 index 000000000..4e8c73eeb --- /dev/null +++ b/domains/api.yunexiz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "yunexiz" + }, + "records": { + "CNAME": "personal-api-yunexiz.ladeapp.com" + } +} diff --git a/domains/api.zoom.json b/domains/api.zoom.json index 3c72d6bbd..1438d500f 100644 --- a/domains/api.zoom.json +++ b/domains/api.zoom.json @@ -7,7 +7,7 @@ "twitter": "theoldzoom", "discord": "theoldzoom" }, - "record": { + "records": { "CNAME": "theoldzoom.github.io" } } diff --git a/domains/apigeon.json b/domains/apigeon.json index 563669d93..1ee8fd028 100644 --- a/domains/apigeon.json +++ b/domains/apigeon.json @@ -3,7 +3,7 @@ "username": "mepuntojr1", "email": "eepuntojr@gmail.com" }, - "record": { + "records": { "CNAME": "sites.bootstrapstudio.io" } } diff --git a/domains/apoloz.json b/domains/apoloz.json index dc2428e14..11af38f9c 100644 --- a/domains/apoloz.json +++ b/domains/apoloz.json @@ -5,7 +5,7 @@ "username": "tolyod", "email": "anatoliy.poloz@gmail.com" }, - "record": { + "records": { "A": ["185.185.71.114"] } } diff --git a/domains/apostolos.json b/domains/apostolos.json index 029ecae6e..693bfe515 100644 --- a/domains/apostolos.json +++ b/domains/apostolos.json @@ -3,7 +3,7 @@ "username": "tolisdev", "email": "a.katsoudas@yahoo.com" }, - "record": { + "records": { "CNAME": "lux1.apostolosk.eu.org" } } diff --git a/domains/app-giua.json b/domains/app-giua.json index 26d28e91c..4ff1b0245 100644 --- a/domains/app-giua.json +++ b/domains/app-giua.json @@ -5,7 +5,7 @@ "username": "Milanstarkk", "email": "milanstark09yt@gmail.com" }, - "record": { + "records": { "CNAME": "milanstarkk.github.io" } } diff --git a/domains/app.allancoding.json b/domains/app.allancoding.json index fe1c19ff5..f8df632bf 100644 --- a/domains/app.allancoding.json +++ b/domains/app.allancoding.json @@ -6,7 +6,7 @@ "twitter": "allancoding", "discord": "allancoding" }, - "record": { + "records": { "A": ["206.188.218.143"] } } diff --git a/domains/app.json b/domains/app.json deleted file mode 100644 index 4f1926b86..000000000 --- a/domains/app.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "code-hunt-in", - "email": "aishwary.pandore@somaiya.edu" - }, - "record": { - "CNAME": "code-hunt-in.github.io" - } -} diff --git a/domains/app.securesandbox.json b/domains/app.securesandbox.json new file mode 100644 index 000000000..63c2838a0 --- /dev/null +++ b/domains/app.securesandbox.json @@ -0,0 +1,16 @@ +{ + "description": "Dominio para pruebas en una app de cyberseguridad con dominio is-a.dev", + "owner": { + "username": "CrowleyCrowd", + "email": "ealba.platforms@outlook.com", + "discord": "crowleycrowd" + }, + "records": { + "MX": ["feedback-smtp.us-east-1.amazonses.com"], + "TXT": [ + "v=spf1 include:amazonses.com ~all", + "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqstJSWbINtFx1fSomoSdFnVgLNt9dQgSrwrBQKyWqVd/FCUJxSKftjXAUthTCddxGwggtlrm3nbj8/fwNUpTDJ0znmG3JnuSmZ3Ac/HBrnySZjyQw152/A9eW+wMYMsk4DjACYfkGubdIx12i5LS4YFeBbYjtAVHkf4Oy7Xj2EQIDAQAB", + "v=DMARC1; p=none;" + ] + } +} diff --git a/domains/app.vyductan.json b/domains/app.vyductan.json new file mode 100644 index 000000000..b4b0ab4f0 --- /dev/null +++ b/domains/app.vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/applesfruit.json b/domains/applesfruit.json index 867827717..9f7dab039 100644 --- a/domains/applesfruit.json +++ b/domains/applesfruit.json @@ -6,7 +6,7 @@ "email": "arya.kshipra@gmail.com", "discord": "fruits#1845" }, - "record": { + "records": { "CNAME": "applesfruit.github.io" } } diff --git a/domains/appointer.json b/domains/appointer.json index 81362c363..2a3fde157 100644 --- a/domains/appointer.json +++ b/domains/appointer.json @@ -4,7 +4,7 @@ "email": "wiiuforever25@gmail.com", "discord": "1147531188148375623" }, - "record": { + "records": { "CNAME": "appointer-z3jo.onrender.com" } } diff --git a/domains/april.json b/domains/april.json index d2171486d..6ffa3202b 100644 --- a/domains/april.json +++ b/domains/april.json @@ -4,7 +4,7 @@ "username": "arithefirst", "email": "ari@arithefirst.com" }, - "record": { + "records": { "URL": "https://www.arithefirst.com" } } diff --git a/domains/apurbo.json b/domains/apurbo.json index 23a81e822..f547b7e6a 100644 --- a/domains/apurbo.json +++ b/domains/apurbo.json @@ -1,10 +1,9 @@ { "owner": { "username": "apurboislam", - "discord": "740207602855575565", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.inMY-tFiYyZXUCfpIqjoBHdeJLbSiZFxjMEUBeTHytVAiirU56zAh_JfBQPNkTx_yE_maOaKmEXeP1jOzQCVcw91TaK7fQOQuuGBh9Kk30txzdTftWMxE5c8_RrlczDlweePk2mLmrMjZC8aMRVNJoJIAms7CJLsm7llHVYn5ODXAjQL9wngf6ZEqvvohKZi-9VZVq6JRKd9hPf1EcGWWO_66pKFnx0SerS-057fN_3VtFp6JnSCb_iZFz1LgkR6Yqhce2twR0vdvxIBzgS9p9uF6JuHq7tvJOEq6kxnqATLPB8rLVDIzT1o_NHm7VhRCUboaKRERjrrksC2FGX9Pw.RSnWj6DFoMv81N8Rz3EP9w.7H2S5qSGZykz8Fv7XGOY4uhqiHB79IEOAj4Qat3cLhmpplmI-DtMjY_WqBp0VMtQo8v_o-7Y-822yaQmlJCEjwWMhPmcfM6A51NuPQnxsi7GUsesfzon71ksf1gy33XnrgFjdTC2BpppKdyCvGXq3Q.Gpxu1_DwG-tQbspNfQOWcQ" + "discord": "740207602855575565" }, - "record": { + "records": { "CNAME": "apurboislam.github.io" } } diff --git a/domains/apurboislam.json b/domains/apurboislam.json index 3753ece51..f547b7e6a 100644 --- a/domains/apurboislam.json +++ b/domains/apurboislam.json @@ -1,10 +1,9 @@ { "owner": { "username": "apurboislam", - "discord": "740207602855575565", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Tb7jeRGTM3baPJ66NxXky5UUpue3qxinQq5Fq_qYbhEojPyOjmyTJopWxZGfTIie-42dA5RE5sEGUWU3YTEtXq8jvyQA2Alhv0Mz4fHfbfb7CKClfuoBT-_gJBxhrIRtOzfAXMkBofshbSTk8n8w0fcNaFRNn61YFjpULCdAJ_mf7ZGU6wmUxPvOdejIMskSXYPif0rQSk3DO2WHPxQO17fUPDaU3Q0u52CTTStdyyH3Efrj_DV7_wStGocc0AQQ2lUXxn_bPEJ1f8PzgVUk8AYbc0jQjQeokjtcRda4IIWn01CJ2s23xKJ1VW6ytPTYh91K72RINOHcFrY4miFyfA.EtMgYVQwI8Fkim2yde90bg.opKL6p-2Wkm2NpUIpUZD64bRAaGxY_PujYozpSQd24hSw_tEYcSsWR2LB43u-Whzv3ILzUyQIYAXT-q_W_ZP0dESFauT2szYJ759LjVconDiQPYpb7Y6M7K9ybJRkXDuDTgyx9QPBjG8uqdSRxQ3cQ.NrG09Bz5PZwk5xtQ77MELA" + "discord": "740207602855575565" }, - "record": { + "records": { "CNAME": "apurboislam.github.io" } } diff --git a/domains/aqilhensem.json b/domains/aqilhensem.json index 84c94a4f2..a831e5891 100644 --- a/domains/aqilhensem.json +++ b/domains/aqilhensem.json @@ -3,7 +3,7 @@ "username": "qing762", "email": "threatedblade@outlook.com" }, - "record": { + "records": { "CNAME": "qing762.github.io" } } diff --git a/domains/aqsakhan.json b/domains/aqsakhan.json index 00a076915..6ffe8b09d 100644 --- a/domains/aqsakhan.json +++ b/domains/aqsakhan.json @@ -6,7 +6,7 @@ "email": "aqsa250bpl@outlook.com", "twitter": "aqsa_khan32" }, - "record": { + "records": { "CNAME": "v1-7tp.pages.dev" } } diff --git a/domains/aqtk.json b/domains/aqtk.json index 8944d5422..7931f82a7 100644 --- a/domains/aqtk.json +++ b/domains/aqtk.json @@ -5,7 +5,7 @@ "username": "GoldenStarGamer", "email": "vicentetavareslima@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/aqua.json b/domains/aqua.json index e510bacb1..86becd564 100644 --- a/domains/aqua.json +++ b/domains/aqua.json @@ -3,7 +3,7 @@ "username": "AquaQuokka", "email": "aquaquokka@outlook.com" }, - "record": { + "records": { "CNAME": "aquaquokka.github.io" } } diff --git a/domains/aquatica.json b/domains/aquatica.json index d28f78f09..cbba7ce05 100644 --- a/domains/aquatica.json +++ b/domains/aquatica.json @@ -3,7 +3,7 @@ "username": "UntoldGam", "email": "charlessbird+github@outlook.com" }, - "record": { + "records": { "A": ["130.162.169.213"] } } diff --git a/domains/aquestry.json b/domains/aquestry.json index 3bf680306..bc5395141 100644 --- a/domains/aquestry.json +++ b/domains/aquestry.json @@ -1,10 +1,9 @@ { "owner": { "username": "aquestry", - "discord": "704743506677334138", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.V9o5PtaeItmX8xf0iU9FiM1S1b6EqVFJPNxI5VSe0dNDnt0W5LfIoQqL1fvVRQKKUa3eqwyHY2da8homHkcAXxZhN3JVgGlBUsHvVRfFUyvclPqWWciFRhu2kTWTlTK5attxE_y2pLd_6y1XFKs6vZ-8zYEznT4urc2XuGfHQ7hPLvEwLGJrh412k57vNwYHRssofZkGjMJcMXy_kSAc-gGdD9j6_xjcvb8NkHBh7N6mdyicQsfa5nXZErX5Z-ycQhAYAZft8qOSxKQUBMAXQ7d9XwbT5lgqzHVjwNCGqC-wCqNFdQ5W0JrunFh0r8XzQYABJqetb1tzI5a6CDUF3Q.BSQSSXpli0R0BQg_OPAnlA.mi_pUvgr6GlHAn8hpansRpA_1EGVB52-XxoU0j21dqG4bRS0YDQJOPRj_H8U45U701wpU_AAcVQ4_TUpWJaYcp4F3_l3Gf8dEb9FYK7xm68.7nUpAD9IuDbCqCr6QXypuw" + "discord": "704743506677334138" }, - "record": { + "records": { "CNAME": "aquestry.dev" } } diff --git a/domains/aquiffoo.json b/domains/aquiffoo.json index a310d9885..cde91ed34 100644 --- a/domains/aquiffoo.json +++ b/domains/aquiffoo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "aquiffoo", - "email": "aquilesffoliveira@gmail.com" - }, - "record": { - "URL": "https://aquiffoo.vercel.app" - } + "owner": { + "username": "aquiffoo", + "email": "aquilesffoliveira@gmail.com" + }, + "records": { + "URL": "https://aquiffoo.vercel.app" + } } diff --git a/domains/araf.json b/domains/araf.json deleted file mode 100644 index 442c23e60..000000000 --- a/domains/araf.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "yasar-arafath", - "email": "1up6i9jv@duck.com" - }, - "record": { - "CNAME": "yasar-arafath.github.io" - } -} diff --git a/domains/arafat-alim.json b/domains/arafat-alim.json new file mode 100644 index 000000000..e594a0b01 --- /dev/null +++ b/domains/arafat-alim.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio website hosted on Netlify", + "repo": "https://github.com/Arafat-alim/my-portfolio", + "owner": { + "username": "arafat-alim", + "email": "arafat97alim@gmail.com" + }, + "records": { + "URL": "https://dev-arafat.netlify.app" + } +} diff --git a/domains/arafat.json b/domains/arafat.json index 442c23e60..6d66c83cd 100644 --- a/domains/arafat.json +++ b/domains/arafat.json @@ -3,7 +3,7 @@ "username": "yasar-arafath", "email": "1up6i9jv@duck.com" }, - "record": { + "records": { "CNAME": "yasar-arafath.github.io" } } diff --git a/domains/arafatrahaman.json b/domains/arafatrahaman.json index c893e9c00..70ad1c85d 100644 --- a/domains/arafatrahaman.json +++ b/domains/arafatrahaman.json @@ -5,7 +5,7 @@ "username": "Hieser21", "email": "rarafat883@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-gh9n.onrender.com" } } diff --git a/domains/araguaci.json b/domains/araguaci.json index a33a1b6b8..7ead5b3b7 100644 --- a/domains/araguaci.json +++ b/domains/araguaci.json @@ -3,7 +3,7 @@ "username": "araguaci", "email": "araguaci@gmail.com" }, - "record": { + "records": { "CNAME": "araguaci.github.io" } } diff --git a/domains/aramos.json b/domains/aramos.json index 66b453d05..c1c9705a8 100644 --- a/domains/aramos.json +++ b/domains/aramos.json @@ -5,7 +5,7 @@ "username": "al327", "email": "ramosgalejandro3f@gmail.com" }, - "record": { + "records": { "CNAME": "al327.github.io" } } diff --git a/domains/arash.json b/domains/arash.json new file mode 100644 index 000000000..81a454707 --- /dev/null +++ b/domains/arash.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website/blog", + "owner": { + "username": "hatamiarash7", + "email": "hatamiarash7@gmail.com", + "twitter": "hatamiarash7" + }, + "records": { + "URL": "https://arash-hatami.ir" + } +} diff --git a/domains/aravindh.json b/domains/aravindh.json index d6c8a5cf7..0e84fd31e 100644 --- a/domains/aravindh.json +++ b/domains/aravindh.json @@ -5,7 +5,7 @@ "username": "Aravindh-4195", "email": "1mareeduaravindh1@gmail.com" }, - "record": { + "records": { "CNAME": "aravindh-4195.github.io" } } diff --git a/domains/aravinnndddd.json b/domains/aravinnndddd.json index f3d56ce50..2e33316e2 100644 --- a/domains/aravinnndddd.json +++ b/domains/aravinnndddd.json @@ -4,7 +4,7 @@ "email": "aromalaravind0@gmail.com", "discord": "754961569858846770" }, - "record": { + "records": { "CNAME": "aravinnndddd.github.io" } } diff --git a/domains/arbi-jridi.json b/domains/arbi-jridi.json index a125bfd64..f80a45538 100644 --- a/domains/arbi-jridi.json +++ b/domains/arbi-jridi.json @@ -3,7 +3,7 @@ "username": "arbi-jridi", "email": "arbi.jridi@gmail.com" }, - "record": { + "records": { "URL": "https://arbi-jridi.github.io" } } diff --git a/domains/arboy.json b/domains/arboy.json index 828bbb2cb..219a208a9 100644 --- a/domains/arboy.json +++ b/domains/arboy.json @@ -4,7 +4,7 @@ "username": "ARBoyGo", "email": "arboygo@duck.com" }, - "record": { + "records": { "CNAME": "arboygo.github.io" } } diff --git a/domains/arca.json b/domains/arca.json new file mode 100644 index 000000000..3e94d3cb7 --- /dev/null +++ b/domains/arca.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/anibalCApaza/anibalcapaza.github.io", + "owner": { + "username": "anibalCApaza", + "email": "arcacorini@gmail.com" + }, + "records": { + "CNAME": "anibalcapaza.github.io" + } +} diff --git a/domains/arcade.json b/domains/arcade.json index 10303e9d8..84a8a8d74 100644 --- a/domains/arcade.json +++ b/domains/arcade.json @@ -3,7 +3,7 @@ "username": "l3gacyb3ta", "twitter": "l3gacyb3ta" }, - "record": { + "records": { "URL": "https://arcade.omg.lol" } } diff --git a/domains/arceus.json b/domains/arceus.json index 6656987a7..b79f31755 100644 --- a/domains/arceus.json +++ b/domains/arceus.json @@ -3,7 +3,7 @@ "username": "arceusdev", "discord": "1055478076013817936" }, - "record": { + "records": { "CNAME": "arceus-website-onze-developments-projects.vercel.app" } } diff --git a/domains/arch.json b/domains/arch.json index 791ffd871..fe3b3ee75 100644 --- a/domains/arch.json +++ b/domains/arch.json @@ -5,10 +5,9 @@ "username": "Arch881010", "email": "arch@arch1010.dev", "discord": "arch1010", - "discord-id": "410248634593050627", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kSAiARG7F3TMPQLHtfhtk3dE05kz7As2lA8g_FzeDJHxsc9y68hJe40iZByj83Q-A7wgguTAPkshy34EfXOlnbEW6QGE3nwCdu8BLCDAZFZSDYffesKjYPq7djQpYfIcrwaKQ8BNsPejDVBpfycXULTJKFg6860m6AQeCRBCTKbs1et_J_1LKbD58oCoA2fRjoOcmsfiuv177b0JB5y4YYJvv-ZUxnqfFOYs8z4cYa0sjLz1PHf45ZXI94YaiIGbctnl4-mCWmUyVAEzoZXMMZTpb2yDmkfkXbubaRL8ftl6dXFlsr_s8t5oNNn_qqydjVqHAgoBod7pnX8nnbNB7g.QIJDtBcgQc6abzpqMJEDQQ.yqolPrBs4ixr0g2Sd6FkMHqMg_CXvxV146dDoe4y8yeSmW951Au23QlBGwemyMKQmJv6fNMo7GPctGfxCxgaaL6hXPVbtJ13MdgtO22e5bA.vevEeBUZxq5C7dewSx_YUQ" + "discord-id": "410248634593050627" }, - "record": { + "records": { "CNAME": "arch881010.github.io" } } diff --git a/domains/archelaus.json b/domains/archelaus.json index 4600a99f5..c8ab522bd 100644 --- a/domains/archelaus.json +++ b/domains/archelaus.json @@ -5,7 +5,7 @@ "username": "archelaus", "email": "archelaus@skiff.com" }, - "record": { + "records": { "CNAME": "archelaus.github.io" } } diff --git a/domains/archie.json b/domains/archie.json index 62b35c58f..3804ab5be 100644 --- a/domains/archie.json +++ b/domains/archie.json @@ -5,7 +5,7 @@ "username": "iLikeToCode", "email": "archie@archiesbytes.xyz" }, - "record": { + "records": { "CNAME": "iliketocode.github.io" } } diff --git a/domains/archive.json b/domains/archive.json new file mode 100644 index 000000000..9e249405b --- /dev/null +++ b/domains/archive.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "records": { + "A": ["185.199.108.153"] + } +} diff --git a/domains/archon.json b/domains/archon.json index 17267d9d8..b834617c5 100644 --- a/domains/archon.json +++ b/domains/archon.json @@ -3,7 +3,7 @@ "username": "29ayaang", "email": "29ayaang@proton.me" }, - "record": { + "records": { "CNAME": "29ayaang.github.io" } } diff --git a/domains/ardaninho.json b/domains/ardaninho.json index 238a9121d..59cc5abc2 100644 --- a/domains/ardaninho.json +++ b/domains/ardaninho.json @@ -3,7 +3,7 @@ "username": "Ardaninho", "discord": "639439553698201626" }, - "record": { + "records": { "CNAME": "ardaninho.github.io" } } diff --git a/domains/ardistory.json b/domains/ardistory.json index 98b557280..3625810ca 100644 --- a/domains/ardistory.json +++ b/domains/ardistory.json @@ -3,7 +3,7 @@ "username": "ardistory", "email": "putraardiansyah530@gmail.com" }, - "record": { + "records": { "A": ["198.91.81.13"] } } diff --git a/domains/areen-c.json b/domains/areen-c.json index 4c724ff96..e426bba55 100644 --- a/domains/areen-c.json +++ b/domains/areen-c.json @@ -4,7 +4,7 @@ "email": "areenelhaq@gmail.com", "twitter": "areencx" }, - "record": { + "records": { "CNAME": "areen.pages.dev" } } diff --git a/domains/areen.json b/domains/areen.json index dca1d5024..370753167 100644 --- a/domains/areen.json +++ b/domains/areen.json @@ -3,7 +3,7 @@ "username": "areen-c", "email": "areenelhaq@gmail.com" }, - "record": { + "records": { "CNAME": "areen-c.pages.dev" } } diff --git a/domains/aref.json b/domains/aref.json new file mode 100644 index 000000000..55cfa8f53 --- /dev/null +++ b/domains/aref.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website", + "repo": "https://github.com/stormaref/stormaref.github.io", + "owner": { + "username": "stormaref", + "email": "storm.aref@gmail.com" + }, + "records": { + "URL": "https://stormaref.github.io/" + } +} diff --git a/domains/arhan.json b/domains/arhan.json index f8f853cc6..b682374cc 100644 --- a/domains/arhan.json +++ b/domains/arhan.json @@ -4,7 +4,7 @@ "email": "vortexsperts@gmail.com", "discord": "1058620249978716191" }, - "record": { + "records": { "A": ["54.37.19.49"] } } diff --git a/domains/arhanansari.json b/domains/arhanansari.json new file mode 100644 index 000000000..403075675 --- /dev/null +++ b/domains/arhanansari.json @@ -0,0 +1,13 @@ +{ + "description": "A sleek and 3D portfolio website for Arhan Ansari.", + "repo": "https://github.com/ArhanAnsari/Arhans-Portfolio", + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com", + "x": "https://x.com/codewitharhan", + "discord": "@codewitharhan" + }, + "records": { + "CNAME": "arhanansari.vercel.app" + } +} diff --git a/domains/ari.json b/domains/ari.json index abd3eacfa..0792a8651 100644 --- a/domains/ari.json +++ b/domains/ari.json @@ -5,7 +5,7 @@ "username": "TruncatedDinoSour", "email": "ari@ari.lt" }, - "record": { + "records": { "URL": "https://ari.lt/" } } diff --git a/domains/ariabid.json b/domains/ariabid.json new file mode 100644 index 000000000..09e9d0912 --- /dev/null +++ b/domains/ariabid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ariabid", + "email": "ari.abid@gmail.com" + }, + "records": { + "URL": "https://ariabid.github.io" + } +} diff --git a/domains/arif.json b/domains/arif.json new file mode 100644 index 000000000..90bf0a427 --- /dev/null +++ b/domains/arif.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/Arif-Islam/Portfolio-site", + "owner": { + "username": "Arif-Islam", + "email": "arif8491@gmail.com" + }, + "records": { + "CNAME": "arif-islam.github.io" + } +} diff --git a/domains/ariffhazmi.json b/domains/ariffhazmi.json index ab147f361..c89436658 100644 --- a/domains/ariffhazmi.json +++ b/domains/ariffhazmi.json @@ -5,7 +5,7 @@ "username": "Areplesapelagi", "email": "muhdariffhazmi@gmail.com" }, - "record": { + "records": { "CNAME": "areplesapelagi.github.io" } } diff --git a/domains/arijit.json b/domains/arijit.json index 70e8009bc..b33818917 100644 --- a/domains/arijit.json +++ b/domains/arijit.json @@ -6,7 +6,7 @@ "email": "itsarijitdebnath@gmail.com", "twitter": "NotArijit" }, - "record": { + "records": { "CNAME": "arijitthedev.github.io" } } diff --git a/domains/arin.json b/domains/arin.json new file mode 100644 index 000000000..9a6034908 --- /dev/null +++ b/domains/arin.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "aringadre76" + }, + "records": { + "CNAME": "aringadre76.github.io" + } +} diff --git a/domains/arizerr.json b/domains/arizerr.json index 35713f74c..b149479b3 100644 --- a/domains/arizerr.json +++ b/domains/arizerr.json @@ -5,7 +5,7 @@ "username": "Arizerr", "email": "arisiraj738@gmail.com" }, - "record": { + "records": { "CNAME": "arizerr.github.io" } } diff --git a/domains/arjix.json b/domains/arjix.json deleted file mode 100644 index 3af0bba31..000000000 --- a/domains/arjix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Most likely a page for my portfolio.", - "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io", - "owner": { - "username": "ArjixWasTaken", - "discord": "Hecker#5573" - }, - "record": { - "CNAME": "arjixwastaken.github.io" - } -} diff --git a/domains/arjuncodess.json b/domains/arjuncodess.json new file mode 100644 index 000000000..8239f7f32 --- /dev/null +++ b/domains/arjuncodess.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ArjunCodess" + }, + "records": { + "CNAME": "arjuncodess.vercel.app" + } +} diff --git a/domains/arjuncvinod.json b/domains/arjuncvinod.json index 0860da5c8..9253f6836 100644 --- a/domains/arjuncvinod.json +++ b/domains/arjuncvinod.json @@ -6,7 +6,7 @@ "email": "arjuncvinod007@gmail.com", "twitter": "arjuncvinod7" }, - "record": { + "records": { "CNAME": "arjuncvinod.github.io" } } diff --git a/domains/arkan.json b/domains/arkan.json new file mode 100644 index 000000000..d24e935ce --- /dev/null +++ b/domains/arkan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArizalArkan", + "email": "arizalarkan@gmail.com" + }, + "records": { + "CNAME": "arkan-potofolio.vercel.app" + } +} diff --git a/domains/arlan.json b/domains/arlan.json new file mode 100644 index 000000000..eb3e5156f --- /dev/null +++ b/domains/arlan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "records": { + "CNAME": "handikatriarlan.vercel.app" + } +} diff --git a/domains/armaan44.json b/domains/armaan44.json new file mode 100644 index 000000000..435644a18 --- /dev/null +++ b/domains/armaan44.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio-Website", + "repo": "https://github.com/Armaan4477/Portfolio", + "owner": { + "username": "Armaan4477", + "email": "nakhudaarmaan66@gmail.com" + }, + "records": { + "CNAME": "armaan4477.github.io" + } +} diff --git a/domains/arman.json b/domains/arman.json index 58404ec4e..d18e2abbe 100644 --- a/domains/arman.json +++ b/domains/arman.json @@ -4,7 +4,7 @@ "username": "ItzArman09", "email": "itz.armxn@outlook.com" }, - "record": { + "records": { "CNAME": "itzarman09.github.io" } } diff --git a/domains/armand.json b/domains/armand.json new file mode 100644 index 000000000..3ce93ef77 --- /dev/null +++ b/domains/armand.json @@ -0,0 +1,10 @@ +{ + "description": "Armand Jordaan's Website", + "owner": { + "username": "armandjordaan", + "email": "armand.jordaan@gmail.com" + }, + "records": { + "CNAME": "armandjordaan.github.io" + } +} diff --git a/domains/armandosalcedo.json b/domains/armandosalcedo.json new file mode 100644 index 000000000..ce161f3a4 --- /dev/null +++ b/domains/armandosalcedo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asd1495", + "email": "armando.salcedo95@gmail.com" + }, + "records": { + "CNAME": "asd1495.github.io" + } +} diff --git a/domains/armoredvortex.json b/domains/armoredvortex.json index c759272eb..b05a130c6 100644 --- a/domains/armoredvortex.json +++ b/domains/armoredvortex.json @@ -4,7 +4,7 @@ "username": "armoredvortex", "email": "rachitpandey@protonmail.com" }, - "record": { + "records": { "CNAME": "armoredvortex.github.io" } } diff --git a/domains/arnab.json b/domains/arnab.json index db12d8d3b..a7f2d5bb4 100644 --- a/domains/arnab.json +++ b/domains/arnab.json @@ -3,7 +3,7 @@ "username": "arnabdatta", "email": "arnabdatta3@gmail.com" }, - "record": { + "records": { "CNAME": "arnabdatta.github.io" } } diff --git a/domains/arnav.json b/domains/arnav.json index cbc918261..4496d34dc 100644 --- a/domains/arnav.json +++ b/domains/arnav.json @@ -3,7 +3,7 @@ "username": "arnav-kr", "email": "arnav-kumar@outlook.com" }, - "record": { + "records": { "CNAME": "arnav-kr.github.io" } } diff --git a/domains/arnxv.json b/domains/arnxv.json index 2e23bf9fd..2514e264d 100644 --- a/domains/arnxv.json +++ b/domains/arnxv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } } diff --git a/domains/arpana.json b/domains/arpana.json index f8db76b38..03cdeb9eb 100644 --- a/domains/arpana.json +++ b/domains/arpana.json @@ -6,7 +6,7 @@ "email": "arpana11mehta@gmail.com", "twitter": "arpana_naa" }, - "record": { + "records": { "CNAME": "winter-code.github.io" } } diff --git a/domains/arpitbatra.json b/domains/arpitbatra.json index d4ff419f2..7b2797280 100644 --- a/domains/arpitbatra.json +++ b/domains/arpitbatra.json @@ -3,7 +3,7 @@ "username": "arpit-batra", "email": "arpitbatra98@gmail.com" }, - "record": { + "records": { "URL": "https://myportfolio-eb732.web.app" } } diff --git a/domains/arrtea.json b/domains/arrtea.json index d8620b4ee..6bc9aee2c 100644 --- a/domains/arrtea.json +++ b/domains/arrtea.json @@ -3,7 +3,7 @@ "username": "Arrtea21", "email": "arte.priv@protonmail.com" }, - "record": { + "records": { "CNAME": "arrtea21.github.io" } } diff --git a/domains/arsdorint.json b/domains/arsdorint.json index bd558c89e..46218209c 100644 --- a/domains/arsdorint.json +++ b/domains/arsdorint.json @@ -4,7 +4,7 @@ "username": "arsdorintbp2003", "email": "e0851451@u.nus.edu" }, - "record": { + "records": { "CNAME": "arsdorintbp2003.github.io" } } diff --git a/domains/arsenobetaine.json b/domains/arsenobetaine.json new file mode 100644 index 000000000..d338993e7 --- /dev/null +++ b/domains/arsenobetaine.json @@ -0,0 +1,11 @@ +{ + "description": "A personal website for information on me and my projects.", + "repo": "https://github.com/arsenobetaine/arsenobetaine.is-a.dev", + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "records": { + "CNAME": "arsenobetaine.github.io" + } +} diff --git a/domains/arshman.json b/domains/arshman.json index 9edba8599..4cb121684 100644 --- a/domains/arshman.json +++ b/domains/arshman.json @@ -1,9 +1,8 @@ { "owner": { - "username": "syedtahseen", - "email": "" + "username": "syedtahseen" }, - "record": { + "records": { "CNAME": "arshman.vercel.app" } } diff --git a/domains/arslan.json b/domains/arslan.json index 4498ae49e..3c398bf2e 100644 --- a/domains/arslan.json +++ b/domains/arslan.json @@ -5,7 +5,7 @@ "username": "sandwiching", "email": "77godlike@bk.ru" }, - "record": { + "records": { "CNAME": "sandwiching.github.io" } } diff --git a/domains/arson.json b/domains/arson.json index 3935fc0e3..69f972ec7 100644 --- a/domains/arson.json +++ b/domains/arson.json @@ -4,7 +4,7 @@ "email": "smartcoder@linuxmail.org", "discord": "694986201739952229" }, - "record": { + "records": { "NS": ["ignacio.ns.cloudflare.com", "nicole.ns.cloudflare.com"] } } diff --git a/domains/art.json b/domains/art.json index fbfcc4a11..e2cc3326e 100644 --- a/domains/art.json +++ b/domains/art.json @@ -1,11 +1,10 @@ { "description": "Art's personal developer website", - "repo": "https://github.com/dotiful", "owner": { "username": "dotiful", "email": "dots.util@gmail.com" }, - "record": { + "records": { "CNAME": "dotiful.github.io" } } diff --git a/domains/artaabedi.json b/domains/artaabedi.json index da157f90a..907d68777 100644 --- a/domains/artaabedi.json +++ b/domains/artaabedi.json @@ -5,7 +5,7 @@ "discord": "884500561158869032", "twitter": "artaabedi" }, - "record": { + "records": { "URL": "https://artaabedi.com", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] diff --git a/domains/arter.json b/domains/arter.json index ef9448b9c..d48e2a133 100644 --- a/domains/arter.json +++ b/domains/arter.json @@ -3,7 +3,7 @@ "username": "animemoeus", "email": "arter.tendean.07@gmail.com" }, - "record": { + "records": { "URL": "https://animemoe.us" } } diff --git a/domains/artesdosul.json b/domains/artesdosul.json index a591e0306..e449de3cc 100644 --- a/domains/artesdosul.json +++ b/domains/artesdosul.json @@ -3,7 +3,7 @@ "username": "araguaci", "email": "araguaci@gmail.com" }, - "record": { + "records": { "CNAME": "artesdosul.github.io" } } diff --git a/domains/artiefuzzz.json b/domains/artiefuzzz.json index da964b39a..360ee85a3 100644 --- a/domains/artiefuzzz.json +++ b/domains/artiefuzzz.json @@ -5,7 +5,7 @@ "username": "ArtieFuzzz", "email": "jardenz.den@gmail.com" }, - "record": { + "records": { "CNAME": "artiefuzzz.github.io" } } diff --git a/domains/artix.json b/domains/artix.json index 6de2d37e4..560301132 100644 --- a/domains/artix.json +++ b/domains/artix.json @@ -4,7 +4,7 @@ "email": "yu1234u73f.com@gmail.com", "discord": "834867471885271053" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/arul.json b/domains/arul.json index f93653c18..6c643f7d7 100644 --- a/domains/arul.json +++ b/domains/arul.json @@ -3,7 +3,7 @@ "username": "arulprabakaran", "twitter": "arulpraba" }, - "record": { + "records": { "URL": "https://arulprabakaran.web.app" } } diff --git a/domains/arunava.json b/domains/arunava.json index a04036d79..01f80580e 100644 --- a/domains/arunava.json +++ b/domains/arunava.json @@ -5,7 +5,7 @@ "username": "its-ag", "email": "itsag0024@gmail.com" }, - "record": { + "records": { "CNAME": "its-ag.github.io" } } diff --git a/domains/arungeorgesaji.json b/domains/arungeorgesaji.json index 4d79568ab..5922c5c66 100644 --- a/domains/arungeorgesaji.json +++ b/domains/arungeorgesaji.json @@ -4,7 +4,7 @@ "username": "arungeorgesaji", "email": "arungeorgesaji@gmail.com" }, - "record": { + "records": { "CNAME": "arungeorgesaji.github.io" } } diff --git a/domains/arunlorenz.json b/domains/arunlorenz.json new file mode 100644 index 000000000..6ace4b425 --- /dev/null +++ b/domains/arunlorenz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arunlorenz", + "email": "nsak1763@gmail.com" + }, + "records": { + "CNAME": "arunlorenz.vercel.app" + } +} diff --git a/domains/aruntechpro.json b/domains/aruntechpro.json index b0fab6ae8..8a79914e7 100644 --- a/domains/aruntechpro.json +++ b/domains/aruntechpro.json @@ -1,10 +1,10 @@ -{ - "description": "Personal Website", - "owner": { - "username": "aruntechpro", - "email": "arunkumarakr03@gmail.com" - }, - "record": { - "CNAME": "aruntechpro.github.io" - } -} +{ + "description": "Personal Website", + "owner": { + "username": "aruntechpro", + "email": "arunkumarakr03@gmail.com" + }, + "records": { + "CNAME": "aruntechpro.github.io" + } +} diff --git a/domains/arunvishnu.json b/domains/arunvishnu.json new file mode 100644 index 000000000..547d1cc0f --- /dev/null +++ b/domains/arunvishnu.json @@ -0,0 +1,11 @@ +{ + "description": "arunvishnu.is-a.dev: website for my portoflio", + "repo": "https://github.com/arunvishnu/magicui-portfolio", + "owner": { + "username": "arunvishnu", + "email": "arun.vishnu@gmail.com" + }, + "records": { + "CNAME": "arunvishnu.com" + } +} diff --git a/domains/aruria.json b/domains/aruria.json index 262a1aba6..0c97ae91a 100644 --- a/domains/aruria.json +++ b/domains/aruria.json @@ -1,12 +1,11 @@ { - "owner": { - "username": "cjolivier123", - "discord": "1175481072088268920", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XlWqBdmbdUC_mgDhKMY0Hcl1_FRp5IxKkBD1UF2bGowx-BgYpv7UnElAdcrktTrHjJLD75zzEWNR8A_1UH7-4abrnY4lsqu2p9GIScw9j-9zrNZi_EeTmN8XRuD2fVvPFEVmzAQ7O9jE-B6fkMl4GybJB6td05nxzwHi5J-cDGzT1Wg2qu5ierWuHe7P8TI4tq-SwshaxpNTWkMJN9mgGie6QD7zXBo76G7lbFWTOJHM65UK81I2N8nmyttlD2E5ncNgMTyspkR0hmKeIb1cQvR4lVXu3n-NmJg4-PIOMP3BJ_FgiZFQEDps_opWCA-XhcET7C_EjCbZPEJlBfuTxQ.GFEDQow6ltp5UmM6d7EqfA.xoHXb_B_eC2HGsJ-7iTlZ0FAagE6icNiiVRILA3y5YPiC8chzN3t1JpWEP-uyODEUi7HDGVJzPhRwtTBSbY4S4lx4ZxVOIMr2-l5v50hTjo.ebOtxNCyuP2tf0zsqTg8Hg" - }, - - "record": { - "CNAME": "cjolivier123.github.io" - } - } - \ No newline at end of file + "owner": { + "username": "cjolivier123", + "discord": "1175481072088268920" + }, + "records": { + "A": ["185.199.108.153", "185.199.110.153", "185.199.109.153", "185.199.111.153"], + "TXT": ["zoho-verification=zb76097651.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] + } +} diff --git a/domains/arush.json b/domains/arush.json index 4b3751c8d..467e88a24 100644 --- a/domains/arush.json +++ b/domains/arush.json @@ -5,7 +5,7 @@ "username": "ArushYadlapati", "email": "hello@arush.me" }, - "record": { + "records": { "CNAME": "arushyadlapati.github.io" } } diff --git a/domains/arv.json b/domains/arv.json index fff65d37b..4d439e8dc 100644 --- a/domains/arv.json +++ b/domains/arv.json @@ -3,7 +3,7 @@ "username": "aravinds-arv", "email": "aravinds.arv@pm.me" }, - "record": { + "records": { "CNAME": "aravinds-arv.github.io" } } diff --git a/domains/arvik1.json b/domains/arvik1.json index ea04d9328..78cc535fb 100644 --- a/domains/arvik1.json +++ b/domains/arvik1.json @@ -3,7 +3,7 @@ "username": "arvik1", "email": "singhvikal891@gmail.com" }, - "record": { + "records": { "CNAME": "arvik1.github.io" } } diff --git a/domains/arvind.json b/domains/arvind.json new file mode 100644 index 000000000..15b4e1a79 --- /dev/null +++ b/domains/arvind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coderman400", + "email": "achurox1121@gmail.com" + }, + "records": { + "CNAME": "portfolio-nine-sigma-65.vercel.app" + } +} diff --git a/domains/arvindt.json b/domains/arvindt.json index 8a3103b1c..8fd8947a0 100644 --- a/domains/arvindt.json +++ b/domains/arvindt.json @@ -7,7 +7,7 @@ "instagram": "arvin_d.t", "twitter": "ARVIN3108_ID" }, - "record": { + "records": { "CNAME": "arvin3108.github.io" } } diff --git a/domains/arwi.json b/domains/arwi.json index d0b678441..079d82acc 100644 --- a/domains/arwi.json +++ b/domains/arwi.json @@ -5,7 +5,7 @@ "username": "arwichok", "email": "arwichok@gmail.com" }, - "record": { + "records": { "CNAME": "arwichok.github.io" } } diff --git a/domains/ary.json b/domains/ary.json new file mode 100644 index 000000000..c98f60f26 --- /dev/null +++ b/domains/ary.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/aryan2bamane/Portfolio", + "owner": { + "username": "aryan2bamane", + "email": "aryanbamane2@gmail.com" + }, + "records": { + "URL": "https://aryan2bamane.github.io/Portfolio/" + } +} diff --git a/domains/arya.json b/domains/arya.json index b3819cb72..d6193baf3 100644 --- a/domains/arya.json +++ b/domains/arya.json @@ -1,11 +1,10 @@ { "description": "Arya Vinodan's Website", - "repo": "https://github.com/aryavinodan", "owner": { "username": "aryavinodan", "email": "aryavinodan2000@gmail.com" }, - "record": { + "records": { "CNAME": "aryavinodan2000.github.io" } } diff --git a/domains/aryadanech.json b/domains/aryadanech.json index 779998c7d..a77ff0dae 100644 --- a/domains/aryadanech.json +++ b/domains/aryadanech.json @@ -1,11 +1,10 @@ { "description": "Hi There! I'm Arya. I am a Full Stack Web Developer from Nashik", - "repo": "https://github.com/aryad14", "owner": { "username": "aryad14", "email": "aryadanech9@gmail.com" }, - "record": { + "records": { "CNAME": "aryadanech.netlify.app" } } diff --git a/domains/aryaejoumalai.json b/domains/aryaejoumalai.json index 4621ef06b..bc41da5f0 100644 --- a/domains/aryaejoumalai.json +++ b/domains/aryaejoumalai.json @@ -5,7 +5,7 @@ "username": "AryaEjoumalai", "email": "aryaejoumalai@gmail.com" }, - "record": { + "records": { "CNAME": "aryaejoumalai.github.io" } } diff --git a/domains/aryamaan.json b/domains/aryamaan.json index d0ece2eb1..f44a05a53 100644 --- a/domains/aryamaan.json +++ b/domains/aryamaan.json @@ -3,13 +3,8 @@ "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" - ], + "records": { + "A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/aryan.json b/domains/aryan.json index f943f7230..de0aea296 100644 --- a/domains/aryan.json +++ b/domains/aryan.json @@ -1,9 +1,13 @@ { + "description": "Portfolio Website", + "repo": "https://github.com/aryanpatel142006/personalWebsite", "owner": { - "username": "AryanTheDevloper", - "email": "aryan.p062009@gmail.com" + "username": "aryanpatel142006", + "email": "aryanpatel142006@gmail.com", + "discord": "aryanpatel142006" }, - "record": { - "CNAME": "aryanthedevloper.github.io" - } + "records": { + "A": ["76.76.21.21"] + }, + "proxied": true } diff --git a/domains/aryann.json b/domains/aryann.json new file mode 100644 index 000000000..da175db70 --- /dev/null +++ b/domains/aryann.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aryanm830", + "email": "aryanm830@proton.me", + "discord": "riftfiree" + }, + "records": { + "CNAME": "portxd.vercel.app" + } +} diff --git a/domains/aryantavish.json b/domains/aryantavish.json new file mode 100644 index 000000000..9cb183459 --- /dev/null +++ b/domains/aryantavish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aryan Tavish", + "email": "aryantavish2003@gmail.com" + }, + "records": { + "CNAME": "aryantavish.netlify.app" + } +} diff --git a/domains/aryxst.json b/domains/aryxst.json index e5d6750d9..0b29a486e 100644 --- a/domains/aryxst.json +++ b/domains/aryxst.json @@ -3,7 +3,7 @@ "username": "Aryxst", "email": "jessieodeh08@gmail.com" }, - "record": { + "records": { "CNAME": "aryxst.github.io" } } diff --git a/domains/as.json b/domains/as.json index fd745e171..794507551 100644 --- a/domains/as.json +++ b/domains/as.json @@ -1,10 +1,9 @@ { - "repo": "https://mrakshayas.github.io/me/", "owner": { - "username": "MrAkshayAS", - "email": "akshau72p@gmail.com" + "username": "mraxays", + "discord": "mrakshayas" }, - "record": { - "CNAME": "mrakshayas.github.io" + "records": { + "URL": "https://mraxays.github.io/" } } diff --git a/domains/asad-khan.json b/domains/asad-khan.json index c09d14a4c..bda804450 100644 --- a/domains/asad-khan.json +++ b/domains/asad-khan.json @@ -1,11 +1,10 @@ { "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": { + "records": { "CNAME": "asadkhan777.github.io" } } diff --git a/domains/asad.json b/domains/asad.json new file mode 100644 index 000000000..4a9d9a18a --- /dev/null +++ b/domains/asad.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/AsadRazaJutt1/asadrazajutt1.github.io", + "owner": { + "username": "AsadRazaJutt1", + "email": "asadrazajutt1@gmail.com" + }, + "records": { + "CNAME": "asadrazajutt1.github.io" + } +} diff --git a/domains/asbp.json b/domains/asbp.json new file mode 100644 index 000000000..b5b9362bf --- /dev/null +++ b/domains/asbp.json @@ -0,0 +1,11 @@ +{ + "description": "Agung's Portofolio Website", + "repo": "https://github.com/asbp/asbp.github.io", + "owner": { + "username": "asbp", + "email": "guungofficial@gmail.com" + }, + "records": { + "CNAME": "asbp.github.io" + } +} diff --git a/domains/asciidude.json b/domains/asciidude.json index 16b7a28ec..6d7f7ee5d 100644 --- a/domains/asciidude.json +++ b/domains/asciidude.json @@ -1,10 +1,9 @@ { "owner": { "username": "asciidude", - "discord": "801469073535139860", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qwzMx5Lz7NbUvzz6Y_QtpNQ7_SqJrrO8yXP48aKYIAhN6eDnjYzQA_tJEU0CpjyY37OdGN7g1SGCv4lwrXVd0dsEya2dQhMnkw2xOqqJF1f1gTEHNaRQaifNvYE14xiMLZr-yqcRJ-QB1WONpRk5UOjd-sYTjmJ5uai6fufnC8DCsHvZxjCMFROwqxJVa-JnBe-6BhORJg7sgfUCCNRyfKQ3R_CrEV0q6mKpNGKhgB3_sbsWDosP0yU5ArR0UjH4iZzLgfRmKwP6rzbpb7XsGHmV5sn8kj1KTgXdTVAg1ax0JrJOmL0pXVSC4KtFmb3coUNBLbLB8crRP97R7gFQ1Q.9JZd7YdCz4lIo3gLgAFaTg.bXgWxafLtMe0Bs1NFWsc2YIpC5jiRYArHlAD8IxUG3AhmJp8Dhtdn160e1LB3XZKR_WXmSnnkFH4UxomctKjjA4FyX5IgmEO9aPKbjwn3Eo.ib74UPOSzL79K4D4sNLf7w" + "discord": "801469073535139860" }, - "record": { + "records": { "CNAME": "cubic-plateau-9rv902jxrli6u45t5hsafsrd.herokudns.com" } } diff --git a/domains/asgarrrr.json b/domains/asgarrrr.json index 1fbe31706..341859c52 100644 --- a/domains/asgarrrr.json +++ b/domains/asgarrrr.json @@ -1,10 +1,9 @@ { - "repo": "https://github.com/Asgarrrr", "owner": { "username": "Asgarrrr", "email": "hello@jeremycaruelle.fr" }, - "record": { + "records": { "CNAME": "glitch.edgeapp.net" } } diff --git a/domains/ash.json b/domains/ash.json index a83e5c119..3936ddab9 100644 --- a/domains/ash.json +++ b/domains/ash.json @@ -1,10 +1,9 @@ { "owner": { "username": "BloodLetters", - "discord": "961870785486671872", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ViU_s7aERLW_mNpbpi9hxOs4zrccaqUhyyUAxIZEKbqex3iWjZP9AUM7uoeyQh9qPzVy8fp92ArDGlC-iYQwW7Xw6WHwzMo_zQGZchYGcI7gDJnI-BSKEwTe9oFPqLzkbR8o3guo7_7Qo54bWm7UDjBjca2JCol7iXJgXP0cUJzgrX3QTPxVEigrvnBNsSIr83WlFZZagm9gyCBpl0WTVLjomcSHdTB2IjM6_yMkYCD1cLDOrkXwqH79o1orLZWrHbDf_6Mqfyay7ZoRiacDTAAi7LVMYo-bjo82IwrCRCNXbHsANk3kJKQnVETKX37bB8sPyRT7I_oygAk9tGcu0A.sbMp8UsiUgSWQ2-vTfEvxA.TzjhAHzK6nG9FtsYXnn3rqwGECCQk0m-KRlrz8-t6BDAPX2SWp0-KEp1pdmc4Okgg5iBl_LRTavfdX2xLuuFHp0G5lzit1LmeEsV6QNfrmY.sIKZgtKW8YqtT_ohHyte9Q" + "discord": "961870785486671872" }, - "record": { + "records": { "CNAME": "web-production-six.vercel.app" } } diff --git a/domains/ashan.json b/domains/ashan.json index a009930c0..abc7f3087 100644 --- a/domains/ashan.json +++ b/domains/ashan.json @@ -6,7 +6,7 @@ "email": "infoxkingyt@gmail.com", "twitter": "AshanInduranga_" }, - "record": { + "records": { "CNAME": "sealedslinger.github.io" } } diff --git a/domains/ashc1ty.json b/domains/ashc1ty.json index b887335e3..280e0002b 100644 --- a/domains/ashc1ty.json +++ b/domains/ashc1ty.json @@ -5,7 +5,7 @@ "username": "AshC1ty", "email": "ashcity07734@gmail.com" }, - "record": { + "records": { "CNAME": "ashc1ty.github.io" } } diff --git a/domains/asheer.json b/domains/asheer.json index 61f35cdf0..f4e8a9fc4 100644 --- a/domains/asheer.json +++ b/domains/asheer.json @@ -3,7 +3,7 @@ "username": "NullyIsHere", "discord": "itsasheer" }, - "record": { + "records": { "URL": "https://altex.page?from=isadev" } } diff --git a/domains/asher.json b/domains/asher.json index 29fd3298d..c088d90f9 100644 --- a/domains/asher.json +++ b/domains/asher.json @@ -3,7 +3,7 @@ "username": "The-Asher", "email": "08.bellaaron@gmail.com" }, - "record": { + "records": { "A": ["198.91.81.11"] } } diff --git a/domains/ashesh.json b/domains/ashesh.json index 56570b860..52dce9674 100644 --- a/domains/ashesh.json +++ b/domains/ashesh.json @@ -3,7 +3,7 @@ "username": "Ashesh3", "email": "ashesh1708@gmail.com" }, - "record": { + "records": { "CNAME": "ashesh3.github.io" } } diff --git a/domains/ashif.json b/domains/ashif.json index 9daef0cc8..321a8dba6 100644 --- a/domains/ashif.json +++ b/domains/ashif.json @@ -3,7 +3,7 @@ "username": "TheKingslayer11", "email": "ashifhussain609@gmail.com" }, - "record": { + "records": { "CNAME": "thekingslayer11.github.io" } } diff --git a/domains/ashikmuhammed.json b/domains/ashikmuhammed.json deleted file mode 100644 index 9a7c933cf..000000000 --- a/domains/ashikmuhammed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/professorSergioMarquina/professorSergioMarquina.github.io", - "owner": { - "username": "professorSergioMarquina", - "email": "mrjinnoftg@gmail.com" - }, - "record": { - "CNAME": "professorsergiomarquina.github.io" - }, - "proxied": true -} diff --git a/domains/ashish-g-gupta.json b/domains/ashish-g-gupta.json index aed625453..1274d0345 100644 --- a/domains/ashish-g-gupta.json +++ b/domains/ashish-g-gupta.json @@ -4,7 +4,7 @@ "owner": { "username": "ashish-g-gupta" }, - "record": { + "records": { "CNAME": "ashish-g-gupta.github.io" } } diff --git a/domains/ashish.json b/domains/ashish.json index aade93089..941e1bc92 100644 --- a/domains/ashish.json +++ b/domains/ashish.json @@ -1,11 +1,10 @@ { "description": "Ashish's personal developer website", - "repo": "https://github.com/ashiishme", "owner": { "username": "ashiishme", "email": "contact@ashiish.me" }, - "record": { + "records": { "CNAME": "ashiish.me" } } diff --git a/domains/ashishagarwal.json b/domains/ashishagarwal.json index 5622a088b..feccf0ae1 100644 --- a/domains/ashishagarwal.json +++ b/domains/ashishagarwal.json @@ -3,7 +3,7 @@ "username": "devashish2024", "email": "code.with.aasheesh@gmail.com" }, - "record": { + "records": { "CNAME": "ashishagarwal.netlify.app" } } diff --git a/domains/ashishagr.json b/domains/ashishagr.json index 7040df7b4..63f5ad81e 100644 --- a/domains/ashishagr.json +++ b/domains/ashishagr.json @@ -3,13 +3,8 @@ "username": "devashish2024", "email": "code.with.aasheesh@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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/ashishbinu.json b/domains/ashishbinu.json index 729ac4272..eb958df61 100644 --- a/domains/ashishbinu.json +++ b/domains/ashishbinu.json @@ -3,7 +3,7 @@ "username": "ashishbinu", "email": "ashishbinu90@gmail.com" }, - "record": { + "records": { "CNAME": "ashishbinu.surge.sh" } } diff --git a/domains/ashishji.json b/domains/ashishji.json index ca92753f0..9276ae393 100644 --- a/domains/ashishji.json +++ b/domains/ashishji.json @@ -5,7 +5,7 @@ "username": "AshishJii", "email": "ashishverma208004@gmail.com" }, - "record": { + "records": { "CNAME": "ashishjii.github.io" } } diff --git a/domains/ashishkingdom.json b/domains/ashishkingdom.json new file mode 100644 index 000000000..08c9138f1 --- /dev/null +++ b/domains/ashishkingdom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AshishKingdom", + "email": "ashishkingdom@proton.me" + }, + "records": { + "CNAME": "ashishkingdom.github.io" + } +} diff --git a/domains/ashkan.json b/domains/ashkan.json new file mode 100644 index 000000000..41a0846ae --- /dev/null +++ b/domains/ashkan.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to Ashkan's portfolio – a full-stack developer specializing in Angular, React, NestJS, Go, and cloud-native applications", + "repo": "https://github.com/Ashkan4472/ashkan4472.github.io", + "owner": { + "username": "ashkan4472", + "email": "ashkan4472@gmail.com" + }, + "records": { + "CNAME": "ashkan4472.github.io" + } +} diff --git a/domains/ashley.json b/domains/ashley.json index a173c86f7..9480972c0 100644 --- a/domains/ashley.json +++ b/domains/ashley.json @@ -3,7 +3,7 @@ "username": "ashleyyy94", "email": "ashley_2461994@hotmail.com" }, - "record": { + "records": { "URL": "https://ashleyong.xyz/" } } diff --git a/domains/ashleymavericks.json b/domains/ashleymavericks.json index 2aa81aab6..5b0a8f4e6 100644 --- a/domains/ashleymavericks.json +++ b/domains/ashleymavericks.json @@ -5,7 +5,7 @@ "username": "ashlyemavericks", "email": "singhanurag024@gmail.com" }, - "record": { + "records": { "URL": "https://anuragsingh.dev" } } diff --git a/domains/ashtonfabby.json b/domains/ashtonfabby.json new file mode 100644 index 000000000..53989000b --- /dev/null +++ b/domains/ashtonfabby.json @@ -0,0 +1,11 @@ +{ + "description": "personal portfolio website", + "repo": "https://github.com/AshtonFabby/portfolio.git", + "owner": { + "username": "ashtonfabby", + "email": "ashtonfabbt@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ashuthosh.json b/domains/ashuthosh.json index 21026ada1..6dbf879f7 100644 --- a/domains/ashuthosh.json +++ b/domains/ashuthosh.json @@ -3,7 +3,7 @@ "username": "AshDubey8", "email": "ashuthoshmaheshdubey@gmail.com" }, - "record": { + "records": { "CNAME": "ashdubey8.github.io" } } diff --git a/domains/ashutosh-pandey.json b/domains/ashutosh-pandey.json index 602e366ed..96d11c2da 100644 --- a/domains/ashutosh-pandey.json +++ b/domains/ashutosh-pandey.json @@ -6,7 +6,7 @@ "email": "ashutosh.pandeyhlr007@gmail.com", "twitter": "DataCrusade1999" }, - "record": { + "records": { "CNAME": "datacrusade1999.github.io" } } diff --git a/domains/ashutosh.json b/domains/ashutosh.json index 27719cb8a..56c371c33 100644 --- a/domains/ashutosh.json +++ b/domains/ashutosh.json @@ -5,7 +5,7 @@ "username": "Ashutoshcoder", "email": "ashutoshkumardbms@gmail.com" }, - "record": { + "records": { "CNAME": "ashutoshcoder.github.io" } } diff --git a/domains/ashwa.json b/domains/ashwa.json index 6b20c1c3a..7ecccb90d 100644 --- a/domains/ashwa.json +++ b/domains/ashwa.json @@ -5,7 +5,7 @@ "username": "NatBLida68", "email": "aswajith.jithu888@gmail.com" }, - "record": { + "records": { "CNAME": "natblida68.github.io" } } diff --git a/domains/ashwin-s-nambiar.json b/domains/ashwin-s-nambiar.json index e4f391603..340631715 100644 --- a/domains/ashwin-s-nambiar.json +++ b/domains/ashwin-s-nambiar.json @@ -4,7 +4,7 @@ "username": "ashwin-s-nambiar", "discord": "ashwin_nambiar" }, - "record": { + "records": { "CNAME": "ashwin-portfolio-alpha.vercel.app" } } diff --git a/domains/ashwin.json b/domains/ashwin.json index 57d855556..e88566deb 100644 --- a/domains/ashwin.json +++ b/domains/ashwin.json @@ -6,7 +6,7 @@ "email": "ashwin3082002@gmail.com", "twitter": "ashwin3082002" }, - "record": { + "records": { "CNAME": "ashwin3082002.github.io" } } diff --git a/domains/asicalug.json b/domains/asicalug.json index f3fded52c..6523b52c0 100644 --- a/domains/asicalug.json +++ b/domains/asicalug.json @@ -3,7 +3,7 @@ "username": "Asicalug", "email": "isaac.poissinger@gmail.com" }, - "record": { + "records": { "CNAME": "asicalug.github.io" } } diff --git a/domains/asif.json b/domains/asif.json index 8d5d37857..fb00141ab 100644 --- a/domains/asif.json +++ b/domains/asif.json @@ -3,7 +3,7 @@ "username": "Asif404", "email": "asifmohammed4000@gmail.com" }, - "record": { + "records": { "CNAME": "asif-bq8.pages.dev" } } diff --git a/domains/asil.json b/domains/asil.json new file mode 100644 index 000000000..c60de6938 --- /dev/null +++ b/domains/asil.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website for Asil", + "repo": "https://github.com/asyard/asyard.github.io", + "owner": { + "username": "asyard", + "discord": "asyard" + }, + "records": { + "CNAME": "asyard.github.io" + } +} diff --git a/domains/asim.json b/domains/asim.json index 577d94bf1..b8432667f 100644 --- a/domains/asim.json +++ b/domains/asim.json @@ -5,7 +5,7 @@ "username": "asimbera", "email": "asimbera@outlook.in" }, - "record": { + "records": { "CNAME": "asimbera.github.io" } } diff --git a/domains/aslipatov.json b/domains/aslipatov.json index 346c76bc0..453808d2a 100644 --- a/domains/aslipatov.json +++ b/domains/aslipatov.json @@ -3,7 +3,7 @@ "username": "LipatovAlexander", "email": "lipatov.work@bk.ru" }, - "record": { + "records": { "CNAME": "lipatovalexander.github.io" } } diff --git a/domains/asnct.json b/domains/asnct.json index b95023607..793672aae 100644 --- a/domains/asnct.json +++ b/domains/asnct.json @@ -4,7 +4,7 @@ "username": "asnct", "email": "asnct@proton.me" }, - "record": { + "records": { "URL": "https://asnct_bio.t.me", "TXT": ["mailru-domain: wDSaV835X4LZyKsP", "v=spf1 redirect=_spf.mail.ru"], "MX": ["emx.mail.ru"] diff --git a/domains/aspect.json b/domains/aspect.json index bf09ab70a..72de56438 100644 --- a/domains/aspect.json +++ b/domains/aspect.json @@ -6,7 +6,7 @@ "email": "aspectsidesxyz@gmail.com", "twitter": "polaris51212" }, - "record": { + "records": { "CNAME": "aspectsides.github.io" } } diff --git a/domains/asriel.json b/domains/asriel.json index 8017febbc..0ffdd8d31 100644 --- a/domains/asriel.json +++ b/domains/asriel.json @@ -6,7 +6,7 @@ "email": "ganyu@segs.eu.org", "discord": "AsrieltheGoat" }, - "record": { + "records": { "CNAME": "asrielthegoat.github.io" } } diff --git a/domains/asteral.json b/domains/asteral.json index 0a21f347f..7c98a2e57 100644 --- a/domains/asteral.json +++ b/domains/asteral.json @@ -1,10 +1,9 @@ { "owner": { "username": "Asteral1", - "discord": "870366927653056582", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.H9xCuEnIBR7E8nLTC_Sjyda_0l2TZlFk5MeyxWiAz9gjxnV9RbPWy6bQfTWip6-Jro_UaAzbgyqT6uDQvFc94M4lrXGs7mygPVmdJlpEelG0bDwtKYAMizZPeFY-1FnkNen-IfrHf4fDwWmt_HBej2IHuWZBgKW_QAy7YFAjiqpAaocf3L4HszP_GCSeh1cFGtpjZxRYHP4FHiuqGaSblf_JPRiE0LwLgfzkyq3S3X9C8Vewph4qJke8vh7TbGVFw0VK8mOSlu-4eB124nCckw09k72qjHr2e3AnXOfO9G6jwlTtpe7a2x3ietmAc-hG2bWt-b4GulSuY7_e05vVzA.i_5GHMDD0QHPBP-Wu7JOSg.HlXpErR61jU-8EcTR4jTFnG48MK1U4YSgAbDJIBMwaNwPT-jBcY0Slx7RhT8Z4NoF3QQL5P3XTHPAcQ6S0e7lM50RJ-gdXyc9ovO-MMhmqs.ZH3nfNB5tWwjqxFRba9XKQ" + "discord": "870366927653056582" }, - "record": { + "records": { "CNAME": "asteral1.github.io" } } diff --git a/domains/asteria.json b/domains/asteria.json index 05d23a3b9..fe21818ac 100644 --- a/domains/asteria.json +++ b/domains/asteria.json @@ -3,7 +3,7 @@ "username": "spectre-xenon", "email": "omarzaghlool538@gmail.com" }, - "record": { + "records": { "CNAME": "asteria-9ee.pages.dev" } } diff --git a/domains/asterisk.json b/domains/asterisk.json index 74d6a192d..6efe8d0f6 100644 --- a/domains/asterisk.json +++ b/domains/asterisk.json @@ -4,7 +4,7 @@ "email": "me@asterisk.lol", "discord": "789561823863111742" }, - "record": { + "records": { "URL": "https://asterisk.lol" } } diff --git a/domains/asthriona.json b/domains/asthriona.json index 4efecb8de..17576e30b 100644 --- a/domains/asthriona.json +++ b/domains/asthriona.json @@ -3,7 +3,7 @@ "username": "Asthriona", "email": "im@asthriona.com" }, - "record": { + "records": { "CNAME": "asthriona.pages.dev" } } diff --git a/domains/astra.json b/domains/astra.json index a18e5fcc9..8948786ff 100644 --- a/domains/astra.json +++ b/domains/astra.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "MeHiGalatHu", - "email": "jabpadhekaindiatabhitoiitjayga@gmail.com" - - }, - "record": { - "CNAME": "astra-api.glitch.me" - } -} + "owner": { + "username": "MeHiGalatHu", + "email": "jabpadhekaindiatabhitoiitjayga@gmail.com" + }, + "records": { + "CNAME": "astra-api.glitch.me" + } +} diff --git a/domains/astrowin.json b/domains/astrowin.json index 72d047fe1..14e5cbfa3 100644 --- a/domains/astrowin.json +++ b/domains/astrowin.json @@ -4,7 +4,7 @@ "email": "enderfoxbg670@gmail.com", "discord": "970380468090437672" }, - "record": { + "records": { "CNAME": "astrowin.github.io" } } diff --git a/domains/asuid.dankamigos.json b/domains/asuid.dankamigos.json index 5a1b10f6b..ffffd9217 100644 --- a/domains/asuid.dankamigos.json +++ b/domains/asuid.dankamigos.json @@ -3,7 +3,7 @@ "username": "mokshdk", "email": "anirudhsus001@gmail.com" }, - "record": { + "records": { "TXT": ["562965D131E7C913D1796476301A86A148A2B64B52D99FC316724B0B785FAAB1"] } } diff --git a/domains/asuna.json b/domains/asuna.json index 835cb6e3b..6a1bd3464 100644 --- a/domains/asuna.json +++ b/domains/asuna.json @@ -5,7 +5,7 @@ "username": "ehAsuna", "email": "codeasaurousteam@gmail.com" }, - "record": { + "records": { "CNAME": "ehasuna.github.io" } } diff --git a/domains/aswin-m-v.json b/domains/aswin-m-v.json new file mode 100644 index 000000000..edbe09fbc --- /dev/null +++ b/domains/aswin-m-v.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website me , Aswin M V", + "repo": "https://github.com/AswinArsha/mypersonalwebsite.git", + "owner": { + "username": "AswinArsha", + "email": "aswinmv13@gmail.com" + }, + "records": { + "CNAME": "tubular-kangaroo-60ad83.netlify.app" + } +} diff --git a/domains/aswin-vs.json b/domains/aswin-vs.json index 7e5913870..720b994f9 100644 --- a/domains/aswin-vs.json +++ b/domains/aswin-vs.json @@ -5,7 +5,7 @@ "username": "aswin-vs", "email": "aswinvs.nitt@gmail.com" }, - "record": { + "records": { "CNAME": "aswin-vs.github.io" } } diff --git a/domains/aswin.json b/domains/aswin.json index c16350ea7..8c07a7b0b 100644 --- a/domains/aswin.json +++ b/domains/aswin.json @@ -5,7 +5,7 @@ "username": "aswinskumar67", "email": "aswin.skumaro2bme@gmail.com" }, - "record": { + "records": { "CNAME": "aswinskumar67.github.io" } } diff --git a/domains/aswinmahesh.json b/domains/aswinmahesh.json index 4788b16c5..c399cc270 100644 --- a/domains/aswinmahesh.json +++ b/domains/aswinmahesh.json @@ -1,11 +1,10 @@ { "description": "Aswin Mahesh Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/aswinmaheshc.json b/domains/aswinmaheshc.json index 5092baf92..3a724d111 100644 --- a/domains/aswinmaheshc.json +++ b/domains/aswinmaheshc.json @@ -1,13 +1,17 @@ { "description": "Aswin Mahesh C Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all", + "brevo-code:d8777e54528775ea50a5842cda15f3fb", + "k=rsa;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDeMVIzrCa3T14JsNY0IRv5/2V1/v2itlviLQBwXsa7shBD6TrBkswsFUToPyMRWC9tbR/5ey0nRBH0ZVxp+lsmTxid2Y2z+FApQ6ra2VsXfbJP3HE6wAO0YTVEJt1TmeczhEd2Jiz/fcabIISgXEdSpTYJhb0ct0VJRxcg4c8c7wIDAQAB", + "v=DMARC1; p=none; rua=mailto:rua@dmarc.brevo.com" + ] } } diff --git a/domains/aswinop.json b/domains/aswinop.json index 53183abca..e3ebc0f2f 100644 --- a/domains/aswinop.json +++ b/domains/aswinop.json @@ -6,7 +6,7 @@ "email": "itsaswinop@gmail.com", "twitter": "iamaswinop" }, - "record": { + "records": { "CNAME": "aswinop.github.io" } } diff --git a/domains/aswinrout.json b/domains/aswinrout.json index fda546dc8..def7a5466 100644 --- a/domains/aswinrout.json +++ b/domains/aswinrout.json @@ -5,7 +5,7 @@ "username": "AswinCreates", "email": "aswin94281@gmail.com" }, - "record": { + "records": { "CNAME": "aswincreates.github.io" } } diff --git a/domains/asya.json b/domains/asya.json new file mode 100644 index 000000000..06bfdd985 --- /dev/null +++ b/domains/asya.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portofolio website", + "repo": "https://github.com/Glenferdinza/glenferdinza.github.io", + "owner": { + "username": "Glenferdinza", + "email": "ghisyadesign21@gmail.com" + }, + "records": { + "CNAME": "glenferdinza.github.io" + } +} diff --git a/domains/async.json b/domains/async.json index b640d8f72..afe304d46 100644 --- a/domains/async.json +++ b/domains/async.json @@ -1,10 +1,9 @@ { "owner": { "username": "synqqrawr", - "discord": "797422750321999943", - "owl": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.crVD_cCdtO6b_JicT3SsK0s6yaSVj3jrf4uy2ecSvBp-kgiqcmhOaeuMyU10dMdvcvrhhfLrDvbYYawk6i4cCbThsYKVoNcmfQmFG4EE-CA98kwasx_g1xHlwXCq3tu1TxLpAOmahvp871714nMFqXvUGK2j0bLsZngbQXbxgz_-3z7o-Kr3T8JhvjSvNXpv8JNyHnQp4bFQ8x7wbSgvAK0y2cskwpKPafc3KigaD511hkWi0YXrZidsW8v3iOUv_uEUXporuGjtf5tsTu0ABmAZjzJ4KCuyM6pYuXJ8tms9W6nXP-fAv6j-c9yEnj6gZnvGk5cZmSjzKxjeqlnoJA.MltIcXwGYYlotVb2BMAjQw.FgwQ7PdSm6tYQ4UVzc7of9O8G02KBJ9U3XgJ69sBTJZf4LOdG6Dwb-87FQ9rPwRZ-U-8PUl9290ub6qDfIqzic8wft5wi1mjJBRIT4B9Luo.sLGOlk_-pYJLI8Oqmo1mOw" + "discord": "797422750321999943" }, - "record": { + "records": { "CNAME": "synqq.pages.dev" } } diff --git a/domains/asyncedd.json b/domains/asyncedd.json index 80927cee2..0f4529102 100644 --- a/domains/asyncedd.json +++ b/domains/asyncedd.json @@ -3,7 +3,7 @@ "username": "asyncedd", "email": "isynqquwu@proton.me" }, - "record": { + "records": { "CNAME": "asyncedd.pages.dev" } } diff --git a/domains/at-muhammad.json b/domains/at-muhammad.json new file mode 100644 index 000000000..471231355 --- /dev/null +++ b/domains/at-muhammad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "xgovernor", + "email": "abutahermuhammad@outlook.com", + "description": "Portfolio website of Abu Taher Muhammad" + }, + "records": { + "CNAME": "at-mah.vercel.app" + } +} diff --git a/domains/ataim.json b/domains/ataim.json index 16b849a47..858f2ece4 100644 --- a/domains/ataim.json +++ b/domains/ataim.json @@ -5,7 +5,7 @@ "username": "ataim9999", "email": "daanprive0@gmail.com" }, - "record": { + "records": { "CNAME": "ataim9999.github.io" } } diff --git a/domains/atechadventurer.json b/domains/atechadventurer.json index 562f3ed46..886ab5ad5 100644 --- a/domains/atechadventurer.json +++ b/domains/atechadventurer.json @@ -1,11 +1,10 @@ { "description": "ATechAdventurer's Site", - "repo": "https://github.com/ATechAdventurer", "owner": { "username": "ATechAdventurer", "email": "cam.steeleis@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ATechAdventurer" } } diff --git a/domains/ath.json b/domains/ath.json index aac6e1283..9e6b41fca 100644 --- a/domains/ath.json +++ b/domains/ath.json @@ -3,7 +3,7 @@ "username": "Anchu251", "email": "thuanhvu.ai@gmail.com" }, - "record": { + "records": { "CNAME": "anchu251.github.io" } } diff --git a/domains/athanasopoulos.json b/domains/athanasopoulos.json index c42231138..a33608629 100644 --- a/domains/athanasopoulos.json +++ b/domains/athanasopoulos.json @@ -4,7 +4,7 @@ "email": "manos.athanasopoulos@yahoo.gr", "discord": "187183823354724352" }, - "record": { + "records": { "CNAME": "next-portfolio-eight-kohl.vercel.app" } } diff --git a/domains/atharv.json b/domains/atharv.json index 5613a2fd5..e8247bc8a 100644 --- a/domains/atharv.json +++ b/domains/atharv.json @@ -6,7 +6,7 @@ "email": "atharv.sbiz@gmail.com", "twitter": "realatharv" }, - "record": { + "records": { "CNAME": "realatharv.github.io" } } diff --git a/domains/atharva.json b/domains/atharva.json index c98afeecd..b5b91d377 100644 --- a/domains/atharva.json +++ b/domains/atharva.json @@ -4,7 +4,7 @@ "username": "atharvaupadhyay", "email": "atharva.upadhyay1099@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/atharvd.json b/domains/atharvd.json index eb71cd72c..4e4bd74e0 100644 --- a/domains/atharvd.json +++ b/domains/atharvd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "D-Atharv", - "email": "atharv.dewangan04@gmail.com" - }, - "record": { - "CNAME": "my-portfolio-dusky-six-78.vercel.app" - } + "owner": { + "username": "D-Atharv", + "email": "atharv.dewangan04@gmail.com" + }, + "records": { + "CNAME": "my-portfolio-dusky-six-78.vercel.app" + } } diff --git a/domains/athfan.json b/domains/athfan.json new file mode 100644 index 000000000..64b5c7e69 --- /dev/null +++ b/domains/athfan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "athphane", + "email": "athphane@gmail.com" + }, + "records": { + "CNAME": "athfan.com" + } +} diff --git a/domains/athifrahmawan.json b/domains/athifrahmawan.json index 9528ae292..38a754f5f 100644 --- a/domains/athifrahmawan.json +++ b/domains/athifrahmawan.json @@ -5,7 +5,7 @@ "discord": "Athif#3017" }, "description": "Athif Rahmawan's Portfolio", - "record": { + "records": { "CNAME": "profriski.github.io" } } diff --git a/domains/athira-li.json b/domains/athira-li.json index 0681d7ffa..0bd20ab33 100644 --- a/domains/athira-li.json +++ b/domains/athira-li.json @@ -5,7 +5,7 @@ "username": "Athira-L-I", "email": "athirali4582@gmail.com" }, - "record": { + "records": { "CNAME": "athira-l-i.github.io" } } diff --git a/domains/athulanoop.json b/domains/athulanoop.json new file mode 100644 index 000000000..84f7c3d48 --- /dev/null +++ b/domains/athulanoop.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/alpha-og/portfolio", + "owner": { + "username": "alpha-og", + "email": "athulanoop2020@gmail.com" + }, + "records": { + "CNAME": "alpha-og.github.io" + } +} diff --git a/domains/ati.json b/domains/ati.json index 4b15481c8..60a13fdf3 100644 --- a/domains/ati.json +++ b/domains/ati.json @@ -1,10 +1,9 @@ { "owner": { "username": "creeperkafasi", - "discord": "442685489833705483", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZPTcnLdFttSuLaKlK39M9sd2ycdqHvSoqSEB3_9Et8BOhXNb5gH12xoXrjULQ-VZn_pNgglyesizfRYYtiPBgT1tpqZXuH-oaUgwY7g9NuFcoZAsGX8G2vNR-a_j9rw_7KdpB-NikCUjqt4Af_VS-opbI7Tjshwcte1BFYqJrGvjacnRMkmiLI1c3GuR64MqOmNmQdgz2Lo7wy8yzfPbGKFm49KkZSfz3br_xi8HgRDgOvBYE4HOiPoS7Br_wGyOWp9LOOpJV-h2cKxqW_NrYDjqNDymiod-H0HjvNp-unlINxJ1Lr_zv8-_lqWWF0USHBav0csOOniQrOfTlp4TOg.K8BBMA79AcjnjVD2m_LyUQ.9tFlThKomuA3pULo231_52baTqhyItv6H8y5zFlQSsqx5yx0eCIAWR8Fk5FbC30kIBAj8cxmpmTz_-zvq86deOrN8kJruww8eu8Ywc6vZdo.QoCfXfVsFPMBt4wLOiBZtQ" + "discord": "442685489833705483" }, - "record": { + "records": { "CNAME": "atiai.github.io" } } diff --git a/domains/atomic.json b/domains/atomic.json new file mode 100644 index 000000000..546fd2366 --- /dev/null +++ b/domains/atomic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "atomictyler1", + "discord": "atomictyler" + }, + "records": { + "CNAME": "atomictyler1.github.io" + } +} diff --git a/domains/atomtr.json b/domains/atomtr.json new file mode 100644 index 000000000..68a338e44 --- /dev/null +++ b/domains/atomtr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "atom-tr", + "email": "thai.tr@hotmail.com", + "discord": "423327141921423361" + }, + "records": { + "CNAME": "astro-erudite.pages.dev" + }, + "repo": "https://github.com/atom-tr/astro-erudite" +} diff --git a/domains/atul.json b/domains/atul.json index a560b78ff..66df28f31 100644 --- a/domains/atul.json +++ b/domains/atul.json @@ -5,7 +5,7 @@ "username": "Atul-Patil-99", "email": "atuluttampatil.1757@gmail.com" }, - "record": { + "records": { "CNAME": "atulpatil-me.github.io" } } diff --git a/domains/au.json b/domains/au.json index b96b01370..5b1cf1e93 100644 --- a/domains/au.json +++ b/domains/au.json @@ -3,7 +3,7 @@ "username": "zzph", "email": "johnbrettc@gmail.com" }, - "record": { + "records": { "CNAME": "zephyr-1.onrender.com" } } diff --git a/domains/aud.json b/domains/aud.json new file mode 100644 index 000000000..4911a5867 --- /dev/null +++ b/domains/aud.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "An-Unnamed-Developer", + "email": "loganj1403@outlook.com" + }, + "records": { + "A": ["82.16.42.25"] + } +} diff --git a/domains/augustine.json b/domains/augustine.json index 6db08d29c..aabc40e37 100644 --- a/domains/augustine.json +++ b/domains/augustine.json @@ -1,11 +1,10 @@ { "description": "Augustine's personal developer website", - "repo": "https://github.com/augustineaykara", "owner": { "username": "augustineaykara", "email": "augustineaykara@gmail.com" }, - "record": { + "records": { "URL": "http://augustine.aykara4.com" } } diff --git a/domains/auq3l.json b/domains/auq3l.json index 7e02ef3b0..778cd9a82 100644 --- a/domains/auq3l.json +++ b/domains/auq3l.json @@ -3,7 +3,7 @@ "username": "l3qua", "email": "lequangthanh260211@gmail.com" }, - "record": { + "records": { "CNAME": "l3qua.github.io" } } diff --git a/domains/aura.json b/domains/aura.json index 06568244b..144cd981b 100644 --- a/domains/aura.json +++ b/domains/aura.json @@ -3,7 +3,7 @@ "username": "auravoid", "email": "github@auravoid.dev" }, - "record": { + "records": { "CNAME": "aura-is-a-dev.pages.dev" } } diff --git a/domains/aus.json b/domains/aus.json index f5c40ead8..499335a54 100644 --- a/domains/aus.json +++ b/domains/aus.json @@ -1,9 +1,9 @@ { "owner": { - "username": "MrAkshayAS", - "email": "akshau72p@gmail.com" + "username": "mraxays", + "discord": "mrakshayas" }, - "record": { - "URL": "https://mrakshayas.github.io/portfolio/" + "records": { + "URL": "https://repo.auss.in/portfolio/" } } diff --git a/domains/austino.json b/domains/austino.json index 5d24b4b1f..8210499b0 100644 --- a/domains/austino.json +++ b/domains/austino.json @@ -3,7 +3,7 @@ "username": "AustinGraphics", "email": "austinxthomas@gmail.com" }, - "record": { + "records": { "CNAME": "austingraphics.github.io" } } diff --git a/domains/australia.json b/domains/australia.json new file mode 100644 index 000000000..48e904dc8 --- /dev/null +++ b/domains/australia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "1040303561847881729" + }, + "records": { + "URL": "https://yunexiz.is-a.dev/?australia-is-upside-down=true" + } +} diff --git a/domains/ausy.json b/domains/ausy.json index 234f14ec7..ed155adb1 100644 --- a/domains/ausy.json +++ b/domains/ausy.json @@ -5,7 +5,7 @@ "username": "FenneAustin", "email": "austindfenne@gmail.com" }, - "record": { + "records": { "CNAME": "fenneaustin.github.io" } } diff --git a/domains/auth.sign.alvin.json b/domains/auth.sign.alvin.json new file mode 100644 index 000000000..b7d7c630c --- /dev/null +++ b/domains/auth.sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "records": { + "TXT": "Created to allow nested subdomains to exist." + } +} diff --git a/domains/autobean.json b/domains/autobean.json index d1eb25b2e..a56853554 100644 --- a/domains/autobean.json +++ b/domains/autobean.json @@ -3,7 +3,7 @@ "username": "AriesPowv", "email": "apowvalla26@jesuitmail.org" }, - "record": { + "records": { "A": ["34.111.254.92"] } } diff --git a/domains/autoconfig.ciaobot.json b/domains/autoconfig.ciaobot.json deleted file mode 100644 index 489beccbf..000000000 --- a/domains/autoconfig.ciaobot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ciao287", - "discord": "687333016921440317" - }, - "record": { - "CNAME": "mail.ciaohost.tech" - } -} diff --git a/domains/autoconfig.stefdp.json b/domains/autoconfig.stefdp.json new file mode 100644 index 000000000..2bcaa7999 --- /dev/null +++ b/domains/autoconfig.stefdp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Stef-00012", + "discord": "694986201739952229" + }, + "records": { + "CNAME": "mail.stefdp.com" + } +} diff --git a/domains/autodiscover.ciaobot.json b/domains/autodiscover.ciaobot.json deleted file mode 100644 index 489beccbf..000000000 --- a/domains/autodiscover.ciaobot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ciao287", - "discord": "687333016921440317" - }, - "record": { - "CNAME": "mail.ciaohost.tech" - } -} diff --git a/domains/autodiscover.halinh0506.json b/domains/autodiscover.halinh0506.json deleted file mode 100644 index 8c9d66830..000000000 --- a/domains/autodiscover.halinh0506.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "huanhoahongso3-collab", - "email": "huanhoahongso3@gmail.com" - }, - "record": { - "CNAME": "autodiscover.outlook.com" - } -} diff --git a/domains/autodiscover.stefdp.json b/domains/autodiscover.stefdp.json new file mode 100644 index 000000000..2bcaa7999 --- /dev/null +++ b/domains/autodiscover.stefdp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Stef-00012", + "discord": "694986201739952229" + }, + "records": { + "CNAME": "mail.stefdp.com" + } +} diff --git a/domains/autodiscover.yash.json b/domains/autodiscover.yash.json index 5fbc873dc..b8d433114 100644 --- a/domains/autodiscover.yash.json +++ b/domains/autodiscover.yash.json @@ -5,7 +5,7 @@ "username": "real-yash", "email": "connect@real-yash.is-a.dev" }, - "record": { + "records": { "CNAME": "autodiscover.outlook.com" } } diff --git a/domains/ave.json b/domains/ave.json index 456a3e924..2c214ea1e 100644 --- a/domains/ave.json +++ b/domains/ave.json @@ -5,7 +5,7 @@ "username": "ayvacs", "email": "ayvacs@proton.me" }, - "record": { + "records": { "CNAME": "ayvacs.github.io" } } diff --git a/domains/avellea.json b/domains/avellea.json index cb8c2e2f9..3fb6804af 100644 --- a/domains/avellea.json +++ b/domains/avellea.json @@ -5,7 +5,7 @@ "username": "Avellea", "discord": "Ave#2776" }, - "record": { + "records": { "CNAME": "avellea.github.io" } } diff --git a/domains/avengers-sonarqube.json b/domains/avengers-sonarqube.json index fc7696611..827392149 100644 --- a/domains/avengers-sonarqube.json +++ b/domains/avengers-sonarqube.json @@ -3,7 +3,7 @@ "username": "hxhieu", "email": "hugh.hoang@gmail.com" }, - "record": { + "records": { "CNAME": "sonaqube.jollyocean-513cc86d.australiaeast.azurecontainerapps.io" } } diff --git a/domains/averagepce.json b/domains/averagepce.json index 12dc26112..39246508b 100644 --- a/domains/averagepce.json +++ b/domains/averagepce.json @@ -3,7 +3,7 @@ "username": "FaultyFaulty-glitch", "email": "faultywindows@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/averagepcweb.json b/domains/averagepcweb.json index d7de4fcdb..4dfe11bbf 100644 --- a/domains/averagepcweb.json +++ b/domains/averagepcweb.json @@ -3,7 +3,7 @@ "username": "FaultyFaulty-glitch", "discord": "1102928631191322675" }, - "record": { + "records": { "CNAME": "averagepcweb.pages.dev" } } diff --git a/domains/averse.json b/domains/averse.json index a01b730f1..16198a694 100644 --- a/domains/averse.json +++ b/domains/averse.json @@ -5,7 +5,7 @@ "username": "AverseABFun", "email": "averse.abfun@gmail.com" }, - "record": { + "records": { "CNAME": "averseabfun.github.io" } } diff --git a/domains/avery.json b/domains/avery.json index af5e85347..a80ac20a9 100644 --- a/domains/avery.json +++ b/domains/avery.json @@ -5,7 +5,7 @@ "discord": "Avery~#1845" }, "description": "A cool domain that will most likely use!", - "record": { + "records": { "CNAME": "caverym.net" } } diff --git a/domains/avg.json b/domains/avg.json index 68077ac02..5934573ca 100644 --- a/domains/avg.json +++ b/domains/avg.json @@ -3,7 +3,7 @@ "username": "AverageHelper", "mastodon": "@avghelper@average.name" }, - "record": { + "records": { "URL": "https://average.name" } } diff --git a/domains/avi.json b/domains/avi.json index 7b197271f..a8b80c5b7 100644 --- a/domains/avi.json +++ b/domains/avi.json @@ -3,7 +3,7 @@ "username": "avipars", "email": "isdev@aviparshan.com" }, - "record": { + "records": { "CNAME": "avipars.github.io" }, "description": "Personal website with useful links", diff --git a/domains/avidevs31.json b/domains/avidevs31.json index c5ba0bfbe..c91c9fb42 100644 --- a/domains/avidevs31.json +++ b/domains/avidevs31.json @@ -3,7 +3,7 @@ "username": "AviDevs31", "email": "josealbertotaverazz@gmail.com" }, - "record": { + "records": { "CNAME": "avidevs31.github.io" } } diff --git a/domains/avilam.json b/domains/avilam.json new file mode 100644 index 000000000..bcfdd8698 --- /dev/null +++ b/domains/avilam.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dxravage" + }, + "records": { + "CNAME": "dxravage.github.io" + } +} diff --git a/domains/aviv.json b/domains/aviv.json new file mode 100644 index 000000000..f5a887c0c --- /dev/null +++ b/domains/aviv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "avivelmakias1", + "email": "aviv.elmakias.b@gmail.com" + }, + "records": { + "URL": "https://github.com/avivelmakias1" + } +} diff --git a/domains/avnoor-gamerz.json b/domains/avnoor-gamerz.json index 92d607ea7..c7e17bbab 100644 --- a/domains/avnoor-gamerz.json +++ b/domains/avnoor-gamerz.json @@ -6,7 +6,7 @@ "email": "avnoorchahal001@gmail.com", "twitter": "avnoor-gamerz" }, - "record": { + "records": { "CNAME": "avnoor-gamerz.github.io" } } diff --git a/domains/avversion.json b/domains/avversion.json index adbc9dd3c..d553c9bb0 100644 --- a/domains/avversion.json +++ b/domains/avversion.json @@ -1,9 +1,8 @@ { "owner": { - "username": "AVVERSION", - "email": "79741360+AVVERSION@users.noreply.github.com" + "username": "AVVERSION" }, - "record": { + "records": { "CNAME": "avversion.github.io" } } diff --git a/domains/awais.json b/domains/awais.json new file mode 100644 index 000000000..23d2c8a18 --- /dev/null +++ b/domains/awais.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio website for Awais Khan Niazi", + "repo": "https://github.com/askhan963/register", + "owner": { + "username": "askhan963", + "email": "awaisknas963@gmail.com" + }, + "records": { + "CNAME": "awaiskhanniazi.netlify.app" + }, + "proxied": false +} diff --git a/domains/awan.json b/domains/awan.json index 7890ad975..3e6e0d58b 100644 --- a/domains/awan.json +++ b/domains/awan.json @@ -5,7 +5,7 @@ "email": "awa1shrestha@gmail.com", "twitter": "awanshrestha1" }, - "record": { + "records": { "URL": "https://awan.com.np" } } diff --git a/domains/awhvish.json b/domains/awhvish.json new file mode 100644 index 000000000..b5c36a032 --- /dev/null +++ b/domains/awhvish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "awhvish", + "email": "high.avis.lowha@gmail.com" + }, + "records": { + "CNAME": "awhvish.vercel.app" + } +} diff --git a/domains/awinds.json b/domains/awinds.json new file mode 100644 index 000000000..d517d42aa --- /dev/null +++ b/domains/awinds.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "awinds", + "email": "awinds@gmail.com" + }, + "records": { + "NS": ["felicity.ns.cloudflare.com", "keyla.ns.cloudflare.com"] + } +} diff --git a/domains/axay.json b/domains/axay.json index 3bea8a7b9..794507551 100644 --- a/domains/axay.json +++ b/domains/axay.json @@ -1,9 +1,9 @@ { "owner": { - "username": "MrAkshayAS", + "username": "mraxays", "discord": "mrakshayas" }, - "record": { - "URL": "https://mrakshayas.github.io/" + "records": { + "URL": "https://mraxays.github.io/" } } diff --git a/domains/axd.json b/domains/axd.json index 833de0b33..f35b74546 100644 --- a/domains/axd.json +++ b/domains/axd.json @@ -3,7 +3,7 @@ "username": "alexdhg", "email": "webmaster@webwarp.ro" }, - "record": { + "records": { "URL": "https://webwarp.ro" } } diff --git a/domains/axe.json b/domains/axe.json index 490132d0e..bdaea2b78 100644 --- a/domains/axe.json +++ b/domains/axe.json @@ -3,7 +3,7 @@ "username": "axelawh", "email": "lewisbrown171@gmail.com" }, - "record": { + "records": { "A": ["195.20.254.54"] } } diff --git a/domains/axel.json b/domains/axel.json index 15f0a6860..e5477052d 100644 --- a/domains/axel.json +++ b/domains/axel.json @@ -3,7 +3,7 @@ "username": "axelilali", "email": "axel.ilali@yahoo.fr" }, - "record": { + "records": { "CNAME": "axel-ilali.com" } } diff --git a/domains/axeon.json b/domains/axeon.json index 92ef9f279..deb8c4dae 100644 --- a/domains/axeon.json +++ b/domains/axeon.json @@ -1,9 +1,9 @@ { "owner": { - "username": "ReBlast", - "discord": "poxuizm" + "username": "vyfor", + "discord": "vyfor" }, - "record": { + "records": { "CNAME": "axeon.pages.dev" } } diff --git a/domains/axewbotx.json b/domains/axewbotx.json index 9001701b6..9791dd721 100644 --- a/domains/axewbotx.json +++ b/domains/axewbotx.json @@ -6,7 +6,7 @@ "email": "lovedeepbrar54155@gmail.com", "twitter": "AxewBoTX" }, - "record": { + "records": { "CNAME": "axewbotx.github.io" } } diff --git a/domains/axinux.json b/domains/axinux.json index 0511d4406..14f6aa182 100644 --- a/domains/axinux.json +++ b/domains/axinux.json @@ -3,7 +3,7 @@ "username": "axinux", "email": "theaxinux@gmail.com" }, - "record": { + "records": { "CNAME": "my-website-cvi.pages.dev" } } diff --git a/domains/axioris.json b/domains/axioris.json new file mode 100644 index 000000000..0756e95ac --- /dev/null +++ b/domains/axioris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "axioris", + "email": "dane.foster.collins@gmail.com" + }, + "records": { + "CNAME": "axioris.github.io" + } +} diff --git a/domains/axo.json b/domains/axo.json index 97a4b991f..2904198de 100644 --- a/domains/axo.json +++ b/domains/axo.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "ImAxolotlicekDev", - "discord": "1125148972449796136", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qTh1SRQ2rIL26gQVBhmWSiLfW8cEEKLYBIYAj90jEctx9sSIXBWVGNBbtHzRKEajLmLPJClSn3H1ZEh1y0a-xaZZtyyQMJPSnLz0uq9GwjGqnC7GERliGZZMgdcdbHkskkDx5HU0yIjQYKcCKcTxDpEoIGfjJsc0sxQSGvz7gzH2XLuPmaGQY_9N-iJRT5Qxoe7dZ8f8cXT1XQr0SMuVw_MK-oHv05N8Mq33n7bYBdevRJjwGm9-fgceAS4Az30GCu4LPftFw2aUnz-mfzQNP7FaTq6hAkmIXGF1TI4zZwI8s0E5SYYF0Wdeza5I5bL2eV9U0ZKb8TBDYlOCu4zt-A.l7hez3hwbNNkuYc5mGcHnw.ZaJJd4kNJZPDYem-sNHBJ1qzSaGPQiERP1LBUZ-HDvbGC6FHBrdBJ-LFm_9k_jmPTSYgyU7Pz9YqKcaZhLWPHmYYhurP2t3gG9jDEAGoi4HB6I5Ddlc0g_WthxOak8Yx.bwqnONbqUYeiqlYhZ6fWXw" - }, - - "record": { - "A": ["158.178.206.169"] - } - } - \ No newline at end of file + "owner": { + "username": "ImAxolotlicekDev", + "discord": "1125148972449796136" + }, + "records": { + "A": ["158.178.206.169"] + } +} diff --git a/domains/axrxvm.json b/domains/axrxvm.json index c019c3058..100c4c51d 100644 --- a/domains/axrxvm.json +++ b/domains/axrxvm.json @@ -3,7 +3,7 @@ "username": "AaravMehta59", "email": "poojaaarav321@gmail.com" }, - "record": { + "records": { "URL": "https://aaravm.me/" } } diff --git a/domains/ayaangrover.json b/domains/ayaangrover.json index 545053a65..6af4d5b6a 100644 --- a/domains/ayaangrover.json +++ b/domains/ayaangrover.json @@ -6,7 +6,7 @@ "email": "ayaangrover@gmail.com", "twitter": "grover_ayaan" }, - "record": { + "records": { "CNAME": "ayaangrover.github.io" } } diff --git a/domains/ayaanhaider.json b/domains/ayaanhaider.json index 594c3916a..d33e05ce5 100644 --- a/domains/ayaanhaider.json +++ b/domains/ayaanhaider.json @@ -3,7 +3,7 @@ "username": "ayaanhaider-dev", "email": "ayaanhaider.dev@gmail.com" }, - "record": { + "records": { "CNAME": "ayaanhaider-dev.web.app" } } diff --git a/domains/ayan.json b/domains/ayan.json index 301f6bac0..39efc0a66 100644 --- a/domains/ayan.json +++ b/domains/ayan.json @@ -2,10 +2,9 @@ "owner": { "username": "Ghost-67-G", "discordUserame": "ghost_67_g", - "discord": "1257342894172274758", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.InxyqXdwBXr24GsihCzaEqGi84Z0xotOI_vlu-03PGjOvenB2_55Q7lEFvMLRHTK0AbcuE9pPfqGac4MkULKNoSpAxTJD9wy0oqfaLoKIjcqJTC8e3L23l_-xht8e7Kca8Z87rpHVkb0JZe9svt_w1BZq30GLAwevkZilr7JdS7I-LmArbL7cf0IFU5qpB3FdMVtglx5KoBLT6cyLSR0BOIozBTpe-NspSvpu6rvSFMpbCiLuosXHvRP4KAcqEJPQ2QKLvOUEc53yLry-ws_VOrN5KC-wcb6fLAqVcenilKyW89lLW8mdRq1mLLOuUU2NLLMLZv5YCbM7-bFPKKUEQ.Wst_jjbT4uV1S4oLoiZvDQ.5DQCUGh0EVe6AjQcin_IXOC5UY-p_8hpOVExIF9lRV72K_OfykQdahQ5kLQWJLhUSvzPJHHDw4Z3GgD0OpSCLR3kFtdBKVhuR0bPaikj-x-a6IorOmD_plbXA7Doma-W.UkyrHmdJZXkNLfFqiLARYg" + "discord": "1257342894172274758" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/ayberk.json b/domains/ayberk.json new file mode 100644 index 000000000..38c188a90 --- /dev/null +++ b/domains/ayberk.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/ayberktandogan/ayberktandogan.github.io", + "owner": { + "username": "ayberktandogan", + "email": "ayberk.tandogan@outlook.com" + }, + "records": { + "CNAME": "ayberktandogan.github.io" + } +} diff --git a/domains/ayinaki.json b/domains/ayinaki.json index 3400f69bd..87c4e608e 100644 --- a/domains/ayinaki.json +++ b/domains/ayinaki.json @@ -3,7 +3,7 @@ "username": "Ayinaki", "email": "ayinakidev@gmail.com" }, - "record": { + "records": { "CNAME": "ayinaki.github.io" } } diff --git a/domains/aymouwu.json b/domains/aymouwu.json index 9e620ceca..9ce524cd2 100644 --- a/domains/aymouwu.json +++ b/domains/aymouwu.json @@ -3,7 +3,7 @@ "username": "NotAymo", "email": "ninecraftoff@outlook.com" }, - "record": { + "records": { "CNAME": "usest1.netro.host" } } diff --git a/domains/aynonyme.json b/domains/aynonyme.json index 66a84dbb0..1165e78fa 100644 --- a/domains/aynonyme.json +++ b/domains/aynonyme.json @@ -5,7 +5,7 @@ "username": "AYn0nyme", "email": "aynonyme@proton.me" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/ayoungmanwithanoldsoul.json b/domains/ayoungmanwithanoldsoul.json index ff9f8ecfc..6f034c834 100644 --- a/domains/ayoungmanwithanoldsoul.json +++ b/domains/ayoungmanwithanoldsoul.json @@ -3,7 +3,7 @@ "username": "ayoungmanwithanoldsoul", "email": "paoloandrewpomar@gmail.com" }, - "record": { + "records": { "CNAME": "ayoungmanwithanoldsoul.github.io" } } diff --git a/domains/aypro.json b/domains/aypro.json index a5e78fa37..b2978dbcd 100644 --- a/domains/aypro.json +++ b/domains/aypro.json @@ -5,7 +5,7 @@ "username": "aypro-droid", "email": "ayprogaming1@gmail.com" }, - "record": { + "records": { "CNAME": "aypro-droid.github.io" } } diff --git a/domains/ayush.json b/domains/ayush.json index 067fbfcf6..b679b500b 100644 --- a/domains/ayush.json +++ b/domains/ayush.json @@ -5,7 +5,7 @@ "username": "Itzayushzz", "discord": "Ayush_Ezz#6057" }, - "record": { + "records": { "CNAME": "itzayushzz.github.io" } } diff --git a/domains/ayushh.json b/domains/ayushh.json new file mode 100644 index 000000000..6a6b61b15 --- /dev/null +++ b/domains/ayushh.json @@ -0,0 +1,11 @@ +{ + "description": "Ayush personal website", + "repo": "https://github.com/Ayush-Kotlin-Dev/GFG_GGV", + "owner": { + "username": "ayush-kotlin-dev", + "email": "shweetarai@gmail.com" + }, + "records": { + "URL": "https://my-portfolio-qlsr.onrender.com/" + } +} diff --git a/domains/ayushk.json b/domains/ayushk.json new file mode 100644 index 000000000..74a806a3b --- /dev/null +++ b/domains/ayushk.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ayushk-1801", + "email": "ayush.kumara1801@gmail.com", + "discord": "ayushk_1801" + }, + "records": { + "CNAME": "ayushkumaranand.vercel.app" + } +} diff --git a/domains/ayushman.json b/domains/ayushman.json new file mode 100644 index 000000000..badd2da75 --- /dev/null +++ b/domains/ayushman.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for Ayushman", + "owner": { + "username": "AMRzip", + "email": "ayushmanrathi0@gmail.com" + }, + "records": { + "CNAME": "ARMzip.github.io" + }, + "proxied": false +} diff --git a/domains/ayushmansarkar.json b/domains/ayushmansarkar.json index 406f5b71d..b1d4f0022 100644 --- a/domains/ayushmansarkar.json +++ b/domains/ayushmansarkar.json @@ -5,7 +5,7 @@ "username": "AyushmanSarkar", "email": "aayushmans2008@gmail.com" }, - "record": { + "records": { "CNAME": "ayushmansarkar.github.io" } } diff --git a/domains/ayushshivaji.json b/domains/ayushshivaji.json index b2fad146c..3c4e870be 100644 --- a/domains/ayushshivaji.json +++ b/domains/ayushshivaji.json @@ -3,7 +3,7 @@ "username": "ayushclashroyale", "email": "ayushclashroyale@gmail.com" }, - "record": { + "records": { "CNAME": "ayushclashroyale.github.io" } } diff --git a/domains/ayushtiwari.json b/domains/ayushtiwari.json index d300ab9a0..20c0cb818 100644 --- a/domains/ayushtiwari.json +++ b/domains/ayushtiwari.json @@ -5,7 +5,7 @@ "username": "aaayushh7", "discord": "_aaayushh" }, - "record": { + "records": { "URL": "https://ayushtiwari.co" } } diff --git a/domains/ayxdacat.json b/domains/ayxdacat.json index 0c9415d87..39d6f639e 100644 --- a/domains/ayxdacat.json +++ b/domains/ayxdacat.json @@ -3,7 +3,7 @@ "username": "ayxkaddd", "email": "bladeec1ty@protonmail.com" }, - "record": { + "records": { "URL": "https://ayxdacat.lol" } } diff --git a/domains/azeem.json b/domains/azeem.json index 4b38bf4b7..58e09b7b6 100644 --- a/domains/azeem.json +++ b/domains/azeem.json @@ -5,7 +5,7 @@ "username": "azeemidrisi", "email": "azeemidrisi@protonmail.com" }, - "record": { + "records": { "CNAME": "azeemidrisi.github.io" } } diff --git a/domains/azeemdev.json b/domains/azeemdev.json index 92a128061..cdb6f9f40 100644 --- a/domains/azeemdev.json +++ b/domains/azeemdev.json @@ -1,10 +1,9 @@ { "owner": { "username": "iAinAzeem", - "discord": "1063614318777729034", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sh1QL5Ze1LYuiCFi9DEqnW54jlRtwZ1k-YEvx7bUhm_zLLRyw-O5g1rsRj3FHr2UBDHnyny9mLI2zshWnPUH8B4fMgFG-XB-3Abq40JRcMrX7JGo964RF0iUtfXxQ6rhrnpgNi5a5uy8K3bE59JHIwqRLlkdmYSBPgtrt9h_WyFIk7--Or5dF0bSkKykZ3STLKbhj830jWf_5DcbUwldyppTc-XW_ZSYp4FK4wYhlnioPBhshlc-3GrNRPXAJfUZLmb0KPwPqP7duMShYqHap2O8Q-13ebsp8EATjnI4lzB43D-vKyj9XkEmPG7XTvoyHnE3uOZKq_6BdV3ty-e0bw.RL4bnDq7EzuCkIUaSh-OwQ.vlPkHZgaMGHt6UAVW1nFxIhzL-gk5WI6YT11vwfpZskx7-WB_kuXjgKlidIFhw1GwNrcZBiQMsh4HRr-tO9QJEwLYKnn8APa7SahkQAt4w0.hFK5crVJ86kkBF6BAgVm5Q" + "discord": "1063614318777729034" }, - "record": { + "records": { "CNAME": "portfolio.misafha.pk" } } diff --git a/domains/azeez.json b/domains/azeez.json index ece4c1419..10d8868df 100644 --- a/domains/azeez.json +++ b/domains/azeez.json @@ -5,13 +5,8 @@ "username": "azizbna", "discord": "azeezbna" }, - "record": { - "A": [ - "185.199.109.153", - "185.199.110.153", - "185.199.111.153", - "185.199.108.153" - ], + "records": { + "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/azer.json b/domains/azer.json index d0380e4f4..a1939702a 100644 --- a/domains/azer.json +++ b/domains/azer.json @@ -4,7 +4,7 @@ "username": "sadykhzadeh", "email": "azer.piano14@gmail.com" }, - "record": { + "records": { "CNAME": "sadykhzadeh.github.io" } } diff --git a/domains/azhammakestrash.json b/domains/azhammakestrash.json index 3880745f5..a8115347e 100644 --- a/domains/azhammakestrash.json +++ b/domains/azhammakestrash.json @@ -3,7 +3,7 @@ "username": "AzhamProdLive", "email": "websitedomain.regroup588@passinbox.com" }, - "record": { + "records": { "CNAME": "azhammakestrash.pages.dev" } } diff --git a/domains/azizulabedinazmi.json b/domains/azizulabedinazmi.json new file mode 100644 index 000000000..1b988ad8f --- /dev/null +++ b/domains/azizulabedinazmi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "azizulabedinazmi", + "email": "azmi00121@gmail.com" + }, + "records": { + "URL": "https://github.com/azizulabedinazmi" + } +} diff --git a/domains/azizwali.json b/domains/azizwali.json new file mode 100644 index 000000000..8ddbcc355 --- /dev/null +++ b/domains/azizwali.json @@ -0,0 +1,10 @@ +{ + "description": "Skyes Crawford Personal Website", + "owner": { + "username": "skyescrawford", + "email": "aziz_inc@apps.ipb.ac.id" + }, + "records": { + "CNAME": "skyescrawford.github.io" + } +} diff --git a/domains/azrifatihah.json b/domains/azrifatihah.json new file mode 100644 index 000000000..4c0e06042 --- /dev/null +++ b/domains/azrifatihah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muhAzri", + "email": "muhammad.azri.f.s@gmail.com" + }, + "records": { + "CNAME": "azri-portfolio.vercel.app" + } +} diff --git a/domains/azw.json b/domains/azw.json index 05a6c5f32..1e11a566f 100644 --- a/domains/azw.json +++ b/domains/azw.json @@ -3,7 +3,7 @@ "username": "AzureZeng", "email": "weedycn@outlook.com" }, - "record": { + "records": { "CNAME": "azurezeng.com" } } diff --git a/domains/b.json b/domains/b.json deleted file mode 100644 index ed8852b35..000000000 --- a/domains/b.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "vugiabao1337 subdomain", - "repo": "https://github.com/VuGiaBao1337/vugiabao1337.github.io", - "owner": { - "username": "VuGiaBao1337", - "email": "ahihidiscord@gmail.com" - }, - "record": { - "CNAME": "vugiabao1337.github.io" - } -} diff --git a/domains/b0q.json b/domains/b0q.json index af8e7a993..f1ccafe76 100644 --- a/domains/b0q.json +++ b/domains/b0q.json @@ -4,7 +4,7 @@ "email": "qqqbeboo@yahoo.com", "discord": "897238854510211143" }, - "record": { + "records": { "CNAME": "qbebo.github.io" } } diff --git a/domains/b45i.json b/domains/b45i.json index 67b1acd2b..1b6fc1472 100644 --- a/domains/b45i.json +++ b/domains/b45i.json @@ -5,7 +5,7 @@ "username": "B45i", "email": "amalshajan2011@gmail.com" }, - "record": { + "records": { "CNAME": "b45i.github.io" } } diff --git a/domains/b4iterdev.json b/domains/b4iterdev.json index aeb694eb5..f6b7206a3 100644 --- a/domains/b4iterdev.json +++ b/domains/b4iterdev.json @@ -4,7 +4,7 @@ "email": "thaimeo200389@gmail.com", "discord": "480587458908651530" }, - "record": { + "records": { "CNAME": "b4iterdev.net.eu.org" } } diff --git a/domains/b83c.json b/domains/b83c.json index a65c1681f..72615a59f 100644 --- a/domains/b83c.json +++ b/domains/b83c.json @@ -1,10 +1,9 @@ { "owner": { "username": "B83C", - "discord": "836525839511846912", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Nvw0e8-E9zApBPATxpQU5BXbRqbR1_h7xux5l7hZQzksus5TRzzXo4Zfc5sfq85atvtSWqCVnHt-wZ8gjz3q2yZzz2DCCFxEI8JkZFYN8UWwqjxm6uMIdAZC82adnLybz5ywmLPqDEM2zXyza0ACNp6u_ooiNYl15Gl1uobBO5KVK31_eOS9jcc9TPeHu_WIX2DDDpOBw5rdekJHkk4t71erXDQixSSqKQz_aOX-LZF1RKxtllN_fiEwYhvS1yVFsMzjoQYUc2B5V0nrXazlohjrmXp1-l4uFYJhpSWOBxLhxp8JLY_oXpVCsDOQ4a_4fAC2YEk2QdlSuoHIzU5Cng.ofqOmbKjozwSbakUCct1Rw.5kQuo8e_WtPz3f7zUliULphR8hUDwrfFzz_rASfJrMvtcqxQ3p52af200MdxdvEiZZy6bus7EdK5p4NCNwUbmDSl3HPnfCqonfFvYUwAPCVdx_XISm48pEpcMNLonkJ0.FrIUaCviOgnPnxkFbhfbJw" + "discord": "836525839511846912" }, - "record": { + "records": { "CNAME": "b83c.eu.org" } } diff --git a/domains/ba9.json b/domains/ba9.json index 82095444d..b247264d8 100644 --- a/domains/ba9.json +++ b/domains/ba9.json @@ -3,7 +3,7 @@ "username": "d2a59ce26a", "email": "d2a59.ce26a.1@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/bacherik.json b/domains/bacherik.json index 77e77142d..82ef9c4ba 100644 --- a/domains/bacherik.json +++ b/domains/bacherik.json @@ -3,7 +3,7 @@ "username": "BachErik", "email": "bacherik.info@gmail.com" }, - "record": { + "records": { "CNAME": "bacherik.eu" } } diff --git a/domains/badend.json b/domains/badend.json index 5dfc220b5..40b897ef6 100644 --- a/domains/badend.json +++ b/domains/badend.json @@ -5,7 +5,7 @@ }, "description": "👋 Hello, I'm BadEnd, a passionate Full Stack Developer with a solid background in web development. I specialize in creating efficient web solutions and am always seeking opportunities to deliver high-quality work. Feel free to view my personal website, featured projects, and contact information on GitHub.", "repo": "https://github.com/BadEnd777/Personal-Website", - "record": { + "records": { "CNAME": "badend.pages.dev" } } diff --git a/domains/badnguy.json b/domains/badnguy.json index a2b292f48..8233caf0b 100644 --- a/domains/badnguy.json +++ b/domains/badnguy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nguyenbaduy011", - "email": "nguyenbaduy011@gmail.com" - }, - "record": { - "CNAME": "nguyenbaduy011.github.io" - } + "owner": { + "username": "nguyenbaduy011", + "email": "nguyenbaduy011@gmail.com" + }, + "records": { + "CNAME": "nguyenbaduy011.github.io" + } } diff --git a/domains/badonix.json b/domains/badonix.json new file mode 100644 index 000000000..faef42ca2 --- /dev/null +++ b/domains/badonix.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/Badonix/portfolio_react", + "owner": { + "username": "badonix", + "email": "nikdanelia@gmail.com" + }, + "records": { + "CNAME": "badonix.netlify.app" + } +} diff --git a/domains/badzlan.json b/domains/badzlan.json index 8cc8a3ed1..910c46b52 100644 --- a/domains/badzlan.json +++ b/domains/badzlan.json @@ -4,7 +4,7 @@ "username": "badzlan", "email": "badzlandhabith05@gmail.com" }, - "record": { + "records": { "CNAME": "badzlan.github.io" } } diff --git a/domains/baer.json b/domains/baer.json index 63bf6a6c3..6489bbef9 100644 --- a/domains/baer.json +++ b/domains/baer.json @@ -3,7 +3,7 @@ "username": "BaerLKR", "email": "root@lovirent.eu" }, - "record": { + "records": { "URL": "https://lovirent.eu" } } diff --git a/domains/baibhav.json b/domains/baibhav.json new file mode 100644 index 000000000..83660e2e4 --- /dev/null +++ b/domains/baibhav.json @@ -0,0 +1,10 @@ +{ + "description": "For personal portfolio", + "owner": { + "username": "Baibhavos", + "email": "baibhavkumar303@gmail.com" + }, + "records": { + "CNAME": "new-portfolio-weld-sigma.vercel.app" + } +} diff --git a/domains/baka.json b/domains/baka.json index ea6ceb63b..b12fdf3f9 100644 --- a/domains/baka.json +++ b/domains/baka.json @@ -3,7 +3,7 @@ "username": "Baka-OP", "email": "itsmew2468@gmail.com" }, - "record": { + "records": { "CNAME": "baka-op.github.io" } } diff --git a/domains/bako.json b/domains/bako.json index 7d880d113..4d1b91acb 100644 --- a/domains/bako.json +++ b/domains/bako.json @@ -4,7 +4,7 @@ "email": "lucas.rausch.732@k12.friscoisd.org", "discord": "950189411759456266" }, - "record": { + "records": { "CNAME": "real-kwellercat.github.io" } } diff --git a/domains/bala.json b/domains/bala.json new file mode 100644 index 000000000..8c45f9697 --- /dev/null +++ b/domains/bala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "records": { + "CNAME": "my-app-brown-tau.vercel.app" + } +} diff --git a/domains/balaji.json b/domains/balaji.json new file mode 100644 index 000000000..0b87bda01 --- /dev/null +++ b/domains/balaji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "balaji-atoa", + "discord": "popz06" + }, + "records": { + "CNAME": "portfolio-on-live.vercel.app" + } +} diff --git a/domains/balam314.json b/domains/balam314.json index 0ca22dcf3..f3804c041 100644 --- a/domains/balam314.json +++ b/domains/balam314.json @@ -3,7 +3,7 @@ "username": "BalaM314", "email": "bulldozerUS@outlook.com" }, - "record": { + "records": { "URL": "https://balam314.github.io/BalaM314" } } diff --git a/domains/baldr.json b/domains/baldr.json new file mode 100644 index 000000000..0dab1f739 --- /dev/null +++ b/domains/baldr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "p0lish", + "email": "polish1987@gmail.com" + }, + "records": { + "CNAME": "p0lish.github.io" + } +} diff --git a/domains/balogram.json b/domains/balogram.json new file mode 100644 index 000000000..7d1ca8271 --- /dev/null +++ b/domains/balogram.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Balogram-dev", + "email": "tunde.agboke@gmail.com" + }, + "records": { + "CNAME": "balogram-dev.github.io" + } +} diff --git a/domains/baltraz.json b/domains/baltraz.json index 40884af9f..051beee6c 100644 --- a/domains/baltraz.json +++ b/domains/baltraz.json @@ -1,10 +1,9 @@ { "owner": { "username": "Killermaschine88", - "discord": "570267487393021969", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.X7V9A3bj7uW7izQvYtaNyn684nE_FBaWC6kn2U-QVBSmP7TFLZkGnRLAfiv748szEf8Ps3JA6p2fUsdSKY5a9iS6D44dU9NAMmPWyX-MAy5aTFyretWktY4pmi6qKKekdcbSIqApUOEQjaOQR6ZTYFILkIFgjmJIioZEBpgDP_TXU2zbckIBr1wfRSgn7Cu9MfdcsAn6L68F7oqilLh1ZgkyU8YHsJbNmcUXjGeYAbcf6h1ZMDt-iE8df7vkJwiKUYR398JwvxSjxF-ip2vFLZ9hzMkyD3q19zJ29NefOEhhIVdOgHl4aV1CFYPWBzkGpMyIg1k1Eiky8BOu2Qo2Fw.u2fm6QjYJ54XYKASbzyZFg.T8FGfq4es9Rnc9Wv6qTczCRl-GtH40ujE6mbmoTQegCPeUatFiUzRghM8-JLthty6hqtu9iIhhlpE_0LC6kKrcCrbF0iUhqIkVd_gGUkJtQ.1rtLCkkF5gtQsek8m5RjUQ" + "discord": "570267487393021969" }, - "record": { + "records": { "A": ["49.13.78.155"] } } diff --git a/domains/banda.json b/domains/banda.json new file mode 100644 index 000000000..25cc56e08 --- /dev/null +++ b/domains/banda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bandabahariputra", + "discord": "banda" + }, + "records": { + "CNAME": "bandabahariputra.vercel.app" + } +} diff --git a/domains/bandhan.json b/domains/bandhan.json new file mode 100644 index 000000000..ed3c876a8 --- /dev/null +++ b/domains/bandhan.json @@ -0,0 +1,11 @@ +{ + "description": "Bandhan's Profile", + "repo": "https://github.com/bamunjal/bamunjal.github.io", + "owner": { + "username": "bamunjal", + "email": "bamunjal1995@gmail.com" + }, + "records": { + "CNAME": "bamunjal.github.io" + } +} diff --git a/domains/bandu.json b/domains/bandu.json new file mode 100644 index 000000000..877d3664c --- /dev/null +++ b/domains/bandu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bmulla7", + "email": "bmulla7@gmail.com" + }, + "records": { + "CNAME": "bandu.pages.dev" + } +} diff --git a/domains/banik.json b/domains/banik.json index 6d44f9b9b..be91e28f6 100644 --- a/domains/banik.json +++ b/domains/banik.json @@ -3,7 +3,7 @@ "username": "Chiradeep-Banik", "email": "chiradeep13@gmail.com" }, - "record": { + "records": { "CNAME": "chiradeep-banik.github.io" } } diff --git a/domains/bank.json b/domains/bank.json index 4c45c9c86..93930ffd5 100644 --- a/domains/bank.json +++ b/domains/bank.json @@ -4,7 +4,7 @@ "email": "b@thanayut.in.th" }, "description": "Bank Thanayut's Personal Site", - "record": { + "records": { "URL": "https://thanayut.in.th" } } diff --git a/domains/bao.json b/domains/bao.json new file mode 100644 index 000000000..3c1bf1496 --- /dev/null +++ b/domains/bao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bphamict", + "email": "bphamict@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/baobao.json b/domains/baobao.json index 7ffc26e0c..558232eff 100644 --- a/domains/baobao.json +++ b/domains/baobao.json @@ -1,10 +1,9 @@ { "owner": { "username": "BaobeierB", - "discord": "246449974118842368", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.C0wpo8p1EPPr_uNYgH54k37cg0KOgTR4ffh_K80TeQHVno2Ud5j7I_1o48pnN6CelRZ-agJsz9D_664qTMic8JcK4Fe2fmS6q35NuqcdPbFc1w3meEFBqUzDU8mqnYSp6cRtWmUq4lxNqVPAfHsd_PPyoXkgOKyTw53gvxiHgHJixRlHX1KTICl5luy3302Mdlmxt4v7aw9dz5ymFmqxJnx4FNLa0gDUhSeQDJmNxF10JRnJTlwM93WuiJziWRcQzYte-ZHtNvqdhfBFdRjHmgCn1i2jkzQx_V6EZuj5iEMVSgNPppV3qR3IKnX21l0nN8YrstYx-r_b07ZbYuwCSQ.iGePXetL26p2_W8kx4SHZQ._P2kI4i9eF4-Ev8yQFuOt22MtZhv68AVAZSNPc0vlyI8Pfet3Ml8VJznqL3cqC2QSddfyRNT4QFZfQF3pRniw486_etwDdc3WIuu9yc7w-s.bw4347sMgh4xVjcsHE6D-A" + "discord": "246449974118842368" }, - "record": { + "records": { "A": ["103.200.29.116"] } } diff --git a/domains/baptiste.json b/domains/baptiste.json index e0eb2f3ee..0f9823f7f 100644 --- a/domains/baptiste.json +++ b/domains/baptiste.json @@ -3,7 +3,7 @@ "username": "BapRx", "email": "rouxbaptiste@outlook.com" }, - "record": { + "records": { "CNAME": "baprx.github.io" } } diff --git a/domains/baquir.json b/domains/baquir.json index ce53bed23..139266f68 100644 --- a/domains/baquir.json +++ b/domains/baquir.json @@ -5,7 +5,7 @@ "username": "mohd-baquir-qureshi", "email": "dumboo0798@gmail.com" }, - "record": { + "records": { "CNAME": "mohd-baquir-qureshi.github.io" } } diff --git a/domains/barab.json b/domains/barab.json index 3d9e6b006..c60a6c587 100644 --- a/domains/barab.json +++ b/domains/barab.json @@ -1,10 +1,9 @@ { "owner": { "username": "Baraban511", - "discord": "768517258262741024", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DvRDOCaudmWNnNQWCxTSqN5kKvCfKlL6AqaKDC7SEO9hg1wEGdBS0icx47nECYqqMw5MaaVbF9y8U3wyEe6YG2iOLYqASTzMmNd28ejrr4yV5A-KMsJ3qJc-6NnWugS_yl8Yq3iWLLikvkbjzYspBTtaM7Tfb5WzsRkJnmZpKyChPPO2Z0KRXBd23F_7mZDVisZQiOwQusWfVKDVzXHpbKidGVhoXPh-wz8XEHzjqlMXZXjtjE9bj3dT4Ot6RZ1bV6kKPR2dvO8teL-Y7AF7PM9oTrh2wYHyDmdBWoh407u45anfOGxDMbjvMKoIeyXlkHiWTpj_FA5IyJNRwoH9_Q.LPr9qotY_T6XZ434G38I3Q.-yrbQ3FtpMu9ewLmuO-AoCD9jAvfdYX_yWpNslaBf8goAv8I6q5YvLOVbaLBA3Eye8jTF48z1i2CTuKJbhv751x9bmXDN5ttrfpLfSwgrNw.DZMFfhSPM8swRiYFtwRpNw" + "discord": "768517258262741024" }, - "record": { + "records": { "CNAME": "barab.pages.dev" } } diff --git a/domains/bardia.json b/domains/bardia.json index 742c62ef0..c7b36e479 100644 --- a/domains/bardia.json +++ b/domains/bardia.json @@ -3,7 +3,7 @@ "username": "abardia", "email": "a.bardia@yahoo.de" }, - "record": { + "records": { "CNAME": "abardia.github.io" } } diff --git a/domains/barisdeniz.json b/domains/barisdeniz.json new file mode 100644 index 000000000..1a0c35685 --- /dev/null +++ b/domains/barisdeniz.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for Barış Deniz Sağlam", + "repo": "https://github.com/bdsaglam/bdsaglam.github.io", + "owner": { + "username": "bdsaglam", + "email": "bdsaglam@gmail.com" + }, + "records": { + "CNAME": "bdsaglam.github.io" + } +} diff --git a/domains/bark1n.json b/domains/bark1n.json index 9f3276329..bb2c9c9f1 100644 --- a/domains/bark1n.json +++ b/domains/bark1n.json @@ -3,7 +3,7 @@ "username": "Helixoo", "email": "mailistenebeklion1@gmail.com" }, - "record": { + "records": { "CNAME": "0crsvdst.up.railway.app" } } diff --git a/domains/barnacl437.json b/domains/barnacl437.json index 47200c18f..c674bd549 100644 --- a/domains/barnacl437.json +++ b/domains/barnacl437.json @@ -3,7 +3,7 @@ "username": "Barnacl437", "email": "barnacl437@proton.me" }, - "record": { - "CNAME": "barnacl437.github.io" + "records": { + "CNAME": "barnacl437.vercel.app" } } diff --git a/domains/barremian.json b/domains/barremian.json new file mode 100644 index 000000000..defc79108 --- /dev/null +++ b/domains/barremian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "barremian", + "email": "machinetime77@gmail.com" + }, + "records": { + "URL": "https://barremian.com" + } +} diff --git a/domains/barry-hammer.json b/domains/barry-hammer.json new file mode 100644 index 000000000..79a8f54e4 --- /dev/null +++ b/domains/barry-hammer.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "barry-hammer" + }, + "records": { + "CNAME": "barry-hammer.github.io" + } +} diff --git a/domains/bartoszm77.json b/domains/bartoszm77.json index 7ddf10448..f88bcbb2f 100644 --- a/domains/bartoszm77.json +++ b/domains/bartoszm77.json @@ -5,7 +5,7 @@ "username": "bartoszm77", "discord": "bartoszm77#3458" }, - "record": { + "records": { "CNAME": "b2rt0szm77.github.io" } } diff --git a/domains/base-swag.json b/domains/base-swag.json index 8a4b322eb..236e2ee32 100644 --- a/domains/base-swag.json +++ b/domains/base-swag.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Base-Swag", - "email": "officialnamefier@gmail.com" - }, - "record": { - "CNAME": "base-swag.github.io" - } + "owner": { + "username": "Base-Swag", + "email": "officialnamefier@gmail.com" + }, + "records": { + "CNAME": "base-swag.github.io" + } } diff --git a/domains/base.json b/domains/base.json new file mode 100644 index 000000000..632b00829 --- /dev/null +++ b/domains/base.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bcassiers", + "discord": "base08875" + }, + "records": { + "CNAME": "adbc.be" + } +} diff --git a/domains/baseri.json b/domains/baseri.json new file mode 100644 index 000000000..430d03285 --- /dev/null +++ b/domains/baseri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ho3einWave", + "discord": "743786737901240362" + }, + "records": { + "CNAME": "apex-loadbalancer.netlify.com" + } +} diff --git a/domains/basi.json b/domains/basi.json index 4bd206798..62b92f1d7 100644 --- a/domains/basi.json +++ b/domains/basi.json @@ -5,7 +5,7 @@ "email": "basigraphics@gmail.com", "discord": "Basi#1056" }, - "record": { + "records": { "CNAME": "portfolio-6u1.pages.dev" } } diff --git a/domains/basidh.json b/domains/basidh.json new file mode 100644 index 000000000..ca0d378df --- /dev/null +++ b/domains/basidh.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/abdulbasidh/portfolio", + "owner": { + "username": "abdulbasidh", + "email": "farz.basidh@gmail.com" + }, + "records": { + "CNAME": "abdulbasidh.github.io" + } +} diff --git a/domains/basil.json b/domains/basil.json index a70021fcb..a757fd835 100644 --- a/domains/basil.json +++ b/domains/basil.json @@ -6,7 +6,7 @@ "email": "haroldthesenpai@gmail.com", "twitter": "basilicous" }, - "record": { + "records": { "CNAME": "lowspecorgi.github.io" } } diff --git a/domains/bast.json b/domains/bast.json index 8339f3bca..5ec827ab7 100644 --- a/domains/bast.json +++ b/domains/bast.json @@ -4,7 +4,7 @@ "username": "bast0006", "email": "bast@bast-development.com" }, - "record": { + "records": { "URL": "https://bast-development.com" } } diff --git a/domains/batema.json b/domains/batema.json index 60d667aff..a854269aa 100644 --- a/domains/batema.json +++ b/domains/batema.json @@ -3,7 +3,7 @@ "username": "lukas-batema", "email": "lukasbatema@gmail.com" }, - "record": { + "records": { "URL": "https://batemadevelopment.com" } } diff --git a/domains/batman.json b/domains/batman.json new file mode 100644 index 000000000..930107b7b --- /dev/null +++ b/domains/batman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "el7amrawy", + "email": "el7amrawy@outlook.com" + }, + "records": { + "CNAME": "portfolio-8sc.pages.dev" + } +} diff --git a/domains/battlehawk.json b/domains/battlehawk.json new file mode 100644 index 000000000..7a93a6e7d --- /dev/null +++ b/domains/battlehawk.json @@ -0,0 +1,10 @@ +{ + "description": "is-a.dev domain for BATTLEHAWK00(redirecting to https://code1024.icu)", + "owner": { + "username": "BATTLEHAWK00", + "email": "yxlk2oi@gmail.com" + }, + "records": { + "URL": "https://code1024.icu" + } +} diff --git a/domains/baturalp.json b/domains/baturalp.json new file mode 100644 index 000000000..308dac2f2 --- /dev/null +++ b/domains/baturalp.json @@ -0,0 +1,11 @@ +{ + "description": "Baturalp Sönmez Portfolio website", + "repo": "https://github.com/Baturalp52/Baturalp52.github.io", + "owner": { + "username": "Baturalp52", + "email": "baturalpsonmez2002@gmail.com" + }, + "records": { + "CNAME": "baturalp52.github.io" + } +} diff --git a/domains/bayu.json b/domains/bayu.json new file mode 100644 index 000000000..0542087e0 --- /dev/null +++ b/domains/bayu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ByeByu07", + "email": "muhammadbaharuddin08123@gmail.com" + }, + "records": { + "CNAME": "byebyu07.github.io" + } +} diff --git a/domains/bcraft.json b/domains/bcraft.json index bd2bb34b3..fcfc0e27c 100644 --- a/domains/bcraft.json +++ b/domains/bcraft.json @@ -4,7 +4,7 @@ "email": "xuanhaivptthn@gmail.com", "discord": "379076400394666004" }, - "record": { + "records": { "CNAME": "xuanhaivptthn.github.io" } } diff --git a/domains/bd.json b/domains/bd.json new file mode 100644 index 000000000..f79ef4a55 --- /dev/null +++ b/domains/bd.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website.", + "repo": "https://github.com/cantcode023/bd.is-a.dev", + "owner": { + "username": "CantCode023", + "email": "cantcode023@gmail.com" + }, + "records": { + "CNAME": "cantcode023.github.io" + } +} diff --git a/domains/bdays.suki.json b/domains/bdays.suki.json index 4ae0c87c0..9ef65184f 100644 --- a/domains/bdays.suki.json +++ b/domains/bdays.suki.json @@ -3,7 +3,7 @@ "username": "SukiPlayz", "email": "sukimayoo@outlook.com" }, - "record": { + "records": { "A": ["69.197.135.204"] } } diff --git a/domains/bdhackers009.json b/domains/bdhackers009.json new file mode 100644 index 000000000..566b989d0 --- /dev/null +++ b/domains/bdhackers009.json @@ -0,0 +1,11 @@ +{ + "description": "I will use this subdomain to host my portfolio via github pages", + "repo": "https://github.com/bdhackers009/bdhackers009.github.io", + "owner": { + "username": "BDhackers009", + "email": "ahmedshifat1234@gmail.com" + }, + "records": { + "CNAME": "bdhackers009.github.io" + } +} diff --git a/domains/bdn-fr.json b/domains/bdn-fr.json new file mode 100644 index 000000000..7e60f74eb --- /dev/null +++ b/domains/bdn-fr.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "bdn-fr" + }, + "records": { + "CNAME": "bdn-fr.vercel.app" + } +} diff --git a/domains/bean.json b/domains/bean.json index 6440c9d3a..dcc7e5167 100644 --- a/domains/bean.json +++ b/domains/bean.json @@ -3,7 +3,7 @@ "username": "BeanRob", "email": "bentr99@gmail.com" }, - "record": { + "records": { "CNAME": "beanrob.com" } } diff --git a/domains/bear.json b/domains/bear.json index 3a0935512..c25df261d 100644 --- a/domains/bear.json +++ b/domains/bear.json @@ -6,7 +6,7 @@ "email": "anujparihar@yahoo.com", "twitter": "anujpflash" }, - "record": { + "records": { "CNAME": "bearts.github.io" } } diff --git a/domains/bedanth.json b/domains/bedanth.json index e63d09d00..3046c5302 100644 --- a/domains/bedanth.json +++ b/domains/bedanth.json @@ -5,7 +5,7 @@ "username": "bedantH", "email": "mohanesh.h2003@gmail.com" }, - "record": { + "records": { "CNAME": "bedanth-github-io.pages.dev" } } diff --git a/domains/beersanp.json b/domains/beersanp.json index aff4df46a..3c854f85b 100644 --- a/domains/beersanp.json +++ b/domains/beersanp.json @@ -3,7 +3,7 @@ "username": "beersanp", "email": "beersanp@duck.com" }, - "record": { + "records": { "CNAME": "beersanp.pages.dev" } } diff --git a/domains/belle.json b/domains/belle.json index 4763b602e..bc057db55 100644 --- a/domains/belle.json +++ b/domains/belle.json @@ -5,7 +5,7 @@ "username": "bellesea", "email": "bellesee1212@gmail.com" }, - "record": { + "records": { "CNAME": "bellesea.github.io" } } diff --git a/domains/ben.json b/domains/ben.json index d64f12062..07a1a0092 100644 --- a/domains/ben.json +++ b/domains/ben.json @@ -3,13 +3,8 @@ "username": "justpiple", "email": "me@benspace.xyz" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/benet.json b/domains/benet.json index 2d911624f..c6f8c3560 100644 --- a/domains/benet.json +++ b/domains/benet.json @@ -5,13 +5,8 @@ "username": "JohnnyMoneJohnny", "email": "okbutwhoaskedlikefr@gmail.com" }, - "record": { - "A": [ - "185.199.111.153", - "185.199.108.153", - "185.199.110.153", - "185.199.109.153" - ], + "records": { + "A": ["185.199.111.153", "185.199.108.153", "185.199.110.153", "185.199.109.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/benjamin.json b/domains/benjamin.json new file mode 100644 index 000000000..8b3b6bcb2 --- /dev/null +++ b/domains/benjamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Loapu", + "email": "benjamin@loapu.dev" + }, + "records": { + "NS": ["algin.ns.cloudflare.com", "marge.ns.cloudflare.com"] + } +} diff --git a/domains/benjo.json b/domains/benjo.json index a78989242..9ddf60352 100644 --- a/domains/benjo.json +++ b/domains/benjo.json @@ -3,7 +3,7 @@ "username": "Golgrax", "twitter": "BughawBenjo" }, - "record": { + "records": { "CNAME": "benjo.pages.dev" } } diff --git a/domains/bennett1412.json b/domains/bennett1412.json index 2650c1326..021db19ff 100644 --- a/domains/bennett1412.json +++ b/domains/bennett1412.json @@ -6,7 +6,7 @@ "email": "bennettmadavana@gmail.com", "twitter": "MadavanaB" }, - "record": { + "records": { "CNAME": "bennett1412.github.io" } } diff --git a/domains/bennguyen.json b/domains/bennguyen.json new file mode 100644 index 000000000..509683cdf --- /dev/null +++ b/domains/bennguyen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "benvgaming", + "email": "benvipgaming@protonmail.com" + }, + "records": { + "CNAME": "ben-homepage.vercel.app" + } +} diff --git a/domains/beno.json b/domains/beno.json new file mode 100644 index 000000000..2b6e523fd --- /dev/null +++ b/domains/beno.json @@ -0,0 +1,11 @@ +{ + "description": "Ingeniero Informático con mención en Gestión de la Información. Me enfoco en desarrollo de software y manejo de datos. Idioma español, inglés y ruso.", + "repo": "https://github.com/BenoAbarcaS/pf", + "owner": { + "username": "BenoAbarcaS", + "email": "abarcabernardo00@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/benoit.json b/domains/benoit.json new file mode 100644 index 000000000..e20999dca --- /dev/null +++ b/domains/benoit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "theredled", + "email": "benoit.guchet@gmail.com" + }, + "description": "I'm a dev and this is my portfolio", + "repo": "https://github.com/theredled", + "records": { + "A": ["194.31.52.251"] + } +} diff --git a/domains/bens.json b/domains/bens.json new file mode 100644 index 000000000..133fb45d7 --- /dev/null +++ b/domains/bens.json @@ -0,0 +1,10 @@ +{ + "description": "My portfolio", + "owner": { + "username": "coco-droid", + "email": "robensjeanbaptiste29@gmail.com" + }, + "records": { + "URL": "https://robe.alwaysdata.net/" + } +} diff --git a/domains/bentley.json b/domains/bentley.json new file mode 100644 index 000000000..8b4a11837 --- /dev/null +++ b/domains/bentley.json @@ -0,0 +1,11 @@ +{ + "description": "Cool blog name for my portfolio websiet", + "repo": "https://github.com/BentleyOph/blog", + "owner": { + "username": "BentleyOph", + "email": "bentleyonyango@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/bento64.json b/domains/bento64.json index ab1f33d02..8f3213aec 100644 --- a/domains/bento64.json +++ b/domains/bento64.json @@ -5,7 +5,7 @@ "username": "bento64", "email": "bento64@disroot.org" }, - "record": { + "records": { "CNAME": "bento64.github.io" } } diff --git a/domains/benz.json b/domains/benz.json index 31ea72a70..f7838d47c 100644 --- a/domains/benz.json +++ b/domains/benz.json @@ -3,7 +3,7 @@ "username": "MicroBenz", "email": "microbenz.prob@gmail.com" }, - "record": { + "records": { "CNAME": "microbenz.in.th" } } diff --git a/domains/beoo.json b/domains/beoo.json new file mode 100644 index 000000000..99b09088c --- /dev/null +++ b/domains/beoo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "16-thag5", + "email": "truongvan1605.yahoo@gmail.com" + }, + "records": { + "CNAME": "16-thag5.github.io" + } +} diff --git a/domains/berkk.json b/domains/berkk.json new file mode 100644 index 000000000..9189764c5 --- /dev/null +++ b/domains/berkk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "berkkaradalan", + "email": "berkkaradalan@gmail.com" + }, + "records": { + "CNAME": "berkkaradalan.github.io" + } +} diff --git a/domains/bernalvarela.json b/domains/bernalvarela.json index 045eb30b8..850764e5e 100644 --- a/domains/bernalvarela.json +++ b/domains/bernalvarela.json @@ -3,7 +3,7 @@ "username": "bernalvarela", "email": "bernalvarela@gmail.com" }, - "record": { + "records": { "CNAME": "bernalvarela.github.io" } } diff --git a/domains/bernard2806.json b/domains/bernard2806.json new file mode 100644 index 000000000..197f67e3b --- /dev/null +++ b/domains/bernard2806.json @@ -0,0 +1,11 @@ +{ + "description": "Portafolio personal con proyectos, habilidades y contacto.", + "repo": "https://github.com/Bernard2806/Portafolio", + "owner": { + "username": "Bernard2806", + "email": "berramuspegonzalez@gmail.com" + }, + "records": { + "CNAME": "bernard2806.github.io" + } +} diff --git a/domains/bernardo.json b/domains/bernardo.json new file mode 100644 index 000000000..a7c696414 --- /dev/null +++ b/domains/bernardo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Bernardo-QG", + "email": "b.quintinoguzman@ugto.mx" + }, + "records": { + "CNAME": "bernardo-qg.github.io" + } +} diff --git a/domains/bernardofoegbu.json b/domains/bernardofoegbu.json index a3d0e71ac..e365dd70d 100644 --- a/domains/bernardofoegbu.json +++ b/domains/bernardofoegbu.json @@ -5,7 +5,7 @@ "username": "O-BERNARDOFOEGBU", "email": "obinnaofoegbu71@gmail.com" }, - "record": { + "records": { "CNAME": "o-bernardofoegbu.github.io" } } diff --git a/domains/berry.json b/domains/berry.json index 7a824a956..a6b24afec 100644 --- a/domains/berry.json +++ b/domains/berry.json @@ -5,7 +5,7 @@ "email": "ahmed4baari@gmail.com", "instagram": "berryciouss" }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/berzcodetechnologies.json b/domains/berzcodetechnologies.json index 533a90e06..534b23230 100644 --- a/domains/berzcodetechnologies.json +++ b/domains/berzcodetechnologies.json @@ -3,7 +3,7 @@ "username": "sxurabh", "email": "saurabhkirve@gmail.com" }, - "record": { + "records": { "A": ["154.41.233.131"] } } diff --git a/domains/berzerk.json b/domains/berzerk.json index 533a90e06..534b23230 100644 --- a/domains/berzerk.json +++ b/domains/berzerk.json @@ -3,7 +3,7 @@ "username": "sxurabh", "email": "saurabhkirve@gmail.com" }, - "record": { + "records": { "A": ["154.41.233.131"] } } diff --git a/domains/betaprj.akk1to.json b/domains/betaprj.akk1to.json index dca0cbf18..078208546 100644 --- a/domains/betaprj.akk1to.json +++ b/domains/betaprj.akk1to.json @@ -6,7 +6,7 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { + "records": { "CNAME": "akk1to.github.io" } } diff --git a/domains/betsthebest.json b/domains/betsthebest.json index 065ae2d9c..f633fd09f 100644 --- a/domains/betsthebest.json +++ b/domains/betsthebest.json @@ -3,7 +3,7 @@ "username": "Betsthebest", "email": "bets.hassoun@gmail.com" }, - "record": { + "records": { "CNAME": "betsthebest.github.io" } } diff --git a/domains/bhadra.json b/domains/bhadra.json index fcbb70368..d8a567296 100644 --- a/domains/bhadra.json +++ b/domains/bhadra.json @@ -5,7 +5,7 @@ "username": "BhadraJayakumarSandhya", "email": "tomjerryparu@gmail.com" }, - "record": { + "records": { "CNAME": "bhadrajayakumarsandhya.github.io" } } diff --git a/domains/bhardwaj.json b/domains/bhardwaj.json index fdb97f8e2..bbd43ec24 100644 --- a/domains/bhardwaj.json +++ b/domains/bhardwaj.json @@ -3,7 +3,7 @@ "username": "rohanbhardwaj205", "email": "71399@cgcjhanjeri.in" }, - "record": { + "records": { "CNAME": "rohanbhardwaj205.github.io" } } diff --git a/domains/bhargav-gohil.json b/domains/bhargav-gohil.json index caf0466cc..f485c3ea0 100644 --- a/domains/bhargav-gohil.json +++ b/domains/bhargav-gohil.json @@ -5,7 +5,7 @@ "username": "bhargav252000", "email": "bhargavgohil25@gmail.com" }, - "record": { + "records": { "CNAME": "bhargav252000.github.io" } } diff --git a/domains/bhargav.json b/domains/bhargav.json index e1ae30b2a..ae3f60874 100644 --- a/domains/bhargav.json +++ b/domains/bhargav.json @@ -3,7 +3,7 @@ "username": "bhargavmehta01", "email": "bhargav.mehta01@gmail.com" }, - "record": { + "records": { "CNAME": "bhargavmehta01.github.io" } } diff --git a/domains/bhaskar.json b/domains/bhaskar.json new file mode 100644 index 000000000..4030b631d --- /dev/null +++ b/domains/bhaskar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhaskarrijal", + "email": "mail@bhaskarrijal.me" + }, + "records": { + "CNAME": "site-52r.pages.dev" + } +} diff --git a/domains/bhattcodes.json b/domains/bhattcodes.json index c6df48317..293ce1d35 100644 --- a/domains/bhattcodes.json +++ b/domains/bhattcodes.json @@ -5,7 +5,7 @@ "username": "bhattcodes", "email": "bhatt.codes@gmail.com" }, - "record": { + "records": { "CNAME": "bhattcodes.github.io" } } diff --git a/domains/bhavesh-acquaintsoft.json b/domains/bhavesh-acquaintsoft.json index 4c0f06cb9..1c1268384 100644 --- a/domains/bhavesh-acquaintsoft.json +++ b/domains/bhavesh-acquaintsoft.json @@ -4,7 +4,7 @@ "owner": { "username": "bhavesh-acquaintsoft" }, - "record": { + "records": { "CNAME": "bhavesh-acquaintsoft.github.io" } } diff --git a/domains/bhavesh-p-patel.json b/domains/bhavesh-p-patel.json index 493bdba07..c2f821346 100644 --- a/domains/bhavesh-p-patel.json +++ b/domains/bhavesh-p-patel.json @@ -4,7 +4,7 @@ "owner": { "username": "Bhavesh-p-Patel" }, - "record": { + "records": { "CNAME": "bhavesh-p-patel.github.io" } } diff --git a/domains/bhavitha.json b/domains/bhavitha.json index 0c4a0a6de..9f34b8838 100644 --- a/domains/bhavitha.json +++ b/domains/bhavitha.json @@ -5,7 +5,7 @@ "username": "nightcoder26", "twitter": "night_coder26" }, - "record": { + "records": { "CNAME": "nightcoder26.github.io" } } diff --git a/domains/bhavyagupta.json b/domains/bhavyagupta.json new file mode 100644 index 000000000..c1845b310 --- /dev/null +++ b/domains/bhavyagupta.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/BhavyaGupta315/Portfolio", + "owner": { + "username": "BhavyaGupta315", + "twitter": "Bhavya_Gupta315" + }, + "records": { + "CNAME": "bhavya-gupta-portfolio.vercel.app" + } +} diff --git a/domains/bhavyasingh.json b/domains/bhavyasingh.json index 52bbd7c88..977ad301d 100644 --- a/domains/bhavyasingh.json +++ b/domains/bhavyasingh.json @@ -3,7 +3,7 @@ "username": "BhavyaSingh2611", "email": "bhavyasingh2611@outlook.com" }, - "record": { + "records": { "CNAME": "bhavyasingh2611.github.io" } } diff --git a/domains/bhumkah-patel.json b/domains/bhumkah-patel.json index 8d0c1d7e9..bcf97bcd7 100644 --- a/domains/bhumkah-patel.json +++ b/domains/bhumkah-patel.json @@ -4,7 +4,7 @@ "owner": { "username": "bhumkah-patel" }, - "record": { + "records": { "CNAME": "bhumkah-patel.github.io" } } diff --git a/domains/bhushankhopkarr.json b/domains/bhushankhopkarr.json index 975268c2c..134a7b298 100644 --- a/domains/bhushankhopkarr.json +++ b/domains/bhushankhopkarr.json @@ -6,7 +6,7 @@ "email": "bhushankhopkar06@gmail.com", "twitter": "bhushankhopkrr" }, - "record": { + "records": { "CNAME": "bhushankhopkrr.vercel.app" } } diff --git a/domains/bibhu.json b/domains/bibhu.json index fa2afbeb4..3752f12c0 100644 --- a/domains/bibhu.json +++ b/domains/bibhu.json @@ -3,7 +3,7 @@ "username": "bibs24", "email": "bibhuprasadsaha4@gmail.com" }, - "record": { + "records": { "CNAME": "bibs24.github.io" }, "description": "Personal Portfolio" diff --git a/domains/bigtime.json b/domains/bigtime.json index 036a9718a..50e282224 100644 --- a/domains/bigtime.json +++ b/domains/bigtime.json @@ -3,7 +3,7 @@ "username": "mxl0s", "email": "contact@milosv.co" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/biko.json b/domains/biko.json index 2bf95026d..1d2bc0415 100644 --- a/domains/biko.json +++ b/domains/biko.json @@ -6,7 +6,7 @@ "email": "devbikoilu@gmail.com", "twitter": "BikoAni" }, - "record": { + "records": { "CNAME": "bikoil.github.io" } } diff --git a/domains/bilal.json b/domains/bilal.json index cba83104a..50676f113 100644 --- a/domains/bilal.json +++ b/domains/bilal.json @@ -5,7 +5,7 @@ "username": "Bilalbsd", "email": "dev.bilalb@gmail.com" }, - "record": { + "records": { "CNAME": "bilalbsd.github.io" } } diff --git a/domains/bilalmansuri.json b/domains/bilalmansuri.json new file mode 100644 index 000000000..5ea985e77 --- /dev/null +++ b/domains/bilalmansuri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bilal-23", + "email": "work.bilalmansuri@gmail.com", + "discord": "bilal_23" + }, + "records": { + "CNAME": "bilalmansuri.vercel.app" + } +} diff --git a/domains/bilalthepunjabi.json b/domains/bilalthepunjabi.json new file mode 100644 index 000000000..94e53c37b --- /dev/null +++ b/domains/bilalthepunjabi.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website for bilalthepunjabi's Homelab - (PaaS-Coolify) - host portfolio projects sample (with dynamic IPv4, which is why I need Cloudflare Nameservers).", + "repo": "https://github.com/bilalthepunjabi/register", + "owner": { + "username": "bilalthepunjabi", + "email": "bilalthepunjabi@gmail.com" + }, + "records": { + "NS": ["aitana.ns.cloudflare.com", "damien.ns.cloudflare.com"] + } +} diff --git a/domains/bill.json b/domains/bill.json index 28f9a08c9..dda92eb05 100644 --- a/domains/bill.json +++ b/domains/bill.json @@ -6,7 +6,7 @@ "email": "callmebill@billw.cn", "twitter": "BillWen14" }, - "record": { + "records": { "CNAME": "cmbill.github.io" } } diff --git a/domains/billion.json b/domains/billion.json new file mode 100644 index 000000000..53acadc76 --- /dev/null +++ b/domains/billion.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "billionbucks", + "discord": "mrbillion_bucks", + "email": "mrbillionbucks@gmail.com" + }, + "records": { + "CNAME": "billionbucks.github.io" + } +} diff --git a/domains/billvog.json b/domains/billvog.json new file mode 100644 index 000000000..3056bfe9e --- /dev/null +++ b/domains/billvog.json @@ -0,0 +1,11 @@ +{ + "description": "billvog's Portfolio Website", + "repo": "https://github.com/billvog/billvog.github.io", + "owner": { + "username": "billvog", + "email": "hey@billvog.com" + }, + "records": { + "URL": "https://billvog.com" + } +} diff --git a/domains/billy.json b/domains/billy.json index 7c49e1998..0f1feb2ea 100644 --- a/domains/billy.json +++ b/domains/billy.json @@ -3,7 +3,7 @@ "username": "tomlin7", "email": "billydevbusiness@gmail.com" }, - "record": { + "records": { "URL": "https://tomlin7.github.io" } } diff --git a/domains/bimal.json b/domains/bimal.json index 0f7076a76..2c9bec885 100644 --- a/domains/bimal.json +++ b/domains/bimal.json @@ -6,7 +6,7 @@ "email": "bimalyadavemail7@gmail.com", "twitter": "bimalinc" }, - "record": { + "records": { "CNAME": "bimal-inc.github.io" } } diff --git a/domains/bimarsha.json b/domains/bimarsha.json index a4195f796..176d54ab7 100644 --- a/domains/bimarsha.json +++ b/domains/bimarsha.json @@ -3,7 +3,7 @@ "username": "Bimarsha69", "email": "bimarshathapa2@gmail.com" }, - "record": { + "records": { "CNAME": "bimarsha69.github.io" } } diff --git a/domains/bing-chilling.json b/domains/bing-chilling.json index ab819db76..baf8fde3f 100644 --- a/domains/bing-chilling.json +++ b/domains/bing-chilling.json @@ -3,7 +3,7 @@ "username": "TheUnium", "email": "ooooooooooooothereal@gmail.com" }, - "record": { + "records": { "CNAME": "theunium.github.io" } } diff --git a/domains/binh.json b/domains/binh.json index 769861fa6..a9e5746cf 100644 --- a/domains/binh.json +++ b/domains/binh.json @@ -1,11 +1,10 @@ { "description": "Binh Pham's Personal Website", - "repo": "https://github.com/pham-tuan-binh", "owner": { "username": "pham-tuan-binh", "email": "binhpham@binhph.am" }, - "record": { + "records": { "URL": "https://www.binhph.am" } } diff --git a/domains/binhpv96.json b/domains/binhpv96.json new file mode 100644 index 000000000..889f322a8 --- /dev/null +++ b/domains/binhpv96.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "binhpv96", + "email": "pvbinh2k4@gmail.com" + }, + "records": { + "CNAME": "binhpv96.github.io" + } +} diff --git a/domains/bintang1302.json b/domains/bintang1302.json index 5d021e665..d97970a17 100644 --- a/domains/bintang1302.json +++ b/domains/bintang1302.json @@ -1,10 +1,9 @@ { "owner": { "username": "Bintang1302", - "discord": "881796102142185504", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NxNl7iqPLlu2R6PI7WeNjQ3DKnxMPUe4m6yjt9wDu4VQFk-lyi2DlXx8YQNZY0e1yKeYFAbPUv_0hHLMhRK-mPQfUmyr1EGxi90HlfxPj7Z5SiNuQ0JOcCdz7LIbajRsRznaWPDt-fz7nSyQvrR8qTo3TLKPCe_GtGKzOuY4U4zqs35VByrNnJE0_R4mQuW-KqZPie2kzopM7M4dSVlCDuBiI91uC5HKKcOZ4jq9sf8MnnqXOzh0C7vFRYq-k_7vQ4khJtizfOVJsM8Y9-ioodSwwvzeS-0dfrq_DFwZx68OJcg0VVLy6-Bi1Zf199QWlb39NNqHEDw08Yu1Rzgo5A.Ydq1gSOxnSmBTk93ym-ipA.5cwDdmxhwIxRV4237X9z7At-Up-uL1dQgiQzgKHqrcjP9HBzJlTRnmOvDQEiohF3uWtdL3y4VadRGXOgcF6TKVljeBkSsR3XuEKWDMRwvOY.XB1v5WDnEPOfqjr-ZEzloQ" + "discord": "881796102142185504" }, - "record": { + "records": { "A": ["89.213.211.250"] } } diff --git a/domains/bintangbagus.json b/domains/bintangbagus.json new file mode 100644 index 000000000..14221916c --- /dev/null +++ b/domains/bintangbagus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bntngbgs", + "email": "bintangbgs16@gmail.com" + }, + "records": { + "CNAME": "bintangbagus.pages.dev" + } +} diff --git a/domains/binwonk.json b/domains/binwonk.json index b8647c14a..f9c916019 100644 --- a/domains/binwonk.json +++ b/domains/binwonk.json @@ -3,7 +3,7 @@ "username": "binwonk", "email": "finnwok1@gmail.com" }, - "record": { + "records": { "CNAME": "binwonk.github.io" } } diff --git a/domains/bio.ahmedtohamy.json b/domains/bio.ahmedtohamy.json index 44fc48511..ecda0bf92 100644 --- a/domains/bio.ahmedtohamy.json +++ b/domains/bio.ahmedtohamy.json @@ -3,7 +3,7 @@ "username": "ahmedtohamy1", "email": "1ahmed.tohamy@gmail.com" }, - "record": { + "records": { "CNAME": "ahmedtohamy1.github.io" } } diff --git a/domains/bio.json b/domains/bio.json new file mode 100644 index 000000000..41b82924f --- /dev/null +++ b/domains/bio.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Bio", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "records": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/bipin-bheda.json b/domains/bipin-bheda.json index fb79c29cf..039235f0f 100644 --- a/domains/bipin-bheda.json +++ b/domains/bipin-bheda.json @@ -4,7 +4,7 @@ "owner": { "username": "bipin-bheda" }, - "record": { + "records": { "CNAME": "bipin-bheda.github.io" } } diff --git a/domains/biplob.json b/domains/biplob.json index f5daffede..010bcbf27 100644 --- a/domains/biplob.json +++ b/domains/biplob.json @@ -3,7 +3,7 @@ "username": "revolutionisme", "email": "revolutionisme@gmail.com" }, - "record": { + "records": { "CNAME": "revolutionisme.github.io" } } diff --git a/domains/birabittoh.json b/domains/birabittoh.json index 0e04cf4df..22e16d190 100644 --- a/domains/birabittoh.json +++ b/domains/birabittoh.json @@ -3,7 +3,7 @@ "username": "BiRabittoh", "email": "andronacomarco@gmail.com" }, - "record": { + "records": { "CNAME": "birabittoh.github.io" } } diff --git a/domains/bismuth.json b/domains/bismuth.json index 6ef1961e2..86ceaa23a 100644 --- a/domains/bismuth.json +++ b/domains/bismuth.json @@ -3,7 +3,7 @@ "username": "bismuthnickel", "email": "warreneverettstevens@gmail.com" }, - "record": { + "records": { "CNAME": "bismuthnickel.github.io" } } diff --git a/domains/bitbend.json b/domains/bitbend.json new file mode 100644 index 000000000..58de4f864 --- /dev/null +++ b/domains/bitbend.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bitbend", + "email": "arkamdev@gmail.com" + }, + "records": { + "CNAME": "bitbend.github.io" + } +} diff --git a/domains/bitsexploited.json b/domains/bitsexploited.json new file mode 100644 index 000000000..bedc3093c --- /dev/null +++ b/domains/bitsexploited.json @@ -0,0 +1,11 @@ +{ + "description": "A portfolio website", + "repo": "https://github.com/bitsexploited/bitsexploited.github.io", + "owner": { + "username": "BitsExploited", + "email": "tspamiitesh@gmail.com" + }, + "records": { + "CNAME": "BitsExploited.github.io" + } +} diff --git a/domains/bk.json b/domains/bk.json index 0ad102550..5f873e408 100644 --- a/domains/bk.json +++ b/domains/bk.json @@ -3,7 +3,7 @@ "username": "hbk671104", "email": "hbk671104@gmail.com" }, - "record": { + "records": { "CNAME": "hbk671104.github.io" } } diff --git a/domains/bkmd.json b/domains/bkmd.json index baef014e4..ed1fc3023 100644 --- a/domains/bkmd.json +++ b/domains/bkmd.json @@ -3,7 +3,7 @@ "username": "Soldierplayz6867", "email": "soldierplayz.tw@gmail.com" }, - "record": { + "records": { "CNAME": "da-1.us.hostns.io" } } diff --git a/domains/bkms.json b/domains/bkms.json index 03f3f8128..c9f3360c5 100644 --- a/domains/bkms.json +++ b/domains/bkms.json @@ -3,7 +3,7 @@ "username": "bkmsstudio", "email": "mmini15354424@gmail.com" }, - "record": { + "records": { "CNAME": "www.bkmsdev.in.th" } } diff --git a/domains/blackdx.json b/domains/blackdx.json index 47620b711..856f4a0ab 100644 --- a/domains/blackdx.json +++ b/domains/blackdx.json @@ -6,7 +6,7 @@ "email": "blackdxnet@gmail.com", "twitter": "BlackDX10" }, - "record": { + "records": { "CNAME": "blackdx.github.io" } } diff --git a/domains/blackneeed.json b/domains/blackneeed.json index b5b678429..4850a0d0b 100644 --- a/domains/blackneeed.json +++ b/domains/blackneeed.json @@ -4,7 +4,7 @@ "email": "kontododatkowe.marcelclay@gmail.com", "discord": "928360278683443210" }, - "record": { + "records": { "CNAME": "blackneeed.github.io" } } diff --git a/domains/blackwin.json b/domains/blackwin.json new file mode 100644 index 000000000..b9f60819d --- /dev/null +++ b/domains/blackwin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BlackWin123", + "email": "lequocthang04092022@gmail.com" + }, + "records": { + "CNAME": "blackwin123.github.io" + } +} diff --git a/domains/blacsheep.json b/domains/blacsheep.json index 7d2f86b7b..17290e880 100644 --- a/domains/blacsheep.json +++ b/domains/blacsheep.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "blacsheep", - "email": "lanzou1.0@gmail.com" - }, - "record": { - "CNAME": "blacsheep.github.io" - } + "owner": { + "username": "blacsheep", + "email": "lanzou1.0@gmail.com" + }, + "records": { + "CNAME": "blacsheep-github-io.pages.dev" + } } diff --git a/domains/bladimir.json b/domains/bladimir.json new file mode 100644 index 000000000..de0c84b96 --- /dev/null +++ b/domains/bladimir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Esbruiz", + "email": "esbruizc@gmail.com" + }, + "records": { + "CNAME": "blads-portfolio.vercel.app" + } +} diff --git a/domains/blaine.json b/domains/blaine.json index eff049886..582e66bf1 100644 --- a/domains/blaine.json +++ b/domains/blaine.json @@ -5,7 +5,7 @@ "username": "Blakeinstein", "email": "rishi1998@gmail.com" }, - "record": { + "records": { "URL": "https://blaine.vip" } } diff --git a/domains/blake.json b/domains/blake.json index 4340be5a1..9b142614d 100644 --- a/domains/blake.json +++ b/domains/blake.json @@ -1,11 +1,10 @@ { "description": "A redirection to my github page", - "repo": "https://github.com/BlakeH2208", "owner": { "username": "BlakeH2208", "email": "contact@blakehurley.com" }, - "record": { + "records": { "A": ["89.41.169.49"] } } diff --git a/domains/blank.json b/domains/blank.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/blank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/blankparticle.json b/domains/blankparticle.json index 08d16d919..f1bcbe477 100644 --- a/domains/blankparticle.json +++ b/domains/blankparticle.json @@ -3,7 +3,7 @@ "username": "BlankParticle", "email": "hello@blankparticle.in" }, - "record": { + "records": { "URL": "https://blankparticle.in" } } diff --git a/domains/blast.json b/domains/blast.json index cda0a12aa..647eb7eb1 100644 --- a/domains/blast.json +++ b/domains/blast.json @@ -4,7 +4,7 @@ "discord": "poxuizm" }, "description": "Personal website with links to my social medias, will probably add portfolio", - "record": { + "records": { "CNAME": "reblast.github.io" } } diff --git a/domains/blazedev.json b/domains/blazedev.json index 8b9d2fbd7..691589394 100644 --- a/domains/blazedev.json +++ b/domains/blazedev.json @@ -1,10 +1,9 @@ { "owner": { "username": "blaze-099", - "discord": "1186691290759434350", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Drbtx3bqrGce1w55T80jyC9uYEhqb_Hea4djEOiUZhqyASA5RnIwlE30dkNIXLr2ARGyMa-IunKjmUWbVWyDu_KuPPXfGzRqstu_TN0ooplUSySXe2lWHP275PpyfMi2ZlmkWH06BCvWUZqeDZimJXGK-EEBMXOyBfJtP91bA9SpXZ8PSdmvK1nEEjO-G3o7NgB-YvT5hydJ6kx_VvRvAmCewn2VDWUxxaRmFHv9RyolKnuUZDT19Nj0HDooaFHvHMUazbrmHKp7u2ymN3-hhwpaLxjvQ_R1BQNVSnC5zHkNHvxqiIrh3fyqRCpn3YQIpI8FH3AjMOopt8D4ehvt-w.XfKXPgZOGrovfShUJYX10w.Q_92JQs0PCCIqSzlIgnqbSGSSkH1BmLZn6x2nYOOMpuD2YYSU1R8utzksWRYsCWoZ4U7ZPYrboTidItRKMHSvZ3nyZl4fDiYfPhsfHJV3TY.JW-lUBRmYsjUqFoCsAH_vA" + "discord": "1186691290759434350" }, - "record": { + "records": { "CNAME": "sparkling-faloodeh-1fda87.netlify.app" } } diff --git a/domains/blazyflash.json b/domains/blazyflash.json index e2c936c81..862b05aec 100644 --- a/domains/blazyflash.json +++ b/domains/blazyflash.json @@ -3,7 +3,7 @@ "username": "Thanatoslayer6", "email": "thanatoslayer6@gmail.com" }, - "record": { + "records": { "URL": "https://ballzy.vercel.app/" } } diff --git a/domains/blc.json b/domains/blc.json index a0ac0a247..ffc3d92bb 100644 --- a/domains/blc.json +++ b/domains/blc.json @@ -4,7 +4,7 @@ "email": "blctoblc223@gmail.com", "discord": "723837167499083788" }, - "record": { + "records": { "CNAME": "blcpage.github.io" } } diff --git a/domains/bleemis42.json b/domains/bleemis42.json index b76c1ad1b..031d32785 100644 --- a/domains/bleemis42.json +++ b/domains/bleemis42.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "BleemIs42", - "description": "BleemIs42.is-a.dev", - "email": "BleemIs42@gmail.com" - }, - "record": { - "CNAME": "BleemIs42.github.io" - } + "owner": { + "username": "BleemIs42", + "description": "BleemIs42.is-a.dev", + "email": "BleemIs42@gmail.com" + }, + "records": { + "CNAME": "BleemIs42.github.io" + } } diff --git a/domains/blek.json b/domains/blek.json index 0f020ea1d..134cb4fed 100644 --- a/domains/blek.json +++ b/domains/blek.json @@ -4,7 +4,7 @@ "username": "b1ek", "email": "me@blek.codes" }, - "record": { + "records": { "A": ["185.130.226.115"], "AAAA": ["2a05:b40:0:570:4563:92af:9a56:7fc8"] } diff --git a/domains/blema.json b/domains/blema.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/blema.json +++ b/domains/blema.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/blindstudios.json b/domains/blindstudios.json index 14e966da5..237a80f2f 100644 --- a/domains/blindstudios.json +++ b/domains/blindstudios.json @@ -1,10 +1,9 @@ { "owner": { "username": "urasdbwd", - "discord": "291889282032074752", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.F299V2wTYMNurO2uHOa8VcSRKYBCoUAdCf7UfkKbP6j1p-eUNWwfACF3-MRC87QJgLQ6oOsup94_Mog8jx1nk--qGdtI_MJCzeg1CxdE-O3c6pQKFRT-f-EpksF3SlOC3ZpiVoYr8xRDOk0Z9YJ5Kp9YgS4nX53e32q_YAHrxIBn982VbfkSMuWgN8XNVtELx4V9k2Mm3FUVxxcUenS7RK8E9bkN9J2yytst3fOKeP3Y1RGqmx-lK9IpIJoOacz8O-O47KCBEo5xHuNowLkrxA4ZKh9_buapeBKLwKMN0L9WgaABYE5gYJ16Hu3nPV9am3QAvJa9UJKtMNPJNg1Ytg.eVZIak0vT5zOE5bRpJ-4Nw.0nvLUiumNwnzS-In3p_LxfltkRH42IFB7ORkWyNlQAPj73PyFksbHfwgah43wCTCH7Nn4M324xg_JiHKBdUXneagncW2cuPzQM-hXt1E0-E.bl3U_qohdjGOIOejzipLJA" + "discord": "291889282032074752" }, - "record": { + "records": { "A": ["193.149.164.209"] } } diff --git a/domains/blitzbrian.json b/domains/blitzbrian.json index 96dd5a47c..cd8d7808e 100644 --- a/domains/blitzbrian.json +++ b/domains/blitzbrian.json @@ -4,7 +4,7 @@ "email": "brianvoorbij@gmail.com", "discord": "814555302178455604" }, - "record": { + "records": { "CNAME": "blitzbrian.github.io" } } diff --git a/domains/blkdang1.json b/domains/blkdang1.json new file mode 100644 index 000000000..03abc1279 --- /dev/null +++ b/domains/blkdang1.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "lmlmdf404" + }, + "records": { + "CNAME": "lmlmdf404.github.io" + } +} diff --git a/domains/blob2763.json b/domains/blob2763.json index 61cd102b9..133c003fc 100644 --- a/domains/blob2763.json +++ b/domains/blob2763.json @@ -3,7 +3,7 @@ "username": "Blob2763", "email": "blob2763@gmail.com" }, - "record": { + "records": { "CNAME": "blob2763.github.io" } } diff --git a/domains/blog.aayushsiwa.json b/domains/blog.aayushsiwa.json index 1ed0096bf..40aee44e6 100644 --- a/domains/blog.aayushsiwa.json +++ b/domains/blog.aayushsiwa.json @@ -3,7 +3,7 @@ "username": "aayushsiwa", "email": "22052177@kiit.ac.in" }, - "record": { + "records": { "CNAME": "blog-aayushsiwa.pages.dev" } } diff --git a/domains/blog.alora.json b/domains/blog.alora.json index 90785db87..5f941c39a 100644 --- a/domains/blog.alora.json +++ b/domains/blog.alora.json @@ -4,7 +4,7 @@ "email": "xaloramia@gmail.com", "discord": "1236292707371057216" }, - "record": { + "records": { "CNAME": "project-graphql-blog-sable.vercel.app" } } diff --git a/domains/blog.anirbaaaan.json b/domains/blog.anirbaaaan.json deleted file mode 100644 index 336288c99..000000000 --- a/domains/blog.anirbaaaan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "CNAME": "anirbaaaan183.github.io" - } -} diff --git a/domains/blog.areen-c.json b/domains/blog.areen-c.json index 558f42f8b..d91b4df12 100644 --- a/domains/blog.areen-c.json +++ b/domains/blog.areen-c.json @@ -3,7 +3,7 @@ "username": "areen-c", "email": "areenelhaq@gmail.com" }, - "record": { + "records": { "CNAME": "blog-areen.pages.dev" } } diff --git a/domains/blog.areen.json b/domains/blog.areen.json index 8241cfe7b..3bc708ac1 100644 --- a/domains/blog.areen.json +++ b/domains/blog.areen.json @@ -3,7 +3,7 @@ "username": "areen-c", "email": "areenelhaq@gmail.com" }, - "record": { + "records": { "CNAME": "areencx.pages.dev" } } diff --git a/domains/blog.barnacl437.json b/domains/blog.barnacl437.json new file mode 100644 index 000000000..a83eac797 --- /dev/null +++ b/domains/blog.barnacl437.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "barnacl437", + "email": "barnacl437@proton.me" + }, + "records": { + "CNAME": "blog-barnacl437.vercel.app" + } +} diff --git a/domains/blog.catzboy.json b/domains/blog.catzboy.json index e11095ae3..0233496da 100644 --- a/domains/blog.catzboy.json +++ b/domains/blog.catzboy.json @@ -5,7 +5,7 @@ "username": "Maruful007", "email": "marufulislamsami2007@gmail.com" }, - "record": { + "records": { "CNAME": "maruful007.github.io" } } diff --git a/domains/blog.chuyentinorz.json b/domains/blog.chuyentinorz.json index 1257a8492..a374ebd0e 100644 --- a/domains/blog.chuyentinorz.json +++ b/domains/blog.chuyentinorz.json @@ -6,7 +6,7 @@ "email": "akk1to.dev@gmail.com", "discord": "727497287777124414" }, - "record": { + "records": { "A": ["216.198.79.193"] } } diff --git a/domains/blog.crazo7924.json b/domains/blog.crazo7924.json index 7d37995c6..588a301ad 100644 --- a/domains/blog.crazo7924.json +++ b/domains/blog.crazo7924.json @@ -1,10 +1,9 @@ { "owner": { "username": "crazo7924", - "discord": "466605393309859840", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WnVEogXILKQlj-jvgWzBYV4EQBNJpb4o31g6aGeiNfpBUziSFOH_A_RYdluWZEm4SN6rwsgh4Ca6BD1FLP-pGkalakxUu22u6oFGPHfclABR0FzYUTwT2ePhQbcCQE0kj_scrL_lUCrWTXfqqu9daPVkKsZSGFR_XtT5stUtwcA_eNuRiRgCB5oteS1Clo3gfWrCIB-XfwUONGfHnm8w_XwiatvVxAV4SMGwh2nNH9lYjLT23rGmO2hd9jptO8GHbNJJWSsndM5D_BIhf1bnDtmuIN3DWciaR9ijmZI5g-CfbkGbph0zhOi4N88eBsdL4Bku5Cu4GnR0_zkjK27cfw.lf05n5TGJ5ekai6Qi7gbdQ.FwSEtzo_z9amY4qpwKLzLct9mtbnkKUEWFSrKlnqv01uRRu1lKQV9_YdU8eZ3UtY0H4wL6iZSrECZPcFxGqGaUl6DIQLc1-jgODQHQNyLzp0WTlMbKcWXCRS80eITxXR.ZaVvxYEKWd03U5gQXIofEw" + "discord": "466605393309859840" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/blog.hafi.json b/domains/blog.hafi.json index 1a49c739f..5655388b0 100644 --- a/domains/blog.hafi.json +++ b/domains/blog.hafi.json @@ -5,7 +5,7 @@ }, "description": "A personal Blog", "repo": "https://github.com/HafiTheCat/hafis_code_continuum", - "record": { + "records": { "CNAME": "hafis-code-continuum.netlify.app" } } diff --git a/domains/blog.joetroll.json b/domains/blog.joetroll.json index e4c3b635f..a717c1f78 100644 --- a/domains/blog.joetroll.json +++ b/domains/blog.joetroll.json @@ -4,7 +4,7 @@ "email": "joetechtok@proton.me", "discord": "1054945019137630278" }, - "record": { + "records": { "CNAME": "blogjoetroll.pages.dev" } } diff --git a/domains/blog.jumanji.json b/domains/blog.jumanji.json index b17686d6d..40d8d579b 100644 --- a/domains/blog.jumanji.json +++ b/domains/blog.jumanji.json @@ -2,7 +2,7 @@ "owner": { "username": "heyjumanji" }, - "record": { + "records": { "CNAME": "jumanjiblogs.vercel.app" } } diff --git a/domains/blog.narasima.json b/domains/blog.narasima.json new file mode 100644 index 000000000..8910f35ad --- /dev/null +++ b/domains/blog.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "records": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/blog.quincetart10.json b/domains/blog.quincetart10.json index 9b165be05..00f6bd24f 100644 --- a/domains/blog.quincetart10.json +++ b/domains/blog.quincetart10.json @@ -5,7 +5,7 @@ "username": "QuinceTart10", "discord": "862644161156218891" }, - "record": { + "records": { "CNAME": "quincetart10.github.io" } } diff --git a/domains/blog.ron.json b/domains/blog.ron.json index 00d554fcb..745f8b6d4 100644 --- a/domains/blog.ron.json +++ b/domains/blog.ron.json @@ -3,7 +3,7 @@ "username": "itsrn", "email": "shalom@itsron.space" }, - "record": { + "records": { "CNAME": "itsrn.github.io" } } diff --git a/domains/blog.shaunfurtado.json b/domains/blog.shaunfurtado.json index debce4590..a804ceb67 100644 --- a/domains/blog.shaunfurtado.json +++ b/domains/blog.shaunfurtado.json @@ -5,7 +5,7 @@ "username": "Shaunfurtado", "email": "shaunf1801@gmail.com" }, - "record": { + "records": { "CNAME": "shaunfurtado.github.io" } } diff --git a/domains/blog.shoyeb.json b/domains/blog.shoyeb.json index 640f68ad0..f8440f18e 100644 --- a/domains/blog.shoyeb.json +++ b/domains/blog.shoyeb.json @@ -3,7 +3,7 @@ "username": "mrtemp70", "email": "mrtemp70@gmail.com" }, - "record": { + "records": { "CNAME": "mrtemp70.github.io" } } diff --git a/domains/blog.violet.json b/domains/blog.violet.json new file mode 100644 index 000000000..a3e0364a2 --- /dev/null +++ b/domains/blog.violet.json @@ -0,0 +1,9 @@ +{ + "description": "My Blog Page", + "owner": { + "username": "violetlaire" + }, + "records": { + "CNAME": "blogviolet.vercel.app" + } +} diff --git a/domains/blog.vornexx.json b/domains/blog.vornexx.json index 33ffb912c..97b9bba48 100644 --- a/domains/blog.vornexx.json +++ b/domains/blog.vornexx.json @@ -3,7 +3,7 @@ "username": "vornexx", "email": "ajay.ramnath8812@gmail.com" }, - "record": { + "records": { "CNAME": "blogvornexx.pages.dev" } } diff --git a/domains/blogs.aakanksha.json b/domains/blogs.aakanksha.json index abeac535f..a0dfa8218 100644 --- a/domains/blogs.aakanksha.json +++ b/domains/blogs.aakanksha.json @@ -5,7 +5,7 @@ "username": "aakankshabhende", "email": "aakanksha0407@gmail.com" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/blogs.adityabh.json b/domains/blogs.adityabh.json index 9131029a5..2281351b2 100644 --- a/domains/blogs.adityabh.json +++ b/domains/blogs.adityabh.json @@ -3,7 +3,7 @@ "username": "AdityaBhattacharya1", "email": "ec6isyf0@anonaddy.me" }, - "record": { + "records": { "CNAME": "blogs-b2q.pages.dev" } } diff --git a/domains/blogs.akk1to.json b/domains/blogs.akk1to.json new file mode 100644 index 000000000..968589ca3 --- /dev/null +++ b/domains/blogs.akk1to.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "records": { + "CNAME": "blogs-chi-pearl.vercel.app" + } +} diff --git a/domains/blogs.shaunak.json b/domains/blogs.shaunak.json index 1af1bd18c..e9916cb37 100644 --- a/domains/blogs.shaunak.json +++ b/domains/blogs.shaunak.json @@ -5,7 +5,7 @@ "username": "Shaunak-Pandya", "email": "shaunak.n.pandya@gmail.com" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/bloomy.json b/domains/bloomy.json index 0e7f06322..f986cdc0a 100644 --- a/domains/bloomy.json +++ b/domains/bloomy.json @@ -3,7 +3,7 @@ "username": "BloomyInDev", "email": "bastien.luben@gmail.com" }, - "record": { + "records": { "URL": "https://www.bloomyindev.me" } } diff --git a/domains/blox.json b/domains/blox.json index 7bfad7a0e..f512279df 100644 --- a/domains/blox.json +++ b/domains/blox.json @@ -3,7 +3,7 @@ "username": "soudblox", "email": "nick8x@gmail.com" }, - "record": { + "records": { "CNAME": "soudblox.github.io" } } diff --git a/domains/blue.json b/domains/blue.json index ff330ce92..1aafa7a55 100644 --- a/domains/blue.json +++ b/domains/blue.json @@ -6,7 +6,7 @@ "email": "b1uedev@outlook.com", "twitter": "b1uedev" }, - "record": { + "records": { "CNAME": "b1ue-dev.github.io" } } diff --git a/domains/blueberry.json b/domains/blueberry.json index 0fc837d1d..d3380d287 100644 --- a/domains/blueberry.json +++ b/domains/blueberry.json @@ -5,7 +5,7 @@ "username": "NgVGB", "email": "dangnguyen101191@gmail.com" }, - "record": { + "records": { "CNAME": "ngvgb.github.io" } } diff --git a/domains/bluemoon.json b/domains/bluemoon.json index 77b8d8ac3..6f7d2e8bf 100644 --- a/domains/bluemoon.json +++ b/domains/bluemoon.json @@ -3,7 +3,7 @@ "username": "amitbartfeld", "email": "amitbartfeld@gmail.com" }, - "record": { + "records": { "CNAME": "amithost.com" } } diff --git a/domains/blueysh.json b/domains/blueysh.json index a01bdd3d1..8bd1816cf 100644 --- a/domains/blueysh.json +++ b/domains/blueysh.json @@ -3,7 +3,7 @@ "username": "blueysh", "email": "jan.santi@icloud.com" }, - "record": { + "records": { "URL": "https://blueysh.me" } } diff --git a/domains/blurnope.json b/domains/blurnope.json index 4292de666..858d67820 100644 --- a/domains/blurnope.json +++ b/domains/blurnope.json @@ -5,7 +5,7 @@ "email": "cynosuregone@gmail.com", "discord": "blurnope.#2655" }, - "record": { + "records": { "CNAME": "blurnope.github.io" } } diff --git a/domains/bm.json b/domains/bm.json new file mode 100644 index 000000000..6af42c1be --- /dev/null +++ b/domains/bm.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BM87006", + "email": "bm.is.a.dev@gmail.com" + }, + "records": { + "CNAME": "v0-blue-portfolio-brown.vercel.app" + }, + "description": "BM Portfolio" +} diff --git a/domains/bmbs.json b/domains/bmbs.json index 935cf410a..e57649a29 100644 --- a/domains/bmbs.json +++ b/domains/bmbs.json @@ -3,7 +3,7 @@ "username": "BaamBuus", "email": "bitternoah864@gmail.com" }, - "record": { + "records": { "CNAME": "baambuus.github.io" } } diff --git a/domains/bmhien.json b/domains/bmhien.json index 287c931e2..d97b72072 100644 --- a/domains/bmhien.json +++ b/domains/bmhien.json @@ -3,7 +3,7 @@ "username": "bm-hien", "email": "buiminhhien001@gmail.com" }, - "record": { + "records": { "CNAME": "bm-hien.github.io" } } diff --git a/domains/bmrdsc.json b/domains/bmrdsc.json index 2e3bc7a71..e9aab818b 100644 --- a/domains/bmrdsc.json +++ b/domains/bmrdsc.json @@ -5,7 +5,7 @@ "username": "SRPVT", "email": "gta69editz@gmail.com" }, - "record": { + "records": { "CNAME": "srpvt.github.io" } } diff --git a/domains/bn3di.json b/domains/bn3di.json new file mode 100644 index 000000000..303b6fb87 --- /dev/null +++ b/domains/bn3di.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohamadOday", + "email": "adada133321t@gmail.com" + }, + "records": { + "CNAME": "mohamadoday.github.io" + } +} diff --git a/domains/bnfone.json b/domains/bnfone.json index 61d6e350d..6f830f4ca 100644 --- a/domains/bnfone.json +++ b/domains/bnfone.json @@ -5,10 +5,7 @@ "username": "bnfone", "email": "is-a-dev-registration.zbden@simplelogin.com" }, - "record": { - "NS": [ - "desiree.ns.cloudflare.com", - "mcgrory.ns.cloudflare.com" - ] + "records": { + "NS": ["desiree.ns.cloudflare.com", "mcgrory.ns.cloudflare.com"] } } diff --git a/domains/bnyro.json b/domains/bnyro.json index 685ba0ca3..566c05847 100644 --- a/domains/bnyro.json +++ b/domains/bnyro.json @@ -4,7 +4,7 @@ "username": "Bnyro", "email": "bnyro@tutanota.com" }, - "record": { + "records": { "CNAME": "bnyro.github.io" } } diff --git a/domains/bob.json b/domains/bob.json index 286eb4003..32fb4fd0f 100644 --- a/domains/bob.json +++ b/domains/bob.json @@ -5,7 +5,7 @@ "username": "Rubinskiy", "discord": "rubinskiy#5258" }, - "record": { + "records": { "CNAME": "rubinskiy.github.io" } } diff --git a/domains/bob16077.json b/domains/bob16077.json index a8eedd94d..6cb270c84 100644 --- a/domains/bob16077.json +++ b/domains/bob16077.json @@ -5,7 +5,7 @@ "username": "bob16077", "discord": "bob16077777" }, - "record": { + "records": { "CNAME": "bob16077.github.io" } } diff --git a/domains/boba.json b/domains/boba.json index d6226cdb3..0b207f6ae 100644 --- a/domains/boba.json +++ b/domains/boba.json @@ -5,7 +5,7 @@ "username": "tarob0ba", "email": "beckett@chatter-social.com" }, - "record": { + "records": { "CNAME": "tarob0ba.github.io" } } diff --git a/domains/bobert.json b/domains/bobert.json index 0c598842d..bb93f3355 100644 --- a/domains/bobert.json +++ b/domains/bobert.json @@ -3,7 +3,7 @@ "username": "real-kwellercat", "email": "lucas.rausch.732@k12.friscoisd.org" }, - "record": { + "records": { "CNAME": "issuelucas.pages.dev" } } diff --git a/domains/boldiii.json b/domains/boldiii.json new file mode 100644 index 000000000..ed6ebd6c5 --- /dev/null +++ b/domains/boldiii.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "boldiiiv3", + "email": "domjan11boldi@gmail.com" + }, + "records": { + "CNAME": "boldiiiv3.github.io" + } +} diff --git a/domains/bolt.json b/domains/bolt.json index 5c0693a25..d73caf24e 100644 --- a/domains/bolt.json +++ b/domains/bolt.json @@ -5,7 +5,7 @@ "username": "Adityeahhh", "email": "adty200807@gmail.com" }, - "record": { + "records": { "CNAME": "adityeahhh.github.io" } } diff --git a/domains/bombacat.json b/domains/bombacat.json index fedf2faf3..e52e00f9a 100644 --- a/domains/bombacat.json +++ b/domains/bombacat.json @@ -3,7 +3,7 @@ "username": "bomba.cat", "email": "bledion.morina@hotmail.com" }, - "record": { + "records": { "CNAME": "bomba-cat.github.io" } } diff --git a/domains/bonusbubble.json b/domains/bonusbubble.json new file mode 100644 index 000000000..db52e538c --- /dev/null +++ b/domains/bonusbubble.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bonusbubble", + "email": "bonusbubble@proton.me" + }, + "records": { + "CNAME": "bonusbubble.github.io" + } +} diff --git a/domains/boo.json b/domains/boo.json new file mode 100644 index 000000000..72787b4b3 --- /dev/null +++ b/domains/boo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Boopup", + "discord": "972502840247484527" + }, + "records": { + "A": ["46.202.82.187"] + } +} diff --git a/domains/books.json b/domains/books.json index 76bb078cd..9491edba4 100644 --- a/domains/books.json +++ b/domains/books.json @@ -1,10 +1,9 @@ { "owner": { "username": "showkinglu", - "discord": "1284363590601805845", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JJz6sWHFHJXcBrAhqxCZAA2V4SzMpQ-D6WuX15qcPHombBZ2d1jsT7Tb3j4OX0nrR8XTKdsKlxXdeTZ1yY7YLXw9T_TJ28Zgbuo0M5KyU9Ejqc6IPlm4FvJ6DcNKWyq40cq9BdNdcFhzUuRv_Me6g4aLeFjhjR-LJLOLmHMs4GPDJ2-V-MAekWaVHl-Y8VAdwpFuQ2Ve7DV7cBrdbHd4nX8wVGk-Eq65AR_VyUFo0GeiPKjiIejKCnIwopOQW_1KxPhtE1LTov8uNloaN7ZGv6MAdCdFXOkKjHFEmKuPtPf6YgVsAMDjdaULPlvhRemtFqqmzbGEqiQiexzEf2wWfA.RkvKnVVxmdCpuToki3hgvw.J4tL5aFuCX4oNIIuur76DKAYw1uiWWGfIhV7Bwxjl5EBZUqnwQ42zMOLLZqpvaiICk-siW4pt5MSgdAzGeP_8bEIuMS0kJLkqpXdf-NrSU8.a3kNHAcGn9TjQ4oE11leqw" + "discord": "1284363590601805845" }, - "record": { + "records": { "A": ["172.104.67.159"] } } diff --git a/domains/boolean44.json b/domains/boolean44.json deleted file mode 100644 index fdac8f8cc..000000000 --- a/domains/boolean44.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "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 index 7dca79671..e7ead945e 100644 --- a/domains/boon.json +++ b/domains/boon.json @@ -4,7 +4,7 @@ "username": "uwuCaitlin", "discord": "boon#6660" }, - "record": { + "records": { "URL": "https://boons.pics" } } diff --git a/domains/borboss.json b/domains/borboss.json index 47bfd26e5..6e11a56d6 100644 --- a/domains/borboss.json +++ b/domains/borboss.json @@ -3,7 +3,7 @@ "username": "borboss", "email": "bobbarosshasnoemail@gmail.com" }, - "record": { + "records": { "CNAME": "borboss.github.io" } } diff --git a/domains/boredcodebyk.json b/domains/boredcodebyk.json deleted file mode 100644 index 57a1e176f..000000000 --- a/domains/boredcodebyk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Portfolio/Personal landing page", - "repo": "https://github.com/boredcodebyk/boredcodebyk.github.io", - "owner": { - "username": "boredcodebyk", - "email": "khromabyk+dev@gmail.com" - }, - "record": { - "CNAME": "boredcodebyk.github.io" - } -} diff --git a/domains/boris1993.json b/domains/boris1993.json index c79b3d1c3..844876caf 100644 --- a/domains/boris1993.json +++ b/domains/boris1993.json @@ -4,7 +4,7 @@ "email": "boris1993@live.cn" }, "description": "boris1993.is-a.dev", - "record": { + "records": { "URL": "https://www.boris1993.com" } } diff --git a/domains/borismoreno.json b/domains/borismoreno.json new file mode 100644 index 000000000..afd6d371e --- /dev/null +++ b/domains/borismoreno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "borismoreno", + "email": "boris_marco_moreno@hotmail.com" + }, + "records": { + "CNAME": "borismoreno.com" + } +} diff --git a/domains/boseong.json b/domains/boseong.json index 66e10fd24..c030a462f 100644 --- a/domains/boseong.json +++ b/domains/boseong.json @@ -3,7 +3,7 @@ "username": "2paperstar", "email": "lee@paperst.ar" }, - "record": { + "records": { "CNAME": "paperst.ar" } } diff --git a/domains/bot.json b/domains/bot.json deleted file mode 100644 index f4251255c..000000000 --- a/domains/bot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "tanmoythebot" - }, - "record": { - "CNAME": "tanmoythebot.github.io" - } -} \ No newline at end of file diff --git a/domains/botlab.json b/domains/botlab.json index e2481ebe3..62db73272 100644 --- a/domains/botlab.json +++ b/domains/botlab.json @@ -2,9 +2,9 @@ "description": "DBD(NO CODE)", "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com" + "email": "priyansxu@yahoo.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/bots.trung.json b/domains/bots.trung.json index d57ee1ee1..cd89864d6 100644 --- a/domains/bots.trung.json +++ b/domains/bots.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "CNAME": "bots-website.pages.dev" } } diff --git a/domains/botstatusdashboard.json b/domains/botstatusdashboard.json index 12ca857b7..062843cb5 100644 --- a/domains/botstatusdashboard.json +++ b/domains/botstatusdashboard.json @@ -1,10 +1,9 @@ { "owner": { "username": "Hjgaming", - "discord": "811259286977773599", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjFFTTvfvazAbsxqPLPi6mJrNoA9kiqnXlC9IATa7cSwrhxbFfDPZ-fm2AeJ0FM9N6yYOEZ2O0B7hO3d51HqlfxLPqQUK_upLmk1Q7B2JQD7oFtfW635eESdXF9PCbxGFyyQiPxUinQv3xmkQnnd5-4E6YzBJZtjuSVsbEUGm6UUCAjy34srUuBJUivDRiJg5DZncH9S9cAXeTaSqcD9NPUweqfafaoNkS_lbcB_i5D41mMNc2sPXKG0dvNrhp0Af92fZp2SPvQULLTU23HKERHLqq_A-OkumqGxorvIcLGd-IZwcH52wpsKlHblPp-13ZjwwIyRut3avYCiorUYuQ.GNt_fXgKV-pxY7-QLWDgEw.so8siEQ2sk6rBDsVzbOIfaO3WcL-OWHrOkHOxB7AgT0gVAYUVBJS1e-lbFkof6UkCG99gEr-HdbL1KoAiOKZBukcScryIgAZepQbPpqtzWE.8GjXmShSO6eEGoSioLPbgQ" + "discord": "811259286977773599" }, - "record": { + "records": { "CNAME": "bot-dashboard-ho5y.onrender.com" } } diff --git a/domains/boudjo.json b/domains/boudjo.json new file mode 100644 index 000000000..3953c53ae --- /dev/null +++ b/domains/boudjo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "boudjoo", + "email": "abdouboudjo1@gmail.com" + }, + "records": { + "CNAME": "boudjoo.github.io" + } +} diff --git a/domains/box.json b/domains/box.json index ab5d3fefd..b66f036df 100644 --- a/domains/box.json +++ b/domains/box.json @@ -6,7 +6,7 @@ "twitter": "DefaultBox_", "discord": "Default Box#8900" }, - "record": { + "records": { "CNAME": "default-box.github.io" } } diff --git a/domains/boxey.json b/domains/boxey.json index aede235a9..2686fd7f3 100644 --- a/domains/boxey.json +++ b/domains/boxey.json @@ -3,7 +3,7 @@ "username": "B0XEY", "email": "gramcooker@gmail.com" }, - "record": { + "records": { "URL": "https://sites.google.com/view/boxey-dev/home?authuser=0" } } diff --git a/domains/bracketproto.json b/domains/bracketproto.json index 6862e76c7..328d5ff42 100644 --- a/domains/bracketproto.json +++ b/domains/bracketproto.json @@ -3,7 +3,7 @@ "username": "not specified, refer to discord.", "discord": "oxmc7769" }, - "record": { + "records": { "URL": "https://bracketproto.com" }, "generator": { diff --git a/domains/brainproxy.json b/domains/brainproxy.json index 7156dd298..efaf44ce0 100644 --- a/domains/brainproxy.json +++ b/domains/brainproxy.json @@ -3,7 +3,7 @@ "username": "LtBrain", "email": "brian.j.guan@outlook.com" }, - "record": { + "records": { "A": ["64.227.120.231"] } } diff --git a/domains/brandgrandreal.json b/domains/brandgrandreal.json index 1fa6e8d15..59543cbc2 100644 --- a/domains/brandgrandreal.json +++ b/domains/brandgrandreal.json @@ -3,7 +3,7 @@ "username": "BrandgrandRealMe", "email": "BrandonTheDev@proton.me" }, - "record": { + "records": { "CNAME": "brandgrandrealme.github.io" } } diff --git a/domains/brandnewwick.json b/domains/brandnewwick.json index 3181bce5b..0ccc04549 100644 --- a/domains/brandnewwick.json +++ b/domains/brandnewwick.json @@ -3,12 +3,7 @@ "username": "alephdfilms", "email": "alephdiallo@mail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/brandon-hoffman.json b/domains/brandon-hoffman.json index 6c8e8b2ca..71b524008 100644 --- a/domains/brandon-hoffman.json +++ b/domains/brandon-hoffman.json @@ -4,7 +4,7 @@ "username": "branhoff", "linkedin": "https://www.linkedin.com/in/branhoff" }, - "record": { + "records": { "CNAME": "branhoff.github.io" } } diff --git a/domains/brandon.json b/domains/brandon.json index 9544482cf..b2b349256 100644 --- a/domains/brandon.json +++ b/domains/brandon.json @@ -5,7 +5,7 @@ "username": "b-hexsoul", "email": "brandon.hexsel@gmail.com" }, - "record": { + "records": { "CNAME": "b-hexsoul.github.io" } } diff --git a/domains/brasil.json b/domains/brasil.json new file mode 100644 index 000000000..12f0979f9 --- /dev/null +++ b/domains/brasil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NatanKonig", + "email": "natan.camargo8@gmail.com" + }, + "records": { + "A": ["129.148.24.229"] + } +} diff --git a/domains/brawley.json b/domains/brawley.json index 6b0af71e8..64b805081 100644 --- a/domains/brawley.json +++ b/domains/brawley.json @@ -4,7 +4,7 @@ "username": "brawlie", "email": "tojoeleeofficial@gmail.com" }, - "record": { + "records": { "URL": "https://brawley.js.org" } } diff --git a/domains/breadomaticc.json b/domains/breadomaticc.json index e2f98517f..75bca9600 100644 --- a/domains/breadomaticc.json +++ b/domains/breadomaticc.json @@ -5,7 +5,7 @@ "username": "breadomaticc", "email": "animaxionpd@gmail.com" }, - "record": { + "records": { "CNAME": "breadomaticc.github.io" } } diff --git a/domains/breakertws.json b/domains/breakertws.json new file mode 100644 index 000000000..d072cd9e2 --- /dev/null +++ b/domains/breakertws.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio by Breaker TWS", + "repo": "https://github.com/BreakerTWS/breakertws.github.io", + "owner": { + "username": "BreakerTWS", + "email": "breakingtws@gmail.com" + }, + "records": { + "CNAME": "breakertws.github.io" + } +} diff --git a/domains/bree.json b/domains/bree.json index e2f781cce..199bf8ca3 100644 --- a/domains/bree.json +++ b/domains/bree.json @@ -5,7 +5,7 @@ "username": "breekoy", "email": "mcwall.breekoy@gmail.com" }, - "record": { + "records": { "CNAME": "breekoy.github.io" } } diff --git a/domains/brentspine.json b/domains/brentspine.json index 7a40c510a..6e0faac1c 100644 --- a/domains/brentspine.json +++ b/domains/brentspine.json @@ -6,7 +6,7 @@ "twitter": "brentspine", "discord": "533779674824966154" }, - "record": { + "records": { "URL": "https://brentspine.de" } } diff --git a/domains/brett.json b/domains/brett.json new file mode 100644 index 000000000..5c7c478f4 --- /dev/null +++ b/domains/brett.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "brettdavies", + "linkedin": "https://linkedin.com/in/brettdavies/" + }, + "records": { + "URL": "https://github.com/brettdavies" + } +} diff --git a/domains/brew.json b/domains/brew.json new file mode 100644 index 000000000..6175cbade --- /dev/null +++ b/domains/brew.json @@ -0,0 +1,11 @@ +{ + "description": "brews writeups", + "repo": "https://github.com/0x62797465/0x62797465.github.io", + "owner": { + "username": "0x62797465", + "email": "bytebrew@cocaine.ninja" + }, + "records": { + "CNAME": "0x62797465.github.io" + } +} diff --git a/domains/brian.json b/domains/brian.json index 6f3b89d78..542339dd1 100644 --- a/domains/brian.json +++ b/domains/brian.json @@ -5,7 +5,7 @@ "username": "fittsqo", "email": "fittsqo@gmail.com" }, - "record": { + "records": { "CNAME": "fittsqo.github.io" } } diff --git a/domains/brin.json b/domains/brin.json index 2b4ccbf78..2b29a3858 100644 --- a/domains/brin.json +++ b/domains/brin.json @@ -1,11 +1,11 @@ { "description": "Personal site", - "repo": "https://github.com/xXTgamerXx/xXTgamerXx.github.io", + "repo": "https://github.com/brinterwastaken/brinterwastaken.github.io", "owner": { - "username": "xXTgamerXx", + "username": "brinterwastaken", "email": "trin.n2848@gmail.com" }, - "record": { - "CNAME": "xxtgamerxx.github.io" + "records": { + "CNAME": "brinterwastaken.github.io" } } diff --git a/domains/brint.json b/domains/brint.json new file mode 100644 index 000000000..89a21fc5e --- /dev/null +++ b/domains/brint.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "brint97" + }, + "records": { + "CNAME": "brint97.github.io" + } +} diff --git a/domains/brnsystems.json b/domains/brnsystems.json index 582164745..a584d2271 100644 --- a/domains/brnsystems.json +++ b/domains/brnsystems.json @@ -3,7 +3,7 @@ "username": "BRNSystems", "email": "bruno@brn.systems" }, - "record": { + "records": { "CNAME": "brn.systems" } } diff --git a/domains/bro.json b/domains/bro.json new file mode 100644 index 000000000..2e5178a26 --- /dev/null +++ b/domains/bro.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/codevodka/Random-PDF", + "owner": { + "username": "codevodka", + "email": "mafiurislam2022@gmail.com" + }, + "records": { + "CNAME": "codevodka.github.io" + } +} diff --git a/domains/brocco.json b/domains/brocco.json index ad2c2c644..6671f91e7 100644 --- a/domains/brocco.json +++ b/domains/brocco.json @@ -1,10 +1,9 @@ { "owner": { "username": "infibrocco", - "discord": "1170290534762422332", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.INVmem4kixZ__O962u4DG4GVeyIqkYZsKiQjD6jVScscMb1XqdOgp9IhGkyd93Q_Kuu0MpJgOh2imWnp9LN81Xixr0DRpADT1S9orBiDvO5Rkf_a8-OuoZlghwj3r9Q9WdCaGm4X7oGkNRUp-neXR4i7MTNfdp2uuKMw-TQ03dEBaQ0NI9U0CsyHBB39vhye68k9emmchAcsCW0e29S77UbjdNcoDkYgKGZctskLDc9AdezJVJAHExtu6sr7HoeSLjmKqpHAPLvxVaGLFB5BHaiRfLyUAGJSngncO5B7hU6TSIHM9FJ6MhyLgRin2TNsHJc4KiSEWY-5sdDQa0THlg.6IJ2lI116heB75n7x1bWMg.lWio4VpiE6RjmASqjeiBj6y7vO-hvZa6T60FRGUiFw4PH5yS83nqPo5pk3PQUAvujuK3oJPCXf33pJvk6TFKseuLHve4YpQTq-qGJBLWJAY._jvDpMlxmzwDjoRa28yYiQ" + "discord": "1170290534762422332" }, - "record": { + "records": { "CNAME": "infibrocco.pages.dev" } } diff --git a/domains/brodes.json b/domains/brodes.json new file mode 100644 index 000000000..fc95ae8bc --- /dev/null +++ b/domains/brodes.json @@ -0,0 +1,12 @@ +{ + "description": "small Website of mine, may have done it wrong", + "repo": "https://github.com/Br0des/Website", + "owner": { + "username": "br0des", + "email": "brodyyeah@proton.me" + }, + "records": { + "CNAME": "br0des.github.io" + }, + "proxied": true +} diff --git a/domains/brody.json b/domains/brody.json new file mode 100644 index 000000000..ab4fc9c48 --- /dev/null +++ b/domains/brody.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lurkny", + "email": "brody@larson.dev" + }, + "records": { + "CNAME": "larson.dev" + } +} diff --git a/domains/brokends.json b/domains/brokends.json new file mode 100644 index 000000000..efc81ef26 --- /dev/null +++ b/domains/brokends.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dns24", + "email": "wahidns24@gmail.com" + }, + "records": { + "CNAME": "dns24.github.io" + } +} diff --git a/domains/brokiem.json b/domains/brokiem.json index 071279ba7..26b3159bb 100644 --- a/domains/brokiem.json +++ b/domains/brokiem.json @@ -3,7 +3,7 @@ "username": "brokiem", "email": "milyhqvideo@gmail.com" }, - "record": { + "records": { "CNAME": "brokiem.github.io" } } diff --git a/domains/broodje56.json b/domains/broodje56.json new file mode 100644 index 000000000..58a05b429 --- /dev/null +++ b/domains/broodje56.json @@ -0,0 +1,11 @@ +{ + "description": "Personal domain for website and email", + "repo": "https://github.com/Broodje565/broodje56", + "owner": { + "username": "Broodje565", + "email": "loic.vcamp@gmail.com" + }, + "records": { + "CNAME": "broodje565.github.io" + } +} diff --git a/domains/brooklyn.json b/domains/brooklyn.json index 8664b03d8..280050387 100644 --- a/domains/brooklyn.json +++ b/domains/brooklyn.json @@ -6,7 +6,7 @@ "email": "redmiror@outlook.com", "twitter": "BrooklynCilekli" }, - "record": { + "records": { "CNAME": "brooklynwashere.github.io" } } diff --git a/domains/bru.json b/domains/bru.json index cd16e7f30..7a6751df2 100644 --- a/domains/bru.json +++ b/domains/bru.json @@ -5,7 +5,7 @@ "username": "BrunoWithoutH", "email": "pinheirobrunoevaristo@gmail.com" }, - "record": { + "records": { "CNAME": "brunowithouth.github.io" } } diff --git a/domains/bruno-eilliar.json b/domains/bruno-eilliar.json new file mode 100644 index 000000000..10044b816 --- /dev/null +++ b/domains/bruno-eilliar.json @@ -0,0 +1,11 @@ +{ + "description": "Personal blog to build my brand as developer.", + "repo": "https://github.com/Eilliar/eilliar.github.io", + "owner": { + "username": "Eilliar", + "email": "engbrunoeilliar@gmail.com" + }, + "records": { + "CNAME": "eilliar.github.io" + } +} diff --git a/domains/bruno.json b/domains/bruno.json index 9c305fe0b..8092702c7 100644 --- a/domains/bruno.json +++ b/domains/bruno.json @@ -4,7 +4,7 @@ "username": "brunohpaiva", "email": "me@bruno.codes" }, - "record": { + "records": { "URL": "https://bruno.codes" } } diff --git a/domains/bryan.json b/domains/bryan.json index d0e9ed6fc..15896a034 100644 --- a/domains/bryan.json +++ b/domains/bryan.json @@ -3,7 +3,7 @@ "username": "evilbryan590", "email": "evilbryan590@gmail.com" }, - "record": { + "records": { "CNAME": "evilbryan590.github.io" } } diff --git a/domains/bryan14saenz.json b/domains/bryan14saenz.json new file mode 100644 index 000000000..54fdcd676 --- /dev/null +++ b/domains/bryan14saenz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Bryan14Saenz", + "email": "14bryansaenz@gmail.com" + }, + "records": { + "CNAME": "portafoliob14s.netlify.app" + } +} diff --git a/domains/bryanj.json b/domains/bryanj.json new file mode 100644 index 000000000..a406d8906 --- /dev/null +++ b/domains/bryanj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bryanj0410", + "email": "bryanj0410@gmail.com" + }, + "records": { + "CNAME": "portfolio-holy-fog-2069.fly.dev" + } +} diff --git a/domains/bryce.json b/domains/bryce.json new file mode 100644 index 000000000..44d400829 --- /dev/null +++ b/domains/bryce.json @@ -0,0 +1,14 @@ +{ + "description": "website to describe me", + "repo": "https://github.com/GitHubFanTest/GitHubFanTest.github.io", + "owner": { + "username": "GitHubFanTest", + "email": "feelingbloxyburger24@gmail.com" + }, + "records": { + "CNAME": "githubfantest.github.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + }, + "proxied": true +} diff --git a/domains/bsapi.json b/domains/bsapi.json index 1d9a5df2e..72e3d658e 100644 --- a/domains/bsapi.json +++ b/domains/bsapi.json @@ -5,7 +5,7 @@ "username": "leecheeyong", "email": "tojoeleeofficial@gmail.com" }, - "record": { + "records": { "CNAME": "botstudios.github.io" } } diff --git a/domains/bteamapp.json b/domains/bteamapp.json index a71f767a9..48c20bedc 100644 --- a/domains/bteamapp.json +++ b/domains/bteamapp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/btleffler.json b/domains/btleffler.json new file mode 100644 index 000000000..dd9632831 --- /dev/null +++ b/domains/btleffler.json @@ -0,0 +1,11 @@ +{ + "description": "btleffler.is-a.dev - Benjamin Leffler's Website", + "repo": "https://github.com/btleffler/btleffler.github.io", + "owner": { + "username": "btleffler", + "email": "btleffler@gmail.com" + }, + "records": { + "CNAME": "btleffler.github.io" + } +} diff --git a/domains/bud.json b/domains/bud.json index 8fe0b0852..e62787c61 100644 --- a/domains/bud.json +++ b/domains/bud.json @@ -5,7 +5,7 @@ "username": "bud3699", "email": "bud3699@gmail.com" }, - "record": { + "records": { "CNAME": "bud3699.github.io" } } diff --git a/domains/buffer.json b/domains/buffer.json index b33bea04c..bb90037da 100644 --- a/domains/buffer.json +++ b/domains/buffer.json @@ -1,10 +1,9 @@ { "owner": { "username": "bufferwise", - "email": "126371417+bufferwise@users.noreply.github.com", "discord": "790846560229392444" }, - "record": { + "records": { "CNAME": "bufferwise.netlify.app" } } diff --git a/domains/buko-dev.json b/domains/buko-dev.json index 7b48b7a20..54fc9b796 100644 --- a/domains/buko-dev.json +++ b/domains/buko-dev.json @@ -1,10 +1,9 @@ { "owner": { "username": "BukoDEV", - "discord": "539008740826021900", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YuNXpG0-lTwVQMkxn_FAYLEsDj2ey-_j1nAxH4tGeZJIvCDGyCAIB3PTbOPb9rfmIK718ISh19183EOPVouHX5qGB5yINiTbpwKKVpVkOXodMe9-rfk8BlRPVdLzTHmUYNPCO5lJtnJKXJj0DZ-jKh7ifMzYqdzaDHlOCSkwva9vl09-XX-vNl8PHMVDTO1wQF1ojzmxzaCBjuz_UwE9k_MlOQyz22l2HnBN990OYO63dNiC9hHJVR6V3cBiZTRGq9Xq2SWW2JvXxBeoIZWs0mGV5JHd70YnIl_COowQ2Je3T72VGTUwXK_9eixzBUEOgC8s3wQLFvPh5MJbkS0lPg.cWVq2oSU90LZc8VZSL4IrA.yQ9bwBAobrePb2jcOU5SVKQGuTrx98F1qfhnyu4rhAw2aATjsUBn9lnNavSF-TNcM4FXvS2wASedJlvzVwcCAB2jbWh_MeMteu5j4Ad91MYwMKKxU3J40W7xFce9l3FI.5q01GI-LyojgnwFOo26Tbw" + "discord": "539008740826021900" }, - "record": { + "records": { "A": ["193.111.250.109"] } } diff --git a/domains/bulkypanda.json b/domains/bulkypanda.json index f189c8110..754f8325a 100644 --- a/domains/bulkypanda.json +++ b/domains/bulkypanda.json @@ -3,7 +3,7 @@ "username": "bulkypanda", "email": "arya@gummadi.net" }, - "record": { + "records": { "CNAME": "bulkypanda.github.io" } } diff --git a/domains/bulletboy.json b/domains/bulletboy.json index 55351abb5..80b87031f 100644 --- a/domains/bulletboy.json +++ b/domains/bulletboy.json @@ -1,10 +1,9 @@ { "owner": { "username": "userandaname", - "discord": "823939421686071386", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G9oEk7CdABSXPTrtniX-JVzXC_M8Ck8N6lcPx6MEEciAoH7DKPHLPkzEFpkNwKO6PacaHGokIEjxJwCyB7M9MiqOU7qtrFh5vQzqPuaTgKMhKE_HGit1ygWe344_R9Ps1JMM7lH-zYq23oiVC57wcxCZ3K32OaTthIC-2qlTpADGruCWdPX9oTL2bJ2ExXhzBkf3i92w0H4N2Qpf2F6u2phMFrSrf7fFemilgwI0YpA46Tn5zPEs3HnpSWBCeysxG6StzteKpvWh8KONqgFg3ApzDux6IzuzPUQ9Yt672miodCFGmvvygL65IH6O7bA3nmoIEf5ogCohTcaia78RaQ.iznvzpLQ_UYA25UWaS1Xtw.odg3WjLAdhjpYNzZ9Yc1qxH4ZzFMbLR7XVkDMvBDPkcTryoADz0n6W60uxecwALZaBqRmncIxGB-a-HQ_cIW7S2VjYyyZixVIec0BSbmZDE.2mkl-CEdAGkZq62jfjw7Ag" + "discord": "823939421686071386" }, - "record": { + "records": { "NS": ["ashton.ns.cloudflare.com", "uma.ns.cloudflare.com"] } } diff --git a/domains/bumidenpasar.json b/domains/bumidenpasar.json new file mode 100644 index 000000000..a7c368d27 --- /dev/null +++ b/domains/bumidenpasar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BumiDenpasar", + "instagram": "ibummmbumi" + }, + "records": { + "CNAME": "portofolio-gray-nine.vercel.app" + } +} diff --git a/domains/bundler.skibidi.json b/domains/bundler.skibidi.json new file mode 100644 index 000000000..469e3347a --- /dev/null +++ b/domains/bundler.skibidi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bananaking6", + "discord": "skibidibagel" + }, + "records": { + "CNAME": "sandpack-jet.vercel.app" + } +} diff --git a/domains/bur.json b/domains/bur.json index cab2abf79..742da2a77 100644 --- a/domains/bur.json +++ b/domains/bur.json @@ -5,12 +5,7 @@ "twitter": "burandby", "discord": "burandby" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/burak.json b/domains/burak.json new file mode 100644 index 000000000..aa52eaa3c --- /dev/null +++ b/domains/burak.json @@ -0,0 +1,14 @@ +{ + "description": "Burak's Tech Insights: AI, Software, and More", + "repo": "https://github.com/burakince/burakince.github.io", + "owner": { + "username": "burakince", + "email": "me@burakince.com", + "linkedin": "https://www.linkedin.com/in/inceburak/", + "twitter": "burakinc", + "keybase": "burakince" + }, + "records": { + "URL": "https://www.burakince.com" + } +} diff --git a/domains/burandby.json b/domains/burandby.json index 9d661b37a..aff35c2a8 100644 --- a/domains/burandby.json +++ b/domains/burandby.json @@ -1,11 +1,10 @@ { "description": "Pico-8 in-browser emulator.", - "repo": "https://github.com/burandby", "owner": { "username": "burandby", "email": "bur.and.by@gmail.com" }, - "record": { + "records": { "CNAME": "burandby.github.io" } } diff --git a/domains/buyer.json b/domains/buyer.json index 58ff75f17..276a27152 100644 --- a/domains/buyer.json +++ b/domains/buyer.json @@ -3,7 +3,7 @@ "username": "Meghdut-Mandal", "email": "meghdut.windows@gmail.com" }, - "record": { + "records": { "CNAME": "d2qfp4li4hsnxe.cloudfront.net" } } diff --git a/domains/bwkam.json b/domains/bwkam.json deleted file mode 100644 index 570fbb327..000000000 --- a/domains/bwkam.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "bwkam", - "discord": "891997325499719730", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.HvzRNEADseLE6CXj6lrEWhsz68_vtnxY3KTtnSJBS_bHfeW7gUhKbUrDZ_Gk0yYVx3qXaHqS1_nWSdISvOa5tuIHxtmNUgmyTEHyAFGX54XZG3dQNS8SML4nMpjsRJ2DcCtfS6YKiTJXgmpVkAoaT1ELqR299iCYbow5j_V4zuYl0t6Les81GlP1Yu2jADmVy9hsjBegFORxL_uB9ZSQd81X0SX7mhtwSxSN3Xmuy5Cx7BRaP5lWIhJ6C95TaF0hes68wCR9qx3IXy4FlGuVzDn4pxz53il4dcdB-a1HBTA73PYEKqX4xFe1nxQOTT9ZBClJJHUHgOjsA_rzeqiXNw.h3Xp8Uv02qaNkcfS16pB3Q.jy9JW6JovL0B885zSD7ZOndjm3Ec_LTB4r1r848fEHhcCb61GGZ41jStD7v_yKxIyXomakNWfyWipfBPDOQVyQ31OrubyLEmQLw_98gzsvc.XdfD7kDdAxqEt9Tk7v0KlQ" - }, - "record": { - "CNAME": "bwkam.github.io" - } -} diff --git a/domains/bxqrn.json b/domains/bxqrn.json index ea5dd30e3..e4d298e69 100644 --- a/domains/bxqrn.json +++ b/domains/bxqrn.json @@ -1,12 +1,10 @@ { - "domain": "bxqrn.is-a.dev", - "subdomain": "bxqrn", - "owner": { - "repo": "https://github.com/bxqrn/bxqrn.github.io", - "email": "flqmze@gmail.com", - "username": "bxqrn" - }, - "record": { - "CNAME": "bxqrn.github.io" - } + "owner": { + "repo": "https://github.com/bxqrn/bxqrn.github.io", + "email": "flqmze@gmail.com", + "username": "bxqrn" + }, + "records": { + "CNAME": "bxqrn.github.io" + } } diff --git a/domains/bypassrn.json b/domains/bypassrn.json index c6b4f0b6d..ee93d8e38 100644 --- a/domains/bypassrn.json +++ b/domains/bypassrn.json @@ -1,10 +1,9 @@ { "owner": { "username": "Gauravisdev", - "discord": "1119494339735867422", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pzBM0Ie4fgb-zJ_0jQc_wvhPQXn1Smlfqby_KW4z3xZOsk3FomBiCHqFCcq6nToxqTYsz_aUkZLXwaJjVZ30Z-vKAN1ttgFCnexwxAGwreKsT9gyST1k1icHg3Uay5KJPUNzGeTvd4kSvJ6z76aYu-aU2YEL-bnUAvfCKlzWVlmFHxoVKJ56AZcr9kY8oCegjPS6FNwewO1pF7ie78SEo1l-fY-Np-PWvkEInGJRCGcprpbhNQxaqBfkGItnGkeQV4jr40L3UokvXjbyPbhYLPJROb-AxMZAWvR8ryVQjaSDhTevdZ1xsWJxGBVMKxum3I7FYH7A5Uz_TPrdbKtvmA.mebJqhTod9St7BqPCw398A.v11ADOcJnwiV8_HbsqhVZcFlvsWUTKJEnDyZb0W7p3ezoF5nMrDSWwFiWAlwDk0xXkWE98HGG7dKVGCt4gidQ10Ad5U2-1hmqsVTKAJAj48.Zr6KvC7GxLy7BJ9LDCQoqA" + "discord": "1119494339735867422" }, - "record": { + "records": { "CNAME": "gaurav-sto.onrender.com" } } diff --git a/domains/byte.json b/domains/byte.json index ff2aac508..1dfb37853 100644 --- a/domains/byte.json +++ b/domains/byte.json @@ -3,7 +3,7 @@ "username": "ishan-school", "email": "ishan.13406@lahartara.sunbeamschools.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/c.json b/domains/c.json index bad8300d4..78c1b0b2c 100644 --- a/domains/c.json +++ b/domains/c.json @@ -3,7 +3,7 @@ "username": "orangci", "discord": "orangc" }, - "record": { - "NS": ["nucum.ns.cloudflare.com", "tate.ns.cloudflare.com"] + "records": { + "URL": "https://orangc.net" } } diff --git a/domains/c00l.json b/domains/c00l.json index e84ec959f..5fcb35f05 100644 --- a/domains/c00l.json +++ b/domains/c00l.json @@ -5,7 +5,7 @@ "username": "Heyayyu", "email": "imrbk123abc@gmail.com" }, - "record": { + "records": { "CNAME": "heyayyu.github.io" } } diff --git a/domains/c0ba1t.json b/domains/c0ba1t.json new file mode 100644 index 000000000..acba99b73 --- /dev/null +++ b/domains/c0ba1t.json @@ -0,0 +1,11 @@ +{ + "description": "hosting personal / portfolio website for myself!", + "repo": "https://github.com/0xC0ba1t/0xc0ba1t.github.io", + "owner": { + "username": "0xC0ba1t", + "email": "main0xc0ba1t@duck.com" + }, + "records": { + "CNAME": "0xC0ba1t.github.io" + } +} diff --git a/domains/caburum.json b/domains/caburum.json index 81d75fa69..27551ce90 100644 --- a/domains/caburum.json +++ b/domains/caburum.json @@ -3,7 +3,7 @@ "username": "caburum", "email": "24cdingwall@gmail.com" }, - "record": { + "records": { "CNAME": "calum-portfolio.pages.dev" } } diff --git a/domains/caelan.json b/domains/caelan.json new file mode 100644 index 000000000..21f10c189 --- /dev/null +++ b/domains/caelan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CaeCur", + "email": "caelan.curry+isadev@gmail.com" + }, + "records": { + "CNAME": "caelan-curry.vercel.app" + } +} diff --git a/domains/caenjones.json b/domains/caenjones.json index ef931ec48..f36338bfb 100644 --- a/domains/caenjones.json +++ b/domains/caenjones.json @@ -1,12 +1,11 @@ { "description": "My personal website and blog", - "repo": "https://github.com/CaenJones/caenjones.github.io", + "repo": "https://github.com/vcc3v/vcc3v.github.io", "owner": { - "username": "CaenJones", - "email": "cj@caenjones.com", - "twitter": "" + "username": "vcc3v", + "email": "cj@caenjones.com" }, - "record": { - "CNAME": "caenjones.github.io" + "records": { + "CNAME": "vcc3v.github.io" } } diff --git a/domains/caesar.json b/domains/caesar.json index cf5c98ed9..1c016a5e7 100644 --- a/domains/caesar.json +++ b/domains/caesar.json @@ -3,7 +3,7 @@ "username": "Illupiter", "email": "lollelxkfo@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/cagdas.json b/domains/cagdas.json index 48b7503ec..d03aa7f7f 100644 --- a/domains/cagdas.json +++ b/domains/cagdas.json @@ -3,7 +3,7 @@ "username": "cagdaskemik", "email": "cagdaskemik@gmail.com" }, - "record": { + "records": { "URL": "https://cagdas.vercel.app" } } diff --git a/domains/caiden.json b/domains/caiden.json index 3f3294a1f..8790a5f30 100644 --- a/domains/caiden.json +++ b/domains/caiden.json @@ -4,7 +4,7 @@ "email": "iididhejejdj@gmail.com", "discord": "850820069310201896" }, - "record": { + "records": { "CNAME": "caiden.onrender.com" } } diff --git a/domains/cal.json b/domains/cal.json index 5c78b362a..55b42dacb 100644 --- a/domains/cal.json +++ b/domains/cal.json @@ -3,7 +3,7 @@ "username": "Recal", "email": "recalibratedgh@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/recal" } } diff --git a/domains/cala.json b/domains/cala.json index 8e1b59156..895c2f7a0 100644 --- a/domains/cala.json +++ b/domains/cala.json @@ -4,7 +4,7 @@ "email": "krivojta@gmail.com", "discord": "981555580495867964" }, - "record": { + "records": { "CNAME": "calamitywoah.github.io" } } diff --git a/domains/calculator.notaperson535.json b/domains/calculator.notaperson535.json index c52edad8c..c11a631ab 100644 --- a/domains/calculator.notaperson535.json +++ b/domains/calculator.notaperson535.json @@ -5,7 +5,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "CNAME": "notaperson535.github.io" } } diff --git a/domains/caleb.json b/domains/caleb.json index f62f6b08a..4e85e75fe 100644 --- a/domains/caleb.json +++ b/domains/caleb.json @@ -4,7 +4,7 @@ "twitter": "CalebDenio" }, "repo": "https://github.com/cjdenio/site-frontend", - "record": { + "records": { "URL": "https://calebden.io" } } diff --git a/domains/callcon.json b/domains/callcon.json new file mode 100644 index 000000000..c2e331498 --- /dev/null +++ b/domains/callcon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItzYoVishal", + "email": "rockstarelitecoc@gmail.com" + }, + "records": { + "A": ["4.157.244.201"] + } +} diff --git a/domains/callumjt.json b/domains/callumjt.json deleted file mode 100644 index d16cc03b6..000000000 --- a/domains/callumjt.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "callumjt", - "email": "cjblack2009@icloud.com" - }, - "record": { - "CNAME": "callumjt.github.io" - } -} diff --git a/domains/cally.json b/domains/cally.json new file mode 100644 index 000000000..548a49ab2 --- /dev/null +++ b/domains/cally.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cally-jt", + "email": "callumjt@proton.me" + }, + "records": { + "CNAME": "cally-jt.github.io" + } +} diff --git a/domains/calum.json b/domains/calum.json index 47d46affe..74ddaa2b1 100644 --- a/domains/calum.json +++ b/domains/calum.json @@ -3,7 +3,7 @@ "username": "caburum", "email": "24cdingwall@gmail.com" }, - "record": { + "records": { "URL": "https://caburum.is-a.dev" } } diff --git a/domains/cam.json b/domains/cam.json index 63912f8a7..e51bafd1d 100644 --- a/domains/cam.json +++ b/domains/cam.json @@ -1,11 +1,10 @@ { "description": "CAM Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/canaris.json b/domains/canaris.json index 01d0c8843..fe92b4c40 100644 --- a/domains/canaris.json +++ b/domains/canaris.json @@ -5,7 +5,7 @@ "username": "Canaris", "email": "mrgeek484@gmail.com" }, - "record": { + "records": { "CNAME": "canaris.pages.dev" } } diff --git a/domains/canavan.json b/domains/canavan.json index 4fb9c34df..ed78e0645 100644 --- a/domains/canavan.json +++ b/domains/canavan.json @@ -5,13 +5,8 @@ "username": "Ninja-5000", "discord": "707170199861854209" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/caodoc.json b/domains/caodoc.json deleted file mode 100644 index 96bb8e6fc..000000000 --- a/domains/caodoc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "caodoc", - "email": "caodoc@proton.me" - }, - "record": { - "CNAME": "caodoc.github.io" - } -} diff --git a/domains/capivara.json b/domains/capivara.json index e484dcef0..f1dc32a77 100644 --- a/domains/capivara.json +++ b/domains/capivara.json @@ -3,7 +3,7 @@ "username": "gabrielasants", "email": "gabrielasantos030@gmail.com" }, - "record": { + "records": { "CNAME": "gabrielasants.github.io" } } diff --git a/domains/carince.json b/domains/carince.json index 53b3b7f3e..56834fbe4 100644 --- a/domains/carince.json +++ b/domains/carince.json @@ -5,7 +5,7 @@ "discord": "carince#0683" }, "repo": "https://github.com/carince/carince.github.io", - "record": { + "records": { "CNAME": "carince.github.io" } } diff --git a/domains/carlo.json b/domains/carlo.json index 76ed83571..63691da43 100644 --- a/domains/carlo.json +++ b/domains/carlo.json @@ -3,7 +3,7 @@ "username": "z1on3", "email": "panercarlo99@gmail.com" }, - "record": { + "records": { "CNAME": "z1on3.github.io" } } diff --git a/domains/carlos-miranda.json b/domains/carlos-miranda.json new file mode 100644 index 000000000..9c9e7e994 --- /dev/null +++ b/domains/carlos-miranda.json @@ -0,0 +1,11 @@ +{ + "description": "Use to portfolio", + "repo": "https://github.com/chard33/portfolio.github.io", + "owner": { + "username": "chard33", + "email": "jchar33@hotmail.com" + }, + "records": { + "CNAME": "chard33.github.io" + } +} diff --git a/domains/carlosgiralt.json b/domains/carlosgiralt.json index 2bc35681a..2af2acb42 100644 --- a/domains/carlosgiralt.json +++ b/domains/carlosgiralt.json @@ -5,7 +5,7 @@ "username": "carlosgiralt", "twitter": "cagiraltt" }, - "record": { + "records": { "CNAME": "carlosgiralt.github.io" } } diff --git a/domains/carlostirado.json b/domains/carlostirado.json new file mode 100644 index 000000000..e9af0f731 --- /dev/null +++ b/domains/carlostirado.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "carlostirado23", + "email": "mariotiradotovar@outlook.com" + }, + "records": { + "CNAME": "carlostirado.vercel.app" + } +} diff --git a/domains/carpodi.json b/domains/carpodi.json index 34aa021f6..9f125940c 100644 --- a/domains/carpodi.json +++ b/domains/carpodi.json @@ -3,7 +3,7 @@ "username": "Carpodi", "email": "itsjahzielgarcia07@gmail.com" }, - "record": { + "records": { "CNAME": "carpodi.github.io" } } diff --git a/domains/cartar.json b/domains/cartar.json index f52ab276f..e36b5e104 100644 --- a/domains/cartar.json +++ b/domains/cartar.json @@ -1,11 +1,10 @@ { "description": "Main domain for file server.", - "repo": "https://github.com/realCartar", "owner": { "username": "realCartar", "twitter": "cartar0058" }, - "record": { + "records": { "A": ["154.53.34.33"] } } diff --git a/domains/carterrpham23.json b/domains/carterrpham23.json new file mode 100644 index 000000000..04ee86d7c --- /dev/null +++ b/domains/carterrpham23.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sonpt-afk", + "email": "sonbappe89@gmail.com" + }, + "records": { + "CNAME": "sonpts-landingfolio.vercel.app" + } +} diff --git a/domains/cartyoo.json b/domains/cartyoo.json index f0cacee85..81b179e95 100644 --- a/domains/cartyoo.json +++ b/domains/cartyoo.json @@ -3,7 +3,7 @@ "username": "Cartyoo", "email": "cartyoogaming@gmail.com" }, - "record": { + "records": { "CNAME": "cartyoo.github.io" } } diff --git a/domains/cas.json b/domains/cas.json new file mode 100644 index 000000000..5ab8fdace --- /dev/null +++ b/domains/cas.json @@ -0,0 +1,11 @@ +{ + "description": "lil bio", + "repo": "https://github.com/caswantsanap/bio", + "owner": { + "username": "caswantsanap", + "email": "caswantsanap@gmail.com" + }, + "records": { + "CNAME": "caswantsanap.github.io" + } +} diff --git a/domains/casper.json b/domains/casper.json index 6bdae7c6e..b98a7a18f 100644 --- a/domains/casper.json +++ b/domains/casper.json @@ -3,7 +3,7 @@ "username": "KZacharski", "email": "apki@kacperzacharski.pl" }, - "record": { + "records": { "CNAME": "puffercat.xyz" } } diff --git a/domains/casperong.json b/domains/casperong.json index 0c9d7e748..49a5863a2 100644 --- a/domains/casperong.json +++ b/domains/casperong.json @@ -3,7 +3,7 @@ "username": "CasperOng", "email": "casper10528@gmail.com" }, - "record": { + "records": { "CNAME": "casperong.github.io" } } diff --git a/domains/cassie.json b/domains/cassie.json index ed2183c93..4a967803e 100644 --- a/domains/cassie.json +++ b/domains/cassie.json @@ -5,7 +5,7 @@ "username": "Diordnas", "email": "cassthepurple@gmail.com" }, - "record": { + "records": { "CNAME": "diordnas.github.io" } } diff --git a/domains/cat.json b/domains/cat.json index 0ab726729..7ae4b4ac2 100644 --- a/domains/cat.json +++ b/domains/cat.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "yunexiz.github.io" } } diff --git a/domains/catalinaarciniegassaenz.json b/domains/catalinaarciniegassaenz.json new file mode 100644 index 000000000..d3a6a5e4b --- /dev/null +++ b/domains/catalinaarciniegassaenz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "cascodenotch", + "email": "catalinaarciniegassaenz@gmail.com" + }, + "records": { + "CNAME": "cascodenotch.github.io" + }, + "proxied": false +} diff --git a/domains/catfein.json b/domains/catfein.json index d442f3731..262f1efe6 100644 --- a/domains/catfein.json +++ b/domains/catfein.json @@ -3,7 +3,7 @@ "username": "alfari24", "email": "ari@alfari.id" }, - "record": { + "records": { "A": ["194.15.36.220"] } } diff --git a/domains/catrin.json b/domains/catrin.json index 32d3ba1bd..2108c0cb9 100644 --- a/domains/catrin.json +++ b/domains/catrin.json @@ -3,7 +3,7 @@ "username": "catrinlam", "email": "winter.leafie@gmail.com" }, - "record": { + "records": { "CNAME": "catrinlam.github.io" } } diff --git a/domains/cats.json b/domains/cats.json index 7658dd895..fd1242870 100644 --- a/domains/cats.json +++ b/domains/cats.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "cat-images.pages.dev" } } diff --git a/domains/catsarecoo.json b/domains/catsarecoo.json index 2e5b41db9..4c68ff5cd 100644 --- a/domains/catsarecoo.json +++ b/domains/catsarecoo.json @@ -5,7 +5,7 @@ "username": "catsarecoo", "email": "twistedpandora91@gmail.com" }, - "record": { + "records": { "CNAME": "catsarecoo.github.io" } } diff --git a/domains/catto24.json b/domains/catto24.json index 4af7e1c46..c7a7a2c92 100644 --- a/domains/catto24.json +++ b/domains/catto24.json @@ -6,7 +6,7 @@ "email": "catto24@proton.me", "twitter": "catto24_" }, - "record": { + "records": { "CNAME": "catto24.github.io" } } diff --git a/domains/cattopytheweb.json b/domains/cattopytheweb.json index 8572deaf7..b2f4ee451 100644 --- a/domains/cattopytheweb.json +++ b/domains/cattopytheweb.json @@ -5,7 +5,7 @@ "username": "CattopyTheWeb", "discord": "cattopytheweb404" }, - "record": { + "records": { "URL": "https://cattopytheweb.github.io", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/catzboy.json b/domains/catzboy.json index 5a35b961c..b186a6300 100644 --- a/domains/catzboy.json +++ b/domains/catzboy.json @@ -5,7 +5,7 @@ "username": "Maruful007", "email": "marufulislamsami2007@gmail.com" }, - "record": { + "records": { "CNAME": "maruful007.github.io" } } diff --git a/domains/caz.json b/domains/caz.json index c2d06e995..88a9e2609 100644 --- a/domains/caz.json +++ b/domains/caz.json @@ -6,7 +6,7 @@ "email": "caz@monke.team", "discord": "crazyaccess#7707" }, - "record": { + "records": { "CNAME": "crazyaccess.github.io" } } diff --git a/domains/cb.json b/domains/cb.json index 2438155ed..4df693334 100644 --- a/domains/cb.json +++ b/domains/cb.json @@ -4,7 +4,7 @@ "username": "coffeebank", "email": "coffeebank-is-a-dev@catdev.anonaddy.com" }, - "record": { + "records": { "URL": "https://coffeebank.github.io" } } diff --git a/domains/cc.json b/domains/cc.json index fc1a25262..75cb548e3 100644 --- a/domains/cc.json +++ b/domains/cc.json @@ -6,7 +6,7 @@ "email": "sic.hcq@gmail.com", "twitter": "arm_cc" }, - "record": { + "records": { "CNAME": "iamcc.github.io" } } diff --git a/domains/cc4dev.json b/domains/cc4dev.json new file mode 100644 index 000000000..d072e16ae --- /dev/null +++ b/domains/cc4dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cc4dev", + "email": "cc4dev@proton.me" + }, + "records": { + "CNAME": "cc4dev.github.io" + } +} diff --git a/domains/ccortina.json b/domains/ccortina.json index 79cc5bb72..1d36a4ba7 100644 --- a/domains/ccortina.json +++ b/domains/ccortina.json @@ -4,7 +4,7 @@ "username": "DevCortina", "email": "devcortina@proton.me" }, - "record": { + "records": { "URL": "https://cortinadev.vercel.app" } } diff --git a/domains/cd.json b/domains/cd.json index f6c30f430..2aac9378f 100644 --- a/domains/cd.json +++ b/domains/cd.json @@ -1,12 +1,15 @@ { - "description": "Personal website of Yaksh Bariya", + "description": "Redirect to my personal website", "repo": "https://github.com/thunder-coding/CodingThunder", "owner": { "username": "thunder-coding", "email": "yakshbari4@gmail.com", "discord": "codingthunder" }, - "record": { - "CNAME": "thunder-coding.github.io" + "records": { + "URL": "https://thunders.website" + }, + "redirect_config": { + "redirect_paths": true } } diff --git a/domains/cdn.aayush.json b/domains/cdn.aayush.json index 6dc28a351..9bec5c8c4 100644 --- a/domains/cdn.aayush.json +++ b/domains/cdn.aayush.json @@ -5,7 +5,7 @@ "username": "OpAayush", "email": "aayush.agrawalm@gmail.com" }, - "record": { + "records": { "CNAME": "opaayush.github.io" } } diff --git a/domains/cdn.akk1to.json b/domains/cdn.akk1to.json new file mode 100644 index 000000000..ebd85723c --- /dev/null +++ b/domains/cdn.akk1to.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "records": { + "TXT": "Created to allow nested subdomains to exist." + } +} diff --git a/domains/cdn.akshtt.json b/domains/cdn.akshtt.json new file mode 100644 index 000000000..246ebefbd --- /dev/null +++ b/domains/cdn.akshtt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218" + }, + "records": { + "A": ["69.62.118.156"] + } +} diff --git a/domains/cdn.areen.json b/domains/cdn.areen.json new file mode 100644 index 000000000..6efbc59ff --- /dev/null +++ b/domains/cdn.areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "records": { + "CNAME": "c-d-n.pages.dev" + } +} diff --git a/domains/cdn.arman.json b/domains/cdn.arman.json index b195e1f8c..2b16a1180 100644 --- a/domains/cdn.arman.json +++ b/domains/cdn.arman.json @@ -3,7 +3,7 @@ "username": "ItzArman09", "email": "itz.armxn@outlook.com" }, - "record": { + "records": { "CNAME": "itzarman09.github.io" } } diff --git a/domains/cdn.artix.json b/domains/cdn.artix.json index 6de2d37e4..560301132 100644 --- a/domains/cdn.artix.json +++ b/domains/cdn.artix.json @@ -4,7 +4,7 @@ "email": "yu1234u73f.com@gmail.com", "discord": "834867471885271053" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/cdn.evelio.json b/domains/cdn.evelio.json new file mode 100644 index 000000000..51ebcef90 --- /dev/null +++ b/domains/cdn.evelio.json @@ -0,0 +1,11 @@ +{ + "description": "Will be used for Zipline purposes", + "owner": { + "username": "SrEvelio", + "email": "alphaevelio@gmail.com", + "discord": "srevelio" + }, + "records": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/cdn.komaru.json b/domains/cdn.komaru.json new file mode 100644 index 000000000..1386c332a --- /dev/null +++ b/domains/cdn.komaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "komaru-meow", + "email": "winbo-yml-exe@outlook.com" + }, + "records": { + "CNAME": "komaru-cdn.github.io" + } +} diff --git a/domains/cdn.mkeko.json b/domains/cdn.mkeko.json index b10af2ddb..4a7938e43 100644 --- a/domains/cdn.mkeko.json +++ b/domains/cdn.mkeko.json @@ -1,11 +1,10 @@ { "description": "for my zipline", - "repo": "https://github.com/Mkeko", "owner": { "username": "Mkeko", "twitter": "Mkekomc" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/cdn.mohammad87115.json b/domains/cdn.mohammad87115.json index 812623f23..525bce7a6 100644 --- a/domains/cdn.mohammad87115.json +++ b/domains/cdn.mohammad87115.json @@ -5,7 +5,7 @@ "email": "mohammad87115@gmail.com", "twitter": "mohammad87115" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/cdn.nziie.json b/domains/cdn.nziie.json index fa85d784a..9104eaadb 100644 --- a/domains/cdn.nziie.json +++ b/domains/cdn.nziie.json @@ -5,7 +5,7 @@ "username": "Nzii3", "email": "exeyst@gmail.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/cdn.parsewar.json b/domains/cdn.parsewar.json index 549590ce7..40fe5cd8c 100644 --- a/domains/cdn.parsewar.json +++ b/domains/cdn.parsewar.json @@ -3,7 +3,7 @@ "username": "AtharvParsewar", "email": "atharvparsewar@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/cdn.pele.json b/domains/cdn.pele.json index eceae0d10..865fad1e4 100644 --- a/domains/cdn.pele.json +++ b/domains/cdn.pele.json @@ -4,7 +4,7 @@ "email": "pele.puric@gmail.com", "discord": "483261654818226186" }, - "record": { + "records": { "A": ["38.242.242.224"] } } diff --git a/domains/cdn.semant.json b/domains/cdn.semant.json index 3a29218f0..24f90478a 100644 --- a/domains/cdn.semant.json +++ b/domains/cdn.semant.json @@ -4,7 +4,7 @@ "username": "ihacksemant", "email": "contact@semant.is-a.dev" }, - "record": { + "records": { "CNAME": "web-0wfb.onrender.com" } } diff --git a/domains/cdn.serstars.json b/domains/cdn.serstars.json index ed0a9a4d5..782e6a2a0 100644 --- a/domains/cdn.serstars.json +++ b/domains/cdn.serstars.json @@ -4,7 +4,7 @@ "username": "SerStars", "twitter": "SerStars_lol" }, - "record": { + "records": { "CNAME": "serstars-2.github.io" } } diff --git a/domains/cdn.shymike.json b/domains/cdn.shymike.json index 85e9caf72..5ee4a2902 100644 --- a/domains/cdn.shymike.json +++ b/domains/cdn.shymike.json @@ -3,7 +3,7 @@ "username": "ImShyMike", "discord": "582648583635992622" }, - "record": { + "records": { "A": ["69.197.135.203"] } } diff --git a/domains/cdn.trung.json b/domains/cdn.trung.json index b99730c4e..488318c9f 100644 --- a/domains/cdn.trung.json +++ b/domains/cdn.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/cdn.winbo.json b/domains/cdn.winbo.json deleted file mode 100644 index d2086cfc7..000000000 --- a/domains/cdn.winbo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "winbo-yml-exe", - "email": "winbo-yml-exe@outlook.com" - }, - "record": { - "CNAME": "winbo-cdn.github.io" - } -} diff --git a/domains/cdn.xrap1dx.json b/domains/cdn.xrap1dx.json index e4debd4ad..ae016b073 100644 --- a/domains/cdn.xrap1dx.json +++ b/domains/cdn.xrap1dx.json @@ -1,11 +1,10 @@ { "description": "making my cdn!!!", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "email": "sirrapid155@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/cdops.json b/domains/cdops.json index 5117cbf15..4b76fface 100644 --- a/domains/cdops.json +++ b/domains/cdops.json @@ -1,11 +1,10 @@ { "description": "This is my blogging website", - "repo": "https://github.com/gtamilvanan17", "owner": { "username": "gtamilvanan17", "discord": "gtamilvanan17" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/cedrickfeze.json b/domains/cedrickfeze.json new file mode 100644 index 000000000..9c412171a --- /dev/null +++ b/domains/cedrickfeze.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cedrickdev", + "email": "cedrickv.tchindaf@hes-so.ch" + }, + "records": { + "CNAME": "cedrickfeze.vercel.app" + } +} diff --git a/domains/ceed.json b/domains/ceed.json index 72bda0f99..a2095194e 100644 --- a/domains/ceed.json +++ b/domains/ceed.json @@ -3,7 +3,7 @@ "username": "ItsCEED", "email": "ceed1337@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/itsceed" } } diff --git a/domains/celesta.json b/domains/celesta.json index 4a17f262a..a6c4f263d 100644 --- a/domains/celesta.json +++ b/domains/celesta.json @@ -5,7 +5,7 @@ "email": "francescosuardi51@gmail.com", "discord": "notveryc00l." }, - "record": { + "records": { "NS": ["ns1.dynu.com", "ns11.dynu.com", "ns8.dynu.com"] } } diff --git a/domains/celsojr.json b/domains/celsojr.json index b8439c9e5..c5550d056 100644 --- a/domains/celsojr.json +++ b/domains/celsojr.json @@ -5,7 +5,7 @@ "username": "celsojr", "email": "celsojrfull@gmail.com" }, - "record": { + "records": { "CNAME": "celsojr.github.io" } } diff --git a/domains/cemalgnlts.json b/domains/cemalgnlts.json new file mode 100644 index 000000000..0cbeefabb --- /dev/null +++ b/domains/cemalgnlts.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cemalgnlts", + "discord": "cemalgnlts" + }, + "records": { + "A": ["45.55.110.124"] + } +} diff --git a/domains/censor.json b/domains/censor.json index 5fa90ee8e..31fed2b79 100644 --- a/domains/censor.json +++ b/domains/censor.json @@ -7,7 +7,7 @@ "discord": "cens6r#0001", "note": "It is faster to contact me on Discord." }, - "record": { + "records": { "CNAME": "cens6r.github.io" } } diff --git a/domains/centi.json b/domains/centi.json index 4f33e4866..d67a84ae2 100644 --- a/domains/centi.json +++ b/domains/centi.json @@ -6,7 +6,7 @@ "email": "contactocenti@gmail.com", "twitter": "Centifn" }, - "record": { + "records": { "CNAME": "ncenti.github.io" } } diff --git a/domains/certurix.json b/domains/certurix.json index 79bd0dbaa..22cb9006b 100644 --- a/domains/certurix.json +++ b/domains/certurix.json @@ -3,7 +3,7 @@ "username": "Certurix", "email": "certurix@outlook.fr" }, - "record": { + "records": { "CNAME": "certurix.github.io" } } diff --git a/domains/cesardarizaleta.json b/domains/cesardarizaleta.json new file mode 100644 index 000000000..386f47e5b --- /dev/null +++ b/domains/cesardarizaleta.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/cesardarizaleta/cesarfolio", + "owner": { + "username": "cesardarizaleta", + "email": "cesardarizaleta@gmail.com" + }, + "records": { + "CNAME": "cesarfolio.vercel.app" + } +} diff --git a/domains/cesarmr.json b/domains/cesarmr.json index 8448a6cce..9ccf6492a 100644 --- a/domains/cesarmr.json +++ b/domains/cesarmr.json @@ -4,7 +4,7 @@ "email": "c3s1r@proton.me", "discord": "740861702215565333" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/cescdev.json b/domains/cescdev.json new file mode 100644 index 000000000..89a16764d --- /dev/null +++ b/domains/cescdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GitCesc07", + "email": "cesar0407197@gmail.com" + }, + "records": { + "CNAME": "cescdev-portafolio.netlify.app" + } +} diff --git a/domains/cetus.json b/domains/cetus.json index b14090e79..d79d37ce5 100644 --- a/domains/cetus.json +++ b/domains/cetus.json @@ -1,12 +1,11 @@ { "description": "Cetus's Portfolio", - "repo": "https://github.com/dev-cetus", "owner": { "username": "Cetus", "email": "dev-cetus@proton.me", "twitter": "dev_cetus" }, - "record": { + "records": { "CNAME": "cetus-is-a-dev.pages.dev" } } diff --git a/domains/cfg-codes.json b/domains/cfg-codes.json new file mode 100644 index 000000000..a4d57a302 --- /dev/null +++ b/domains/cfg-codes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cfg-codes", + "email": "carlosfgomezarr@gmail.com" + }, + "records": { + "CNAME": "cfg-codes.github.io" + } +} diff --git a/domains/cfp.json b/domains/cfp.json index a1ae0431e..78c463187 100644 --- a/domains/cfp.json +++ b/domains/cfp.json @@ -3,7 +3,7 @@ "username": "cfpwastaken", "discord": "cfp (318394797822050315)" }, - "record": { + "records": { "CNAME": "dyn.picoscratch.de" } } diff --git a/domains/cgcristi.json b/domains/cgcristi.json index 00f2811e3..2a409dffb 100644 --- a/domains/cgcristi.json +++ b/domains/cgcristi.json @@ -3,7 +3,7 @@ "username": "realcgcristi", "email": "cgcristi@cgcristi.xyz" }, - "record": { + "records": { "CNAME": "realcgcristi.github.io" } } diff --git a/domains/cggaurav.json b/domains/cggaurav.json index 1888149d3..eeb19f80a 100644 --- a/domains/cggaurav.json +++ b/domains/cggaurav.json @@ -3,7 +3,7 @@ "username": "cggaurav", "email": "cggaurav@u.nus.edu" }, - "record": { + "records": { "URL": "https://cggaurav.net" } } diff --git a/domains/cgmuros.json b/domains/cgmuros.json new file mode 100644 index 000000000..d0a581f04 --- /dev/null +++ b/domains/cgmuros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cgmuros", + "email": "cgmuros@gmail.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/cgprograms.json b/domains/cgprograms.json index b4167e8fd..df5d61ac5 100644 --- a/domains/cgprograms.json +++ b/domains/cgprograms.json @@ -5,7 +5,7 @@ "username": "compugenius", "email": "github@cgprograms.com" }, - "record": { + "records": { "URL": "https://cgprograms.com" } } diff --git a/domains/chad.json b/domains/chad.json index 7b42c962e..d1c6c03a0 100644 --- a/domains/chad.json +++ b/domains/chad.json @@ -6,7 +6,7 @@ "email": "chadboyce@gmail.com", "twitter": "djsnipa1" }, - "record": { + "records": { "CNAME": "djsnipa1.github.io" } } diff --git a/domains/chadee.json b/domains/chadee.json index 2da5aeda2..373da5a47 100644 --- a/domains/chadee.json +++ b/domains/chadee.json @@ -6,12 +6,7 @@ "telegram": "chadeeeeeeeeee", "email": "esurginet2011@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/chaey.json b/domains/chaey.json index cdb0dca57..c5750f088 100644 --- a/domains/chaey.json +++ b/domains/chaey.json @@ -3,7 +3,7 @@ "username": "qing762", "email": "threatedblade@outlook.com" }, - "record": { + "records": { "CNAME": "qing-website.onrender.com" } } diff --git a/domains/chamal1120.json b/domains/chamal1120.json new file mode 100644 index 000000000..4b004d7fb --- /dev/null +++ b/domains/chamal1120.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chamal1120", + "email": "kenway213beep@gmail.com" + }, + "records": { + "CNAME": "chamal1120.vercel.app" + } +} diff --git a/domains/chaman.json b/domains/chaman.json index ca8f27ec9..1189f23fd 100644 --- a/domains/chaman.json +++ b/domains/chaman.json @@ -3,7 +3,7 @@ "username": "chamanbravo", "email": "chamanpro9@gmail.com" }, - "record": { + "records": { "URL": "https://chadman.vercel.app" } } diff --git a/domains/chamo.json b/domains/chamo.json index e943113de..bd767903a 100644 --- a/domains/chamo.json +++ b/domains/chamo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "chamzz99", - "email": "chamzz.dev@gmail.com" - }, - "record": { - "CNAME": "chamzz99.github.io" - } + "owner": { + "username": "chamzz99", + "email": "chamzz.dev@gmail.com" + }, + "records": { + "CNAME": "chamzz99.github.io" + } } diff --git a/domains/chandra.json b/domains/chandra.json index b753a075b..bbf18f0ff 100644 --- a/domains/chandra.json +++ b/domains/chandra.json @@ -3,7 +3,7 @@ "username": "sekharmalla", "email": "sekharmalla.vfx@gmail.com" }, - "record": { + "records": { "CNAME": "sekharmalla.github.io" } } diff --git a/domains/chandrakant.json b/domains/chandrakant.json index 8bd3bde27..c8d3aee44 100644 --- a/domains/chandrakant.json +++ b/domains/chandrakant.json @@ -4,7 +4,7 @@ "username": "chandrakaant", "email": "chandrakantpatel23@gmail.com" }, - "record": { + "records": { "CNAME": "chandrakaant.github.io" } } diff --git a/domains/chandrasekhar.json b/domains/chandrasekhar.json index 4ffae3433..69037aef2 100644 --- a/domains/chandrasekhar.json +++ b/domains/chandrasekhar.json @@ -3,7 +3,7 @@ "username": "Chandra-Sekhar-Bala", "email": "sekhar.chandra.5832@gmail.com" }, - "record": { + "records": { "URL": "https://chandra-sekhar-bala.github.io" } } diff --git a/domains/chandsi.json b/domains/chandsi.json index da0f14acd..00c1cd00f 100644 --- a/domains/chandsi.json +++ b/domains/chandsi.json @@ -1,15 +1,11 @@ { "owner": { "username": "Gauravisdev", - "discord": "1119494339735867422", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QGI-jdpZpGtm5id_KBQnUjBud23siGGUxNcDIZlIJeFrkn5yoJnwzkEgvIeCMVJHfVc0s9-au_Ys2GaF7ho1BV0VMiZRec_CDLlXJloYACrJao6GZpgniHi7nEM_yo_ppea0qoSbHdkB78OVLFbdiMGXuQHAUgl93lyvQxpYncxmuoB45Lt4PHPeNI13oA_b2cl-4KJdWnIdZROHV70oiz0HeQtdT4-rOho4sXy_POgF-5U4cQPIRCv7Sn4vkwR5yues9ALzlmOxd6y2sq4oiGCnzfmoiPV9nOxs1y7GolnNQ-xEkMv_C2eLhmL7Dz2Ku0xfvHgqJ6D7GNpokYqwyQ.jmNMhGE5MROTfsXre5BEOQ.SKe9K2hsOV3DYE-UJQCaH46_tw41m_CXwao0xScbwgHIO0AWGaPsxhfrnON43gUmcCpEy9x5ZGYL27qiXB2YAGSJoQwWjamxtMDeySxCmvE.WEUQ4x98SHvxgv2HeQz0sw" + "discord": "1119494339735867422" }, - "record": { + "records": { "A": ["76.76.21.21"], - "TXT": [ - "zoho-verification=zb40348561.zmverify.zoho.in", - "v=spf1 include:zoho.in ~all" - ], + "TXT": ["zoho-verification=zb40348561.zmverify.zoho.in", "v=spf1 include:zoho.in ~all"], "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"] } } diff --git a/domains/chang.json b/domains/chang.json index e4a5bc7c8..ae5fea992 100644 --- a/domains/chang.json +++ b/domains/chang.json @@ -5,7 +5,7 @@ "username": "bobbyliu117", "twitter": "changisadev" }, - "record": { + "records": { "CNAME": "bobbyliu117.github.io" } } diff --git a/domains/changliu.json b/domains/changliu.json index 2114b6e95..c363f68bd 100644 --- a/domains/changliu.json +++ b/domains/changliu.json @@ -6,7 +6,7 @@ "email": "changbobbyliu@gmail.com", "twitter": "changliuisadev" }, - "record": { + "records": { "CNAME": "changbobbyliu.github.io" } } diff --git a/domains/chankit.json b/domains/chankit.json index 0b7da99fa..c5cd1a5d8 100644 --- a/domains/chankit.json +++ b/domains/chankit.json @@ -3,7 +3,7 @@ "username": "ChankitSaini", "email": "chankit@outlook.in" }, - "record": { + "records": { "CNAME": "chankit.pages.dev" } } diff --git a/domains/chaotic.json b/domains/chaotic.json index d39268122..1787eec59 100644 --- a/domains/chaotic.json +++ b/domains/chaotic.json @@ -4,7 +4,7 @@ "username": "ChaoticChaosTheGreat", "email": "ryan.ryanabraham@gmail.com" }, - "record": { + "records": { "CNAME": "chaoticchaosthegreat.github.io" } } diff --git a/domains/char.json b/domains/char.json new file mode 100644 index 000000000..74b49cfa0 --- /dev/null +++ b/domains/char.json @@ -0,0 +1,11 @@ +{ + "description": "Use to portfolio", + "repo": "https://github.com/chard33/portafolio---Alura", + "owner": { + "username": "chard33", + "email": "jchar33@hotmail.com" + }, + "records": { + "CNAME": "chard33.github.io" + } +} diff --git a/domains/charalampos.json b/domains/charalampos.json index b7ff755dc..c65263fa3 100644 --- a/domains/charalampos.json +++ b/domains/charalampos.json @@ -5,7 +5,7 @@ "username": "cfanoulis", "email": "domains@fanoulis.dev" }, - "record": { + "records": { "URL": "https://fanoulis.dev" } } diff --git a/domains/charcg.json b/domains/charcg.json deleted file mode 100644 index f49dbde7e..000000000 --- a/domains/charcg.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "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/charlesbird.json b/domains/charlesbird.json index 1fe618441..7cfb6285b 100644 --- a/domains/charlesbird.json +++ b/domains/charlesbird.json @@ -3,7 +3,7 @@ "username": "UntoldGam", "email": "charlesobird+github@outlook.com" }, - "record": { + "records": { "CNAME": "charlesobird.pages.dev" } } diff --git a/domains/charlie.json b/domains/charlie.json index 64dd3b066..1efb16c26 100644 --- a/domains/charlie.json +++ b/domains/charlie.json @@ -5,7 +5,7 @@ "username": "cachrisman", "email": "charlie.chrisman@gmail.com" }, - "record": { + "records": { "URL": "https://www.charliechrisman.com" } } diff --git a/domains/charly.json b/domains/charly.json new file mode 100644 index 000000000..0fc227d50 --- /dev/null +++ b/domains/charly.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "soy-charly", + "email": "carlos.scarrasco08@gmail.com", + "discord": "charly0572" + }, + "records": { + "CNAME": "porfolio-bice-mu.vercel.app" + } +} diff --git a/domains/charlz.json b/domains/charlz.json index 9e1af4569..872908172 100644 --- a/domains/charlz.json +++ b/domains/charlz.json @@ -4,7 +4,7 @@ "username": "TofuBoy05", "email": "charlzfelipe02@gmail.com" }, - "record": { + "records": { "CNAME": "tofuboy05.github.io" } } diff --git a/domains/charmy.json b/domains/charmy.json new file mode 100644 index 000000000..af9fd9533 --- /dev/null +++ b/domains/charmy.json @@ -0,0 +1,11 @@ +{ + "description": "Need the subdomain for my discord bot website", + "repo": "https://github.com/yurehito/charmy-website.git", + "owner": { + "username": "yurehito", + "discord": "https://discord.com/users/998608551431897170" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/chat.alvin.json b/domains/chat.alvin.json index 810c13865..19f6673c5 100644 --- a/domains/chat.alvin.json +++ b/domains/chat.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/chat.sxi.json b/domains/chat.sxi.json index 08fb57ff3..024954b81 100644 --- a/domains/chat.sxi.json +++ b/domains/chat.sxi.json @@ -4,7 +4,7 @@ "email": "oshidev@proton.me", "discord": "1247896918957490198" }, - "record": { + "records": { "CNAME": "cname.freeflarum.com" } } diff --git a/domains/chat.vamtic.json b/domains/chat.vamtic.json index 72e57dc0f..a7358bf20 100644 --- a/domains/chat.vamtic.json +++ b/domains/chat.vamtic.json @@ -3,7 +3,7 @@ "username": "vamtic", "email": "vamtic@yahoo.com" }, - "record": { + "records": { "CNAME": "anon.69.mu" } } diff --git a/domains/chatbot.devmatei.json b/domains/chatbot.devmatei.json deleted file mode 100644 index 814e7a71f..000000000 --- a/domains/chatbot.devmatei.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "devmatei" - }, - "record": { - "A": ["76.76.21.21"] - } -} diff --git a/domains/chathub.json b/domains/chathub.json index 5815fb617..bf57d97d6 100644 --- a/domains/chathub.json +++ b/domains/chathub.json @@ -3,7 +3,7 @@ "username": "bhaskaraa45", "email": "bhaskarmandal369@gmail.com" }, - "record": { + "records": { "A": ["20.198.8.42"] } } diff --git a/domains/chattingmessenger.json b/domains/chattingmessenger.json index c2652d957..f0c31b9b4 100644 --- a/domains/chattingmessenger.json +++ b/domains/chattingmessenger.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "riotoff", - "discord": "1040929084684902460" - }, - "record": { - "CNAME": "riotoff.github.io" - } -} + "owner": { + "username": "riotoff", + "discord": "1040929084684902460" + }, + "records": { + "CNAME": "riotoff.github.io" + } +} diff --git a/domains/chaubey.json b/domains/chaubey.json index d5e3be97d..d3179da9e 100644 --- a/domains/chaubey.json +++ b/domains/chaubey.json @@ -7,7 +7,7 @@ "telegram": "ankit_chaubey", "github": "ankit-chaubey" }, - "record": { + "records": { "CNAME": "ankit-chaubey.github.io" } } diff --git a/domains/chauhan-pradip.json b/domains/chauhan-pradip.json index 805a1afe9..ecc0620da 100644 --- a/domains/chauhan-pradip.json +++ b/domains/chauhan-pradip.json @@ -4,7 +4,7 @@ "owner": { "username": "chauhan-pradip" }, - "record": { + "records": { "CNAME": "chauhan-pradip.github.io" } } diff --git a/domains/check.json b/domains/check.json deleted file mode 100644 index b14fc31dc..000000000 --- a/domains/check.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "EducatedSuddenBucket", - "email": "educatedsuddenbucket@gmail.com" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] - } -} diff --git a/domains/checkmate-os.sx9.json b/domains/checkmate-os.sx9.json index fb3a11032..797ee0401 100644 --- a/domains/checkmate-os.sx9.json +++ b/domains/checkmate-os.sx9.json @@ -7,7 +7,7 @@ "discord": "SX-Spy-Agent#1377", "email": "sx-91@outlook.com" }, - "record": { + "records": { "CNAME": "sx-9.github.io" } } diff --git a/domains/cheeriomark1.json b/domains/cheeriomark1.json index eb3541fae..acfd378cb 100644 --- a/domains/cheeriomark1.json +++ b/domains/cheeriomark1.json @@ -3,7 +3,7 @@ "username": "Cheerio-mark-1", "email": "DevilDesk2+new_git_001@hotmail.com" }, - "record": { + "records": { "CNAME": "cheerio-mark-1.github.io" } } diff --git a/domains/chef.json b/domains/chef.json index a106e812c..2714e060a 100644 --- a/domains/chef.json +++ b/domains/chef.json @@ -5,7 +5,7 @@ "username": "Codechef-SRM-NCR-Chapter", "email": "srmcodechefchapter@gmail.com" }, - "record": { + "records": { "CNAME": "codechef-srm-ncr-chapter.github.io" } } diff --git a/domains/cheftheo.json b/domains/cheftheo.json index bff35005a..87111d55c 100644 --- a/domains/cheftheo.json +++ b/domains/cheftheo.json @@ -5,7 +5,7 @@ "username": "cheftheo", "email": "marascu.theodor@gmail.com" }, - "record": { + "records": { "CNAME": "cheftheo.github.io" } } diff --git a/domains/chegedouglas.json b/domains/chegedouglas.json index 5afdb15dc..8068026b3 100644 --- a/domains/chegedouglas.json +++ b/domains/chegedouglas.json @@ -4,7 +4,7 @@ "email": "lstudiosafrika@gmail.com", "discord": "1239524915112181791" }, - "record": { + "records": { "A": ["13.48.207.48"] } } diff --git a/domains/chenpeng.json b/domains/chenpeng.json index 143d666de..0428f4a57 100644 --- a/domains/chenpeng.json +++ b/domains/chenpeng.json @@ -5,7 +5,7 @@ "username": "PatrickChen928", "email": "cp786156072@gmail.com" }, - "record": { + "records": { "URL": "https://patrickchen928.github.io" } } diff --git a/domains/chepsgames.json b/domains/chepsgames.json index d9d4aff99..5a062b8b0 100644 --- a/domains/chepsgames.json +++ b/domains/chepsgames.json @@ -3,7 +3,7 @@ "username": "ChepsGames", "email": "edu.chepsgames@gmail.com" }, - "record": { + "records": { "CNAME": "chepsgames.github.io" } } diff --git a/domains/chess.amaankazi.json b/domains/chess.amaankazi.json index d1315a8cb..ffe1e4914 100644 --- a/domains/chess.amaankazi.json +++ b/domains/chess.amaankazi.json @@ -5,7 +5,7 @@ "username": "Amaan-Kazi", "email": "amaankazi1793@gmail.com" }, - "record": { + "records": { "CNAME": "chess-amaankazi.pages.dev" } } diff --git a/domains/chess.bob16077.json b/domains/chess.bob16077.json index 79a934701..462b7cc21 100644 --- a/domains/chess.bob16077.json +++ b/domains/chess.bob16077.json @@ -3,7 +3,7 @@ "username": "bob16077", "discord": "bob16077777" }, - "record": { + "records": { "URL": "https://chesscord.com" } } diff --git a/domains/chess.json b/domains/chess.json index ef7957ede..9be88ff5e 100644 --- a/domains/chess.json +++ b/domains/chess.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KrnZmq6AQ1Fb-hWJ1KW25-1f9hLJOGfJHwhuv6fDfLIV6k8gkNUmsv64B5tOdmFLJVN2zzzur6tAqjG7zcYLRGBHGi0-UDOe5V2UBWx7D4k4kjFvX8DrIRSGEKhqwM_vkPKlorR-xgACJ9LMj4ksJIVO8og4KQjiS6jIG6_6C6L5d9ny23xWh8E2jdZKSNpD3dRwUxe58obflq6OX2s8M9q7aWoHDQ0R7Bj6eSkCyastfV6W1L3cPyGB98Ve8Gw9pf9yjUhJGqo2IzMJP5Kov7LZ4mlnb92NjftFDAF9Yl02ufN-k6WvM93bUIJI0kC3Nydo8P1snyEJQthc7aUBOA.bFv4ltUis5UM4V3W1f6FTg.2BMvIE8X5_E63_Z_HvPLvF0DOMH0DbVn3_OnxcQCdTCW93cmSbvF4o_BcRU1eMZNCpwvVV-_XYW7BBnOOL3Ygj2i-gbW6F_IpqFOq_5D1dbWY4ZxLYrgZd2oeH1X5ec8.okGeeD7rEQvR-ZUbaBaBeA" + "discord": "1167825360151380032" }, - "record": { - "A": ["216.24.57.1"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/chethan.json b/domains/chethan.json index b8d0cdd78..669e7ac1f 100644 --- a/domains/chethan.json +++ b/domains/chethan.json @@ -7,7 +7,7 @@ "twitter": "DenRaaz77190", "discord": "raaz6" }, - "record": { + "records": { "CNAME": "chethanyadav456.github.io" } } diff --git a/domains/chewieleaf.json b/domains/chewieleaf.json deleted file mode 100644 index 699471137..000000000 --- a/domains/chewieleaf.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "chewieleaf", - "email": "cchirrpy@outlook.com", - "discord": "898255050592366642" - }, - "record": { - "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512" - } -} diff --git a/domains/chez1s.json b/domains/chez1s.json index b60527bfe..77de33605 100644 --- a/domains/chez1s.json +++ b/domains/chez1s.json @@ -1,11 +1,10 @@ { "description": "chez1s's is-a-dev domain", - "repo": "https://github.com/TRIBUI106", "owner": { "username": "TRIBUI106", "discord": "1250225950268850312" }, - "record": { + "records": { "URL": "https://yeume-enterprise.edu.vn" } } diff --git a/domains/chgeo.json b/domains/chgeo.json index e1f8a997d..622cdb1ba 100644 --- a/domains/chgeo.json +++ b/domains/chgeo.json @@ -3,7 +3,7 @@ "username": "chgeo", "email": "christian.georgi@sap.com" }, - "record": { + "records": { "URL": "https://github.com/chgeo" } } diff --git a/domains/chiko.json b/domains/chiko.json index 601618b48..212e5ebe2 100644 --- a/domains/chiko.json +++ b/domains/chiko.json @@ -3,7 +3,7 @@ "username": "chikoiko", "email": "itsmezark05@gmail.com" }, - "record": { + "records": { "CNAME": "chikoiko.github.io" } } diff --git a/domains/chikoiko.json b/domains/chikoiko.json index 3cf6c8c5e..bd182e90d 100644 --- a/domains/chikoiko.json +++ b/domains/chikoiko.json @@ -5,7 +5,7 @@ "username": "chikoiko", "email": "itsmezark05@gmail.com" }, - "record": { + "records": { "CNAME": "chikoiko.github.io" } } diff --git a/domains/chino.json b/domains/chino.json index 6cc8e9558..dd6846338 100644 --- a/domains/chino.json +++ b/domains/chino.json @@ -7,7 +7,7 @@ "twitter": "autumnvnchino", "discord": "autumnvn" }, - "record": { + "records": { "NS": ["lina.ns.cloudflare.com", "miles.ns.cloudflare.com"] } } diff --git a/domains/chintan-prajapati.json b/domains/chintan-prajapati.json index 66b26b14a..d831e5b4e 100644 --- a/domains/chintan-prajapati.json +++ b/domains/chintan-prajapati.json @@ -4,7 +4,7 @@ "owner": { "username": "chintan-prajapati" }, - "record": { + "records": { "CNAME": "chintan-prajapati.github.io" } } diff --git a/domains/chip-1925.json b/domains/chip-1925.json index b382fe950..1b31de77f 100644 --- a/domains/chip-1925.json +++ b/domains/chip-1925.json @@ -3,7 +3,7 @@ "username": "The-Awesome-0038", "email": "adityapundir275@gmail.com" }, - "record": { + "records": { "URL": "https://theawesome.api.stdlib.com/discord-bot-dashboard@dev" } } diff --git a/domains/chirag-adhvaryu.json b/domains/chirag-adhvaryu.json index ebff0ef7d..731767275 100644 --- a/domains/chirag-adhvaryu.json +++ b/domains/chirag-adhvaryu.json @@ -4,7 +4,7 @@ "owner": { "username": "Chirag-Adhvaryu" }, - "record": { + "records": { "CNAME": "chirag-adhvaryu.github.io" } } diff --git a/domains/chirag-parikh.json b/domains/chirag-parikh.json index bafdee025..4e89e118d 100644 --- a/domains/chirag-parikh.json +++ b/domains/chirag-parikh.json @@ -4,7 +4,7 @@ "owner": { "username": "chirag-parikh" }, - "record": { + "records": { "CNAME": "chirag-parikh.github.io" } } diff --git a/domains/chirag.json b/domains/chirag.json index cc357d28e..b6e0cb2af 100644 --- a/domains/chirag.json +++ b/domains/chirag.json @@ -3,7 +3,7 @@ "username": "ChiragAgg5k", "email": "chiragaggarwal5k@gmail.com" }, - "record": { + "records": { "CNAME": "profile-website-5qr.pages.dev" } } diff --git a/domains/chiragnahata.json b/domains/chiragnahata.json index 726befd50..4dcdef8bf 100644 --- a/domains/chiragnahata.json +++ b/domains/chiragnahata.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/chiranth.json b/domains/chiranth.json index 4df04a6e9..ee794869d 100644 --- a/domains/chiranth.json +++ b/domains/chiranth.json @@ -3,7 +3,7 @@ "username": "chiranthkothari", "email": "chiranthkothari96@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/chiranthkothari/chiranthkothari" } } diff --git a/domains/chirathtimodh.json b/domains/chirathtimodh.json index f9405f063..22373d8d9 100644 --- a/domains/chirathtimodh.json +++ b/domains/chirathtimodh.json @@ -3,7 +3,7 @@ "username": "duesacrifice69", "email": "chirathtimodh@gmail.com" }, - "record": { + "records": { "CNAME": "duesacrifice69.github.io" } } diff --git a/domains/chirayu.json b/domains/chirayu.json index 1454fcb13..4f8e05df0 100644 --- a/domains/chirayu.json +++ b/domains/chirayu.json @@ -1,10 +1,9 @@ { "owner": { "username": "ChirayuSahu", - "discord": "711526476704382979", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ihTUVQWNcGA53XifmYjS2dWn74UkUXwyANV5aLOTElsbPImLsum-sVjGak-RGlg5MRVwE_wdnDK6q7UMlD3MEcef7yJkzj3H8Zt-ozXRzPRmokBunfow8QGE66jrazJAUenesWiRkgdp15kkjBUN4Nu0lJgSJ7YStt-DYKZ8vsCiVsrrTAr5eZuWoRSc8sUwYflk-WpbVTY0tjWH3hpmwU1k3wK-I74WSK_O6KJXW392aZkADaH20jcphgoiLnodigbPbyrNK-p5JE7Q2OQdErY7qhiZq2wzGHQpk1PbrUeEnC3SM8AiqeMJ-qAMfJw99Z7gZRHKwjGFPpr86j9m9A.yZ2fu6EhzkAsep2zdwVNIA._-c1mD8h_SW2n48Pdd5Tv8O8MU7Mtqh7m01TFYtQV-2Fj75YzkU3snyDvcb5-qEI1XpBQOzS0IIPrmIwYFwtU3_YuFwlqzr7by2L0Offt-s.jBI6OG1xvtErnYeO6Ms5rA" + "discord": "711526476704382979" }, - "record": { + "records": { "CNAME": "chirayusahu.is-a.dev" } } diff --git a/domains/chirayusahu.json b/domains/chirayusahu.json index 5346e18e2..d827936d6 100644 --- a/domains/chirayusahu.json +++ b/domains/chirayusahu.json @@ -1,10 +1,10 @@ { "owner": { "username": "ChirayuSahu", - "discord": "711526476704382979", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.s4iQE3i8vgf-LeRAC1vfr6khK-U9zKiobIBW-dRV1qFhuTR4QsZvvGO2qt5Ihg938qAS934UvgF0uruo0RBSNjpfV8aywmZee65Z8hUZbWlaM7gFyqSkrKuMUxRr0gH4ckeaumeL5pJqO7cR3OY5qH_nRhcYQTzunH35cI2onTH6rQoUq179ShgCg2ATb5Mz8M2XmVEikcTWhLl5XDz1Bf04_bGsTmcXaSs7lvehDkFZrx2L4V3a-jEkN77UUBYW-InnOidSi7uz8ZLmQG-2SquTKXpyeMPP9CIOHGcWIhqoe7okS507sqZxHdUpsRCTbB28Elw8vO_NAa4dnpwIxg.NpK2mdZu15IgnmzjzHa_KQ.huIUnyAoYbMBAUB0ary5kvKzb1i0z-M20Dvqoo3Xx1cXfISzxHLdrCJbdfbmJvnso5OvGkj0kbR5UPD1JywGGm6nCxdJ-dS5Ehr8d2GH3Ew.-lS9paJMoym4DCSRG5m1MA" + "discord": "711526476704382979" }, - "record": { + "records": { "A": ["5.9.123.217"] - } + }, + "proxied": true } diff --git a/domains/chirxg.json b/domains/chirxg.json new file mode 100644 index 000000000..117f45907 --- /dev/null +++ b/domains/chirxg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "definitelynotchirag", + "email": "chiragdave1888@gmail.com", + "discord": "hellchirag" + }, + "records": { + "CNAME": "chirxg.vercel.app" + } +} diff --git a/domains/chloe.json b/domains/chloe.json index 2cf26df9a..34faf93ee 100644 --- a/domains/chloe.json +++ b/domains/chloe.json @@ -1,11 +1,10 @@ { "description": "Chloe's is-a-dev domain", - "repo": "https://github.com/chloeashlyn", "owner": { "username": "chloeashlyn", "discord": "chloeashlyn#7272" }, - "record": { + "records": { "URL": "https://chloeashlyn.vercel.app" } } diff --git a/domains/choukseaaryan.json b/domains/choukseaaryan.json index 1d804b4f0..75f2e6a1e 100644 --- a/domains/choukseaaryan.json +++ b/domains/choukseaaryan.json @@ -3,7 +3,7 @@ "username": "choukseaaryan", "email": "aaryan2chouksey@gmail.com" }, - "record": { + "records": { "CNAME": "choukseaaryan.github.io" } } diff --git a/domains/chrinsieboy.json b/domains/chrinsieboy.json index 794d2b9fa..15c1f8906 100644 --- a/domains/chrinsieboy.json +++ b/domains/chrinsieboy.json @@ -3,7 +3,7 @@ "username": "Chrinsieboy", "email": "github@chris.friemann.nl" }, - "record": { + "records": { "CNAME": "chrisfriemann.nl" } } diff --git a/domains/chris-nguyen.json b/domains/chris-nguyen.json new file mode 100644 index 000000000..63f5c2f72 --- /dev/null +++ b/domains/chris-nguyen.json @@ -0,0 +1,10 @@ +{ + "description": "chrisnguyen.is-a.dev : This is my personal website", + "owner": { + "username": "chris-thegamechanger", + "email": "chrislumiere09@gmail.com" + }, + "records": { + "URL": "https://chris-nguyen.co.uk" + } +} diff --git a/domains/chris.json b/domains/chris.json index c4a4c19fa..64d96c5cf 100644 --- a/domains/chris.json +++ b/domains/chris.json @@ -1,11 +1,10 @@ { "description": "Chris' Site", - "repo": "https://github.com/Sp4nd3x", "owner": { "username": "Sp4nd3x", "email": "chrisisadev@gmail.com" }, - "record": { + "records": { "CNAME": "sp4nd3x.github.io" } } diff --git a/domains/chrisbase12.json b/domains/chrisbase12.json index d0f8cff65..79cb41bf2 100644 --- a/domains/chrisbase12.json +++ b/domains/chrisbase12.json @@ -2,7 +2,7 @@ "owner": { "username": "OverCharred" }, - "record": { + "records": { "CNAME": "chris-base12-portfolio.vercel.app" } } diff --git a/domains/chriscent.json b/domains/chriscent.json new file mode 100644 index 000000000..d28de21e1 --- /dev/null +++ b/domains/chriscent.json @@ -0,0 +1,11 @@ +{ + "description": "A practice portfolio for web design challenges.", + "repo": "https://github.com/KishonShrill/website-portfolio", + "owner": { + "username": "KishonShrill", + "email": "crystalbluew@gmail.com" + }, + "records": { + "CNAME": "chriscent.vercel.app" + } +} diff --git a/domains/chrischenny.json b/domains/chrischenny.json index 54b11fabc..0c9835384 100644 --- a/domains/chrischenny.json +++ b/domains/chrischenny.json @@ -3,7 +3,7 @@ "username": "Chrischenny0", "email": "chris_chenoweth1@baylor.edu" }, - "record": { + "records": { "CNAME": "alamohouse.duckdns.org" } } diff --git a/domains/chriscoding.json b/domains/chriscoding.json index bb7f3b940..eb5eee0fa 100644 --- a/domains/chriscoding.json +++ b/domains/chriscoding.json @@ -4,7 +4,7 @@ "email": "githubuserlol333@gmail.com", "discord": "735578614476570726" }, - "record": { + "records": { "CNAME": "bestgithubuser1.github.io" } } diff --git a/domains/chromesec.json b/domains/chromesec.json index 5554d73f5..d01118b50 100644 --- a/domains/chromesec.json +++ b/domains/chromesec.json @@ -1,12 +1,11 @@ { - "description": "Website for ChromeSEC a guide for admins to secure their chromeOS devices", - "repo": "https://github.com/CaenJones/ChromeSEC", - "owner": { - "username": "CaenJones", - "email": "cj@caenjones.com", - "twitter": "" - }, - "record": { - "URL": "https://caenjones.is-a.dev/ChromeSEC" - } -} + "description": "Website for ChromeSEC a guide for admins to secure their chromeOS devices", + "repo": "https://github.com/CaenJones/ChromeSEC", + "owner": { + "username": "CaenJones", + "email": "cj@caenjones.com" + }, + "records": { + "URL": "https://caenjones.is-a.dev/ChromeSEC" + } +} diff --git a/domains/chrystom.json b/domains/chrystom.json index 0875c410b..1fccece9a 100644 --- a/domains/chrystom.json +++ b/domains/chrystom.json @@ -3,7 +3,7 @@ "username": "chrystom", "email": "chrystomt@gmail.com" }, - "record": { + "records": { "CNAME": "chrystom.github.io" } } diff --git a/domains/chubol.json b/domains/chubol.json index 902c76331..0b6a1c007 100644 --- a/domains/chubol.json +++ b/domains/chubol.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "chubol", - "email": "husks@tuta.io" - }, - "record": { - "CNAME": "chubol.github.io" - } + "owner": { + "username": "chubol", + "email": "husks@tuta.io" + }, + "records": { + "CNAME": "chubol.github.io" + } } diff --git a/domains/chucha.json b/domains/chucha.json index 5857fb718..669305910 100644 --- a/domains/chucha.json +++ b/domains/chucha.json @@ -3,7 +3,7 @@ "username": "Sly-Little-Fox", "email": "paranormal.studio123@gmail.com" }, - "record": { + "records": { "CNAME": "sly-little-fox.github.io" } } diff --git a/domains/chutte.json b/domains/chutte.json index 972871ac6..cee54d002 100644 --- a/domains/chutte.json +++ b/domains/chutte.json @@ -3,7 +3,7 @@ "username": "supunsathsara", "email": "savindusupunsathsara@gmail.com" }, - "record": { + "records": { "CNAME": "next-supun.pages.dev" } } diff --git a/domains/chuyentinorz.json b/domains/chuyentinorz.json index 1f03fe59e..186615c10 100644 --- a/domains/chuyentinorz.json +++ b/domains/chuyentinorz.json @@ -1,18 +1,13 @@ { - "description": "This is the landing page of ChuyenTinORZ", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "A": [ - "216.198.79.65" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "This is the landing page of ChuyenTinORZ", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "records": { + "A": ["216.198.79.65"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/ciao287.json b/domains/ciao287.json index af3721626..50b86cfe2 100644 --- a/domains/ciao287.json +++ b/domains/ciao287.json @@ -3,7 +3,7 @@ "username": "Ciao287", "discord": "687333016921440317" }, - "record": { - "CNAME": "ciao287.github.io" + "records": { + "A": ["144.91.115.195"] } } diff --git a/domains/ciaobot.json b/domains/ciaobot.json index 5d3df2331..1e00ca66a 100644 --- a/domains/ciaobot.json +++ b/domains/ciaobot.json @@ -3,12 +3,8 @@ "username": "Ciao287", "discord": "687333016921440317" }, - "record": { + "records": { "A": ["144.91.115.195"], - "MX": ["mail.ciaohost.tech"], - "TXT": [ - "v=spf1 mx a -all", - "google-site-verification=ESHkpD4wk4-a2cqONn73cRaELmis2IzdBRB3Fw-t1Dw" - ] + "TXT": ["google-site-verification=ESHkpD4wk4-a2cqONn73cRaELmis2IzdBRB3Fw-t1Dw"] } } diff --git a/domains/cibucristi.json b/domains/cibucristi.json index cdab52814..336b21887 100644 --- a/domains/cibucristi.json +++ b/domains/cibucristi.json @@ -4,7 +4,7 @@ "email": "cibucristi1@gmail.com", "discord": "773576280150900749" }, - "record": { + "records": { "CNAME": "cibucristi-dev.pages.dev" } } diff --git a/domains/cihan.json b/domains/cihan.json new file mode 100644 index 000000000..dadab26f4 --- /dev/null +++ b/domains/cihan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cihanyakar", + "email": "cihanyakar@gmail.com" + }, + "records": { + "URL": "https://www.cihanyakar.com" + } +} diff --git a/domains/cindy.json b/domains/cindy.json index 2acc6ead5..a6b7b86df 100644 --- a/domains/cindy.json +++ b/domains/cindy.json @@ -5,7 +5,7 @@ "username": "cindynatorella", "email": "cindy.e.roullet@gmail.com" }, - "record": { + "records": { "CNAME": "cindynatorella.github.io" } } diff --git a/domains/cinnamonshrine.json b/domains/cinnamonshrine.json index e0d5d19ae..e7748e0f9 100644 --- a/domains/cinnamonshrine.json +++ b/domains/cinnamonshrine.json @@ -6,7 +6,7 @@ "email": "marifbillah524@gmail.com", "twitter": "CinnamonShrine" }, - "record": { + "records": { "CNAME": "cinnamonshrine.github.io" } } diff --git a/domains/circular.json b/domains/circular.json index 2f6f67f03..857e7acd3 100644 --- a/domains/circular.json +++ b/domains/circular.json @@ -3,7 +3,7 @@ "username": "circularsprojects", "email": "levi97646@gmail.com" }, - "record": { + "records": { "URL": "https://circulars.dev" } } diff --git a/domains/cirkutry.json b/domains/cirkutry.json index ec4a4bfac..68d793a6c 100644 --- a/domains/cirkutry.json +++ b/domains/cirkutry.json @@ -5,7 +5,7 @@ "username": "Cirkutry", "discord": "kre0lidge" }, - "record": { + "records": { "CNAME": "cirkutry.github.io" } } diff --git a/domains/cirno.json b/domains/cirno.json new file mode 100644 index 000000000..78c1b0b2c --- /dev/null +++ b/domains/cirno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "orangci", + "discord": "orangc" + }, + "records": { + "URL": "https://orangc.net" + } +} diff --git a/domains/civic.json b/domains/civic.json index bf5a61ed8..70e00f9b7 100644 --- a/domains/civic.json +++ b/domains/civic.json @@ -3,7 +3,7 @@ "username": "civic1007", "discord": "1258033419443503124" }, - "record": { + "records": { "CNAME": "civic1007.pages.dev" } } diff --git a/domains/ck.json b/domains/ck.json index 814ca4948..032f78f0b 100644 --- a/domains/ck.json +++ b/domains/ck.json @@ -5,7 +5,7 @@ "email": "ctre@users.sourceforge.net", "twitter": "preminster" }, - "record": { + "records": { "CNAME": "plu5.github.io" } } diff --git a/domains/nepnep.imm0nv1nhtv.json b/domains/clarenisme.json similarity index 57% rename from domains/nepnep.imm0nv1nhtv.json rename to domains/clarenisme.json index 2bae8b5a4..83144dacb 100644 --- a/domains/nepnep.imm0nv1nhtv.json +++ b/domains/clarenisme.json @@ -1,9 +1,9 @@ { "owner": { - "username": "imm0nv1nhtv", - "email": "windows10phamvinh+github@gmail.com" + "username": "razelleclaren", + "email": "gracela.claren1@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/classlink.json b/domains/classlink.json index 36983c952..a22ae7307 100644 --- a/domains/classlink.json +++ b/domains/classlink.json @@ -6,7 +6,7 @@ "email": "tres3mincraft@gmail.com", "discord": "536351962820640770" }, - "record": { + "records": { "CNAME": "massahex.github.io" } } diff --git a/domains/clay.json b/domains/clay.json index 74d6c34ae..b94a1c3a0 100644 --- a/domains/clay.json +++ b/domains/clay.json @@ -3,7 +3,7 @@ "username": "ClaytonTDM", "email": "claytontdm@gmail.com" }, - "record": { + "records": { "CNAME": "claytontdm.github.io" } } diff --git a/domains/clayza.json b/domains/clayza.json index 5f2975dfe..05b3007e9 100644 --- a/domains/clayza.json +++ b/domains/clayza.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/ClayzaAubert/clayzaaubert.github.io", - "owner": { - "username": "ClayzaAubert", - "email": "clayzasc@gmail.com" - }, - "record": { - "CNAME": "clayzaaubert.github.io" - } + "repo": "https://github.com/ClayzaAubert/clayzaaubert.github.io", + "owner": { + "username": "ClayzaAubert", + "email": "clayzasc@gmail.com" + }, + "records": { + "CNAME": "clayzaaubert.github.io" + } } diff --git a/domains/clerk.juststudio.json b/domains/clerk.juststudio.json index 43b980be0..f54402518 100644 --- a/domains/clerk.juststudio.json +++ b/domains/clerk.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "frontend-api.clerk.services" } } diff --git a/domains/clicker.vamtic.json b/domains/clicker.vamtic.json index e8a928b55..2ce4aa7d9 100644 --- a/domains/clicker.vamtic.json +++ b/domains/clicker.vamtic.json @@ -3,7 +3,7 @@ "username": "vamtic", "email": "vamtic@yahoo.com" }, - "record": { + "records": { "CNAME": "clicker-bao.pages.dev" } } diff --git a/domains/clicpow.json b/domains/clicpow.json index 253d26a07..74a2ad0ab 100644 --- a/domains/clicpow.json +++ b/domains/clicpow.json @@ -3,7 +3,7 @@ "username": "ClicpoW", "email": "clicpowytb@gmail.com" }, - "record": { + "records": { "CNAME": "mlkfkqd.pages.dev" } } diff --git a/domains/client.nziie.json b/domains/client.nziie.json index c4d7d12b2..5c263651c 100644 --- a/domains/client.nziie.json +++ b/domains/client.nziie.json @@ -3,7 +3,7 @@ "username": "Nzii3", "email": "exeyst@gmail.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/clipping.json b/domains/clipping.json index 6fb3d138b..ff4f4d7eb 100644 --- a/domains/clipping.json +++ b/domains/clipping.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "hazelvert" - }, - "record": { - "CNAME": "hazelvert.github.io" - } + "owner": { + "username": "hazelvert" + }, + "records": { + "CNAME": "hazelvert.github.io" + } } diff --git a/domains/cljhs14.json b/domains/cljhs14.json index 76d9105db..a8767002c 100644 --- a/domains/cljhs14.json +++ b/domains/cljhs14.json @@ -3,7 +3,7 @@ "username": "yywbadm", "email": "yyw.981031@gmail.com" }, - "record": { + "records": { "CNAME": "site.namedhosting.com" } } diff --git a/domains/clk._domainkey.juststudio.json b/domains/clk._domainkey.juststudio.json index 3808695c4..56b958055 100644 --- a/domains/clk._domainkey.juststudio.json +++ b/domains/clk._domainkey.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "dkim1.y6sdqd4maii2.clerk.services" } } diff --git a/domains/clk2._domainkey.juststudio.json b/domains/clk2._domainkey.juststudio.json index 2c97f1728..1e5d64d05 100644 --- a/domains/clk2._domainkey.juststudio.json +++ b/domains/clk2._domainkey.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "dkim2.y6sdqd4maii2.clerk.services" } } diff --git a/domains/clkmail.juststudio.json b/domains/clkmail.juststudio.json index 423e8d13a..6aff0f7de 100644 --- a/domains/clkmail.juststudio.json +++ b/domains/clkmail.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "mail.y6sdqd4maii2.clerk.services" } } diff --git a/domains/cloud.json b/domains/cloud.json new file mode 100644 index 000000000..4b4f53be8 --- /dev/null +++ b/domains/cloud.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hmahd", + "email": "akashhasendra2@gmail.com" + }, + "records": { + "CNAME": "portfolio-73z.pages.dev" + }, + "proxied": true +} diff --git a/domains/cloudie.json b/domains/cloudie.json new file mode 100644 index 000000000..70a40beeb --- /dev/null +++ b/domains/cloudie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hirwko", + "discord": "rzt5" + }, + "records": { + "CNAME": "website-5zt-53r.pages.dev" + } +} diff --git a/domains/cloudirector.json b/domains/cloudirector.json index ce3c9697e..9059afa8e 100644 --- a/domains/cloudirector.json +++ b/domains/cloudirector.json @@ -3,7 +3,7 @@ "username": "cloudirector", "email": "cantcloud@gmail.com" }, - "record": { + "records": { "CNAME": "cloudirector.github.io" } } diff --git a/domains/cloudskies.json b/domains/cloudskies.json index e51768729..bcdf0f470 100644 --- a/domains/cloudskies.json +++ b/domains/cloudskies.json @@ -3,7 +3,7 @@ "username": "cloudskies13", "email": "cloudskies@perso.be" }, - "record": { + "records": { "URL": "https://cloudskies13.carrd.co", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/cloudy.json b/domains/cloudy.json index d0651d33d..d55991241 100644 --- a/domains/cloudy.json +++ b/domains/cloudy.json @@ -6,7 +6,7 @@ "email": "cloudzareonsky@gmail.com", "twitter": "cloudysleet" }, - "record": { + "records": { "CNAME": "cloudysleet.github.io" } } diff --git a/domains/cloudy1337.json b/domains/cloudy1337.json index 2c130551d..7f7a354f9 100644 --- a/domains/cloudy1337.json +++ b/domains/cloudy1337.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "OfficialSmojo17", - "email": "smmojo17@gmail.com", - "discord": "mapperdotexe" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "OfficialSmojo17", + "email": "smmojo17@gmail.com", + "discord": "mapperdotexe" + }, + "records": { + "A": ["75.2.60.5"] + } } diff --git a/domains/cloudz.json b/domains/cloudz.json index 54f29cf17..5adc8346b 100644 --- a/domains/cloudz.json +++ b/domains/cloudz.json @@ -5,7 +5,7 @@ "username": "Cloudy408", "email": "gamerscloud408@gmail.com" }, - "record": { + "records": { "CNAME": "cloudy408.github.io" } } diff --git a/domains/clyron.json b/domains/clyron.json index 284409427..e8c23972b 100644 --- a/domains/clyron.json +++ b/domains/clyron.json @@ -5,7 +5,7 @@ "username": "theclyron", "email": "onenonlyclyron@gmail.com" }, - "record": { + "records": { "CNAME": "theclyron.github.io" } } diff --git a/domains/cmd410.json b/domains/cmd410.json index b44a8845b..a90d864d4 100644 --- a/domains/cmd410.json +++ b/domains/cmd410.json @@ -5,7 +5,7 @@ "username": "cmd410", "email": "stresspassing@gmail.com" }, - "record": { + "records": { "CNAME": "cmd410.github.io" } } diff --git a/domains/cnvrs.json b/domains/cnvrs.json index 25c21fef3..9b003da0f 100644 --- a/domains/cnvrs.json +++ b/domains/cnvrs.json @@ -2,7 +2,7 @@ "owner": { "username": "2nvrs" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/co.ligmatv.json b/domains/co.ligmatv.json deleted file mode 100644 index ee5fdc4e8..000000000 --- a/domains/co.ligmatv.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "description": "This sub-subdomain will i use for my Zoho email.", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "MX": [ - "mx.zoho.com", - "mx2.zoho.com", - "mx3.zoho.com" - ], - "TXT": [ - "zoho-verification=zb21447312.zmverify.zoho.com", - "v=spf1 include:zoho.com ~all" - ] - } -} diff --git a/domains/code-vista.json b/domains/code-vista.json new file mode 100644 index 000000000..2afcef4f8 --- /dev/null +++ b/domains/code-vista.json @@ -0,0 +1,12 @@ +{ + "description": "Just a personal website to use with this is-a.dev subdomain", + "repo": "https://github.com/JavaVista/code-vista-site", + "owner": { + "username": "JavaVista", + "discord": "codevista", + "email": "code-vista@outlook.com" + }, + "records": { + "CNAME": "javavista.github.io" + } +} diff --git a/domains/code.aessaputra.json b/domains/code.aessaputra.json new file mode 100644 index 000000000..aa6497703 --- /dev/null +++ b/domains/code.aessaputra.json @@ -0,0 +1,10 @@ +{ + "owner": { + "description": "VS Code Remote Access", + "username": "aessaputra", + "twitter": "pioonrey" + }, + "records": { + "A": ["168.138.171.60"] + } +} diff --git a/domains/code.trung.json b/domains/code.trung.json index b99730c4e..488318c9f 100644 --- a/domains/code.trung.json +++ b/domains/code.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/codecloak.jigar.json b/domains/codecloak.jigar.json index 1b469453d..72bf24f21 100644 --- a/domains/codecloak.jigar.json +++ b/domains/codecloak.jigar.json @@ -3,7 +3,7 @@ "username": "drone911", "email": "jigar1822@gmail.com" }, - "record": { + "records": { "URL": "https://codecloak.onrender.com" } } diff --git a/domains/codefoster.json b/domains/codefoster.json index a21e921c2..55e39bf64 100644 --- a/domains/codefoster.json +++ b/domains/codefoster.json @@ -1,11 +1,10 @@ { "description": "The main for codefoster - a Software Engineer at Microsoft.", - "repo": "https://github.com/codefoster", "owner": { "username": "codefoster", "email": "jeremy.foster@live.com" }, - "record": { + "records": { "URL": "http://codefoster.com" } } diff --git a/domains/codelabworks.json b/domains/codelabworks.json index 09bf2c3d8..95180ac10 100644 --- a/domains/codelabworks.json +++ b/domains/codelabworks.json @@ -1,13 +1,10 @@ { - "repo": "https://github.com/shadowgaming-backup/register", - "owner": { - "email": "shadowgaming-backup@proton.me", - "username": "shadowgaming-backup" - }, - "record": { - "NS": [ - "mina.ns.cloudflare.com", - "harlan.ns.cloudflare.com" - ] - } + "repo": "https://github.com/shadowgaming-backup/register", + "owner": { + "email": "shadowgaming-backup@proton.me", + "username": "shadowgaming-backup" + }, + "records": { + "NS": ["mina.ns.cloudflare.com", "harlan.ns.cloudflare.com"] + } } diff --git a/domains/codeminds.json b/domains/codeminds.json index 91a0a8cc3..3ca2beca9 100644 --- a/domains/codeminds.json +++ b/domains/codeminds.json @@ -3,7 +3,7 @@ "username": "clementhart999", "email": "clementhart999@gmail.com" }, - "record": { + "records": { "CNAME": "clementhart999.github.io" } } diff --git a/domains/coder.json b/domains/coder.json new file mode 100644 index 000000000..9c9537716 --- /dev/null +++ b/domains/coder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "turbomaster95", + "email": "devamidhun.3c.kmbvm@gmail.com" + }, + "records": { + "NS": ["aria.ns.cloudflare.com", "leonard.ns.cloudflare.com"] + } +} diff --git a/domains/coderzen.json b/domains/coderzen.json new file mode 100644 index 000000000..5339baaac --- /dev/null +++ b/domains/coderzen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Realtrickz", + "email": "isamismail8273@gmail.com" + }, + "records": { + "CNAME": "coderzenk-com.vercel.app" + } +} diff --git a/domains/codesoft.json b/domains/codesoft.json new file mode 100644 index 000000000..daf3fdb0f --- /dev/null +++ b/domains/codesoft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "records": { + "CNAME": "portfolio-codesoftgits-projects.vercel.app" + } +} diff --git a/domains/codestantin.json b/domains/codestantin.json index 9c945bfbc..4ad63925e 100644 --- a/domains/codestantin.json +++ b/domains/codestantin.json @@ -3,7 +3,7 @@ "username": "codestantindev", "email": "kontakt@codestantin.de" }, - "record": { + "records": { "A": ["85.202.163.42"] } } diff --git a/domains/codesuthar.json b/domains/codesuthar.json index dde7f4542..39becd0e6 100644 --- a/domains/codesuthar.json +++ b/domains/codesuthar.json @@ -3,10 +3,7 @@ "username": "CodeSuthar", "email": "AdityaSuthar13@outlook.com" }, - "record": { - "NS": [ - "dexter.ns.cloudflare.com", - "fay.ns.cloudflare.com" - ] + "records": { + "NS": ["dexter.ns.cloudflare.com", "fay.ns.cloudflare.com"] } } diff --git a/domains/codesz.json b/domains/codesz.json index a0f3fc6ad..1eb5f6359 100644 --- a/domains/codesz.json +++ b/domains/codesz.json @@ -4,7 +4,7 @@ "email": "codeszsoftware@gmail.com" }, "repo": "https://github.com/codeszsoft/codeszsoft.github.io", - "record": { + "records": { "CNAME": "codeszsoft.github.io" } } diff --git a/domains/codethoma.json b/domains/codethoma.json index 239d3ecbc..3bd46a002 100644 --- a/domains/codethoma.json +++ b/domains/codethoma.json @@ -1,11 +1,10 @@ { "description": "The ThunderDome", - "repo": "https://github.com/codethoma", "owner": { "username": "codethoma", "email": "mrthundergod@gmail.com" }, - "record": { + "records": { "CNAME": "codethoma.github.io" } } diff --git a/domains/codewithgem.json b/domains/codewithgem.json index 9cdee2dc5..72c188356 100644 --- a/domains/codewithgem.json +++ b/domains/codewithgem.json @@ -5,7 +5,7 @@ "username": "gemrey13", "email": "gemreyranola@gmail.com" }, - "record": { + "records": { "CNAME": "gemrey13.github.io" } } diff --git a/domains/codexisme.json b/domains/codexisme.json new file mode 100644 index 000000000..9132f6c03 --- /dev/null +++ b/domains/codexisme.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "codexart-lab", + "email": "atmostechnexa@gmail.com" + }, + "records": { + "CNAME": "codexart-lab.github.io" + } +} diff --git a/domains/codexkun.json b/domains/codexkun.json new file mode 100644 index 000000000..48180cc6c --- /dev/null +++ b/domains/codexkun.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/KunalBishwal/Portfolio_IDE", + "owner": { + "username": "KunalBishwal", + "email": "kunalbishwal2004@gmail.com" + }, + "records": { + "CNAME": "portfolio-ide-zeta.vercel.app" + } +} diff --git a/domains/codixer.json b/domains/codixer.json index 32e5a6356..ef2d1263e 100644 --- a/domains/codixer.json +++ b/domains/codixer.json @@ -3,7 +3,7 @@ "username": "Codixer", "email": "stefano@stefanocoding.me" }, - "record": { + "records": { "CNAME": "stefanocoding.me" } } diff --git a/domains/codwizer.json b/domains/codwizer.json index b509e04f6..c3f1d1fe7 100644 --- a/domains/codwizer.json +++ b/domains/codwizer.json @@ -5,7 +5,7 @@ "username": "codwiz", "email": "devcodwiz@gmail.com" }, - "record": { + "records": { "CNAME": "codwizer.github.io" } } diff --git a/domains/cody.json b/domains/cody.json index 18f0026e1..7f035dbf3 100644 --- a/domains/cody.json +++ b/domains/cody.json @@ -3,7 +3,7 @@ "username": "theinfamouscoder5", "email": "codingamazing224@outlook.com" }, - "record": { - "URL": "https://about-cody.pages.dev/" + "records": { + "CNAME": "hi-im-cody.pages.dev" } } diff --git a/domains/coen.json b/domains/coen.json new file mode 100644 index 000000000..ae50b2c2d --- /dev/null +++ b/domains/coen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cogrow4", + "email": "cogrow@duck.com" + }, + "records": { + "URL": "https://github.com/cogrow4" + } +} diff --git a/domains/cohinem.json b/domains/cohinem.json index f0bbcd05a..76b110e14 100644 --- a/domains/cohinem.json +++ b/domains/cohinem.json @@ -3,7 +3,7 @@ "username": "Cohinem", "email": "amonmonocle@gmail.com" }, - "record": { + "records": { "A": ["149.81.156.117"] } } diff --git a/domains/cole.json b/domains/cole.json index f5cc0f02c..894273eec 100644 --- a/domains/cole.json +++ b/domains/cole.json @@ -5,7 +5,7 @@ "username": "cole-wilson", "email": "support@colewilson.xyz" }, - "record": { + "records": { "URL": "https://colewilson.xyz" } } diff --git a/domains/colin.json b/domains/colin.json new file mode 100644 index 000000000..5d7cc0af4 --- /dev/null +++ b/domains/colin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ColinLeDev", + "email": "spam+isadev@col1n.fr" + }, + "records": { + "CNAME": "proxy.col1n.fr" + } +} diff --git a/domains/colix.json b/domains/colix.json deleted file mode 100644 index e9f5291a9..000000000 --- a/domains/colix.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "YeahhColix", - "email": "yeahhcolix@gmail.com" - }, - "record": { - "CNAME": "colix.pages.dev" - } -} diff --git a/domains/collin.json b/domains/collin.json index ec26e7f44..f35885629 100644 --- a/domains/collin.json +++ b/domains/collin.json @@ -3,7 +3,7 @@ "username": "Hanyaku-Chan", "email": "collinbuchkamer@gmail.com" }, - "record": { + "records": { "URL": "https://hanyaku.glitch.me" } } diff --git a/domains/comicly.json b/domains/comicly.json index 59ae8ce6b..4e7085831 100644 --- a/domains/comicly.json +++ b/domains/comicly.json @@ -3,7 +3,7 @@ "username": "Comicly69", "email": "snowyoumc@gmail.com" }, - "record": { + "records": { "CNAME": "comicly69.github.io" } } diff --git a/domains/completesoft.json b/domains/completesoft.json index 68844226e..411d3a26f 100644 --- a/domains/completesoft.json +++ b/domains/completesoft.json @@ -3,7 +3,7 @@ "username": "simersim", "email": "simer@f1.mk.ua" }, - "record": { + "records": { "A": ["78.46.77.92"], "MX": ["mx.comp.in.ua"], "TXT": "v=spf1 mx a:mx.comp.in.ua -all" diff --git a/domains/computerblade.json b/domains/computerblade.json index 20aab1e9e..da5802c70 100644 --- a/domains/computerblade.json +++ b/domains/computerblade.json @@ -1,8 +1,8 @@ -{ - "owner": { - "username": "computerblade-official" - }, - "record": { - "CNAME": "computerblade.vercel.app" - } -} +{ + "owner": { + "username": "computerblade-official" + }, + "records": { + "CNAME": "computerblade.vercel.app" + } +} diff --git a/domains/congnv.json b/domains/congnv.json index ff3ebedc8..9977fb602 100644 --- a/domains/congnv.json +++ b/domains/congnv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "congnv0330", - "email": "congnv3030@gmail.com" - }, - "record": { - "CNAME": "congnv0330.github.io" - } + "owner": { + "username": "congnv0330", + "email": "congnv3030@gmail.com" + }, + "records": { + "CNAME": "congnv0330.github.io" + } } diff --git a/domains/connie.json b/domains/connie.json index afbdb4e12..0f2032620 100644 --- a/domains/connie.json +++ b/domains/connie.json @@ -1,10 +1,9 @@ { "owner": { "username": "gvalue-04", - "discord": "1229820339840618506", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i8mk_73yrOluApbS_s2gO9pL_gIoLP-xv6lRw0KVlvP0QFudw8aIMx_xVKJ8RSXfvMZueFD9VQ3Ma_pASHMNKGY0tIEsqVJo_d_Lzi-FD5kslV-AscUDbl7LPDYza5SriCsUWaXkMXgx_LTpjxH_mJa8UT9Tg282EGRW7OdJySGWslUIbftYw0bZrIGH-kIKyG1nCpkgsXZKOsoz2r5jBO2la1_smRGzStXrbiGGAp8anJMI5q9BejlUFoqmlqXpIn6NPacUJSwXQ2pja8SQgwvWWx2KIMcgDUIrrnb1g1c2Hd3S9I4pgLsQmbXOMmn4wu8mVlKCBqx159PomdX6HA.ppTpXGvEiJ1slqJbtbzGww.Jg6LN8wrDnF-nRPDT_rUFSimdAmSWusgoOoMs45xOy-05VD74i6e9mcXzIS7b8YJzagA9WJuPYWVO5wPxKbdITsdZii-5Vqu2jeplRqQlh4.ZK4ZjA8iuHTreCAkWxQNLg" + "discord": "1229820339840618506" }, - "record": { + "records": { "A": ["198.91.81.13"] } } diff --git a/domains/connor.json b/domains/connor.json index 2fb2b310e..4113f9b04 100644 --- a/domains/connor.json +++ b/domains/connor.json @@ -3,9 +3,9 @@ "repo": "https://github.com/ConnorDoesDev/connordoesdev.github.io", "owner": { "username": "ConnorDoesDev", - "email": "connor@cstudios.gay" + "email": "connor@dmc.chat" }, - "record": { - "CNAME": "connordoesdev.github.io" + "records": { + "A": ["173.249.45.163"] } } diff --git a/domains/conorsheehan1.json b/domains/conorsheehan1.json index 531453482..f5d1e809d 100644 --- a/domains/conorsheehan1.json +++ b/domains/conorsheehan1.json @@ -5,7 +5,7 @@ "username": "ConorSheehan1", "email": "conor.sheehan.dev@gmail.com" }, - "record": { + "records": { "CNAME": "conorsheehan1.github.io" } } diff --git a/domains/contact.trung.json b/domains/contact.trung.json index 5fc7e4495..86c4afc03 100644 --- a/domains/contact.trung.json +++ b/domains/contact.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "CNAME": "contact-form-9c3.pages.dev" } } diff --git a/domains/coolcodersj.json b/domains/coolcodersj.json index 0d57a28f7..7fed757d3 100644 --- a/domains/coolcodersj.json +++ b/domains/coolcodersj.json @@ -4,7 +4,7 @@ "email": "CoolCoderSJ@gmail.com" }, "description": "Portfolio", - "record": { + "records": { "CNAME": "coolcodersj.github.io" } } diff --git a/domains/coolify-app.json b/domains/coolify-app.json new file mode 100644 index 000000000..7a4a53ef0 --- /dev/null +++ b/domains/coolify-app.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "umarsidiki", + "email": "siddiquiumar0007@gmail.com" + }, + "records": { + "A": ["89.168.88.28"] + }, + "proxied": true +} diff --git a/domains/coopw.json b/domains/coopw.json index be6e24f25..236a4cd4e 100644 --- a/domains/coopw.json +++ b/domains/coopw.json @@ -3,7 +3,7 @@ "username": "coopw1", "email": "urchin139@altmail.kr" }, - "record": { + "records": { "CNAME": "coopw.pages.dev" } } diff --git a/domains/copysland.json b/domains/copysland.json index 05ee3602f..27ca9c183 100644 --- a/domains/copysland.json +++ b/domains/copysland.json @@ -3,7 +3,7 @@ "username": "Hillzacky", "email": "Hilm4nsyah@gmail.com" }, - "record": { + "records": { "CNAME": "copysland.github.io" } } diff --git a/domains/core.json b/domains/core.json index bd101c967..016b242b3 100644 --- a/domains/core.json +++ b/domains/core.json @@ -1,11 +1,10 @@ { "description": "My information.", - "repo": "https://github.com/Aidenhtg", "owner": { "username": "Aidenhtg", "email": "aidenhiseh.m.l@gmail.com" }, - "record": { + "records": { "CNAME": "b3e47680.corrupted.pages.dev" } } diff --git a/domains/corentin-sotoca.json b/domains/corentin-sotoca.json index 553357484..45d61838c 100644 --- a/domains/corentin-sotoca.json +++ b/domains/corentin-sotoca.json @@ -4,7 +4,7 @@ "username": "CorentinSotoca", "email": "corentin.sotoca@gmail.com" }, - "record": { + "records": { "A": ["62.171.174.120"] } } diff --git a/domains/corey.json b/domains/corey.json index 724e70cc7..13d8b7d46 100644 --- a/domains/corey.json +++ b/domains/corey.json @@ -3,7 +3,7 @@ "username": "cjsewell", "email": "corey@sewell.net.nz" }, - "record": { + "records": { "CNAME": "sewell.net.nz" } } diff --git a/domains/corruptedarc.json b/domains/corruptedarc.json index 56c455f37..154799a00 100644 --- a/domains/corruptedarc.json +++ b/domains/corruptedarc.json @@ -1,10 +1,9 @@ { "owner": { "username": "Ishaan1313", - "discord": "692993163333337139", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nz3C6PVPANIFqr0_iY3MkvN3ctls-oCC6bwZUWbYQyi-tlj-_XY3bSjnQmJFprlolUd67Xhc8QAQRj-MNtoy78YwftYo9lppMIBK2OQsYL0RASN0cr_AX3QbOEtXlZQqg4H8D_Q6PnAIKDlEzCCbwijDMvaFRAGv6VcQfCHBEGW1Ie88U5UebjkjeCtQM1eX2ynyDmHnE7gjRmf3SwqP4cBEuSpPTkMmVUEPGCfo4k6yyaDITx74UA8dkRJrMwQO_htOdM2RVPx2jrwpgMVF2ImZ9U0KEZ_39WKwb7ViMqMltjJr6odL7IKYjRKSo7O3DrYwq54WR4VeH6bS0MRocg.XYWpDfIUROkY9Oe7e8c0VQ.RUTLljeHNV84W9s1iNRbWlA0AL2gjhQU06VKfbnbztGXF62UVHotnOWmDpBaZmEF-2skAN3IeZOGiB9VfS2UMSDhhQ4MAL1u_k7ZgZn5HNyNkxjIlVrviYM8p3Iz4p8n.PeWN0VyoWuMo5O00qWpeTw" + "discord": "692993163333337139" }, - "record": { + "records": { "CNAME": "corruptedarc.netlify.app" } } diff --git a/domains/cota.json b/domains/cota.json new file mode 100644 index 000000000..41e7a2ee4 --- /dev/null +++ b/domains/cota.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "zer0uno" + }, + "records": { + "URL": "https://www.cotanto.it" + } +} diff --git a/domains/count.json b/domains/count.json index 3f117ee01..94b66105a 100644 --- a/domains/count.json +++ b/domains/count.json @@ -1,11 +1,9 @@ { "owner": { "username": "theveryheavy", - "email": "", - "discord": "1266113644643614803", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i4iZGukPgos1-y71KygQ_1d4ZPvnuuHgs8csldNT2FxY569U2isi4aCp5AheSznzqXWmPGTo38NmaFn1MelIVOzeFxTz8BHee9bKBcOQ06oxhKLavCiCykNWCjKyfYWHZre251Iv-zsnUgwO0OUbEjToo9PB6YRJ2LkOe1t5ZASxeMeA7QJziuVU5Cv7GWUbg-pZuWODrV4DTW8H6MdRzKFLY4WpxY5jUlnVsWiK6kZG_Wu2z1trzYplfN9T2lN1K1mNIXYgG_CMqNG1jXPQysoKqkhxjr4ItzFVdpAVso0LTmyhYg92ZQatP2SeD5gqZVVxqUKAj7lF6szfnttQbA.uxd1RFhSCU6cdViuiUODvg.NmpM1UKZ5CQ0qoVMplEzRW6yDCp1HsCQVXBQyCTZ3rvaCdPHuzKGnf3IQwMi801cx27D0o8wCiaF0J77whNrnkcMI9VBhajfhc8BrntWu1E.i05R_R9RRIO7RtW-elXkzA" + "discord": "1266113644643614803" }, - "record": { + "records": { "CNAME": "theveryheavy.github.io" } } diff --git a/domains/cozymy.json b/domains/cozymy.json index 9d227224a..ed2b83879 100644 --- a/domains/cozymy.json +++ b/domains/cozymy.json @@ -6,7 +6,7 @@ "email": "kunalkundrra@gmail.com", "twitter": "kunalkundrra" }, - "record": { + "records": { "CNAME": "cozymy.github.io" } } diff --git a/domains/cr0nus.json b/domains/cr0nus.json index b895a86bc..00cb739e3 100644 --- a/domains/cr0nus.json +++ b/domains/cr0nus.json @@ -1,12 +1,11 @@ { "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": { + "records": { "CNAME": "umgbhalla.github.io" } } diff --git a/domains/cr1ket.json b/domains/cr1ket.json index 5127db935..5a95934da 100644 --- a/domains/cr1ket.json +++ b/domains/cr1ket.json @@ -6,7 +6,7 @@ "email": "NoahMK21100@gmail.com", "twitter": "noahmk17" }, - "record": { + "records": { "CNAME": "noahmk21100.github.io" } } diff --git a/domains/crafting.json b/domains/crafting.json new file mode 100644 index 000000000..76ddf5d64 --- /dev/null +++ b/domains/crafting.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meredyk", + "email": "gustavo@meredyk.com.br" + }, + "records": { + "URL": "https://www.crafting.com.br/" + } +} diff --git a/domains/crafty.json b/domains/crafty.json index 483f9f231..9ae8a545a 100644 --- a/domains/crafty.json +++ b/domains/crafty.json @@ -3,7 +3,7 @@ "username": "TConnor2003", "email": "CraftyPlayzmcyt@gmail.com" }, - "record": { + "records": { "URL": "https://www.craftyplayz.com/" } } diff --git a/domains/crazo7924.json b/domains/crazo7924.json index 2478c4bf8..fb7de5d73 100644 --- a/domains/crazo7924.json +++ b/domains/crazo7924.json @@ -1,14 +1,10 @@ { "owner": { "username": "crazo7924", - "discord": "466605393309859840", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.EPAp20sGUcuM20K26KYZsDVnufUJ9I-108TJUJVjIM9mb1vi18AHrnxsqlSf9APzx4aJEdPGfnWK2dkBQaS3wBM9FgnBKnVeGQaC-FAjLIWI8eOObReFw8bJIRcOtU10KaftXgSPTHv_6ezYJ61R2BM3DWQc-tOqYlxii7O52UmIgVGg-VFYu-qGtPzPY1KLAfrG3JTfLcP6o-vWcbHe_RAkZpCMS2y2t_qX3B_CpXmxombN81CxtbjNAlHCJI9kurjkH1v03XoAjsG0VhudV1aJcXCnL_jnDZz9J_kHmilivCUGnhi6La46ZEo6RCMD9KGu9jqE60lZYPMWQf3-Xw.R8aRGWxp4ChOZXQ0ZKAqwQ.piH7uRCdmslqxerUYiQjs-k9R9P1lLMeAwLkBfeJh-iCMvHT97basT5Ob6PVrxPaeV-OmnMd4FEvceS3SicofL0LsBOpRfbElmWokDJL6MmfAr-Y3ePhoLImZXKLYaWV.-v_ZfnbqCKYCs5m_EGcHjw" + "discord": "466605393309859840" }, - "record": { - "TXT": [ - "zoho-verification=zb09491787.zmverify.zoho.in", - "v=spf1 include:zoho.in ~all" - ], + "records": { + "TXT": ["zoho-verification=zb09491787.zmverify.zoho.in", "v=spf1 include:zoho.in ~all"], "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"] } } diff --git a/domains/crazymax.json b/domains/crazymax.json index d7219704e..8a1030868 100644 --- a/domains/crazymax.json +++ b/domains/crazymax.json @@ -3,7 +3,7 @@ "username": "Crazy-Max-Blog", "email": "Crazy-Max-2011@yandex.ru" }, - "record": { + "records": { "CNAME": "crazy-max-blog.github.io" } } diff --git a/domains/create.json b/domains/create.json index c54d1dfaa..a2b6522d0 100644 --- a/domains/create.json +++ b/domains/create.json @@ -3,7 +3,7 @@ "username": "VaibhavSys", "email": "vaibhavsys@protonmail.com" }, - "record": { + "records": { "URL": "https://factory.is-a.dev" } } diff --git a/domains/creature.json b/domains/creature.json index e4d0cddbf..eb18c7cfd 100644 --- a/domains/creature.json +++ b/domains/creature.json @@ -6,7 +6,7 @@ "email": "pranay7091@gmail.com", "twitter": "dark_elite_98" }, - "record": { + "records": { "CNAME": "pranay5463.github.io" } } diff --git a/domains/creed.json b/domains/creed.json index c2bad7e1b..33d08725b 100644 --- a/domains/creed.json +++ b/domains/creed.json @@ -3,7 +3,7 @@ "username": "M-creed", "email": "marwankalosha005@gmail.com" }, - "record": { + "records": { "CNAME": "m-creed.github.io" } } diff --git a/domains/creeperita104.json b/domains/creeperita104.json index 1af8f40d5..56a355d96 100644 --- a/domains/creeperita104.json +++ b/domains/creeperita104.json @@ -3,7 +3,7 @@ "username": "creeperita09", "email": "creeperita.09@gmail.com" }, - "record": { - "NS":["kyrie.ns.cloudflare.com","vida.ns.cloudflare.com"] - } + "records": { + "NS": ["kyrie.ns.cloudflare.com", "vida.ns.cloudflare.com"] + } } diff --git a/domains/creepso.json b/domains/creepso.json index 7ece98b5d..fba285c40 100644 --- a/domains/creepso.json +++ b/domains/creepso.json @@ -5,7 +5,7 @@ "username": "creepsooff", "email": "eternel_universite0s@icloud.com" }, - "record": { + "records": { "CNAME": "creepsooff.github.io" } } diff --git a/domains/crescentmoon.json b/domains/crescentmoon.json index dfcff68f9..38506d720 100644 --- a/domains/crescentmoon.json +++ b/domains/crescentmoon.json @@ -3,7 +3,7 @@ "username": "CrescentMoon2506", "email": "crescentmoon2506@gmail.com" }, - "record": { + "records": { "CNAME": "crescentmoon2506.github.io" } } diff --git a/domains/cris.json b/domains/cris.json new file mode 100644 index 000000000..1fe264cae --- /dev/null +++ b/domains/cris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UnrecoverableFault", + "email": "carendell@me.com" + }, + "records": { + "CNAME": "website-f1q.pages.dev" + } +} diff --git a/domains/crischutu07.json b/domains/crischutu07.json index 28edd1046..068aed00d 100644 --- a/domains/crischutu07.json +++ b/domains/crischutu07.json @@ -3,13 +3,8 @@ "username": "crischutu07", "email": "crischutu07owo@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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/cristian.json b/domains/cristian.json new file mode 100644 index 000000000..1fe264cae --- /dev/null +++ b/domains/cristian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UnrecoverableFault", + "email": "carendell@me.com" + }, + "records": { + "CNAME": "website-f1q.pages.dev" + } +} diff --git a/domains/cristianmihai.json b/domains/cristianmihai.json index 9a858ea31..4e0aa40ab 100644 --- a/domains/cristianmihai.json +++ b/domains/cristianmihai.json @@ -5,7 +5,7 @@ "username": "CristianEduardMihai", "email": "cristianeduardmihai@gmail.com" }, - "record": { + "records": { "CNAME": "cristianeduardmihai.github.io" } } diff --git a/domains/cristofer54.json b/domains/cristofer54.json index 6563f41f8..3399f86d6 100644 --- a/domains/cristofer54.json +++ b/domains/cristofer54.json @@ -3,7 +3,7 @@ "username": "Cristofer543", "email": "cristoferpayamps543a@gmail.com" }, - "record": { + "records": { "CNAME": "cristofer543.github.io" } } diff --git a/domains/crm.digidenone.json b/domains/crm.digidenone.json index f47a8711d..2e26dfc84 100644 --- a/domains/crm.digidenone.json +++ b/domains/crm.digidenone.json @@ -3,7 +3,7 @@ "username": "digidenone", "email": "digidenone@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/crpaiz.json b/domains/crpaiz.json new file mode 100644 index 000000000..2decdbc01 --- /dev/null +++ b/domains/crpaiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CristopherPaiz", + "email": "choperpaiz1@gmail.com" + }, + "records": { + "CNAME": "crpaiz.netlify.app" + } +} diff --git a/domains/crvt.json b/domains/crvt.json index f44b83c81..8d0187319 100644 --- a/domains/crvt.json +++ b/domains/crvt.json @@ -5,7 +5,7 @@ "username": "Slovakians", "email": "siresirol937@gmail.com" }, - "record": { + "records": { "CNAME": "slovakians.github.io" } } diff --git a/domains/crypt.json b/domains/crypt.json index fdd27b8de..738069929 100644 --- a/domains/crypt.json +++ b/domains/crypt.json @@ -3,7 +3,7 @@ "username": "cryptixrune", "email": "lunar.dev@icloud.com" }, - "record": { + "records": { "CNAME": "cryptixrune.github.io" } } diff --git a/domains/cryptid.json b/domains/cryptid.json index a3db97a75..70ae97b6d 100644 --- a/domains/cryptid.json +++ b/domains/cryptid.json @@ -2,10 +2,9 @@ "owner": { "username": "NotCryptid", "email": "cryptid@thingai.xyz", - "discord": "545305641212706819", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Ow5vOC5DYFkZ20ukBdrfiOfcTb9zGMbnQyldB0CaiIN8dVdXiZKVGEkmNIKWS6qyhnN-zmGA4gyqdwJ2YC7k3A6YNWcVwMq2mGPGnELtaavIkeex55z4fyZ8qxM49I51s5VT43V05qabzEBAJRrJeoX_qj4djtttxHWj5u7h5eZMMM3LFiYGgrzZ6H7Hdckl57sxzuC5KVz6JP_8e46ip6lowekUxPSe0TWuW910zO97sqc2cbCtQNwp6k5nCV4L0Us669A5XxRgI4LLGxSrjac7ACp4bv7tvXxE11pQPb0fQeqa0hyxB_lUDK8GvmKt6DGS8xLwyjwQdGALPc-BIQ.A-ZKIYM1iQTnY9mqtSxVkw.Fujnp_Vv-c6MDtH1I4XeaJiI0mwOM8Z4Cdp5IjAO-slOgsZnGJuhdX_azeWWNZrLB3HiftQwekFS9J9JP6zHgToirezSoKYrWf3IihYxSoZODysPgfha4weChAq_fNhv.-l3CfdXMoneU79zq_7GRDA" + "discord": "545305641212706819" }, - "record": { + "records": { "CNAME": "cryptidbleh.vercel.app" } } diff --git a/domains/crystal.json b/domains/crystal.json index dadbdde8e..7587dd2b6 100644 --- a/domains/crystal.json +++ b/domains/crystal.json @@ -1,12 +1,12 @@ { "description": "For hosting my portfolio", - "repo": "https://github.com/crystalbajgai/crystalbajgai.github.io", + "repo": "https://github.com/crystalbajgai/portfolio", "owner": { "username": "crystalbajgai", "email": "crystalbajgai@gmail.com", - "twitter": "Crissy0__0" + "twitter": "crystaaaal" }, - "record": { - "CNAME": "crystalbajgai.github.io" + "records": { + "CNAME": "crystalbajgai.vercel.app" } } diff --git a/domains/crystalcoding.json b/domains/crystalcoding.json index cfc48a94f..719ce4f6f 100644 --- a/domains/crystalcoding.json +++ b/domains/crystalcoding.json @@ -4,7 +4,7 @@ "email": "crystalcraft9999@gmail.com", "discord": "1102272783712522331" }, - "record": { + "records": { "CNAME": "crystalcoding9999.github.io" } } diff --git a/domains/cs.json b/domains/cs.json index dbbe9d8d0..f41388112 100644 --- a/domains/cs.json +++ b/domains/cs.json @@ -5,7 +5,7 @@ "username": "ShoreCN", "email": "c.shore.cn@gmail.com" }, - "record": { + "records": { "CNAME": "shorecn.github.io" } } diff --git a/domains/ctrlraul.json b/domains/ctrlraul.json index 9619a9fe6..ccdf3c434 100644 --- a/domains/ctrlraul.json +++ b/domains/ctrlraul.json @@ -6,7 +6,7 @@ "email": "mailctrlraul@gmail.com", "twitter": "CtrlRaul" }, - "record": { + "records": { "CNAME": "ctrlraul.github.io" } } diff --git a/domains/cucusise.json b/domains/cucusise.json index fde6870e5..a0b97c6e3 100644 --- a/domains/cucusise.json +++ b/domains/cucusise.json @@ -3,7 +3,7 @@ "username": "Cucusise", "email": "cucusise@gmail.com" }, - "record": { + "records": { "CNAME": "cucusise.github.io" } } diff --git a/domains/cuinc99.json b/domains/cuinc99.json new file mode 100644 index 000000000..0b1fb35f9 --- /dev/null +++ b/domains/cuinc99.json @@ -0,0 +1,11 @@ +{ + "description": "A Portfolio Website", + "repo": "https://github.com/cuinc99/cuinc99.github.io", + "owner": { + "username": "cuinc99", + "email": "cuinc99@gmail.com" + }, + "records": { + "CNAME": "cuinc99.github.io" + } +} diff --git a/domains/currypan1229.json b/domains/currypan1229.json new file mode 100644 index 000000000..fdb9c0a45 --- /dev/null +++ b/domains/currypan1229.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Currypan1229", + "email": "abcqqqwpvp@gmail.com" + }, + "records": { + "URL": "https://github.com/Currypan1229" + } +} diff --git a/domains/cursedscrubdaddygang.json b/domains/cursedscrubdaddygang.json index e54f3c87a..e19e8a3ea 100644 --- a/domains/cursedscrubdaddygang.json +++ b/domains/cursedscrubdaddygang.json @@ -1,10 +1,10 @@ { - "owner": { - "repo": "https://github.com/QuantumMapleQC/quantummapleqc.github.io", - "username": "quantummapleqc", - "discord": "herricksom" - }, - "record": { - "CNAME": "quantummapleqc.github.io" - } -} + "owner": { + "repo": "https://github.com/QuantumMapleQC/quantummapleqc.github.io", + "username": "quantummapleqc", + "discord": "herricksom" + }, + "records": { + "CNAME": "quantummapleqc.github.io" + } +} diff --git a/domains/cutedog5695.json b/domains/cutedog5695.json index fa85df0c6..4ac79ffdc 100644 --- a/domains/cutedog5695.json +++ b/domains/cutedog5695.json @@ -4,7 +4,7 @@ "discord": "716306888492318790", "twitter": "iostpa" }, - "record": { + "records": { "A": ["89.106.200.1"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/cutt37.json b/domains/cutt37.json index 4a0e328c0..3e6f654c3 100644 --- a/domains/cutt37.json +++ b/domains/cutt37.json @@ -5,7 +5,7 @@ "username": "37cut", "email": "cutt37@outlook.com" }, - "record": { + "records": { "CNAME": "37cut.github.io" } } diff --git a/domains/cuxdi.json b/domains/cuxdi.json index b364eab7a..97d8a74fc 100644 --- a/domains/cuxdi.json +++ b/domains/cuxdi.json @@ -4,7 +4,7 @@ "email": "vihar2408@gmail.com", "discord": "1156381555875385484" }, - "record": { + "records": { "CNAME": "cuxdi.pages.dev" } } diff --git a/domains/cuzimbisonratte.json b/domains/cuzimbisonratte.json index fde0c936b..cb3743a27 100644 --- a/domains/cuzimbisonratte.json +++ b/domains/cuzimbisonratte.json @@ -3,7 +3,7 @@ "username": "CuzImBisonratte", "email": "cuzimbisonratte@gmail.com" }, - "record": { + "records": { "CNAME": "cuzimbisonratte.github.io" } } diff --git a/domains/cvrvmebj6qss.bteamapp.json b/domains/cvrvmebj6qss.bteamapp.json index 5aff5ef1a..3ad5ecc09 100644 --- a/domains/cvrvmebj6qss.bteamapp.json +++ b/domains/cvrvmebj6qss.bteamapp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "gv-g66qqa7lomqvs2.dv.googlehosted.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "gv-g66qqa7lomqvs2.dv.googlehosted.com" + } } diff --git a/domains/cwerl.json b/domains/cwerl.json index d22a444c4..f00e8fe4d 100644 --- a/domains/cwerl.json +++ b/domains/cwerl.json @@ -2,7 +2,7 @@ "owner": { "username": "cwerl" }, - "record": { + "records": { "CNAME": "cwerl.github.io" } } diff --git a/domains/cyanic76.json b/domains/cyanic76.json index 4582efbfe..7d9be38af 100644 --- a/domains/cyanic76.json +++ b/domains/cyanic76.json @@ -5,7 +5,7 @@ "username": "Cyanic76", "email": "git@cyanic.me" }, - "record": { + "records": { "URL": "https://cyanic.me" } } diff --git a/domains/cyanide.json b/domains/cyanide.json index c34e24ef8..e30a412a7 100644 --- a/domains/cyanide.json +++ b/domains/cyanide.json @@ -6,7 +6,7 @@ "email": "contact@cyanidedev.mn", "twitter": "cyanide1x" }, - "record": { + "records": { "CNAME": "cyanide1x.github.io" } } diff --git a/domains/cyberglot.json b/domains/cyberglot.json new file mode 100644 index 000000000..abdcca0b2 --- /dev/null +++ b/domains/cyberglot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cyberglot", + "email": "cyberglot@gmail.com" + }, + "records": { + "CNAME": "cyberglot.github.io" + } +} diff --git a/domains/cyberpj.json b/domains/cyberpj.json new file mode 100644 index 000000000..2e6bf808b --- /dev/null +++ b/domains/cyberpj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xcyberpj", + "email": "0xcyberpj@proton.me" + }, + "records": { + "CNAME": "0xcyberpj.github.io" + } +} diff --git a/domains/cybersecbyte.json b/domains/cybersecbyte.json index 467e058d6..0252e82b6 100644 --- a/domains/cybersecbyte.json +++ b/domains/cybersecbyte.json @@ -3,7 +3,7 @@ "username": "CyberSecByte", "email": "cybersecbyte@gmail.com" }, - "record": { + "records": { "CNAME": "cybersecbyte.github.io" } } diff --git a/domains/cycloneaddons.json b/domains/cycloneaddons.json index ce323ebd2..8879b0745 100644 --- a/domains/cycloneaddons.json +++ b/domains/cycloneaddons.json @@ -6,7 +6,7 @@ "email": "cycloneaddon@gmail.com", "twitter": "cycloneaddons" }, - "record": { + "records": { "CNAME": "cycloneaddons.github.io" } } diff --git a/domains/cycno.json b/domains/cycno.json index 77996a2a0..e20f4d0bc 100644 --- a/domains/cycno.json +++ b/domains/cycno.json @@ -3,7 +3,7 @@ "username": "CYCNO", "email": "daniyalchunna2@gmail.com" }, - "record": { + "records": { "CNAME": "cycno.github.io" } } diff --git a/domains/cylis.json b/domains/cylis.json index d6d044ed9..6b46f636d 100644 --- a/domains/cylis.json +++ b/domains/cylis.json @@ -4,7 +4,7 @@ "email": "craftingcaptain456@gmail.com", "discord": "372363585394966528" }, - "record": { + "records": { "CNAME": "cylis-dragneel.github.io" } } diff --git a/domains/cynik.json b/domains/cynik.json new file mode 100644 index 000000000..189dd100f --- /dev/null +++ b/domains/cynik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "criticic", + "email": "acriticalcynic@outlook.com" + }, + "records": { + "CNAME": "cynikal-blog.vercel.app" + } +} diff --git a/domains/cyril.json b/domains/cyril.json index 530344107..1c520fc5b 100644 --- a/domains/cyril.json +++ b/domains/cyril.json @@ -3,7 +3,7 @@ "username": "cyrilakaluka", "email": "akalukacyril@gmail.com" }, - "record": { + "records": { "CNAME": "cyrilakaluka.github.io" } } diff --git a/domains/cyteon.json b/domains/cyteon.json index 9512ed5c5..cf8d705b9 100644 --- a/domains/cyteon.json +++ b/domains/cyteon.json @@ -1,14 +1,10 @@ { "owner": { "username": "Cyteon", - "discord": "871722786006138960", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q9RhtbUP-u9Q4KAp7lbLAVHYORrtuE70vWDcr_S9DFFixPK3glDOVM9gUHMBsQcv0W0jfXsURDrcN0orvGrTmpn30_CQUBL0XAoBYcL5zC7wBavaXAP6v8YHXQmThdsZknwCfsrlAHK5bjOQR_Hke7H89XUnvjONABGMGozVLrveJsjsRUDrxuxggPlcnMDbaOGwZNNHqz7npcmSPe_Kpd5D2xTUjknMcVn9TlgBf0IjO8EAI0UhJUISLjQdT61Fttes2LP9L_h8cyrkFCHcvrBBrQgc05ijPsp5Yb4DC_drzsoLG1WnWObLNNffOUtf-f_CjAA_edIo-6ZA-4nWkg.v45Ib0akIwdqLrzLUFLWVw.m8Ski3CnEUcpfG3Z_ZE4QeSMzmezHxmIv_fXV23LHHr6NehYWI6W_ei45EsfAS-T9c8feeFxDlFm4NP-JOna1kxiQDFwUkApRgJJm3TR8ZY.pFZ7T7Kzts1Y1wtOzXTpRQ" + "discord": "871722786006138960" }, - "record": { - "TXT": [ - "zoho-verification=zb91651102.zmverify.zoho.eu", - "v=spf1 include:zohomail.eu ~all" - ], + "records": { + "TXT": ["zoho-verification=zb91651102.zmverify.zoho.eu", "v=spf1 include:zohomail.eu ~all"], "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"] } } diff --git a/domains/czwx.json b/domains/czwx.json index 7f83c9bbb..4ec556b9a 100644 --- a/domains/czwx.json +++ b/domains/czwx.json @@ -3,7 +3,7 @@ "username": "czwxx", "email": "czwx790@gmail.com" }, - "record": { + "records": { "CNAME": "czwxx.github.io" } } diff --git a/domains/d.json b/domains/d.json deleted file mode 100644 index d87b6341b..000000000 --- a/domains/d.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "AhNode", - "discord": "704173828187619370" - }, - "record": { - "A": ["69.197.135.202"] - } -} diff --git a/domains/d3c.json b/domains/d3c.json index f713c47ae..4503be2b4 100644 --- a/domains/d3c.json +++ b/domains/d3c.json @@ -3,7 +3,7 @@ "username": "czb8", "email": "czb8.a1@gmail.com" }, - "record": { + "records": { "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 index e162da723..fa3ef4621 100644 --- a/domains/d3nxel.json +++ b/domains/d3nxel.json @@ -5,7 +5,7 @@ "username": "ExpediteDC", "email": "vien@courvix.com" }, - "record": { + "records": { "CNAME": "denzel.pages.dev" } } diff --git a/domains/d4rkd3n1337.json b/domains/d4rkd3n1337.json index 16ce0771f..30f1400f5 100644 --- a/domains/d4rkd3n1337.json +++ b/domains/d4rkd3n1337.json @@ -3,7 +3,7 @@ "username": "d4rkd3n1337", "email": "darkdenrevolt@gmail.com" }, - "record": { + "records": { "A": ["45.85.117.139"] } } diff --git a/domains/daamin.json b/domains/daamin.json index 7c331f7df..6633d3ec8 100644 --- a/domains/daamin.json +++ b/domains/daamin.json @@ -5,7 +5,7 @@ "username": "Daamin909", "email": "ashai.daamin@gmail.com" }, - "record": { + "records": { "CNAME": "daamin909.github.io" } } diff --git a/domains/daanbreur.json b/domains/daanbreur.json index 952bee3e4..1fa37bd6f 100644 --- a/domains/daanbreur.json +++ b/domains/daanbreur.json @@ -4,7 +4,7 @@ "username": "daanbreur", "email": "me@daanbreur.systems" }, - "record": { + "records": { "URL": "https://blog.daanbreur.systems" } } diff --git a/domains/daanschenkel.json b/domains/daanschenkel.json index 15497138b..671bd1219 100644 --- a/domains/daanschenkel.json +++ b/domains/daanschenkel.json @@ -3,7 +3,7 @@ "username": "daanschenkel", "email": "daan@daanschenkel.nl" }, - "record": { + "records": { "URL": "https://daanschenkel.nl" } } diff --git a/domains/daboltgod.json b/domains/daboltgod.json index 5e26f049f..720e597e1 100644 --- a/domains/daboltgod.json +++ b/domains/daboltgod.json @@ -5,7 +5,7 @@ "username": "ItzPhoenixYaknow", "email": "daboltgod22@outlook.com" }, - "record": { + "records": { "CNAME": "itzphoenixyaknow.github.io" } } diff --git a/domains/dadaboudi.chiragnahata.json b/domains/dadaboudi.chiragnahata.json index 726befd50..4dcdef8bf 100644 --- a/domains/dadaboudi.chiragnahata.json +++ b/domains/dadaboudi.chiragnahata.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/dadcuy.json b/domains/dadcuy.json index 718722149..294a256b3 100644 --- a/domains/dadcuy.json +++ b/domains/dadcuy.json @@ -3,7 +3,7 @@ "username": "Dadcuy", "email": "dadcuy@gmail.com" }, - "record": { + "records": { "CNAME": "dadcuy.github.io" } } diff --git a/domains/dadoge.json b/domains/dadoge.json new file mode 100644 index 000000000..308dfb834 --- /dev/null +++ b/domains/dadoge.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DaDogeDev" + }, + "records": { + "CNAME": "dadogedev.github.io" + }, + "proxied": false +} diff --git a/domains/dae.json b/domains/dae.json index 2b98a62f8..f4ea0f6d0 100644 --- a/domains/dae.json +++ b/domains/dae.json @@ -3,7 +3,7 @@ "username": "Daeloth", "email": "alanvcd@frikipedia.es" }, - "record": { + "records": { "URL": "http://www.daeloth.com/home" } } diff --git a/domains/daffa.json b/domains/daffa.json new file mode 100644 index 000000000..a38a9f563 --- /dev/null +++ b/domains/daffa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "daffafaizan", + "email": "daffamfzn@gmail.com" + }, + "records": { + "URL": "https://daffafaizan.com" + } +} diff --git a/domains/dai.json b/domains/dai.json new file mode 100644 index 000000000..a4d80a001 --- /dev/null +++ b/domains/dai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ncdai", + "email": "dai@chanhdai.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/dailycat.json b/domains/dailycat.json index cc89821d0..2b0469f54 100644 --- a/domains/dailycat.json +++ b/domains/dailycat.json @@ -6,7 +6,7 @@ "email": "lrmn.dev@gmail.com", "discord": "romanromannya#0" }, - "record": { + "records": { "CNAME": "dailycats.github.io" } } diff --git a/domains/daim.json b/domains/daim.json index d279185ab..5e46f1c65 100644 --- a/domains/daim.json +++ b/domains/daim.json @@ -1,9 +1,9 @@ { "owner": { "username": "sYnceDez41", - "email":"zdaim78@gmail.com" + "email": "zdaim78@gmail.com" }, - "record": { + "records": { "CNAME": "devdaim.vercel.app" } } diff --git a/domains/dainfloop.json b/domains/dainfloop.json index dc9b403cb..35a17d782 100644 --- a/domains/dainfloop.json +++ b/domains/dainfloop.json @@ -1,22 +1,15 @@ { - "owner": { - "username": "DaInfLoop", - "email": "backupharoongames100@gmail.com" - }, - "record": { - "A": [ - "37.27.51.34" - ], - "AAAA": [ - "2a01:4f9:3081:399c::4" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 ip4:37.27.51.34 ip6:2a01:4f9:3081:399c::/64 include:spf.improvmx.com ~all", - "domain-verification=haroon" - ] - } + "owner": { + "username": "DaInfLoop", + "email": "backupharoongames100@gmail.com" + }, + "records": { + "A": ["37.27.51.34"], + "AAAA": ["2a01:4f9:3081:399c::4"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": [ + "v=spf1 ip4:37.27.51.34 ip6:2a01:4f9:3081:399c::/64 include:spf.improvmx.com ~all", + "domain-verification=haroon" + ] + } } diff --git a/domains/daiswap.json b/domains/daiswap.json deleted file mode 100644 index a7f052724..000000000 --- a/domains/daiswap.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "for my personal portfolio , to do networking and get to learn and do more projects", - "repo": "https://github.com/DaiSwap/DaiSwap.github.io", - "owner": { - "username": "DaiSwap", - "email": "19644pranavvenkatesh@gmail.com", - "twitter": "DaiSwap" - }, - "record": { - "A": ["13.251.96.10"] - } -} diff --git a/domains/daksh.json b/domains/daksh.json index bf0b5237c..eebd2ecb7 100644 --- a/domains/daksh.json +++ b/domains/daksh.json @@ -3,7 +3,7 @@ "username": "lonewqlf", "email": "lonewqlf@proton.me" }, - "record": { + "records": { "CNAME": "lonewqlf.github.io" } } diff --git a/domains/damian.json b/domains/damian.json new file mode 100644 index 000000000..82e232ebf --- /dev/null +++ b/domains/damian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meliadamian17", + "email": "meliadamian17@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/damilare.json b/domains/damilare.json new file mode 100644 index 000000000..0cc822070 --- /dev/null +++ b/domains/damilare.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Peculiars", + "email": "olaitandamilare230@gmail.com" + }, + "records": { + "CNAME": "peculiars.github.io" + } +} diff --git a/domains/damned.json b/domains/damned.json index 286e457ad..05bbead85 100644 --- a/domains/damned.json +++ b/domains/damned.json @@ -5,7 +5,7 @@ "username": "damnedstudios", "email": "arda.efe.gokce.2@gmail.com" }, - "record": { + "records": { "CNAME": "damnedstudios.github.io" } } diff --git a/domains/damu.json b/domains/damu.json index b24a3c75b..2259a1231 100644 --- a/domains/damu.json +++ b/domains/damu.json @@ -3,7 +3,7 @@ "username": "damnUUUU", "email": "damodar.sssihl@gmail.com" }, - "record": { + "records": { "A": ["103.174.70.38"] } } diff --git a/domains/dan-habot.json b/domains/dan-habot.json index fe6ba021b..0531a3123 100644 --- a/domains/dan-habot.json +++ b/domains/dan-habot.json @@ -5,7 +5,7 @@ "username": "danhab99", "email": "dan.habot@gmail.com" }, - "record": { + "records": { "CNAME": "danhab99.github.io" } } diff --git a/domains/dan.json b/domains/dan.json index 7d436f3e4..a8b331fd4 100644 --- a/domains/dan.json +++ b/domains/dan.json @@ -5,7 +5,7 @@ "username": "DanField12", "email": "dan.field643@gmail.com" }, - "record": { + "records": { "CNAME": "danfield12.github.io" } } diff --git a/domains/dang.json b/domains/dang.json new file mode 100644 index 000000000..a7bd1873c --- /dev/null +++ b/domains/dang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chanhdangcom", + "email": "ncdang@quaric.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/dangdat.json b/domains/dangdat.json index 625501406..3bc3b4fc4 100644 --- a/domains/dangdat.json +++ b/domains/dangdat.json @@ -5,7 +5,7 @@ "username": "aurorakid", "email": "nguyendangdat412@gmail.com" }, - "record": { + "records": { "CNAME": "aurorakid.github.io" } } diff --git a/domains/dangxuanthai.json b/domains/dangxuanthai.json index 40896eb68..57a05131f 100644 --- a/domains/dangxuanthai.json +++ b/domains/dangxuanthai.json @@ -3,7 +3,7 @@ "username": "CallMeIAmTDF", "email": "thai0203966@nuce.edu.vn" }, - "record": { + "records": { "CNAME": "3hxw3aro.up.railway.app" } } diff --git a/domains/dani.json b/domains/dani.json index fa4d9f757..7313cb32d 100644 --- a/domains/dani.json +++ b/domains/dani.json @@ -6,7 +6,7 @@ "email": "danidev82@gmail.com", "twitter": "Danidev819" }, - "record": { + "records": { "CNAME": "danidev819.github.io" } } diff --git a/domains/danialajamil.json b/domains/danialajamil.json index 02de0710d..13dd4f2bd 100644 --- a/domains/danialajamil.json +++ b/domains/danialajamil.json @@ -5,7 +5,7 @@ "username": "KawakazeRin", "email": "satyamverma46@outlook.com" }, - "record": { + "records": { "CNAME": "kawakazerin.github.io" } } diff --git a/domains/daniel.json b/domains/daniel.json index d80aceac1..194fd28ff 100644 --- a/domains/daniel.json +++ b/domains/daniel.json @@ -4,7 +4,7 @@ "username": "hackermondev", "twitter": "hackermondev" }, - "record": { + "records": { "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-scratch.json b/domains/daniel4-scratch.json index 2200a0a51..09752ce63 100644 --- a/domains/daniel4-scratch.json +++ b/domains/daniel4-scratch.json @@ -5,7 +5,7 @@ "username": "daniel4-scratch", "email": "llama552621@gmail.com" }, - "record": { + "records": { "CNAME": "daniel4-scratch.github.io" } } diff --git a/domains/daniellozano.json b/domains/daniellozano.json new file mode 100644 index 000000000..0d741abe1 --- /dev/null +++ b/domains/daniellozano.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "z4no", + "email": "danixt35@gmail.com" + }, + "records": { + "CNAME": "z4no.github.io" + } +} diff --git a/domains/danielpedroza.json b/domains/danielpedroza.json new file mode 100644 index 000000000..5da531a9d --- /dev/null +++ b/domains/danielpedroza.json @@ -0,0 +1,11 @@ +{ + "description": "Daniel's developer website", + "repo": "https://github.com/daniepusb/daniepusb.github.io", + "owner": { + "username": "daniepusb", + "linkedin": "https://www.linkedin.com/in/danielpedroza87" + }, + "records": { + "URL": "https://daniepusb.github.io/" + } +} diff --git a/domains/danieltampe.json b/domains/danieltampe.json new file mode 100644 index 000000000..36ed76361 --- /dev/null +++ b/domains/danieltampe.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DanielTampeCaamano", + "email": "danieltampe@hotmail.com", + "discord": "246811015285571586" + }, + "records": { + "CNAME": "daniel-tampe-webpage.vercel.app" + } +} diff --git a/domains/danielzambrano.json b/domains/danielzambrano.json new file mode 100644 index 000000000..cc03dbec9 --- /dev/null +++ b/domains/danielzambrano.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DanielZambranoC", + "email": "trail.moth9771@eagereverest.com" + }, + "records": { + "URL": "https://www.linkedin.com/in/danielzambranoc/" + } +} diff --git a/domains/danilezheng4.json b/domains/danilezheng4.json new file mode 100644 index 000000000..d5188f862 --- /dev/null +++ b/domains/danilezheng4.json @@ -0,0 +1,11 @@ +{ + "description": "danilezheng4's portfolio", + "repo": "https://github.com/danilezheng4/danilezheng4.github.io", + "owner": { + "username": "danilezheng4", + "email": "danilezheng4@outlook.com" + }, + "records": { + "CNAME": "danilezheng4.github.io" + } +} diff --git a/domains/danilwhale.json b/domains/danilwhale.json index fc2938b99..89a9f2da7 100644 --- a/domains/danilwhale.json +++ b/domains/danilwhale.json @@ -1,10 +1,9 @@ { "owner": { "username": "danilwhale", - "discord": "1191777214467940414", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.TMndiEsl4ECzkNhIvJVzKhARY5P83h9nXwYNjtmb8fy_gr0Xrl6dIgbXdxasHq2R4EFrN8VfElTk5pMEjjAXvIVP0mvXO3pmdunG2hbGNmKqPyyG6ZAB6EwOYnYJS6tKF17MmDwiRRreewgohIKJE7c3oP8oYaXH_mLvo9RI_BxpgRbdblFGZFzkGiTrZL0ju0XjSX5oBrcmFLfX5Rd3P3Lv7ySszZiwvRBLyEoR4v_I1oeS59FhMFJ5nHfdMwwd0X0UP_FUf67C24-vcaGi7Xv3ni4lWEU-skubVXTS2ya1t41VX2T_FD0kEorFAcwC30NcHjRERFMdHYXBMyvGEw.CpiU15hYni_PlE_UWHFCQA.sguibYYksrr1sUw7BqjJXJBmRNA0mOuEhRUaZ4I74H2LD-QC1GdY2wCYLp987GEbRnGiOGiNypsk_hONvHFcH0-0NXYxRL3Nel9gPATShEQ.KWSA5I9S9fXpvGnlkqFs7A" + "discord": "1191777214467940414" }, - "record": { + "records": { "CNAME": "danilwhale.github.io" } } diff --git a/domains/danithu.json b/domains/danithu.json index 549079e7f..ebae41701 100644 --- a/domains/danithu.json +++ b/domains/danithu.json @@ -3,7 +3,7 @@ "username": "danithu123", "email": "danithuamaranayakanew@gmail.com" }, - "record": { + "records": { "CNAME": "danithu123.github.io" } } diff --git a/domains/daniyor.json b/domains/daniyor.json new file mode 100644 index 000000000..a01bff2b8 --- /dev/null +++ b/domains/daniyor.json @@ -0,0 +1,11 @@ +{ + "description": "Daniyor's Portfolio", + "repo": "https://github.com/Daniyor2020/devdan", + "owner": { + "username": "Daniyor2020", + "email": "dani.bolta87@gmail.com" + }, + "records": { + "CNAME": "daniyor2020.github.io" + } +} diff --git a/domains/dankamigos.json b/domains/dankamigos.json index 13a0d5f7c..eecb0dfbd 100644 --- a/domains/dankamigos.json +++ b/domains/dankamigos.json @@ -3,7 +3,7 @@ "username": "mokshdk", "email": "anirudhsus001@gmail.com" }, - "record": { - "CNAME": "dankamigos-baapekd9aua9esh2.eastus-01.azurewebsites.net" + "records": { + "CNAME": "dankamigos-baapekd9aua9esh2.centralus-01.azurewebsites.net" } } diff --git a/domains/dannydandan.json b/domains/dannydandan.json index 15497138b..671bd1219 100644 --- a/domains/dannydandan.json +++ b/domains/dannydandan.json @@ -3,7 +3,7 @@ "username": "daanschenkel", "email": "daan@daanschenkel.nl" }, - "record": { + "records": { "URL": "https://daanschenkel.nl" } } diff --git a/domains/danosyrus.json b/domains/danosyrus.json index cd0ab9272..71f088da2 100644 --- a/domains/danosyrus.json +++ b/domains/danosyrus.json @@ -6,7 +6,7 @@ "email": "danosyrus@tuta.io", "discord": "danosyrus" }, - "record": { + "records": { "CNAME": "danosyrus.github.io" } } diff --git a/domains/danterus.json b/domains/danterus.json index 0e5d3dc8e..a90544750 100644 --- a/domains/danterus.json +++ b/domains/danterus.json @@ -3,7 +3,7 @@ "username": "danterusdev", "email": "danterusdev@gmail.com" }, - "record": { + "records": { "CNAME": "danterusdev.github.io" } } diff --git a/domains/dany.json b/domains/dany.json index c563e84d0..360d3897b 100644 --- a/domains/dany.json +++ b/domains/dany.json @@ -4,7 +4,7 @@ "username": "DanyTPG", "discord": "DanyTPG#5025" }, - "record": { + "records": { "CNAME": "docs-cz1.pages.dev" } } diff --git a/domains/danybmx.json b/domains/danybmx.json new file mode 100644 index 000000000..b7360bbcb --- /dev/null +++ b/domains/danybmx.json @@ -0,0 +1,10 @@ +{ + "description": "danybmx's blog and portfolio", + "owner": { + "username": "danybmx", + "email": "daniel@dpstudios.es" + }, + "records": { + "CNAME": "is-a-dev.dpstudios.es" + } +} diff --git a/domains/daoch4n.json b/domains/daoch4n.json new file mode 100644 index 000000000..86c75c1bc --- /dev/null +++ b/domains/daoch4n.json @@ -0,0 +1,11 @@ +{ + "description": "Web3-enabled video player for Daoko MVs", + "repo": "https://github.com/dtub3/DaokoTube", + "owner": { + "username": "daoch4n", + "email": "digitaimadness@pm.me" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/daria.json b/domains/daria.json index 83fa7e075..17908dfc7 100644 --- a/domains/daria.json +++ b/domains/daria.json @@ -5,7 +5,7 @@ "username": "dariatrainor", "email": "dariasu@gmail.com" }, - "record": { + "records": { "CNAME": "dariatrainor.github.io" } } diff --git a/domains/dariorodrigon.json b/domains/dariorodrigon.json new file mode 100644 index 000000000..0818abec9 --- /dev/null +++ b/domains/dariorodrigon.json @@ -0,0 +1,11 @@ +{ + "description": "Dario Rodri Gon is a dev", + "repo": "https://github.com/dario-rodriguez/dario-rodriguez.github.io", + "owner": { + "username": "dario-rodriguez", + "email": "dario.rg.1990@gmail.com" + }, + "records": { + "CNAME": "dario-rodriguez.github.io" + } +} diff --git a/domains/darji-ravi.json b/domains/darji-ravi.json index 3ca740602..05984a1b2 100644 --- a/domains/darji-ravi.json +++ b/domains/darji-ravi.json @@ -4,7 +4,7 @@ "owner": { "username": "darji-ravi" }, - "record": { + "records": { "CNAME": "darji-ravi.github.io" } } diff --git a/domains/dark-pizza.json b/domains/dark-pizza.json index 755ca19fd..370753fbe 100644 --- a/domains/dark-pizza.json +++ b/domains/dark-pizza.json @@ -3,7 +3,7 @@ "username": "DarkPizza", "email": "arturpizzagames@hotmail.com" }, - "record": { + "records": { "URL": "https://github.com/darkpizza/darkpizza" } } diff --git a/domains/dark.json b/domains/dark.json index 74fbbdd3d..86e123967 100644 --- a/domains/dark.json +++ b/domains/dark.json @@ -3,7 +3,7 @@ "username": "BruhDark", "email": "darkpxint@gmail.com" }, - "record": { + "records": { "CNAME": "website-93d6f.web.app" } } diff --git a/domains/darkc.json b/domains/darkc.json index b1a04ec89..377f35d12 100644 --- a/domains/darkc.json +++ b/domains/darkc.json @@ -3,7 +3,7 @@ "username": "jc-discdev", "email": "jjsuscc@gmail.com" }, - "record": { + "records": { "URL": "https://darkdev.es" } } diff --git a/domains/darkdevil.json b/domains/darkdevil.json index fe9279857..42237867a 100644 --- a/domains/darkdevil.json +++ b/domains/darkdevil.json @@ -6,13 +6,8 @@ "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" - ], + "records": { + "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/darkdus.json b/domains/darkdus.json new file mode 100644 index 000000000..64f9b0bff --- /dev/null +++ b/domains/darkdus.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Project", + "owner": { + "username": "MqJulus", + "email": "julien.sabe07@gmail.com" + }, + "records": { + "CNAME": "dark-dus.web.app" + } +} diff --git a/domains/darkyzhou.json b/domains/darkyzhou.json new file mode 100644 index 000000000..45e52b7f7 --- /dev/null +++ b/domains/darkyzhou.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "darkyzhou", + "email": "me@zqy.io" + }, + "records": { + "CNAME": "darkyzhou.net" + } +} diff --git a/domains/darrem.json b/domains/darrem.json index 036247c52..d53f2b132 100644 --- a/domains/darrem.json +++ b/domains/darrem.json @@ -1,9 +1,8 @@ { "owner": { - "username": "DarremMolko", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XKhYiI2uBnWAXJAQ7333dWkMIXEc7o6WVTYvGCPRaG34iumSQJOUG6DwLYHjaYPlRjYkBSH-9gQw5I9DFxTkcUNTFCQ9hEuZFvm_NvCnEIugZqjg4fEu8TK-33c7M3XfTJjHEAUITBXHJEmjLrFDaLiVRPbsaJNEmaXX0NIn7U40Bgz5dx2bxvD4Ix6Cz1DUvqpgvXTMA2SmT72nBi40k5IKbHouJN1I42iSYyTdsB8LeEpUm97vnpDePHlWYxK4GdKxUh348jeor1Hwz2vZwfM-zLTrKk4awbvpqdy1Afz02wBb1kmcdYng1KCq8LXk1Rz-8u2mgoziGazQt6sLCA.XqztMYGNoZI27xQ5J1NtxQ.fhZFG0EKkijy4hN-pZtt9zO9oa9o6hhPt8t1MqpZxerLYnU94mKe6f4AppFlomOkGvcxFg1nQKwFjStlFDKJAZU4uB7_drXzRCvQba4iL0E.7F6yl-Fde0545UKoqIKlEg" + "username": "DarremMolko" }, - "record": { + "records": { "CNAME": "darrem.alwaysdata.net" } } diff --git a/domains/darren.json b/domains/darren.json index 73824a0a7..13b603047 100644 --- a/domains/darren.json +++ b/domains/darren.json @@ -1,11 +1,10 @@ { "description": "I use arch btw", - "repo": "https://github.com/DarrenOfficial", "owner": { "username": "DarrenOfficial", "email": "github@darrennathanael.com" }, - "record": { + "records": { "URL": "https://darrennathanael.com" } } diff --git a/domains/darshan.json b/domains/darshan.json new file mode 100644 index 000000000..19351d656 --- /dev/null +++ b/domains/darshan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dqrshan", + "email": "darshan310268@gmail.com", + "discord": "838620835282812969" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/darshil.json b/domains/darshil.json index 48ac072ab..d95797b13 100644 --- a/domains/darshil.json +++ b/domains/darshil.json @@ -3,7 +3,7 @@ "username": "Darshil-154", "email": "darshil6675@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/darsshan.json b/domains/darsshan.json new file mode 100644 index 000000000..ec08eef5f --- /dev/null +++ b/domains/darsshan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DotEnvv", + "email": "nahsrad04@gmail.com" + }, + "records": { + "CNAME": "dotenvv.github.io" + } +} diff --git a/domains/dartanman.json b/domains/dartanman.json index 241595624..ce42919af 100644 --- a/domains/dartanman.json +++ b/domains/dartanman.json @@ -1,11 +1,10 @@ { "description": "My portfolio", - "repo": "https://github.com/Dartanman", "owner": { "username": "Dartanman", "email": "dartanmanplaysminecraft@gmail.com" }, - "record": { + "records": { "URL": "https://sites.google.com/view/dartanman-portfolio" } } diff --git a/domains/darvin.json b/domains/darvin.json index e3154c0a4..14dbffdab 100644 --- a/domains/darvin.json +++ b/domains/darvin.json @@ -3,7 +3,7 @@ "username": "darvingaba", "email": "darvingaba1@gmail.com" }, - "record": { + "records": { "URL": "https://darvingaba.github.io/pfmain/" } } diff --git a/domains/darvingaba.json b/domains/darvingaba.json index e0fadb8a7..9afe3a641 100644 --- a/domains/darvingaba.json +++ b/domains/darvingaba.json @@ -3,7 +3,7 @@ "username": "darvingaba", "email": "darvingaba1@gmail.com" }, - "record": { + "records": { "URL": "https://pf-o64a.onrender.com/" } } diff --git a/domains/dash.bernardonogueira8.json b/domains/dash.bernardonogueira8.json deleted file mode 100644 index 1b5d366c3..000000000 --- a/domains/dash.bernardonogueira8.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } -} diff --git a/domains/dash.pele.json b/domains/dash.pele.json index eceae0d10..865fad1e4 100644 --- a/domains/dash.pele.json +++ b/domains/dash.pele.json @@ -4,7 +4,7 @@ "email": "pele.puric@gmail.com", "discord": "483261654818226186" }, - "record": { + "records": { "A": ["38.242.242.224"] } } diff --git a/domains/dashboard.almaz.json b/domains/dashboard.almaz.json index b73b812a6..ce764165c 100644 --- a/domains/dashboard.almaz.json +++ b/domains/dashboard.almaz.json @@ -5,7 +5,7 @@ "discord": "718458417232085104", "github_id": 132609906 }, - "record": { + "records": { "A": ["45.134.39.14"] } } diff --git a/domains/dashboard.chiragnahata.json b/domains/dashboard.chiragnahata.json index 726befd50..4dcdef8bf 100644 --- a/domains/dashboard.chiragnahata.json +++ b/domains/dashboard.chiragnahata.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/dasshark.json b/domains/dasshark.json index a4486010e..b0ba442b9 100644 --- a/domains/dasshark.json +++ b/domains/dasshark.json @@ -3,7 +3,7 @@ "username": "DasSharkk", "email": "mail@julius.software" }, - "record": { + "records": { "CNAME": "julius.software" } } diff --git a/domains/dast.json b/domains/dast.json index 4cd566fed..4f7426620 100644 --- a/domains/dast.json +++ b/domains/dast.json @@ -1,11 +1,10 @@ { "description": "My personal website for portfolio, projects and help!", - "repo": "https://github.com/danielsebesta", "owner": { "username": "danielsebesta", "email": "dany.sebesta@seznam.cz" }, - "record": { + "records": { "A": ["194.163.149.155"] } } diff --git a/domains/dat.json b/domains/dat.json new file mode 100644 index 000000000..84d80ab2c --- /dev/null +++ b/domains/dat.json @@ -0,0 +1,10 @@ +{ + "description": "Github site of pdqdat", + "owner": { + "username": "pdqdat", + "email": "phanduongquocdat273@gmail.com" + }, + "records": { + "URL": "https://pdqdat.github.io/" + } +} diff --git a/domains/data.accounts.juststudio.json b/domains/data.accounts.juststudio.json index b0f3eb83b..ab8eafafc 100644 --- a/domains/data.accounts.juststudio.json +++ b/domains/data.accounts.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "juststudio-account.web.app" } } diff --git a/domains/data.json b/domains/data.json deleted file mode 100644 index 708e00ecc..000000000 --- a/domains/data.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "is-a.dev" - }, - "proxied": true -} diff --git a/domains/datamind.json b/domains/datamind.json index a185d82b9..662eb1d03 100644 --- a/domains/datamind.json +++ b/domains/datamind.json @@ -6,7 +6,7 @@ "email": "datamindcontact@gmail.com", "twitter": "i dont use" }, - "record": { + "records": { "CNAME": "dataminddev.github.io" } } diff --git a/domains/datit309.json b/domains/datit309.json new file mode 100644 index 000000000..804a2aa07 --- /dev/null +++ b/domains/datit309.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/datit309309/register", + "owner": { + "username": "datit309", + "email": "datit309@gmail.com" + }, + "records": { + "URL": "https://datit309.github.io", + "TXT": "google-site-verification=2F7H5wS3Sly_6DKcp2IIlsDI3z3PWGfqv81YFGbMRKY" + } +} diff --git a/domains/dauvet.json b/domains/dauvet.json new file mode 100644 index 000000000..43608a51e --- /dev/null +++ b/domains/dauvet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dauvet", + "email": "vanhieu85@gmail.com" + }, + "records": { + "CNAME": "dauvet.github.io" + } +} diff --git a/domains/dave.json b/domains/dave.json index be066d196..311c2d6a1 100644 --- a/domains/dave.json +++ b/domains/dave.json @@ -3,7 +3,7 @@ "username": "davad00", "discord": "1201678865093894234" }, - "record": { + "records": { "CNAME": "dave-lezt.onrender.com" } } diff --git a/domains/dave9123.json b/domains/dave9123.json index eb8baa4ab..182ab291d 100644 --- a/domains/dave9123.json +++ b/domains/dave9123.json @@ -3,7 +3,7 @@ "username": "dave9123", "email": "dave.turmawan@outlook.com" }, - "record": { + "records": { "CNAME": "dave9123.github.io" } } diff --git a/domains/davechbga.json b/domains/davechbga.json new file mode 100644 index 000000000..f39e400ca --- /dev/null +++ b/domains/davechbga.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "davechbga" + }, + "records": { + "CNAME": "davechbga.vercel.app" + } +} diff --git a/domains/davemp.json b/domains/davemp.json new file mode 100644 index 000000000..52f138f9c --- /dev/null +++ b/domains/davemp.json @@ -0,0 +1,12 @@ +{ + "description": "David Mendoza Pardo", + "repo": "https://github.com/dave-mp/davemp", + "owner": { + "username": "dave-mp", + "email": "david.mendoza@chibchapps.io", + "twitter": "dave-mp" + }, + "records": { + "CNAME": "davemp.vercel.app" + } +} diff --git a/domains/david.json b/domains/david.json new file mode 100644 index 000000000..a4cda11cf --- /dev/null +++ b/domains/david.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "david-valdivia", + "email": "dev@dvaldivia.com" + }, + "records": { + "CNAME": "dvaldivia.com" + } +} diff --git a/domains/davidadrian8a.json b/domains/davidadrian8a.json index 9c0f7d085..d68608688 100644 --- a/domains/davidadrian8a.json +++ b/domains/davidadrian8a.json @@ -3,7 +3,7 @@ "username": "DavidAdrian8ag", "email": "krezitech@hotmail.com" }, - "record": { + "records": { "URL": "https://davidadrian8ag.netlify.app/" } } diff --git a/domains/davidbisky.json b/domains/davidbisky.json index 64c88afe2..390805b3a 100644 --- a/domains/davidbisky.json +++ b/domains/davidbisky.json @@ -3,7 +3,7 @@ "username": "VitStudio", "email": "richardvu12391@gmail.com" }, - "record": { + "records": { "A": ["198.45.114.194"] } } diff --git a/domains/davidheredia.json b/domains/davidheredia.json index 22fecf385..083f173be 100644 --- a/domains/davidheredia.json +++ b/domains/davidheredia.json @@ -5,7 +5,7 @@ "username": "dherediat97", "email": "dherediat97@gmail.com" }, - "record": { + "records": { "URL": "https://dherediat97.github.io/Portfolio" } } diff --git a/domains/davidpizarro.json b/domains/davidpizarro.json new file mode 100644 index 000000000..36b93344d --- /dev/null +++ b/domains/davidpizarro.json @@ -0,0 +1,11 @@ +{ + "description": "Use the domain for my porfolio", + "repo": "https://github.com/DavidPPizarro/davidppizarro.github.io", + "owner": { + "username": "DavidPPizarro", + "email": "paulpizarro151@gmail.com" + }, + "records": { + "CNAME": "davidppizarro.github.io" + } +} diff --git a/domains/davidpuerta.json b/domains/davidpuerta.json index 4b53038a1..e81a70e7d 100644 --- a/domains/davidpuerta.json +++ b/domains/davidpuerta.json @@ -3,7 +3,7 @@ "username": "david96182", "email": "puertadavid96182@gmail.com" }, - "record": { + "records": { "CNAME": "david96182.github.io" } } diff --git a/domains/davidramirez.json b/domains/davidramirez.json new file mode 100644 index 000000000..1345e31cb --- /dev/null +++ b/domains/davidramirez.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio website made with Astro", + "repo": "https://github.com/davidzz-code/portfolio.git", + "owner": { + "username": "davidzz-code", + "email": "mixing.drr@gmail.com" + }, + "records": { + "CNAME": "davidramirez.netlify.app" + } +} diff --git a/domains/davidrivas.json b/domains/davidrivas.json new file mode 100644 index 000000000..1c1f73c76 --- /dev/null +++ b/domains/davidrivas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DavidRDevs", + "email": "ing.davidrivas96@gmail.com" + }, + "records": { + "URL": "https://github.com/DavidRDevs" + } +} diff --git a/domains/davidsneighbour.json b/domains/davidsneighbour.json new file mode 100644 index 000000000..40f6afe67 --- /dev/null +++ b/domains/davidsneighbour.json @@ -0,0 +1,11 @@ +{ + "description": "My GitHub profile", + "owner": { + "username": "davidsneighbour", + "email": "pkollitsch+isadev@gmail.com" + }, + "records": { + "URL": "https://github.com/davidsneighbour/", + "MX": ["smtp.google.com"] + } +} diff --git a/domains/davipatricio.json b/domains/davipatricio.json index a84beecb9..0d082b34b 100644 --- a/domains/davipatricio.json +++ b/domains/davipatricio.json @@ -5,7 +5,7 @@ "username": "davipatricio", "email": "davipatricio@protonmail.com" }, - "record": { + "records": { "URL": "https://davipatricio.vercel.app" } } diff --git a/domains/davr.json b/domains/davr.json new file mode 100644 index 000000000..5608f76fc --- /dev/null +++ b/domains/davr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cernoh", + "email": "davincey06@gmail.com" + }, + "records": { + "CNAME": "neobrutal-resume-vercel.vercel.app" + } +} diff --git a/domains/dawnbreaker.json b/domains/dawnbreaker.json index 92b0a6e03..8c8c19c24 100644 --- a/domains/dawnbreaker.json +++ b/domains/dawnbreaker.json @@ -3,7 +3,7 @@ "username": "DawnBreaker0013", "email": "dawnbreaker0013@gmail.com" }, - "record": { - "A": ["34.168.171.130"] + "records": { + "A": ["35.199.176.130"] } } diff --git a/domains/dawngs.json b/domains/dawngs.json index 5fa2d37db..5c1785c86 100644 --- a/domains/dawngs.json +++ b/domains/dawngs.json @@ -1,10 +1,9 @@ { "owner": { "username": "victorydawn", - "discord": "857502876108193812", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.S_DCHAmFXmGL-zHL3zCs_81ah4-EB7x8_fwBZDVftkekBmevyTldQ6Dw3rhFKcpduHDyMa6Q44sfAd6g4SVY3T0FD4p6fPvmgy1POx6rZ7AcprYZiVr9eotOnZTEedDfVzuTeLi-U0w-_MqeAfleG0p64lYJUYjvJh_4Y8rFvn53UI1k2qV5V4TI7e_1JVv67QusofXJjzOu55AMXhktWh90ZDXzXzJ-qA-nuCR6hQD4tE5ThtDYw_mGyN-ZF6vIVSfd7AUlzhsUGYwvxCQvKs_Rbmsf8yvq1MVW-7SWQq8RRzt1dvxW4aUTwgwKPLMim8XcSEKebzsmQB8ata4DhA.AZSfgy_SB9lX8TZcILDNVQ.3JcUQKM0gLy5ls6IeYSHcQxzUuynIfdrq64S4hT8xyGsjZFl9cHQajlx0gaNV3xzEhn_ZJSTCFqVnwBxCHHOaOgDHLC1rfWl9_Jhk8X8-HI.Hj4SUpt1LqpeN7Xo5clt5A" + "discord": "857502876108193812" }, - "record": { + "records": { "CNAME": "dgsbot.pages.dev" } } diff --git a/domains/daxoron.json b/domains/daxoron.json index 908e699c0..bb95bbbf5 100644 --- a/domains/daxoron.json +++ b/domains/daxoron.json @@ -5,7 +5,7 @@ "username": "daxoron", "email": "daxoron.dev@gmail.com" }, - "record": { + "records": { "CNAME": "daxoron.github.io" } } diff --git a/domains/dayowebevents.json b/domains/dayowebevents.json index 39803e0f4..a7add50e7 100644 --- a/domains/dayowebevents.json +++ b/domains/dayowebevents.json @@ -5,7 +5,7 @@ "username": "dbillion", "email": "dayozoe@gmail.com" }, - "record": { + "records": { "CNAME": "dbillion.github.io" } } diff --git a/domains/dc.jakub.json b/domains/dc.jakub.json index dffc51f8d..834ecadad 100644 --- a/domains/dc.jakub.json +++ b/domains/dc.jakub.json @@ -3,7 +3,7 @@ "username": "Jakubk15", "email": "jakubk15@protonmail.com" }, - "record": { + "records": { "URL": "https://discord.gg/FQ7jmGBd6c" } } diff --git a/domains/de.mcstatus.json b/domains/de.mcstatus.json index 718903a27..758106bcc 100644 --- a/domains/de.mcstatus.json +++ b/domains/de.mcstatus.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Pe5ZJbpCemxi3LNkJueUT8yXsbcvTYMB8kUNIcrEiMQ74S1tK_AKJQNr8z91rdDCgnQrkwm4IXOdg0hVfesD6BNXzdkk0tbCa_XMhMcWXySl4FxpBplksSYowTFn8kt71dC6wziz-bIxHqiV05qq8iQz4no4dRx7y201eFhYjHwohmgsDVuHo-RKwWPZb4DQ3pU9q-Kmj3S9oYzbSyeJwzBTOvNZMfTH3mg62WM-8LX9kCEzSxt0RMZonEWBR4iwDfHW4RTL5_q3cM6YlQZgZhMskM0d2qjfW41Z1Rgkk-LoK_Ocy4FgexKGSSQB1ELvKKiB3HIx8SzAJGOUN5embQ.tVHlDE7ViTBjpMwwBziXWg.sxxbX9aYI6LgcOWeVuPJb3-ElpjibO2jA2oyPETPZxVDbxFv-u2NHToDpur3BlAbrqPxdyoD6Axx_khEsNdkCYAFu7US9cMPo7VQvlXgyQRFJSb2_UzskvshnTNO5j-x.-2VA5T7QSGPdyTxNk00KGQ" + "discord": "1167825360151380032" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/dead.json b/domains/dead.json index ba1cb3eb3..b6dd3bc6f 100644 --- a/domains/dead.json +++ b/domains/dead.json @@ -3,7 +3,7 @@ "username": "w8dead", "email": "w8dead@proton.me" }, - "record": { + "records": { "URL": "https://www.instagram.com/w8dead/" } } diff --git a/domains/deadcode.json b/domains/deadcode.json index 3f6820198..8bd51eb40 100644 --- a/domains/deadcode.json +++ b/domains/deadcode.json @@ -7,7 +7,7 @@ "bluesky": "kanshen.click", "telegram": "richardkanskje" }, - "record": { + "records": { "CNAME": "deadcodegames.github.io" } } diff --git a/domains/deadshot.json b/domains/deadshot.json index 87b118666..007115999 100644 --- a/domains/deadshot.json +++ b/domains/deadshot.json @@ -1,12 +1,12 @@ { - "description": "Updated Website 2023 Edition Haha", - "repo": "https://github.com/deadshotofficial/deadshotofficial.github.io", + "description": "A simple portfolio template made by me.", + "repo": "https://github.com/deadshotofficial/minimal-portfolio", "owner": { "username": "deadshotofficial", "email": "deadshot3r@pm.me", - "twitter": "deadshot3r" + "discord": "416952474587496449" }, - "record": { - "CNAME": "deadshotofficial.github.io" + "records": { + "CNAME": "deadshotdev.vercel.app" } } diff --git a/domains/dean.json b/domains/dean.json index 87f408ef1..a4097ce17 100644 --- a/domains/dean.json +++ b/domains/dean.json @@ -5,7 +5,7 @@ "username": "dandepan303", "email": "dandepan303@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/debaditya.json b/domains/debaditya.json new file mode 100644 index 000000000..22cedc90f --- /dev/null +++ b/domains/debaditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DebadityaMalakar", + "email": "debadityamalakar@outlook.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/debaleena.json b/domains/debaleena.json index c35b0bf47..6d8ebd0eb 100644 --- a/domains/debaleena.json +++ b/domains/debaleena.json @@ -5,7 +5,7 @@ "username": "Debaleena84", "email": "des.debaleenabasu@gmail.com" }, - "record": { + "records": { "CNAME": "debaleena84.github.io" } } diff --git a/domains/debarchito.json b/domains/debarchito.json index a1f70aed8..d43ab5c05 100644 --- a/domains/debarchito.json +++ b/domains/debarchito.json @@ -4,7 +4,7 @@ "email": "debarchitonath@gmail.com", "discord": "739497344780992564" }, - "record": { + "records": { "CNAME": "debarchito.github.io" } } diff --git a/domains/debargha.json b/domains/debargha.json index 19858ac44..9ff4949f8 100644 --- a/domains/debargha.json +++ b/domains/debargha.json @@ -3,7 +3,7 @@ "username": "DebarghaXD", "email": "somachattaraj77@gmail.com" }, - "record": { + "records": { "CNAME": "debargha.pages.dev" } } diff --git a/domains/debasishdutta.json b/domains/debasishdutta.json index 4720b06b8..96902d106 100644 --- a/domains/debasishdutta.json +++ b/domains/debasishdutta.json @@ -3,7 +3,7 @@ "username": "debasish-dutta", "email": "ddmasterdon@gmail.com" }, - "record": { + "records": { "CNAME": "debasish-dutta.github.io" } } diff --git a/domains/debertjamie.json b/domains/debertjamie.json index 299834afc..a28edd71b 100644 --- a/domains/debertjamie.json +++ b/domains/debertjamie.json @@ -1,11 +1,10 @@ { "description": "A personal website", - "repo": "https://github.com/debertjamie", "owner": { "username": "debertjamie", "email": "debert123@protonmail.com" }, - "record": { + "records": { "CNAME": "debertjamie.up.railway.app" } } diff --git a/domains/debjit.json b/domains/debjit.json index 5c9f21bfa..5c7e72441 100644 --- a/domains/debjit.json +++ b/domains/debjit.json @@ -3,7 +3,7 @@ "username": "mysticdebjit", "email": "debjitmandal8925@gmail.com" }, - "record": { + "records": { "CNAME": "mysticdebjit.github.io" } } diff --git a/domains/debjoti-mallick.json b/domains/debjoti-mallick.json new file mode 100644 index 000000000..7765cc266 --- /dev/null +++ b/domains/debjoti-mallick.json @@ -0,0 +1,11 @@ +{ + "description": "Debjoti's portfolio website", + "owner": { + "username": "DebjotiMallick", + "email": "debjoti97@gmail.com" + }, + "records": { + "CNAME": "debjotimallick.github.io" + }, + "proxied": true +} diff --git a/domains/debjotimallick.json b/domains/debjotimallick.json new file mode 100644 index 000000000..77650705d --- /dev/null +++ b/domains/debjotimallick.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain is for my own testing and learning purpose.", + "repo": "https://github.com/DebjotiMallick/debjotimallick.github.io", + "owner": { + "username": "debjotimallick", + "email": "debjoti97@gmail.com" + }, + "records": { + "NS": ["art.ns.cloudflare.com", "liz.ns.cloudflare.com"] + } +} diff --git a/domains/debkanchan.json b/domains/debkanchan.json new file mode 100644 index 000000000..c747487c9 --- /dev/null +++ b/domains/debkanchan.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/debkanchan/debkanchan.github.io", + "owner": { + "username": "debkanchan", + "email": "debu.samadder@gmail.com" + }, + "records": { + "CNAME": "debkanchan.github.io" + } +} diff --git a/domains/debs.json b/domains/debs.json new file mode 100644 index 000000000..d76af097b --- /dev/null +++ b/domains/debs.json @@ -0,0 +1,11 @@ +{ + "description": "Deb's Personal Portfolio Page", + "repo": "https://github.com/deboneil07/deboneil07.github.io", + "owner": { + "username": "deboneil07", + "email": "bhattacharjeedeboneil@gmail.com" + }, + "records": { + "CNAME": "deboneil07.github.io" + } +} diff --git a/domains/debtlessflea.json b/domains/debtlessflea.json index b565cd664..f0470ec2e 100644 --- a/domains/debtlessflea.json +++ b/domains/debtlessflea.json @@ -3,7 +3,7 @@ "username": "DebtlessFlea", "email": "citizen.caption020@passfwd.com" }, - "record": { + "records": { "CNAME": "debtlessflea.github.io" } } diff --git a/domains/debug.json b/domains/debug.json index 5c191ce30..6672d9814 100644 --- a/domains/debug.json +++ b/domains/debug.json @@ -4,7 +4,7 @@ "username": "extremepro999", "email": "debugdotlog@zohomail.in" }, - "record": { + "records": { "CNAME": "extremepro999.github.io" } } diff --git a/domains/debxd.json b/domains/debxd.json index 749647026..d566bc83c 100644 --- a/domains/debxd.json +++ b/domains/debxd.json @@ -3,7 +3,7 @@ "username": "DebXD", "email": "debiprasadxd@protonmail.com" }, - "record": { + "records": { "CNAME": "debxd.github.io" } } diff --git a/domains/decentparadox.json b/domains/decentparadox.json index 9125c32f2..a97f7eee3 100644 --- a/domains/decentparadox.json +++ b/domains/decentparadox.json @@ -3,7 +3,7 @@ "username": "decentparadox", "email": "BackendBeast@gmail.com" }, - "record": { + "records": { "CNAME": "personalweb-aiq.pages.dev" } } diff --git a/domains/declan.json b/domains/declan.json index d567bc965..b4b216fb3 100644 --- a/domains/declan.json +++ b/domains/declan.json @@ -3,7 +3,7 @@ "username": "declanwn", "email": "declanwnickerson@gmail.com" }, - "record": { + "records": { "A": ["67.246.110.110"] } } diff --git a/domains/dedchromebook.json b/domains/dedchromebook.json index 6ad989902..30bef6b27 100644 --- a/domains/dedchromebook.json +++ b/domains/dedchromebook.json @@ -1,10 +1,9 @@ { "owner": { "username": "codeguy271", - "discord": "1202358603940634688", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gRr1nTTedMATs4ZQU5s4A8Lh3q4LynuuIJHkrxOAOWm3r-j8-NSpt3dt8L4Q3RU3oPVdYNaY3tdyZByDzzxQ4-PecHOLT43Rl-MK_detKgY_EZftBWJYQictpGxxFSIl8a92vK301OBG2oeF-bAAxLBKDAeXvjCWytYlJfMCMsfeEQ9NYF1gj17rr0BEO_KuyiC9rJZkjOELpHJQNSqYt1WEBhmiAjjpTLNGD0JyfNfGSU5JfFo6uyXTjj__qFECYyl_dadHETuRcYrQo5O91H8sJ2svrNZqcizfnWI-YLgiaWaFtK1nxHN1QQUum9D2cN0aKLd_BlYiQ5oooApkcA.vuPJ73qwLyIUcK0rgaSkbA.g9FrLxKMkTkQJl9mRMa7FZrWSRiVwaHSNXzG5SSh1V3nwrkgZWKpYi1vHXoAIMwCeyCf1qMrH1J8SYLRCy_X0FZiS5rxkbvYNuyIH8N4j-g.E69eeuRwY1wwLvL3V1SCZQ" + "discord": "1202358603940634688" }, - "record": { + "records": { "CNAME": "codeguy271.github.io" } } diff --git a/domains/deekshasharma.json b/domains/deekshasharma.json index 4c7d3ed4d..6d7a3280e 100644 --- a/domains/deekshasharma.json +++ b/domains/deekshasharma.json @@ -4,7 +4,7 @@ "username": "Deeksha2501", "email": "sharmadeeksha325@gmail.com" }, - "record": { + "records": { "URL": "http://deekshasharma.vercel.app" } } diff --git a/domains/deepak.json b/domains/deepak.json index 2f7d89e18..b376ebc62 100644 --- a/domains/deepak.json +++ b/domains/deepak.json @@ -5,7 +5,7 @@ "username": "marchinghunter", "email": "dm6593120@gmail.com" }, - "record": { + "records": { "CNAME": "marchinghunter.github.io" } } diff --git a/domains/deepesh.json b/domains/deepesh.json index f57c250d9..1a6a93863 100644 --- a/domains/deepesh.json +++ b/domains/deepesh.json @@ -5,7 +5,7 @@ "username": "DeepeshXCodes", "email": "deepesh.chakravartii@gmail.com" }, - "record": { + "records": { "CNAME": "deepeshxcodes.github.io" } } diff --git a/domains/deepraj.json b/domains/deepraj.json index 62cf1114d..45bbcf5d0 100644 --- a/domains/deepraj.json +++ b/domains/deepraj.json @@ -3,7 +3,7 @@ "username": "deepraj21", "email": "deepraj21.bera@gmail.com" }, - "record": { + "records": { "CNAME": "deepraj21.github.io" } } diff --git a/domains/deeptanshu.json b/domains/deeptanshu.json new file mode 100644 index 000000000..148f9e1f8 --- /dev/null +++ b/domains/deeptanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Deeptanshuu", + "email": "laldeeptanshu96@gmail.com" + }, + "records": { + "CNAME": "deeptanshu.vercel.app" + } +} diff --git a/domains/default._domainkey.yxz.json b/domains/default._domainkey.yxz.json index db0fb2718..8a51fe372 100644 --- a/domains/default._domainkey.yxz.json +++ b/domains/default._domainkey.yxz.json @@ -1,14 +1,13 @@ { "owner": { "username": "yz9551", - "email": "", "discord": "yz9551" }, - "record": { + "records": { "TXT": [ - "v=DKIM1; h=sha256; k=rsa; ", - "p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkZrPwMQ7rlS6FhIaX5RgqWzKC1RdCB6GmxsdtKVbqGVzQX6WiwFXrgfQ3SqxlZXc1w+YFD7u2NFUahq+wgBnUos9ZwkmezRjq/toAEWuEV7ATtQDuWZNE6O9ab37I36rXT4pmJHZq5BGgXAY8ILKHQ6F1ZNWw7+nzCggeiGezTG8beMjnN3jy+PMafC5Q1cUZXYHme/F301Otj", - "H4U6OpMzG4pWCFH3mXK14MeSff0m4ltcB5LkenlvANWm5nU+W+hssBL58iBKdFYIAz7rYoJs5OM2JO8wZZ6NFrWxtEYSjbMasq3mG4BkSP8+o0/Cp/UTARvp6XoG+T6V1E6OPyTwIDAQAB" + "v=DKIM1; h=sha256; k=rsa; ", + "p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkZrPwMQ7rlS6FhIaX5RgqWzKC1RdCB6GmxsdtKVbqGVzQX6WiwFXrgfQ3SqxlZXc1w+YFD7u2NFUahq+wgBnUos9ZwkmezRjq/toAEWuEV7ATtQDuWZNE6O9ab37I36rXT4pmJHZq5BGgXAY8ILKHQ6F1ZNWw7+nzCggeiGezTG8beMjnN3jy+PMafC5Q1cUZXYHme/F301Otj", + "H4U6OpMzG4pWCFH3mXK14MeSff0m4ltcB5LkenlvANWm5nU+W+hssBL58iBKdFYIAz7rYoJs5OM2JO8wZZ6NFrWxtEYSjbMasq3mG4BkSP8+o0/Cp/UTARvp6XoG+T6V1E6OPyTwIDAQAB" ] } } diff --git a/domains/defective.json b/domains/defective.json index ed9823cdc..85660cc1a 100644 --- a/domains/defective.json +++ b/domains/defective.json @@ -5,7 +5,7 @@ "username": "Defective4", "email": "def3ctive4@gmail.com" }, - "record": { + "records": { "CNAME": "defective4.github.io" } } diff --git a/domains/dehteam3.json b/domains/dehteam3.json index c3f8c268d..6e3db7fa6 100644 --- a/domains/dehteam3.json +++ b/domains/dehteam3.json @@ -5,7 +5,7 @@ "username": "dehteam3", "email": "thomasemad2008@gmail.com" }, - "record": { + "records": { "CNAME": "dehteam3.github.io" } } diff --git a/domains/deko.json b/domains/deko.json index ee86dab3e..e904b0dcc 100644 --- a/domains/deko.json +++ b/domains/deko.json @@ -3,7 +3,7 @@ "username": "ukriu", "email": "isadev@ukriu.com" }, - "record": { + "records": { "URL": "https://ukriu.com" } } diff --git a/domains/delasheras.json b/domains/delasheras.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/delasheras.json +++ b/domains/delasheras.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/deliable.json b/domains/deliable.json index 86994bae4..380119274 100644 --- a/domains/deliable.json +++ b/domains/deliable.json @@ -4,7 +4,7 @@ "username": "Deliable", "email": "rbstsoul@gmail.com" }, - "record": { + "records": { "CNAME": "5e125b8d47-hosting.gitbook.io" } } diff --git a/domains/delta.json b/domains/delta.json index 5a49e6593..7d9992285 100644 --- a/domains/delta.json +++ b/domains/delta.json @@ -5,7 +5,7 @@ "username": "LeoCatsune", "twitter": "LeoCatsune" }, - "record": { + "records": { "CNAME": "leocatsune.github.io" } } diff --git a/domains/deltafumble.json b/domains/deltafumble.json index e92e926be..2b961e105 100644 --- a/domains/deltafumble.json +++ b/domains/deltafumble.json @@ -6,7 +6,7 @@ "email": "deltafumblecontact@skiff.com", "twitter": "deltafumble" }, - "record": { + "records": { "CNAME": "deltafumble.github.io" } } diff --git a/domains/deltara.json b/domains/deltara.json index 46bfa8c52..a1ffec4d4 100644 --- a/domains/deltara.json +++ b/domains/deltara.json @@ -3,7 +3,7 @@ "username": "Deltara3", "email": "boided420@gmail.com" }, - "record": { + "records": { "CNAME": "deltara3.github.io" } } diff --git a/domains/dem0n.json b/domains/dem0n.json index 6831a30e7..100d5e002 100644 --- a/domains/dem0n.json +++ b/domains/dem0n.json @@ -3,7 +3,7 @@ "username": "probablydem0n", "discord": "935272776586129419" }, - "record": { + "records": { "CNAME": "probablydem0n.github.io" } } diff --git a/domains/demir.json b/domains/demir.json index c9e9d39d4..213e76e40 100644 --- a/domains/demir.json +++ b/domains/demir.json @@ -3,7 +3,7 @@ "username": "demirdegerli", "email": "demirdegerli@protonmail.com" }, - "record": { + "records": { "URL": "https://demirdegerli.com" } } diff --git a/domains/demo.mcstatus.json b/domains/demo.mcstatus.json index ac2255ca1..8aaf62192 100644 --- a/domains/demo.mcstatus.json +++ b/domains/demo.mcstatus.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "CNAME": "bff5bd034c7fbbeafaaf626f505c8cc5.ipv4.tcpshield.com" } } diff --git a/domains/demon.json b/domains/demon.json index 1479da917..500832433 100644 --- a/domains/demon.json +++ b/domains/demon.json @@ -3,7 +3,7 @@ "username": "patilranjit485", "email": "patilranjit2610@gmail.com" }, - "record": { + "records": { "CNAME": "demon-brother.blogspot.com" } } diff --git a/domains/demonitize.json b/domains/demonitize.json index 584370880..e5b5b88d6 100644 --- a/domains/demonitize.json +++ b/domains/demonitize.json @@ -6,8 +6,7 @@ "discord": "demonitize" }, "description": "Probably will use this to redirect to GitHub, because custom domain look cool", - "repo": "https://github.com/demonitize", - "record": { + "records": { "URL": "https://github.com/demonitize", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "dh=09350922b05d5a2bcc4a3b4b16c9ef4c0deecb79 v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/demonkingswarn.json b/domains/demonkingswarn.json index 23363baa4..e545c22f8 100644 --- a/domains/demonkingswarn.json +++ b/domains/demonkingswarn.json @@ -5,7 +5,7 @@ "username": "DemonKingSwarn", "email": "demonkingswarn@protonmail.com" }, - "record": { + "records": { "CNAME": "demonkingswarn.github.io" } } diff --git a/domains/den.json b/domains/den.json index b6efc9d4e..0e6c6acf1 100644 --- a/domains/den.json +++ b/domains/den.json @@ -4,7 +4,7 @@ "username": "DenStudies7700", "discord": "ImDenver#7700" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/denblo.json b/domains/denblo.json new file mode 100644 index 000000000..7468830c3 --- /dev/null +++ b/domains/denblo.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/DenisBlokhin/DenisBlokhin.github.io", + "owner": { + "username": "DenisBlokhin", + "email": "denis.blokhin@outlook.com" + }, + "records": { + "CNAME": "denisblokhin.github.io" + } +} diff --git a/domains/denboy0123.json b/domains/denboy0123.json index 46dc74d46..72f877a2c 100644 --- a/domains/denboy0123.json +++ b/domains/denboy0123.json @@ -3,7 +3,7 @@ "username": "denboy0123", "email": "pochtaproverka01@gmail.com" }, - "record": { + "records": { "URL": "https://t.me/s/denboy0123" } } diff --git a/domains/denis.json b/domains/denis.json index 41f9e61b3..7a0d32de4 100644 --- a/domains/denis.json +++ b/domains/denis.json @@ -3,7 +3,7 @@ "username": "DenLes", "email": "denislessard91@gmail.com" }, - "record": { + "records": { "CNAME": "denles.github.io" } } diff --git a/domains/denisklimenko.json b/domains/denisklimenko.json deleted file mode 100644 index 78592746b..000000000 --- a/domains/denisklimenko.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "DenisKlimenko", - "email": "denis.klimenko.92@gmail.com" - }, - "record": { - "NS": ["destiny.ns.cloudflare.com", "kirk.ns.cloudflare.com"] - } -} diff --git a/domains/denix.json b/domains/denix.json index 29ef14b0e..67ba10712 100644 --- a/domains/denix.json +++ b/domains/denix.json @@ -5,7 +5,7 @@ "twitter": "denixsucks", "discord": "denix#9748" }, - "record": { + "records": { "CNAME": "denixsucks.github.io" } } diff --git a/domains/deniz.json b/domains/deniz.json index e88872028..fffec122c 100644 --- a/domains/deniz.json +++ b/domains/deniz.json @@ -4,10 +4,15 @@ "owner": { "username": "creeperkafasi", "twitter": "_creeperkafasi_", - "discord": "creeperkafasipw#1861", + "discord": "creeperkafasi", "note": "I don't use twitter that much, you may have a better chance to contact me through discord" }, - "record": { - "CNAME": "creeperkafasi.github.io" + "records": { + "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=MDcyNzA3YjVlMTdjNzhhYS1iMzA0NDgxN2RjMmZiODZhODI5Y2UyNmUzNzY5NjJhZWZkMTA4MjBlNDEyYTk3MTc0MjhkN2NlMmQxNWQ5MmFi", + "google-site-verification=9jbck7qUZb10EWndaXLikv_Kx9xQ7DpShwFCttIzA6Q" + ] } } diff --git a/domains/dennis.json b/domains/dennis.json index 1e39a6ad4..070fb4d05 100644 --- a/domains/dennis.json +++ b/domains/dennis.json @@ -5,7 +5,7 @@ "username": "dvandervlag", "email": "dvandervlag@gmail.com" }, - "record": { + "records": { "CNAME": "dvandervlag.github.io" } } diff --git a/domains/denty.json b/domains/denty.json new file mode 100644 index 000000000..c6e285d55 --- /dev/null +++ b/domains/denty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dentylife", + "email": "dentyaptx@gmail.com" + }, + "records": { + "A": ["158.101.152.7"] + } +} diff --git a/domains/denver.json b/domains/denver.json index 70fde89b3..beab424a3 100644 --- a/domains/denver.json +++ b/domains/denver.json @@ -5,7 +5,7 @@ "username": "DenStudies7700", "discord": "ImDenver#7700" }, - "record": { + "records": { "CNAME": "densite-development-7700.up.railway.app" } } diff --git a/domains/deoxy.json b/domains/deoxy.json index 63c2627bf..153147ca9 100644 --- a/domains/deoxy.json +++ b/domains/deoxy.json @@ -5,7 +5,7 @@ "discord": "DEOXY#1038", "twitter": "d3oxyxd" }, - "record": { + "records": { "URL": "https://deoxy.dev" } } diff --git a/domains/designer.json b/domains/designer.json index 372fd5d72..68f03f52d 100644 --- a/domains/designer.json +++ b/domains/designer.json @@ -1,11 +1,10 @@ { "description": "Designer Slash Developer", - "repo": "https://github.com/designbyadrian", "owner": { "username": "designbyadrian", "email": "adrian@designbyadrian.com" }, - "record": { + "records": { "CNAME": "designbyadrian.com" } } diff --git a/domains/desiredesign.json b/domains/desiredesign.json index 91c68269c..1f16bfc27 100644 --- a/domains/desiredesign.json +++ b/domains/desiredesign.json @@ -3,7 +3,7 @@ "username": "Gh053d413x", "email": "ghostedalex@gmail.com" }, - "record": { + "records": { "URL": "https://sites.google.com/view/desiredesign" } } diff --git a/domains/detox.json b/domains/detox.json index ac6cd4317..7eee87e0e 100644 --- a/domains/detox.json +++ b/domains/detox.json @@ -4,7 +4,7 @@ "username": "Detox82517", "email": "detox07@gmx.net" }, - "record": { + "records": { "CNAME": "detox82517.github.io" } } diff --git a/domains/dev-dco.json b/domains/dev-dco.json index e81a86e85..ed8bd305d 100644 --- a/domains/dev-dco.json +++ b/domains/dev-dco.json @@ -5,7 +5,7 @@ "username": "dev-dco", "email": "dev-coop@murena.io" }, - "record": { + "records": { "CNAME": "dev-dco.github.io" } } diff --git a/domains/dev.acronical.json b/domains/dev.acronical.json index 160a0a613..e6230008e 100644 --- a/domains/dev.acronical.json +++ b/domains/dev.acronical.json @@ -3,7 +3,7 @@ "username": "AcronicalYT", "email": "acronicalbusiness@gmail.com" }, - "record": { + "records": { "CNAME": "dev.acronical.pages.dev" } } diff --git a/domains/dev.charlesbird.json b/domains/dev.charlesbird.json index 2b232ffcd..2674587c9 100644 --- a/domains/dev.charlesbird.json +++ b/domains/dev.charlesbird.json @@ -3,7 +3,7 @@ "username": "UntoldGam", "email": "charlessbird+github@outlook.com" }, - "record": { + "records": { "CNAME": "dev.charlesobird.pages.dev" } } diff --git a/domains/dev.json b/domains/dev.json deleted file mode 100644 index d38e86931..000000000 --- a/domains/dev.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "gsdev215", - "email": "dev1050d2@gmail.com" - }, - "record": { - "CNAME": "gsdev215.github.io" - } -} diff --git a/domains/dev.udhaya.json b/domains/dev.udhaya.json index 6e833a081..b9541ccad 100644 --- a/domains/dev.udhaya.json +++ b/domains/dev.udhaya.json @@ -4,7 +4,7 @@ "username": "xaceduke", "email": "kinghtth0@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/dev.wilbur.json b/domains/dev.wilbur.json deleted file mode 100644 index 37ccb0959..000000000 --- a/domains/dev.wilbur.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ThisCatLikesCrypto", - "email": "contact@wilburwilliams.uk" - }, - "record": { - "CNAME": "dev.ww-projects.pages.dev" - } -} diff --git a/domains/dev10us.json b/domains/dev10us.json index 3f45376ae..4fd2a6879 100644 --- a/domains/dev10us.json +++ b/domains/dev10us.json @@ -5,7 +5,7 @@ "username": "melonmasteristaken", "email": "melonmasteristaken@gmail.com" }, - "record": { + "records": { "CNAME": "dev10us1ty.github.io" } } diff --git a/domains/deva.json b/domains/deva.json index b5f86d518..b034262f7 100644 --- a/domains/deva.json +++ b/domains/deva.json @@ -4,7 +4,7 @@ "username": "turbomaster95", "email": "devamidhun.3c.kmbvm@gmail.com" }, - "record": { + "records": { "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 index d0a2ef59c..c5cd65069 100644 --- a/domains/devabh.json +++ b/domains/devabh.json @@ -1,11 +1,9 @@ { "owner": { "username": "devabh96", - "email": "", - "discord": "760049962544791562", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cj4_MgLnwmfo1F0NcZvbKIKDQ23CcQAIjYT0X3SmU1YAipr02XR4E11TQqZIzlM6hPwbHUbB59OQx_zkcuN9JO2VaTteS_TpZZ8ytvxfdl60QtGhSAD3Q9zm0-oKKAbVEjR-EzEEwpftzw8VwQlQIgiYbXjZibHKp2D3KbKOB3J-C3cl5LBHhMKPFsFj6N12jwFDzrQeDO8mCrTgKX1D3YpiZaVkhMhuKVFwE0V2vXSx-JidQi3yz--KWLsfXZETU8YAVwFsEAroWLcerWOcNPYejvjQ51VMQDqaRz00AkTByNXXWYo1Q4q4wlZJd0wSIoKoK0iuvkPhSacjP6kW4A.yDr4bOjKGS35kiQ-0Tzj5Q.SrpxNDOW7NpFpZmetH-qJMomCelSSw3YTBGL3Vu2AtdYZ1OVQYWk8yhfGU0kVwyB4wAlPIQYaC2UXDqJXrHqSEmcK-P8f0uvKUiwaKHtaEw.Or8kZv4I4r03hoGLMr7MyQ" + "discord": "760049962544791562" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/devan.json b/domains/devan.json index bc9be1737..9bb5b55a0 100644 --- a/domains/devan.json +++ b/domains/devan.json @@ -4,7 +4,7 @@ "username": "devanwashere", "email": "devan@devan.cool" }, - "record": { + "records": { "CNAME": "devanwashere.github.io" } } diff --git a/domains/devanmed.json b/domains/devanmed.json index 5d2d9529c..67e6bcc85 100644 --- a/domains/devanmed.json +++ b/domains/devanmed.json @@ -3,7 +3,7 @@ "username": "devan2051", "discord": "EvilPixel#5161" }, - "record": { + "records": { "URL": "https://sites.google.com/view/devanmed/home" } } diff --git a/domains/devansh.json b/domains/devansh.json index 4b2903fa9..e5fa056f6 100644 --- a/domains/devansh.json +++ b/domains/devansh.json @@ -6,7 +6,7 @@ "email": "dev8adam576@gmail.com", "twitter": "devanshyadav" }, - "record": { + "records": { "CNAME": "devanshyadav2010.github.io" } } diff --git a/domains/devanshu.json b/domains/devanshu.json new file mode 100644 index 000000000..2430cb2f1 --- /dev/null +++ b/domains/devanshu.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/DevanshuTripathi/portfolio", + "owner": { + "username": "DevanshuTripathi", + "email": "aditheprince120@gmail.com" + }, + "records": { + "CNAME": "portfolio-nine-xi-16.vercel.app" + } +} diff --git a/domains/devbrainless.json b/domains/devbrainless.json index 5a319d07f..4dc4b0571 100644 --- a/domains/devbrainless.json +++ b/domains/devbrainless.json @@ -3,7 +3,7 @@ "username": "Badless", "email": "karolczeeek@gmail.com" }, - "record": { + "records": { "CNAME": "badless.github.io" } } diff --git a/domains/devcomp.json b/domains/devcomp.json index 53f875fe9..2bd0498e7 100644 --- a/domains/devcomp.json +++ b/domains/devcomp.json @@ -1,11 +1,10 @@ { "description": "Cool looking redirection for my site.", - "repo": "https://github.com/CompeyDev", "owner": { "username": "CompeyDev", "email": "hi@devcomp.xyz" }, - "record": { + "records": { "URL": "https://p.devcomp.xyz" } } diff --git a/domains/devdaim.json b/domains/devdaim.json index d5a26fbd3..dac345668 100644 --- a/domains/devdaim.json +++ b/domains/devdaim.json @@ -3,7 +3,7 @@ "username": "sYnceDez41", "email": "daimdev6@gmail.com" }, - "record": { + "records": { "A": ["4.247.175.26"] } } diff --git a/domains/devdk.json b/domains/devdk.json index 273fbc32a..d087afdc8 100644 --- a/domains/devdk.json +++ b/domains/devdk.json @@ -4,7 +4,7 @@ "username": "DeveloperDmitryKolyadin", "twitter": "_DevDK" }, - "record": { + "records": { "CNAME": "developerdmitrykolyadin.github.io" } } diff --git a/domains/developer.json b/domains/developer.json index 3e2cd1158..e1808cd2a 100644 --- a/domains/developer.json +++ b/domains/developer.json @@ -3,7 +3,7 @@ "username": "Saharsh1223", "email": "psaharsh2@gmail.com" }, - "record": { + "records": { "CNAME": "sup4321.github.io" } } diff --git a/domains/developerjosh.json b/domains/developerjosh.json index db5fc7e8a..0b5f51c3a 100644 --- a/domains/developerjosh.json +++ b/domains/developerjosh.json @@ -6,7 +6,7 @@ "email": "joshwells409@gmail.com", "youtube": "godly-hosting" }, - "record": { + "records": { "CNAME": "developerjosh.github.io" } } diff --git a/domains/devendra.json b/domains/devendra.json index 93c05e163..1949ab5f5 100644 --- a/domains/devendra.json +++ b/domains/devendra.json @@ -3,7 +3,7 @@ "username": "devendrakanojiya", "email": "s_36100@bkbirlacollegekalyan.com" }, - "record": { + "records": { "CNAME": "devendrakanojiya.github.io" } } diff --git a/domains/devfate.json b/domains/devfate.json index 3f802d92e..73b849507 100644 --- a/domains/devfate.json +++ b/domains/devfate.json @@ -3,7 +3,7 @@ "username": "blackpandan", "twitter": "camzy_l" }, - "record": { + "records": { "CNAME": "blackpandan.github.io" } } diff --git a/domains/devghost.json b/domains/devghost.json new file mode 100644 index 000000000..74118b1e3 --- /dev/null +++ b/domains/devghost.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/thecodingwizardx/register.git", + "owner": { + "username": "thecodingwizardx", + "email": "murkyaxe@gmail.com" + }, + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/devhanza.json b/domains/devhanza.json index e7e14efc3..feaf070f0 100644 --- a/domains/devhanza.json +++ b/domains/devhanza.json @@ -3,7 +3,7 @@ "username": "DevHanza", "email": "josephandrew1@logicstreak.com" }, - "record": { - "URL": "https://hansana.is-a.dev/" + "records": { + "URL": "https://contra.com/devhanza/work" } } diff --git a/domains/devhavok.json b/domains/devhavok.json index fdaba2480..29686d137 100644 --- a/domains/devhavok.json +++ b/domains/devhavok.json @@ -5,7 +5,7 @@ "username": "Shaunfurtado", "email": "shaunf1801@gmail.com" }, - "record": { + "records": { "CNAME": "devhavok.github.io" } } diff --git a/domains/devlori.json b/domains/devlori.json index 6225cf861..ee23c3340 100644 --- a/domains/devlori.json +++ b/domains/devlori.json @@ -3,7 +3,7 @@ "username": "evefind", "email": "fivemgtarp50@gmail.com" }, - "record": { + "records": { "CNAME": "evefind.github.io" } } diff --git a/domains/devm.json b/domains/devm.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/devm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devma.json b/domains/devma.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/devma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmai.json b/domains/devmai.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/devmai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmat.json b/domains/devmat.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/devmat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmate.json b/domains/devmate.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/devmate.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmatei-again.json b/domains/devmatei-again.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/devmatei-again.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmatei.json b/domains/devmatei.json index 362b85d4b..cf487b38b 100644 --- a/domains/devmatei.json +++ b/domains/devmatei.json @@ -1,21 +1,11 @@ { - "owner": { - "username": "DevMatei", - "email": "matei.thoma@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ], - "MX": [ - "mx.zoho.eu", - "mx2.zoho.eu", - "mx3.zoho.eu" - ], - "TXT": [ - "v=spf1 include:zoho.eu ~all", - "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIOzUFPBEQXJA2Rh16fCXNC8YASZtoVbievhK2Wwof2/nd+TGcMiLhr9BT9Iiq7pc0zOlzA5fsCYzxXRpBQqiPvXQT/gYvWaVWIJaDSiQHuiz4mA8s8PEPX/iovSZWy4cCge9Gd1WKkFJLPHqVrFnOeVCPl8xFvcKU4z4uQIDAQAB" - ] - }, - "proxied": true + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev", + "discord": "784443338627612673", + "twitter": "thedevmatei" + }, + "records": { + "NS": ["chip.ns.cloudflare.com", "marjory.ns.cloudflare.com"] + } } diff --git a/domains/devmirza.json b/domains/devmirza.json index 2bd575190..5b05205ad 100644 --- a/domains/devmirza.json +++ b/domains/devmirza.json @@ -3,7 +3,7 @@ "username": "Zaid-maker", "email": "pzhafeez@gmail.com" }, - "record": { + "records": { "CNAME": "zaid-maker.github.io" } } diff --git a/domains/devon.json b/domains/devon.json index 3125a1dc1..4c100a188 100644 --- a/domains/devon.json +++ b/domains/devon.json @@ -2,10 +2,9 @@ "description": "Devon Powell is a full-stack software engineer", "repo": "https://github.com/D-Pow/d-pow.github.io", "owner": { - "username": "D-Pow", - "email": "D-Pow@users.noreply.github.com" + "username": "D-Pow" }, - "record": { + "records": { "CNAME": "d-pow.github.io" } } diff --git a/domains/devvault.json b/domains/devvault.json index fd8c87242..d471bfe20 100644 --- a/domains/devvault.json +++ b/domains/devvault.json @@ -5,7 +5,7 @@ "username": "DevVault", "email": "admin@devvault.ru" }, - "record": { + "records": { "CNAME": "devvault.github.io" } } diff --git a/domains/dewangseth.json b/domains/dewangseth.json new file mode 100644 index 000000000..a829fad3c --- /dev/null +++ b/domains/dewangseth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dewang2356", + "email": "dewangseth.com@gmail.com" + }, + "records": { + "CNAME": "dewang2356.github.io" + } +} diff --git a/domains/dexo.json b/domains/dexo.json index dd1b4b74c..d66530c44 100644 --- a/domains/dexo.json +++ b/domains/dexo.json @@ -3,7 +3,7 @@ "username": "DeXoHigh", "email": "dexo1337@pm.me" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/df.json b/domains/df.json new file mode 100644 index 000000000..712905c27 --- /dev/null +++ b/domains/df.json @@ -0,0 +1,11 @@ +{ + "description": "df's Dev Website", + "owner": { + "username": "DF-wu", + "linkedin": "https://www.linkedin.com/in/chufei-wu-b33990164/", + "email": "df@dfder.tw" + }, + "records": { + "CNAME": "df-wu.github.io" + } +} diff --git a/domains/dg23w6xwjtee.json b/domains/dg23w6xwjtee.json index 934acd7a8..a4cf86d95 100644 --- a/domains/dg23w6xwjtee.json +++ b/domains/dg23w6xwjtee.json @@ -4,7 +4,7 @@ "email": "kleeinlmao@gmail.com", "discord": "763581985410121769" }, - "record": { + "records": { "CNAME": "gv-q6wjma7mpehvc2.dv.googlehosted.com" } } diff --git a/domains/dgs.json b/domains/dgs.json index 2e9db8ecc..d8206345e 100644 --- a/domains/dgs.json +++ b/domains/dgs.json @@ -1,10 +1,9 @@ { "owner": { "username": "victorydawn", - "discord": "857502876108193812", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Mk7Ovfy1v5O45rik2XcBeQI94jklBWGmiCn27B2tMUKnwVKAQH5_fUE_DexQoYK6KgU9OgyBdzPtyTCGgYiFsAx-uRvdkt-EbMTF6rV1xNdEzmOKnCAUMdWAqb8pzGB32zQlJLNev7rhhqPgaLNd0GxuAMAsr9e1yuqjiabYtTHFiqRx_CITf1cr38q2Idgsb4QFkbaJCRuJ1WV5nuDGGftkI5FIrENB3BiauJ0kTA1cn_zxLS-kDCMwJ1vkmE2mW_2NBIEFfn-Eq9troZE2YICPBvKx9HcTnOQlP61mq3R8_ut7FoZeg8Ts44-1affR3OnbgAz_1Y_qT7ty9jnASg.Borc5KEWmWoWP6Af2GjWXw.OVNPGtv9qRGhSGqU39vXowD22fqLppnAHIlvDh24AAuHFYAmU0PpE3GuzbNo_RmuTlkx7TcEohJ3M_2sXtSshh6TkCYwZ2Edik5dh6ZFY50.6iMDFicGcVAP6sxWx_K1jQ" + "discord": "857502876108193812" }, - "record": { + "records": { "CNAME": "mydgs.pages.dev" } } diff --git a/domains/dhananjaypatil.json b/domains/dhananjaypatil.json index 9f5692cab..d27ca4453 100644 --- a/domains/dhananjaypatil.json +++ b/domains/dhananjaypatil.json @@ -3,7 +3,7 @@ "username": "dhananjay8", "email": "dhananjay.pict@gmail.com" }, - "record": { + "records": { "CNAME": "dhananjay8.github.io" } } diff --git a/domains/dhanush.json b/domains/dhanush.json index 76eda118d..442b08d37 100644 --- a/domains/dhanush.json +++ b/domains/dhanush.json @@ -5,7 +5,7 @@ "username": "b1ackshadow", "email": "actuallydc@gmail.com" }, - "record": { + "records": { "CNAME": "b1ackshadow.github.io" } } diff --git a/domains/dharamvir.json b/domains/dharamvir.json new file mode 100644 index 000000000..abe1738f2 --- /dev/null +++ b/domains/dharamvir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DH4R4M", + "email": "gohildharamvirsinh1530@gmail.com" + }, + "records": { + "CNAME": "DH4R4M.github.io" + } +} diff --git a/domains/dharmx.json b/domains/dharmx.json index 5f163dbc1..3dad7cc89 100644 --- a/domains/dharmx.json +++ b/domains/dharmx.json @@ -6,7 +6,7 @@ "email": "dharmx.dev@gmail.com", "discord": "dharmx#2556" }, - "record": { + "records": { "CNAME": "dharmx.github.io" } } diff --git a/domains/dharti-mungara.json b/domains/dharti-mungara.json index 23df2bd02..c3b17a816 100644 --- a/domains/dharti-mungara.json +++ b/domains/dharti-mungara.json @@ -4,7 +4,7 @@ "owner": { "username": "dharti-mungara" }, - "record": { + "records": { "CNAME": "dharti-mungara.github.io" } } diff --git a/domains/dhaval-kareliya.json b/domains/dhaval-kareliya.json index 9770ff48c..f470ec237 100644 --- a/domains/dhaval-kareliya.json +++ b/domains/dhaval-kareliya.json @@ -4,7 +4,7 @@ "owner": { "username": "dhaval-kareliya" }, - "record": { + "records": { "CNAME": "dhaval-kareliya.github.io" } } diff --git a/domains/dheirya.json b/domains/dheirya.json index 42984aa03..756b947e9 100644 --- a/domains/dheirya.json +++ b/domains/dheirya.json @@ -6,7 +6,7 @@ "email": "mail@socialrumbles.com", "twitter": "DheiryaTyagi" }, - "record": { + "records": { "CNAME": "dheirya.pages.dev" } } diff --git a/domains/dhika.json b/domains/dhika.json new file mode 100644 index 000000000..1c4df72f4 --- /dev/null +++ b/domains/dhika.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thisisdhika", + "email": "dhikaardana87@gmail.com" + }, + "records": { + "CNAME": "thisisdhika.vercel.app" + } +} diff --git a/domains/dhilipan.json b/domains/dhilipan.json index e622280bf..c2019160c 100644 --- a/domains/dhilipan.json +++ b/domains/dhilipan.json @@ -1,15 +1,11 @@ { "owner": { "username": "Dhilipan-Git", - "discord": "1306595993055268875", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" + "discord": "1306595993055268875" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"], - "TXT": [ - "sl-verification=wpdcbpaapmqwevjvnaifhpwdvozldi", - "v=spf1 include:simplelogin.co ~all" - ] + "TXT": ["sl-verification=wpdcbpaapmqwevjvnaifhpwdvozldi", "v=spf1 include:simplelogin.co ~all"] } } diff --git a/domains/dhinesh.json b/domains/dhinesh.json index 6741cf285..34ef458a7 100644 --- a/domains/dhinesh.json +++ b/domains/dhinesh.json @@ -5,7 +5,7 @@ "username": "mdhinesh", "email": "mdhinesh3103@gmail.com" }, - "record": { + "records": { "CNAME": "mdhinesh.github.io" } } diff --git a/domains/dhiraj.json b/domains/dhiraj.json index a70402313..f80e204aa 100644 --- a/domains/dhiraj.json +++ b/domains/dhiraj.json @@ -6,7 +6,7 @@ "email": "dhirajprajapati.co@gmail.com", "twitter": "DhruvInTech" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/dhlcgd.json b/domains/dhlcgd.json index 0f61df0fe..5f8ca4e06 100644 --- a/domains/dhlcgd.json +++ b/domains/dhlcgd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dhlcgd", - "email": "dhlcgdofficial@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/dhp2010.json b/domains/dhp2010.json new file mode 100644 index 000000000..6d178c8ae --- /dev/null +++ b/domains/dhp2010.json @@ -0,0 +1,12 @@ +{ + "description": "My personal DHPhuc's website.", + "owner": { + "username": "dhp5621", + "email": "daohongphuc1112010@hotmail.com" + }, + "records": { + "A": ["75.2.60.5"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/dhruv-tara.json b/domains/dhruv-tara.json index f39cac163..2a38458e7 100644 --- a/domains/dhruv-tara.json +++ b/domains/dhruv-tara.json @@ -3,7 +3,7 @@ "username": "dhruv-tara", "email": "weebgenix@proton.me" }, - "record": { + "records": { "CNAME": "dhruv-tara.github.io" } } diff --git a/domains/dhruv.json b/domains/dhruv.json index 5d7b5ee4c..7bfda5f59 100644 --- a/domains/dhruv.json +++ b/domains/dhruv.json @@ -3,7 +3,7 @@ "username": "LejhandG", "email": "dhruvbhanushali5621@gmail.com" }, - "record": { + "records": { "CNAME": "lejhandg.github.io" } } diff --git a/domains/dhruvakalur.json b/domains/dhruvakalur.json index 679125804..db3331eff 100644 --- a/domains/dhruvakalur.json +++ b/domains/dhruvakalur.json @@ -4,7 +4,7 @@ "username": "dhruvakalur", "email": "dhruvakalur9@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/dhruvil.json b/domains/dhruvil.json index 05e433f17..46fc35808 100644 --- a/domains/dhruvil.json +++ b/domains/dhruvil.json @@ -5,13 +5,8 @@ "username": "DhruvilMoradiya", "email": "dhruvil1808@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/dhruvilprajapati.json b/domains/dhruvilprajapati.json index ef9f87d7b..d7539274f 100644 --- a/domains/dhruvilprajapati.json +++ b/domains/dhruvilprajapati.json @@ -3,7 +3,7 @@ "username": "Dhruvil2511", "email": "dhruvilprajapati2003@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/dhruvil2511" } } diff --git a/domains/dhruvkoshta.json b/domains/dhruvkoshta.json new file mode 100644 index 000000000..85319e0b0 --- /dev/null +++ b/domains/dhruvkoshta.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/Dhruvkoshta/Dhruvkoshta.github.io", + "description": "portfolio site", + "owner": { + "username": "Dhruvkoshta", + "email": "dhruvkoshta@gmail.com" + }, + "records": { + "CNAME": "dhruvkoshta.github.io" + } +} diff --git a/domains/dhyan99.json b/domains/dhyan99.json index ff6844195..ff72527b0 100644 --- a/domains/dhyan99.json +++ b/domains/dhyan99.json @@ -4,7 +4,7 @@ "username": "D99-1", "email": "dhyantanna@gmail.com" }, - "record": { + "records": { "CNAME": "3464245b-2def-4309-ab2b-9474f03ca3f2.id.repl.co" } } diff --git a/domains/dhyeypatel.json b/domains/dhyeypatel.json index a2e975376..439d499e6 100644 --- a/domains/dhyeypatel.json +++ b/domains/dhyeypatel.json @@ -3,7 +3,7 @@ "username": "dh2523", "email": "dhpatel2523@gmail.com" }, - "record": { + "records": { "CNAME": "dh2523.github.io" } } diff --git a/domains/dhyy.json b/domains/dhyy.json index e0fc77e6d..230a153b1 100644 --- a/domains/dhyy.json +++ b/domains/dhyy.json @@ -3,7 +3,7 @@ "username": "Dcashter", "email": "tinggiisky1@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/dialguiba.json b/domains/dialguiba.json new file mode 100644 index 000000000..5a562649e --- /dev/null +++ b/domains/dialguiba.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dialguiba", + "email": "dialguiba@gmail.com" + }, + "records": { + "CNAME": "dialguiba.netlify.app" + } +} diff --git a/domains/diamondbroplayz.json b/domains/diamondbroplayz.json index c1e4b9f55..4d16b285c 100644 --- a/domains/diamondbroplayz.json +++ b/domains/diamondbroplayz.json @@ -7,7 +7,7 @@ "twitter": "logout", "discord": "4lett" }, - "record": { + "records": { "CNAME": "wavysblog.github.io" } } diff --git a/domains/dib.json b/domains/dib.json index b7dd9c5e4..24e048cca 100644 --- a/domains/dib.json +++ b/domains/dib.json @@ -4,7 +4,7 @@ "username": "DEV-DIBSTER", "email": "dibster+is-a-dev@danbot.host" }, - "record": { + "records": { "NS": ["scott.ns.cloudflare.com", "tessa.ns.cloudflare.com"] } } diff --git a/domains/dibsec.json b/domains/dibsec.json index 79da36cb5..42201d117 100644 --- a/domains/dibsec.json +++ b/domains/dibsec.json @@ -4,7 +4,7 @@ "username": "DEV-DIBSTER", "email": "dibster+is-a-dev@danbot.host" }, - "record": { + "records": { "NS": ["eugene.ns.cloudflare.com", "teresa.ns.cloudflare.com"] } } diff --git a/domains/didimukhtar.json b/domains/didimukhtar.json index 0b633ab3b..344698ded 100644 --- a/domains/didimukhtar.json +++ b/domains/didimukhtar.json @@ -5,7 +5,7 @@ "username": "didimukhtar", "email": "jamilatmukhtar2014@gmail.com" }, - "record": { + "records": { "CNAME": "didimukhtar.github.io" } } diff --git a/domains/didntpot.json b/domains/didntpot.json index 213a71c34..25c5f414f 100644 --- a/domains/didntpot.json +++ b/domains/didntpot.json @@ -3,7 +3,7 @@ "username": "xDidntPot", "email": "didntpot@protonmail.com" }, - "record": { + "records": { "URL": "https://github.com/xdidntpot" } } diff --git a/domains/diedyesterday.json b/domains/diedyesterday.json index 62824954e..30fc7a367 100644 --- a/domains/diedyesterday.json +++ b/domains/diedyesterday.json @@ -3,7 +3,7 @@ "username": "diedyesterdaywashere", "email": "diedyesterdaywashere@gmail.com" }, - "record": { + "records": { "CNAME": "diedeyestedaywashere.github.io" } } diff --git a/domains/diego-rubi.json b/domains/diego-rubi.json new file mode 100644 index 000000000..f2ac8c0f3 --- /dev/null +++ b/domains/diego-rubi.json @@ -0,0 +1,9 @@ +{ + "description": "Portfolio's Diego Rubi", + "owner": { + "username": "drubico" + }, + "records": { + "CNAME": "drubico.github.io" + } +} diff --git a/domains/diegoreis.json b/domains/diegoreis.json new file mode 100644 index 000000000..b7313a7ce --- /dev/null +++ b/domains/diegoreis.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "diegoreis42", + "email": "reisdiego144@gmail.com" + }, + "records": { + "CNAME": "diegoreis42.github.io" + }, + "proxied": true +} diff --git a/domains/digidenone.json b/domains/digidenone.json index f47a8711d..2e26dfc84 100644 --- a/domains/digidenone.json +++ b/domains/digidenone.json @@ -3,7 +3,7 @@ "username": "digidenone", "email": "digidenone@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/dijisx.json b/domains/dijisx.json index 736ccd175..9e2f42286 100644 --- a/domains/dijisx.json +++ b/domains/dijisx.json @@ -3,7 +3,7 @@ "username": "sxinar", "email": "oshidev@proton.me" }, - "record": { + "records": { "CNAME": "sx.digitalpress.blog" } } diff --git a/domains/dikshantsingh.json b/domains/dikshantsingh.json new file mode 100644 index 000000000..3f9071f71 --- /dev/null +++ b/domains/dikshantsingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dikshantsingh510", + "email": "dikshantsingh510@gmail.com" + }, + "records": { + "CNAME": "dikshantsingh510.github.io" + } +} diff --git a/domains/dilpreetgrover.json b/domains/dilpreetgrover.json new file mode 100644 index 000000000..cae033dce --- /dev/null +++ b/domains/dilpreetgrover.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dfordp", + "email": "dilpreetgrover2@gmail.com", + "discord": "dfordp" + }, + "records": { + "CNAME": "dilpreetgrover.vercel.app" + } +} diff --git a/domains/dimanet.json b/domains/dimanet.json index 2b7d24b00..94e8c8b3e 100644 --- a/domains/dimanet.json +++ b/domains/dimanet.json @@ -5,7 +5,7 @@ "username": "dimanet", "email": "alreadytakenman0@gmail.com" }, - "record": { + "records": { "CNAME": "dimanet.dimaonline.fr" } } diff --git a/domains/dimasandriano.json b/domains/dimasandriano.json index 96fa86c39..15eceb37e 100644 --- a/domains/dimasandriano.json +++ b/domains/dimasandriano.json @@ -3,7 +3,7 @@ "username": "dimasandriano", "email": "dimas.andriano.h@gmail.com" }, - "record": { + "records": { "CNAME": "dimasandriano.vercel.app" } } diff --git a/domains/dimi.json b/domains/dimi.json index 41c9282f0..079e97284 100644 --- a/domains/dimi.json +++ b/domains/dimi.json @@ -3,7 +3,7 @@ "username": "dklesev", "email": "dimitrij.klesev@gmail.com" }, - "record": { + "records": { "CNAME": "audk.at" } } diff --git a/domains/dimtsagk.json b/domains/dimtsagk.json index f75951bd5..d467e00fe 100644 --- a/domains/dimtsagk.json +++ b/domains/dimtsagk.json @@ -3,7 +3,7 @@ "username": "dimtsagk", "email": "dimtsagk93@gmail.com" }, - "record": { + "records": { "CNAME": "dimtsagk.go.yo.fr" } } diff --git a/domains/dincer-portfolio.json b/domains/dincer-portfolio.json new file mode 100644 index 000000000..ac8ca9a5b --- /dev/null +++ b/domains/dincer-portfolio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DincerOgren", + "email": "dincer.ogr@hotmail.com" + }, + "records": { + "CNAME": "dincerogren.github.io" + }, + "proxied": false +} diff --git a/domains/dinesh-vaghasia.json b/domains/dinesh-vaghasia.json index 18f00bfb6..17c20ee5d 100644 --- a/domains/dinesh-vaghasia.json +++ b/domains/dinesh-vaghasia.json @@ -4,7 +4,7 @@ "owner": { "username": "dinesh-vaghasia" }, - "record": { + "records": { "CNAME": "dinesh-vaghasia.github.io" } } diff --git a/domains/dinesh.json b/domains/dinesh.json index 7f5fdfdce..7d3ca5c96 100644 --- a/domains/dinesh.json +++ b/domains/dinesh.json @@ -5,7 +5,7 @@ "username": "dinesh-ysl", "email": "dseera6@gmail.com" }, - "record": { + "records": { "CNAME": "dinesh-ysl.github.io" } } diff --git a/domains/dinokhoa.json b/domains/dinokhoa.json index 6069fc758..55d57bb0c 100644 --- a/domains/dinokhoa.json +++ b/domains/dinokhoa.json @@ -2,10 +2,9 @@ "owner": { "username": "n0td1n0kh0a", "email": "dinokhoa@proton.me", - "discord": "888370186003050526", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qx_BgIxje-NPHNb6QDw9dXHOstJKAnAYRL5AKcfrDCCUDT8tzK06v1fIRIw1KXhnIKl66nHlw4lLQz3ZeZYRnLdCOslkLmq9p1GAXk5566eppX11HJe7I40ERbckiXbs0Nla1xCHqYbEXAmkXgTi8y9uNS-JnVXiT9ECaZu7ay0UTo9NA6JGcmY5Hvc_WU-flnNtmkr_5EFE0SZKZnPkQtv4xOGzvIBFpUm1Xsv4lXeiKLp93qmh_42eG_vU4P405_AmgxgziDirkLU1itg-mif074bCcqf16jmJsMgQ7WBslxrlIRoC1ukHowA_rjaoyR11woueRNjDEJDGJpV_LQ.9KTWGAKMM-I9HwYyaPJZAg.GXEfjxPeCdC1PrJcd1AgHvkk2572vMcggMdsQRgmgs3v2BxQP6zhgQBEVpw5S5E6bvo9rxSwHgE55cqlMDnhj6_i4FlFhBDKC44Xg2L6x0M._7SnVuj-NZ0E8EHM-ZRRig" + "discord": "888370186003050526" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/dinuhifi.json b/domains/dinuhifi.json index d2e7a3270..231cda4ed 100644 --- a/domains/dinuhifi.json +++ b/domains/dinuhifi.json @@ -5,7 +5,7 @@ "username": "dinuhifi", "email": "dinesh23110077@snuchennai.edu.in" }, - "record": { + "records": { "CNAME": "dinuhifi.github.io" } } diff --git a/domains/dipesh.json b/domains/dipesh.json new file mode 100644 index 000000000..b4021783e --- /dev/null +++ b/domains/dipesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dipesh79", + "email": "dipeshkhanal79@gmail.com" + }, + "records": { + "A": ["192.250.235.27"] + } +} diff --git a/domains/dipmala-shrimali.json b/domains/dipmala-shrimali.json index 9533d583e..a5a750812 100644 --- a/domains/dipmala-shrimali.json +++ b/domains/dipmala-shrimali.json @@ -4,7 +4,7 @@ "owner": { "username": "dipmala-shrimali" }, - "record": { + "records": { "CNAME": "dipmala-shrimali.github.io" } } diff --git a/domains/dirgha-ukani.json b/domains/dirgha-ukani.json index 311a4a173..025cbd479 100644 --- a/domains/dirgha-ukani.json +++ b/domains/dirgha-ukani.json @@ -4,7 +4,7 @@ "owner": { "username": "dirgha-ukani" }, - "record": { + "records": { "CNAME": "dirgha-ukani.github.io" } } diff --git a/domains/discdefender.json b/domains/discdefender.json index 825461c1d..1da77e0e0 100644 --- a/domains/discdefender.json +++ b/domains/discdefender.json @@ -3,7 +3,7 @@ "username": "GMR828", "email": "gmr828@null.net" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/discord-lakshishere.json b/domains/discord-lakshishere.json new file mode 100644 index 000000000..147365afe --- /dev/null +++ b/domains/discord-lakshishere.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to my experimental domain", + "repo": "https://github.com/WebLux7/WebLux", + "owner": { + "username": "WebLux7", + "email": "lucky7049sp@gmail.com" + }, + "records": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/discord.jakub.json b/domains/discord.jakub.json index dffc51f8d..834ecadad 100644 --- a/domains/discord.jakub.json +++ b/domains/discord.jakub.json @@ -3,7 +3,7 @@ "username": "Jakubk15", "email": "jakubk15@protonmail.com" }, - "record": { + "records": { "URL": "https://discord.gg/FQ7jmGBd6c" } } diff --git a/domains/discord.json b/domains/discord.json deleted file mode 100644 index 1a31c458c..000000000 --- a/domains/discord.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "URL": "https://discord.gg/is-a-dev-830872854677422150" - } -} diff --git a/domains/discord.winbo.json b/domains/discord.winbo.json deleted file mode 100644 index b08208572..000000000 --- a/domains/discord.winbo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "winbo-yml-exe", - "email": "winbo-yml-exe@outlook.com" - }, - "record": { - "CNAME": "winbo-discord.github.io" - } -} diff --git a/domains/discordlakshishere.json b/domains/discordlakshishere.json new file mode 100644 index 000000000..147365afe --- /dev/null +++ b/domains/discordlakshishere.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to my experimental domain", + "repo": "https://github.com/WebLux7/WebLux", + "owner": { + "username": "WebLux7", + "email": "lucky7049sp@gmail.com" + }, + "records": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/discusser.json b/domains/discusser.json index d74b3a325..d88210b01 100644 --- a/domains/discusser.json +++ b/domains/discusser.json @@ -5,7 +5,7 @@ "username": "Discusser", "email": "noobly321growing@gmail.com" }, - "record": { + "records": { "CNAME": "discusser.github.io" } } diff --git a/domains/dishant.json b/domains/dishant.json new file mode 100644 index 000000000..711688916 --- /dev/null +++ b/domains/dishant.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Dishant402955/Portfolio", + "owner": { + "username": "Dishant402955", + "email": "dishantradadiya3036@gmail.com" + }, + "records": { + "CNAME": "portfolio-dishants-projects-6881d6c0.vercel.app" + } +} diff --git a/domains/dishery.json b/domains/dishery.json index a8fb7d5f7..1e0ecb8a9 100644 --- a/domains/dishery.json +++ b/domains/dishery.json @@ -3,7 +3,7 @@ "username": "legofanlovessayori", "discord": "805708874178625546" }, - "record": { + "records": { "TXT": [ "protonmail-verification=4673bc02c41c5ac6445e15835074759576e78e3d", "v=spf1 include:_spf.protonmail.ch ~all", diff --git a/domains/diti.json b/domains/diti.json index fa95c2b86..b30fa7bcb 100644 --- a/domains/diti.json +++ b/domains/diti.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Pixeler5diti", - "email": "ditivasisht@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "Pixeler5diti", + "email": "ditivasisht@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } } diff --git a/domains/divik.json b/domains/divik.json index a04fc4ed3..2d560a319 100644 --- a/domains/divik.json +++ b/domains/divik.json @@ -5,7 +5,7 @@ "username": "Code19Master", "email": "divikbabbar@gmail.com" }, - "record": { + "records": { "CNAME": "code19master.github.io" } } diff --git a/domains/divyam.json b/domains/divyam.json index bc6693301..26e83a9ca 100644 --- a/domains/divyam.json +++ b/domains/divyam.json @@ -5,7 +5,7 @@ "username": "DivyamAhuja", "email": "ahujadivyam@gmail.com" }, - "record": { + "records": { "CNAME": "divyamahuja.github.io" } } diff --git a/domains/divyanshudhruv.json b/domains/divyanshudhruv.json index 4e927568d..4409d9175 100644 --- a/domains/divyanshudhruv.json +++ b/domains/divyanshudhruv.json @@ -1,11 +1,9 @@ { - "description": "Its just my portfolio :)", - "repo": "https://github.com/divyanshudhruv/divyanshudhruv.github.io", "owner": { "username": "divyanshudhruv", "email": "divyanshudhruv24@gmail.com" }, - "record": { - "CNAME": "divyanshudhruv.netlify.app" + "records": { + "CNAME": "divyanshudhruv.vercel.app" } } diff --git a/domains/divyanshuvashu.json b/domains/divyanshuvashu.json new file mode 100644 index 000000000..cd7c7070e --- /dev/null +++ b/domains/divyanshuvashu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "divyanshu-vashu", + "email": "vashusingh2004.jan@gmail.com", + "discord": "ram_ravan69" + }, + "records": { + "CNAME": "divyanshusingh.vercel.app" + } +} diff --git a/domains/diwash.json b/domains/diwash.json new file mode 100644 index 000000000..a6fcc8ae2 --- /dev/null +++ b/domains/diwash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Diwash-7", + "email": "rimaldiwash7@gmail.com" + }, + "records": { + "CNAME": "diwash-7.github.io" + } +} diff --git a/domains/diyar.json b/domains/diyar.json index b7a74b54b..6806a934d 100644 --- a/domains/diyar.json +++ b/domains/diyar.json @@ -3,7 +3,7 @@ "username": "DiyarBakir", "email": "Diyar.Bakir@Hotmail.com" }, - "record": { + "records": { "URL": "https://diyar.io" } } diff --git a/domains/djaana.json b/domains/djaana.json new file mode 100644 index 000000000..eff6329ff --- /dev/null +++ b/domains/djaana.json @@ -0,0 +1,12 @@ +{ + "description": "For a personnal portfolio", + "repo": "https://github.com/djaana/djaana.github.io", + "owner": { + "username": "djaana", + "discord": "djaana", + "instagram": "dja.huh" + }, + "records": { + "CNAME": "djaana.github.io" + } +} diff --git a/domains/django.json b/domains/django.json index 46c5ab61d..e16ea8062 100644 --- a/domains/django.json +++ b/domains/django.json @@ -3,7 +3,7 @@ "username": "mediaformat", "email": "mediaformat.ux@gmail.com" }, - "record": { + "records": { "CNAME": "mediaformat.github.io" } } diff --git a/domains/djangounet.json b/domains/djangounet.json new file mode 100644 index 000000000..240c6dccc --- /dev/null +++ b/domains/djangounet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "keltroth", + "email": "contact@djangojanny.net" + }, + "records": { + "CNAME": "www.djangojanny.net" + } +} diff --git a/domains/dk.json b/domains/dk.json index 059d8de2c..639ccc2b3 100644 --- a/domains/dk.json +++ b/domains/dk.json @@ -3,7 +3,7 @@ "username": "zurlyy", "email": "d@zurly.me" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/dkim._domainkey.ciaobot.json b/domains/dkim._domainkey.ciaobot.json deleted file mode 100644 index 3685925f3..000000000 --- a/domains/dkim._domainkey.ciaobot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ciao287", - "discord": "687333016921440317" - }, - "record": { - "TXT": "v=DKIM1;k=rsa;t=s;s=email;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwbNDcpNQR0T591UH23v8yi6SKmOV4uddxKFNUDcX1NmB/Q4evuJEGDY8qmwB9eFuZCoBAOKjAoU+vB+WH7mdj6F73zshPB3mEtISHR2Fbo2zONf3VXmO5NE5/jKcN1bmzDGEBj+gUzOTrnAGDcj65UCtKWx0F1rOboRTzCId2rCTPc9nBnOSpVsYNlhlebeDbxapzZ1wBQcCzQGangYisKjSM6IM4ztSrONkVluCdPIl6AkiUUvN6PnDKc8LBkFMHnpDfbFUQIufURxoqEfP4xYT5cZNOT/3RbrI5rjR2kdeIufsO+QlQ5XXRv/QETJgtOKTeCzPmc243KGlx9NsiQIDAQAB" - } -} diff --git a/domains/dkim._domainkey.dhilipan.json b/domains/dkim._domainkey.dhilipan.json index b00989914..9fd0bb638 100644 --- a/domains/dkim._domainkey.dhilipan.json +++ b/domains/dkim._domainkey.dhilipan.json @@ -1,10 +1,9 @@ { "owner": { "username": "Dhilipan-Git", - "discord": "1306595993055268875", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" + "discord": "1306595993055268875" }, - "record": { + "records": { "CNAME": "dkim._domainkey.simplelogin.co" } } diff --git a/domains/dkim._domainkey.sewt.json b/domains/dkim._domainkey.sewt.json new file mode 100644 index 000000000..c20662a14 --- /dev/null +++ b/domains/dkim._domainkey.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "records": { + "CNAME": "dkim._domainkey.simplelogin.co" + } +} diff --git a/domains/dkim02._domainkey.dhilipan.json b/domains/dkim02._domainkey.dhilipan.json index ad70d0730..bc59ac4c3 100644 --- a/domains/dkim02._domainkey.dhilipan.json +++ b/domains/dkim02._domainkey.dhilipan.json @@ -1,10 +1,9 @@ { "owner": { "username": "Dhilipan-Git", - "discord": "1306595993055268875", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" + "discord": "1306595993055268875" }, - "record": { + "records": { "CNAME": "dkim02._domainkey.simplelogin.co" } } diff --git a/domains/dkim02._domainkey.sewt.json b/domains/dkim02._domainkey.sewt.json new file mode 100644 index 000000000..7965f3676 --- /dev/null +++ b/domains/dkim02._domainkey.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "records": { + "CNAME": "dkim02._domainkey.simplelogin.co" + } +} diff --git a/domains/dkim03._domainkey.dhilipan.json b/domains/dkim03._domainkey.dhilipan.json index 84f05a748..b9fff843c 100644 --- a/domains/dkim03._domainkey.dhilipan.json +++ b/domains/dkim03._domainkey.dhilipan.json @@ -1,10 +1,9 @@ { "owner": { "username": "Dhilipan-Git", - "discord": "1306595993055268875", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" + "discord": "1306595993055268875" }, - "record": { + "records": { "CNAME": "dkim03._domainkey.simplelogin.co" } } diff --git a/domains/dkim03._domainkey.sewt.json b/domains/dkim03._domainkey.sewt.json new file mode 100644 index 000000000..278b3965a --- /dev/null +++ b/domains/dkim03._domainkey.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "records": { + "CNAME": "dkim03._domainkey.simplelogin.co" + } +} diff --git a/domains/dliu.json b/domains/dliu.json index 3bf585668..f52decc4e 100644 --- a/domains/dliu.json +++ b/domains/dliu.json @@ -3,7 +3,7 @@ "username": "DanL2015", "email": "danielliu@berkeley.edu" }, - "record": { + "records": { "CNAME": "danl2015.github.io" } } diff --git a/domains/dllb.json b/domains/dllb.json new file mode 100644 index 000000000..679e46a58 --- /dev/null +++ b/domains/dllb.json @@ -0,0 +1,11 @@ +{ + "description": "This repo contains my personal portfolio site.", + "repo": "https://github.com/dllbdev/homepage", + "owner": { + "username": "dllbdev", + "email": "dllb.dev@proton.me" + }, + "records": { + "CNAME": "dllbdev.github.io" + } +} diff --git a/domains/dm.json b/domains/dm.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/dm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dmc.json b/domains/dmc.json new file mode 100644 index 000000000..64cdba54b --- /dev/null +++ b/domains/dmc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "morcu", + "email": "david.morcuende.c@gmail.com" + }, + "records": { + "CNAME": "davidmorcuende.com" + } +} diff --git a/domains/dmi.json b/domains/dmi.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/dmi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dmmay.json b/domains/dmmay.json index 5da0dd4d9..36faa104e 100644 --- a/domains/dmmay.json +++ b/domains/dmmay.json @@ -3,12 +3,7 @@ "username": "nguoidungkhongdinhdanhh", "email": "azura22@skiff.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/dmr.json b/domains/dmr.json index fb13c7959..0d9138440 100644 --- a/domains/dmr.json +++ b/domains/dmr.json @@ -4,7 +4,7 @@ "username": "dmr-93", "email": "demisrosseti@gmail.com" }, - "record": { + "records": { "URL": "https://040ff340db5c97c3ab74202ea081dd80.serveo.net" } } diff --git a/domains/do-gia-huy.json b/domains/do-gia-huy.json index 89f36ba86..882f50ffa 100644 --- a/domains/do-gia-huy.json +++ b/domains/do-gia-huy.json @@ -3,7 +3,7 @@ "username": "dohuygia", "email": "quyendongho238@Gmail.com" }, - "record": { + "records": { "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": ["forward-email=quyendongho238@gmail.com"] } diff --git a/domains/doansilinh.json b/domains/doansilinh.json new file mode 100644 index 000000000..894aeb29d --- /dev/null +++ b/domains/doansilinh.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "doansilinh" + }, + "records": { + "CNAME": "doansilinh.github.io" + } +} diff --git a/domains/doantran.json b/domains/doantran.json index 8c0015644..d26f3f5ad 100644 --- a/domains/doantran.json +++ b/domains/doantran.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Gressi-177", - "email": "vietdoan177@gmail.com" - }, - "record": { - "CNAME": "portfolio-viet-doans-projects.vercel.app" - } + "owner": { + "username": "Gressi-177", + "email": "vietdoan177@gmail.com" + }, + "records": { + "CNAME": "portfolio-viet-doans-projects.vercel.app" + } } diff --git a/domains/docs.6.json b/domains/docs.6.json index 883e0729d..3ff4ec0de 100644 --- a/domains/docs.6.json +++ b/domains/docs.6.json @@ -3,7 +3,7 @@ "username": "shockbs", "email": "apipherng@gmail.com" }, - "record": { + "records": { "URL": "https://docs.shockbs.is-a.dev/" } } diff --git a/domains/docs.abdullahcxd.json b/domains/docs.abdullahcxd.json new file mode 100644 index 000000000..da25126ac --- /dev/null +++ b/domains/docs.abdullahcxd.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/docs.flowwing.json b/domains/docs.flowwing.json new file mode 100644 index 000000000..805929e81 --- /dev/null +++ b/domains/docs.flowwing.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation Flow-Wing Programming Language", + "repo": "https://github.com/kushagra1212/Flow-Wing", + "owner": { + "username": "kushagra1212", + "email": "kushagrarathore002@gmail.com" + }, + "records": { + "CNAME": "flow-wing-docs.vercel.app" + } +} diff --git a/domains/docs.json b/domains/docs.json deleted file mode 100644 index 713e677dc..000000000 --- a/domains/docs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Documentation website for is-a.dev", - "repo": "https://github.com/is-a-dev/docs", - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "URL": "https://is-a.dev/docs" - } -} diff --git a/domains/docs.shockbs.json b/domains/docs.shockbs.json index 8149d0f82..1c34d1a10 100644 --- a/domains/docs.shockbs.json +++ b/domains/docs.shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "URL": "https://docs.shockbs.pro/" } } diff --git a/domains/docs.trung.json b/domains/docs.trung.json index cd80e37cc..80bb22fe9 100644 --- a/domains/docs.trung.json +++ b/domains/docs.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "CNAME": "c40e958615-hosting.gitbook.io" } } diff --git a/domains/dodongduc.json b/domains/dodongduc.json new file mode 100644 index 000000000..ee50c9610 --- /dev/null +++ b/domains/dodongduc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duc3d-hus", + "email": "duc3d.hus@gmail.com" + }, + "records": { + "CNAME": "duc3d-hus.github.io" + } +} diff --git a/domains/dog.json b/domains/dog.json index 0ab726729..7ae4b4ac2 100644 --- a/domains/dog.json +++ b/domains/dog.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "yunexiz.github.io" } } diff --git a/domains/dogesploit.json b/domains/dogesploit.json index 88bfbf2ab..bb49c2fa1 100644 --- a/domains/dogesploit.json +++ b/domains/dogesploit.json @@ -3,7 +3,7 @@ "username": "Zumwaltboi68", "email": "alexander662022@outlook.com" }, - "record": { + "records": { "URL": "https://velocity-v2.dogesploit.byethost15.com/" } } diff --git a/domains/dogs.json b/domains/dogs.json index 0703f69d3..44970016c 100644 --- a/domains/dogs.json +++ b/domains/dogs.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "dog-images.pages.dev" } } diff --git a/domains/dohyun.json b/domains/dohyun.json index 69cc5820b..95cbf3535 100644 --- a/domains/dohyun.json +++ b/domains/dohyun.json @@ -3,7 +3,7 @@ "username": "dohyun-ko", "email": "dohyun682@gmail.com" }, - "record": { + "records": { "CNAME": "dohyun-ko.github.io" } } diff --git a/domains/dokiet.json b/domains/dokiet.json new file mode 100644 index 000000000..fc34c1d83 --- /dev/null +++ b/domains/dokiet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kietdo-dev", + "email": "lionvs12345@gmail.com" + }, + "records": { + "CNAME": "dokiet.vercel.app" + } +} diff --git a/domains/dolba3b.json b/domains/dolba3b.json index 479b50573..49671c10c 100644 --- a/domains/dolba3b.json +++ b/domains/dolba3b.json @@ -3,7 +3,7 @@ "username": "D0LBA3B", "email": "clement.favre@losentse-help.ch" }, - "record": { + "records": { "URL": "https://losentse-help.ch" } } diff --git a/domains/domb.json b/domains/domb.json index 2be518ba9..ca9d7854d 100644 --- a/domains/domb.json +++ b/domains/domb.json @@ -5,7 +5,7 @@ "username": "smailiukas", "email": "domantas.bulotas@gmail.com" }, - "record": { + "records": { "CNAME": "smailiukas.github.io" } } diff --git a/domains/dominic.json b/domains/dominic.json index d224f566c..188d724b9 100644 --- a/domains/dominic.json +++ b/domains/dominic.json @@ -3,7 +3,7 @@ "username": "mrhappyma", "email": "dominic@userexe.me" }, - "record": { + "records": { "URL": "https://userexe.me" } } diff --git a/domains/dominicbrauer.json b/domains/dominicbrauer.json index 0851905e1..c994167ff 100644 --- a/domains/dominicbrauer.json +++ b/domains/dominicbrauer.json @@ -3,7 +3,7 @@ "username": "DominicBrauer", "email": "dominicbrauer06@gmail.com" }, - "record": { + "records": { "A": ["185.245.61.41"] } } diff --git a/domains/dommor.json b/domains/dommor.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/dommor.json +++ b/domains/dommor.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/donald.json b/domains/donald.json new file mode 100644 index 000000000..3fa369b8f --- /dev/null +++ b/domains/donald.json @@ -0,0 +1,10 @@ +{ + "description": "Donald's personal developer website", + "owner": { + "email": "dawntop@126.com", + "username": "donald001" + }, + "records": { + "CNAME": "donald001.github.io" + } +} diff --git a/domains/donate.json b/domains/donate.json index 192ccf751..de2bf8558 100644 --- a/domains/donate.json +++ b/domains/donate.json @@ -3,7 +3,13 @@ "username": "is-a-dev", "email": "admin@is-a.dev" }, - "record": { + "records": { "URL": "https://wdh.gg/M0ttgkD" + }, + "redirect_config": { + "custom_paths": { + "/ns": "https://wdh.gg/pvNCdvs", + "/sponsor": "https://wdh.gg/sponsor" + } } } diff --git a/domains/doncho.json b/domains/doncho.json new file mode 100644 index 000000000..ccc1ba36c --- /dev/null +++ b/domains/doncho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "donangel", + "email": "public@doncho.net" + }, + "records": { + "URL": "https://doncho.net" + } +} diff --git a/domains/dongtran.json b/domains/dongtran.json new file mode 100644 index 000000000..14b27eeac --- /dev/null +++ b/domains/dongtran.json @@ -0,0 +1,10 @@ +{ + "description": "dongtran.is-a.dev : This is my personal notebook", + "owner": { + "username": "dongitran", + "email": "thiendong.iuh@gmail.com" + }, + "records": { + "URL": "https://devvui.one" + } +} diff --git a/domains/donno2048.json b/domains/donno2048.json index 33b652945..002ad5b09 100644 --- a/domains/donno2048.json +++ b/domains/donno2048.json @@ -3,7 +3,7 @@ "username": "donno2048", "email": "just4now666666@gmail.com" }, - "record": { + "records": { "URL": "https://donno2048.github.io/Portfolio" } } diff --git a/domains/donut.json b/domains/donut.json index 34e81c78b..893656d06 100644 --- a/domains/donut.json +++ b/domains/donut.json @@ -5,7 +5,7 @@ "username": "donut2008", "discord": "donut#6852" }, - "record": { + "records": { "CNAME": "donut2008.github.io" } } diff --git a/domains/dooly.json b/domains/dooly.json index 808bdcace..0dc1708ac 100644 --- a/domains/dooly.json +++ b/domains/dooly.json @@ -6,7 +6,7 @@ "email": "seeun0917@naver.com", "twitter": "sense09173" }, - "record": { + "records": { "CNAME": "entry0917.github.io" } } diff --git a/domains/doom.json b/domains/doom.json index 0812517cd..b6d284c60 100644 --- a/domains/doom.json +++ b/domains/doom.json @@ -1,12 +1,12 @@ { - "description": "My personal website inspired by 90s personal websites made in Geocities", - "repo": "https://github.com/itsdoomone/itsdoomone.github.io", - "owner": { - "username": "ItsDoomOne", - "email": "leodroid796@gmail.com", - "discord": "527778424392253441" - }, - "record": { - "CNAME": "itsdoomone.github.io" - } + "description": "My personal website inspired by 90s personal websites made in Geocities", + "repo": "https://github.com/itsdoomone/itsdoomone.github.io", + "owner": { + "username": "ItsDoomOne", + "email": "leodroid796@gmail.com", + "discord": "527778424392253441" + }, + "records": { + "CNAME": "itsdoomone.github.io" + } } diff --git a/domains/dot.json b/domains/dot.json index 989cfeb67..9bc361e2b 100644 --- a/domains/dot.json +++ b/domains/dot.json @@ -4,7 +4,7 @@ "email": "antonamelin8@gmail.com", "discord": "578276833624195125" }, - "record": { + "records": { "CNAME": "dott-rus.github.io" } } diff --git a/domains/dotexe3301.json b/domains/dotexe3301.json new file mode 100644 index 000000000..f55b82264 --- /dev/null +++ b/domains/dotexe3301.json @@ -0,0 +1,11 @@ +{ + "description": "For my GitHub Pages URL", + "repo": "https://github.com/dotexe3301/dotexe3301.github.io", + "owner": { + "username": "dotexe3301", + "email": "shiveshvijay707@gmail.com" + }, + "records": { + "CNAME": "dotexe3301.github.io" + } +} diff --git a/domains/doug.json b/domains/doug.json new file mode 100644 index 000000000..e9b129ca6 --- /dev/null +++ b/domains/doug.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/drssoccer55/drssoccer55.github.io", + "owner": { + "username": "drssoccer55", + "email": "sextondouglas@pm.me" + }, + "records": { + "CNAME": "drssoccer55.github.io" + } +} diff --git a/domains/douglas.json b/domains/douglas.json new file mode 100644 index 000000000..981eb050e --- /dev/null +++ b/domains/douglas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "standingdreams", + "email": "designer.drogers@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/douglasffilho.json b/domains/douglasffilho.json new file mode 100644 index 000000000..a9de0c4a6 --- /dev/null +++ b/domains/douglasffilho.json @@ -0,0 +1,11 @@ +{ + "description": "Douglas Filho personal portifolio website", + "repo": "https://github.com/douglasffilho/me", + "owner": { + "username": "douglasffilho", + "email": "douglasf.filho@gmail.com" + }, + "records": { + "CNAME": "douglasffilho.vercel.app" + } +} diff --git a/domains/downgit.json b/domains/downgit.json index bb6f0264a..1c3faba3b 100644 --- a/domains/downgit.json +++ b/domains/downgit.json @@ -4,7 +4,7 @@ "discord": "invalidnoah#0", "email": "zjustmarcel@gmail.com" }, - "record": { + "records": { "CNAME": "invalidnoah.github.io" } } diff --git a/domains/doziaress.json b/domains/doziaress.json index 843b539a8..083cf1b74 100644 --- a/domains/doziaress.json +++ b/domains/doziaress.json @@ -1,10 +1,9 @@ { "owner": { "username": "duquspy", - "discord": "1212766449308012564", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fMfv-Nq00URTWuLfZuLb73oobhqZn0kX2-T5Mc0kBSF7vlVuOUHJ9WIhwbbsCP9JSdF_UxzCE-Q8PHWszytmIWogOWAbsMMEd1zXGd5NP9ANwqUW3Ng92f-0MEDa6y7aBHBUW-zBPn741uqMN-mTRWNdiAGVFNbIS7q_0mjFbTRJwGOhw1D4gzpc2rQVGFtbPn9M9tRMrb9zqnWC1Vg8adv5zgDA3ZCJ0XbBHlTuIW63IVBIPVCUMqRMTe2oZqcKM49WTpJ00nKB9_GMMwwsvlOHgHVIX5V6-fPC5yZ8441ZR_lCAmDmm4pA2Bxh8DXUELflCacdMS2dbKfZB_CGAA.BvvFP8qBLKyWaajgtEKQ3Q.IiY-Wk5_iOmEE78K9qw7EAms0TTd73mG4F2P4xgTdIZX8387zSMSGGN0HHJEypTAqMZb9dA_0tyjdrx2Py3SJaeBfSuavyh5A3NqYGEyXCY.dc8JP_KS-M4jhIt4a0qk4g" + "discord": "1212766449308012564" }, - "record": { + "records": { "CNAME": "duquspy.github.io" } } diff --git a/domains/dpi0.json b/domains/dpi0.json index 42a967ef5..3b42191cf 100644 --- a/domains/dpi0.json +++ b/domains/dpi0.json @@ -3,7 +3,7 @@ "username": "dpi0", "email": "dpi0.dev@proton.me" }, - "record": { + "records": { "URL": "https://blog.dpi0.cloud" } } diff --git a/domains/dqmn.json b/domains/dqmn.json index 1121848e0..e985decc8 100644 --- a/domains/dqmn.json +++ b/domains/dqmn.json @@ -5,7 +5,7 @@ "username": "dqmn", "email": "dqmnbackup@gmail.com" }, - "record": { + "records": { "CNAME": "dqmn.github.io" } } diff --git a/domains/dr-therapy.json b/domains/dr-therapy.json index 07a8d0e62..fd89966ee 100644 --- a/domains/dr-therapy.json +++ b/domains/dr-therapy.json @@ -4,7 +4,7 @@ "email": "sitehesap@proton.me", "discord": "706419336235188264" }, - "record": { + "records": { "CNAME": "drtherapy2023.github.io" } } diff --git a/domains/drago-cuven.json b/domains/drago-cuven.json index 526292ca2..511009e52 100644 --- a/domains/drago-cuven.json +++ b/domains/drago-cuven.json @@ -6,7 +6,7 @@ "email": "MartinelplayzYT@gmail.com", "twitter": "mbcbgd" }, - "record": { + "records": { "CNAME": "drago-cuven.github.io" } } diff --git a/domains/drake.json b/domains/drake.json index 48edff9c4..c080cb301 100644 --- a/domains/drake.json +++ b/domains/drake.json @@ -1,10 +1,9 @@ { "owner": { "username": "drake-dot-o", - "discord": "197905102865039371", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ODrtFxgSeAqIu6AI7SK6Sy6j7f0yg7jucjqWkjqwpJqkK_1AKsD8bck9idsla_3jjG2v_1TdSd7p23Tqodv7dz0jHDDL4OfNZB1XHW_uXGc8-qT6kKDcIOhdcktCf1lK54I4Sdg6RWgjj1ayYfXaoywhQZNGmLc54rRB_9b5JcXaRu75TB9Sp14vlqQ8Dotxo7aIutkzgqk7InvEHq8mA8tLH4a8RkAxv91tpxForl-Th2vjwexma8ySDg0TM_gf9y0Clsdu8X-hYR_upJX6V1bdiQxCLjzcD8xf3WXanoK_zF5YKwfchGX60LIOwjtzy8Ot2bQyIsrbVD3OFB6KEg.RPNQcCXjJymxMn5rHqeGYg.ru7RGuS07PxzcQm3fgdt1bR2L6PdF-aGcKq41dWFyHM3pRtZV2eiO3KUv8MwcrSleNe5TgBH0opHc-DRLLvNoOZLxxbt6nfZqJXmyjgQzrQ.kCHTV4x_MfBEVmAWChvmAA" + "discord": "197905102865039371" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/drakeknight.json b/domains/drakeknight.json index d03b6d5b4..f4dff4f98 100644 --- a/domains/drakeknight.json +++ b/domains/drakeknight.json @@ -3,7 +3,7 @@ "username": "Drake-knight", "email": "jakharvishalv@gmail.com" }, - "record": { + "records": { "CNAME": "lbonb42y.up.railway.app" } } diff --git a/domains/draken.json b/domains/draken.json new file mode 100644 index 000000000..9df560986 --- /dev/null +++ b/domains/draken.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dragonx943", + "email": "premieregirl26@gmail.com" + }, + "records": { + "CNAME": "ec2-54-254-71-100.ap-southeast-1.compute.amazonaws.com" + } +} diff --git a/domains/drbaph.json b/domains/drbaph.json new file mode 100644 index 000000000..084cadb5b --- /dev/null +++ b/domains/drbaph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saganaki22", + "email": "info@drbaph.dev" + }, + "records": { + "CNAME": "saganaki22.github.io" + } +} diff --git a/domains/drdilyor.json b/domains/drdilyor.json index 82774e5a5..8b3a64e7c 100644 --- a/domains/drdilyor.json +++ b/domains/drdilyor.json @@ -5,7 +5,7 @@ "username": "drdilyor", "email": "drdilyor@outlook.com" }, - "record": { + "records": { "CNAME": "drdilyor.github.io" } } diff --git a/domains/dreni.json b/domains/dreni.json index f69b5dca3..048fd0668 100644 --- a/domains/dreni.json +++ b/domains/dreni.json @@ -3,7 +3,7 @@ "username": "drenxhyliqi", "email": "drenxhyliqi3@gmail.com" }, - "record": { + "records": { "URL": "https://drenxhyliqi.netlify.app/" } } diff --git a/domains/drenxhyliqi.json b/domains/drenxhyliqi.json index bcec09ba0..a65812ba0 100644 --- a/domains/drenxhyliqi.json +++ b/domains/drenxhyliqi.json @@ -3,7 +3,7 @@ "username": "drenxhyliqi", "email": "drenxhyliqi3@gmail.com" }, - "record": { + "records": { "URL": "https://drenxhyliqi.site/" } } diff --git a/domains/dresan.json b/domains/dresan.json index c67dd494e..e46e6cf04 100644 --- a/domains/dresan.json +++ b/domains/dresan.json @@ -6,7 +6,7 @@ "email": "dresan.dev@gmail.com", "twitter": "dresandev" }, - "record": { + "records": { "CNAME": "dresandev.github.io" } } diff --git a/domains/drew.json b/domains/drew.json new file mode 100644 index 000000000..defdbd8c4 --- /dev/null +++ b/domains/drew.json @@ -0,0 +1,11 @@ +{ + "description": "My page", + "repo": "https://github.com/zessu/zessu.github.io", + "owner": { + "username": "zessu", + "email": "regime-pluck-gulf@duck.com" + }, + "records": { + "CNAME": "zessu-github-io-7l1v.vercel.app" + } +} diff --git a/domains/drian.json b/domains/drian.json index 5d687123a..777c65931 100644 --- a/domains/drian.json +++ b/domains/drian.json @@ -3,7 +3,7 @@ "username": "Luiso9", "email": "muhandreop@gmail.com" }, - "record": { + "records": { "CNAME": "luiso9.github.io" } } diff --git a/domains/drish-xd.json b/domains/drish-xd.json index 55a94e8ee..a53752505 100644 --- a/domains/drish-xd.json +++ b/domains/drish-xd.json @@ -5,7 +5,7 @@ "username": "Drish-xD", "email": "drish.xd@gmail.com" }, - "record": { + "records": { "CNAME": "drish-xd.github.io" } } diff --git a/domains/drive.alora.json b/domains/drive.alora.json index 70ed9b0ad..233ab6215 100644 --- a/domains/drive.alora.json +++ b/domains/drive.alora.json @@ -4,7 +4,7 @@ "email": "xaloramia@gmail.com", "discord": "1236292707371057216" }, - "record": { + "records": { "CNAME": "onedrive-vercel-index-flame-xi.vercel.app" } } diff --git a/domains/drively.json b/domains/drively.json index f490f44d1..92ad5d74c 100644 --- a/domains/drively.json +++ b/domains/drively.json @@ -3,7 +3,7 @@ "username": "Gawnul", "email": "rootnull@outlook.es" }, - "record": { + "records": { "URL": "https://bento.me/drively" } } diff --git a/domains/drmonocle.json b/domains/drmonocle.json index 0f7638dfb..a7317dd45 100644 --- a/domains/drmonocle.json +++ b/domains/drmonocle.json @@ -5,7 +5,7 @@ "username": "monocledr", "email": "contact.drmonocle@gmail.com" }, - "record": { + "records": { "CNAME": "monocledr.github.io" } } diff --git a/domains/droiders.json b/domains/droiders.json index 321b4abc7..5d45639aa 100644 --- a/domains/droiders.json +++ b/domains/droiders.json @@ -1,10 +1,9 @@ { "owner": { "username": "droiders-co", - "discord": "1276122512945582163", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Cyxc642tSAILH0TeC5cbQyCXyz-DmT62oaal_62Jy3IHrnGxZHkxyaM0WwNpI6Lsn62ThCSxl9vyp4_Jt-h_Gya43Yjev7qxAxqTWwLy9UTLRpd6J11Hnvm8sk7cKPyBSyTshpaLIXQkeY8f1uDc2u7xG4mcv8EUtGamN-2sx6Od-DKEfcpIwR4736-mtfqQceBffJcmMN8muA9HL-jRTmuz9wszmQ6YgX9OR0d0ZxdH5P6FIMATBeryBYTamKmfRuIkk1a8MRFXtBqLqukf9es-nmxAQgtpOJUJMFvRhj2Tx2q7phb7NLZOpv84ffRMi45YnoMPhTlGuvUuojrNaQ.iXtf6JafCZH7dmFyzI4nFQ.hjpJSdnRVN5UooNon5-ICENTQBWIkgScEtWW6JHXRr7YKXkEX1bDpbzOpmgABmuezHvxUFjTk3xqVgxBBbRlUKH8P6mU2WI1_dTNm2Ter7Y.tu5JiotTyrpzUo78bYti_Q" + "discord": "1276122512945582163" }, - "record": { + "records": { "CNAME": "droiders-co.github.io" } } diff --git a/domains/drormaman.json b/domains/drormaman.json index e94e4c452..951f249d7 100644 --- a/domains/drormaman.json +++ b/domains/drormaman.json @@ -4,7 +4,7 @@ "username": "drormaman", "twitter": "drormaman" }, - "record": { + "records": { "CNAME": "drormaman.github.io" } } diff --git a/domains/drpleaserespect.json b/domains/drpleaserespect.json index 1cbcb88f9..ac3cbb745 100644 --- a/domains/drpleaserespect.json +++ b/domains/drpleaserespect.json @@ -4,10 +4,7 @@ "email": "juliannayr2007@gmail.com", "discord": "300641942646161409" }, - "record": { - "NS": [ - "frank.ns.cloudflare.com", - "hope.ns.cloudflare.com" - ] + "records": { + "NS": ["frank.ns.cloudflare.com", "hope.ns.cloudflare.com"] } -} \ No newline at end of file +} diff --git a/domains/drv123323.json b/domains/drv123323.json index 1993ff015..dfa4b1707 100644 --- a/domains/drv123323.json +++ b/domains/drv123323.json @@ -5,7 +5,7 @@ "username": "dizzy123323", "email": "Dhruvksuru@gmail.com" }, - "record": { + "records": { "CNAME": "dizzy123323.github.io" } } diff --git a/domains/dsaw.json b/domains/dsaw.json index 5b2ea128c..8bf482b56 100644 --- a/domains/dsaw.json +++ b/domains/dsaw.json @@ -5,7 +5,7 @@ "username": "dsaw", "email": "dsawthedsawwhat@gmail.com" }, - "record": { + "records": { "CNAME": "dsaw.github.io" } } diff --git a/domains/dscbmr.json b/domains/dscbmr.json index ff0b1e52e..26afdb153 100644 --- a/domains/dscbmr.json +++ b/domains/dscbmr.json @@ -5,7 +5,7 @@ "username": "SRPVT", "email": "syedrayangames@gmail.com" }, - "record": { + "records": { "CNAME": "srpvt.github.io" } } diff --git a/domains/dsrev.json b/domains/dsrev.json index d236671ae..815748f6d 100644 --- a/domains/dsrev.json +++ b/domains/dsrev.json @@ -6,7 +6,7 @@ "email": "dsrev@snopyta.org", "twitter": "IlyaSProkopenko" }, - "record": { + "records": { "CNAME": "dsrev.github.io" } } diff --git a/domains/dsuescun.json b/domains/dsuescun.json new file mode 100644 index 000000000..3ead8ea7e --- /dev/null +++ b/domains/dsuescun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dsuescun", + "email": "dsuescun@soinsoluciones.com" + }, + "records": { + "CNAME": "dsuescun.github.io" + } +} diff --git a/domains/dtducas.json b/domains/dtducas.json new file mode 100644 index 000000000..bb9aa41cd --- /dev/null +++ b/domains/dtducas.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website for DTDucas", + "repo": "https://github.com/DTDucas", + "owner": { + "username": "DTDucas", + "email": "baymax.contact@gmail.com" + }, + "records": { + "CNAME": "dtducas.github.io" + }, + "proxied": true +} diff --git a/domains/dtdung.json b/domains/dtdung.json new file mode 100644 index 000000000..24ef5ada1 --- /dev/null +++ b/domains/dtdung.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dtdung07" + }, + "records": { + "URL": "https://dtdung.us.to" + } +} diff --git a/domains/duanyang.json b/domains/duanyang.json new file mode 100644 index 000000000..c62ca10d4 --- /dev/null +++ b/domains/duanyang.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Mrliduanyang", + "email": "duanyangchn@gmail.com" + }, + "records": { + "CNAME": "duanyang.cool" + }, + "proxied": false +} diff --git a/domains/duc.json b/domains/duc.json new file mode 100644 index 000000000..6ea882e6a --- /dev/null +++ b/domains/duc.json @@ -0,0 +1,11 @@ +{ + "description": "duc.is-a.dev", + "repo": "https://github.com/duc-ios/duc-ios.github.io", + "owner": { + "username": "duc-ios", + "email": "hi@duk.one" + }, + "records": { + "CNAME": "duc-ios.github.io" + } +} diff --git a/domains/ducanhng.json b/domains/ducanhng.json index f248301b0..e0718787e 100644 --- a/domains/ducanhng.json +++ b/domains/ducanhng.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ducanhitz", - "email": "ducanhng.dev@gmail.com" - }, - "record": { - "CNAME": "ducanhitz.github.io" - } + "owner": { + "username": "ducanhitz", + "email": "ducanhng.dev@gmail.com" + }, + "records": { + "CNAME": "ducanhitz.github.io" + } } diff --git a/domains/duck.json b/domains/duck.json index 38cb2521a..faec52558 100644 --- a/domains/duck.json +++ b/domains/duck.json @@ -3,7 +3,7 @@ "username": "ServerDeveloper9447", "email": "serverdeveloper@duck.com" }, - "record": { - "CNAME": "serverdeveloper9447.github.io" + "records": { + "CNAME": "soumalya-galaxy-portfolio-23.pages.dev" } } diff --git a/domains/duckanon.json b/domains/duckanon.json index ac11aa85e..2baa0cc0e 100644 --- a/domains/duckanon.json +++ b/domains/duckanon.json @@ -3,7 +3,7 @@ "username": "SmolNightHere312", "email": "magickdevl@proton.me" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/ducky.json b/domains/ducky.json new file mode 100644 index 000000000..642d04441 --- /dev/null +++ b/domains/ducky.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/ducky4life/ducky4life.github.io", + "owner": { + "username": "ducky4life", + "email": "duckylai@proton.me" + }, + "records": { + "CNAME": "ducky4life.github.io" + } +} diff --git a/domains/duckysolucky.json b/domains/duckysolucky.json index b6af47bc4..f46ddcd49 100644 --- a/domains/duckysolucky.json +++ b/domains/duckysolucky.json @@ -3,7 +3,7 @@ "username": "DuckySoLucky", "email": "robertkovac160@gmail.com" }, - "record": { + "records": { "CNAME": "duckysolucky-github-io.pages.dev" } } diff --git a/domains/ductai05.json b/domains/ductai05.json index 77573c131..4c1b796cd 100644 --- a/domains/ductai05.json +++ b/domains/ductai05.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ductai05", - "email": "ductai.dt05@gmail.com" - }, - "record": { - "CNAME": "ductai05.github.io" - } + "owner": { + "username": "ductai05", + "email": "ductai.dt05@gmail.com" + }, + "records": { + "CNAME": "ductai05.github.io" + } } diff --git a/domains/dudani-meet.json b/domains/dudani-meet.json index 9480518a7..fa3b1c42d 100644 --- a/domains/dudani-meet.json +++ b/domains/dudani-meet.json @@ -4,7 +4,7 @@ "owner": { "username": "dudani-meet" }, - "record": { + "records": { "CNAME": "dudani-meet.github.io" } } diff --git a/domains/dumkalpoly.json b/domains/dumkalpoly.json index 0546f75f8..da44d67de 100644 --- a/domains/dumkalpoly.json +++ b/domains/dumkalpoly.json @@ -5,7 +5,7 @@ "username": "dumkalpoly", "email": "dumkalpoly@yahoo.com" }, - "record": { + "records": { "CNAME": "dumkalpoly.github.io" } } diff --git a/domains/dumo.json b/domains/dumo.json index d836d8c12..e22703de7 100644 --- a/domains/dumo.json +++ b/domains/dumo.json @@ -3,7 +3,7 @@ "username": "thepython555", "email": "k0n52uuu@duck.com" }, - "record": { + "records": { "CNAME": "thepython555.github.io" } } diff --git a/domains/dumprr.json b/domains/dumprr.json index c45723554..b645792ab 100644 --- a/domains/dumprr.json +++ b/domains/dumprr.json @@ -4,7 +4,7 @@ "username": "dumprr", "email": "duhhhmprr@proton.me" }, - "record": { + "records": { "CNAME": "dumprr.github.io" } } diff --git a/domains/dunkan.json b/domains/dunkan.json index a0db1bb35..bf1ac1087 100644 --- a/domains/dunkan.json +++ b/domains/dunkan.json @@ -4,7 +4,7 @@ "username": "dcdunkan", "twitter": "dcdunkan" }, - "record": { + "records": { "URL": "https://github.com/dcdunkan" } } diff --git a/domains/duong-viet-hoang.json b/domains/duong-viet-hoang.json new file mode 100644 index 000000000..64b248b58 --- /dev/null +++ b/domains/duong-viet-hoang.json @@ -0,0 +1,10 @@ +{ + "description": "My personal developer portfolio.", + "owner": { + "username": "bocanhcam", + "email": "hora.alien@gmail.com" + }, + "records": { + "CNAME": "bocanhcam.github.io" + } +} diff --git a/domains/durlavkalita.json b/domains/durlavkalita.json index 848d14bef..86661b90f 100644 --- a/domains/durlavkalita.json +++ b/domains/durlavkalita.json @@ -5,7 +5,7 @@ "username": "durlavkalita", "email": "durlavk98@gmail.com" }, - "record": { + "records": { "CNAME": "durlavkalita.github.io" } } diff --git a/domains/durov.json b/domains/durov.json index 94290eebc..95af38fd4 100644 --- a/domains/durov.json +++ b/domains/durov.json @@ -3,7 +3,7 @@ "username": "BobleGun", "email": "dobroq1954@gmail.com" }, - "record": { + "records": { "CNAME": "a0913910.xsph.ru" } } diff --git a/domains/dushmanta.json b/domains/dushmanta.json index ac23ed6e1..02383e2ef 100644 --- a/domains/dushmanta.json +++ b/domains/dushmanta.json @@ -6,7 +6,7 @@ "email": "dushbehera05@gmail.com", "twitter": "dushmanta05" }, - "record": { + "records": { "CNAME": "dushmanta05.github.io" } } diff --git a/domains/dust0n.json b/domains/dust0n.json index 4fdd5ffd6..20d23e3fd 100644 --- a/domains/dust0n.json +++ b/domains/dust0n.json @@ -3,7 +3,7 @@ "username": "itsdust0n", "email": "contact@dust0n.ru" }, - "record": { + "records": { "A": ["89.208.104.177"] } } diff --git a/domains/duy.json b/domains/duy.json index ae6fc7891..eab7cf15a 100644 --- a/domains/duy.json +++ b/domains/duy.json @@ -3,7 +3,7 @@ "username": "DuykhanhGaming", "email": "andickhead124@gmail.com" }, - "record": { + "records": { "CNAME": "dreemurrs.eu.org" } } diff --git a/domains/duydo.json b/domains/duydo.json index 3e48290e3..1ad2656ca 100644 --- a/domains/duydo.json +++ b/domains/duydo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "duydo", - "email": "doquocduy@gmail.com" - }, - "record": { - "CNAME": "duydo.github.io" - } + "owner": { + "username": "duydo", + "email": "doquocduy@gmail.com" + }, + "records": { + "CNAME": "duydo.github.io" + } } diff --git a/domains/duyhandsome.json b/domains/duyhandsome.json new file mode 100644 index 000000000..04539d15a --- /dev/null +++ b/domains/duyhandsome.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dominhduy09" + }, + "records": { + "URL": "https://dominhduy09.github.io/profile/" + } +} diff --git a/domains/duyhung.json b/domains/duyhung.json index 05736e1f2..9f9039fb2 100644 --- a/domains/duyhung.json +++ b/domains/duyhung.json @@ -3,7 +3,7 @@ "username": "hungwt", "email": "hungwt334@gmail.com" }, - "record": { + "records": { "A": ["31.186.83.254"] } } diff --git a/domains/duyhuyhoang.json b/domains/duyhuyhoang.json new file mode 100644 index 000000000..dc109baf6 --- /dev/null +++ b/domains/duyhuyhoang.json @@ -0,0 +1,20 @@ +{ + "description": "duyhuyhoang.is-a.dev : This is my personal notebook", + "owner": { + "username": "nguyenkimduy180697", + "email": "nguyenkimduy180697@gmail.com" + }, + "records": { + "URL": "https://nguyenkimduy.com/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/nguyenkimduy180697", + "/fb": "https://facebook.com/nguyenkimduy180697", + "/instagram": "https://instagram.com/nguyenkimduy180697/", + "/linkedin": "https://linkedin.com/in/nguyenkimduy180697", + "/viblo": "https://viblo.asia/u/nguyenkimduy180697" + }, + "redirect_paths": true + } +} diff --git a/domains/duyminhhello.json b/domains/duyminhhello.json index 762257986..72f53a964 100644 --- a/domains/duyminhhello.json +++ b/domains/duyminhhello.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tranphamduyminhhello", - "email": "tranphamduyminh.hello@gmail.com" - }, - "record": { + "owner": { + "username": "tranphamduyminhhello", + "email": "tranphamduyminh.hello@gmail.com" + }, + "records": { "CNAME": "tranphamduyminhhello.github.io" } } diff --git a/domains/duynguyen.json b/domains/duynguyen.json new file mode 100644 index 000000000..40e737911 --- /dev/null +++ b/domains/duynguyen.json @@ -0,0 +1,20 @@ +{ + "description": "duynguyen.is-a.dev : This is my personal notebook", + "owner": { + "username": "nguyenkimduy180697", + "email": "nguyenkimduy180697@gmail.com" + }, + "records": { + "URL": "https://nguyenkimduy.com/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/nguyenkimduy180697", + "/fb": "https://facebook.com/nguyenkimduy180697", + "/instagram": "https://instagram.com/nguyenkimduy180697/", + "/linkedin": "https://linkedin.com/in/nguyenkimduy180697", + "/viblo": "https://viblo.asia/u/nguyenkimduy180697" + }, + "redirect_paths": true + } +} diff --git a/domains/duynguyenkim.json b/domains/duynguyenkim.json new file mode 100644 index 000000000..f669549a3 --- /dev/null +++ b/domains/duynguyenkim.json @@ -0,0 +1,20 @@ +{ + "description": "duynguyenkim.is-a.dev : This is my personal notebook", + "owner": { + "username": "nguyenkimduy180697", + "email": "nguyenkimduy180697@gmail.com" + }, + "records": { + "URL": "https://nguyenkimduy.com/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/nguyenkimduy180697", + "/fb": "https://facebook.com/nguyenkimduy180697", + "/instagram": "https://instagram.com/nguyenkimduy180697/", + "/linkedin": "https://linkedin.com/in/nguyenkimduy180697", + "/viblo": "https://viblo.asia/u/nguyenkimduy180697" + }, + "redirect_paths": true + } +} diff --git a/domains/duypt14.json b/domains/duypt14.json new file mode 100644 index 000000000..92619504c --- /dev/null +++ b/domains/duypt14.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ptduy14", + "email": "phantanduy14@gmail.com" + }, + "records": { + "CNAME": "portfolio-ptduy14s-projects.vercel.app" + } +} diff --git a/domains/duyquang.json b/domains/duyquang.json index fb833a2f7..2500708b3 100644 --- a/domains/duyquang.json +++ b/domains/duyquang.json @@ -3,7 +3,7 @@ "username": "lequang0911", "email": "lequang.99@outlook.com" }, - "record": { + "records": { "A": ["103.97.126.23"] } } diff --git a/domains/duzo.json b/domains/duzo.json index ce7022753..c801e201c 100644 --- a/domains/duzo.json +++ b/domains/duzo.json @@ -2,10 +2,9 @@ "description": "For Duzo's website", "repo": "https://github.com/Duzos/duzos.github.io", "owner": { - "username": "Duzos", - "email": "73184526+Duzos@users.noreply.github.com" + "username": "Duzos" }, - "record": { + "records": { "CNAME": "duzos.github.io" } } diff --git a/domains/dvm.json b/domains/dvm.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/dvm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dvmi.json b/domains/dvmi.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/dvmi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dwigoric.json b/domains/dwigoric.json index 795579a34..b06f5ef0e 100644 --- a/domains/dwigoric.json +++ b/domains/dwigoric.json @@ -3,7 +3,7 @@ "username": "Dwigoric", "discord": "295391820744228867" }, - "record": { - "CNAME": "dwigoric.pages.dev" + "records": { + "URL": "https://dwigoric.dev" } } diff --git a/domains/dwii.json b/domains/dwii.json index 2956cf0fb..1b743527f 100644 --- a/domains/dwii.json +++ b/domains/dwii.json @@ -5,7 +5,7 @@ "username": "ItzMeDwii", "email": "dwiiunknown@gmail.com" }, - "record": { + "records": { "URL": "https://dwii.my.id" } } diff --git a/domains/dwij.json b/domains/dwij.json new file mode 100644 index 000000000..44ad2893c --- /dev/null +++ b/domains/dwij.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ssd39", + "email": "dwij@xylic.ai" + }, + "records": { + "URL": "https://github.com/ssd39" + } +} diff --git a/domains/dxler.json b/domains/dxler.json index c4be5807f..f5579a935 100644 --- a/domains/dxler.json +++ b/domains/dxler.json @@ -3,7 +3,7 @@ "username": "dxlerYT", "discord": "dxlerYT#8132" }, - "record": { + "records": { "URL": "https://6a921fc4.dxlerportfolio1.pages.dev" } } diff --git a/domains/dydestroyer.json b/domains/dydestroyer.json index 9ace12f06..f9d0225db 100644 --- a/domains/dydestroyer.json +++ b/domains/dydestroyer.json @@ -5,7 +5,7 @@ "username": "DyDestroyer1027", "discord": "dydestroyer#1027" }, - "record": { + "records": { "CNAME": "dydestroyer1027.github.io" } } diff --git a/domains/dyikes.json b/domains/dyikes.json index 670fb7662..fdeca0649 100644 --- a/domains/dyikes.json +++ b/domains/dyikes.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dyikes", - "email": "f@power.slmail.me" - }, - "record": { - "CNAME": "dyikes.duckdns.org" - } + "owner": { + "username": "dyikes", + "email": "f@power.slmail.me" + }, + "records": { + "CNAME": "dyikes.duckdns.org" + } } diff --git a/domains/dylanjtholen.json b/domains/dylanjtholen.json index fbcb63e9f..beec0c5a2 100644 --- a/domains/dylanjtholen.json +++ b/domains/dylanjtholen.json @@ -3,7 +3,7 @@ "username": "dylanjtholen", "email": "dylanjtholen@gmail.com" }, - "record": { + "records": { "CNAME": "dylanjtholen.github.io" } } diff --git a/domains/dylanmarsili.json b/domains/dylanmarsili.json index bad2927de..520671c70 100644 --- a/domains/dylanmarsili.json +++ b/domains/dylanmarsili.json @@ -4,7 +4,7 @@ "email": "marsilidylan@gmail.com", "discord": "721840611174383780" }, - "record": { + "records": { "CNAME": "dylan-marsili.github.io" } } diff --git a/domains/dyno.json b/domains/dyno.json index a2c23b4da..9018581e0 100644 --- a/domains/dyno.json +++ b/domains/dyno.json @@ -4,7 +4,7 @@ "email": "naffets0@gmail.com", "discord": "455608238335983617" }, - "record": { + "records": { "CNAME": "dynow.pages.dev" } } diff --git a/domains/dzdevelopers.json b/domains/dzdevelopers.json new file mode 100644 index 000000000..782a4cb4e --- /dev/null +++ b/domains/dzdevelopers.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "DZDevelopers", + "email": "djoudiaymen0@gmail.com" + }, + "records": { + "MX": [ + { + "target": "mx.zoho.com", + "priority": 10 + }, + { + "target": "mx2.zoho.com", + "priority": 20 + }, + { + "target": "mx3.zoho.com", + "priority": 50 + } + ], + "TXT": ["zoho-verification=zb51189051.zmverify.zoho.com", "v=spf1 include:zoho.com ~all"] + } +} diff --git a/domains/e.json b/domains/e.json index 718903a27..758106bcc 100644 --- a/domains/e.json +++ b/domains/e.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Pe5ZJbpCemxi3LNkJueUT8yXsbcvTYMB8kUNIcrEiMQ74S1tK_AKJQNr8z91rdDCgnQrkwm4IXOdg0hVfesD6BNXzdkk0tbCa_XMhMcWXySl4FxpBplksSYowTFn8kt71dC6wziz-bIxHqiV05qq8iQz4no4dRx7y201eFhYjHwohmgsDVuHo-RKwWPZb4DQ3pU9q-Kmj3S9oYzbSyeJwzBTOvNZMfTH3mg62WM-8LX9kCEzSxt0RMZonEWBR4iwDfHW4RTL5_q3cM6YlQZgZhMskM0d2qjfW41Z1Rgkk-LoK_Ocy4FgexKGSSQB1ELvKKiB3HIx8SzAJGOUN5embQ.tVHlDE7ViTBjpMwwBziXWg.sxxbX9aYI6LgcOWeVuPJb3-ElpjibO2jA2oyPETPZxVDbxFv-u2NHToDpur3BlAbrqPxdyoD6Axx_khEsNdkCYAFu7US9cMPo7VQvlXgyQRFJSb2_UzskvshnTNO5j-x.-2VA5T7QSGPdyTxNk00KGQ" + "discord": "1167825360151380032" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/earth.sx9.json b/domains/earth.sx9.json index 5cdcbf659..ee6be3583 100644 --- a/domains/earth.sx9.json +++ b/domains/earth.sx9.json @@ -3,7 +3,7 @@ "username": "SX-9", "email": "hello@mail.sx9.is-a.dev" }, - "record": { + "records": { "CNAME": "sx-9.github.io" } } diff --git a/domains/easynebula.json b/domains/easynebula.json index 39444fee7..6601b6c06 100644 --- a/domains/easynebula.json +++ b/domains/easynebula.json @@ -6,7 +6,7 @@ "email": "geographicalfacts16@gmail.com", "twitter": "easynebula" }, - "record": { + "records": { "CNAME": "easynebula.github.io" } } diff --git a/domains/eazyblack.json b/domains/eazyblack.json index b6576582d..0ae6f5469 100644 --- a/domains/eazyblack.json +++ b/domains/eazyblack.json @@ -5,7 +5,7 @@ "username": "eazyblack", "email": "eazywhite40@gmail.com" }, - "record": { + "records": { "CNAME": "eazyblack.github.io" } } diff --git a/domains/ebaa.json b/domains/ebaa.json index da44b84d4..28e8f0347 100644 --- a/domains/ebaa.json +++ b/domains/ebaa.json @@ -3,7 +3,7 @@ "username": "EbaaCode", "email": "ebaa2002@outlook.com" }, - "record": { + "records": { "URL": "https://ebaa.dev" } } diff --git a/domains/ebonato.json b/domains/ebonato.json index 0b1c188ea..299d29864 100644 --- a/domains/ebonato.json +++ b/domains/ebonato.json @@ -3,7 +3,7 @@ "username": "ebonato", "email": "ebonato@gmail.com" }, - "record": { + "records": { "CNAME": "ebonato.github.io" } } diff --git a/domains/ebooks.json b/domains/ebooks.json new file mode 100644 index 000000000..25eb08065 --- /dev/null +++ b/domains/ebooks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "records": { + "CNAME": "ebooks-online-opal.vercel.app" + } +} diff --git a/domains/ebrahim.json b/domains/ebrahim.json new file mode 100644 index 000000000..7a65cf9a6 --- /dev/null +++ b/domains/ebrahim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ebrahimHakimuddin", + "email": "ebrahimhakimuddin@gmail.com" + }, + "records": { + "CNAME": "ebrahimhakimuddin.github.io" + } +} diff --git a/domains/ecalzo.json b/domains/ecalzo.json index b54cac9a3..c8d423a01 100644 --- a/domains/ecalzo.json +++ b/domains/ecalzo.json @@ -5,7 +5,7 @@ "username": "ecalzo", "email": "evancalz@me.com" }, - "record": { + "records": { "CNAME": "ecalzo.github.io" } } diff --git a/domains/echo-des-luttes.json b/domains/echo-des-luttes.json index 9ad4f3f22..37e5ec743 100644 --- a/domains/echo-des-luttes.json +++ b/domains/echo-des-luttes.json @@ -4,7 +4,7 @@ "username": "gills", "email": "gigi37300@gmail.com" }, - "record": { + "records": { "CNAME": "echo-des-luttes.qevi7356.odns.fr" } } diff --git a/domains/echo2477.json b/domains/echo2477.json index b2dfb746d..8cdb1e33a 100644 --- a/domains/echo2477.json +++ b/domains/echo2477.json @@ -5,7 +5,7 @@ "username": "echo2477", "email": "pku.eko16@gmail.com" }, - "record": { + "records": { "CNAME": "echo2477.github.io" } } diff --git a/domains/eclipse.json b/domains/eclipse.json index c645d0fec..d2e614584 100644 --- a/domains/eclipse.json +++ b/domains/eclipse.json @@ -4,7 +4,7 @@ "twitter": "eclips_e69" }, "description": "A little portfolio based with a basic account system for learning purposes.", - "record": { + "records": { "CNAME": "eclips-espace-production.up.railway.app" } } diff --git a/domains/ecoplayer07.json b/domains/ecoplayer07.json index 58160d6ac..a9146b36b 100644 --- a/domains/ecoplayer07.json +++ b/domains/ecoplayer07.json @@ -3,7 +3,7 @@ "username": "ecoplayer07", "email": "kareemehab910@gmail.com" }, - "record": { + "records": { "CNAME": "ecoplayer07.github.io" } } diff --git a/domains/ecstaticsoul.json b/domains/ecstaticsoul.json index d268d9fa3..f9736f201 100644 --- a/domains/ecstaticsoul.json +++ b/domains/ecstaticsoul.json @@ -3,7 +3,7 @@ "username": "ecstaticsoul", "email": "soulfulkrishna@gmail.com" }, - "record": { + "records": { "CNAME": "ecstaticsoul.github.io" } } diff --git a/domains/ed-henrique.json b/domains/ed-henrique.json new file mode 100644 index 000000000..81e8ec408 --- /dev/null +++ b/domains/ed-henrique.json @@ -0,0 +1,11 @@ +{ + "description": "Personal blog", + "repo": "https://github.com/ed-henrique/blog", + "owner": { + "username": "ed-henrique", + "email": "edu.hen.fm@gmail.com" + }, + "records": { + "CNAME": "ed-henrique.com" + } +} diff --git a/domains/eden.json b/domains/eden.json index 1e8421183..e45c616c6 100644 --- a/domains/eden.json +++ b/domains/eden.json @@ -4,7 +4,7 @@ "username": "EdenQwQ", "email": "lsahlm1eden@gmail.com" }, - "record": { + "records": { "CNAME": "edenqwq.github.io" } } diff --git a/domains/edjva.json b/domains/edjva.json index 4d850a52a..9136ae272 100644 --- a/domains/edjva.json +++ b/domains/edjva.json @@ -3,7 +3,7 @@ "username": "skoblkodpt", "email": "skobl.kodpt.1@gmail.com" }, - "record": { + "records": { "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 index a64e8aba2..32fc48596 100644 --- a/domains/edmonddevera.json +++ b/domains/edmonddevera.json @@ -5,7 +5,7 @@ "username": "Tsuuukiii", "email": "deverajan6@gmail.com" }, - "record": { + "records": { "CNAME": "tsuuukiii.github.io" } } diff --git a/domains/edrea.json b/domains/edrea.json index 58bfb8e38..6dce8f857 100644 --- a/domains/edrea.json +++ b/domains/edrea.json @@ -5,7 +5,7 @@ "username": "Edrea", "email": "edrea@metalunits.com" }, - "record": { + "records": { "CNAME": "ruw3t.github.io" } } diff --git a/domains/eduardo.json b/domains/eduardo.json new file mode 100644 index 000000000..fb5569647 --- /dev/null +++ b/domains/eduardo.json @@ -0,0 +1,11 @@ +{ + "description": "Personal subdomain", + "repo": "https://github.com/eduardonobrega/personal-website", + "owner": { + "username": "eduardonobrega", + "email": "eduardo.nobrrega@gmail.com" + }, + "records": { + "CNAME": "eduardonobrega.github.io" + } +} diff --git a/domains/educatedsuddenbucket.json b/domains/educatedsuddenbucket.json index d49d77c7f..97091ccff 100644 --- a/domains/educatedsuddenbucket.json +++ b/domains/educatedsuddenbucket.json @@ -3,12 +3,13 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" ], "TXT": [ "google-site-verification=hS8B2hSz-rNk6gLRnwaZjxuJE9rCLU_25X65JsLEczE", diff --git a/domains/edudutra.json b/domains/edudutra.json new file mode 100644 index 000000000..8eb0266ac --- /dev/null +++ b/domains/edudutra.json @@ -0,0 +1,11 @@ +{ + "description": "Personal subdomain", + "repo": "https://github.com/edudutra/edudutra.github.io", + "owner": { + "username": "edudutra", + "email": "emdutra@gmail.com" + }, + "records": { + "CNAME": "edudutra.github.io" + } +} diff --git a/domains/edward.json b/domains/edward.json index 7946a3ef1..2d3ee344f 100644 --- a/domains/edward.json +++ b/domains/edward.json @@ -3,7 +3,7 @@ "username": "EdwardTheLegend", "email": "edward@edwardtlowe.com" }, - "record": { + "records": { "CNAME": "edwardthelegend.github.io" } } diff --git a/domains/edwardsnowden.json b/domains/edwardsnowden.json index 2f8c2cd17..6972e3c51 100644 --- a/domains/edwardsnowden.json +++ b/domains/edwardsnowden.json @@ -3,7 +3,7 @@ "username": "satoshi-prefers-monero", "email": "satoshinakamoto@tuta.com" }, - "record": { + "records": { "URL": "https://stephencastelphoto.com" } } diff --git a/domains/edwin-lh.json b/domains/edwin-lh.json index bdd08e6b9..54f2beb39 100644 --- a/domains/edwin-lh.json +++ b/domains/edwin-lh.json @@ -6,7 +6,7 @@ "email": "edwinnnzx@gmail.com", "twitter": "Ezerinz" }, - "record": { + "records": { "CNAME": "ezerinz.github.io" } } diff --git a/domains/edwin.json b/domains/edwin.json index d15a104c9..e65a8d8cd 100644 --- a/domains/edwin.json +++ b/domains/edwin.json @@ -4,7 +4,7 @@ "username": "edwinm", "email": "edwin@bitstorm.org" }, - "record": { + "records": { "CNAME": "bitstorm.org" } } diff --git a/domains/eesa.json b/domains/eesa.json index 12351fd1f..e94d1ab8f 100644 --- a/domains/eesa.json +++ b/domains/eesa.json @@ -5,7 +5,7 @@ "username": "eesazahed", "email": "eszhd1@gmail.com" }, - "record": { + "records": { "CNAME": "eesa.zahed.ca" } } diff --git a/domains/eeshwar.json b/domains/eeshwar.json index c6f3cc0c0..4f93ff40d 100644 --- a/domains/eeshwar.json +++ b/domains/eeshwar.json @@ -4,7 +4,7 @@ "email": "darkboi3301@gmail.com", "discord": "790788825550028820" }, - "record": { + "records": { "CNAME": "eeshwar.pages.dev" } } diff --git a/domains/eevee.json b/domains/eevee.json index 62fe81b5f..af1d62653 100644 --- a/domains/eevee.json +++ b/domains/eevee.json @@ -3,7 +3,7 @@ "username": "Eevee-Gaming", "email": "nonothug59@gmail.com" }, - "record": { + "records": { "URL": "https://eeveegaming.cf" } } diff --git a/domains/efe-esxi.json b/domains/efe-esxi.json index 02b393e6b..bc6cdd77b 100644 --- a/domains/efe-esxi.json +++ b/domains/efe-esxi.json @@ -1,10 +1,9 @@ { "owner": { "username": "Efebey2903", - "discord": "1036244397026705498", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.p80sFWEHwAx-piEPnJxcNPKFf2ybMxNbvJEw_6IYUxLq4jgGjBOO9et5GcBy8xqjV8ltsyiQVBiD4-rI2chW4CekjfrmbtztSEuDFgO_-YonHXnY97NdGXa3vwkBmBcokVlvYDn3hOMROBexby_5imYQ1kbWG17q4430-Adj5l2g8aX1TtEJaDQMZE7cDx48WjRzmpDxWn5bQGrFDLzUXyISzSw6t4Yn3ajD0s4EHoRMW8kTn4Iz2LnHT9c92SCwRzsFzRd7WpeLQ7D0d5allFFAbUWLzar96QHzpex2pMJM3UbZI11RaCTmQJP6js8xGW5huq1O9KzsS4BzUlKesA.cIb7UseFOBaIpZ84z8b_Ng.xTLtMCbl_XRJvrIRcTCD6_z4LfG5x4Udf8Nsrtp51Q8eRdvkEaSaBzdc2TDAAZkGz0H3VUiodCL2fDCF-UI2a7T0rb6cq7T7PEUt66BJ57c.xmrV6jXfP79yzpM-6hCDDQ" + "discord": "1036244397026705498" }, - "record": { + "records": { "A": ["115.239.230.106"] } } diff --git a/domains/efe.json b/domains/efe.json index 17272cdac..d2483908b 100644 --- a/domains/efe.json +++ b/domains/efe.json @@ -1,11 +1,10 @@ { "description": "personal website", - "repo": "https://github.com/0x656665", "owner": { "username": "0x656665", "email": "efe@tutanota.de" }, - "record": { + "records": { "URL": "https://efe.dev" } } diff --git a/domains/effex.json b/domains/effex.json index 74098082d..3e7ed83b9 100644 --- a/domains/effex.json +++ b/domains/effex.json @@ -3,7 +3,7 @@ "username": "noteffex", "email": "effex.wtf@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/noteffex" } } diff --git a/domains/egirl.json b/domains/egirl.json index f45137c23..d396112c8 100644 --- a/domains/egirl.json +++ b/domains/egirl.json @@ -3,7 +3,7 @@ "username": "mAskDucK", "discord": "maskduck" }, - "record": { + "records": { "CNAME": "maskduck.pages.dev" } } diff --git a/domains/egor.json b/domains/egor.json new file mode 100644 index 000000000..4cc4c1305 --- /dev/null +++ b/domains/egor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "egor-xyz", + "discord": "egor.xyz" + }, + "records": { + "CNAME": "egor.xyz" + } +} diff --git a/domains/egyxo.json b/domains/egyxo.json index 701f9302d..5286dd260 100644 --- a/domains/egyxo.json +++ b/domains/egyxo.json @@ -4,7 +4,7 @@ "email": "esl2my@gmail.com", "discord": "1016128744819265618" }, - "record": { + "records": { "CNAME": "7oda-mo.github.io" } } diff --git a/domains/ehab.json b/domains/ehab.json index cb4722b1a..cc3b2fddb 100644 --- a/domains/ehab.json +++ b/domains/ehab.json @@ -3,7 +3,7 @@ "username": "ehabmansour1", "email": "mansehab990@gmail.com" }, - "record": { + "records": { "A": ["128.204.223.115"], "TXT": "v=spf1 mx a include:mail9.serv00.com -all", "MX": ["mail9.serv00.com"] diff --git a/domains/ehsan.json b/domains/ehsan.json index 333087917..3a7fae549 100644 --- a/domains/ehsan.json +++ b/domains/ehsan.json @@ -3,7 +3,7 @@ "username": "eCodeVoyager", "email": "mu23172@gmail.com" }, - "record": { + "records": { "A": ["8.219.148.143"] } } diff --git a/domains/ejaz.json b/domains/ejaz.json index 7fc215445..e3d3ffd91 100644 --- a/domains/ejaz.json +++ b/domains/ejaz.json @@ -3,7 +3,7 @@ "username": "ejaz4", "email": "ejazali4@protonmail.ch" }, - "record": { + "records": { "CNAME": "ejaz4.github.io" } } diff --git a/domains/ekinvarli.json b/domains/ekinvarli.json index 9d81fc002..3cfc99e82 100644 --- a/domains/ekinvarli.json +++ b/domains/ekinvarli.json @@ -6,7 +6,7 @@ "email": "ekinnos@tutanota.com", "twitter": "eknvarli" }, - "record": { + "records": { "CNAME": "eknvarli.github.io" } } diff --git a/domains/ela.json b/domains/ela.json index 58fb9c211..c66cb7509 100644 --- a/domains/ela.json +++ b/domains/ela.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "DXRdev" - }, - "record": { - "CNAME": "dxrdev.github.io" - } -} + "owner": { + "username": "DXRdev" + }, + "records": { + "CNAME": "dxrdev.github.io" + } +} diff --git a/domains/elanchezhiyan-p.json b/domains/elanchezhiyan-p.json new file mode 100644 index 000000000..5b1e38a69 --- /dev/null +++ b/domains/elanchezhiyan-p.json @@ -0,0 +1,11 @@ +{ + "description": "Elanchezhiyan's personal developer website", + "repo": "https://github.com/Elanchezhiyan-P/Elanchezhiyan-P.git", + "owner": { + "username": "Elanchezhiyan-P", + "email": "elanche97@gmail.com" + }, + "records": { + "CNAME": "elanchezhiyan-p.github.io" + } +} diff --git a/domains/elbek.json b/domains/elbek.json new file mode 100644 index 000000000..0bf1fe5f8 --- /dev/null +++ b/domains/elbek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khamdullaevuz", + "email": "elbek.khamdullaev@gmail.com" + }, + "records": { + "CNAME": "khamdullaevuz.github.io" + } +} diff --git a/domains/elbenja.json b/domains/elbenja.json index 0c235926a..2d48d666b 100644 --- a/domains/elbenja.json +++ b/domains/elbenja.json @@ -4,7 +4,7 @@ "email": "iakzs@protonmail.com", "discord": "622795838032314388" }, - "record": { + "records": { "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 index 697d134c6..c85c50f48 100644 --- a/domains/elbernaoui.json +++ b/domains/elbernaoui.json @@ -5,7 +5,7 @@ "username": "EL-Bernaoui", "twitter": "ELBRN_Achraf" }, - "record": { + "records": { "CNAME": "el-bernaoui.github.io" } } diff --git a/domains/elbkr.json b/domains/elbkr.json index 45b997493..9f7f13d2e 100644 --- a/domains/elbkr.json +++ b/domains/elbkr.json @@ -4,7 +4,7 @@ "email": "zaakoukiayman@gmail.com", "twitter": "elbkrrr" }, - "record": { + "records": { "CNAME": "elbkr.github.io" } } diff --git a/domains/eldano.json b/domains/eldano.json index 43b1db779..29f9fe895 100644 --- a/domains/eldano.json +++ b/domains/eldano.json @@ -5,7 +5,7 @@ "username": "eldano", "twitter": "eldanov2" }, - "record": { + "records": { "CNAME": "eldano.github.io" } } diff --git a/domains/eldin.json b/domains/eldin.json index 2f94e4d77..19658b42e 100644 --- a/domains/eldin.json +++ b/domains/eldin.json @@ -5,7 +5,7 @@ "username": "ahmed-eldin", "email": "ahmedeldin98@gmail.com" }, - "record": { + "records": { "CNAME": "ahmed-eldin.github.io" } } diff --git a/domains/eldinesh.json b/domains/eldinesh.json index 11b660c02..1b15fa02f 100644 --- a/domains/eldinesh.json +++ b/domains/eldinesh.json @@ -5,7 +5,7 @@ "username": "eldinesh", "email": "dseera6@gmail.com" }, - "record": { + "records": { "CNAME": "eldinesh.github.io" } } diff --git a/domains/eldios.json b/domains/eldios.json new file mode 100644 index 000000000..bfa477309 --- /dev/null +++ b/domains/eldios.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for Lele - eldios", + "repo": "https://github.com/eldios/eldios.github.io", + "owner": { + "username": "eldios", + "twitter": "eldios" + }, + "records": { + "CNAME": "eldios.github.io" + } +} diff --git a/domains/eldzey.json b/domains/eldzey.json index e60547b8c..d2875e6c3 100644 --- a/domains/eldzey.json +++ b/domains/eldzey.json @@ -4,7 +4,7 @@ "email": "alxalien@proton.me", "discord": "697408753288478742" }, - "record": { + "records": { "CNAME": "elefantapan.github.io" } } diff --git a/domains/element.json b/domains/element.json new file mode 100644 index 000000000..3cf9d256f --- /dev/null +++ b/domains/element.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/playreaver/reaverlauncher", + "owner": { + "username": "playreaver", + "email": "reaver.entertainment@hotmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/eletrixtime.json b/domains/eletrixtime.json deleted file mode 100644 index 39bb05d91..000000000 --- a/domains/eletrixtime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "EletrixtimeYT", - "email": "lisandro.b@outlook.com" - }, - "record": { - "CNAME": "eletrixtimeyt.github.io" - } -} diff --git a/domains/elf.json b/domains/elf.json index b3487c763..3f55e02c9 100644 --- a/domains/elf.json +++ b/domains/elf.json @@ -5,7 +5,7 @@ "username": "Elflanded", "email": "elflanded@gmail.com" }, - "record": { + "records": { "CNAME": "elflanded.github.io" } } diff --git a/domains/elfanaan.json b/domains/elfanaan.json index ad7c24287..fb48c2790 100644 --- a/domains/elfanaan.json +++ b/domains/elfanaan.json @@ -4,7 +4,7 @@ "email": "hmmm202031520062021@gmail.com", "discord": "775012312876711936" }, - "record": { + "records": { "URL": "http://elfanaan.giize.com", "MX": ["mail.is-a.dev"], "TXT": "v=spf1 mx a:mail.is-a.dev ~all" diff --git a/domains/eli.json b/domains/eli.json new file mode 100644 index 000000000..52b05fc39 --- /dev/null +++ b/domains/eli.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "elisoreal" + }, + "records": { + "CNAME": "elisoreal.github.io" + } +} diff --git a/domains/elias.json b/domains/elias.json index 60f56f91a..b00e7b498 100644 --- a/domains/elias.json +++ b/domains/elias.json @@ -6,7 +6,7 @@ "email": "eliaskernel@protonmail.com", "twitter": "eliaskernel" }, - "record": { + "records": { "CNAME": "eliaskernel.github.io" } } diff --git a/domains/elib0.json b/domains/elib0.json new file mode 100644 index 000000000..945f9c7fe --- /dev/null +++ b/domains/elib0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "elib0", + "email": "elijose.c@gmail.com" + }, + "records": { + "CNAME": "elib0.github.io" + } +} diff --git a/domains/elijah629.json b/domains/elijah629.json index 77b0e4bde..47c84d8a3 100644 --- a/domains/elijah629.json +++ b/domains/elijah629.json @@ -5,7 +5,7 @@ "username": "Elijah629", "discord": "Elijah629#6199" }, - "record": { + "records": { "URL": "https://elijah629.vercel.app" } } diff --git a/domains/elisaterumi.json b/domains/elisaterumi.json new file mode 100644 index 000000000..95d8de861 --- /dev/null +++ b/domains/elisaterumi.json @@ -0,0 +1,11 @@ +{ + "description": "Personal subdomain", + "repo": "https://github.com/lisaterumi/lisaterumi.github.io", + "owner": { + "username": "lisaterumi", + "email": "contato@mulheresprogramando.com.br" + }, + "records": { + "CNAME": "lisaterumi.github.io" + } +} diff --git a/domains/elite.json b/domains/elite.json index 402135049..ea03928f4 100644 --- a/domains/elite.json +++ b/domains/elite.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "thaihung48", - "email": "contact.hungg+dev@gmail.com" - }, - "record": { - "NS": [ - "dilbert.ns.cloudflare.com", - "fish.ns.cloudflare.com" - ] - } + "owner": { + "username": "thaihung48", + "email": "contact.hungg+dev@gmail.com" + }, + "records": { + "NS": ["dilbert.ns.cloudflare.com", "fish.ns.cloudflare.com"] + } } diff --git a/domains/elixss.json b/domains/elixss.json index 2e9590c5c..d81053e74 100644 --- a/domains/elixss.json +++ b/domains/elixss.json @@ -3,7 +3,7 @@ "username": "elixss", "email": "elias.jaeger2004@gmail.com" }, - "record": { + "records": { "A": ["45.81.232.16"] } } diff --git a/domains/ella.json b/domains/ella.json index 58f13e075..b00fd69cd 100644 --- a/domains/ella.json +++ b/domains/ella.json @@ -5,7 +5,7 @@ "username": "eilla1", "email": "exu6056@gmail.com" }, - "record": { + "records": { "CNAME": "eilla1.github.io" } } diff --git a/domains/elliott.json b/domains/elliott.json index 21753472d..2bb1aca76 100644 --- a/domains/elliott.json +++ b/domains/elliott.json @@ -3,7 +3,7 @@ "username": "elliott-leow", "email": "leow1879@mydusd.org" }, - "record": { + "records": { "CNAME": "elliottleow.me" } } diff --git a/domains/elma.json b/domains/elma.json index 655ee71ba..7f88835cb 100644 --- a/domains/elma.json +++ b/domains/elma.json @@ -3,7 +3,7 @@ "username": "minibox24", "email": "minibox724@gmail.com" }, - "record": { + "records": { "CNAME": "isadev.minibox.xyz" } } diff --git a/domains/eloisa.json b/domains/eloisa.json index 7b6c62008..6d7d3de9f 100644 --- a/domains/eloisa.json +++ b/domains/eloisa.json @@ -4,7 +4,7 @@ "username": "eloooysa14", "email": "anoseloisa@gmail.com" }, - "record": { + "records": { "CNAME": "porfolio-cvp.pages.dev" } } diff --git a/domains/elora.json b/domains/elora.json index 38db8517c..6d811c910 100644 --- a/domains/elora.json +++ b/domains/elora.json @@ -3,7 +3,7 @@ "username": "elorahub", "email": "elorahubph@gmail.com" }, - "record": { + "records": { "CNAME": "apex-loadbalancer.netlify.com" } } diff --git a/domains/elulolaito.json b/domains/elulolaito.json deleted file mode 100644 index a55764619..000000000 --- a/domains/elulolaito.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "elulolaito", - "email": "eru.lawliet.death@gmail.com" - }, - "record": { - "CNAME": "elulolaito.github.io" - } -} diff --git a/domains/elvis-tran.json b/domains/elvis-tran.json new file mode 100644 index 000000000..70a05fbcc --- /dev/null +++ b/domains/elvis-tran.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "totargaming", + "email": "elvistranhere@gmail.com", + "discord": "elvistran.here" + }, + "records": { + "CNAME": "elvis-tran.vercel.app" + } +} diff --git a/domains/elvis.json b/domains/elvis.json index 6b36bcf9a..e6f3a9112 100644 --- a/domains/elvis.json +++ b/domains/elvis.json @@ -4,7 +4,7 @@ "username": "ElvisUpUp", "email": "elvis4study@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ElvisUpUp" } } diff --git a/domains/elyagoubi.json b/domains/elyagoubi.json index e6839eefa..7d31c5af2 100644 --- a/domains/elyagoubi.json +++ b/domains/elyagoubi.json @@ -3,13 +3,8 @@ "username": "abdessattar23", "email": "elyagoubiabdessattar@gmail.com" }, - "record": { - "A": [ - "185.199.111.153", - "185.199.108.153", - "185.199.109.153", - "185.199.110.153" - ], + "records": { + "A": ["185.199.111.153", "185.199.108.153", "185.199.109.153", "185.199.110.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/elyazid.json b/domains/elyazid.json new file mode 100644 index 000000000..faadb44f3 --- /dev/null +++ b/domains/elyazid.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/MrElyazid/MrElyazid.github.io", + "owner": { + "username": "MrElyazid", + "email": "elyazid.assouli@gmail.com" + }, + "records": { + "CNAME": "mrelyazid.github.io" + } +} diff --git a/domains/elyesghorbel.json b/domains/elyesghorbel.json new file mode 100644 index 000000000..0799f38be --- /dev/null +++ b/domains/elyesghorbel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "elyescesar", + "email": "elyesghorbeldev@gmail.com", + "discord": "840182191244705802" + }, + "records": { + "CNAME": "portfolio-git-master-elyescesars-projects.vercel.app" + } +} diff --git a/domains/em697376.yxz.json b/domains/em697376.yxz.json index 7597b4ad3..f8c0356f1 100644 --- a/domains/em697376.yxz.json +++ b/domains/em697376.yxz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yz9551", - "discord": "yz9551" - }, - "record": { - "CNAME": "return.smtp2go.net" - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "records": { + "CNAME": "return.smtp2go.net" + } } diff --git a/domains/email.ps.json b/domains/email.ps.json index 41b6cc6a2..816e2da49 100644 --- a/domains/email.ps.json +++ b/domains/email.ps.json @@ -1,9 +1,8 @@ { "owner": { - "username": "PrivacySecured", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ" + "username": "PrivacySecured" }, - "record": { + "records": { "URL": "http://scr.im/PrivSec" } } diff --git a/domains/email.zeaxey.json b/domains/email.zeaxey.json index 4dfe6ae62..2a3cb61f0 100644 --- a/domains/email.zeaxey.json +++ b/domains/email.zeaxey.json @@ -3,7 +3,7 @@ "username": "Pixel556", "email": "therealzeaxey123@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/email.zerow.json b/domains/email.zerow.json index b08857d53..c0abbae7f 100644 --- a/domains/email.zerow.json +++ b/domains/email.zerow.json @@ -3,7 +3,7 @@ "username": "DevZerow", "email": "zerow.pro@protonmail.com" }, - "record": { + "records": { "MX": ["mail.zerow.is-a.dev"] } } diff --git a/domains/emamut.json b/domains/emamut.json new file mode 100644 index 000000000..235a2ca62 --- /dev/null +++ b/domains/emamut.json @@ -0,0 +1,11 @@ +{ + "description": "Faber Vergara - Web Developer", + "repo": "https://github.com/emamut/cv", + "owner": { + "username": "emamut", + "email": "fabervergara@gmail.ocm" + }, + "records": { + "CNAME": "emamut.vercel.app" + } +} diff --git a/domains/emanuel-prado.json b/domains/emanuel-prado.json new file mode 100644 index 000000000..9be0c74b5 --- /dev/null +++ b/domains/emanuel-prado.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emanu-dev", + "email": "emanuel.prado.dev@gmail.com" + }, + "records": { + "CNAME": "meteoric-swarm.vercel.app" + } +} diff --git a/domains/emanuelcarvalho.json b/domains/emanuelcarvalho.json index 544620101..6efbadb10 100644 --- a/domains/emanuelcarvalho.json +++ b/domains/emanuelcarvalho.json @@ -1,10 +1,9 @@ { "owner": { "username": "Ziuell", - "discord": "388674889755787264", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iJvMy6tGm875eD-9lsB5IfcWskqnsXIbsSnlviJdv5iae7QpvRAy83NoBpiIepERUF9vJoCqAAHrfHET6ks6AmABxW0YXJCUmOgAOTDFnUxNhF93js5FQZungz7HFTiggxPqodkJm-zsFhGEws0J_-KIr4y0jjHJfA5au8vTiBFVjm-9uClXLjpY9P1m7qPpRVSvluh6_uiqvruyKAm8bP9DWPbzoZA8rnIStRj-t1v0QXQleGCJfPwy3aHmmt7jLu3NnMoZVQXPmNwHjC852mh_d763vg2mZKzFVv1vNXaJ5cLghZ42fCoobCKWx7K5PjiN8cqGBK4_wYle2ayLaQ.lz7KqOUsFro4hi0uW68C5A.YRQmUayW5lH918VkPsfS8KjGy7hEEM3yt36Nn4XlIM_cMDF_dMWsw9owA4alGx9gV2jhK7K6SBk4Dgnk9sOlJ8_B3-c4WiRn4_TgdSqjlv-elshxP12afmtyBvqDCjbA.tcxorp9fN4m48aKE0HdBnQ" + "discord": "388674889755787264" }, - "record": { + "records": { "CNAME": "ziuell.github.io" } } diff --git a/domains/emeneekw.json b/domains/emeneekw.json index 4ca7c1ae7..504f37b46 100644 --- a/domains/emeneekw.json +++ b/domains/emeneekw.json @@ -5,7 +5,7 @@ "username": "emeneekw", "email": "mne-zone@hotmail.com" }, - "record": { + "records": { "URL": "https://emenee-ht4vnrn.gamma.site/" } } diff --git a/domains/emhl.json b/domains/emhl.json index 0ba33bf67..9d84f03d2 100644 --- a/domains/emhl.json +++ b/domains/emhl.json @@ -5,7 +5,7 @@ "username": "emhl", "email": "stnr.emil@gmail.com" }, - "record": { + "records": { "CNAME": "emhl.github.io" } } diff --git a/domains/emily.json b/domains/emily.json index 481480df0..1d6b4b60c 100644 --- a/domains/emily.json +++ b/domains/emily.json @@ -6,7 +6,7 @@ "note": "Koji Redirect" }, "description": "Redirects to my Koji Profile: https://koji.to/EmilyLove", - "record": { + "records": { "CNAME": "cnames.withkoji.com" } } diff --git a/domains/emmy.json b/domains/emmy.json index 1dbb78294..617fd9a85 100644 --- a/domains/emmy.json +++ b/domains/emmy.json @@ -3,7 +3,7 @@ "username": "8FrMc", "email": "pijuskaminskas1@gmail.com" }, - "record": { + "records": { "URL": "https://sk1dhub.xyz" } } diff --git a/domains/emoji.json b/domains/emoji.json index 7570ba98d..f59187820 100644 --- a/domains/emoji.json +++ b/domains/emoji.json @@ -4,7 +4,7 @@ "email": "cyril.dettling@gmail.com", "discord": "1123260870991020083" }, - "record": { + "records": { "CNAME": "itzemojiwebsite.pages.dev" } } diff --git a/domains/emojiplayer.json b/domains/emojiplayer.json index 294a5253a..c6bff9746 100644 --- a/domains/emojiplayer.json +++ b/domains/emojiplayer.json @@ -3,7 +3,7 @@ "username": "ItzEmoji", "email": "cyril.dettling@gmail.com" }, - "record": { + "records": { "CNAME": "itzemojiwebsite.pages.dev" } } diff --git a/domains/emojisteg.json b/domains/emojisteg.json new file mode 100644 index 000000000..91c2f8075 --- /dev/null +++ b/domains/emojisteg.json @@ -0,0 +1,12 @@ +{ + "description": "Cloudflare Pages site for emojisteg", + "repo": "https://github.com/carterlasalle/emojistega", + "owner": { + "username": "carterlasalle", + "email": "carterlasalle@gmail.com" + }, + "records": { + "CNAME": "emojistega.pages.dev" + }, + "proxied": true +} diff --git a/domains/emsi.json b/domains/emsi.json new file mode 100644 index 000000000..ddcbbb024 --- /dev/null +++ b/domains/emsi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "emsi" + }, + "records": { + "NS": ["braelyn.ns.cloudflare.com", "ed.ns.cloudflare.com"] + } +} diff --git a/domains/emtyfay.json b/domains/emtyfay.json index 333b183d4..949855a73 100644 --- a/domains/emtyfay.json +++ b/domains/emtyfay.json @@ -3,7 +3,7 @@ "username": "Emtyffx", "email": "emtyfay4433@gmail.com" }, - "record": { + "records": { "CNAME": "myblog-production.up.railway.app" } } diff --git a/domains/emvas.s4il.json b/domains/emvas.s4il.json index e4788bcf6..26794001b 100644 --- a/domains/emvas.s4il.json +++ b/domains/emvas.s4il.json @@ -3,7 +3,7 @@ "username": "S4IL21", "email": "s4il.is.a.dev@gmail.com" }, - "record": { + "records": { "CNAME": "s4il21.github.io" } } diff --git a/domains/encoder.js.json b/domains/encoder.js.json new file mode 100644 index 000000000..41bcfee7f --- /dev/null +++ b/domains/encoder.js.json @@ -0,0 +1,16 @@ +{ + "description": "Encoder.js", + "repo": "https://github.com/JustStudio7/Encoder", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "TXT": [ + "google-site-verification=P7ELjV5zIY2_cPQKYzlhvdzVPxBvXm9xKXeRBo4VgGE", + "yandex-verification: 82b564dd74f37b10" + ] + } +} diff --git a/domains/endeade.json b/domains/endeade.json deleted file mode 100644 index bf33c7e37..000000000 --- a/domains/endeade.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Endeade", - "email": "endeade80@gmail.com", - "discord": "1117869855538942032" - }, - "record": { - "CNAME": "endeade.github.io" - } -} diff --git a/domains/enderdev.json b/domains/enderdev.json index 733156ddd..fcbb6034a 100644 --- a/domains/enderdev.json +++ b/domains/enderdev.json @@ -6,7 +6,7 @@ "email": "kieran@dothq.co", "twitter": "EnderDev_" }, - "record": { + "records": { "CNAME": "enderdev.github.io" } } diff --git a/domains/enderdevcom.json b/domains/enderdevcom.json index 7c3fe7783..f9617f6ae 100644 --- a/domains/enderdevcom.json +++ b/domains/enderdevcom.json @@ -4,7 +4,7 @@ "email": "enderfoxbg670@gmail.com", "discord": "970380468090437672" }, - "record": { + "records": { "CNAME": "enderfoxbg.github.io" } } diff --git a/domains/enderpoint.json b/domains/enderpoint.json index 7086cd100..5673ed677 100644 --- a/domains/enderpoint.json +++ b/domains/enderpoint.json @@ -6,7 +6,7 @@ "discord": "DotM38#5497", "instagram": "enderpoint07" }, - "record": { + "records": { "CNAME": "enderpoint07.github.io" } } diff --git a/domains/endless.json b/domains/endless.json new file mode 100644 index 000000000..23241db52 --- /dev/null +++ b/domains/endless.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "endlesssb", + "email": "heisgenburgthecook@gmail.com" + }, + "records": { + "URL": "https://donaldlyon.com" + } +} diff --git a/domains/endouven.json b/domains/endouven.json index 307eef4dc..906edb1a2 100644 --- a/domains/endouven.json +++ b/domains/endouven.json @@ -3,7 +3,7 @@ "username": "endouven", "email": "brunophm@gmail.com" }, - "record": { + "records": { "CNAME": "endouven.github.io" } } diff --git a/domains/endxrmxn.json b/domains/endxrmxn.json index 55c490344..85a5138b6 100644 --- a/domains/endxrmxn.json +++ b/domains/endxrmxn.json @@ -3,7 +3,7 @@ "username": "endxrmxn", "email": "endxrmxn@yahoo.com" }, - "record": { + "records": { "CNAME": "endxrmxn.pages.dev" } } diff --git a/domains/enginecreations.json b/domains/enginecreations.json index 4aec6ab1e..de555c2ae 100644 --- a/domains/enginecreations.json +++ b/domains/enginecreations.json @@ -1,12 +1,12 @@ { - "description": "Engine Creations(TM) main pages", - "repo": "https://github.com/akk1to/enginecreations.github.io", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "CNAME": "akk1to.github.io" - } + "description": "Engine Creations(TM) main pages", + "repo": "https://github.com/akk1to/enginecreations.github.io", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "records": { + "CNAME": "akk1to.github.io" + } } diff --git a/domains/enlaces.alexxhumilde.json b/domains/enlaces.alexxhumilde.json new file mode 100644 index 000000000..3de0f4d25 --- /dev/null +++ b/domains/enlaces.alexxhumilde.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ALEXXHUMILDE", + "email": "alexxcrack3@gmail.com" + }, + "records": { + "CNAME": "enlaces-alexxhumilde.netlify.app" + } +} diff --git a/domains/enough.json b/domains/enough.json new file mode 100644 index 000000000..9d456c546 --- /dev/null +++ b/domains/enough.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Enoughsdv/Enoughsdv.github.io", + "owner": { + "username": "Enoughsdv", + "email": "enoughsdv@gmail.com" + }, + "records": { + "CNAME": "enoughsdv.github.io" + } +} diff --git a/domains/enoughsdv.json b/domains/enoughsdv.json index 60cff046e..9d456c546 100644 --- a/domains/enoughsdv.json +++ b/domains/enoughsdv.json @@ -4,7 +4,7 @@ "username": "Enoughsdv", "email": "enoughsdv@gmail.com" }, - "record": { + "records": { "CNAME": "enoughsdv.github.io" } } diff --git a/domains/entenico.json b/domains/entenico.json index 9a996fba5..9664f6833 100644 --- a/domains/entenico.json +++ b/domains/entenico.json @@ -3,7 +3,7 @@ "username": "EnteNico", "email": "herrtruthahn.ls19@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/entenico" } } diff --git a/domains/enzomazzariol.json b/domains/enzomazzariol.json new file mode 100644 index 000000000..d79f78cfe --- /dev/null +++ b/domains/enzomazzariol.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "enzomazzariol", + "email": "mazzariolenzo@gmail.com" + }, + "records": { + "CNAME": "enzomazzariol.netlify.app" + } +} diff --git a/domains/eojeda.json b/domains/eojeda.json new file mode 100644 index 000000000..256c76de1 --- /dev/null +++ b/domains/eojeda.json @@ -0,0 +1,11 @@ +{ + "description": "Personal webpage", + "repo": "https://github.com/eojeda89/eojeda89.github.io", + "owner": { + "username": "eojeda89", + "email": "ernestoojeda89@gmail.com" + }, + "records": { + "CNAME": "eojeda89.github.io" + } +} diff --git a/domains/epgeroy.json b/domains/epgeroy.json index 506c617fe..d473494bb 100644 --- a/domains/epgeroy.json +++ b/domains/epgeroy.json @@ -5,7 +5,7 @@ "username": "epgeroy", "email": "epgeroy@gmail.com" }, - "record": { + "records": { "CNAME": "epgeroy.github.io" } } diff --git a/domains/epic.json b/domains/epic.json index 831aa269e..9395c1e04 100644 --- a/domains/epic.json +++ b/domains/epic.json @@ -1,11 +1,10 @@ { "description": "Epic's github", - "repo": "https://github.com/tag-epic", "owner": { "username": "tag-epic", "email": "tagepicuwu@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/tag-epic" } } diff --git a/domains/epiccooldog.json b/domains/epiccooldog.json new file mode 100644 index 000000000..cb15057de --- /dev/null +++ b/domains/epiccooldog.json @@ -0,0 +1,12 @@ +{ + "description": "Personal/Portfolio", + "repo": "https://github.com/ARubikMaster/is-a.dev", + "owner": { + "username": "arubikmaster", + "email": "epiccooldog@techie.com", + "discord": "rubikmaster" + }, + "records": { + "CNAME": "arubikmaster.github.io" + } +} diff --git a/domains/epnq.json b/domains/epnq.json index 2d6b4d5ea..d305ed169 100644 --- a/domains/epnq.json +++ b/domains/epnq.json @@ -1,11 +1,10 @@ { "description": "Personal Site", - "repo": "https://github.com/wensente27", "owner": { "username": "wensente27", "twitter": "pnqe_eli" }, - "record": { + "records": { "CNAME": "epnq.up.railway.app" } } diff --git a/domains/epsooraj.json b/domains/epsooraj.json index 20048e770..5042334f4 100644 --- a/domains/epsooraj.json +++ b/domains/epsooraj.json @@ -4,7 +4,7 @@ "username": "epsooraj", "email": "epsooraj4@gmail.com" }, - "record": { + "records": { "CNAME": "epsooraj.com" } } diff --git a/domains/erdem.json b/domains/erdem.json index d38314264..4a67f4f1d 100644 --- a/domains/erdem.json +++ b/domains/erdem.json @@ -3,7 +3,7 @@ "username": "erdem85", "email": "erdm@disroot.org" }, - "record": { + "records": { "URL": "https://erdem.lol" } } diff --git a/domains/erdogan.json b/domains/erdogan.json index 99c66a948..2451c5e55 100644 --- a/domains/erdogan.json +++ b/domains/erdogan.json @@ -3,7 +3,7 @@ "username": "erdogansad", "email": "erdogan.sad@windowslive.com" }, - "record": { + "records": { "CNAME": "erdogans.space" } } diff --git a/domains/erdwpe.json b/domains/erdwpe.json index de6c0492c..faafbc74b 100644 --- a/domains/erdwpe.json +++ b/domains/erdwpe.json @@ -6,7 +6,7 @@ "email": "erdwpe@gmail.com", "twitter": "erlanggadwip6" }, - "record": { + "records": { "CNAME": "erdwpe.github.io" } } diff --git a/domains/eren.json b/domains/eren.json index 8b07829ab..2acbedb71 100644 --- a/domains/eren.json +++ b/domains/eren.json @@ -4,7 +4,7 @@ "email": "terminatorx5e@gmail.com", "discord": "499592235772280842" }, - "record": { + "records": { "URL": "https://keirnegn.dev" } } diff --git a/domains/eric-dahl.json b/domains/eric-dahl.json new file mode 100644 index 000000000..0a8ea0547 --- /dev/null +++ b/domains/eric-dahl.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Skeyelab" + }, + "records": { + "URL": "https://cv.ericdahl.dev" + } +} diff --git a/domains/eric.json b/domains/eric.json index d316896b6..66387205c 100644 --- a/domains/eric.json +++ b/domains/eric.json @@ -1,11 +1,10 @@ { "description": "Eric's website and blog", - "repo": "https://github.com/yurrriq", "owner": { "username": "yurrriq", "email": "eric@ericb.me" }, - "record": { + "records": { "CNAME": "yurrriq.github.io" } } diff --git a/domains/ericksantos.json b/domains/ericksantos.json new file mode 100644 index 000000000..7ad412956 --- /dev/null +++ b/domains/ericksantos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "erickjonatthan", + "email": "erick.jonathan@ufrpe.br" + }, + "records": { + "CNAME": "portfolio-ejms.vercel.app" + } +} diff --git a/domains/ericlin.json b/domains/ericlin.json new file mode 100644 index 000000000..007f74be7 --- /dev/null +++ b/domains/ericlin.json @@ -0,0 +1,11 @@ +{ + "description": "To get a cool looking subdomain for my portfolio hosted on netlify", + "repo": "https://github.com/ericafk0001/Portfolio.git", + "owner": { + "username": "ericafk0001", + "email": "dxslyofficial@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ericthomas.json b/domains/ericthomas.json index 655a0aa7b..caeedaeb2 100644 --- a/domains/ericthomas.json +++ b/domains/ericthomas.json @@ -1,11 +1,10 @@ { "description": "Eric Thomas' Portfolio", - "repo": "https://github.com/ericthomasca", "owner": { "username": "ericthomasca", "email": "eric@ericthomas.ca" }, - "record": { + "records": { "URL": "https://ericthomas.ca" } } diff --git a/domains/erik.json b/domains/erik.json index a8c435604..817916f7c 100644 --- a/domains/erik.json +++ b/domains/erik.json @@ -1,11 +1,10 @@ { "description": "Erik Personal Website", - "repo": "https://github.com/Erik3010", "owner": { "username": "erik3010", "email": "erikhau3010@gmail.com" }, - "record": { + "records": { "CNAME": "erik3010.github.io" } } diff --git a/domains/erisa.json b/domains/erisa.json index 718677080..6a5e64c56 100644 --- a/domains/erisa.json +++ b/domains/erisa.json @@ -1,11 +1,10 @@ { "description": "Blog for Erisa A.", - "repo": "https://github.com/Erisa", "owner": { "username": "Erisa", "email": "seriel@erisa.moe" }, - "record": { + "records": { "CNAME": "dev.cname.erisa.moe" } } diff --git a/domains/ermal.json b/domains/ermal.json index 0b14c85c0..40ddd0cf9 100644 --- a/domains/ermal.json +++ b/domains/ermal.json @@ -1,18 +1,9 @@ { - "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" + "records": { + "CNAME": "terminalportfolio-2wp.pages.dev" } } diff --git a/domains/ermia-codev.json b/domains/ermia-codev.json index f454df157..fcf471ffc 100644 --- a/domains/ermia-codev.json +++ b/domains/ermia-codev.json @@ -1,10 +1,9 @@ { "owner": { "username": "ErmiaCodev", - "discord": "747162043676622929", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZpgdxEZaR7SBvy5pxg2zeYuWKww2hNHjfB1R1YpH3qIwyxSFBsRPnPtkz7niLCchP12aqHmjs97hw5yLJqdily7ZVwTzdmya0SrVwnGmM5bU6kaXKap6Kfdk6dqM7UEy8BkL0Od9jl3q-O1ke7OTKXxbhwttmbk0py44d654U6baaz4K9ZOLT20K6j-QhYiWxlzVpKxb3f-WnzZG_szIBh5ro_zY0ujBDK_h8nhzwnzmwwxGTEwQkxUSSiwUiJgeGV6AatCT25QAyPHXoFKHKzNghsSG6YoYb3uAFnvOKuT8T3jEsJytx6gKwd-rf1VIMMVfi1YqdxKLG6ZY1UJUpA.pRrVa2ttYcRejUB_k8vwAw.eS6zQISeLpWijmMm4SUfCAy2CobVfHxTX-AZUrfjgRGtQXybjiXr5jKlnillhXuaJ2-UcSHarisZUudx4ueEwmluXHYldcXaD8sZxPBrQYs.2ZfJwJLLE75yjHOH7eDQvA" + "discord": "747162043676622929" }, - "record": { + "records": { "CNAME": "ermiacodev.github.io" } } diff --git a/domains/ernande.json b/domains/ernande.json index 66950ae87..46a38cad0 100644 --- a/domains/ernande.json +++ b/domains/ernande.json @@ -3,7 +3,7 @@ "username": "ernande-f", "email": "ernandefacco@outlook.com" }, - "record": { + "records": { "CNAME": "ernande-f.github.io" } } diff --git a/domains/erubinyl.json b/domains/erubinyl.json index 676124e95..5549f107e 100644 --- a/domains/erubinyl.json +++ b/domains/erubinyl.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Erubinyl", - "email": "erubinyl@outlook.com" - }, - "record": { - "CNAME": "erubinyl.github.io" - } -} \ No newline at end of file + "owner": { + "username": "Erubinyl", + "email": "erubinyl@outlook.com" + }, + "records": { + "CNAME": "erubinyl.github.io" + } +} diff --git a/domains/eryquicc.json b/domains/eryquicc.json index f088fbfdc..e27a568da 100644 --- a/domains/eryquicc.json +++ b/domains/eryquicc.json @@ -2,16 +2,10 @@ "description": "Personal use", "repo": "https://github.com/eryquicc/eryquicc.github.io", "owner": { - "username": "Eryquicc", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Cbf_zgEEDsPK4bFFmgXIQzS7a8f6kCaJ7fvKii_hoGmC_T816cUQCWzfgvZNCRjDTAAmeUlkFoZJ7cXAtZydJmbiiomW2rYYdahrpuHD9uzik4utcbdY93tN0jIg_oVZPBjmntBttyrOMC-ZczmA3UsYC2Sn46gvt_rNKmR8GP4SYlsoIUq54tqCKbw7hEy9uIr34I4v20mJKQ-ffnnV5jfWxRd2aPZ57B8ObpzmNaMF-KoC4TEEbA5ZxPKB68wWvQNkPrGEQdvnE6A5ymgFp6kI7ybzkb2VgN7xxrlSFtighk2-XjzOe2X-DAfAPJ7IBCaesCsupMN5J2qlsP0cXQ.X-zYTXfPKYUBbuxBuMumLA.pE13OpQVJ1FnW9oKZAsE-0ZvAaBphHU1Tn1aDESYFhrMABZbOzyaQ-HDS-8HcHu6m5GsYWeSf4_SHoqmZbag4XoWNNKgkv1VpnCY-H_52NRRX4rIEyCAxywLe2Ph1moi.I4F8hNl8SC8b_WUvYuDv7Q" + "username": "Eryquicc" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/esb.json b/domains/esb.json index e848ee0d5..39671fb7a 100644 --- a/domains/esb.json +++ b/domains/esb.json @@ -3,7 +3,7 @@ "username": "EducatedsuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "NS": ["dahlia.ns.cloudflare.com", "will.ns.cloudflare.com"] } } diff --git a/domains/escfrpls.json b/domains/escfrpls.json index 6111e27e9..99f4cb0fa 100644 --- a/domains/escfrpls.json +++ b/domains/escfrpls.json @@ -3,7 +3,7 @@ "username": "DrochiczynPoleski", "email": "licwin1410@gmail.com" }, - "record": { + "records": { "URL": "https://drochiczynpoleski.github.io/escfrpls.github.io/" } } diff --git a/domains/eshanized.json b/domains/eshanized.json new file mode 100644 index 000000000..62694f4ab --- /dev/null +++ b/domains/eshanized.json @@ -0,0 +1,11 @@ +{ + "description": "eshanized.is-a.dev", + "repo": "https://github.com/eshanized/eshanized.github.io", + "owner": { + "username": "eshanized", + "email": "m.eshanized@gmail.com" + }, + "records": { + "CNAME": "eshanized.github.io" + } +} diff --git a/domains/esp.json b/domains/esp.json index 9a9a935e3..b594f5416 100644 --- a/domains/esp.json +++ b/domains/esp.json @@ -5,7 +5,7 @@ "email": "esp.python.dev@gmail.com", "telegram": "fakeesp" }, - "record": { + "records": { "A": ["158.178.196.15"] } } diff --git a/domains/essawy.json b/domains/essawy.json index 6ec7356f3..921bab84f 100644 --- a/domains/essawy.json +++ b/domains/essawy.json @@ -5,7 +5,7 @@ "username": "abdelrahman-essawy", "email": "abdelrahman.mo.essawy@gmail.com" }, - "record": { + "records": { "CNAME": "abdelrahman-essawy.github.io" } } diff --git a/domains/esteban.json b/domains/esteban.json index 6ecc6381c..97ed65015 100644 --- a/domains/esteban.json +++ b/domains/esteban.json @@ -3,7 +3,7 @@ "username": "esteban389", "email": "estebandres@proton.me" }, - "record": { + "records": { "CNAME": "esteban389.github.io" } } diff --git a/domains/etercore.json b/domains/etercore.json new file mode 100644 index 000000000..7820433a4 --- /dev/null +++ b/domains/etercore.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ramirosanchezaranda", + "email": "etercoredesignweb@gmail.com" + }, + "records": { + "CNAME": "etercore.vercel.app" + } +} diff --git a/domains/eternal-network.json b/domains/eternal-network.json index d44876de1..5b30205d4 100644 --- a/domains/eternal-network.json +++ b/domains/eternal-network.json @@ -5,7 +5,7 @@ "username": "Eternal-Network", "email": "neealdon2@proton.me" }, - "record": { + "records": { "CNAME": "eternal-network.github.io" } } diff --git a/domains/eternalluxury.json b/domains/eternalluxury.json index 21c9cbf78..705d9c95b 100644 --- a/domains/eternalluxury.json +++ b/domains/eternalluxury.json @@ -3,7 +3,7 @@ "username": "EternalLuxury", "email": "luxurydevv@gmail.com" }, - "record": { + "records": { "URL": "https://shiny-marzipan-37b154.netlify.app" } } diff --git a/domains/eternasuno.json b/domains/eternasuno.json new file mode 100644 index 000000000..19bcd550c --- /dev/null +++ b/domains/eternasuno.json @@ -0,0 +1,11 @@ +{ + "description": "Blog for eternasuno", + "repo": "https://github.com/eternasuno/eternasuno.github.io", + "owner": { + "username": "eternasuno", + "email": "eternasuno@gmail.com" + }, + "records": { + "CNAME": "eternasuno.github.io" + } +} diff --git a/domains/ethantran.json b/domains/ethantran.json new file mode 100644 index 000000000..251010c89 --- /dev/null +++ b/domains/ethantran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ethanxcode", + "email": "trannguyendanhuy2904@gmail.com" + }, + "records": { + "CNAME": "ethanxcode.vercel.app" + } +} diff --git a/domains/ethereumvd.json b/domains/ethereumvd.json new file mode 100644 index 000000000..7bb75f5a8 --- /dev/null +++ b/domains/ethereumvd.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/ethereumvd/ethereumvd.github.io", + "owner": { + "username": "ethereumvd", + "email": "ethereum249@gmail.com" + }, + "records": { + "CNAME": "ethereumvd.github.io" + } +} diff --git a/domains/ethxrnity.json b/domains/ethxrnity.json index 1212ebfb0..6de26f9ea 100644 --- a/domains/ethxrnity.json +++ b/domains/ethxrnity.json @@ -6,7 +6,7 @@ "email": "ethxrnity@gmail.com", "twitter": "ethxrnity" }, - "record": { + "records": { "CNAME": "ethxrnity.github.io" } } diff --git a/domains/ethyl.json b/domains/ethyl.json index 9b97d1d82..6817bb124 100644 --- a/domains/ethyl.json +++ b/domains/ethyl.json @@ -4,7 +4,7 @@ "email": "digin2t@gmail.com", "discord": "1066211072798883840" }, - "record": { + "records": { "CNAME": "ethylenediaminetetraacetates.github.io" } } diff --git a/domains/euler.json b/domains/euler.json new file mode 100644 index 000000000..18c87b1a8 --- /dev/null +++ b/domains/euler.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Euler-B", + "email": "eduardojosebb.matescience@gmail.com" + }, + "records": { + "CNAME": "euler-b.pages.dev" + } +} diff --git a/domains/eurafa.json b/domains/eurafa.json new file mode 100644 index 000000000..b0f2f2253 --- /dev/null +++ b/domains/eurafa.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/eurafa/eurafa.github.io", + "owner": { + "username": "eurafa", + "email": "eurafa@gmail.com", + "discord": "eurafa" + }, + "records": { + "CNAME": "eurafa.github.io" + } +} diff --git a/domains/euskindar.json b/domains/euskindar.json new file mode 100644 index 000000000..31ca2834a --- /dev/null +++ b/domains/euskindar.json @@ -0,0 +1,11 @@ +{ + "description": "Fron-end challenges", + "repo": "https://github.com/Euskindar/CHALLENGES", + "owner": { + "username": "Euskindar", + "email": "julenjph@hotmail.com" + }, + "records": { + "CNAME": "euskindar.github.io" + } +} diff --git a/domains/eutrix.json b/domains/eutrix.json index 4e14ab76b..219002696 100644 --- a/domains/eutrix.json +++ b/domains/eutrix.json @@ -5,7 +5,7 @@ "username": "Eutrix", "discord": "Tony25#4455" }, - "record": { + "records": { "CNAME": "eutrix.github.io" } } diff --git a/domains/eva.json b/domains/eva.json index b4286ac3b..d095130c9 100644 --- a/domains/eva.json +++ b/domains/eva.json @@ -3,7 +3,7 @@ "username": "mowatermelon", "email": "neefoxmo@gmail.com" }, - "record": { + "records": { "URL": "https://t.iiwhy.cn" } } diff --git a/domains/evalk.json b/domains/evalk.json index 4d3c25135..89dd01f79 100644 --- a/domains/evalk.json +++ b/domains/evalk.json @@ -4,7 +4,7 @@ "email": "adibao1111@gmail.com", "discord": "895251736250437653" }, - "record": { + "records": { "A": ["60.249.193.112"] } } diff --git a/domains/evan.json b/domains/evan.json index 0cabc342e..9ab1eb526 100644 --- a/domains/evan.json +++ b/domains/evan.json @@ -5,7 +5,7 @@ "username": "GeopJr", "email": "domains@geopjr.dev" }, - "record": { + "records": { "URL": "https://geopjr.dev" } } diff --git a/domains/evans.json b/domains/evans.json new file mode 100644 index 000000000..d343a40e9 --- /dev/null +++ b/domains/evans.json @@ -0,0 +1,11 @@ +{ + "description": "A personal portfolio website", + "repo": "https://github.com/evansrrr/evans", + "owner": { + "username": "Evansrrr", + "email": "enzoraziore@outlook.com" + }, + "records": { + "CNAME": "evansrrr.netlify.app" + } +} diff --git a/domains/evansrrr.json b/domains/evansrrr.json index 7ffbfd77f..d343a40e9 100644 --- a/domains/evansrrr.json +++ b/domains/evansrrr.json @@ -5,7 +5,7 @@ "username": "Evansrrr", "email": "enzoraziore@outlook.com" }, - "record": { + "records": { "CNAME": "evansrrr.netlify.app" } } diff --git a/domains/evelio.json b/domains/evelio.json index 12a7d1380..3b174b2e0 100644 --- a/domains/evelio.json +++ b/domains/evelio.json @@ -5,7 +5,7 @@ "email": "alphaevelio@gmail.com", "discord": "srevelio" }, - "record": { + "records": { "A": ["216.24.57.1"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/evelyn.json b/domains/evelyn.json new file mode 100644 index 000000000..c3950179e --- /dev/null +++ b/domains/evelyn.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio website with is-a.dev for Evelyn Finny", + "owner": { + "username": "evelynfinny", + "email": "evelynfinny@gmail.com" + }, + "records": { + "CNAME": "evelyn.finny.info" + } +} diff --git a/domains/every.json b/domains/every.json new file mode 100644 index 000000000..0526633c6 --- /dev/null +++ b/domains/every.json @@ -0,0 +1,12 @@ +{ + "description": "Screenshot of every accessible .is-a.dev website by @actuallyundefined", + "repo": "https://github.com/JustDeveloper1/every.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "dev@j.is-a.dev", + "discord": "1117482901353812088" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] + } +} diff --git a/domains/evesquare.json b/domains/evesquare.json new file mode 100644 index 000000000..6d54eea4f --- /dev/null +++ b/domains/evesquare.json @@ -0,0 +1,10 @@ +{ + "description": "My portfolio", + "owner": { + "username": "evesquare", + "email": "evesquare@protonmail.ch" + }, + "records": { + "URL": "https://me.evesq.com/" + } +} diff --git a/domains/evie.json b/domains/evie.json index 6160a3400..55c044941 100644 --- a/domains/evie.json +++ b/domains/evie.json @@ -4,13 +4,8 @@ "discordId": "285329659023851520", "discord": "encyclopedic" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=NGYyZmU5YzE0YTJlZjk5MC0zYjM3YTRiNTM1N2MyNzliNTUyMDdlM2ZiZjBiMDAwZmFlOGI0MjM3NjM0NDUyNjRhYzc2ZWM5MmMxMmI5Yzg4" } diff --git a/domains/evils.json b/domains/evils.json index 93eb8fed4..7a9501570 100644 --- a/domains/evils.json +++ b/domains/evils.json @@ -5,7 +5,7 @@ "username": "evils7", "email": "info@evils.gay" }, - "record": { + "records": { "CNAME": "evilssite.glitch.me" } } diff --git a/domains/ewan.json b/domains/ewan.json index 0348b08d0..5e2b18a7d 100644 --- a/domains/ewan.json +++ b/domains/ewan.json @@ -5,7 +5,7 @@ "username": "Ewan-Dev", "email": "lyricizer2@gmail.com" }, - "record": { + "records": { "CNAME": "ewan-dev.github.io" } } diff --git a/domains/exhq.json b/domains/exhq.json index 99291e9cc..4310dfd0b 100644 --- a/domains/exhq.json +++ b/domains/exhq.json @@ -4,7 +4,7 @@ "email": "infidelLOLer@gmail.com", "discord": "712639419785412668" }, - "record": { + "records": { "A": ["91.107.164.89"] } } diff --git a/domains/exigent-app.json b/domains/exigent-app.json index 4b421307c..dd8588674 100644 --- a/domains/exigent-app.json +++ b/domains/exigent-app.json @@ -3,7 +3,7 @@ "username": "Exigent07", "discord": "exigent07" }, - "record": { + "records": { "CNAME": "exigent-app.vercel.app" } } diff --git a/domains/existing.json b/domains/existing.json new file mode 100644 index 000000000..39ebe4ae6 --- /dev/null +++ b/domains/existing.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Blog", + "repo": "https://github.com/existing-dev/existingdev", + "owner": { + "username": "existing-dev", + "email": "maamelankar.deveer@gmail.com" + }, + "records": { + "CNAME": "existing-dev.github.io" + } +} diff --git a/domains/exophs.json b/domains/exophs.json index 2de7ea705..17e85b915 100644 --- a/domains/exophs.json +++ b/domains/exophs.json @@ -3,7 +3,7 @@ "username": "exophs", "email": "bezeski@email.com" }, - "record": { + "records": { "CNAME": "exophs.github.io" } } diff --git a/domains/explooit.json b/domains/explooit.json new file mode 100644 index 000000000..e08d4dc85 --- /dev/null +++ b/domains/explooit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ExPl0iT-29", + "email": "tusharsatpute68@gmail.com" + }, + "records": { + "CNAME": "expl0it-29.github.io" + } +} diff --git a/domains/exrand.json b/domains/exrand.json new file mode 100644 index 000000000..2c53b939d --- /dev/null +++ b/domains/exrand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "randomyaps", + "email": "totallynota903@gmail.com" + }, + "records": { + "A": ["212.91.26.79"] + } +} diff --git a/domains/extensions.trung.json b/domains/extensions.trung.json index b99730c4e..488318c9f 100644 --- a/domains/extensions.trung.json +++ b/domains/extensions.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/exx.json b/domains/exx.json deleted file mode 100644 index 977561c23..000000000 --- a/domains/exx.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "xqxyzl", - "email": "exemailhelp+3@gmail.com" - }, - "record": { - "TXT": "_discord.exx.is-a.dev" - } -} diff --git a/domains/exyxz.json b/domains/exyxz.json new file mode 100644 index 000000000..be88ed922 --- /dev/null +++ b/domains/exyxz.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/exyxz/exyxz.github.io", + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "records": { + "CNAME": "exyxz.github.io" + } +} diff --git a/domains/eyescary.json b/domains/eyescary.json index 48ecd9048..2a197337c 100644 --- a/domains/eyescary.json +++ b/domains/eyescary.json @@ -3,7 +3,7 @@ "username": "EyeScary-Development", "email": "peteromg43@gmail.com" }, - "record": { + "records": { "CNAME": "eyescary.pages.dev" } } diff --git a/domains/eyus00.json b/domains/eyus00.json new file mode 100644 index 000000000..d651279d2 --- /dev/null +++ b/domains/eyus00.json @@ -0,0 +1,12 @@ +{ + "description": "eyus00's site", + "repo": "https://github.com/eyus00/eyus00.github.io", + "owner": { + "username": "eyus00", + "email": "eyus00@duck.com" + }, + "records": { + "CNAME": "eyus00.github.io" + }, + "proxied": true +} diff --git a/domains/ezaz.json b/domains/ezaz.json new file mode 100644 index 000000000..5700d2786 --- /dev/null +++ b/domains/ezaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ezaz-ahmed", + "email": "ezaznahmed@gmail.com" + }, + "records": { + "URL": "https://ezaz.dev/" + } +} diff --git a/domains/ezequiel.json b/domains/ezequiel.json new file mode 100644 index 000000000..2da14dd93 --- /dev/null +++ b/domains/ezequiel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EzequielBoussard", + "email": "boussardezequiel@gmail.com" + }, + "records": { + "CNAME": "ezequielboussard.pages.dev" + } +} diff --git a/domains/ezzoubair.json b/domains/ezzoubair.json index e2c8dec17..86c455159 100644 --- a/domains/ezzoubair.json +++ b/domains/ezzoubair.json @@ -3,7 +3,7 @@ "username": "zarqizoubir", "email": "zarqi.ezzoubair@etu.uae.ac.ma" }, - "record": { + "records": { "CNAME": "zarqizoubir.github.io" } } diff --git a/domains/f.jax.json b/domains/f.jax.json index cb8b2a27f..c759f32aa 100644 --- a/domains/f.jax.json +++ b/domains/f.jax.json @@ -1,8 +1,8 @@ { "owner": { - "username": "jxaq" + "username": "jxaq" }, - "record": { + "records": { "A": ["207.211.149.245"] }, "proxied": true diff --git a/domains/f.json b/domains/f.json index 96d21a0ba..0b577ae7d 100644 --- a/domains/f.json +++ b/domains/f.json @@ -1,10 +1,9 @@ { "owner": { "username": "iHategithub9000", - "discord": "836012649959522384", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.X5ydqojosseoZvJ5KWgT9xOHlThoEA_SUhcCqiMU_8PdrYbjy7Nw_45skTB9WM_-I5-jytdNY42ZMFO8jKGKzZeU8k6v-prPPEpFI3-frlVTFodnZb03puDilPvWV08Ms-3Gook9SJVHaibuFO3huscmzHR8LqgQWAdOOTlyIML-sxissxTom_3dXjHQEmtjkQrAOuTeBw6oZK7_V9uue3tpNyq3-FNCCKLLc--OskvgwVZB8CmqJUADUpgaxXz2IIvEezOiZyP_f0hII8MWR6VttQqtGiRoQKj5SvtoQsBHfhRfocNRY_RUOu1a6l30mx3TB04OLC-QSN-HfvOIQg.kmjyio3vkycaU6hX0FYzpg.PzGJ-TiHcN-8DiG6UvmqXxmXuPe0rVbIg6ykm5nXp5_jUsNVCHDKslCfUQp3D0Jlc8jY_ez7hvxsgtfOinJYu2oaI3qWs6nxQg-i8KJS-hI.tAjmi5HHDLJcfGDBSUEong" + "discord": "836012649959522384" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/f3ntt.json b/domains/f3ntt.json index 511d889ab..06bbc3908 100644 --- a/domains/f3ntt.json +++ b/domains/f3ntt.json @@ -2,7 +2,7 @@ "owner": { "username": "2nvrs" }, - "record": { + "records": { "CNAME": "f3ntt.vercel.app" } } diff --git a/domains/f5.json b/domains/f5.json index 795562fb6..abd867a0d 100644 --- a/domains/f5.json +++ b/domains/f5.json @@ -3,7 +3,7 @@ "username": "fae5de", "email": "louis.m.ortner@icloud.com" }, - "record": { + "records": { "CNAME": "website-6es.pages.dev" } } diff --git a/domains/fa-fifi.json b/domains/fa-fifi.json deleted file mode 100644 index 5870bbcc3..000000000 --- a/domains/fa-fifi.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "description": "Personal portfolio website", - "owner": { - "username": "fa-fifi", - "email": "fafifi1997@gmail.com" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "TXT": "google-site-verification=AYbL6PIbwUv4qzq9KxmrjAM9vfCQ0IUNRBX_AeXPfVE" - } -} diff --git a/domains/faaiz.json b/domains/faaiz.json new file mode 100644 index 000000000..e3f68cd06 --- /dev/null +++ b/domains/faaiz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "FaaizAhmad6420" + }, + "records": { + "CNAME": "faaizahmad6420.github.io" + } +} diff --git a/domains/faaris.json b/domains/faaris.json new file mode 100644 index 000000000..646f11aae --- /dev/null +++ b/domains/faaris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mohamed-faaris", + "email": "mohammedfaaris2005@gmail.com" + }, + "records": { + "URL": "https://github.com/Mohamed-faaris" + } +} diff --git a/domains/fab1andev.json b/domains/fab1andev.json index e645d0569..a31007c6f 100644 --- a/domains/fab1andev.json +++ b/domains/fab1andev.json @@ -6,7 +6,7 @@ "email": "fab1andev@proton.me", "twitter": "Fab1anDev" }, - "record": { + "records": { "CNAME": "fab1andev.github.io" } } diff --git a/domains/fabiancrx.json b/domains/fabiancrx.json index de76e8c9b..65e851111 100644 --- a/domains/fabiancrx.json +++ b/domains/fabiancrx.json @@ -5,7 +5,7 @@ "username": "fabiancrx", "email": "croxx5f@gmail.com" }, - "record": { + "records": { "CNAME": "fabiancrx.github.io" } } diff --git a/domains/fabianf4.json b/domains/fabianf4.json new file mode 100644 index 000000000..d4224d293 --- /dev/null +++ b/domains/fabianf4.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fabianf4", + "email": "fabianfa.munoz@gmail.com" + }, + "records": { + "CNAME": "fabianf4.github.io" + } +} diff --git a/domains/fabien.json b/domains/fabien.json new file mode 100644 index 000000000..759197cac --- /dev/null +++ b/domains/fabien.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fabien-h", + "email": "fabien.huet@gmail.com", + "discord": "fabien-huet" + }, + "records": { + "CNAME": "fabien-is-a-dev.vercel.app" + } +} diff --git a/domains/factory.json b/domains/factory.json index ac0f1c0ce..d027eae57 100644 --- a/domains/factory.json +++ b/domains/factory.json @@ -1,11 +1,11 @@ { - "description": "Factory for manufacturing is-a-dev domains", - "repo": "https://github.com/VaibhavSys/DomainFactory", + "description": "Factory for manufacturing is-a-dev domains.", + "repo": "https://github.com/orangci/factory.is-a.dev", "owner": { - "username": "VaibhavSys", - "email": "vaibhavsys@protonmail.com" + "username": "orangci", + "email": "c@orangc.net" }, - "record": { - "CNAME": "domainfactory.pages.dev" + "records": { + "CNAME": "is-a-factory.vercel.app" } } diff --git a/domains/facundopidal.json b/domains/facundopidal.json new file mode 100644 index 000000000..68e01a178 --- /dev/null +++ b/domains/facundopidal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "facundopidal", + "email": "facundopidalruizdiaz@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/fae5.json b/domains/fae5.json index 795562fb6..abd867a0d 100644 --- a/domains/fae5.json +++ b/domains/fae5.json @@ -3,7 +3,7 @@ "username": "fae5de", "email": "louis.m.ortner@icloud.com" }, - "record": { + "records": { "CNAME": "website-6es.pages.dev" } } diff --git a/domains/fael.json b/domains/fael.json index e42ff2f96..9d8a1a6d3 100644 --- a/domains/fael.json +++ b/domains/fael.json @@ -4,7 +4,7 @@ "username": "burnblazter", "email": "hello@fael.my.id" }, - "record": { + "records": { "CNAME": "sink-1pr.pages.dev" } } diff --git a/domains/faelixyz.json b/domains/faelixyz.json index 8d7240213..d4517ea31 100644 --- a/domains/faelixyz.json +++ b/domains/faelixyz.json @@ -5,7 +5,7 @@ "email": "private@fae5.studio", "twitter": "faelixyz" }, - "record": { + "records": { "CNAME": "isagooddev.pages.dev" } } diff --git a/domains/fafifi.json b/domains/fafifi.json new file mode 100644 index 000000000..d4a660492 --- /dev/null +++ b/domains/fafifi.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website", + "owner": { + "username": "fa-fifi", + "email": "fafifi1997@gmail.com" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "TXT": "google-site-verification=_yRLGQg5CylaCRwbj4qjPtzNKurSqbltbCqnli0nhvI" + } +} diff --git a/domains/fahad.json b/domains/fahad.json new file mode 100644 index 000000000..c01b92310 --- /dev/null +++ b/domains/fahad.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Portfolio", + "owner": { + "username": "FahadAminShovon", + "email": "shovonfahad991@gmail.com" + }, + "records": { + "CNAME": "market-portfolio.vercel.app" + } +} diff --git a/domains/fahri.json b/domains/fahri.json index b5bfa7bde..6245b57e1 100644 --- a/domains/fahri.json +++ b/domains/fahri.json @@ -3,7 +3,7 @@ "username": "FahriDevZ", "email": "fakhri.5567@gmail.com" }, - "record": { + "records": { "CNAME": "fahri.dev" } } diff --git a/domains/faisal.json b/domains/faisal.json index 200413336..9f48251b9 100644 --- a/domains/faisal.json +++ b/domains/faisal.json @@ -6,7 +6,7 @@ "email": "arainfaisal826@gmail.com", "twitter": "faisalfida_4" }, - "record": { + "records": { "CNAME": "faisal-fida.github.io" } } diff --git a/domains/faisalamin.json b/domains/faisalamin.json new file mode 100644 index 000000000..fb664bab5 --- /dev/null +++ b/domains/faisalamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "faisalamin001", + "email": "faysalamin001@gmail.com" + }, + "records": { + "URL": "https://faisalamin001.vercel.app/" + } +} diff --git a/domains/faiz.json b/domains/faiz.json index 61fe222c4..8121eec4f 100644 --- a/domains/faiz.json +++ b/domains/faiz.json @@ -5,7 +5,7 @@ "username": "faizath", "email": "faiz@ctemplar.com" }, - "record": { + "records": { "URL": "https://faizath.github.io" } } diff --git a/domains/faizm.json b/domains/faizm.json index b57c62d13..758e49629 100644 --- a/domains/faizm.json +++ b/domains/faizm.json @@ -3,7 +3,7 @@ "username": "dev28k", "email": "faizkhan.dev@gmail.com" }, - "record": { + "records": { "URL": "https://resort-app-vercel-frontend.vercel.app/" } } diff --git a/domains/fajox.json b/domains/fajox.json index 1fa1414f7..d80145419 100644 --- a/domains/fajox.json +++ b/domains/fajox.json @@ -3,12 +3,7 @@ "username": "FajoX1", "email": "pybytee@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["45.91.201.222"] } } diff --git a/domains/fake.json b/domains/fake.json index 91886cc77..601a3c503 100644 --- a/domains/fake.json +++ b/domains/fake.json @@ -1,11 +1,10 @@ { "description": "site", - "repo": "https://github.com/fakename131", "owner": { "username": "fakename131", "email": "fake@fake.is-a.dev" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/fakhri.json b/domains/fakhri.json index fc9a1eafd..e6b8d5cad 100644 --- a/domains/fakhri.json +++ b/domains/fakhri.json @@ -2,7 +2,7 @@ "owner": { "username": "FDMZ17" }, - "record": { + "records": { "CNAME": "fdmz17.github.io" } } diff --git a/domains/fakhridanishmp.json b/domains/fakhridanishmp.json index ba3e36441..e0f41e26a 100644 --- a/domains/fakhridanishmp.json +++ b/domains/fakhridanishmp.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "fakhridanishmp" - }, - "record": { - "CNAME": "fakhridanishmp.github.io" - } -} + "owner": { + "username": "fakhridanishmp" + }, + "records": { + "CNAME": "fakhridanishmp.github.io" + } +} diff --git a/domains/falguni-prajapati.json b/domains/falguni-prajapati.json index b58780d56..4c0876dd4 100644 --- a/domains/falguni-prajapati.json +++ b/domains/falguni-prajapati.json @@ -4,7 +4,7 @@ "owner": { "username": "falguni-prajapati" }, - "record": { + "records": { "CNAME": "falguni-prajapati.github.io" } } diff --git a/domains/fan.json b/domains/fan.json new file mode 100644 index 000000000..4950732a6 --- /dev/null +++ b/domains/fan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fandyahmd", + "email": "fandyahmadazizi@gmail.com" + }, + "records": { + "CNAME": "fann.pages.dev" + } +} diff --git a/domains/fang.json b/domains/fang.json new file mode 100644 index 000000000..df9d0dfda --- /dev/null +++ b/domains/fang.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Fangoling", + "discord": "327905667778347019", + "bluesky": "bsky.app/profile/fangx.ing" + }, + "records": { + "URL": "https://fangx.ing" + } +} diff --git a/domains/farel.json b/domains/farel.json new file mode 100644 index 000000000..6cd539ef9 --- /dev/null +++ b/domains/farel.json @@ -0,0 +1,11 @@ +{ + "description": "Personal development, testing, and deployment", + "repo": "https://github.com/FarelRA/profile", + "owner": { + "username": "FarelRA", + "email": "farelreskiaditiya22@gmail.com" + }, + "records": { + "NS": ["adi.ns.cloudflare.com", "clayton.ns.cloudflare.com"] + } +} diff --git a/domains/farhan.json b/domains/farhan.json index 8990677fd..495f468c6 100644 --- a/domains/farhan.json +++ b/domains/farhan.json @@ -3,7 +3,7 @@ "username": "Rose-uwu", "email": "rose.pog.com@gmail.com" }, - "record": { + "records": { "CNAME": "rose-uwu.github.io" } } diff --git a/domains/faris0520.json b/domains/faris0520.json index 8712251a0..553800c14 100644 --- a/domains/faris0520.json +++ b/domains/faris0520.json @@ -4,7 +4,7 @@ "username": "Faris0520", "twitter": "Faris0520" }, - "record": { + "records": { "CNAME": "glitch.edgeapp.net" } } diff --git a/domains/farish.json b/domains/farish.json index c7c7407db..76228fc31 100644 --- a/domains/farish.json +++ b/domains/farish.json @@ -6,7 +6,7 @@ "twitter": "fxryshdev", "email": "hello@farish.is-a.dev" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/farjanul.json b/domains/farjanul.json index 505c9bfa6..ef90de45b 100644 --- a/domains/farjanul.json +++ b/domains/farjanul.json @@ -3,7 +3,7 @@ "username": "farjanul", "email": "farjanul10@gmail.com" }, - "record": { + "records": { "CNAME": "farjanul.github.io" } } diff --git a/domains/farkot.json b/domains/farkot.json new file mode 100644 index 000000000..9e47ce74a --- /dev/null +++ b/domains/farkot.json @@ -0,0 +1,11 @@ +{ + "description": "Portafolio Farkot09", + "repo": "https://github.com/farkot09/farkot09.github.io", + "owner": { + "username": "farkot09", + "email": "viagramo2011@gmail.com" + }, + "records": { + "CNAME": "farkot09.github.io" + } +} diff --git a/domains/farman.json b/domains/farman.json index b31219642..527919365 100644 --- a/domains/farman.json +++ b/domains/farman.json @@ -3,7 +3,7 @@ "username": "MUHAMMAD-FARMAN", "email": "muhammadfarman7654@gmail.com" }, - "record": { + "records": { "A": ["66.29.153.55"] } } diff --git a/domains/farooq.json b/domains/farooq.json index a80b47ebe..a8f5f2b0f 100644 --- a/domains/farooq.json +++ b/domains/farooq.json @@ -4,7 +4,7 @@ "username": "fexxix", "email": "fexxix@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-one-jet-50.vercel.app" } } diff --git a/domains/farouk.json b/domains/farouk.json new file mode 100644 index 000000000..f06e4d864 --- /dev/null +++ b/domains/farouk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "faroukchebaiki", + "email": "farouk.chebaiki@gmail.com" + }, + "records": { + "CNAME": "faroukchebaiki.vercel.app" + } +} diff --git a/domains/farvessafiyudeen.json b/domains/farvessafiyudeen.json index 286ecbe2a..851ed1e5a 100644 --- a/domains/farvessafiyudeen.json +++ b/domains/farvessafiyudeen.json @@ -1,11 +1,10 @@ { "description": "this is my personal portfolio website", - "repo": "https://github.com/Farves-dev", "owner": { "username": "Farves-dev", "email": "farvessafiyudeen@gmail.com" }, - "record": { + "records": { "URL": "https://farsa.netlify.app" } } diff --git a/domains/farzan.json b/domains/farzan.json deleted file mode 100644 index 9344f9dea..000000000 --- a/domains/farzan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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/fassion.json b/domains/fassion.json index 962e70ad5..669528f4c 100644 --- a/domains/fassion.json +++ b/domains/fassion.json @@ -3,7 +3,7 @@ "username": "Lolipopguy", "email": "ngauthier818@gmail.com" }, - "record": { + "records": { "A": ["79.94.184.109"] } } diff --git a/domains/fastering.json b/domains/fastering.json index ec3da1f81..2d11a9bba 100644 --- a/domains/fastering.json +++ b/domains/fastering.json @@ -5,7 +5,7 @@ "username": "fastering18", "email": "fastering18@gmail.com" }, - "record": { + "records": { "CNAME": "fastering18.github.io" } } diff --git a/domains/fathulfahmy.json b/domains/fathulfahmy.json index 1911af476..f3931b168 100644 --- a/domains/fathulfahmy.json +++ b/domains/fathulfahmy.json @@ -3,7 +3,7 @@ "username": "fathulfahmy", "email": "mfathulfahmy@gmail.com" }, - "record": { + "records": { "URL": "https://fathulfahmy.pages.dev" } } diff --git a/domains/faultysden.json b/domains/faultysden.json deleted file mode 100644 index b2c3cdc94..000000000 --- a/domains/faultysden.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "FaultyFaulty-glitch", - "email": "faultywindows+github@gmail.com", - "discord": "1041028534690386051" - }, - "record": { - "TXT": "google-site-verification=ix1jczu2q87igryc4eaexvdv1vrzjxolu14sjfpsnko" - } -} diff --git a/domains/faultywindows.json b/domains/faultywindows.json index 7df656cab..4e0830f6e 100644 --- a/domains/faultywindows.json +++ b/domains/faultywindows.json @@ -4,7 +4,13 @@ "email": "faultywindows@gmail.com", "discord": "1041028534690386051" }, - "record": { - "A": ["185.199.108.153"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/fauzi.json b/domains/fauzi.json index 935498adb..72102f218 100644 --- a/domains/fauzi.json +++ b/domains/fauzi.json @@ -5,7 +5,7 @@ "username": "FauziFerdiansyah", "email": "fetruzie2@gmail.com" }, - "record": { + "records": { "CNAME": "fauziferdiansyah.github.io" } } diff --git a/domains/fawwaz.json b/domains/fawwaz.json index f3ce99921..5bad92d46 100644 --- a/domains/fawwaz.json +++ b/domains/fawwaz.json @@ -3,7 +3,7 @@ "username": "fawwazanvilen", "email": "fawwazanvi@gmail.com" }, - "record": { + "records": { "A": ["103.16.117.247"] } } diff --git a/domains/fayasnoushad.json b/domains/fayasnoushad.json index b31623ef6..d822ce64c 100644 --- a/domains/fayasnoushad.json +++ b/domains/fayasnoushad.json @@ -5,7 +5,7 @@ "username": "FayasNoushad", "twitter": "FayasNoushad" }, - "record": { + "records": { "CNAME": "fayasnoushad.github.io" } } diff --git a/domains/fayaz.json b/domains/fayaz.json new file mode 100644 index 000000000..2daf73f01 --- /dev/null +++ b/domains/fayaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fayaz07", + "email": "fayazfz07@gmail.com" + }, + "records": { + "CNAME": "fayaz07.github.io" + } +} diff --git a/domains/fbi.json b/domains/fbi.json index 07f537c44..ddc109e7e 100644 --- a/domains/fbi.json +++ b/domains/fbi.json @@ -1,11 +1,10 @@ { "description": "2Much4U's Website", - "repo": "https://github.com/2m4u", "owner": { "username": "2M4U", "email": "2m4u@fbi.is-a.dev" }, - "record": { + "records": { "URL": "https://2m4u.netlify.app" } } diff --git a/domains/fbik.json b/domains/fbik.json new file mode 100644 index 000000000..28dad3b44 --- /dev/null +++ b/domains/fbik.json @@ -0,0 +1,11 @@ +{ + "description": "FBIK.'s Personal Website", + "owner": { + "username": "FBIKdot", + "email": "fbik@duck.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + }, + "proxied": true +} diff --git a/domains/fcircle-doc.json b/domains/fcircle-doc.json index 2b7319f95..6fc909004 100644 --- a/domains/fcircle-doc.json +++ b/domains/fcircle-doc.json @@ -5,7 +5,7 @@ "username": "yyyz", "email": "yyyzlyh@gmail.com" }, - "record": { + "records": { "URL": "https://hiltay.github.io/hexo-circle-of-friends-doc" } } diff --git a/domains/fd-gods-clan.json b/domains/fd-gods-clan.json index 136ac2df5..549970d8e 100644 --- a/domains/fd-gods-clan.json +++ b/domains/fd-gods-clan.json @@ -4,7 +4,7 @@ "email": "peterwyneg@gmail.com", "discord": "1038747272701292584" }, - "record": { + "records": { "CNAME": "shadowplayzyt22.github.io" } } diff --git a/domains/fdaniel13s.json b/domains/fdaniel13s.json new file mode 100644 index 000000000..5a9689c1e --- /dev/null +++ b/domains/fdaniel13s.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fdaniel13s", + "email": "ferndani2718@gmail.com" + }, + "records": { + "CNAME": "fdaniel13s.github.io" + } +} diff --git a/domains/fdciabdul.json b/domains/fdciabdul.json index c52c8c9bc..0837311e2 100644 --- a/domains/fdciabdul.json +++ b/domains/fdciabdul.json @@ -3,7 +3,7 @@ "username": "fdciabdul", "email": "abdulmuttaqin456@gmail.com" }, - "record": { + "records": { "CNAME": "fdciabdul.github.io" } } diff --git a/domains/fdkgenie.json b/domains/fdkgenie.json index 5288879ce..97bee8659 100644 --- a/domains/fdkgenie.json +++ b/domains/fdkgenie.json @@ -5,7 +5,7 @@ "username": "fdkgenie", "email": "fdkgenie@gmail.com" }, - "record": { + "records": { "URL": "https://cuongphd.wordpress.com/" } } diff --git a/domains/fear.json b/domains/fear.json index 033f08ecc..d10eb03bc 100644 --- a/domains/fear.json +++ b/domains/fear.json @@ -3,7 +3,7 @@ "username": "FearMyShotz", "email": "supremeplayzbs@gmail.com" }, - "record": { + "records": { "CNAME": "fearmyshotz.github.io" } } diff --git a/domains/febs.json b/domains/febs.json new file mode 100644 index 000000000..58665ad1b --- /dev/null +++ b/domains/febs.json @@ -0,0 +1,10 @@ +{ + "description": "febs.is-a.dev", + "owner": { + "username": "febriansf", + "email": "febrian.xiii@gmail.com" + }, + "records": { + "CNAME": "www.febss.web.id" + } +} diff --git a/domains/federico.json b/domains/federico.json new file mode 100644 index 000000000..1dc85b3b4 --- /dev/null +++ b/domains/federico.json @@ -0,0 +1,11 @@ +{ + "description": "Professional website", + "repo": "https://github.com/Thefederico/federico", + "owner": { + "username": "Thefederico", + "email": "xooxes@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/fel1x0u.json b/domains/fel1x0u.json index 3955131fd..4e96d2f0d 100644 --- a/domains/fel1x0u.json +++ b/domains/fel1x0u.json @@ -6,7 +6,7 @@ "email": "felixcou@pm.me", "twitter": "fel1x0u1" }, - "record": { + "records": { "CNAME": "fel1x0u.github.io" } } diff --git a/domains/felipe.json b/domains/felipe.json new file mode 100644 index 000000000..78f848a7e --- /dev/null +++ b/domains/felipe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "felipecalderon", + "email": "hola@felipe.bio" + }, + "records": { + "CNAME": "porfoliofelipe.vercel.app" + } +} diff --git a/domains/felipecampos.json b/domains/felipecampos.json new file mode 100644 index 000000000..f1378aa10 --- /dev/null +++ b/domains/felipecampos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "camposdev", + "email": "felipecamposdev@gmail.com" + }, + "records": { + "URL": "https://felipecampos.vercel.app" + } +} diff --git a/domains/felix.json b/domains/felix.json index 3fc0e4fdb..4ba207ba4 100644 --- a/domains/felix.json +++ b/domains/felix.json @@ -3,8 +3,7 @@ "username": "github-username", "email": "mail@felixyeung.dev" }, - "repo": "https://github.com/felixyeungdev", - "record": { + "records": { "URL": "https://felixyeung.dev" } } diff --git a/domains/felixalguzman.json b/domains/felixalguzman.json index a8bc828f7..78b1f1588 100644 --- a/domains/felixalguzman.json +++ b/domains/felixalguzman.json @@ -3,7 +3,7 @@ "username": "felixalguzman", "email": "code@felixalguzman.msk.do" }, - "record": { + "records": { "URL": "https://github.com/felixalguzman" } } diff --git a/domains/felixgao.json b/domains/felixgao.json index a71f4e5ae..715ef1d68 100644 --- a/domains/felixgao.json +++ b/domains/felixgao.json @@ -1,10 +1,9 @@ { "owner": { "username": "felixgao-0", - "discord": "725081836874760224", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.edtDo61A7pYaO4MLf3Td4bVHkR5ldkmvFtbYd2Sw87iVFJyWPXoyA5iG286-HSgmddMvd7M4YWkXqLd5VOFmBxIaP8a9_zzDHhoUUQIVPdlwCew1N4fr-pwgOJyLVqw2vlINaF2ZHxP2SXWk0pAFX15x_PvODV9YrbQdbWGwXr2SCgecGRZOgec-cE2K7aCPtuzjpY2iniOt6P-5I5Fji0r7heoCRTwB-4Cut8fjp34qD-EvatXs9evSQ2SVaaHBbu8qe5b9t_56YTkJAwR00ph9XWiwYEfyJID2I9RQ5oh79oLTZO2QYY5U2vzc_EBwlILKZNHqg3LK-HnhCLdXkQ.KvKANPJXfk-sREifDQWxeA.wwsk5S0aIZIQ2tCFEQzO_U5mQx1_ZTYw6OaePsF7zumqY8hO4zznQ94sWHFNaGfK9sxXRFZVBfacV5dxIyr3yI8IiYaTPfNK4QXHJUYUr4k.UaVnWH5AmKo22MGn6_cjBA" + "discord": "725081836874760224" }, - "record": { + "records": { "CNAME": "felixgao.hackclub.app" } } diff --git a/domains/felixtr.json b/domains/felixtr.json index aa74e2904..6dc63ec8c 100644 --- a/domains/felixtr.json +++ b/domains/felixtr.json @@ -4,7 +4,7 @@ "username": "tphuc", "email": "felixtran2000@gmail.com" }, - "record": { + "records": { "CNAME": "tphuc.github.io" } } diff --git a/domains/femboy.json b/domains/femboy.json index 16ce0771f..30f1400f5 100644 --- a/domains/femboy.json +++ b/domains/femboy.json @@ -3,7 +3,7 @@ "username": "d4rkd3n1337", "email": "darkdenrevolt@gmail.com" }, - "record": { + "records": { "A": ["45.85.117.139"] } } diff --git a/domains/fendimohamed.json b/domains/fendimohamed.json new file mode 100644 index 000000000..595dbd16e --- /dev/null +++ b/domains/fendimohamed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FendiMohamed", + "email": "fendimohamed615@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/fengkch.json b/domains/fengkch.json index e6f45703d..94908e21c 100644 --- a/domains/fengkch.json +++ b/domains/fengkch.json @@ -3,7 +3,7 @@ "username": "sohokay", "email": "kaichangfeng@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/sohokay" } } diff --git a/domains/fenrir.json b/domains/fenrir.json deleted file mode 100644 index e4d569834..000000000 --- a/domains/fenrir.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "fenrir-san", - "discord": "459219626484826113", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UoRrv1IHlwaxxz5pjNT0ADqyG3EpR8FA3v2oBJGdoMuSZ5v-8ImQVabz3rQ8P1peUKADV4RExI0OtGfajWYQw11bJD9KNXCPMi_MevxxaAX22yvnyW3hPGf_sUe6qhltlGftElkG_yoO6MzxtZyB1_NTeiHR44IZywuoOOEZIwdkrWyLtgczCoTLFNPBtAwcBPaCQf1t94yTgI09juyLVQzHL26dzb-VISsWxfAxAnanBfMfn1ELUnMQXm32QlJPbuQ7f0OATmGfW-XwIiBRt3Zyn28PNZm7Vhgyr3m4NYylpgDjz5v2jibtw7rAO9eP_a9cfToZY7bwj02mZfMIBA.KnAaAaz-Spr94XeYJF4lLQ.dyOn2mafCFB2J1682xUN2VxAtMG35Sh8nJ1AFLqYGmo1nttcRWosRX6NjRxoK_FLRP1Bv9CdVhzhx-R39bLmXYM7fksuKYd_qsY_od-0vwGSm56iHkLrE5PZnjYULssO.70k22YtUqSrQtnO1MDwHwg" - }, - "record": { - "CNAME": "fenrir-san.github.io" - } -} diff --git a/domains/fernandocuba.json b/domains/fernandocuba.json new file mode 100644 index 000000000..cc413a144 --- /dev/null +++ b/domains/fernandocuba.json @@ -0,0 +1,11 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/fernando-cuba/fernando-cuba.github.io", + "owner": { + "username": "fernando-cuba", + "email": "lfernando.cubar@gmail.com" + }, + "records": { + "CNAME": "fernando-cuba.github.io" + } +} diff --git a/domains/fetico.json b/domains/fetico.json new file mode 100644 index 000000000..0072ba829 --- /dev/null +++ b/domains/fetico.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "danielfetico21", + "email": "danielfetico21@gmail.com" + }, + "description": "Personal Website / Portfolio Website", + "records": { + "CNAME": "fetico.ro" + }, + "proxied": true +} diff --git a/domains/ffj20.json b/domains/ffj20.json index 182b81b42..be0e6cfc7 100644 --- a/domains/ffj20.json +++ b/domains/ffj20.json @@ -3,7 +3,7 @@ "username": "FFJ-20", "discord": "FFJ 2.0#6693" }, - "record": { + "records": { "CNAME": "ffj-20.github.io" } } diff --git a/domains/files.allancoding.json b/domains/files.allancoding.json index ee71bfb1a..c4fcb3cc7 100644 --- a/domains/files.allancoding.json +++ b/domains/files.allancoding.json @@ -7,7 +7,7 @@ "twitter": "allancoding", "discord": "allancoding" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/files.dqmn.json b/domains/files.dqmn.json index cd09f820c..f8b9bd8c5 100644 --- a/domains/files.dqmn.json +++ b/domains/files.dqmn.json @@ -4,7 +4,7 @@ "username": "dqmn", "email": "dqmnbackup@gmail.com" }, - "record": { + "records": { "CNAME": "dqmnfiles.000webhostapp.com" } } diff --git a/domains/files.heyaxo.json b/domains/files.heyaxo.json new file mode 100644 index 000000000..a3074e130 --- /dev/null +++ b/domains/files.heyaxo.json @@ -0,0 +1,13 @@ +{ + "repo": "https://github.com/verygafanhot", + "owner": { + "username": "Verygafanhot", + "email": "verygafanhot@gmail.com", + "twitter": "verygafanhot", + "discord": "Verygafanhot" + }, + "records": { + "CNAME": "axothelion.crabdance.com" + }, + "proxied": true +} diff --git a/domains/files.ravener.json b/domains/files.ravener.json index 829548d3a..7fbacf6f5 100644 --- a/domains/files.ravener.json +++ b/domains/files.ravener.json @@ -5,7 +5,7 @@ "twitter": "RavenRavener", "discord": "292690616285134850" }, - "record": { + "records": { "A": ["132.145.196.17"] } } diff --git a/domains/files.vornexx.json b/domains/files.vornexx.json index 7b0b4c4d1..24c12f970 100644 --- a/domains/files.vornexx.json +++ b/domains/files.vornexx.json @@ -4,7 +4,7 @@ "discord": "1149438819834269856", "twitter": "vornexx_" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/filip.json b/domains/filip.json new file mode 100644 index 000000000..f61b41822 --- /dev/null +++ b/domains/filip.json @@ -0,0 +1,19 @@ +{ + "description": "Filip's personal site and/or CV", + "repo": "https://github.com/totalolage/totalolage.github.io", + "owner": { + "username": "totalolage", + "email": "filip@kalny.net" + }, + "proxied": true, + "records": { + "CNAME": "vps1.kalny.net", + "CAA": [ + { + "flags": 0, + "tag": "issue", + "value": "letsencrypt.org" + } + ] + } +} diff --git a/domains/filmflu.json b/domains/filmflu.json index f2bd0c6d6..05881f993 100644 --- a/domains/filmflu.json +++ b/domains/filmflu.json @@ -5,7 +5,7 @@ "username": "dherediat97", "email": "dherediat97@gmail.com" }, - "record": { - "URL": "https://dherediat97.github.io/FilmFlu" + "records": { + "URL": "https://film-flu.web.app/" } } diff --git a/domains/films.json b/domains/films.json index 8dc088b0a..d4364b3c9 100644 --- a/domains/films.json +++ b/domains/films.json @@ -1,10 +1,9 @@ { "owner": { "username": "wsmdn", - "discord": "1049856856467722242", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AM1kF-aodU7n0_bBI28MO7vlg-WccpJAhnV5ltySu602lhBR1Dx3UOD1TskSKmpdBpDXhSOQJ2bQZQ5ouum5txo7kJ42jLOsEr-OhXNREU3pqIE2kfJidObs05iDu2nOFIylFjZGNuYbmJQMPCf0F0KEIbNlgEWKqgPXBuiDOfv8yhi649LbPaj18TCIe04t6pkb77-1lNZiI3ebex4HAbWydF0IKSbijif7FoJbmi_LN6rqYXG-BYRzmdvvCg8FFrDWnTM4KJmc-4dU546kVFtB_GUgMYWl8xSTXKLk9PBHm0Prp3tONhqSMXRIR5Cg-6iVYbkw-Ln0YjYsnrnayQ.u_JCdGcxfWhrAT_7Hh_s2w.uRv4MGy00eRLbLsaHia2fP9FSpuDyGHrb1jF-EWjJ6fjd5XeYw73Up3tiulfQvROZ1li_p5Xfx7RbxaIlEYlA_584ldAutc_AT1YNcg78ck.9dcSw-Ut3ZbG_iO7Vx3-3A" + "discord": "1049856856467722242" }, - "record": { + "records": { "CNAME": "nomdn.github.io" } } diff --git a/domains/finch.json b/domains/finch.json new file mode 100644 index 000000000..6d41fdf14 --- /dev/null +++ b/domains/finch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "metalespesados", + "email": "bengfm@icloud.com" + }, + "records": { + "CNAME": "ebn.netlify.app" + } +} diff --git a/domains/finsniper.json b/domains/finsniper.json index 887938009..317e99aa3 100644 --- a/domains/finsniper.json +++ b/domains/finsniper.json @@ -3,7 +3,7 @@ "username": "chocovannii", "email": "eldar.fire.tv@gmail.com" }, - "record": { + "records": { "MX": ["feedback-smtp.us-east-1.amazonses.com"] } } diff --git a/domains/fire.json b/domains/fire.json index 040318d62..9b2cf93ab 100644 --- a/domains/fire.json +++ b/domains/fire.json @@ -3,7 +3,7 @@ "username": "fire-9999", "email": "liamcarolan@gmail.com" }, - "record": { + "records": { "URL": "https://fire-9999.github.io/fire-9999" } } diff --git a/domains/firedemon.json b/domains/firedemon.json index 136ac2df5..549970d8e 100644 --- a/domains/firedemon.json +++ b/domains/firedemon.json @@ -4,7 +4,7 @@ "email": "peterwyneg@gmail.com", "discord": "1038747272701292584" }, - "record": { + "records": { "CNAME": "shadowplayzyt22.github.io" } } diff --git a/domains/fireexe.json b/domains/fireexe.json new file mode 100644 index 000000000..74f8cb534 --- /dev/null +++ b/domains/fireexe.json @@ -0,0 +1,11 @@ +{ + "description": "A portofolio website about me :D", + "repo": "https://github.com/fireemerald1/fire-exe-website.github.io", + "owner": { + "username": "fireemerald1", + "email": "imguyexeboii@gmail.com" + }, + "records": { + "CNAME": "fireemerald1.github.io" + } +} diff --git a/domains/firework.json b/domains/firework.json index 5d797fad1..b1251dff8 100644 --- a/domains/firework.json +++ b/domains/firework.json @@ -3,7 +3,7 @@ "username": "Firewoork", "email": "iaintflxzra122@gmail.com" }, - "record": { + "records": { "CNAME": "firewoork.github.io" } } diff --git a/domains/fishycraft.json b/domains/fishycraft.json index 3b0110629..eb4e648a5 100644 --- a/domains/fishycraft.json +++ b/domains/fishycraft.json @@ -6,7 +6,7 @@ "email": "fishycraft@yahoo.com", "twitter": "Fishycrafted" }, - "record": { + "records": { "CNAME": "fishycraft.github.io" } } diff --git a/domains/fitrahmunir.json b/domains/fitrahmunir.json index dc4117aa5..e93d88ae9 100644 --- a/domains/fitrahmunir.json +++ b/domains/fitrahmunir.json @@ -1,11 +1,10 @@ { "description": "FitrahFM's .is-a.dev domain", - "repo": "https://github.com/fitrahfm", "owner": { "username": "fitrahfm", "email": "fitrhmnr+is-a-dev@gmail.com" }, - "record": { + "records": { "CNAME": "fitrahmunir.pages.dev" } } diff --git a/domains/fjavierlh.json b/domains/fjavierlh.json index d7d2f5ef2..029a9be97 100644 --- a/domains/fjavierlh.json +++ b/domains/fjavierlh.json @@ -5,7 +5,7 @@ "username": "fjavierlh", "email": "fjavierlh@gmail.com" }, - "record": { + "records": { "CNAME": "fjavierlh.github.io" } } diff --git a/domains/fjuro.json b/domains/fjuro.json index 443f80251..529a4b37a 100644 --- a/domains/fjuro.json +++ b/domains/fjuro.json @@ -3,7 +3,7 @@ "username": "Fjuro", "email": "ifjuro@proton.me" }, - "record": { + "records": { "CNAME": "fjuro.github.io" } } diff --git a/domains/flamexode.json b/domains/flamexode.json index 00b8c7045..0678cd5e8 100644 --- a/domains/flamexode.json +++ b/domains/flamexode.json @@ -3,7 +3,7 @@ "username": "WovenCoast", "email": "wovencoast14782@techie.com" }, - "record": { + "records": { "CNAME": "wovencoast.github.io" } } diff --git a/domains/flash.json b/domains/flash.json index 60735b2c7..27c01e383 100644 --- a/domains/flash.json +++ b/domains/flash.json @@ -3,7 +3,7 @@ "username": "w8flash", "email": "flashhrdc@gmail.com" }, - "record": { + "records": { "URL": "https://www.instagram.com/w8flash/" } } diff --git a/domains/flazepe.json b/domains/flazepe.json index cc05d0d33..119298512 100644 --- a/domains/flazepe.json +++ b/domains/flazepe.json @@ -3,7 +3,7 @@ "username": "flazepe", "discord": "flazepe" }, - "record": { + "records": { "CNAME": "flazepe.github.io" } } diff --git a/domains/fleem.json b/domains/fleem.json index a5bbb642d..470a1c928 100644 --- a/domains/fleem.json +++ b/domains/fleem.json @@ -3,7 +3,7 @@ "username": "adityavijay21", "email": "adityavijay2103@gmail.com" }, - "record": { + "records": { "CNAME": "fleemwebsite.onrender.com" } } diff --git a/domains/flexis.json b/domains/flexis.json index 4d037578d..35bbabd1c 100644 --- a/domains/flexis.json +++ b/domains/flexis.json @@ -1,10 +1,9 @@ { "owner": { "username": "realflexis", - "discord": "1236579599119548426", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YoALVOz_5u0oVgrxg3RQaVcoYA_P4JHnOZlPuPWFWU8ESueyCNjpbJ0b2c6JOlB9h1V3n2WuwXWkGwvhKYwdNV0WxWWQpQwjJE76SmxnWglTpL1FiAzdPDh5ophB9n1AK-Y-Y2Bn7n8ybi-uPZhZ50VT3LuLVLmirYMv7_f-Z879zUsP5y6fBypUPNHwQsw6T7G9uiURIZfnSKI2_mlPALcG8grEgO1B9H3yGrDkf3y8lFYngDKbYg8QSLPR1fKCV1cpv0zfVaztTRJqffvcVdTHh0r7nBB0Nz-1FqmegaGTPaOSn8rUIwgdp2GLq8NJx2_P4QGmoM8PmrrUgcKmUQ.pW-okmStc_7nPw-L96exPg.AmtSUs-AHjGWzy-cXaqcK4OzTfvrsk623pJixyzzXl0MZYn_1krPQ8Haom9KG-zsb0Kj4CHZqFHn6Wo6G25pwh_-LZlg9a5jrU22XsPKTI4.HkRnKv1TWr8AGJSZBn8d9Q" + "discord": "1236579599119548426" }, - "record": { + "records": { "CNAME": "realflexis.github.io" } } diff --git a/domains/fliberd.json b/domains/fliberd.json index 068d4660b..e8345ab2c 100644 --- a/domains/fliberd.json +++ b/domains/fliberd.json @@ -3,7 +3,7 @@ "username": "fliberd", "email": "dankashkarev@gmail.com" }, - "record": { + "records": { "A": ["80.87.111.147"] } } diff --git a/domains/floppy.json b/domains/floppy.json index 4058deba7..6a37c3a75 100644 --- a/domains/floppy.json +++ b/domains/floppy.json @@ -6,7 +6,7 @@ "email": "floppydisk2020@outlook.com", "twitter": "FloppyWasTaken" }, - "record": { + "records": { "CNAME": "floppycodes.github.io" } } diff --git a/domains/florent.json b/domains/florent.json new file mode 100644 index 000000000..9d7120e5b --- /dev/null +++ b/domains/florent.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/flobsx", + "owner": { + "username": "flobsx", + "email": "flo@bsx.pm" + }, + "records": { + "CNAME": "flobsx.github.io" + }, + "proxied": true +} diff --git a/domains/florianorineveu.json b/domains/florianorineveu.json new file mode 100644 index 000000000..a19fa9b00 --- /dev/null +++ b/domains/florianorineveu.json @@ -0,0 +1,10 @@ +{ + "description": "French PHP/Symfony developer", + "owner": { + "username": "florianorineveu", + "email": "hello@fnev.eu" + }, + "records": { + "CNAME": "fnev.eu" + } +} diff --git a/domains/florin.json b/domains/florin.json index 387f41bad..bbdd9dbc1 100644 --- a/domains/florin.json +++ b/domains/florin.json @@ -3,7 +3,7 @@ "username": "flc995", "email": "flc995@gmail.com" }, - "record": { + "records": { "CNAME": "flc995.github.io" } } diff --git a/domains/flower.json b/domains/flower.json index 4aa656457..d3996988c 100644 --- a/domains/flower.json +++ b/domains/flower.json @@ -3,7 +3,7 @@ "username": "messedupflowerpot", "email": "messedupflowerpot@gmail.com" }, - "record": { + "records": { "URL": "https://messedupflowerpot.carrd.co", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/flowwing.json b/domains/flowwing.json index 91c43c6d1..712b8f072 100644 --- a/domains/flowwing.json +++ b/domains/flowwing.json @@ -5,7 +5,7 @@ "username": "kushagra1212", "email": "kushagrarathore002@gmail.com" }, - "record": { - "A": ["34.19.126.68"] + "records": { + "CNAME": "flowwing.frii.site" } } diff --git a/domains/fluffythebunny.json b/domains/fluffythebunny.json index 686098faf..0e0fdbec6 100644 --- a/domains/fluffythebunny.json +++ b/domains/fluffythebunny.json @@ -6,7 +6,7 @@ "email": "puglsytt@gmail.com", "twitter": "pugls" }, - "record": { + "records": { "CNAME": "fluffythebunny.github.io" } } diff --git a/domains/fluor.json b/domains/fluor.json index 0c4b4c485..324358058 100644 --- a/domains/fluor.json +++ b/domains/fluor.json @@ -3,7 +3,7 @@ "username": "PlowDev", "email": "clicpowytb@gmail.com" }, - "record": { + "records": { "CNAME": "fluor.pages.dev" } } diff --git a/domains/fluoresced.json b/domains/fluoresced.json index 5d65b647d..18640bf51 100644 --- a/domains/fluoresced.json +++ b/domains/fluoresced.json @@ -3,7 +3,7 @@ "username": "8FrMc", "email": "pijuskaminskas1@gmail.com" }, - "record": { + "records": { "URL": "https://guns.lol/ecq" } } diff --git a/domains/fluxxyboi.json b/domains/fluxxyboi.json index 314ac0847..d0d056221 100644 --- a/domains/fluxxyboi.json +++ b/domains/fluxxyboi.json @@ -4,7 +4,7 @@ "username": "FluxxyBoi", "discord": "FluxxyBoi#9402" }, - "record": { + "records": { "URL": "https://anshop.dorik.io" } } diff --git a/domains/flymeth.json b/domains/flymeth.json index f155dc218..e005bc933 100644 --- a/domains/flymeth.json +++ b/domains/flymeth.json @@ -1,5 +1,5 @@ { - "record": { + "records": { "CNAME": "flyweb-v2.netlify.app" }, "owner": { @@ -7,6 +7,5 @@ "email": "flymeth.yt@gmail.com", "twitter": "flymeth" }, - "repo": "https://github.com/Flymeth", "description": "I'm a dev and I love to be that" } diff --git a/domains/fm7qby6i5y25.ttkt.json b/domains/fm7qby6i5y25.ttkt.json index b9f95b574..21c2b2859 100644 --- a/domains/fm7qby6i5y25.ttkt.json +++ b/domains/fm7qby6i5y25.ttkt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "gv-kys3ep4lrotyqc.dv.googlehosted.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "gv-kys3ep4lrotyqc.dv.googlehosted.com" + } } diff --git a/domains/fma.json b/domains/fma.json index e8d495d11..7b82f05ec 100644 --- a/domains/fma.json +++ b/domains/fma.json @@ -4,7 +4,7 @@ "username": "FMA", "email": "eggnogh@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/fmode.json b/domains/fmode.json new file mode 100644 index 000000000..051cd8fd4 --- /dev/null +++ b/domains/fmode.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation website of vulnerability in ChromeOS", + "repo": "https://github.com/jOaawd/imperfect-secure", + "owner": { + "username": "jOaawd", + "email": "fmodeteam@gmail.com" + }, + "records": { + "CNAME": "imperfect.onrender.com" + }, + "proxied": false +} diff --git a/domains/fodilfliti.json b/domains/fodilfliti.json new file mode 100644 index 000000000..481e3c057 --- /dev/null +++ b/domains/fodilfliti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fodilfliti", + "email": "fodilfliti150@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/fodorzsolt.json b/domains/fodorzsolt.json new file mode 100644 index 000000000..e01a29cc6 --- /dev/null +++ b/domains/fodorzsolt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "email": "fodorzsolt92@gmail.com", + "username": "fzsatti" + }, + "description": "My portfolio website", + "repo": "https://github.com/fzsatti/fodorzsolt.is-a.dev", + "records": { + "CNAME": "fzsatti.github.io" + } +} diff --git a/domains/fong.json b/domains/fong.json index ccf6310e4..643e4e715 100644 --- a/domains/fong.json +++ b/domains/fong.json @@ -3,7 +3,7 @@ "username": "cnu4", "email": "fangxw1004@qq.com" }, - "record": { + "records": { "CNAME": "fangxw.me" } } diff --git a/domains/fongg.json b/domains/fongg.json new file mode 100644 index 000000000..1836be30a --- /dev/null +++ b/domains/fongg.json @@ -0,0 +1,11 @@ +{ + "description": "nphng15.is-a.dev", + "repo": "https://github.com/nphng15/nphng15.github.io", + "owner": { + "username": "nphng15", + "email": "23521172@gm.uit.edu.vn" + }, + "records": { + "CNAME": "nphng15.github.io" + } +} diff --git a/domains/fordevs.json b/domains/fordevs.json index ab8069858..e17638a0f 100644 --- a/domains/fordevs.json +++ b/domains/fordevs.json @@ -3,7 +3,7 @@ "username": "neopromic", "email": "cusaowesley1@gmail.com" }, - "record": { + "records": { "URL": "https://for-devs.vercel.app" } } diff --git a/domains/forero.json b/domains/forero.json index 91cc7838a..b0fcec286 100644 --- a/domains/forero.json +++ b/domains/forero.json @@ -3,7 +3,7 @@ "username": "forerosantiago", "email": "forero@disroot.org" }, - "record": { + "records": { "A": ["20.47.86.75"] } } diff --git a/domains/formalite.json b/domains/formalite.json index 592eca48f..a92882985 100644 --- a/domains/formalite.json +++ b/domains/formalite.json @@ -4,7 +4,7 @@ "email": "kkandemir947@gmail.com", "discord": "kandemir#1000" }, - "record": { + "records": { "CNAME": "formalite.github.io" } } diff --git a/domains/formuna.json b/domains/formuna.json index 3083fbe06..b175bcb1e 100644 --- a/domains/formuna.json +++ b/domains/formuna.json @@ -5,7 +5,7 @@ "username": "FormunaGit", "discord": "754657845563097108" }, - "record": { + "records": { "CNAME": "formunagit.github.io" } } diff --git a/domains/forsas.json b/domains/forsas.json index 8029c627a..e49bb1331 100644 --- a/domains/forsas.json +++ b/domains/forsas.json @@ -5,7 +5,7 @@ "username": "forsas", "email": "forsaslt@gmail.com" }, - "record": { + "records": { "CNAME": "forsas.github.io" } } diff --git a/domains/foufou-exe.json b/domains/foufou-exe.json index 537ba5fb1..21c452b43 100644 --- a/domains/foufou-exe.json +++ b/domains/foufou-exe.json @@ -6,7 +6,7 @@ "email": "thibaut.maurras34@gmail.com", "twitter": "MaurrasT" }, - "record": { + "records": { "CNAME": "foufou-exe.github.io" } } diff --git a/domains/founderfie.json b/domains/founderfie.json index 819ae85ae..4d5f6a81d 100644 --- a/domains/founderfie.json +++ b/domains/founderfie.json @@ -4,7 +4,7 @@ "username": "Founderfie", "email": "director@founderfie.in" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/fourjuaneight.json b/domains/fourjuaneight.json index 2cef409e2..46f470690 100644 --- a/domains/fourjuaneight.json +++ b/domains/fourjuaneight.json @@ -1,11 +1,10 @@ { "description": "Juan's personal site", - "repo": "https://github.com/fourjuaneight", "owner": { "username": "fourjuaneight", "email": "juan@villela.co" }, - "record": { + "records": { "URL": "https://juanvillela.dev" } } diff --git a/domains/fox.json b/domains/fox.json index 1101952f9..b33479dc0 100644 --- a/domains/fox.json +++ b/domains/fox.json @@ -3,7 +3,7 @@ "username": "fox-tech0", "email": "red@team-ruben.tk" }, - "record": { + "records": { "CNAME": "fox-tech0.github.io" } } diff --git a/domains/foxdev.json b/domains/foxdev.json index c2ee2b19b..142812d41 100644 --- a/domains/foxdev.json +++ b/domains/foxdev.json @@ -1,10 +1,9 @@ { "owner": { "username": "GermanFoxDev", - "discord": "1073620716152434830", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UbebN16UHO72TKA2YD4x_u4SI0XWphOGenqOawSBEd1FBNohHDWfoJMPcipQ9E-MFGYgvC5gVue7h2sKEoRb6dd4G6v46leW1Tc7_WJAhn55u3b0Rj-fJqjvqcwaNo05W1Zq0O9WfTGQdzXyqVBcSnq1V6GnEeI0UzTCyI_HNqnXzaI1qMmo8CtQgyTKnfBcR1opNCO7QeSG_T4EGg4DLWsrgr0AJO-HVXYvM_h5rCeyQXTfrNAMa9ICAT-TwJGiM-cu-wFBMB_1HQpBFaQaHhH5UAFKIfF9WQQpH-VHf_LhI8FpLRB-6CnCWE5JzPHFVlbpTkVSn20i_oPUrTV4Dg.RyWu6R3v0aMxyponKSI1gg.JEE8XkoGn7xz6tCqENxVjilgS1edQFIWTb38odWEZsF9dwQP_W7-N8nQhyx1oPt5yPxx8Iye9fwgYpeVV_9_bL6ECqHfH-GyPbXSOkygJbk.mDRr1pnHgCfZuEb9BZYs8g" + "discord": "1073620716152434830" }, - "record": { + "records": { "URL": "https://germanfoxdev.is-a.dev" } } diff --git a/domains/foxie.arman.json b/domains/foxie.arman.json index 14174d5d3..43f581263 100644 --- a/domains/foxie.arman.json +++ b/domains/foxie.arman.json @@ -3,7 +3,7 @@ "username": "ItzArman09", "email": "itz.armxn@outlook.com" }, - "record": { + "records": { "A": ["45.140.142.112"] } } diff --git a/domains/foxsden.json b/domains/foxsden.json index 73a68705c..935dfbe2c 100644 --- a/domains/foxsden.json +++ b/domains/foxsden.json @@ -3,13 +3,8 @@ "username": "FoxsDenYT", "email": "foxsdenyt+isadev@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net"], "TXT": "forward-email=foxsdenyt@gmail.com" } diff --git a/domains/foxy4096.json b/domains/foxy4096.json index cba5df249..d7fecd715 100644 --- a/domains/foxy4096.json +++ b/domains/foxy4096.json @@ -6,7 +6,7 @@ "email": "adityapriyadarshi669@gmail.com", "twitter": "Foxy4096" }, - "record": { + "records": { "CNAME": "foxy4096.github.io" } } diff --git a/domains/foyet.json b/domains/foyet.json new file mode 100644 index 000000000..9a6449d7a --- /dev/null +++ b/domains/foyet.json @@ -0,0 +1,11 @@ +{ + "description": "Link to my blog/personal website", + "repo": "https://github.com/THL007/personal-blog", + "owner": { + "username": "thl007", + "email": "thl7.de@gmail.com" + }, + "records": { + "CNAME": "thl007.github.io" + } +} diff --git a/domains/fptbb.json b/domains/fptbb.json index bd768f806..b0e7d3037 100644 --- a/domains/fptbb.json +++ b/domains/fptbb.json @@ -3,7 +3,7 @@ "username": "Fptbb", "email": "lucas@fptbb.com" }, - "record": { + "records": { "URL": "https://fptbb.com", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/fr0stb1rd.json b/domains/fr0stb1rd.json new file mode 100644 index 000000000..dd71180d5 --- /dev/null +++ b/domains/fr0stb1rd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "herobryne0", + "email": "fr0stb1rd@proton.me" + }, + "records": { + "CNAME": "fr0stb1rd.pages.dev" + } +} diff --git a/domains/fran.json b/domains/fran.json index 702850c68..dc390230a 100644 --- a/domains/fran.json +++ b/domains/fran.json @@ -3,13 +3,8 @@ "username": "xzonix", "discord": "xzon1x" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.110.153", - "185.199.109.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.110.153", "185.199.109.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/francescodulio.json b/domains/francescodulio.json new file mode 100644 index 000000000..c813d6dc6 --- /dev/null +++ b/domains/francescodulio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adrenocortico", + "email": "francesco.dulio@icloud.com" + }, + "records": { + "CNAME": "adrenocortico.github.io" + } +} diff --git a/domains/francescogerardi.json b/domains/francescogerardi.json index 45436b59f..0a78844ea 100644 --- a/domains/francescogerardi.json +++ b/domains/francescogerardi.json @@ -1,10 +1,9 @@ { "owner": { "username": "flick9000", - "discord": "362568231149633548", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.c3zZelrnWeEuqiMpG-GcRSNLzfODaHNYHVo1NfrkV0wv7mieN9UgiB1Zb_4B7EFPG9NkpwxiUEdW7fNoi7ULdS0sRph_3LykmcnP2QEf_cB8wEewUrzRmlWTtauxo-VKkAuRYa-Ii0mEHQB1ih7hSE77aSix33PLvAItb9NcYemmA8szZO4qCJmNVb44opt-d74x9FlknLxpqDFsKIiyITiKHHUhaOH_NePuZ_arsP4k0bGImUU9d6OymNj_IVXmOdM3Ly_Y3Wju_UFA3Y9t5FXPVNsJq_s5HV4aatJUUBfV47vXruzOeuTFEEVu6VkQpYIspp7mmfgeJPUdAp6yew.wLK8eQGZ8_vbMQEM8sq12A.xTmbHTMvpvXvV2nMnvnGrmp9S4WDAuArMOh4S1XmReBtt7bDUxkoZCgSNWOygDzGnoNOt4TyHXNlEaq_rX-yOBhKlpNI_qHqJncH5imtAdc.y0ElsabDzZ7GmbB_F2zGyQ" + "discord": "362568231149633548" }, - "record": { + "records": { "A": ["172.66.47.45", "172.66.44.211"], "TXT": "google-site-verification=iL7h3vJPXKZPDsPAMhlOlX6Rz9fa4-oTNmCh-tn3isU" } diff --git a/domains/franciskafieh.json b/domains/franciskafieh.json index 73e05b07c..abfe2412b 100644 --- a/domains/franciskafieh.json +++ b/domains/franciskafieh.json @@ -5,7 +5,7 @@ "username": "franciskafieh", "email": "kafieh.francis@gmail.com" }, - "record": { + "records": { "CNAME": "franciskafieh.github.io" } } diff --git a/domains/francodurand.json b/domains/francodurand.json new file mode 100644 index 000000000..17bb72eec --- /dev/null +++ b/domains/francodurand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrancoDurand", + "email": "francoduve.25@gmail.com" + }, + "records": { + "CNAME": "devfolio-franco.vercel.app" + } +} diff --git a/domains/francoleon.json b/domains/francoleon.json new file mode 100644 index 000000000..e6f441380 --- /dev/null +++ b/domains/francoleon.json @@ -0,0 +1,10 @@ +{ + "description": "Franco Leon, Personal Portfolio", + "owner": { + "username": "francoleon08", + "email": "francoleon284@gmail.com" + }, + "records": { + "CNAME": "francoleondev.vercel.app" + } +} diff --git a/domains/frank-perez-fleita.json b/domains/frank-perez-fleita.json new file mode 100644 index 000000000..14a6c89eb --- /dev/null +++ b/domains/frank-perez-fleita.json @@ -0,0 +1,10 @@ +{ + "description": "Personal domain for Frank Perez Fleita, redirecting to my Vercel app.", + "owner": { + "username": "frankperez-github", + "email": "fp848584@gmail.com" + }, + "records": { + "URL": "https://frank-perez-fleita.vercel.app" + } +} diff --git a/domains/frank.json b/domains/frank.json index 16feeed4c..cbf70d6fc 100644 --- a/domains/frank.json +++ b/domains/frank.json @@ -3,7 +3,7 @@ "username": "kageurufu", "email": "franklyn@tackitt.net" }, - "record": { + "records": { "CNAME": "is-a-dev.frank.af" } } diff --git a/domains/frankra.json b/domains/frankra.json new file mode 100644 index 000000000..236f6710b --- /dev/null +++ b/domains/frankra.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/frankra/frankra.github.io", + "owner": { + "username": "frankra", + "email": "rafael.h.frank@gmail.com" + }, + "records": { + "CNAME": "frankra.github.io" + } +} diff --git a/domains/franky.json b/domains/franky.json new file mode 100644 index 000000000..ddc5c6b72 --- /dev/null +++ b/domains/franky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "senseikoder", + "email": "molina.frank@gmail.com" + }, + "records": { + "CNAME": "efrank.xyz" + } +} diff --git a/domains/franlo42.json b/domains/franlo42.json new file mode 100644 index 000000000..49d2e6036 --- /dev/null +++ b/domains/franlo42.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "franlo42" + }, + "records": { + "CNAME": "franlo42.github.io" + } +} diff --git a/domains/frapujgal.json b/domains/frapujgal.json new file mode 100644 index 000000000..b430d74ec --- /dev/null +++ b/domains/frapujgal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "frapujgal", + "email": "fpujol1989@gmail.com" + }, + "records": { + "CNAME": "frapujgal.github.io" + } +} diff --git a/domains/frazix.json b/domains/frazix.json index 95fd45d84..2845c821d 100644 --- a/domains/frazix.json +++ b/domains/frazix.json @@ -5,7 +5,7 @@ "username": "Frazix12", "email": "frazixgaming22@gmail.com" }, - "record": { + "records": { "CNAME": "frazix12.github.io" } } diff --git a/domains/frcat.json b/domains/frcat.json index 581601e0a..02690d9e0 100644 --- a/domains/frcat.json +++ b/domains/frcat.json @@ -5,7 +5,7 @@ "username": "French-Cat", "discord": "French Cat#0002" }, - "record": { + "records": { "CNAME": "frcat.github.io" } } diff --git a/domains/frd.json b/domains/frd.json index 936420763..676aa1270 100644 --- a/domains/frd.json +++ b/domains/frd.json @@ -5,7 +5,7 @@ "username": "superXdev", "email": "fikrizhanking@gmail.com" }, - "record": { + "records": { "URL": "https://fikri.vercel.app" } } diff --git a/domains/free.json b/domains/free.json index 860b34eab..543dac60d 100644 --- a/domains/free.json +++ b/domains/free.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/freebies.json b/domains/freebies.json index ba81bda03..1618e61fd 100644 --- a/domains/freebies.json +++ b/domains/freebies.json @@ -5,7 +5,7 @@ "username": "icancodebeauty", "email": "admin@itsjava.ml" }, - "record": { + "records": { "CNAME": "icancodebeauty.github.io" } } diff --git a/domains/freefor.json b/domains/freefor.json index 860b34eab..543dac60d 100644 --- a/domains/freefor.json +++ b/domains/freefor.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/freefordevs.json b/domains/freefordevs.json index 860b34eab..543dac60d 100644 --- a/domains/freefordevs.json +++ b/domains/freefordevs.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/freehuntx.json b/domains/freehuntx.json index 666fb0fef..edb9f36cc 100644 --- a/domains/freehuntx.json +++ b/domains/freehuntx.json @@ -3,7 +3,7 @@ "username": "FreehuntX", "twitter": "freehuntx" }, - "record": { + "records": { "URL": "https://freehuntx.github.io/freehunt-webpage" } } diff --git a/domains/freitaseric.json b/domains/freitaseric.json index 86e202516..02af0512e 100644 --- a/domains/freitaseric.json +++ b/domains/freitaseric.json @@ -3,7 +3,7 @@ "username": "uEriic", "email": "ueriic0@gmail.com" }, - "record": { + "records": { "CNAME": "ueriic.github.io" } } diff --git a/domains/frenzy.json b/domains/frenzy.json index 9261056f4..37a6aab42 100644 --- a/domains/frenzy.json +++ b/domains/frenzy.json @@ -3,7 +3,7 @@ "username": "frenzy602", "email": "GK267281@GMAIL.COM" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/friday.json b/domains/friday.json index 8db69922d..b46f1daff 100644 --- a/domains/friday.json +++ b/domains/friday.json @@ -3,7 +3,7 @@ "username": "itmefriday", "email": "chauhan20292827@gmail.com" }, - "record": { + "records": { "A": ["109.71.252.37"] } } diff --git a/domains/frogiee1real.json b/domains/frogiee1real.json index 89a1a2107..006933023 100644 --- a/domains/frogiee1real.json +++ b/domains/frogiee1real.json @@ -3,7 +3,7 @@ "username": "FrogiesArcade", "email": "frogiesarcade@gmail.com" }, - "record": { + "records": { "CNAME": "extramathequations.web.app" } } diff --git a/domains/froniz.json b/domains/froniz.json index 079c88e07..bc2f5a40b 100644 --- a/domains/froniz.json +++ b/domains/froniz.json @@ -4,7 +4,7 @@ "email": "discordmarc1912@gmail.com", "discord": "1002293564782411787" }, - "record": { + "records": { "A": ["144.91.116.153"] } } diff --git a/domains/frost-voltage-wiki.json b/domains/frost-voltage-wiki.json new file mode 100644 index 000000000..6c8f7740c --- /dev/null +++ b/domains/frost-voltage-wiki.json @@ -0,0 +1,11 @@ +{ + "description": "Frost's VoltageOS Wiki", + "repo": "https://gitlab.com/Karan-Frost/wiki.frost.me", + "owner": { + "username": "Karan-Frost", + "email": "frost.github@gmail.com" + }, + "records": { + "CNAME": "wiki-frost-me-f3415d.gitlab.io" + } +} diff --git a/domains/frost.json b/domains/frost.json new file mode 100644 index 000000000..3045b981d --- /dev/null +++ b/domains/frost.json @@ -0,0 +1,11 @@ +{ + "description": "Frost // Cyberpunk", + "repo": "https://github.com/Karan-Frost/karan-frost.github.io", + "owner": { + "username": "Karan-Frost", + "email": "frost.github@gmail.com" + }, + "records": { + "CNAME": "karan-frost.github.io" + } +} diff --git a/domains/frost2k5.json b/domains/frost2k5.json index f07b37e69..bf696897f 100644 --- a/domains/frost2k5.json +++ b/domains/frost2k5.json @@ -3,7 +3,7 @@ "username": "FrosT2k5", "email": "androygaming@protonmail.com" }, - "record": { + "records": { "CNAME": "frost2k5.github.io" } } diff --git a/domains/frostx.json b/domains/frostx.json index 996568557..cc7783e46 100644 --- a/domains/frostx.json +++ b/domains/frostx.json @@ -6,7 +6,7 @@ "note": "Type in discord, i wont answer in email probably lol" }, "description": "Making portfolio here lol.", - "record": { + "records": { "CNAME": "frostx-official.github.io" } } diff --git a/domains/frozzare.json b/domains/frozzare.json index fa26ebf9a..f8e24c4ea 100644 --- a/domains/frozzare.json +++ b/domains/frozzare.json @@ -4,7 +4,7 @@ "username": "frozzare", "email": "fredrik.forsmo@gmail.com" }, - "record": { + "records": { "URL": "https://frozzare.com" } } diff --git a/domains/fry69.json b/domains/fry69.json index a475d81d8..639d4f2d8 100644 --- a/domains/fry69.json +++ b/domains/fry69.json @@ -1,10 +1,9 @@ { "owner": { "username": "fry69", - "discord": "1239250028741263452", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.E1fXAoQ-O1vIvYOVZKHRkwM-2BqIq5e7GwbvIHNP11indOOQdXQDyGZ-0SBtsANvA7EihmnUF_wqw2CsCF2pulQ5Ae5Akd3A_AuMxk4psHiFk0X_J8hW7rUAxCGjgq8ovTOcnK6VXl9UYEhgGzGTFD6iN7PgdaPcFV74Fr9MrfQijoRUkO-xpFOxHOe1ZyXbBD4J_aZNzwH9DxcXoEV8pGC_hn_vkO5qe7ldGHDvWdCUljZb-CJewKmMhqyugSnX76NVvxLVsVVRL8ho6Xo8q77UgZKzr_hSJpTUhL_QgXk8JGvHyyPWO4eBsG8U56mLPnkus_X1DpIwrOok2nrAPQ.aOg6ZrZw7-FlkuCV3s_cNQ.U4PybUQCbruq8EKEWEPVOYNlVLz-b6gPwGiZcy8Nh0S5ukpy6S_sV2EObHCIQuzd8OcZWRXvFVJv18M77OBTUIVGIjLf75LnUJckqMRbKq3GThkyXgC3a8NfBiAU1lUP.NRyVcTgZmwmOGLBdStiVNw" + "discord": "1239250028741263452" }, - "record": { + "records": { "CNAME": "fry69.github.io" } } diff --git a/domains/kush.json b/domains/fryvex.json similarity index 50% rename from domains/kush.json rename to domains/fryvex.json index 185f39166..858a8a1ed 100644 --- a/domains/kush.json +++ b/domains/fryvex.json @@ -1,10 +1,10 @@ { "owner": { - "username": "Kush-Dhingra", - "email": "kushdhingra3112@gmail.com", - "discord": "1035869217796403220" + "username": "x1yl", + "discord": "627947214576025610" }, - "record": { + "records": { + "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/fsanchir.json b/domains/fsanchir.json index 635674c10..afb7bba29 100644 --- a/domains/fsanchir.json +++ b/domains/fsanchir.json @@ -5,7 +5,7 @@ "username": "fsanchir", "email": "fsanchir@fsip.ml" }, - "record": { + "records": { "CNAME": "fsanchir.github.io" } } diff --git a/domains/fsoft72.json b/domains/fsoft72.json new file mode 100644 index 000000000..614b9e0a3 --- /dev/null +++ b/domains/fsoft72.json @@ -0,0 +1,10 @@ +{ + "description": "👋 Hello! I'm Fabio, a passionate developer with 30+ years experience in programming. In my career I have done almost everything, from shared objects for Linux in C to complex web applications and efficient web solutions. Explore my portfolio and contact me on GitHub.", + "owner": { + "username": "fsoft72", + "email": "fabio.rotondo@gmail.com" + }, + "records": { + "URL": "https://fsoft.dev" + } +} diff --git a/domains/ft.json b/domains/ft.json new file mode 100644 index 000000000..16cc893d1 --- /dev/null +++ b/domains/ft.json @@ -0,0 +1,12 @@ +{ + "description": "For the email address h@ft.is-a.dev", + "repo": "https://github.com/HaftIsntHere/is-a.dev/", + "owner": { + "username": "HaftIsntHere", + "email": "haftthedev@gmail.com" + }, + "records": { + "MX": ["mx01.mail.icloud.com", "mx02.mail.icloud.com"], + "TXT": ["apple-domain=MpJJp8aekdLZ5ynT", "v=spf1 include:icloud.com ~all"] + } +} diff --git a/domains/ftn.json b/domains/ftn.json index 703ae35b7..0faef10fa 100644 --- a/domains/ftn.json +++ b/domains/ftn.json @@ -5,7 +5,7 @@ "username": "furthir", "email": "furthir@pm.me" }, - "record": { + "records": { "CNAME": "furthir.github.io" } } diff --git a/domains/fucabot.json b/domains/fucabot.json index 56a8f07fb..a85067c88 100644 --- a/domains/fucabot.json +++ b/domains/fucabot.json @@ -1,11 +1,10 @@ { "description": "Fuca Bot website", - "repo": "https://github.com/anshtyagi0", "owner": { "username": "anshtyagi0", "email": "tyagiansh175@gmail.com" }, - "record": { + "records": { "A": ["65.109.168.46"] } } diff --git a/domains/fuccsoc.json b/domains/fuccsoc.json index 57f7dbdfe..bd3e05d4d 100644 --- a/domains/fuccsoc.json +++ b/domains/fuccsoc.json @@ -3,7 +3,7 @@ "username": "fuccsoc", "email": "me@fuccsoc.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"], "URL": "https://fuccsoc.github.io" diff --git a/domains/fuds.json b/domains/fuds.json index a4b4d4eed..3eda6c8bd 100644 --- a/domains/fuds.json +++ b/domains/fuds.json @@ -3,7 +3,7 @@ "username": "GeekSupport", "email": "geek@laguaz.eu.org" }, - "record": { + "records": { "CNAME": "fuds.pages.dev" } } diff --git a/domains/fuji.json b/domains/fuji.json new file mode 100644 index 000000000..7dbbc703f --- /dev/null +++ b/domains/fuji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fujitime", + "email": "racun1601@email.com" + }, + "records": { + "CNAME": "fuji-halim-rabani.netlify.app" + } +} diff --git a/domains/fullpwn.json b/domains/fullpwn.json index 3987438e6..d2e8f6379 100644 --- a/domains/fullpwn.json +++ b/domains/fullpwn.json @@ -6,7 +6,7 @@ "email": "fullpwn@cumallover.me", "twitter": "fullpwn" }, - "record": { + "records": { "CNAME": "fullpwn.github.io" } } diff --git a/domains/fulminatingmoat.json b/domains/fulminatingmoat.json index 403673491..5d7e64bda 100644 --- a/domains/fulminatingmoat.json +++ b/domains/fulminatingmoat.json @@ -1,12 +1,11 @@ { "description": "Website", - "repo": "https://github.com/fulminatingmoat", "owner": { "username": "fulminatingmoat", "email": "fulminatingmoat@fulminatingmoat.com", "discord": "ᅠᅠ#6266" }, - "record": { + "records": { "URL": "https://fulminatingmoat.com" } } diff --git a/domains/fumi.json b/domains/fumi.json index cbb571bb6..6f628568c 100644 --- a/domains/fumi.json +++ b/domains/fumi.json @@ -3,7 +3,7 @@ "username": "MrTakedi", "email": "tristankirbehbuller@gmail.com" }, - "record": { + "records": { "URL": "https://social.vivaldi.net/@kirbeh" } } diff --git a/domains/funasitien.json b/domains/funasitien.json index a7d931a02..e11b5d3f2 100644 --- a/domains/funasitien.json +++ b/domains/funasitien.json @@ -3,7 +3,7 @@ "username": "Funasitien", "email": "bwha.bwha.splash@gmail.com" }, - "record": { + "records": { "CNAME": "funasitien.github.io" } } diff --git a/domains/fundid.json b/domains/fundid.json index 63dd73d84..4d76229a8 100644 --- a/domains/fundid.json +++ b/domains/fundid.json @@ -3,7 +3,7 @@ "username": "fundid", "email": "fundidennis@protonmail.com" }, - "record": { + "records": { "CNAME": "fundid.github.io" } } diff --git a/domains/fungaming.joe50097.json b/domains/fungaming.joe50097.json new file mode 100644 index 000000000..44036265b --- /dev/null +++ b/domains/fungaming.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "CNAME": "fungaming-discord-server.netlify.app" + } +} diff --git a/domains/funinkina.json b/domains/funinkina.json new file mode 100644 index 000000000..acf05c539 --- /dev/null +++ b/domains/funinkina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "funinkina", + "email": "aryankushwaha3101@gmail.com" + }, + "records": { + "CNAME": "funinkina.vercel.app" + } +} diff --git a/domains/funn.json b/domains/funn.json index 2193cac63..8e9e3735b 100644 --- a/domains/funn.json +++ b/domains/funn.json @@ -2,10 +2,9 @@ "owner": { "username": "funnsam", "email": "funnsam8@gmail.com", - "discord": "684733024612646953", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZMW5PjPtfPT7C8JjTRmHq8lQPCfuuqYjzrJDWht6SAT7w7Uf1pocR9OhIsl4fvx3Jw1bcOYsa2KfWbZ_PXLDD6YlRHM86nszS4TPFlo8_DsqJC0IMlXdBtlgqPg0gntNzuZMNg9HLpkRWiXzkXMEMdQ5OJJgVoKtBCpc9Z68aoFw_d8WNKebA1mC04DayucBOulPu1bY2HhZleTvjAlW7_wA-soRF-O9ByL59DtNfUGaJaX7SqvthGz2FSyPqlaw1UOe3fpQdutYG_A97tv_toQOJZy93o2iCcrxSWS3tPFZnu_LVyL-JRmkfaMvzxFakgA3etAOx-ReUnD8TmM3tw.ZqPbIAF9lrCM39_U9KgzHA.PdOPxoSDOoMU9saO4KtrXor5ZIStqTjA8AMrCFatJDiB3iHln7gPkzkhmS-l6w8hwu7T3VLxDe8kfVmxmbenKksumyR6pDicLaw45zb5vfY.srUkRHoxqz9QXW1pzbTo2w" + "discord": "684733024612646953" }, - "record": { + "records": { "CNAME": "funnsam.github.io" } } diff --git a/domains/funny-noip.json b/domains/funny-noip.json index bb236d7ce..99c1ee0cf 100644 --- a/domains/funny-noip.json +++ b/domains/funny-noip.json @@ -1,10 +1,9 @@ { "owner": { "username": "DaoLmao", - "discord": "854380469147140106", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RHFDQ-t8_30YGZqdxnq81q5n9x4c7fKSVN6Xb_PnHI_7fT1K7bh-h7hn-Ow_ysHPiF9EzTuhFpSdIOmFHITWx5pxuJXYONFir9gsxGEHCWhHbBOWgq6uRUeE003cbVHAJ4PyAApParkPEiFPd4O7wlM4sHN-db_Pb9mj6DjRMehKZi8e62imM_uL13BE9WzF14Ra1ELHbobVTjF4KHm7a1U9FUG-M1CWGyUs47AxDzcwFrT-q2-yBmlGHJzWS_aCXdZvWtP19TZzoGh-iqpKOMfLTnFq3OAJEVWcW0LZDApOdVjj3p_aBBN1AGWFPCo9DO7s3lFwyK13Yem21D4v3g.duBRGNUSAmp52pA6gSDHtA.3BT1jFA4yKBKMk5JSZqP9JZWwZ3va0zxXVlnK5dGpcONBwrD-gjs3ezJQcwHBSRneDHjQFsBqpjYUypaUGumgL4PEWg2aNmWhM9SpKNMHlk.UX96Z_OBbZ1F5FTSJ3YEHg" + "discord": "854380469147140106" }, - "record": { + "records": { "CNAME": "zintaro.github.io" } } diff --git a/domains/furkancetinkaya.json b/domains/furkancetinkaya.json index 138c2b1a0..4b78bcba9 100644 --- a/domains/furkancetinkaya.json +++ b/domains/furkancetinkaya.json @@ -6,7 +6,7 @@ "email": "furkancetinkaya0746@gmail.com", "twitter": "honeybutdev" }, - "record": { + "records": { "CNAME": "furkancetinkaya-me.pages.dev" } } diff --git a/domains/furqan.json b/domains/furqan.json index 4391efa0b..1ed0ffc8b 100644 --- a/domains/furqan.json +++ b/domains/furqan.json @@ -3,7 +3,7 @@ "username": "rediffurqan", "email": "frqnlove8765@gmail.com" }, - "record": { + "records": { "CNAME": "phonesme.onrender.com" } } diff --git a/domains/furret.json b/domains/furret.json index 36d9a5a74..df17be37c 100644 --- a/domains/furret.json +++ b/domains/furret.json @@ -3,7 +3,7 @@ "username": "furretra1n", "email": "furret@transistorcafe.net" }, - "record": { + "records": { "CNAME": "walccdev.github.io" } } diff --git a/domains/furry.json b/domains/furry.json index 3c57d9efa..dc72b5261 100644 --- a/domains/furry.json +++ b/domains/furry.json @@ -4,7 +4,7 @@ "email": "faradey.iskra@mail.ru", "discord": "754721080383373373" }, - "record": { + "records": { "A": ["31.31.196.104"] } } diff --git a/domains/furryr.json b/domains/furryr.json new file mode 100644 index 000000000..8d8f138a3 --- /dev/null +++ b/domains/furryr.json @@ -0,0 +1,11 @@ +{ + "description": "Subdomain for furryr.github.io", + "repo": "https://github.com/FurryR/furryr.github.io", + "owner": { + "username": "FurryR", + "email": "awathefox@gmail.com" + }, + "records": { + "CNAME": "furryr.github.io" + } +} diff --git a/domains/furti.json b/domains/furti.json index b0ab23ef9..1d9589dd3 100644 --- a/domains/furti.json +++ b/domains/furti.json @@ -6,7 +6,7 @@ "email": "furtidev@proton.me", "twitter": "furtidev" }, - "record": { + "records": { "CNAME": "furtidev.github.io" } } diff --git a/domains/furycraft.json b/domains/furycraft.json deleted file mode 100644 index f1bb6919e..000000000 --- a/domains/furycraft.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/fusoras.json b/domains/fusoras.json new file mode 100644 index 000000000..633693b05 --- /dev/null +++ b/domains/fusoras.json @@ -0,0 +1,11 @@ +{ + "description": "Porfolio website", + "repo": "https://github.com/FuSoraS/portfolio", + "owner": { + "username": "FuSoraS", + "email": "developer.FuSoraS@gmail.com" + }, + "records": { + "CNAME": "fusoras.github.io" + } +} diff --git a/domains/fxrysh.json b/domains/fxrysh.json index 5da977b18..61d2d4058 100644 --- a/domains/fxrysh.json +++ b/domains/fxrysh.json @@ -7,7 +7,7 @@ "twitter": "fxryshdev", "email": "hello@farish.is-a.dev" }, - "record": { + "records": { "CNAME": "86872205c14179c98afa1392.cname.deno.dev" } } diff --git a/domains/fy.json b/domains/fy.json index d8485c6a8..47ae62409 100644 --- a/domains/fy.json +++ b/domains/fy.json @@ -3,7 +3,7 @@ "username": "bestzwei", "email": "post@zwei.de.eu.org" }, - "record": { + "records": { "CNAME": "libretranslator.pages.dev" } } diff --git a/domains/fyiimysf.json b/domains/fyiimysf.json new file mode 100644 index 000000000..493638984 --- /dev/null +++ b/domains/fyiimysf.json @@ -0,0 +1,10 @@ +{ + "description": "A personal portfolio Site", + "owner": { + "username": "fyiimysf", + "email": "m.y5f.mohammad@gmail.com" + }, + "records": { + "CNAME": "fyiimysf.pages.dev" + } +} diff --git a/domains/fynnlukah.json b/domains/fynnlukah.json new file mode 100644 index 000000000..64072fe9e --- /dev/null +++ b/domains/fynnlukah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fynnlukah", + "discord": "727590288209608824" + }, + "records": { + "CNAME": "fynnlukah.vercel.app" + } +} diff --git a/domains/fyz.json b/domains/fyz.json index 7ba39f60a..7e8adf21c 100644 --- a/domains/fyz.json +++ b/domains/fyz.json @@ -3,7 +3,7 @@ "username": "w8fyz", "email": "fyzdesignyt@gmail.com" }, - "record": { + "records": { "CNAME": "fyz.sh" } } diff --git a/domains/g-pratik.json b/domains/g-pratik.json index 1c184ca95..a69f92db7 100644 --- a/domains/g-pratik.json +++ b/domains/g-pratik.json @@ -4,7 +4,7 @@ "owner": { "username": "g-pratik" }, - "record": { + "records": { "CNAME": "g-pratik.github.io" } } diff --git a/domains/g.6.json b/domains/g.6.json index ff9db082d..0a99c65f1 100644 --- a/domains/g.6.json +++ b/domains/g.6.json @@ -3,7 +3,7 @@ "username": "shockbs", "email": "apipherng@gmail.com" }, - "record": { + "records": { "URL": "https://gg.shockbs.is-a.dev/" } } diff --git a/domains/g.json b/domains/g.json index 334b3759f..373aee1dd 100644 --- a/domains/g.json +++ b/domains/g.json @@ -5,7 +5,7 @@ "email": "nerop455@gmail.com", "discord": "gizzyowo" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/gab.json b/domains/gab.json index 4583612bd..a20af66fc 100644 --- a/domains/gab.json +++ b/domains/gab.json @@ -4,7 +4,7 @@ "username": "hase0278", "email": "betterhalf278@gmail.com" }, - "record": { + "records": { "CNAME": "developer-portfolio-2qp.pages.dev" } } diff --git a/domains/gabolemus.json b/domains/gabolemus.json index e03a56de4..dec2386f1 100644 --- a/domains/gabolemus.json +++ b/domains/gabolemus.json @@ -5,7 +5,7 @@ "username": "gabolemus", "email": "glemus.stuart@gmail.com" }, - "record": { + "records": { "CNAME": "gabolemus.github.io" } } diff --git a/domains/gabriel-iturre.json b/domains/gabriel-iturre.json new file mode 100644 index 000000000..40fcbc5ce --- /dev/null +++ b/domains/gabriel-iturre.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GabrielIturreCs", + "email": "gabriel13iturre@gmail.com" + }, + "records": { + "CNAME": "gabrieliturre.netlify.app" + } +} diff --git a/domains/gabriela.json b/domains/gabriela.json index ec755f4d5..d2d419271 100644 --- a/domains/gabriela.json +++ b/domains/gabriela.json @@ -3,7 +3,7 @@ "username": "gabriela4152", "email": "gabriela4152@gmail.com" }, - "record": { + "records": { "CNAME": "gabriela4152.github.io" } } diff --git a/domains/gabrielhuertas.json b/domains/gabrielhuertas.json new file mode 100644 index 000000000..0224d9f6c --- /dev/null +++ b/domains/gabrielhuertas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GuDex-Dev", + "email": "gabriel.huertas.3012@gmail.com" + }, + "records": { + "CNAME": "gudex-dev.github.io" + } +} diff --git a/domains/gabrigode.json b/domains/gabrigode.json index a01597d58..004c65af4 100644 --- a/domains/gabrigode.json +++ b/domains/gabrigode.json @@ -1,10 +1,9 @@ { "owner": { "username": "gabrigode", - "discord": "368920323808034816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.rlXCntE-RbS7-N1gSETyncs-hRDIJnsaS_BkbzFjW7qS94B4wt34p7EwUyiaeemwbW3EnQVD-z-PXQoxKI2dLZQhJR2LLbuK1aWG1sQZREOT5J_DcjuY1HXpcsnD_zu_s0uZ7Pfs_b5OMrrqTyUB0hEmR72J7Qg4XNFsy5-ges6EboFzHeXYxolBo-g7nsdPgvcw6EVJdoaCvl0OvNMoIfxyOf1GkeEBAXxAfutsWLLYp4U7HN1a6AkOSPLVkgIwHgi8lGIHWJjYqgjfZd8nRTIe_4d9pOJJVlKVfPp9i8fsl1oysFEVefiU_Xx6AlfXSm2UZcbmMwRq3ItzMxqviA.Zpx8XSXQNPjcWVDZNJuH2Q.LrGHXkueDq4PQp_ptTfE7-2dnJUJ5P86ny7dQkSu4qApFr-X32Sxm5wAG7zbOH_bVakgYvL-Va-5sKS5UHIbU0Ne5rK4CvJ0HxEzLDG8fpA.ilZ6z0z2oCEI7yP2cHdVOQ" + "discord": "368920323808034816" }, - "record": { + "records": { "URL": "https://github.com/gabrigode" } } diff --git a/domains/gachugu.json b/domains/gachugu.json index e6d9b89ec..6fcf3fcb0 100644 --- a/domains/gachugu.json +++ b/domains/gachugu.json @@ -3,7 +3,7 @@ "username": "BryanGachugu", "email": "gachugusville@gmail.com" }, - "record": { + "records": { "CNAME": "bryangachugu.github.io" } } diff --git a/domains/gaetan.json b/domains/gaetan.json index 4f026dfc8..fb9b22f7e 100644 --- a/domains/gaetan.json +++ b/domains/gaetan.json @@ -4,7 +4,7 @@ "username": "ghrlt", "email": "gaetan@ghr.lt" }, - "record": { + "records": { "URL": "https://ghr.lt" } } diff --git a/domains/gala.json b/domains/gala.json index c64f8dea0..1a3df4c9b 100644 --- a/domains/gala.json +++ b/domains/gala.json @@ -3,7 +3,7 @@ "username": "p0lygun", "email": "solankivibhakar82@gmail.com" }, - "record": { + "records": { "URL": "https://stilllearning.tech" } } diff --git a/domains/galabra.json b/domains/galabra.json new file mode 100644 index 000000000..0a41ff8d5 --- /dev/null +++ b/domains/galabra.json @@ -0,0 +1,10 @@ +{ + "description": "I'm a dev.", + "owner": { + "username": "galabra", + "email": "galabra.dev@gmail.com" + }, + "records": { + "URL": "https://github.com/galabra" + } +} diff --git a/domains/galacyber.json b/domains/galacyber.json index 575ce110a..4a47db644 100644 --- a/domains/galacyber.json +++ b/domains/galacyber.json @@ -5,7 +5,7 @@ "username": "MGalaCyber", "discord": "GalaXd#9165" }, - "record": { + "records": { "CNAME": "mgalacyber.github.io" } } diff --git a/domains/galihrhgnwn.json b/domains/galihrhgnwn.json index b536f1e89..a8c74f6c6 100644 --- a/domains/galihrhgnwn.json +++ b/domains/galihrhgnwn.json @@ -1,10 +1,9 @@ { "owner": { "username": "pluzels", - "discord": "1140780096085573734", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NsIGpomjuC_O3qhqmYjKNy-71OclB57zxOROYzSgvAgHRk_WNpPE7JQ2xD4ZKof8bsgwP-6-EMkusnjLAl7PToEz7rjwPwSid3ieNY4GOxV14N6NSGEeGMSTzJdWeYUImb5ZMQJHhkWzWNpg6VS1_c9_MaCAKNEQckbMx-iHpFl9fL3WRFUx_Gj76l3jo5u5iKFAOOdd6Ml3TLI16b2vJGUe8BOZDMv4_kizCEoT8EnIRHs-ssP3m5ek87Sig8LtrsKjnRuovwAVjBWv1OJFXGILrMlW_9amFOYzteseOcQU2eY0Ct8P3_Kh2R3lBnJlOLfwuYL0bX4VU2AILhLiOQ.XRllPfaz3ooYGle8DOtrQA.LzYHqyM1tCL0rn-6XpbJ77ER57elr2XpjjLyFFRLdkLO2d8Jh5T4iv7mHEQEZI5L3syxdQT6TpJXu3cNrR-3O1B3cmJpL9BjfOVTnbMgv2Y.9Y1ZB9k4eS5nCaeiui5TpQ" + "discord": "1140780096085573734" }, - "record": { + "records": { "CNAME": "cname.vercel-dns.com" } } diff --git a/domains/gallery.areen.json b/domains/gallery.areen.json new file mode 100644 index 000000000..9d35f6980 --- /dev/null +++ b/domains/gallery.areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areen-c@proton.me" + }, + "records": { + "CNAME": "gallery-cli.pages.dev" + } +} diff --git a/domains/galvanized-square-steel-with-aluminium-frame.json b/domains/galvanized-square-steel-with-aluminium-frame.json index 21dc683d1..884571634 100644 --- a/domains/galvanized-square-steel-with-aluminium-frame.json +++ b/domains/galvanized-square-steel-with-aluminium-frame.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "galvanized-square-steel-with-aluminium-frame.pages.dev" } } diff --git a/domains/gamer.json b/domains/gamer.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/gamer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/gameroman.json b/domains/gameroman.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/gameroman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/gamersindo.json b/domains/gamersindo.json index 62cc3414c..6df17fd4a 100644 --- a/domains/gamersindo.json +++ b/domains/gamersindo.json @@ -4,7 +4,7 @@ "username": "gamersindo1223", "email": "mrgamers11223@gmail.com" }, - "record": { + "records": { "CNAME": "my-portofolio-ek3.pages.dev" } } diff --git a/domains/games.bob16077.json b/domains/games.bob16077.json index 9f7c0b368..ecd99d5c0 100644 --- a/domains/games.bob16077.json +++ b/domains/games.bob16077.json @@ -3,7 +3,7 @@ "username": "bob16077", "discord": "bob16077777" }, - "record": { + "records": { "CNAME": "bob16077.github.io" } } diff --git a/domains/tictactoe.json b/domains/games.json similarity index 88% rename from domains/tictactoe.json rename to domains/games.json index 6e1582f7e..50b86cfe2 100644 --- a/domains/tictactoe.json +++ b/domains/games.json @@ -3,7 +3,7 @@ "username": "Ciao287", "discord": "687333016921440317" }, - "record": { + "records": { "A": ["144.91.115.195"] } } diff --git a/domains/gameserver.ardaninho.json b/domains/gameserver.ardaninho.json index 8a15ba39f..1245d5d29 100644 --- a/domains/gameserver.ardaninho.json +++ b/domains/gameserver.ardaninho.json @@ -1,10 +1,9 @@ { "owner": { "username": "Ardaninho", - "discord": "639439553698201626", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.bjiGBnBlH6rh_Xn9iKTzopCYh2l24YpNo0ifUSGYXgIAJXCIEPyvNyLwMUyKfiAlde_A3R_Ay15qbYfSrp5KyqhPVAFSAivpjEE7TnmtiTa0eCU6zOgpgn34Bsmh7HtFKLxrXq09q2nWGshiPx8w_ZWIGQCQh0lwUtUEG7u-c-9AEFWtEXqAWg5r_U3nN8oYiAKcCOrMv0mXusxmQPNkDRdtZuVUgFVKMe66Jfuy3zxeOuKqBSMpmuZ8XrUswXQa5xMm_byIJMio4ne4_p9y7paMf2ij0VddFXFoKZbsceexTGtgttTKP4mBmbxCd5KvnjGfzsKXHx-6c9b7bbE9ZQ.eF6d3Ot94wEgFJVQyPcJ7A.i7yqrXYM9SzUXcsqbOEU1dzpczVgutM7NJZUGqZyO4iHmaE8ELWT-eNsu1En2AzoL8sPU5uLpBHXAoAcpXXWuQOraq9jWcgHvfC9Ayj2JSk.RZwVl5IxtKwHTVtYVwqjvg" + "discord": "639439553698201626" }, - "record": { + "records": { "A": ["207.244.199.139"] } } diff --git a/domains/gamil.json b/domains/gamil.json new file mode 100644 index 000000000..a42282bde --- /dev/null +++ b/domains/gamil.json @@ -0,0 +1,11 @@ +{ + "description": "Gamil's Portfolio", + "repo": "https://github.com/gamilmohamed/gamilmohamed.github.io", + "owner": { + "username": "gamilmohamed", + "email": "mohamed.gamil@outlook.fr" + }, + "records": { + "CNAME": "gamilmohamed.github.io" + } +} diff --git a/domains/gamingboots.json b/domains/gamingboots.json index 7cefa2149..c035deb98 100644 --- a/domains/gamingboots.json +++ b/domains/gamingboots.json @@ -5,7 +5,7 @@ "username": "gamingboots", "email": "gamngboots19@gmail.com" }, - "record": { + "records": { "CNAME": "gamingboots.github.io" } } diff --git a/domains/ganesh-g.json b/domains/ganesh-g.json new file mode 100644 index 000000000..6318e6256 --- /dev/null +++ b/domains/ganesh-g.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ganesh76", + "email": "ganesh.g.cse@gmail.com" + }, + "records": { + "CNAME": "ganesh76.github.io" + } +} diff --git a/domains/ganesh.json b/domains/ganesh.json index 34fbaf874..5aa9d741f 100644 --- a/domains/ganesh.json +++ b/domains/ganesh.json @@ -5,7 +5,7 @@ "username": "iamganeshsekhar", "email": "ganeshsekha6@gmail.com" }, - "record": { + "records": { "CNAME": "iamganeshsekhar.github.io" } } diff --git a/domains/ganeswarv.json b/domains/ganeswarv.json new file mode 100644 index 000000000..6ff2d7029 --- /dev/null +++ b/domains/ganeswarv.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/ganeswar-velvadapu/portfolio", + "description": "My Portfolio Webiste", + "owner": { + "username": "ganeswar-velvadapu", + "email": "ganeshvelvadapu@gmail.com" + }, + "records": { + "CNAME": "portfolio-tau-mauve-63.vercel.app" + } +} diff --git a/domains/ganyu.json b/domains/ganyu.json index f731f2f90..a7a42e46a 100644 --- a/domains/ganyu.json +++ b/domains/ganyu.json @@ -3,7 +3,7 @@ "username": "emikohoshi", "email": "hoangyencb1303@gmail.com" }, - "record": { + "records": { "CNAME": "emikohoshi.github.io" } } diff --git a/domains/garvit.json b/domains/garvit.json new file mode 100644 index 000000000..f9e9f35aa --- /dev/null +++ b/domains/garvit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "garvit-arora", + "email": "garvit.university@gmail.com" + }, + "records": { + "CNAME": "garvit-arora.github.io" + } +} diff --git a/domains/gary.json b/domains/gary.json index 7947054c1..d26fedfb9 100644 --- a/domains/gary.json +++ b/domains/gary.json @@ -5,7 +5,7 @@ "username": "zach11111", "email": "contact@garybot.dev" }, - "record": { - "URL": "https://garylovesclimbingtreesexploringplacesandchasingbutterflies.garythecatisanadorablefelinealwaysseekingfunandadventure.site" + "records": { + "CNAME": "garylovesclimbingtreesexploringplacesandchasingbutterflies.garythecatisanadorablefelinealwaysseekingfunandadventure.site" } } diff --git a/domains/gassayping.json b/domains/gassayping.json index f83e483bd..cec0d43a6 100644 --- a/domains/gassayping.json +++ b/domains/gassayping.json @@ -3,7 +3,7 @@ "username": "gassayping", "email": "Dev_Gassayping@proton.me" }, - "record": { + "records": { "CNAME": "gassayping.github.io" } } diff --git a/domains/gattinhosbot.json b/domains/gattinhosbot.json index 325d89df2..ba517e94a 100644 --- a/domains/gattinhosbot.json +++ b/domains/gattinhosbot.json @@ -2,10 +2,9 @@ "owner": { "username": "Stef-00012", "discord": "694986201739952229", - "github_id": 81536172, - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "github_id": 81536172 }, - "record": { + "records": { "A": ["173.208.244.6"], "MX": ["mail.stefdp.lol"], "TXT": ["v=spf1 mx ~all"] diff --git a/domains/gaurav.json b/domains/gaurav.json index 380a7756a..bfe559ba8 100644 --- a/domains/gaurav.json +++ b/domains/gaurav.json @@ -5,7 +5,7 @@ "username": "tewarig", "email": "gauravtewari111@gmail.com" }, - "record": { + "records": { "CNAME": "tewarig.github.io" } } diff --git a/domains/gauravguptaa.json b/domains/gauravguptaa.json index 2bf6ebe5f..81c2cc97e 100644 --- a/domains/gauravguptaa.json +++ b/domains/gauravguptaa.json @@ -3,7 +3,7 @@ "username": "gauravgupta256", "email": "gauravgupta8652@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-gaurav.onrender.com" } } diff --git a/domains/gauravkulkarni.json b/domains/gauravkulkarni.json index 976bd243e..fab2591ff 100644 --- a/domains/gauravkulkarni.json +++ b/domains/gauravkulkarni.json @@ -3,7 +3,7 @@ "username": "gkulk007", "email": "gaurav.kulkarni@mescoeorg.onmicrosoft.com" }, - "record": { + "records": { "CNAME": "gkulk007.github.io" } } diff --git a/domains/gauravsingh.json b/domains/gauravsingh.json new file mode 100644 index 000000000..58a1f5da3 --- /dev/null +++ b/domains/gauravsingh.json @@ -0,0 +1,11 @@ +{ + "description": "Using it to point to my Portfolio on GitHub Pages", + "repo": "https://github.com/knowgaurav/knowgaurav.github.io", + "owner": { + "username": "knowgaurav", + "email": "qj1b83fmt@mozmail.com" + }, + "records": { + "CNAME": "knowgaurav.github.io" + } +} diff --git a/domains/gautham.json b/domains/gautham.json index c92fc406a..dfe4bc057 100644 --- a/domains/gautham.json +++ b/domains/gautham.json @@ -3,7 +3,7 @@ "username": "inkilu", "email": "gauthamgkm@gmail.com" }, - "record": { + "records": { "CNAME": "inkilu.is-a.dev" } } diff --git a/domains/gavin.json b/domains/gavin.json index 900d0c4a0..4baf595ac 100644 --- a/domains/gavin.json +++ b/domains/gavin.json @@ -7,7 +7,7 @@ "email_work": "chee.gavin@gmail.com", "discord": "gavin#5968" }, - "record": { + "records": { "CNAME": "gavinferdinandchee.github.io" } } diff --git a/domains/gavingogaming.json b/domains/gavingogaming.json index 196cc8bec..000dd7eba 100644 --- a/domains/gavingogaming.json +++ b/domains/gavingogaming.json @@ -3,7 +3,7 @@ "username": "GavinGoGaming", "email": "gavingogaming@gmail.com" }, - "record": { + "records": { "CNAME": "gavingogaming.github.io" } } diff --git a/domains/gavrielsatrio.json b/domains/gavrielsatrio.json index 09b6e0234..2d7ea24f9 100644 --- a/domains/gavrielsatrio.json +++ b/domains/gavrielsatrio.json @@ -5,7 +5,7 @@ "username": "gavrielsatrio", "email": "gavriel228@gmail.com" }, - "record": { + "records": { "CNAME": "gavrielsatrio.github.io" } } diff --git a/domains/gb.json b/domains/gb.json new file mode 100644 index 000000000..90111fe34 --- /dev/null +++ b/domains/gb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gbijwe", + "email": "gaurav.a.bijwe@gmail.com" + }, + "records": { + "CNAME": "my-portfolio-swart-eight.vercel.app" + } +} diff --git a/domains/gbot.json b/domains/gbot.json index 27a0a7b0e..d5dddbff3 100644 --- a/domains/gbot.json +++ b/domains/gbot.json @@ -1,15 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/gc.json b/domains/gc.json new file mode 100644 index 000000000..d024c2ed0 --- /dev/null +++ b/domains/gc.json @@ -0,0 +1,10 @@ +{ + "description": "gc.is-a.dev", + "owner": { + "username": "gcjbr", + "email": "gcaetanoj@gmail.com" + }, + "records": { + "URL": "https://gcj.io" + } +} diff --git a/domains/gcet.aaqif.json b/domains/gcet.aaqif.json new file mode 100644 index 000000000..0a3f6637d --- /dev/null +++ b/domains/gcet.aaqif.json @@ -0,0 +1,11 @@ +{ + "description": "gcet project", + "repo": "https://github.com/aaqifshafi/G-CET", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "records": { + "CNAME": "g-cet-aaqifshafis-projects.vercel.app" + } +} diff --git a/domains/gd.anw.json b/domains/gd.anw.json new file mode 100644 index 000000000..a5f7617cc --- /dev/null +++ b/domains/gd.anw.json @@ -0,0 +1,10 @@ +{ + "description": "ANW's (Subhrajit Sain) Personal Site", + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "records": { + "URL": "https://drive.google.com/drive/folders/1xmqavhZ9VrdE1zK37WbLRKogJiQk499y?usp=drive_link" + } +} diff --git a/domains/gdbotlist.json b/domains/gdbotlist.json index d0ca499b2..ecc26a5f2 100644 --- a/domains/gdbotlist.json +++ b/domains/gdbotlist.json @@ -3,7 +3,7 @@ "username": "coolsausage45", "email": "hakekr27@gmail.com" }, - "record": { + "records": { "CNAME": "coolsausage45.github.io" } } diff --git a/domains/gee.json b/domains/gee.json index cc38849dd..926774028 100644 --- a/domains/gee.json +++ b/domains/gee.json @@ -3,7 +3,7 @@ "username": "geedoes", "email": "captg1@gmail.com" }, - "record": { + "records": { "A": ["207.211.187.18"] } } diff --git a/domains/geenzo.json b/domains/geenzo.json index b873b54ff..7d7dad298 100644 --- a/domains/geenzo.json +++ b/domains/geenzo.json @@ -3,7 +3,7 @@ "username": "geenzo69", "email": "geenzogamer164@gmail.com" }, - "record": { + "records": { "CNAME": "server.geenzo.eu.org" } } diff --git a/domains/gen1x.json b/domains/gen1x.json index 44a6243f4..5c9f58a04 100644 --- a/domains/gen1x.json +++ b/domains/gen1x.json @@ -3,7 +3,7 @@ "username": "Gen1x-ALT", "email": "theg1nx@hotmail.com" }, - "record": { + "records": { "CNAME": "gen1x-alt.github.io" } } diff --git a/domains/generic.json b/domains/generic.json index 0ff8ccaf6..5b7a7a19f 100644 --- a/domains/generic.json +++ b/domains/generic.json @@ -1,11 +1,9 @@ { "owner": { "username": "xgeneric", - "email": "", - "discord": "1194494419064328296", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pNI-ARrj3J_tLM7pZiRwu1pfmk-Q3DwQqCqxWO02M876wVSFVYCtmViotPvUkXbGD6fungda4WYZn9FbbIFMroM6lyRd5facNKDKej8YSmA4vHrk82WnwOjIOgJZVvG1KBZ-a8-WJaBMTFTnA5HcDdIPKalVi8WuEBZ0aX5oePC_OmMgL8dfo8sc_Yh6iH_cQQsHyqTmEqaFIZdnchM3zqP5SztLpMqx7J-t65lJmSVdvlVIyCOVGGtnSu6p-mqsRqJ0_GTaxZq13p33OlN2H-aHiYLhuUNq1PNAMVMjBHvLwKx53QPYHkWH_49PYOAofaB5Qu4FQehMfMeEDPJY3w.qTLCxzxvVwoOjhI2BRDjcQ.fknkRF_e0XxYo2aGLv16XqzezYSUJAsZEV1IvnuErIAUeo5iEOL_6tjx67aBPV7GaJ-bulYZxzfcm7w8t2fd3dj4YWle3bpexZZ25GhR9RtlbCvQ1MybtvMWt9kMjbIM.AYS1UwZHLOklvLllhjQpLA" + "discord": "1194494419064328296" }, - "record": { + "records": { "CNAME": "xgeneric.github.io" } } diff --git a/domains/generic2.json b/domains/generic2.json index caffa15be..6962dd983 100644 --- a/domains/generic2.json +++ b/domains/generic2.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "xgeneric", - "discord": "1194494419064328296", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.MTsG19pQNdLCwl95D9NzxouR4mZ-7y2uRcBVVIqCc9Tal1P0D-Qt4JsDR7K-YJWNqRZpTx3-BZzMXweeteboVNF3fDlh06XENgnd2PoxjeGZzovR9sMqn4Ngl9dpGgYsmZgWf7rTjSzzePZx5h-GbTD5mI6ysxda0zrpR-cwjKVv92Lf6T0XTCwxH10DgAXZ_CtUrDq9Sn5pO-ONbUnnRgVDqBW9unD4qSCcKOAAJurGfYfLNX8qYZWfD-Hcs_wptS8fJpjpXIGkP_JF1qsj95pG0t4Bp7hhIXeXm1jmJm2-C-WQkKdZLdBDQ1gIsDhP0fLNfmSyyy532aIbR1FDqA.qX2TYd3WzaYOeAOktSXu5A.7ojhiDUioav23zhWk7sP9yLVAfNvOxL6bTAn78ILURWTwI5pEQWJloCfImCpjwGuoteHerCQNTJLRD8Vvhvd87X6YvbCiJqRPJp77J-VeJICLN5DAFlzeCNGUX4g8c_t.VThkX88tara8h8WKOXlreg" - }, - - "record": { - "CNAME": "paulswebhelp.com" - } - } - \ No newline at end of file + "owner": { + "username": "xgeneric", + "discord": "1194494419064328296" + }, + "records": { + "CNAME": "paulswebhelp.com" + } +} diff --git a/domains/genericx.json b/domains/genericx.json index 8650a831e..6962dd983 100644 --- a/domains/genericx.json +++ b/domains/genericx.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "xgeneric", - "discord": "1194494419064328296", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DNr2jxeR-0YVkAChAl4uPX31TrkGI4S8REI18sZvz4gGrL9c2LRtnnHlJfq0fMntFjAvLoD2lvb-kbjDq-INycXI0YHr-MG4YIvJmccyAmaxmtfhIqSWQc6EwMRar7mx0aE3NaOXJSKZQSpH86MVHqO4X9TZMGxkCfq9IAaXHmAVBazCNPFySzCY2jHo3LRmDFsJyTf0mWm_RwaYuPlS7__slgs2XQnWCYNP_kdMwENR7dDFVG9IjwSXQI-D12nyqquN_oM6WDg2ajfwMdbfd3aOpNkLOvAj-slpw81v2zccP040MrQJdTlN_LiMGFMqUPqNqev3lDwu-up8xDKIzQ.Fq8v4wlDvYQWahwdgcSXPQ.b_b4xs8S2pJNAPSPFJfZ6u5nMlNfAnxnm0UbH_LrqXCGIMX5ymm54wsnWFrymwp9OSqTbotZeYMFXWZlCouMxXOqrOmLHb58OJmsRZarQ0lqSOduCvFnonngL6gTpa1s.1o8XkyzrR4qKrVrinRJhzQ" - }, - - "record": { - "CNAME": "paulswebhelp.com" - } - } - \ No newline at end of file + "owner": { + "username": "xgeneric", + "discord": "1194494419064328296" + }, + "records": { + "CNAME": "paulswebhelp.com" + } +} diff --git a/domains/generix.json b/domains/generix.json index c0cb770ec..6962dd983 100644 --- a/domains/generix.json +++ b/domains/generix.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "xgeneric", - "discord": "1194494419064328296", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.TEnVT2QVvesNKLztHkI3jp-5JggHFHs0jLf93VH0_CT63TcEHlhkMGl6iE1iXGGfW4kjuOkyDfTgxYWHGfHGM9KJ3O57NCNxSPVcK_t-IrImmymmEXrxLKSnyI1QFxBiFpNO7mFIGy7xAWJSTkA5ZvGciR_tJRbB9ftAme5WYLKE7tPgfQxMHoGFE22Q1yKpK9lbCFoeFi0bLtbYRvvveBP78oqK4cMIRkVC6TKhFHo6wWorsJDlEGrVCYQ8-OEP2Y1pu1WkVLJ1Dd1E2OJcZcEn-QmTkfU7ar4U_2LlNTRmDnoXhQNt5O6xsh6savYjm1jzl_u_fZwlgVFgRV9_WA.hEaGKy3NTYfzyeqez2Y5KA.j0OHFUF5Pbr8c7dqb0X0GPIZL4y3gvGLf-BkXNMeWvUwVTfS2S5HD6RpnbDmpnhnwRbX4_fKcEMBLAwkf0Mv0cCUGk4yr9vu_kYH_s8as3q2_2cKJe8P-7wQCioS6lwn.Lv4G5WOkVnbHCssVDM_rww" - }, - - "record": { - "CNAME": "paulswebhelp.com" - } - } - \ No newline at end of file + "owner": { + "username": "xgeneric", + "discord": "1194494419064328296" + }, + "records": { + "CNAME": "paulswebhelp.com" + } +} diff --git a/domains/geopjr.json b/domains/geopjr.json index 0cabc342e..9ab1eb526 100644 --- a/domains/geopjr.json +++ b/domains/geopjr.json @@ -5,7 +5,7 @@ "username": "GeopJr", "email": "domains@geopjr.dev" }, - "record": { + "records": { "URL": "https://geopjr.dev" } } diff --git a/domains/george.json b/domains/george.json index 208f0ae5f..da434c65f 100644 --- a/domains/george.json +++ b/domains/george.json @@ -1,11 +1,10 @@ { "description": "George Aykara's personal developer website", - "repo": "https://github.com/aykarageorge", "owner": { "username": "aykarageorge", "email": "aykarageorge@gmail.com" }, - "record": { + "records": { "URL": "https://george.aykara4.com" } } diff --git a/domains/georgekaran.json b/domains/georgekaran.json index ae89517f2..e694b6ba3 100644 --- a/domains/georgekaran.json +++ b/domains/georgekaran.json @@ -1,11 +1,10 @@ { "description": "George Karan - Personal Page", - "repo": "https://github.com/georgekaran", "owner": { "username": "georgekaran", "email": "georgekaran12@gmail.com" }, - "record": { + "records": { "URL": "https://georgekaran.com" } } diff --git a/domains/geostatic.json b/domains/geostatic.json index 54e6db8d5..dd6cfc7a5 100644 --- a/domains/geostatic.json +++ b/domains/geostatic.json @@ -3,7 +3,7 @@ "username": "Jkingwalagam", "discord": "1100459863592685640" }, - "record": { + "records": { "CNAME": "geostatic-github-io.pages.dev" } } diff --git a/domains/geraldo.json b/domains/geraldo.json new file mode 100644 index 000000000..373ad0422 --- /dev/null +++ b/domains/geraldo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gerald0Juni0r", + "email": "geraldo.gj63@gmail.com" + }, + "records": { + "CNAME": "gerald0juni0r.github.io" + } +} diff --git a/domains/gerick.json b/domains/gerick.json index b49b49645..321954871 100644 --- a/domains/gerick.json +++ b/domains/gerick.json @@ -3,7 +3,7 @@ "username": "Gerickpogi17", "email": "gymatibag17@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-3a9.pages.dev" } } diff --git a/domains/germanfoxdev.json b/domains/germanfoxdev.json index 07433ce69..b2317ebf0 100644 --- a/domains/germanfoxdev.json +++ b/domains/germanfoxdev.json @@ -1,10 +1,9 @@ { "owner": { "username": "GermanFoxDev", - "discord": "1073620716152434830", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.GsPN4QZJZ53Om9rp-MBka8t2OeY-ev1xFBEei9DSRGEJDSVKR23x6xYuT4a1nfAhV0dgUi_WFIm-vGwF-oHkKEcGZo8nr-zH_hwR2HxnmfmBs6qUEKhpIeTQYx34Ws0B3n36aNk6odCO2Tz0LgtIr6bwq8WgAa985WD0_secI4WHCodhXMfAMZttW_kZT109B8iBq-3rjhjMWG1Xcix9mvUkbUREF17oIK0G70QlmEFvLOxp5rSg1SfHWZ251oOnIqfqrZ90_OHk9FVNDKex4OwCt7klesABNi0v8V7wWVhKlHgtojhdHY-oz87_YCz7orLcMpCxwmuCFJtLFEmlZw.IVb7t0DdLgHkH_YFU0vnyg.r9q1gsR3Uw33QGFExZZad6NNiyuO8YFEXPvX-OmhHw8TTVZkT9F0wUAJrSK7pGM3jf0-GnBlV6LTOcC-M20bdaOjTJK2ytnxRYG4Uk3pYOg.U6vvLC1-IjAWWDFFIKKAVA" + "discord": "1073620716152434830" }, - "record": { + "records": { "CNAME": "germanfoxdev.github.io" } } diff --git a/domains/getify.json b/domains/getify.json index ea9d18506..d4c37894d 100644 --- a/domains/getify.json +++ b/domains/getify.json @@ -3,7 +3,7 @@ "username": "getify", "email": "domains@dontsend.me" }, - "record": { + "records": { "URL": "https://me.getify.com" } } diff --git a/domains/gewalee.json b/domains/gewalee.json new file mode 100644 index 000000000..4066751c2 --- /dev/null +++ b/domains/gewalee.json @@ -0,0 +1,10 @@ +{ + "description": "Github Pages serving as an online resume site for gewaleelek", + "repo": "https://github.com/gewaleelek/gewaleelek.github.io", + "owner": { + "username": "gewaleelek" + }, + "records": { + "CNAME": "gewaleelek.github.io" + } +} diff --git a/domains/gg.6.json b/domains/gg.6.json index ff9db082d..0a99c65f1 100644 --- a/domains/gg.6.json +++ b/domains/gg.6.json @@ -3,7 +3,7 @@ "username": "shockbs", "email": "apipherng@gmail.com" }, - "record": { + "records": { "URL": "https://gg.shockbs.is-a.dev/" } } diff --git a/domains/gg.json b/domains/gg.json new file mode 100644 index 000000000..ad51cf2b7 --- /dev/null +++ b/domains/gg.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/i-m-Gaurav/Portfolio.git", + "owner": { + "username": "i-m-Gaurav", + "email": "indiagauravkumar@gmail.com" + }, + "records": { + "CNAME": "gaurav-self.vercel.app" + } +} diff --git a/domains/gg.shockbs.json b/domains/gg.shockbs.json index 42008293f..e94a264ad 100644 --- a/domains/gg.shockbs.json +++ b/domains/gg.shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "CNAME": "ziplineshockbs.onrender.com" }, "proxied": true diff --git a/domains/gh.anw.json b/domains/gh.anw.json new file mode 100644 index 000000000..2dd7c4769 --- /dev/null +++ b/domains/gh.anw.json @@ -0,0 +1,10 @@ +{ + "description": "ANW's (Subhrajit Sain) GitHub", + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "records": { + "URL": "https://github.com/SubhrajitSain" + } +} diff --git a/domains/ghex.json b/domains/ghex.json index 6642b98f8..eb8488bd8 100644 --- a/domains/ghex.json +++ b/domains/ghex.json @@ -6,7 +6,7 @@ "email": "ghextershumies@gmail.com", "twitter": "CortesGhexter" }, - "record": { + "records": { "CNAME": "ghextercortes.github.io" } } diff --git a/domains/ghost.json b/domains/ghost.json index b8a0d56b8..27a0e01b2 100644 --- a/domains/ghost.json +++ b/domains/ghost.json @@ -5,7 +5,7 @@ "twitter": "onlyspaceghost" }, "repo": "https://github.com/ghostdevv/website", - "record": { + "records": { "URL": "https://ghostdev.xyz" } } diff --git a/domains/ghostman.json b/domains/ghostman.json index e21c44a0f..2f49c0621 100644 --- a/domains/ghostman.json +++ b/domains/ghostman.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ghostMan-pac", - "email": "asifp3104@gmail.com" - }, - "record": { - "CNAME": "ghostMan-pac.github.io" - } + "owner": { + "username": "ghostMan-pac", + "email": "asifp3104@gmail.com" + }, + "records": { + "CNAME": "ghostMan-pac.github.io" + } } diff --git a/domains/ghozi.json b/domains/ghozi.json index 567104690..909889bad 100644 --- a/domains/ghozi.json +++ b/domains/ghozi.json @@ -3,7 +3,7 @@ "username": "m-ghozi", "email": "ghozi286@gmail.com" }, - "record": { + "records": { "CNAME": "m-ghozi.github.io" } } diff --git a/domains/ghsearch.json b/domains/ghsearch.json new file mode 100644 index 000000000..0bd42dec0 --- /dev/null +++ b/domains/ghsearch.json @@ -0,0 +1,11 @@ +{ + "description": "Aplicación web para buscar repositorios en GitHub por tema, utilizando la API de GitHub. Construida con HTML, CSS y JavaScript.", + "repo": "https://https://github.com/herwingx/awesome-github-search", + "owner": { + "username": "herwingx", + "email": "herwingmacias@gmail.com" + }, + "records": { + "CNAME": "herwingx.github.io" + } +} diff --git a/domains/giahuy.json b/domains/giahuy.json index 77b97d931..d8d9ea36b 100644 --- a/domains/giahuy.json +++ b/domains/giahuy.json @@ -6,7 +6,7 @@ "email": "hostbotfree@gmail.com", "discord": "1219514896778133594" }, - "record": { + "records": { "CNAME": "mtheintrude23.github.io" } } diff --git a/domains/gicorada.json b/domains/gicorada.json index e89abe60a..a6f75124f 100644 --- a/domains/gicorada.json +++ b/domains/gicorada.json @@ -1,10 +1,9 @@ { "owner": { "username": "gicorada", - "email": "51818710+gicorada@users.noreply.github.com", "discord": "607903753831448626" }, - "record": { + "records": { "CNAME": "gicorada.netlify.app" } } diff --git a/domains/gifflet.json b/domains/gifflet.json index 5d9bc73c3..4a9ade96d 100644 --- a/domains/gifflet.json +++ b/domains/gifflet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "gifflet", - "email": "guisousa09@hotmail.com" - }, - "record": { - "CNAME": "gifflet.github.io" - } + "owner": { + "username": "gifflet", + "email": "guisousa09@hotmail.com" + }, + "records": { + "CNAME": "gifflet.github.io" + } } diff --git a/domains/gilang.json b/domains/gilang.json index 9cfa123d6..f450958f1 100644 --- a/domains/gilang.json +++ b/domains/gilang.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "gilangportofolio", - "email": "gilang.portofolioo@gmail.com", - "description": "Personal Portfolio Website" - }, - "record": { - "CNAME": "gilangportofolio.github.io" - }, - "proxied": true + "owner": { + "username": "gilangportofolio", + "email": "gilang.portofolioo@gmail.com", + "description": "Personal Portfolio Website" + }, + "records": { + "CNAME": "gilangportofolio.github.io" + }, + "proxied": true } diff --git a/domains/gilmar-dave-gamboa.json b/domains/gilmar-dave-gamboa.json new file mode 100644 index 000000000..a51b84f4e --- /dev/null +++ b/domains/gilmar-dave-gamboa.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio", + "repo": "https://github.com/davegamboa99/my-portfolio", + "owner": { + "username": "davegamboa99", + "email": "davegamboa99@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/gin.json b/domains/gin.json index dc947f5a5..4084e5165 100644 --- a/domains/gin.json +++ b/domains/gin.json @@ -1,10 +1,10 @@ { - "repo": "https://minh0111.github.io/ginny/", - "owner": { - "username": "minh0111", - "email": "kisaver157@gmail.com" - }, - "record": { - "CNAME": "minh0111.github.io" - } + "repo": "https://minh0111.github.io/ginny/", + "owner": { + "username": "minh0111", + "email": "kisaver157@gmail.com" + }, + "records": { + "CNAME": "minh0111.github.io" + } } diff --git a/domains/gioco.json b/domains/gioco.json index 4aa120c8c..b9444d1ed 100644 --- a/domains/gioco.json +++ b/domains/gioco.json @@ -3,7 +3,7 @@ "username": "giocoliere", "email": "simcrigjeki@gmail.com" }, - "record": { + "records": { "CNAME": "giocoliere.github.io" } } diff --git a/domains/giovanni.json b/domains/giovanni.json index e86dabacc..bb3a032b5 100644 --- a/domains/giovanni.json +++ b/domains/giovanni.json @@ -7,7 +7,7 @@ }, "description": "is-a.dev subdomain for my personal blog", "repo": "https://github.com/ItachiSan/itachisan.github.io", - "record": { + "records": { "CNAME": "itachisan.github.io" } } diff --git a/domains/giovstechs.json b/domains/giovstechs.json index cbfae4fe9..225899eb3 100644 --- a/domains/giovstechs.json +++ b/domains/giovstechs.json @@ -5,7 +5,7 @@ "username": "giovstechs", "email": "me@gianstech.it" }, - "record": { + "records": { "URL": "https://links.gianstech.it" } } diff --git a/domains/girigummadi.json b/domains/girigummadi.json index 5b7229283..3ad552cb0 100644 --- a/domains/girigummadi.json +++ b/domains/girigummadi.json @@ -1,11 +1,10 @@ { "description": "My Personal Website", - "repo": "https://github.com/GiriGummadi", "owner": { "username": "GiriGummadi", "email": "girigummadi5656@gmail.com" }, - "record": { + "records": { "CNAME": "girigummadi.github.io" } } diff --git a/domains/girl.json b/domains/girl.json new file mode 100644 index 000000000..f790320b1 --- /dev/null +++ b/domains/girl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "records": { + "CNAME": "ukriu.pages.dev" + } +} diff --git a/domains/gitcat3.json b/domains/gitcat3.json index 7de93032d..efd99bf15 100644 --- a/domains/gitcat3.json +++ b/domains/gitcat3.json @@ -3,7 +3,7 @@ "username": "GitCat3", "email": "hulkbuster119@gmail.com" }, - "record": { + "records": { "CNAME": "gitcat3.github.io" } } diff --git a/domains/gitea.vinceale7082.json b/domains/gitea.vinceale7082.json index 717a9d3ea..71ad346ad 100644 --- a/domains/gitea.vinceale7082.json +++ b/domains/gitea.vinceale7082.json @@ -2,10 +2,9 @@ "owner": { "username": "VinceAle7082", "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + "discord": "1078447459900063816" }, - "record": { + "records": { "URL": "https://gitea.vinceale7082.com" } } diff --git a/domains/github.json b/domains/github.json deleted file mode 100644 index e2c8dec17..000000000 --- a/domains/github.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "zarqizoubir", - "email": "zarqi.ezzoubair@etu.uae.ac.ma" - }, - "record": { - "CNAME": "zarqizoubir.github.io" - } -} diff --git a/domains/githubmilind.json b/domains/githubmilind.json new file mode 100644 index 000000000..afaacb44d --- /dev/null +++ b/domains/githubmilind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "githubmilind", + "email": "pansare@gmail.com" + }, + "records": { + "CNAME": "githubmilind.github.io" + } +} diff --git a/domains/gitninja.json b/domains/gitninja.json index 787ed3d21..826ab4782 100644 --- a/domains/gitninja.json +++ b/domains/gitninja.json @@ -3,7 +3,7 @@ "username": "roktim32", "email": "roktimsenapoty2@gmail.com" }, - "record": { + "records": { "CNAME": "roktim32.github.io" } } diff --git a/domains/givinghawk.json b/domains/givinghawk.json index cee5d6e30..c9b77f3ba 100644 --- a/domains/givinghawk.json +++ b/domains/givinghawk.json @@ -3,7 +3,7 @@ "username": "givinghawk", "email": "contact@givinghawk.dev" }, - "record": { + "records": { "URL": "https://givinghawk.dev/" } } diff --git a/domains/gizmo.json b/domains/gizmo.json index cbb1ae980..1e588f40a 100644 --- a/domains/gizmo.json +++ b/domains/gizmo.json @@ -3,7 +3,7 @@ "username": "gizmo-dev", "twitter": "gizmo_gg" }, - "record": { + "records": { "CNAME": "gizmo-dev.github.io" } } diff --git a/domains/gizmora2.json b/domains/gizmora2.json index 4af138881..304a38e83 100644 --- a/domains/gizmora2.json +++ b/domains/gizmora2.json @@ -5,7 +5,7 @@ "username": "GizmoRA2", "email": "gizmora2@gmail.com" }, - "record": { + "records": { "A": ["125.236.202.192"], "MX": ["mx.nwh.nz"] } diff --git a/domains/gizzy.json b/domains/gizzy.json index e5d7b3f50..8900af9fe 100644 --- a/domains/gizzy.json +++ b/domains/gizzy.json @@ -5,13 +5,8 @@ "email": "nerop455@gmail.com", "discord": "gizzyowo" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "AAAA": [ "2606:50c0:8000::153", "2606:50c0:8001::153", diff --git a/domains/gkr.json b/domains/gkr.json index 71f25038f..daeda1517 100644 --- a/domains/gkr.json +++ b/domains/gkr.json @@ -3,7 +3,7 @@ "username": "gautamkrishnar", "email": "hello@gautamkrishnar.com" }, - "record": { + "records": { "CNAME": "gautamkrishnar.github.io" } } diff --git a/domains/gkucmierz.json b/domains/gkucmierz.json index 85339e1b2..f3b57b339 100644 --- a/domains/gkucmierz.json +++ b/domains/gkucmierz.json @@ -4,7 +4,7 @@ "username": "gkucmierz", "email": "gkucmierz@gmail.com" }, - "record": { + "records": { "URL": "https://dev.to/gkucmierz" } } diff --git a/domains/glitched-da-kitty-cat.json b/domains/glitched-da-kitty-cat.json new file mode 100644 index 000000000..e6f4c038d --- /dev/null +++ b/domains/glitched-da-kitty-cat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GlitchedDaKittyCatSchoolaccount", + "email": "glitcheddacat@gmail.com" + }, + "records": { + "CNAME": "glitched-da-kitty-cat.vercel.app" + } +} diff --git a/domains/glitchish.json b/domains/glitchish.json index 02740359a..a54cf8179 100644 --- a/domains/glitchish.json +++ b/domains/glitchish.json @@ -1,11 +1,10 @@ { "description": "Glitch's .IS-A.DEV domain", - "repo": "https://github.com/glitchish.github.io", "owner": { "username": "glitchish", "email": "gavinjstacey@gmail.com" }, - "record": { + "records": { "CNAME": "glitchish.github.io" } } diff --git a/domains/glmacedo.json b/domains/glmacedo.json index b0cbe51be..f5ccf0e1b 100644 --- a/domains/glmacedo.json +++ b/domains/glmacedo.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "glmacedo", - "email": "glmacedo@glmacedo.com" - }, - "record": { - "NS": [ - "dimitris.ns.cloudflare.com", - "kristin.ns.cloudflare.com" - ] - } -} \ No newline at end of file + "owner": { + "username": "glmacedo", + "email": "glmacedo@glmacedo.com" + }, + "records": { + "NS": ["dimitris.ns.cloudflare.com", "kristin.ns.cloudflare.com"] + } +} diff --git a/domains/glncy.json b/domains/glncy.json index e29a62a63..f9e771275 100644 --- a/domains/glncy.json +++ b/domains/glncy.json @@ -3,7 +3,7 @@ "username": "glncy", "email": "glency.a.tirao@gmail.com" }, - "record": { + "records": { "CNAME": "glncy.github.io" } } diff --git a/domains/glomdom.json b/domains/glomdom.json index d723af08f..d30682b46 100644 --- a/domains/glomdom.json +++ b/domains/glomdom.json @@ -5,7 +5,7 @@ "username": "glomdom", "email": "22115@uktc-bg.com" }, - "record": { + "records": { "CNAME": "glomdom.github.io" } } diff --git a/domains/glowbomb.json b/domains/glowbomb.json new file mode 100644 index 000000000..cd2cd2458 --- /dev/null +++ b/domains/glowbomb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "records": { + "URL": "https://glowbomb.esb.is-a.dev/" + } +} diff --git a/domains/glpzzz.json b/domains/glpzzz.json index f00ed5a64..fdb640630 100644 --- a/domains/glpzzz.json +++ b/domains/glpzzz.json @@ -5,7 +5,7 @@ "username": "glpzzz", "email": "glpz@daxslab.com" }, - "record": { + "records": { "CNAME": "glpzzz.github.io" } } diff --git a/domains/glutis.json b/domains/glutis.json index fc02a675f..426a45f92 100644 --- a/domains/glutis.json +++ b/domains/glutis.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "huyvu15", - "email": "huyv80313@gmail.com" - }, - "record": { - "CNAME": "huyvu15.github.io" - } + "owner": { + "username": "huyvu15", + "email": "huyv80313@gmail.com" + }, + "records": { + "CNAME": "huyvu15.github.io" + } } diff --git a/domains/glyphtones.json b/domains/glyphtones.json index b80cb23d6..7dc5955dd 100644 --- a/domains/glyphtones.json +++ b/domains/glyphtones.json @@ -1,16 +1,12 @@ { - "owner": { - "username": "firu115", - "email": "firu-glyphtones@proton.me" - }, - "record": { - "A": [ - "5.75.148.17" - ], - "AAAA": [ - "2a01:04f8:0c0c:947e:0000:0000:0000:0001" - ] - }, - "description": "Glyphtones is a website that I made for sharing Nothing Phone ringtones that feature glyph light effects. https://nothing.tech/", - "repo": "https://github.com/Firu115/nothing_glyphtones" + "owner": { + "username": "firu115", + "email": "firu-glyphtones@proton.me" + }, + "records": { + "A": ["5.75.148.17"], + "AAAA": ["2a01:04f8:0c0c:947e:0000:0000:0000:0001"] + }, + "description": "Glyphtones is a website that I made for sharing Nothing Phone ringtones that feature glyph light effects. https://nothing.tech/", + "repo": "https://github.com/Firu115/nothing_glyphtones" } diff --git a/domains/gmanthemarioguy.json b/domains/gmanthemarioguy.json new file mode 100644 index 000000000..86c2f739a --- /dev/null +++ b/domains/gmanthemarioguy.json @@ -0,0 +1,11 @@ +{ + "description": "This is to be used on my blog.", + "repo": "https://github.com/gmanthemarioguy/gmanthemarioguy.github.io", + "owner": { + "username": "gmanthemarioguy", + "email": "gman36147@gmail.com" + }, + "records": { + "CNAME": "gmanthemarioguy.github.io" + } +} diff --git a/domains/gnanaelisa.json b/domains/gnanaelisa.json index 87e0d2330..1f037d7a5 100644 --- a/domains/gnanaelisa.json +++ b/domains/gnanaelisa.json @@ -5,7 +5,7 @@ "username": "jgnanaelisa", "email": "gnanaelisa@gmail.com" }, - "record": { + "records": { "CNAME": "jgnanaelisa.github.io" } } diff --git a/domains/go.fran.json b/domains/go.fran.json index f7eb1fe3c..94434d978 100644 --- a/domains/go.fran.json +++ b/domains/go.fran.json @@ -3,7 +3,7 @@ "username": "xzonix", "email": "imahalojigi@gmail.com" }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/goddy.json b/domains/goddy.json new file mode 100644 index 000000000..fd5779381 --- /dev/null +++ b/domains/goddy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Owinogoddie", + "email": "owinogoddie@gmail.com" + }, + "records": { + "URL": "https://goddy-the-dev.vercel.app" + } +} diff --git a/domains/godkode.json b/domains/godkode.json new file mode 100644 index 000000000..eb575b9b0 --- /dev/null +++ b/domains/godkode.json @@ -0,0 +1,11 @@ +{ + "description": "Flex", + "repo": "https://github.com/GodKode69/GodKode69.github.io", + "owner": { + "username": "GodKode69", + "email": "knownasraghav@gmail.com" + }, + "records": { + "CNAME": "godkode69.github.io" + } +} diff --git a/domains/godwhite.json b/domains/godwhite.json index 253481fff..372412337 100644 --- a/domains/godwhite.json +++ b/domains/godwhite.json @@ -6,7 +6,7 @@ "email": "godwhite.yt.channel@gmail.com", "twitter": "GW_GodwhiteTW" }, - "record": { + "records": { "CNAME": "godwhitetaiwan.github.io" } } diff --git a/domains/godwhitelight.json b/domains/godwhitelight.json index 569633d9a..6518f440f 100644 --- a/domains/godwhitelight.json +++ b/domains/godwhitelight.json @@ -3,7 +3,7 @@ "username": "Godwhitelight", "email": "godwhitelight1@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/goel.json b/domains/goel.json index 52be8f609..18c82507c 100644 --- a/domains/goel.json +++ b/domains/goel.json @@ -5,7 +5,7 @@ "discord": "datpep" }, "description": "I'll probably put some project pages on goel.is-a.dev.", - "record": { + "records": { "CNAME": "radhesh.eu.org" } } diff --git a/domains/goguardian.json b/domains/goguardian.json index 34b3de2e1..5c5c834b8 100644 --- a/domains/goguardian.json +++ b/domains/goguardian.json @@ -4,7 +4,7 @@ "email": "golden_mooooooon@outlook.com", "discord": "1160256967504318576" }, - "record": { + "records": { "CNAME": "loooooooooooooooool.onrender.com" } } diff --git a/domains/gokay.json b/domains/gokay.json new file mode 100644 index 000000000..fafe08fbc --- /dev/null +++ b/domains/gokay.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for the use of gokay", + "repo": "https://github.com/gokay05/gokay05.github.io", + "owner": { + "username": "gokay05", + "email": "gyamankurt@gmail.com" + }, + "records": { + "CNAME": "gokay05.github.io" + } +} diff --git a/domains/gokcin.json b/domains/gokcin.json index 70f914718..d5b77af3b 100644 --- a/domains/gokcin.json +++ b/domains/gokcin.json @@ -3,7 +3,7 @@ "username": "gokcinosman", "email": "osmangokcinn@gmail.com" }, - "record": { + "records": { "CNAME": "gokcinosman.github.io" } } diff --git a/domains/gokulbarath.json b/domains/gokulbarath.json index 1157ce59d..0c95fd6bc 100644 --- a/domains/gokulbarath.json +++ b/domains/gokulbarath.json @@ -3,7 +3,7 @@ "username": "gokul6350", "email": "gokul00060@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-gokul6350s-projects.vercel.app" } } diff --git a/domains/golden.json b/domains/golden.json index 9104f07eb..a2ee06e27 100644 --- a/domains/golden.json +++ b/domains/golden.json @@ -6,7 +6,7 @@ "email": "ody.chryssos@gmail.com", "discord": "936320442594103307" }, - "record": { + "records": { "CNAME": "goldenboys2011.github.io" } } diff --git a/domains/golgrax.json b/domains/golgrax.json new file mode 100644 index 000000000..c0b67e9b9 --- /dev/null +++ b/domains/golgrax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Golgrax", + "twitter": "Golgrax" + }, + "records": { + "CNAME": "golgrax.pages.dev" + } +} diff --git a/domains/golvellius32.json b/domains/golvellius32.json new file mode 100644 index 000000000..586ad0358 --- /dev/null +++ b/domains/golvellius32.json @@ -0,0 +1,11 @@ +{ + "description": "Golvellius's website", + "repo": "https://github.com/golvellius32/skills-github-pages-public", + "owner": { + "username": "golvellius32", + "email": "golvellius@hotmail.com" + }, + "records": { + "CNAME": "golvellius32.github.io" + } +} diff --git a/domains/gongal.json b/domains/gongal.json new file mode 100644 index 000000000..4d9431cd6 --- /dev/null +++ b/domains/gongal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mayankgongal5", + "email": "mayank@clovers.live" + }, + "records": { + "CNAME": "clover-mayank-gongal.vercel.app" + } +} diff --git a/domains/gonpvp.json b/domains/gonpvp.json index 88da900d0..661b8876c 100644 --- a/domains/gonpvp.json +++ b/domains/gonpvp.json @@ -4,7 +4,7 @@ "username": "iammehdib", "email": "iammehdib@protonmail.com" }, - "record": { + "records": { "URL": "https://perpetual-fire-672.notion.site/Universal-Doc-GonPvP-eea1f497b07d4758a7daa4c044325378" } } diff --git a/domains/goobsoder.json b/domains/goobsoder.json index 91c1726e1..500813f12 100644 --- a/domains/goobsoder.json +++ b/domains/goobsoder.json @@ -3,7 +3,7 @@ "username": "BreadGhoti", "email": "breadghoti@gmail.com" }, - "record": { + "records": { "A": ["134.56.183.128"] } } diff --git a/domains/gooplancton.json b/domains/gooplancton.json index 51a939c92..a0966f85e 100644 --- a/domains/gooplancton.json +++ b/domains/gooplancton.json @@ -3,7 +3,7 @@ "username": "gooplancton", "email": "gooplancton@outlook.com" }, - "record": { + "records": { "A": ["93.93.117.164"] } } diff --git a/domains/gopal.json b/domains/gopal.json index a36908583..918befef2 100644 --- a/domains/gopal.json +++ b/domains/gopal.json @@ -5,7 +5,7 @@ "username": "gopal0gupta", "email": "k7523337@gmail.com" }, - "record": { + "records": { "CNAME": "gopal0gupta.github.io" } } diff --git a/domains/gorkem.json b/domains/gorkem.json index 5d6982cf8..9a7f022bf 100644 --- a/domains/gorkem.json +++ b/domains/gorkem.json @@ -5,7 +5,7 @@ "username": "gorkeem", "email": "gorkemy000@gmail.com" }, - "record": { + "records": { "CNAME": "gorkeem.github.io" } } diff --git a/domains/gourav.json b/domains/gourav.json index 9f8ab1955..eb421ca1b 100644 --- a/domains/gourav.json +++ b/domains/gourav.json @@ -6,7 +6,7 @@ "email": "herokugourav@gmail.com", "twitter": "gourav3609" }, - "record": { + "records": { "CNAME": "darkdevil3610.github.io" } } diff --git a/domains/goutam.json b/domains/goutam.json index d659147b1..68ea5cc5a 100644 --- a/domains/goutam.json +++ b/domains/goutam.json @@ -1,17 +1,10 @@ { - "owner": { - "username": "MatrixCoder0101" - }, - "record": { - "A": [ - "76.76.21.21" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] - } + "owner": { + "username": "MatrixCoder0101" + }, + "records": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } } diff --git a/domains/gouthamkrishnakv.json b/domains/gouthamkrishnakv.json index 9580e18ef..327c9a02c 100644 --- a/domains/gouthamkrishnakv.json +++ b/domains/gouthamkrishnakv.json @@ -3,7 +3,7 @@ "username": "gouthamkrishnakv", "email": "gauthamkrishna9991@live.com" }, - "record": { + "records": { "URL": "https://gouthamkrishnakv.pages.dev" } } diff --git a/domains/govind.json b/domains/govind.json index 7f49fe86a..f9b78565f 100644 --- a/domains/govind.json +++ b/domains/govind.json @@ -1,11 +1,10 @@ { "description": "Govind's personal developer website", - "repo": "https://github.com/govind-shenoy", "owner": { "username": "govind-shenoy", "email": "govindvshenoy@gmail.com" }, - "record": { + "records": { "CNAME": "govind-shenoy.github.io" } } diff --git a/domains/govinda.json b/domains/govinda.json index 4e1ad18ea..3d256ca81 100644 --- a/domains/govinda.json +++ b/domains/govinda.json @@ -5,7 +5,7 @@ "username": "gkhabas76", "email": "gkhabas76@gmail.com" }, - "record": { + "records": { "CNAME": "gkhabas76.github.io" } } diff --git a/domains/goyal.json b/domains/goyal.json index 5d64d8d7f..5e41152ad 100644 --- a/domains/goyal.json +++ b/domains/goyal.json @@ -5,7 +5,7 @@ "discord": "somegumtank" }, "description": "I'll probably put some project pages on goyal.is-a.dev.", - "record": { + "records": { "CNAME": "portfolio-4wd.pages.dev" } } diff --git a/domains/grafaffel.json b/domains/grafaffel.json index bc5332c78..c8749cc76 100644 --- a/domains/grafaffel.json +++ b/domains/grafaffel.json @@ -3,7 +3,7 @@ "username": "Grafaffel", "email": "jannis107@icloud.com" }, - "record": { + "records": { "CNAME": "grafaffel.github.io" } } diff --git a/domains/grantcards.json b/domains/grantcards.json index a38c663e5..32334fee7 100644 --- a/domains/grantcards.json +++ b/domains/grantcards.json @@ -3,7 +3,7 @@ "username": "calvgrant", "email": "alvinnobeltungga@gmail.com" }, - "record": { + "records": { "CNAME": "calvgrant.github.io" } } diff --git a/domains/graphica.json b/domains/graphica.json index db249ca4d..a2a6cb61b 100644 --- a/domains/graphica.json +++ b/domains/graphica.json @@ -3,7 +3,7 @@ "username": "booktastic1", "email": "booktastic-library@outlook.com" }, - "record": { + "records": { "URL": "https://btastic.wixsite.com/graphica" } } diff --git a/domains/graphicanow.json b/domains/graphicanow.json index db249ca4d..a2a6cb61b 100644 --- a/domains/graphicanow.json +++ b/domains/graphicanow.json @@ -3,7 +3,7 @@ "username": "booktastic1", "email": "booktastic-library@outlook.com" }, - "record": { + "records": { "URL": "https://btastic.wixsite.com/graphica" } } diff --git a/domains/gravy.json b/domains/gravy.json index 99cfb5d01..b92001623 100644 --- a/domains/gravy.json +++ b/domains/gravy.json @@ -4,7 +4,7 @@ "twitter": "thatgravyboat", "discord": "thatgravyboat#0001" }, - "record": { + "records": { "URL": "https://thatgravyboat.tech" } } diff --git a/domains/graxya.json b/domains/graxya.json new file mode 100644 index 000000000..e6aa5d56d --- /dev/null +++ b/domains/graxya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GratiaManullang03", + "email": "felixmanullang81@gmail.com" + }, + "records": { + "CNAME": "gratiaportofolio.vercel.app" + } +} diff --git a/domains/grazitukozaki.json b/domains/grazitukozaki.json new file mode 100644 index 000000000..8df445aac --- /dev/null +++ b/domains/grazitukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GrazielyTukozaki", + "email": "grazitukozaki@gmail.com" + }, + "records": { + "CNAME": "grazi-tukozaki-dev.vercel.app" + } +} diff --git a/domains/grif.json b/domains/grif.json index 09b7cfdee..f0bf65a40 100644 --- a/domains/grif.json +++ b/domains/grif.json @@ -5,7 +5,7 @@ "username": "GrifTheDev", "email": "tmjeteo3@gmail.com" }, - "record": { + "records": { "CNAME": "grifthedev.github.io" } } diff --git a/domains/griff.json b/domains/griff.json new file mode 100644 index 000000000..ec65f48be --- /dev/null +++ b/domains/griff.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio, blog and personal website", + "owner": { + "username": "gfargo", + "email": "ghfargo@gmail.com", + "twitter": "ghfargo" + }, + "records": { + "URL": "https://griffen.codes" + } +} diff --git a/domains/grishma-chhayani.json b/domains/grishma-chhayani.json index 3d280e5e0..f84fc984a 100644 --- a/domains/grishma-chhayani.json +++ b/domains/grishma-chhayani.json @@ -4,7 +4,7 @@ "owner": { "username": "grishma-chhayani" }, - "record": { + "records": { "CNAME": "grishma-chhayani.github.io" } } diff --git a/domains/grusio.json b/domains/grusio.json index c141bf374..4798298b5 100644 --- a/domains/grusio.json +++ b/domains/grusio.json @@ -3,7 +3,7 @@ "username": "mattiagrusio", "email": "mattiagrusio@gmail.com" }, - "record": { + "records": { "A": ["2.231.198.113"] } } diff --git a/domains/gs.json b/domains/gs.json index c2ff8bcbc..ee2e7830c 100644 --- a/domains/gs.json +++ b/domains/gs.json @@ -2,10 +2,9 @@ "owner": { "username": "Newfies", "twitter": "YeahItsGav", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fraa7gfMOqQqWmbk-4fE5_pNd2zEvQ1K5w53QIHDTtr1C_Wu2Pzw-GfOlhxAtr7Af5ZIj_p7F5OOp6PwDxlKBXGt13e5l3Z9CQlYRclhfnaeYQm_xetYFlf9ucsYXVTfjFAeXxybT-RxbBjRl3Z48tSQaAto3E3Y-SbqwHPhjqh7-4tCpRZu5yc38Bx0_RHt95Ib2Mcg4cWShE-2ggvygSsonBuYBRGFqMIhM60tMA-cbJdQpvfVdZTJv0vHOtUJltv3eVzPpi4q5S5lWz3EKizGXuwAq3HLFycrBVrt5pegWLi1gId-urV9HGV1L3myGfQQSGwDVCEew9YKQFj71A.bxACuA7jrws9Z7z0oTx4wQ.fzzUvSGM_6ODHxUwg6vQvfJeI2kmUx5DW_4tIGVjPOymDplL8iBjzb5HIHhLqo_PlkcmGxeNr5DH4glPZdn1Dq2ywNTV90hWqpjfoHSOsYk.O8IBPKTRGwaH43VBg1rK3A", "notes": "I'm occassionly on Twitter from time to time, hit me up if you need to talk to me, let me know your from is-a.dev" }, - "record": { + "records": { "URL": "https://href.li/https://github.com/GsLibrary", "TXT": "dh=0176bd21e2d276afe5ca0638c892a68a327dd5f9" } diff --git a/domains/gstudiosx.json b/domains/gstudiosx.json index 5a4f65eb0..b8df78af9 100644 --- a/domains/gstudiosx.json +++ b/domains/gstudiosx.json @@ -3,7 +3,7 @@ "username": "GStudiosX2", "email": "ramazanogutlu0@gmail.com" }, - "record": { + "records": { "URL": "https://discord.gg/dV2M2HsH3F" } } diff --git a/domains/gta.json b/domains/gta.json index d1ed02e1a..8a9ce6de4 100644 --- a/domains/gta.json +++ b/domains/gta.json @@ -4,7 +4,7 @@ "email": "wweziza@icloud.com", "discord": "363373226207739904" }, - "record": { + "records": { "CNAME": "clubroleplay.com" } } diff --git a/domains/gtvolk.json b/domains/gtvolk.json index 15e761097..fd1bf44d5 100644 --- a/domains/gtvolk.json +++ b/domains/gtvolk.json @@ -5,7 +5,7 @@ "username": "GTVolk", "email": "gtvolk31@gmail.com" }, - "record": { + "records": { "CNAME": "gtvolk.github.io" } } diff --git a/domains/gua.json b/domains/gua.json new file mode 100644 index 000000000..0823a7230 --- /dev/null +++ b/domains/gua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yywbadm", + "discord": "849563829213593612" + }, + "records": { + "CNAME": "yywbadm.github.io" + } +} diff --git a/domains/gudorlltti.json b/domains/gudorlltti.json index dd7fe6876..abdd71976 100644 --- a/domains/gudorlltti.json +++ b/domains/gudorlltti.json @@ -3,7 +3,7 @@ "username": "gudorlltti", "discord": "849610030431993916" }, - "record": { + "records": { "URL": "https://github.com/gudorlltti/" } } diff --git a/domains/guess-who.json b/domains/guess-who.json index fe125c21b..25153be85 100644 --- a/domains/guess-who.json +++ b/domains/guess-who.json @@ -3,7 +3,7 @@ "username": "Rayrsn", "email": "rayrsn@proton.me" }, - "record": { + "records": { "URL": "https://rayrsn.me/" } } diff --git a/domains/gui2.json b/domains/gui2.json new file mode 100644 index 000000000..7dfd34bbf --- /dev/null +++ b/domains/gui2.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gui2258", + "email": "guidotele@gmail.com" + }, + "records": { + "URL": "https://gui2dev.vercel.app" + } +} diff --git a/domains/guidocaru.json b/domains/guidocaru.json new file mode 100644 index 000000000..3809f08a9 --- /dev/null +++ b/domains/guidocaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "guidocaru", + "discord": "696554384817127486" + }, + "records": { + "CNAME": "guidocaru.vercel.app" + } +} diff --git a/domains/guillelm.json b/domains/guillelm.json new file mode 100644 index 000000000..7fc56c3e2 --- /dev/null +++ b/domains/guillelm.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Portfolio Tech Website...", + "repo": "https://github.com/guilleLM71/guillelm71.github.io", + "owner": { + "username": "guilleLM71", + "email": "jlauram3@fcpn.edu.bo" + }, + "records": { + "CNAME": "guillelm71.github.io" + }, + "proxied": true +} diff --git a/domains/guillelm71.json b/domains/guillelm71.json new file mode 100644 index 000000000..7fc56c3e2 --- /dev/null +++ b/domains/guillelm71.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Portfolio Tech Website...", + "repo": "https://github.com/guilleLM71/guillelm71.github.io", + "owner": { + "username": "guilleLM71", + "email": "jlauram3@fcpn.edu.bo" + }, + "records": { + "CNAME": "guillelm71.github.io" + }, + "proxied": true +} diff --git a/domains/gulsah.json b/domains/gulsah.json new file mode 100644 index 000000000..82c3537df --- /dev/null +++ b/domains/gulsah.json @@ -0,0 +1,11 @@ +{ + "description": "The portfolio site of Gülşah Düzgün", + "repo": "https://github.com/GulsahDuzgun/Portfolio", + "owner": { + "username": "GulsahDuzgun", + "email": "duzgun.gulsah27@gmail.com" + }, + "records": { + "CNAME": "gulsah.netlify.app" + } +} diff --git a/domains/gulu.json b/domains/gulu.json index e18b77ebc..9c9ad84f4 100644 --- a/domains/gulu.json +++ b/domains/gulu.json @@ -4,7 +4,7 @@ "email": "netqian@126.com", "discord": "899289192729817159" }, - "record": { + "records": { "A": ["35.212.239.31"] } } diff --git a/domains/gunethra.json b/domains/gunethra.json index aa7904eab..765206d54 100644 --- a/domains/gunethra.json +++ b/domains/gunethra.json @@ -3,7 +3,7 @@ "username": "Gunethra", "email": "gunethrarp1@gmail.com" }, - "record": { + "records": { "URL": "https://gunethra.github.io/" } } diff --git a/domains/gunman.json b/domains/gunman.json index a8d718913..7c68b44c3 100644 --- a/domains/gunman.json +++ b/domains/gunman.json @@ -4,7 +4,7 @@ "email": "mukundagrawal800@gmail.com", "discord": "1115658967012626542" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/guptagaurav.json b/domains/guptagaurav.json index 2bf6ebe5f..81c2cc97e 100644 --- a/domains/guptagaurav.json +++ b/domains/guptagaurav.json @@ -3,7 +3,7 @@ "username": "gauravgupta256", "email": "gauravgupta8652@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-gaurav.onrender.com" } } diff --git a/domains/guru.json b/domains/guru.json index 48356a928..0ea4782aa 100644 --- a/domains/guru.json +++ b/domains/guru.json @@ -3,7 +3,7 @@ "username": "Guru322", "email": "sahoogurucharan00@gmail.com" }, - "record": { + "records": { "CNAME": "guru322.github.io" } } diff --git a/domains/gustavo.json b/domains/gustavo.json index 189b181f2..44642b8a1 100644 --- a/domains/gustavo.json +++ b/domains/gustavo.json @@ -6,7 +6,7 @@ "email": "Gustavo.arsenio.sousa@hotmail.com", "twitter": "gustavoarsenio" }, - "record": { + "records": { "CNAME": "gustavoarsenio.github.io" } } diff --git a/domains/gustyff.json b/domains/gustyff.json new file mode 100644 index 000000000..8383ea93c --- /dev/null +++ b/domains/gustyff.json @@ -0,0 +1,11 @@ +{ + "description": "A personal developer portfolio", + "repo": "https://github.com/denisz-becskei/denisz-becskei.github.io", + "owner": { + "username": "denisz-becskei", + "email": "gustyff.the.dev@gmail.com" + }, + "records": { + "CNAME": "denisz-becskei.github.io" + } +} diff --git a/domains/gusza.json b/domains/gusza.json new file mode 100644 index 000000000..917275bc0 --- /dev/null +++ b/domains/gusza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gusza110811", + "email": "auguz1108@gmail.com" + }, + "records": { + "CNAME": "gusza110811.github.io" + } +} diff --git a/domains/guvent.json b/domains/guvent.json new file mode 100644 index 000000000..87bef6409 --- /dev/null +++ b/domains/guvent.json @@ -0,0 +1,11 @@ +{ + "description": "The portfolio site of Guven Topal", + "repo": "https://github.com/guvent/guvent", + "owner": { + "username": "guvent", + "email": "me@guvent.com" + }, + "records": { + "CNAME": "guvent.com" + } +} diff --git a/domains/gvl610.json b/domains/gvl610.json index 2f6b2715f..f1e7b0ec1 100644 --- a/domains/gvl610.json +++ b/domains/gvl610.json @@ -6,7 +6,7 @@ "email": "giangvinhloc610@gmail.com", "twitter": "gvl610" }, - "record": { + "records": { "CNAME": "giangvinhloc610.github.io" } } diff --git a/domains/gwada.json b/domains/gwada.json index 1a4a0cf7f..ef9e21d93 100644 --- a/domains/gwada.json +++ b/domains/gwada.json @@ -3,7 +3,7 @@ "username": "gwada", "email": "gwadagwada22@gmail.com" }, - "record": { + "records": { "URL": "https://gwada.netlify.app" } } diff --git a/domains/gwilym.json b/domains/gwilym.json index 6b8c5ab77..ef0c2d05c 100644 --- a/domains/gwilym.json +++ b/domains/gwilym.json @@ -3,7 +3,7 @@ "username": "Gwilymm", "email": "marin.davies@gmail.com" }, - "record": { + "records": { "A": ["31.207.36.249"] } } diff --git a/domains/gwly.json b/domains/gwly.json new file mode 100644 index 000000000..dfb2d2f6b --- /dev/null +++ b/domains/gwly.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "cyrilguocode" + }, + "records": { + "CNAME": "gwlyweb.pages.dev" + } +} diff --git a/domains/gxlpes.json b/domains/gxlpes.json index a7821d2bf..42c5aad2f 100644 --- a/domains/gxlpes.json +++ b/domains/gxlpes.json @@ -5,7 +5,7 @@ "username": "gxlpes", "email": "guilhermxlopes@gmail.com" }, - "record": { + "records": { "CNAME": "gxlpes.github.io" } } diff --git a/domains/h.jax.json b/domains/h.jax.json index cb8b2a27f..c759f32aa 100644 --- a/domains/h.jax.json +++ b/domains/h.jax.json @@ -1,8 +1,8 @@ { "owner": { - "username": "jxaq" + "username": "jxaq" }, - "record": { + "records": { "A": ["207.211.149.245"] }, "proxied": true diff --git a/domains/h.json b/domains/h.json index 6692a78a2..d3ef8f105 100644 --- a/domains/h.json +++ b/domains/h.json @@ -1,10 +1,9 @@ { "owner": { "username": "thaihwng", - "discord": "913402397588611162", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DlgVUxlDvBwmitiShjGH7v07E-3PzBajhoPLtMY8VqUFaK4Dlk-2Vtbf-prPmKLj26MR7TuyiPP6vG5HpBNhJmymmFs0p5h_PICI-OJqAtX4dJq1sESiK9Rpbt88vXkiXDMD0vUJWJajdGpGz__dwRawy6iINyMQVVtuKrD41m_VfV6uYn8I4OekB3M0C9Y3eEOVEd113MFO4uPdzYYqjT_6GWI0kE0ra9mOiN10qRytituc9TANADx_6STVZHl_6sMF7v11Ui2YcJctAlpajknKKpg1T9dY6OuR7KyTzFpbABsE3x-oHfQa8hGte-5zk8F2ZFlWgGNkj081uVJkmg.eQeHQqoJp2uT8vHXcOLtnA.Nh511lf5K9YkvaGfQKtKucwSpyp3Kb98w0vCylRd5u2gvW3QcUVxGwLyHmLnCHEAAqrSVvtj2PZAUPN06Fhx9CTzIKmHIBS7B3XMQodjiDM.hL7u4luGeaqfQfZI83HXGw" + "discord": "913402397588611162" }, - "record": { + "records": { "CNAME": "thaihwng.github.io" } } diff --git a/domains/h1roune.json b/domains/h1roune.json index 407a2a91f..3a784160a 100644 --- a/domains/h1roune.json +++ b/domains/h1roune.json @@ -3,7 +3,7 @@ "username": "zarqizoubir", "email": "zarqi.ezzoubair@etu.uae.ac.ma" }, - "record": { + "records": { "CNAME": "zarqi.is-a.dev" } } diff --git a/domains/h3ja.json b/domains/h3ja.json index 81cd7ca17..d4473743e 100644 --- a/domains/h3ja.json +++ b/domains/h3ja.json @@ -4,7 +4,7 @@ "email": "tyjtyjyhjklt@gmail.com", "discord": "540167556443406338" }, - "record": { + "records": { "CNAME": "hejagithub.github.io" } } diff --git a/domains/h3l.json b/domains/h3l.json index adb95680d..5646cd05c 100644 --- a/domains/h3l.json +++ b/domains/h3l.json @@ -4,7 +4,7 @@ "email": "vaporvault04@gmail.com", "discord": "1229820339840618506" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/h3lios.json b/domains/h3lios.json deleted file mode 100644 index 088090649..000000000 --- a/domains/h3lios.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "NinjaXility", - "discord": "511106356267319296", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IBR3ZrvHG0dyQ1OU_ThEq2VbB_gvPhqPJkyPtwwbODCQENB-T2fstb7JrqYXG9lNaBWBrkeUzrheB5HY5tgEmPDAe6eDnN1D0dk0HKwxySEO7I1wbJsoJUnrWXigmuIYYkCPqHO9bBBD3seh4Y-REvCFI_xjNxBOIkqYiISDG4SJZW_AMoM-4ZwWJOS30ASQA3IM1DrvS3cNeamN0vmy2W16z7PUQxfn3UpwhdalfbzZKgiPowTVnbMT8OZ0IL45VZCmqeikraFf7fUv0PPCk54c07A8mIpYepzyy4hUftsF-ILHDLU_iOMZDHPrMDpPeyFXgYjA1iv1AfgFj6lshA.CFjZ-C3qr_js2SqYJQruNQ.j12mMFCkJhwZpCJXE_JDaY1XgeCUkSwhowfAvMEFrxvTdeqGbeEaHiXN4-oXfM0FuPLNgfsJDTwmva-ekWTAeOtX4a3IBlJ0uuj65_tdMOw.NDTU5ISRijrUIUoDvdYXJw" - }, - "record": { - "CNAME": "ninjaxility.github.io" - } -} diff --git a/domains/h3r3t1c.json b/domains/h3r3t1c.json index ed14086f3..f69cc189a 100644 --- a/domains/h3r3t1c.json +++ b/domains/h3r3t1c.json @@ -5,7 +5,7 @@ "username": "lfdominguez", "email": "ldominguezvega@gmail.com" }, - "record": { + "records": { "CNAME": "lfdominguez.github.io" } } diff --git a/domains/habeel.json b/domains/habeel.json index e3cdaa1f4..1221ac0fb 100644 --- a/domains/habeel.json +++ b/domains/habeel.json @@ -6,7 +6,7 @@ "email": "mirhabeelahmad06@gmail.com", "twitter": "habeel_06" }, - "record": { + "records": { "CNAME": "habeel06.github.io" } } diff --git a/domains/habib.json b/domains/habib.json index 407fb6678..12b33a6bf 100644 --- a/domains/habib.json +++ b/domains/habib.json @@ -3,7 +3,7 @@ "username": "HabibMollah", "email": "habib.prodev@gmail.com" }, - "record": { + "records": { "URL": "https://mollah.vercel.app" } } diff --git a/domains/hachiro.json b/domains/hachiro.json index b1d178cba..3702b0825 100644 --- a/domains/hachiro.json +++ b/domains/hachiro.json @@ -5,7 +5,7 @@ "username": "bananalolok", "discord": "banana_lol_7678" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/hackerhawks.json b/domains/hackerhawks.json index eca8b37f7..d31abdb79 100644 --- a/domains/hackerhawks.json +++ b/domains/hackerhawks.json @@ -3,7 +3,7 @@ "username": "HackerHawks", "email": "robohawks.dev@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/hackerman.json b/domains/hackerman.json index c5ba0bfbe..c91c9fb42 100644 --- a/domains/hackerman.json +++ b/domains/hackerman.json @@ -3,7 +3,7 @@ "username": "AviDevs31", "email": "josealbertotaverazz@gmail.com" }, - "record": { + "records": { "CNAME": "avidevs31.github.io" } } diff --git a/domains/hackqd.json b/domains/hackqd.json index 6bc511def..2f5b3a846 100644 --- a/domains/hackqd.json +++ b/domains/hackqd.json @@ -3,10 +3,9 @@ "repo": "https://github.com/hackqd/hackqd.github.io", "owner": { "username": "hackqd", - "email": "hackqdftw@gmail.com", - "twitter": "" + "email": "hackqdftw@gmail.com" }, - "record": { + "records": { "CNAME": "hackqd.github.io" } } diff --git a/domains/haco.json b/domains/haco.json index 34d6b4116..892c4a4b6 100644 --- a/domains/haco.json +++ b/domains/haco.json @@ -6,7 +6,7 @@ "email": "jasonytonlinecomeandsee@gmail.com", "discord": "ACO#8888" }, - "record": { + "records": { "URL": "https://www.haco.tw" } } diff --git a/domains/hafeez.json b/domains/hafeez.json new file mode 100644 index 000000000..39c919547 --- /dev/null +++ b/domains/hafeez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hamid1882", + "email": "hussainhafeez1100@gmail.com", + "discord": "hamid1882" + }, + "records": { + "CNAME": "hafeez-delta.vercel.app" + } +} diff --git a/domains/hafi.json b/domains/hafi.json index 11d2960e8..254506258 100644 --- a/domains/hafi.json +++ b/domains/hafi.json @@ -5,7 +5,7 @@ }, "description": "Website about about me", "repo": "https://github.com/HafiTheCat/hafi_the_cat.github.io", - "record": { + "records": { "CNAME": "hafithecat.github.io" } } diff --git a/domains/hafidu.json b/domains/hafidu.json index c8070080a..10a50626c 100644 --- a/domains/hafidu.json +++ b/domains/hafidu.json @@ -3,7 +3,7 @@ "username": "hafidu", "email": "mochammad.hafidu@gmail.com" }, - "record": { + "records": { "CNAME": "hafidu.github.io" } } diff --git a/domains/haft.json b/domains/haft.json index c79f1e7a2..ed1ec90e7 100644 --- a/domains/haft.json +++ b/domains/haft.json @@ -6,7 +6,7 @@ "discord": "imhaft", "email": "haftthedev@gmail.com" }, - "record": { + "records": { "CNAME": "haftisnthere.github.io" } } diff --git a/domains/haizad.json b/domains/haizad.json index da4de8962..39448057d 100644 --- a/domains/haizad.json +++ b/domains/haizad.json @@ -3,7 +3,7 @@ "username": "haizad", "email": "haizadannuar@gmail.com" }, - "record": { + "records": { "CNAME": "haizad.github.io" } } diff --git a/domains/halil.json b/domains/halil.json index a92640d32..b7e8703b6 100644 --- a/domains/halil.json +++ b/domains/halil.json @@ -5,7 +5,7 @@ "username": "halil-dll", "email": "halil@pissmail.com" }, - "record": { + "records": { "A": ["173.249.45.163"] } } diff --git a/domains/halinh0506.json b/domains/halinh0506.json deleted file mode 100644 index 2a3284a1c..000000000 --- a/domains/halinh0506.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "huanhoahongso3-collab", - "email": "huanhoahongso3@gmail.com" - }, - "record": { - "A": ["75.2.60.5"], - "MX": ["halinh0506-isa-dev03c.mail.protection.outlook.com"], - "TXT": "v=spf1 include:spf.protection.outlook.com -all" - } -} diff --git a/domains/halink.json b/domains/halink.json new file mode 100644 index 000000000..3fdcff655 --- /dev/null +++ b/domains/halink.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "halink0803" + }, + "records": { + "CNAME": "halink0803.github.io" + } +} diff --git a/domains/hamdi.json b/domains/hamdi.json new file mode 100644 index 000000000..e423adc53 --- /dev/null +++ b/domains/hamdi.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/hb12devtn/Portfolio", + "owner": { + "username": "hb12devtn", + "email": "h.bougattaya1212@gmail.com" + }, + "records": { + "CNAME": "hb12devtn.github.io" + } +} diff --git a/domains/hamid.json b/domains/hamid.json new file mode 100644 index 000000000..2c4816dcf --- /dev/null +++ b/domains/hamid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hamidsiddiqi2009", + "email": "hamidsiddiqi888@gmail.com" + }, + "records": { + "CNAME": "hamidsiddiqi2009.github.io" + } +} diff --git a/domains/hammed.json b/domains/hammed.json new file mode 100644 index 000000000..a6cd859a5 --- /dev/null +++ b/domains/hammed.json @@ -0,0 +1,11 @@ +{ + "description": "Link to my portfolio site.", + "repo": "https://github.com/devhammed/devhammed.github.io", + "owner": { + "username": "devhammed", + "email": "hey@hammed.dev" + }, + "records": { + "CNAME": "devhammed.github.io" + } +} diff --git a/domains/hamza.json b/domains/hamza.json index 39f8e98d8..64afa0150 100644 --- a/domains/hamza.json +++ b/domains/hamza.json @@ -4,7 +4,7 @@ "username": "hamza8bit", "email": "hamzabyte@gmail.com" }, - "record": { + "records": { "CNAME": "hamza8bit.github.io" } } diff --git a/domains/hanchow.json b/domains/hanchow.json index d569d6099..b8d46d54c 100644 --- a/domains/hanchow.json +++ b/domains/hanchow.json @@ -6,7 +6,7 @@ "email": "zhouhan199132@gmail.com", "twitter": "zhhlmr" }, - "record": { + "records": { "CNAME": "zhhlmr.github.io" } } diff --git a/domains/hans0805.json b/domains/hans0805.json index fceee36db..887ef8a3b 100644 --- a/domains/hans0805.json +++ b/domains/hans0805.json @@ -3,7 +3,7 @@ "username": "HansHans135", "email": "ccoccc14@gmail.com" }, - "record": { + "records": { "CNAME": "hans0805.me" } } diff --git a/domains/hansana.json b/domains/hansana.json index e4f1fc8a5..b0ff756e6 100644 --- a/domains/hansana.json +++ b/domains/hansana.json @@ -5,13 +5,8 @@ "username": "DevHanza", "email": "josephandrew1@logicstreak.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "AAAA": [ "2606:50c0:8000::153", "2606:50c0:8001::153", diff --git a/domains/hansen.json b/domains/hansen.json index bacf2efcc..e563ac964 100644 --- a/domains/hansen.json +++ b/domains/hansen.json @@ -5,7 +5,7 @@ "username": "HansenKhi", "email": "hansenkhi45@gmail.com" }, - "record": { + "records": { "CNAME": "hansenkhi.github.io" } } diff --git a/domains/haohoang.json b/domains/haohoang.json new file mode 100644 index 000000000..dcc912a5a --- /dev/null +++ b/domains/haohoang.json @@ -0,0 +1,10 @@ +{ + "description": "The blog of Hao Hoang", + "owner": { + "username": "vanhaohoang", + "email": "hoangvanhao99.01@gmail.com" + }, + "records": { + "CNAME": "vanhaohoang.github.io" + } +} diff --git a/domains/haolamnm.json b/domains/haolamnm.json index 3187a2d5e..aaa64cf59 100644 --- a/domains/haolamnm.json +++ b/domains/haolamnm.json @@ -1,10 +1,10 @@ { - "description": "Portfolio redirect for haolamnm", - "owner": { - "username": "haolamnm", - "email": "haolamnm.work@gmail.com" - }, - "record": { - "CNAME": "haolamnm.github.io" - } + "description": "Portfolio redirect for haolamnm", + "owner": { + "username": "haolamnm", + "email": "haolamnm.work@gmail.com" + }, + "records": { + "CNAME": "haolamnm.github.io" + } } diff --git a/domains/hardik-chandan.json b/domains/hardik-chandan.json index 9bb4163eb..b3537f3d0 100644 --- a/domains/hardik-chandan.json +++ b/domains/hardik-chandan.json @@ -5,7 +5,7 @@ "username": "hardik-chandan", "email": "hardikchandan4231@gmail.com" }, - "record": { + "records": { "CNAME": "hardik-chandan.github.io" } } diff --git a/domains/hardik.json b/domains/hardik.json index 315d5dcae..5968d8d29 100644 --- a/domains/hardik.json +++ b/domains/hardik.json @@ -3,7 +3,7 @@ "username": "Hardikanand1st", "email": "Hardikanand1st@outlook.com" }, - "record": { + "records": { "A": ["162.254.35.62"] } } diff --git a/domains/hareesh.json b/domains/hareesh.json new file mode 100644 index 000000000..0dccbfa9c --- /dev/null +++ b/domains/hareesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hareesh108", + "email": "hareeshbhittam@gmail.com" + }, + "records": { + "CNAME": "me-hazel-delta.vercel.app" + } +} diff --git a/domains/hari.json b/domains/hari.json index 68ae0f3ec..38e6dc4ed 100644 --- a/domains/hari.json +++ b/domains/hari.json @@ -5,7 +5,7 @@ "username": "harishnkr", "email": "hari2menon1234@gmail.com" }, - "record": { + "records": { "CNAME": "harishnkr.github.io" } } diff --git a/domains/haridarshan.json b/domains/haridarshan.json index 4c3fb8a5a..bbc198157 100644 --- a/domains/haridarshan.json +++ b/domains/haridarshan.json @@ -4,7 +4,7 @@ "owner": { "username": "hdck007" }, - "record": { + "records": { "URL": "https://haridarshan.vercel.app" } } diff --git a/domains/harikrishnan.json b/domains/harikrishnan.json index 25b662c01..bc643a82f 100644 --- a/domains/harikrishnan.json +++ b/domains/harikrishnan.json @@ -4,7 +4,7 @@ "username": "Harikrishnan6336", "email": "harikrishnan6336@gmail.com" }, - "record": { + "records": { "CNAME": "harikrishnan6336.github.io" } } diff --git a/domains/harikrishnanps.json b/domains/harikrishnanps.json index 4d2c9bf1b..4a3f01c93 100644 --- a/domains/harikrishnanps.json +++ b/domains/harikrishnanps.json @@ -5,7 +5,7 @@ "username": "super-jedi", "email": "harikrishnan.ps@hotmail.com" }, - "record": { + "records": { "CNAME": "super-jedi.github.io" } } diff --git a/domains/haripajjuri.json b/domains/haripajjuri.json index 3f8e7605f..42b390ed9 100644 --- a/domains/haripajjuri.json +++ b/domains/haripajjuri.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "haripajjuri", - "email": "haripajjuri@gmail.com" - }, - "record": { - "CNAME": "haripajjuri.vercel.app" - } + "owner": { + "username": "haripajjuri", + "email": "haripajjuri@gmail.com" + }, + "records": { + "CNAME": "haripajjuri.vercel.app" + } } diff --git a/domains/harish.json b/domains/harish.json new file mode 100644 index 000000000..2eefdd798 --- /dev/null +++ b/domains/harish.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HarishChandran3304", + "email": "harish3304.work@gmail.com", + "discord": "harish3304" + }, + "records": { + "CNAME": "harish-chandran.vercel.app" + } +} diff --git a/domains/harjakrepp.json b/domains/harjakrepp.json index 18fefd51b..323d5196e 100644 --- a/domains/harjakrepp.json +++ b/domains/harjakrepp.json @@ -6,7 +6,7 @@ "discord": "harjacraft#2385", "twitter": "harjakrepp" }, - "record": { + "records": { "CNAME": "harjakrepp.github.io" } } diff --git a/domains/harley.json b/domains/harley.json new file mode 100644 index 000000000..39cbf1d2b --- /dev/null +++ b/domains/harley.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "weebNeedWeed", + "email": "rivenmle@gmail.com" + }, + "records": { + "CNAME": "weebneedweed.github.io" + } +} diff --git a/domains/harmony.yunexiz.json b/domains/harmony.yunexiz.json new file mode 100644 index 000000000..e3e40788b --- /dev/null +++ b/domains/harmony.yunexiz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Yunexiz" + }, + "records": { + "CNAME": "harmony-site.pages.dev" + } +} diff --git a/domains/harmputman.json b/domains/harmputman.json index eaae85714..f5a896591 100644 --- a/domains/harmputman.json +++ b/domains/harmputman.json @@ -1,11 +1,10 @@ { "description": "Harm Putman a.k.a. High Five", - "repo": "https://github.com/harmputman", "owner": { "username": "harmputman", "twitter": "harmputman" }, - "record": { + "records": { "URL": "https://www.high-five.dev" } } diff --git a/domains/haroki.json b/domains/haroki.json new file mode 100644 index 000000000..35298e5b2 --- /dev/null +++ b/domains/haroki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "justhar", + "email": "harzksu@gmail.com" + }, + "records": { + "CNAME": "justhar.github.io" + } +} diff --git a/domains/harrigan.json b/domains/harrigan.json index 32d85b357..94f38d4c4 100644 --- a/domains/harrigan.json +++ b/domains/harrigan.json @@ -1,11 +1,10 @@ { "description": "Martin Harrigan's Homepage", - "repo": "https://github.com/harrigan", "owner": { "username": "harrigan", "email": "martinharrigan@gmail.com" }, - "record": { + "records": { "URL": "https://www.martinharrigan.ie" } } diff --git a/domains/harry.json b/domains/harry.json index dab959c77..42ea44cb9 100644 --- a/domains/harry.json +++ b/domains/harry.json @@ -5,7 +5,7 @@ }, "description": "Personal site/blog", "repository": "https://github.com/Harry-Ross/harry-ross.github.io.git", - "record": { + "records": { "CNAME": "harry-ross.github.io" } } diff --git a/domains/harsh-mehta.json b/domains/harsh-mehta.json index 422db4b56..3f982ff73 100644 --- a/domains/harsh-mehta.json +++ b/domains/harsh-mehta.json @@ -5,7 +5,7 @@ "username": "Harsh05dev", "email": "harshmehta1505@gmail.com" }, - "record": { + "records": { "CNAME": "harsh05dev.github.io" } } diff --git a/domains/harsh-patel.json b/domains/harsh-patel.json index 392f20c08..070cb751c 100644 --- a/domains/harsh-patel.json +++ b/domains/harsh-patel.json @@ -5,7 +5,7 @@ "username": "harshpat", "email": "patel.harsh28@gmail.com" }, - "record": { + "records": { "CNAME": "harshpat.github.io" } } diff --git a/domains/harsh.json b/domains/harsh.json index bf20be117..099d267f1 100644 --- a/domains/harsh.json +++ b/domains/harsh.json @@ -3,7 +3,7 @@ "username": "Riotly", "email": "harshskb73@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-production.onrender.com" } } diff --git a/domains/harshad-patoliya.json b/domains/harshad-patoliya.json index a8e068b28..f985518d2 100644 --- a/domains/harshad-patoliya.json +++ b/domains/harshad-patoliya.json @@ -4,7 +4,7 @@ "owner": { "username": "harshad-patoliya" }, - "record": { + "records": { "CNAME": "harshad-patoliya.github.io" } } diff --git a/domains/harshad.json b/domains/harshad.json index f062c7a37..02fb5ff59 100644 --- a/domains/harshad.json +++ b/domains/harshad.json @@ -3,7 +3,7 @@ "username": "hb0313", "email": "hbhandwaldar@gmail.com" }, - "record": { + "records": { "CNAME": "hb0313.github.io" } } diff --git a/domains/harshatwo.json b/domains/harshatwo.json index 1289d33ab..037123b80 100644 --- a/domains/harshatwo.json +++ b/domains/harshatwo.json @@ -3,7 +3,7 @@ "username": "HARS23", "email": "harshavarthankarunakaran@gmail.com" }, - "record": { + "records": { "URL": "https://harshatwo.netlify.app" } } diff --git a/domains/harshd.json b/domains/harshd.json new file mode 100644 index 000000000..44a596a53 --- /dev/null +++ b/domains/harshd.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/harsh-writes-code/harsh-writes-code.github.io", + "owner": { + "username": "harsh-writes-code", + "email": "happydhimanbarara@gmail.com" + }, + "records": { + "CNAME": "harsh-writes-code.github.io" + } +} diff --git a/domains/harshikesh-abhinav.json b/domains/harshikesh-abhinav.json index d65305aa3..b184db456 100644 --- a/domains/harshikesh-abhinav.json +++ b/domains/harshikesh-abhinav.json @@ -3,7 +3,7 @@ "username": "Abhinav-676", "email": "harshikeshabhinav676@gmail.com" }, - "record": { + "records": { "CNAME": "abhinav-portfolio-s-47.deno.dev" } } diff --git a/domains/harshk.json b/domains/harshk.json index 7795dbb6f..a31eebc2f 100644 --- a/domains/harshk.json +++ b/domains/harshk.json @@ -5,7 +5,7 @@ "username": "harshk04", "email": "kumawatharsh2004@gmail.com" }, - "record": { + "records": { "CNAME": "harshk04.github.io" } } diff --git a/domains/harshmali.json b/domains/harshmali.json new file mode 100644 index 000000000..9320ee975 --- /dev/null +++ b/domains/harshmali.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harm04", + "email": "harshmali.dev@gmail.com" + }, + "records": { + "CNAME": "harsh-project-8cafb.web.app" + } +} diff --git a/domains/harshmallick.json b/domains/harshmallick.json new file mode 100644 index 000000000..e79561c67 --- /dev/null +++ b/domains/harshmallick.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio website", + "repo": "https://github.com/harsh-mallick/portfolio", + "owner": { + "username": "harsh-mallick", + "email": "harshmallick052009@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/harshnj.json b/domains/harshnj.json index d1c828b19..0c20a6187 100644 --- a/domains/harshnj.json +++ b/domains/harshnj.json @@ -1,17 +1,11 @@ { "description": "My Portfolio", - "repo": "https://github.com/HarshNarayanJha", "owner": { "username": "HarshNarayanJha", "email": "harshnj@proton.me" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "AAAA": [ "2606:50c0:8000::153", "2606:50c0:8001::153", diff --git a/domains/harshshah.json b/domains/harshshah.json new file mode 100644 index 000000000..4274a8438 --- /dev/null +++ b/domains/harshshah.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "harshshah-codes", + "email": "harshshah.dev@gmail.com", + "discord": "889700837520199761" + }, + "records": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/harshvardhan.json b/domains/harshvardhan.json new file mode 100644 index 000000000..8e8257d0c --- /dev/null +++ b/domains/harshvardhan.json @@ -0,0 +1,11 @@ +{ + "description": "My Personal Portfolio", + "repo": "https://github.com/Harshvardhan5703/HarshPortfolio", + "owner": { + "username": "Harshvardhan5703", + "email": "shekhawat.harsh287@gmail.com" + }, + "records": { + "CNAME": "harsh-portfolio-liard.vercel.app" + } +} diff --git a/domains/haru.json b/domains/haru.json index 9cd0c21b8..95e9fc0f5 100644 --- a/domains/haru.json +++ b/domains/haru.json @@ -3,7 +3,7 @@ "username": "harudev21", "email": "mizuto.discord@gmail.com" }, - "record": { + "records": { "URL": "https://harudev.vercel.app" } } diff --git a/domains/haruki.json b/domains/haruki.json index bf048f09c..e204669d3 100644 --- a/domains/haruki.json +++ b/domains/haruki.json @@ -3,7 +3,7 @@ "username": "ShreyaPrincess", "email": "shreyasonbusiness@gmail.com" }, - "record": { + "records": { "CNAME": "shreyaprincess.github.io" } } diff --git a/domains/harunabdullah.json b/domains/harunabdullah.json new file mode 100644 index 000000000..6af801cca --- /dev/null +++ b/domains/harunabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harunabdullahrakin" + }, + + "records": { + "A": ["185.31.40.12"] + } +} diff --git a/domains/harvey.json b/domains/harvey.json index 4ae4f7767..cb7fa2290 100644 --- a/domains/harvey.json +++ b/domains/harvey.json @@ -1,10 +1,9 @@ { "owner": { "username": "hrv3y", - "discord": "969129892614660096", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.N_k2nKXX-b53o9aozW1ziDfVlbQt-Ja7nDBHnvFk-tNX-yaVmtnzLQOc540D_NWVEj9eac6rZ52VZUp3hQ3I8A9rnsp-zku18sZn1CRgnbIHty4yfWJxen4hHaS3vz0rLsXX_v73kYlG246cBUyvTc-Ps8TRVS-RzLUmQ-M1fT1Gf0lEDeqTHX8z7tsm_mbfCvyOcUrnp5nNLNchkdnflj5FHy_aZWvk_KETNAvfgCkTyl1EQ6u0jQ2UMsokEZ5tS6ze9fUk2X6Tc_ALE_tGEM_zBXLNS3YNngitA8NoNVcs2JZwXzZaf-zNTlN2JLYbYxEgxDbMpbkj7Y8vNmNC3Q.UcFQvuGHFScC6MVnGil7WQ.BOlRX-2b7-aiPOrh7VB8FvydjIlw9KwOiEd4NAuD_xo1GYU4fLcpTWQ3df2MkNa2vt0l85m-va9FgVVjuLQloQ.hvVVPUmPcKh_H4GRlVMO0g" + "discord": "969129892614660096" }, - "record": { + "records": { "CNAME": "hosted.omg.lol" } } diff --git a/domains/harys.json b/domains/harys.json new file mode 100644 index 000000000..4956a1d81 --- /dev/null +++ b/domains/harys.json @@ -0,0 +1,11 @@ +{ + "description": "For my personal showcase website.", + "repo": "https://github.com/harys722/harys722.github.io", + "owner": { + "username": "harys722", + "discord": "1203357768610746385" + }, + "records": { + "CNAME": "harys722.github.io" + } +} diff --git a/domains/hasan.json b/domains/hasan.json new file mode 100644 index 000000000..453be35f8 --- /dev/null +++ b/domains/hasan.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website", + "repo": "https://github.com/bistcuite/bistcuite.github.io", + "owner": { + "username": "bistcuite", + "email": "hnk1440@gmail.com" + }, + "records": { + "CNAME": "bistcuite.github.io" + } +} diff --git a/domains/hasanbithto.json b/domains/hasanbithto.json new file mode 100644 index 000000000..441faa04e --- /dev/null +++ b/domains/hasanbithto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "01HB", + "email": "hasanbithto207058@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/haseeb.json b/domains/haseeb.json index 6bfde9f1e..e04a74934 100644 --- a/domains/haseeb.json +++ b/domains/haseeb.json @@ -1,10 +1,9 @@ { "owner": { "username": "Haseebprivate", - "discord": "1207534121052672090", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Jjpio28H9G5rvkKey2fD-IXl4SumfoSVx6WTtNvpcf7_2bKhJzO9AVtcOdhkpdc4p4O9SbdY2CJXY5LjSB5MRO1hVpu1E3XXUiTZOP7bxV9RqGBdNNV8tt3uYsdt4_6KP0_rhDo7OYCxZiz7_WoJRYbPgsE5O47zwCPDzS-DZ68v9te9iLNBRE4Hr2uT8Ua_FTbb0n6pUZBo3r_5jankjxg395JxAH41tHa62cBynSzkqnwkHYKhdHy6Jk1CQOoo6YFZFd03Csy56zGBTNIcBgurJDeYZQQ-gDWmlnlXP7xHc0WUIqEYHpIJRMmrgLNC1ni6epq3IMNnTACh9hSIug.mdWCmghtCxtNzePvYhzEqw.W9RA0Zw7bQvReJMYUTGvaoOgzo3Zzq-nCjn_6Zfa_5xXTNsmEtyoog6Y6wdxO6OGWRFP1JtMFMJx5jwYZQaEgKkVx-2RHkeDfLK_0X5F_LE.2glTRyMKwrCag9w34BrJAA" + "discord": "1207534121052672090" }, - "record": { + "records": { "CNAME": "haseeb-khalid.netlify.app" } } diff --git a/domains/haseena.json b/domains/haseena.json index 63673ef5e..b323e500b 100644 --- a/domains/haseena.json +++ b/domains/haseena.json @@ -5,7 +5,7 @@ "username": "haseena-hassan", "email": "haseena2199@gmail.com" }, - "record": { + "records": { "CNAME": "haseena-hassan.github.io" } } diff --git a/domains/hash-cracker.json b/domains/hash-cracker.json index 3c63d2ca7..9f5f2d40a 100644 --- a/domains/hash-cracker.json +++ b/domains/hash-cracker.json @@ -5,7 +5,7 @@ "username": "Hash-Cracker", "email": "tspamiitesh@gmail.com" }, - "record": { + "records": { "CNAME": "hash-cracker.github.io" } } diff --git a/domains/hashan.json b/domains/hashan.json new file mode 100644 index 000000000..efe3ac426 --- /dev/null +++ b/domains/hashan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hashaaan", + "email": "shalithadev@gmail.com" + }, + "records": { + "CNAME": "hashanshalitha.vercel.app" + } +} diff --git a/domains/hashir.json b/domains/hashir.json index cfaf4261a..78fe8f4bb 100644 --- a/domains/hashir.json +++ b/domains/hashir.json @@ -5,7 +5,7 @@ }, "description": "My portfolio website", "repo": "https://github.com/HarishB167/hs-app", - "record": { + "records": { "URL": "https://hmser.netlify.app" } } diff --git a/domains/hasnain.json b/domains/hasnain.json index 8f7267bb3..2d10432dd 100644 --- a/domains/hasnain.json +++ b/domains/hasnain.json @@ -3,7 +3,7 @@ "username": "HasnainSZN", "email": "officialhasnain100@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/hassan.json b/domains/hassan.json index 9b03f3081..0f6ff197a 100644 --- a/domains/hassan.json +++ b/domains/hassan.json @@ -3,7 +3,7 @@ "username": "HassanCodez", "email": "hassan.atef01100@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-seven-pi-39.vercel.app" } } diff --git a/domains/hassbomb.json b/domains/hassbomb.json index a3f0b91d5..f94fd8014 100644 --- a/domains/hassbomb.json +++ b/domains/hassbomb.json @@ -3,7 +3,7 @@ "username": "Th3ABombs", "email": "andreabombelli@gmail.com" }, - "record": { + "records": { "A": ["144.24.243.47"] } } diff --git a/domains/hassenmajor.json b/domains/hassenmajor.json index 3ca02cfdf..5d18bdf72 100644 --- a/domains/hassenmajor.json +++ b/domains/hassenmajor.json @@ -4,7 +4,7 @@ "email": "hassenmajor@gmail.com" }, "description": "This is my personal portfolio.", - "record": { + "records": { "CNAME": "hassenmajor.github.io" } } diff --git a/domains/hastebin.json b/domains/hastebin.json index 8719e4cac..5b39c2d85 100644 --- a/domains/hastebin.json +++ b/domains/hastebin.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "email": "149485703+EducatedSuddenBucket@users.noreply.github.com", "discord": "1167825360151380032" }, - "record": { + "records": { "A": ["69.197.135.203"] } } diff --git a/domains/hate.json b/domains/hate.json index 3cd3062c8..31f557954 100644 --- a/domains/hate.json +++ b/domains/hate.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "A": ["75.2.60.5"] + } } diff --git a/domains/hater-of-vectors.json b/domains/hater-of-vectors.json new file mode 100644 index 000000000..e472a50e0 --- /dev/null +++ b/domains/hater-of-vectors.json @@ -0,0 +1,12 @@ +{ + "description": "Test website for hater of vectors projects", + "repo": "https://github.com/Mortadelo24/", + "owner": { + "username": "Mortadelo24", + "email": "jdmp010101@gmail.com" + }, + "records": { + "URL": "https://github.com/Mortadelo24/" + }, + "proxied": false +} diff --git a/domains/hating.devmatei.json b/domains/hating.devmatei.json deleted file mode 100644 index 3cd3062c8..000000000 --- a/domains/hating.devmatei.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } -} diff --git a/domains/hatkid.json b/domains/hatkid.json index 00b8c78cf..8eef5e7a0 100644 --- a/domains/hatkid.json +++ b/domains/hatkid.json @@ -6,7 +6,7 @@ "email": "saha22023@gmail.com", "discord": "hat_kid" }, - "record": { + "records": { "CNAME": "thehatkid.github.io" } } diff --git a/domains/hatkidchan.json b/domains/hatkidchan.json index a6a62872d..76bbf3fd9 100644 --- a/domains/hatkidchan.json +++ b/domains/hatkidchan.json @@ -6,7 +6,7 @@ "twitter": "hatkidchan", "discord": "hkc#0517" }, - "record": { + "records": { "A": ["5.181.108.112"] } } diff --git a/domains/haubaka.json b/domains/haubaka.json index 06cbdc3fe..7824ac73f 100644 --- a/domains/haubaka.json +++ b/domains/haubaka.json @@ -5,7 +5,7 @@ "username": "HauBaka", "email": "hauvong@proton.me" }, - "record": { + "records": { "CNAME": "haubaka.github.io" } } diff --git a/domains/havoc.json b/domains/havoc.json index 28ea47ef5..e9a51e31f 100644 --- a/domains/havoc.json +++ b/domains/havoc.json @@ -3,7 +3,7 @@ "username": "d7dx", "email": "d7dx@proton.me" }, - "record": { + "records": { "CNAME": "d7dx.github.io" } } diff --git a/domains/haydenpc.json b/domains/haydenpc.json new file mode 100644 index 000000000..49dfc285c --- /dev/null +++ b/domains/haydenpc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "haydenpc", + "email": "haydenpc369@gmail.com" + }, + "records": { + "CNAME": "haydenpc.github.io" + } +} diff --git a/domains/haykaody.json b/domains/haykaody.json index 81f72ebb8..44efd09a9 100644 --- a/domains/haykaody.json +++ b/domains/haykaody.json @@ -5,7 +5,7 @@ "username": "neoryans", "email": "ryansneo@gmail.com" }, - "record": { + "records": { "CNAME": "neoryans.github.io" } } diff --git a/domains/hazel.json b/domains/hazel.json index e440b3df9..5b6f4cc48 100644 --- a/domains/hazel.json +++ b/domains/hazel.json @@ -4,7 +4,7 @@ "email": "xendyex@tutanota.com", "discord": "1113284520737771621" }, - "record": { + "records": { "CNAME": "hablethedev.github.io" } } diff --git a/domains/hazelnut.json b/domains/hazelnut.json index d1cad5df7..57b72efec 100644 --- a/domains/hazelnut.json +++ b/domains/hazelnut.json @@ -3,7 +3,7 @@ "username": "HazelNutHoney", "email": "hazelnutzhoney@gmail.com" }, - "record": { + "records": { "CNAME": "hazelnuthoney.github.io" } } diff --git a/domains/hazy.json b/domains/hazy.json index 310d8b7fb..25895b928 100644 --- a/domains/hazy.json +++ b/domains/hazy.json @@ -1,10 +1,9 @@ { "owner": { "username": "flouciel", - "discord": "967623271703007292", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iXmlAAozpgqmWKMn4Uy8R2r51IF1iTfE7jG7GBwYET0EIWytyyyyOVPFLLzGfsf9qmPIaBX5V9JzXLV3h1rnK7fwJlhlQLnb1bOYAajqFoxxAwAa54PnCfo9aU8h7RJYoJAGgvzTjR5tAlzHtbEVPLr0aY93VTMv9Wgi6Vonatiakpx41apY8ggbTipSDR3y7IA14Qumi-wcUrLsECIGKYJNEXL409Lb0W-Sm7YDe8u8MzEr70MsZ-8ElJNbQ6Mmqb4jAtRqwQOW-rFsVYVIw6ngONgr3RHMXwXcdwXEhURaWObaect-XQ5KnQYtw4BXyaLpzfX5N_-b4CjnMkotyA.Jm-AREKkVLyzps9lTttUtw.MUvZm7aJ9zAJboAT4EMuhvZOsMtx88a3fz0yuJoXKicTIWEJmtrbv-Wj6RedoHN9G20RvX63GdfxBySHaPHS_eeeSNeGkLQCp9drhtQ5V6gxJVhJ7hjo_MwRpW62Cy0_.RIOZXukvXvUZQBdXeURZ1Q" + "discord": "967623271703007292" }, - "record": { + "records": { "CNAME": "flouciel.github.io" } } diff --git a/domains/hchs-bot.json b/domains/hchs-bot.json index 3b63097a1..ced2a98aa 100644 --- a/domains/hchs-bot.json +++ b/domains/hchs-bot.json @@ -5,7 +5,7 @@ "twitter": "jimmyyo45639462", "discord": "xiaoxi_tw#0" }, - "record": { + "records": { "CNAME": "tw-node2.thisalesa.eu.org" } } diff --git a/domains/hcj.json b/domains/hcj.json index 4dd713154..a46bb817a 100644 --- a/domains/hcj.json +++ b/domains/hcj.json @@ -3,7 +3,7 @@ "username": "thehcj", "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/hcr5.json b/domains/hcr5.json index 1a8685a3e..3e5c42b63 100644 --- a/domains/hcr5.json +++ b/domains/hcr5.json @@ -4,7 +4,7 @@ "username": "hcr5", "email": "hcr5.hcr@gmail.com" }, - "record": { + "records": { "URL": "https://hcr5.github.io" } } diff --git a/domains/hcs.json b/domains/hcs.json index 1c4cd3f1c..ddefa72e3 100644 --- a/domains/hcs.json +++ b/domains/hcs.json @@ -3,7 +3,7 @@ "username": "hcs1219", "email": "hcskaiask@gmail.com" }, - "record": { + "records": { "CNAME": "hcs1219.github.io" } } diff --git a/domains/he.json b/domains/he.json index 1b8492781..227e1bf21 100644 --- a/domains/he.json +++ b/domains/he.json @@ -3,7 +3,7 @@ "username": "Yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "yunexiz.pages.dev" } } diff --git a/domains/heatblock.json b/domains/heatblock.json new file mode 100644 index 000000000..2ef41916f --- /dev/null +++ b/domains/heatblock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "records": { + "URL": "https://heatblock.esb.is-a.dev" + } +} diff --git a/domains/heath.json b/domains/heath.json index 78180bee0..560bbd190 100644 --- a/domains/heath.json +++ b/domains/heath.json @@ -1,10 +1,10 @@ { - "description": "A simple link shortener page used for the minodabproductions.dev website.", - "owner": { - "username": "minodab492", - "email": "heath.garvin@minodabproductions.dev" - }, - "record": { - "CNAME": "mdp-linkshortener.pages.dev" - } -} \ No newline at end of file + "description": "A simple link shortener page used for the minodabproductions.dev website.", + "owner": { + "username": "minodab492", + "email": "heath.garvin@minodabproductions.dev" + }, + "records": { + "CNAME": "mdp-linkshortener.pages.dev" + } +} diff --git a/domains/hecker.json b/domains/hecker.json index daa9e0afe..ef4ac56a9 100644 --- a/domains/hecker.json +++ b/domains/hecker.json @@ -1,10 +1,9 @@ { "owner": { "username": "1tbfree", - "discord": "1256183302516248680", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Gulo_VzH36GNYsK77_AoaBJa0a51eOIcMMQv6eB8Q5Z3ENUhJ-r_XZ61uICYK7OMJChFbwIBCgBbeoOZ63hePBZ92PGIEpoQB01CGPiEy6f9sqgjObPseHDEqPUYo8wu-VYLa7fdvNAYh3_sJyaEv-6V5b12FuuiBhA69LhWDNhmI35AICifGZmpyiDl-6eGZkMYoo63tW5PmxOkSJNnd_sSo-bbwhX4TDsgVBFH5dSga9UFBm3LD2OHtHGldirFlEVdmK_OdrZsco97W2fYci0HSbAGwUZ9nduMhBhiWujCL79_hVSLcSdMjT_yVOAN1515sNDxwVBboZ4qbY8nHw.nA4IYJPRg_VC-H3JSUQCMw.fHdFrlnHqAF8q1usb4mVryVD1UzDIoXaw4QwsJqsA29DGevggNwoKFjsGwsDZLl-2n7VwqkPBdHEI1CFYeZM1g.yCHHbjElG3qrdQbn8rt8zA" + "discord": "1256183302516248680" }, - "record": { + "records": { "CNAME": "heckersoft.serv00.net" } } diff --git a/domains/hector-vigil.json b/domains/hector-vigil.json index c6181f2db..3ad5b0f6a 100644 --- a/domains/hector-vigil.json +++ b/domains/hector-vigil.json @@ -5,7 +5,7 @@ "username": "hector-vigil", "email": "vigilescalera.h@gmail.com" }, - "record": { + "records": { "CNAME": "hector-vigil.github.io" } } diff --git a/domains/heet.json b/domains/heet.json index d97215fe5..3477479a4 100644 --- a/domains/heet.json +++ b/domains/heet.json @@ -6,7 +6,7 @@ "email": "heetjpande@gmail.com", "twitter": "pandeheet" }, - "record": { + "records": { "URL": "https://bejewelled-gnome-25199e.netlify.app" } } diff --git a/domains/hein.json b/domains/hein.json index b7070cd29..281782c3e 100644 --- a/domains/hein.json +++ b/domains/hein.json @@ -3,7 +3,7 @@ "username": "HeinKhantZaw", "email": "heinkhantzaw1@gmail.com" }, - "record": { + "records": { "CNAME": "heinkhantzaw.github.io" } } diff --git a/domains/heli-joshi.json b/domains/heli-joshi.json index 5c79e9edf..c4cc069eb 100644 --- a/domains/heli-joshi.json +++ b/domains/heli-joshi.json @@ -4,7 +4,7 @@ "owner": { "username": "heli-joshi" }, - "record": { + "records": { "CNAME": "heli-joshi.github.io" } } diff --git a/domains/hellaz.json b/domains/hellaz.json index fc54add0c..c80bcdeae 100644 --- a/domains/hellaz.json +++ b/domains/hellaz.json @@ -3,7 +3,7 @@ "username": "hellaz", "email": "hellaz.team@gmail.com" }, - "record": { + "records": { "URL": "https://hellaz.net" } } diff --git a/domains/hellokhangtran.json b/domains/hellokhangtran.json new file mode 100644 index 000000000..b0c4a42a7 --- /dev/null +++ b/domains/hellokhangtran.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for Khang Tran", + "owner": { + "username": "KN2222", + "email": "hellokhangtran03@gmail.com" + }, + "records": { + "CNAME": "hellokhangtran.vercel.app" + }, + "proxied": false +} diff --git a/domains/hemang.json b/domains/hemang.json index b53aee1a2..f50451498 100644 --- a/domains/hemang.json +++ b/domains/hemang.json @@ -3,7 +3,7 @@ "username": "Zemerik", "email": "zemerikY@gmail.com" }, - "record": { + "records": { "URL": "https://zemerik.is-a.dev" } } diff --git a/domains/hemangyadav.json b/domains/hemangyadav.json index b53aee1a2..f50451498 100644 --- a/domains/hemangyadav.json +++ b/domains/hemangyadav.json @@ -3,7 +3,7 @@ "username": "Zemerik", "email": "zemerikY@gmail.com" }, - "record": { + "records": { "URL": "https://zemerik.is-a.dev" } } diff --git a/domains/hemanth.json b/domains/hemanth.json index d3d8bf4b4..03c6bbbe4 100644 --- a/domains/hemanth.json +++ b/domains/hemanth.json @@ -5,7 +5,7 @@ "username": "Hemanthwarrier", "email": "hemanthwarrier@gmail.com" }, - "record": { + "records": { "CNAME": "hemanthwarrier.github.io" } } diff --git a/domains/hemath.json b/domains/hemath.json new file mode 100644 index 000000000..234867528 --- /dev/null +++ b/domains/hemath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "djhemath", + "email": "djhemath@gmail.com" + }, + "records": { + "URL": "https://hemath.dev" + } +} diff --git a/domains/henderythmix.json b/domains/henderythmix.json new file mode 100644 index 000000000..d9c14f2e4 --- /dev/null +++ b/domains/henderythmix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "henderythmix", + "email": "robertoselleswork@gmail.com" + }, + "records": { + "CNAME": "henderythmix.vercel.app" + } +} diff --git a/domains/henry.json b/domains/henry.json index e3a3f8415..aa3b66e86 100644 --- a/domains/henry.json +++ b/domains/henry.json @@ -6,7 +6,7 @@ "email": "space.galaxy.world@gmail.com", "twitter": "hd3vv" }, - "record": { + "records": { "CNAME": "henryhuangbc.github.io" } } diff --git a/domains/herbert.json b/domains/herbert.json index c815def75..ca51f3c68 100644 --- a/domains/herbert.json +++ b/domains/herbert.json @@ -3,7 +3,7 @@ "username": "Cartyoo", "email": "cartyoogaming@gmail.com" }, - "record": { + "records": { "URL": "https://cartyoo.org" } } diff --git a/domains/hercase.json b/domains/hercase.json new file mode 100644 index 000000000..38461cc52 --- /dev/null +++ b/domains/hercase.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hercase", + "email": "hercase92@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/herkura.json b/domains/herkura.json index 36a30eb34..b3c7278ca 100644 --- a/domains/herkura.json +++ b/domains/herkura.json @@ -5,7 +5,7 @@ "username": "herkura", "email": "hershilpiplani16@gmail.com" }, - "record": { + "records": { "CNAME": "herkura.github.io" } } diff --git a/domains/hero.json b/domains/hero.json new file mode 100644 index 000000000..acb8864fd --- /dev/null +++ b/domains/hero.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heropj", + "email": "pranjalpandey1022003@gmail.com" + }, + "records": { + "URL": "https://heroportfolio-two.vercel.app/portfolio" + } +} diff --git a/domains/heroprotagonist.json b/domains/heroprotagonist.json index 8afe86c34..b845a49c5 100644 --- a/domains/heroprotagonist.json +++ b/domains/heroprotagonist.json @@ -3,7 +3,7 @@ "username": "carafelix", "email": "heroprotagonist32@gmail.com" }, - "record": { + "records": { "CNAME": "carafelix.github.io" } } diff --git a/domains/herve.json b/domains/herve.json new file mode 100644 index 000000000..bb485801b --- /dev/null +++ b/domains/herve.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "herveleclerc", + "email": "herve.leclerc@gmail.com" + }, + "records": { + "CNAME": "herveleclerc.github.io" + } +} diff --git a/domains/heterl0.json b/domains/heterl0.json new file mode 100644 index 000000000..45f2e4a3c --- /dev/null +++ b/domains/heterl0.json @@ -0,0 +1,11 @@ +{ + "description": "Heterl0 Personal Blog Site", + "repo": "https://github.com/hieulvVn/eleventy-blog", + "owner": { + "username": "hieulvVn", + "email": "hieulv@kdigi.vn" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/hexaa.json b/domains/hexaa.json index d62103e70..9c52349ff 100644 --- a/domains/hexaa.json +++ b/domains/hexaa.json @@ -1,12 +1,11 @@ { "owner": { - "owl": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.svaUbpX_i7AZUnRnbjlFJqGPO5q-Ggc4_KUwj7zKurpH8YFZJ5J399yg_UZG1BUt-CRc5ZvWWoXHzRPeRJN0TVpNuPCtClOVsLtg-uuIf-m9IFifJgrNnFaTF4QJIfWQu92V9ZqfDBqWrUC31O5MR9bU3O3fvDGZqduxeYuyRBUJjsauqQb-B2JW5OxNp9I45PTT_x62h6PYHkmX8mslOogHafp-aboPTgIoroREABGiMaYIC_k2Y1VrK8t-EWzZUtqHwhIfp1TnhO1ZJiw9b_yZMY9bnOCZ1T1bl09YDqWVZqVN_q_HEM-dB3NfSR2wQ9sUmNNqSLxaHoHkKg5Y3w.I79tijv6pGsKXSPhcS48Ng.U4OgcRYwtyY8-HwdvW0hvbnYBnFOPI4BLiePLcwSReF10whseZpcnJ5gN2sm0WOgpCehx70Kcv7gjT0LXRGr4jHRRUzbdhlhT0YIjzICswA.yXQtUotGAoaKOGy4DiOmCg", "username": "hexaaagon", "email": "me@hexagonn.my.id", "discord": "scoooolzs", "twitter": "Scoooolzs" }, - "record": { + "records": { "NS": ["arch.ns.cloudflare.com", "perla.ns.cloudflare.com"] } } diff --git a/domains/hextris.json b/domains/hextris.json index 41587ba36..7af71b204 100644 --- a/domains/hextris.json +++ b/domains/hextris.json @@ -5,7 +5,7 @@ "username": "nrzt", "email": "nrzt5678@gmail.com" }, - "record": { + "records": { "CNAME": "nrzt567.github.io" } } diff --git a/domains/hexviewer.json b/domains/hexviewer.json index b14fc31dc..92600d01b 100644 --- a/domains/hexviewer.json +++ b/domains/hexviewer.json @@ -3,12 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/heyaxo.json b/domains/heyaxo.json new file mode 100644 index 000000000..9187d7f2b --- /dev/null +++ b/domains/heyaxo.json @@ -0,0 +1,16 @@ +{ + "description": "My personal homepage!", + "repo": "https://github.com/verygafanhot", + "owner": { + "username": "Verygafanhot", + "email": "verygafanhot@gmail.com", + "twitter": "verygafanhot", + "discord": "Verygafanhot" + }, + "records": { + "CNAME": "verygafanhot.github.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + }, + "proxied": true +} diff --git a/domains/heytr.json b/domains/heytr.json index 8b17a3f82..6aa4b6bba 100644 --- a/domains/heytr.json +++ b/domains/heytr.json @@ -1,10 +1,9 @@ { "owner": { "username": "heyturkiye204", - "discord": "718374283642011728", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AB-D0JAyoJsP1EWVbSBUxoDhCUdkyawehq02QQRDkCQ1Urcu4eUGKRmikFnmKMikokPPKHY73ebFVcXEuGhUkyETyP203GMFbUTgy9wykGPZE8Ba1iGxuEevHfGoHltjTkzEi_dcJ0sst_utOehLZp2lSNRXsf4QfQdp_bGVVpVbG5RP2YXjXozZIfqR5xw7vvZwSvJXSDzKvIeXgp_diinMDb3yRkFPSLO1CSDsgDocxJEnbV8m_4toQ4JiEwyACsY6wML8pvSljD_FErxrrUJwb3l1emke86CkFPvmlRAY7TFHftiFOQ74xNEF6_ZSBGhlFEnphZxHnFQabSbOlQ.cHfvuuNnY3biCSHpwKH2UQ.GCXZ93G0HxGsxtwe7kHpKlKjCO4767xt74ScKh4kpH_e4ETwDr9SlryVYTZkED_RMUZVoZ3B5xZu6ss2R9fgLnivI3HVQH7BSjTqv9vach10NrGzj6ib6QEtnq9JUoN4UQkWV4Kxjy3VnpLuHBtQow.I2tYq-7bgErLQqVDyxAH5Q" + "discord": "718374283642011728" }, - "record": { + "records": { "CNAME": "heyturkiye204.netlify.app" } } diff --git a/domains/hgia.json b/domains/hgia.json new file mode 100644 index 000000000..58908c8c6 --- /dev/null +++ b/domains/hgia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hjia98", + "email": "hoanggia1611@gmail.com" + }, + "records": { + "URL": "https://github.com/hjia98" + } +} diff --git a/domains/hi-lrmn.json b/domains/hi-lrmn.json index 61af16911..a47897ab9 100644 --- a/domains/hi-lrmn.json +++ b/domains/hi-lrmn.json @@ -6,7 +6,7 @@ "email": "lrmn.dev@gmail.com", "discord": "romanromannya#0" }, - "record": { + "records": { "CNAME": "hi-lrmn.github.io" } } diff --git a/domains/hiddenblack.json b/domains/hiddenblack.json index 41b751d69..c798f596e 100644 --- a/domains/hiddenblack.json +++ b/domains/hiddenblack.json @@ -5,7 +5,7 @@ "username": "hidden-black", "email": "shashwatrai_28@outlook.com" }, - "record": { + "records": { "CNAME": "hidden-black.github.io" } } diff --git a/domains/hien.json b/domains/hien.json index 092a76457..40d2aa8fc 100644 --- a/domains/hien.json +++ b/domains/hien.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hienlh", - "email": "hienlh1298@gmail.com" - }, - "record": { - "CNAME": "hienlh-github-io.vercel.app" - } + "owner": { + "username": "hienlh", + "email": "hienlh1298@gmail.com" + }, + "records": { + "CNAME": "hienlh-github-io.vercel.app" + } } diff --git a/domains/hieu.json b/domains/hieu.json new file mode 100644 index 000000000..33bf285e2 --- /dev/null +++ b/domains/hieu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hieutm83", + "email": "minhhieu.832k@gmail.com", + "discord": "729364691398164490" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/hifzur.json b/domains/hifzur.json index f94d12572..7dae5481c 100644 --- a/domains/hifzur.json +++ b/domains/hifzur.json @@ -3,7 +3,7 @@ "username": "hifzurmax", "email": "hifzur.syl@gmail.com" }, - "record": { + "records": { "CNAME": "hifzurmax.github.io" } } diff --git a/domains/hikamoru.json b/domains/hikamoru.json index 2a758b8f1..8be308cc0 100644 --- a/domains/hikamoru.json +++ b/domains/hikamoru.json @@ -3,7 +3,7 @@ "username": "AmoreForever", "email": "me.thefarkhodov@gmail.com" }, - "record": { + "records": { "CNAME": "hikamoru.pages.dev" } } diff --git a/domains/hilight3r.json b/domains/hilight3r.json index 4936529b5..fcd5e0f04 100644 --- a/domains/hilight3r.json +++ b/domains/hilight3r.json @@ -1,10 +1,9 @@ { "owner": { "username": "HIlight3R", - "discord": "632272741000544259", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lEEbmOZavCkur0apEhD0MigNx6rzV3Kqhd9_Lw4Wxt7U7b0rcV779rEFB1Fm4LdwKAVJJ8_MeDm1jf0y14lGqQotXsvYzRKOCBk5t7vLtS_541WkodNwOPbAUV_g2KBaq6MynjnwX5786OLkuRJE-QnxwflxQRQHtL76xYJV3d7UVmZk0ppSUxyCw5SdSXUp7zgoJiTE2JIshtR5dFULQCyH9QK7gVpNFJBwaoTJeoRsCOy_oYoXVhYysYhX94tubtwKzE4xSDmQW4UbOo8yLRNTIo-PkyuY6cBD4yYvueRcTAd_UChS12Y27QSFhQq78I7WLaE7u4cV060Th1fEmA.9kQc0tIg1PyfXJtKgbiBSQ.uFTPklnOgLBqnu-dg7ZsCEZ_QrMiuyiHY60IgI1X3CdE1kSQckWTdApOQF8AXTC0inYYfmSpfvzP02Rcgo3Z9vyrckWG_ZSJbmfKR2SOpeN_Cq94jwKAZQXW0U45LxB1.cYkl_VljmQbyvurLc7hF6Q" + "discord": "632272741000544259" }, - "record": { + "records": { "CNAME": "hilight3r.github.io" } } diff --git a/domains/hilmansyah.json b/domains/hilmansyah.json index 9135f4116..acc845195 100644 --- a/domains/hilmansyah.json +++ b/domains/hilmansyah.json @@ -7,7 +7,7 @@ "twitter": "hillzacky", "discord": "830349326785314846" }, - "record": { + "records": { "CNAME": "hillzacky.github.io" } } diff --git a/domains/himanshu.json b/domains/himanshu.json index 868a6e3e5..c4c16ef58 100644 --- a/domains/himanshu.json +++ b/domains/himanshu.json @@ -6,7 +6,7 @@ "email": "himanshuuu.2001@gmail.com", "twitter": "himanshuuu_2001" }, - "record": { + "records": { "CNAME": "himu-2001.github.io" } } diff --git a/domains/himanshusri.json b/domains/himanshusri.json index ef7294b16..d5d9265f1 100644 --- a/domains/himanshusri.json +++ b/domains/himanshusri.json @@ -3,7 +3,7 @@ "username": "himanshuSri24", "email": "himanshu20032002@gmail.com" }, - "record": { + "records": { "CNAME": "himanshusri24.github.io" } } diff --git a/domains/himashu.json b/domains/himashu.json index bd8feee3a..3d105844f 100644 --- a/domains/himashu.json +++ b/domains/himashu.json @@ -1,13 +1,12 @@ { "description": "About Himanshu Chhatwal", - "repo": "https://github.com/himanshu1221", "owner": { "username": "himanshu1221", "email": "himanshuchhatwal9295@gmail.com", "twitter": "himanshuchhatw2", "discord": "Himanshu2314#1751" }, - "record": { + "records": { "URL": "https://himanshuchhatwal.netlify.app" } } diff --git a/domains/himesh.json b/domains/himesh.json new file mode 100644 index 000000000..053281e23 --- /dev/null +++ b/domains/himesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "himeshparashar", + "email": "himeshparashar424@gmail.com" + }, + "records": { + "CNAME": "site-himeshparashar.netlify.app" + } +} diff --git a/domains/himeshparashar.json b/domains/himeshparashar.json new file mode 100644 index 000000000..053281e23 --- /dev/null +++ b/domains/himeshparashar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "himeshparashar", + "email": "himeshparashar424@gmail.com" + }, + "records": { + "CNAME": "site-himeshparashar.netlify.app" + } +} diff --git a/domains/hinal-sanghvi.json b/domains/hinal-sanghvi.json index 1a54d4be2..234f34f41 100644 --- a/domains/hinal-sanghvi.json +++ b/domains/hinal-sanghvi.json @@ -4,7 +4,7 @@ "owner": { "username": "hinal-sanghvi" }, - "record": { + "records": { "CNAME": "hinal-sanghvi.github.io" } } diff --git a/domains/hipo.json b/domains/hipo.json index f8c44cc99..70945db27 100644 --- a/domains/hipo.json +++ b/domains/hipo.json @@ -5,7 +5,7 @@ "username": "badowhp", "email": "badowhp@gmail.com" }, - "record": { + "records": { "CNAME": "badowhp.github.io" } } diff --git a/domains/hirako.json b/domains/hirako.json index 61031742b..d03b86ec0 100644 --- a/domains/hirako.json +++ b/domains/hirako.json @@ -5,7 +5,7 @@ "twitter": "hirakoisdead", "reddit": "u/hirakotm" }, - "record": { + "records": { "CNAME": "website-5xr.pages.dev" } } diff --git a/domains/hiren-brahmbhatt.json b/domains/hiren-brahmbhatt.json index fa1070f2c..c348f544c 100644 --- a/domains/hiren-brahmbhatt.json +++ b/domains/hiren-brahmbhatt.json @@ -5,7 +5,7 @@ "username": "hiren-brahmbhatt", "email": "hiren-brahmbhatt@acquaintsoft.com" }, - "record": { + "records": { "CNAME": "hiren-brahmbhatt.github.io" } } diff --git a/domains/hiren.json b/domains/hiren.json index 9fc8e2f6a..145070a37 100644 --- a/domains/hiren.json +++ b/domains/hiren.json @@ -3,7 +3,7 @@ "username": "hiren2001", "email": "329065_tt21@ldceahm.gujgov.edu.in" }, - "record": { + "records": { "CNAME": "hiren2001.github.io" } } diff --git a/domains/hironichu.json b/domains/hironichu.json index b5593db33..786159abf 100644 --- a/domains/hironichu.json +++ b/domains/hironichu.json @@ -1,11 +1,10 @@ { "description": "Yes I am a developer", - "repo": "https://github.com/hironichu", "owner": { "username": "hironichu", "email": "hironichu@gmail.com" }, - "record": { + "records": { "A": ["34.120.54.55"], "TXT": "deno-com-validation=f1b7200ba5f97a80db0aaa12" } diff --git a/domains/hisham.json b/domains/hisham.json index 7b3b6561f..16455fdfc 100644 --- a/domains/hisham.json +++ b/domains/hisham.json @@ -5,7 +5,7 @@ "username": "hishamalip", "email": "hishamalip@gmail.com" }, - "record": { + "records": { "CNAME": "hishamalip.github.io" } } diff --git a/domains/hiten.json b/domains/hiten.json index 68eda86cd..1287f6357 100644 --- a/domains/hiten.json +++ b/domains/hiten.json @@ -5,7 +5,7 @@ "username": "htadg", "email": "sharma.hiten3@gmail.com" }, - "record": { + "records": { "CNAME": "htadg.github.io" } } diff --git a/domains/hitesh-makodiya.json b/domains/hitesh-makodiya.json index 89b58d0aa..e5cc09501 100644 --- a/domains/hitesh-makodiya.json +++ b/domains/hitesh-makodiya.json @@ -4,7 +4,7 @@ "owner": { "username": "hitesh-makodiya" }, - "record": { + "records": { "CNAME": "hitesh-makodiya.github.io" } } diff --git a/domains/hitesh.json b/domains/hitesh.json index cf2577453..3f01672e6 100644 --- a/domains/hitesh.json +++ b/domains/hitesh.json @@ -3,7 +3,7 @@ "username": "hitesh-can-code", "email": "hiteshofficalyt@gmail.com" }, - "record": { + "records": { "CNAME": "hvlxh.pages.dev" } } diff --git a/domains/hive.alvin.json b/domains/hive.alvin.json index 810c13865..19f6673c5 100644 --- a/domains/hive.alvin.json +++ b/domains/hive.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/hiwind.json b/domains/hiwind.json index 5648809c8..46ce625b1 100644 --- a/domains/hiwind.json +++ b/domains/hiwind.json @@ -3,7 +3,7 @@ "username": "jaydoublay", "email": "jeremy@jaydoublay.com" }, - "record": { + "records": { "URL": "https://www.hiwind.me" } } diff --git a/domains/hixtrionix.json b/domains/hixtrionix.json new file mode 100644 index 000000000..23d28e241 --- /dev/null +++ b/domains/hixtrionix.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Hixtrionix/is-a-dev-register", + "owner": { + "username": "Hixtrionix", + "email": "aflores@cop.es" + }, + "records": { + "CNAME": "dev-webpage.web.app" + } +} diff --git a/domains/hjc.json b/domains/hjc.json new file mode 100644 index 000000000..8d6fe21f5 --- /dev/null +++ b/domains/hjc.json @@ -0,0 +1,12 @@ +{ + "description": "The repo is my personal blog,it will record the things about how to develop.I will make some tutorials as well.", + "repo": "https://github.com/hjc-code/hjc-code.github.io", + "owner": { + "username": "hjc-code", + "email": "houjuncheng.me@gmail.com" + }, + "records": { + "CNAME": "hjc-code.github.io" + }, + "proxied": true +} diff --git a/domains/hjd.json b/domains/hjd.json index 2f5e93ba9..e890bab12 100644 --- a/domains/hjd.json +++ b/domains/hjd.json @@ -1,10 +1,9 @@ { "owner": { "username": "jindongh", - "discord": "747475555133292566", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.GGA50arXlBZ2DyYbEXwSfiEvfUAhdXqPx3JxwSQ593x4RLc9a3yUHdyKtb8fbWuW-w74kJopmHnadfzF0W4IrKnzHXw6Q82xuRlpiB529QbcUc2YaNtAAwpqUAqkiHRVJN93biYkGweQNlnBfyi0_eGX8JUnKZkGbKhEN4Vcq0L0r_ONdY7tUfQfVK_4XBiPW89CwJHujzX676VxsbbtxaQDUkkDCF9eH6V-gW8G64pNIW_rOExrs0l5WGLjOjiKo5KlZyxzwBHX9w6Fvnx69YyxamYa1UXTUoAoe9Hi4Yi0Gy2GnnGMh56Da2ah5SUtN62b2qWX2q14JS99ellIjg.R77sNRkxywjiJHEUfRcL0g.u9W2J8SSl-il0cZ3x9f4ID3KqIHOS80fXuBtiqJZOBgTbqUY4HM0t-eQXMO1sCl6UWwCSIszlW9Q8mR96ijBVFrjQ4qJtD6Wzn0ia2updu4.Ucf2hDLtL9KbH6XFTYmiaA" + "discord": "747475555133292566" }, - "record": { + "records": { "A": ["73.202.31.143"] } } diff --git a/domains/hjmao.json b/domains/hjmao.json index 33b6cca15..202313d86 100644 --- a/domains/hjmao.json +++ b/domains/hjmao.json @@ -5,7 +5,7 @@ "username": "huajianmao", "email": "huajianmao@gmail.com" }, - "record": { + "records": { "CNAME": "huajianmao.github.io" } } diff --git a/domains/hjr.json b/domains/hjr.json new file mode 100644 index 000000000..75b959ea3 --- /dev/null +++ b/domains/hjr.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for JrHimself.", + "owner": { + "username": "hongjr03", + "email": "me@jrhim.com" + }, + "records": { + "CNAME": "hongjr03-github-io.vercel.app" + } +} diff --git a/domains/hk.json b/domains/hk.json index 7659d6bbb..a20055bdd 100644 --- a/domains/hk.json +++ b/domains/hk.json @@ -3,7 +3,7 @@ "username": "ericsia", "email": "medlexopm@gmail.com" }, - "record": { + "records": { "CNAME": "sga.domcloud.co" } } diff --git a/domains/hkamran.json b/domains/hkamran.json index 338df9874..ed9ea2354 100644 --- a/domains/hkamran.json +++ b/domains/hkamran.json @@ -3,7 +3,7 @@ "username": "hkamran80", "email": "hkamran@hkamran.com" }, - "record": { + "records": { "URL": "https://hkamran.com/?ref=isadev" } } diff --git a/domains/hkdkfih.json b/domains/hkdkfih.json index 6db27c4c3..2698fb6d9 100644 --- a/domains/hkdkfih.json +++ b/domains/hkdkfih.json @@ -4,7 +4,7 @@ "email": "admin@cherry.work.gd", "discord": "1201107428608049164" }, - "record": { + "records": { "CNAME": "cherryservice.github.io" } } diff --git a/domains/hmp.json b/domains/hmp.json new file mode 100644 index 000000000..2ab717546 --- /dev/null +++ b/domains/hmp.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain points to my portfolio website. https://blog-jimmy-hoangs-projects.vercel.app/ is the link for a preview of the website", + "owner": { + "username": "hmphu", + "email": "me@hmphu.com", + "discord": "830872854677422150" + }, + "records": { + "CNAME": "blog-jimmy-hoangs-projects.vercel.app" + } +} diff --git a/domains/hnks.json b/domains/hnks.json new file mode 100644 index 000000000..7c46fd20e --- /dev/null +++ b/domains/hnks.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/hnks-gh/hnks-gh.github.io", + "owner": { + "username": "hnks-gh", + "email": "contact@mellifluous.eu.org" + }, + "records": { + "CNAME": "hnks-gh.github.io" + }, + "proxied": false +} diff --git a/domains/hoan.json b/domains/hoan.json new file mode 100644 index 000000000..49793a0fa --- /dev/null +++ b/domains/hoan.json @@ -0,0 +1,10 @@ +{ + "description": "hoan.is-a.dev : This is my personal notebook", + "owner": { + "username": "hwanngo", + "email": "conghoan.0406@gmail.com" + }, + "records": { + "CNAME": "hwanngo.github.io" + } +} diff --git a/domains/hoang3409.json b/domains/hoang3409.json index 378f9f821..cb74f1fe5 100644 --- a/domains/hoang3409.json +++ b/domains/hoang3409.json @@ -4,7 +4,7 @@ "username": "hoang3409", "email": "nvh.02021995@gmail.com" }, - "record": { + "records": { "CNAME": "hoang3402.github.io" } } diff --git a/domains/hoangtran99.json b/domains/hoangtran99.json index 6af9777cb..78372fc96 100644 --- a/domains/hoangtran99.json +++ b/domains/hoangtran99.json @@ -4,7 +4,7 @@ "username": "hoangtran0410", "email": "99.hoangtran@gmail.com" }, - "record": { + "records": { "CNAME": "hoangtran0410.github.io" } } diff --git a/domains/holdulv.json b/domains/holdulv.json new file mode 100644 index 000000000..1a5a1bb87 --- /dev/null +++ b/domains/holdulv.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Holdulv-official", + "email": "holdulvlinks@gmail.com", + "discord": "holdulv" + }, + "records": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/holedev.json b/domains/holedev.json new file mode 100644 index 000000000..d26169278 --- /dev/null +++ b/domains/holedev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "holedev", + "email": "contact@holedev.com" + }, + "records": { + "URL": "https://github.com/holedev" + } +} diff --git a/domains/holux.json b/domains/holux.json new file mode 100644 index 000000000..fbafffd6d --- /dev/null +++ b/domains/holux.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "holux-design", + "email": "office@holux-design.at" + }, + "records": { + "URL": "https://holux-design.at" + } +} diff --git a/domains/homelab.json b/domains/homelab.json new file mode 100644 index 000000000..2e1d004ba --- /dev/null +++ b/domains/homelab.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for dynamic DNS updates and Cloudflare Tunnel setup for demo and home lab purposes", + "owner": { + "username": "vikipranata", + "email": "helovikipranata@gmail.com" + }, + "records": { + "NS": ["deb.ns.cloudflare.com", "sid.ns.cloudflare.com"] + } +} diff --git a/domains/homelander.json b/domains/homelander.json index d0b2c8ea4..dc7cad3c9 100644 --- a/domains/homelander.json +++ b/domains/homelander.json @@ -3,7 +3,7 @@ "username": "GokuPlay609", "email": "GokuPlay609@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/homemadestea58.json b/domains/homemadestea58.json index b99176bcf..bdadee2f6 100644 --- a/domains/homemadestea58.json +++ b/domains/homemadestea58.json @@ -1,11 +1,10 @@ { "description": "Add some description", - "repo": "https://github.com/Homemadestea58homemadestea58.github.io", "owner": { "username": "Homemadestea58", "email": "conor.collins+isadev@dbbstu.catholic.edu.au" }, - "record": { + "records": { "CNAME": "homemadestea58.github.io" } } diff --git a/domains/hongquang.json b/domains/hongquang.json new file mode 100644 index 000000000..0b087a900 --- /dev/null +++ b/domains/hongquang.json @@ -0,0 +1,11 @@ +{ + "description": "For introduce myself", + "repo": "https://github.com/HQuang/HQuang", + "owner": { + "username": "quanglh268", + "email": "quanglh268@gmail.com" + }, + "records": { + "CNAME": "hquang.github.io" + } +} diff --git a/domains/hongson.json b/domains/hongson.json index 44d0ed479..e40db200e 100644 --- a/domains/hongson.json +++ b/domains/hongson.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "hongson209", - "discord": "1221370693959286892", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U-QKtaxmfpnD4gyKpxceyXEJniqrouqFqMLOUr-R5US7q9t7CgEfpFVf1ICJC22NBFQDIZupwEWf0ggOhHjcRcq5ptxy5fMav6RNrt7luJzeDwdgFroBFbg2XjlY5ArfsJiPqEAJJspN3wt9cGoxb2WG6MQHwID90F3cS4PijOnThMX9h-qkOzXzCUwch4ex2qa7_MsQKbaEICSMJDphr1bX5FCUCMqFmRTF5LltjhLBh65zEXHPZZiKKZVWmbb4ENWv-C6PlSX2W2NrtbWn6AJBafdOTDKH2gFw2nbZMc-BpQB93PKcsHnMpyaUEuGE6miZwt-yP9RwI0hRRheDw.Su7jI9kAzVy63eUkcb2qVQ.m9-XLef-CoAmPkHyXSfzyZeDUQW0FliIJ_E91X6oD4B-3aoItG32mUMGDlNntwzOk1CbbSUXQDLY7q2zoHP-A.aQsLYDPrqxn-VyenjREoeA" - }, - - "record": { - "CNAME": "hongson209.github.io" - } - } - + "owner": { + "username": "hongson209", + "discord": "1221370693959286892" + }, + "records": { + "CNAME": "hongson209.github.io" + } +} diff --git a/domains/hoogdorp.json b/domains/hoogdorp.json index 194bfd216..0505a2d40 100644 --- a/domains/hoogdorp.json +++ b/domains/hoogdorp.json @@ -3,7 +3,7 @@ "username": "Gunterke", "email": "gunterke@zoho.eu" }, - "record": { + "records": { "CNAME": "gratis-4925113.jouwweb.site" } } diff --git a/domains/hoojinguyen.json b/domains/hoojinguyen.json new file mode 100644 index 000000000..413b3e2d4 --- /dev/null +++ b/domains/hoojinguyen.json @@ -0,0 +1,11 @@ +{ + "description": "hoojinguyen.is-a.dev : This is my personal notebook", + "repo": "https://github.com/hoojinguyen/portfolio-by-ai", + "owner": { + "username": "hoojinguyen", + "email": "vn.hoinv98@gmail.com" + }, + "records": { + "URL": "https://hooji-nguyen.vercel.app/" + } +} diff --git a/domains/hooman.json b/domains/hooman.json index d142a8f2a..ba94c074f 100644 --- a/domains/hooman.json +++ b/domains/hooman.json @@ -5,7 +5,7 @@ "username": "hooman23", "discord": "hooman23" }, - "record": { + "records": { "CNAME": "thisisalegitusername.github.io" } } diff --git a/domains/horibyte.json b/domains/horibyte.json new file mode 100644 index 000000000..cff70fef2 --- /dev/null +++ b/domains/horibyte.json @@ -0,0 +1,11 @@ +{ + "description": "Horibyte's personal website", + "repo": "https://github.com/horibyte/horibyte.github.io", + "owner": { + "username": "horibyte", + "email": "thehoribyte@gmail.com" + }, + "records": { + "CNAME": "horibyte.github.io" + } +} diff --git a/domains/horizon-server.json b/domains/horizon-server.json index 08cd9a80a..8b50b0819 100644 --- a/domains/horizon-server.json +++ b/domains/horizon-server.json @@ -4,7 +4,7 @@ "email": "getbomb@bk.ru", "discord": "1223721772051075193" }, - "record": { + "records": { "CNAME": "horizonfiles.github.io" } } diff --git a/domains/horizon.json b/domains/horizon.json index a9e0ec27f..60685ed7a 100644 --- a/domains/horizon.json +++ b/domains/horizon.json @@ -3,7 +3,7 @@ "username": "Horizon1010", "discord": "877848431983493132" }, - "record": { + "records": { "CNAME": "lunar-hangout.pages.dev" } } diff --git a/domains/horn7x.json b/domains/horn7x.json index 77e806d77..f23de8a6d 100644 --- a/domains/horn7x.json +++ b/domains/horn7x.json @@ -3,7 +3,7 @@ "username": "horn7x", "email": "horn7x@gmail.com" }, - "record": { + "records": { "CNAME": "horn7x.github.io" } } diff --git a/domains/horu.json b/domains/horu.json index a2dfe34c5..9bf66af5b 100644 --- a/domains/horu.json +++ b/domains/horu.json @@ -1,9 +1,8 @@ { "owner": { - "username": "HigherOrderLogic", - "email": "73709188+HigherOrderLogic@users.noreply.github.com" + "username": "HigherOrderLogic" }, - "record": { + "records": { "CNAME": "higherorderlogic.github.io" } } diff --git a/domains/host-image.json b/domains/host-image.json index 57d30f8c5..96ab0ceea 100644 --- a/domains/host-image.json +++ b/domains/host-image.json @@ -3,7 +3,7 @@ "username": "heyjumanji", "email": "madhuchutiya.unhinge650@silomails.com" }, - "record": { + "records": { "CNAME": "host-image.pages.dev" } } diff --git a/domains/host.xandaah.json b/domains/host.xandaah.json index 91160721f..0203f5c24 100644 --- a/domains/host.xandaah.json +++ b/domains/host.xandaah.json @@ -1,10 +1,9 @@ { "owner": { "username": "xandaaah", - "discord": "726910228289028127", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T1qnVgduBT3ZaAhLEpPEEpb7lbe4ISMDiDt3L2wEAAbg-_gm0F_9uB1DsruJ6418nBUqz9eG_v0DInwIW6CvlbvceaOvBdF0lFElUSYowFWQg7fTBCIw1DkzUxiQubGAqpt6WiVt0sOSBFUnzOoYbxrmPFH3S5LgSzWoNwcqNZyFdz7At-vj3w61pL59zTHy_wdc_nckD1aLeonZIUxzfQKbL4dvdvnhLRlalVdBtE_Co20zUiUa_-JpEqSlfxAmURQSAyjfOCl_Y9ypizv018se-P0d6K8p7Ta2vNpWLsXWVMW3fOStQiiSqZMx-5V1b6FZdlDTMdXIXBywGH7LNQ.xVZdl43zV0s9MvRWdwvv_w.7Su9KEKZiIDVcbcsiehxY8zisq82fUx44Lj0tO6v9em0f65-x5Wi_FFa4yKBfqZxfVpsvpoc8wDHiOAqQPk_3I1XCxRKP07O884FgeLWEmc.7y2cHSgkts0nDvbHecDvCA" + "discord": "726910228289028127" }, - "record": { + "records": { "A": ["32.216.183.113"] } } diff --git a/domains/hotfix.saftec.json b/domains/hotfix.saftec.json index 1b5d366c3..b81ef421f 100644 --- a/domains/hotfix.saftec.json +++ b/domains/hotfix.saftec.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } + "owner": { + "username": "Samuraiflamesf", + "email": "Samuraiflamesf@gmail.com" + }, + "records": { + "A": ["152.67.45.142"] + } } diff --git a/domains/hotspot.json b/domains/hotspot.json index 6b4c5ae40..4300c7a5f 100644 --- a/domains/hotspot.json +++ b/domains/hotspot.json @@ -4,7 +4,7 @@ "email": "msc2tvdn@duck.com", "discord": "962788530336178236" }, - "record": { + "records": { "A": ["213.238.183.171"] } } diff --git a/domains/houloude9.json b/domains/houloude9.json index c0c9c96db..bc503ee30 100644 --- a/domains/houloude9.json +++ b/domains/houloude9.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Houloude9IOfficial" - }, - "record": { - "CNAME": "houloude9.pages.dev" - } + "owner": { + "username": "Houloude9IOfficial" + }, + "records": { + "CNAME": "houloude9.pages.dev" + } } diff --git a/domains/houlton.json b/domains/houlton.json index d30abda61..2c8eecb61 100644 --- a/domains/houlton.json +++ b/domains/houlton.json @@ -5,7 +5,7 @@ "username": "ahoulton", "email": "ignhoulton@gmail.com" }, - "record": { + "records": { "URL": "https://solo.to/houlton" } } diff --git a/domains/hozzywozzy.json b/domains/hozzywozzy.json index 4d3a30839..69ab8585b 100644 --- a/domains/hozzywozzy.json +++ b/domains/hozzywozzy.json @@ -5,7 +5,7 @@ }, "description": "domain for testing purposes", "repo": "https://github.com/hozzywozzy/hozzywozzy", - "record": { + "records": { "CNAME": "hozzywozzy.github.io" } } diff --git a/domains/hridimay.json b/domains/hridimay.json index 3ac435491..1172022a4 100644 --- a/domains/hridimay.json +++ b/domains/hridimay.json @@ -3,7 +3,7 @@ "username": "hridimay", "email": "hridimay@gmail.com" }, - "record": { + "records": { "CNAME": "hridimay.github.io" } } diff --git a/domains/hroot.json b/domains/hroot.json new file mode 100644 index 000000000..aaca9d7ac --- /dev/null +++ b/domains/hroot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "H-Root", + "email": "sudo.hroot@gmail.com" + }, + "records": { + "URL": "https://hroot.dev/" + } +} diff --git a/domains/hsn.json b/domains/hsn.json new file mode 100644 index 000000000..cbbef8a17 --- /dev/null +++ b/domains/hsn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hasan-bro-coder", + "email": "hasanur23910@gmail.com", + "discord": "hasan894" + }, + "records": { + "CNAME": "hasanur.vercel.app" + } +} diff --git a/domains/htrnguyen.json b/domains/htrnguyen.json new file mode 100644 index 000000000..94a988e05 --- /dev/null +++ b/domains/htrnguyen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "htrnguyen", + "email": "hatrongnguyen04@gmail.com" + }, + "records": { + "CNAME": "astro-portfolio-nu-seven.vercel.app" + } +} diff --git a/domains/hu-kaixiang.json b/domains/hu-kaixiang.json index 3ad085a46..a1c47b00e 100644 --- a/domains/hu-kaixiang.json +++ b/domains/hu-kaixiang.json @@ -5,7 +5,7 @@ "username": "Maxhu787", "email": "maxhu787@gmail.com" }, - "record": { + "records": { "CNAME": "maxhu787.github.io" } } diff --git a/domains/hub.json b/domains/hub.json new file mode 100644 index 000000000..587948650 --- /dev/null +++ b/domains/hub.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jOaawd", + "email": "theyneverfwmee@gmail.com" + }, + "records": { + "CNAME": "cqtmfxgu.up.railway.app" + } +} diff --git a/domains/hudson.json b/domains/hudson.json index 68e3b9ac0..c6d796833 100644 --- a/domains/hudson.json +++ b/domains/hudson.json @@ -1,10 +1,9 @@ { "owner": { "username": "Hudson-Liu", - "discord": "879464844103934014", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IOrkBDTOL8e5YwmSg1zQx2TOp0s6X984MjKxTc5Mwh9FajQFzQ6PkA_BfRn4LVFwuuVsURcPR-7J5Y4ZR0I35Ug1j1JCxjUHcgRyxMyiiiNnrQCGe2bdTDFKBaPbyIOKhUT94mv8YOh8pqQJVPPcEzQ9oXonSRsAMGGqE-4kAr41UIusklBWaA9F8Z8cRLEtIB1si9bMA6R3iLlTxEVYtXl7OgrRxF0Bt1gb9_fnF3oKTWT3w5S19XQYqfMD1RCwl3AKJEBpDq7Vcr0sgYlOYG-W_hWWMyxf7NNrIG-9Vz2UyXeM531eqP40tp1lIp7EWwE0TqdYcrRCaAafFS1D3g.TMk5oUDQEorIXe7kJK1gvA.N43xlqEWY9K4lmLeHC-5Z2C4BxkzdwLBKcO_p770ZdSWJbagO8mBzwZsFfvrSTJZNO0sJqFtrS3Rdk_aSBQNONXCYSOafIqCtjz1b4mZ4vA._Fj9x0E13gOT07yIeuhemw" + "discord": "879464844103934014" }, - "record": { + "records": { "CNAME": "hudson-liu.github.io" } } diff --git a/domains/hugo.json b/domains/hugo.json new file mode 100644 index 000000000..428085bc8 --- /dev/null +++ b/domains/hugo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hugorplobo", + "email": "hugorplobo@gmail.com" + }, + "records": { + "CNAME": "hugorplobo.github.io" + } +} diff --git a/domains/hugovidafe.json b/domains/hugovidafe.json index 268a804f7..050c64741 100644 --- a/domains/hugovidafe.json +++ b/domains/hugovidafe.json @@ -3,7 +3,7 @@ "username": "0x1026", "email": "me@hugovidafe.dev" }, - "record": { + "records": { "URL": "https://hugovidafe.dev" } } diff --git a/domains/hujjat.json b/domains/hujjat.json index d2a56b113..adb3f32f1 100644 --- a/domains/hujjat.json +++ b/domains/hujjat.json @@ -2,7 +2,7 @@ "owner": { "username": "hujjatiii" }, - "record": { + "records": { "CNAME": "hujmosaviblog.vercel.app" } } diff --git a/domains/hung-contact.json b/domains/hung-contact.json index 2affe180f..f19d05012 100644 --- a/domains/hung-contact.json +++ b/domains/hung-contact.json @@ -3,7 +3,7 @@ "username": "hunghg255", "email": "giahunghust@gmail.com" }, - "record": { + "records": { "URL": "https://hunghg-contact.vercel.app" } } diff --git a/domains/hung.json b/domains/hung.json index f456c4570..87454d4ca 100644 --- a/domains/hung.json +++ b/domains/hung.json @@ -3,7 +3,7 @@ "username": "hunghg255", "email": "giahunghust@gmail.com" }, - "record": { + "records": { "URL": "https://hunghg-portfolio.vercel.app" } } diff --git a/domains/hung319.json b/domains/hung319.json index 3cc16e42c..766424976 100644 --- a/domains/hung319.json +++ b/domains/hung319.json @@ -4,7 +4,7 @@ "username": "hung319", "email": "hungh6122@gmail.com" }, - "record": { + "records": { "CNAME": "hung319.github.io" } } diff --git a/domains/hungphambkc.json b/domains/hungphambkc.json new file mode 100644 index 000000000..a31e2be1c --- /dev/null +++ b/domains/hungphambkc.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio redirect for hungphambkc", + "repo": "https://github.com/hungphambkc/hungphambkc.github.io", + "owner": { + "username": "hungphambkc", + "email": "phamhung2001@icloud.com" + }, + "records": { + "CNAME": "hungphambkc.github.io" + } +} diff --git a/domains/hungthai.json b/domains/hungthai.json new file mode 100644 index 000000000..51cc5e04e --- /dev/null +++ b/domains/hungthai.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Resume Website", + "repo": "https://github.com/hungthai1401/resume", + "owner": { + "username": "hungthai1401", + "email": "hungthai1401.it@gmail.com" + }, + "records": { + "CNAME": "hungthai1401.github.io" + } +} diff --git a/domains/huntroid.json b/domains/huntroid.json index a8726b01f..1b9cce339 100644 --- a/domains/huntroid.json +++ b/domains/huntroid.json @@ -3,7 +3,13 @@ "username": "hunterz-killer", "email": "srimath8@gmail.com" }, - "record": { - "A": ["185.199.108.153"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/huseyin.json b/domains/huseyin.json index f100e0ab5..62c0081f0 100644 --- a/domains/huseyin.json +++ b/domains/huseyin.json @@ -5,7 +5,7 @@ "username": "Huseyin-Cinar", "email": "gslicocuk8080@gmail.com" }, - "record": { + "records": { "CNAME": "huseyin-cinar.github.io" } } diff --git a/domains/huu-hoang.json b/domains/huu-hoang.json new file mode 100644 index 000000000..cd25e5d73 --- /dev/null +++ b/domains/huu-hoang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "email": "huuhoag1412@gmail.com", + "username": "Mirai3103" + }, + "records": { + "A": ["103.82.194.100"] + } +} diff --git a/domains/huyen.json b/domains/huyen.json index 4cfd15cdc..bfe51baf3 100644 --- a/domains/huyen.json +++ b/domains/huyen.json @@ -6,7 +6,7 @@ "email": "huyenit200x@gmail.com", "twitter": "huyenit200x" }, - "record": { + "records": { "CNAME": "huyenit200x.github.io" } } diff --git a/domains/huygd.json b/domains/huygd.json index 8f3a12618..6c75b069a 100644 --- a/domains/huygd.json +++ b/domains/huygd.json @@ -5,10 +5,8 @@ "username": "huygmdvn", "email": "huynhquochuytkna@gmail.com" }, - "record": { + "records": { "A": ["103.77.240.59"], - "TXT": [ - "google-site-verification=ccDxQ_D0wTltS6cPq0sG76u3vGEPeqFFQEwHOGfXXE8" - ] + "TXT": ["google-site-verification=ccDxQ_D0wTltS6cPq0sG76u3vGEPeqFFQEwHOGfXXE8"] } } diff --git a/domains/huygmd-is-a-dev.json b/domains/huygmd-is-a-dev.json index 633bf8223..4e250ea8c 100644 --- a/domains/huygmd-is-a-dev.json +++ b/domains/huygmd-is-a-dev.json @@ -5,7 +5,7 @@ "username": "huygmdvn", "email": "huynhquochuytkna@gmail.com" }, - "record": { + "records": { "A": ["103.77.240.59"] } } diff --git a/domains/huygmd.json b/domains/huygmd.json index 2809539b9..44b19db8c 100644 --- a/domains/huygmd.json +++ b/domains/huygmd.json @@ -5,10 +5,8 @@ "username": "huygmdvn", "email": "huynhquochuytkna@gmail.com" }, - "record": { + "records": { "A": ["103.77.240.59"], - "TXT": [ - "google-site-verification=FCWHg1XBnXBvp3xuLqQatJfp0esM4CrZYbPfkhkMzyk" - ] + "TXT": ["google-site-verification=FCWHg1XBnXBvp3xuLqQatJfp0esM4CrZYbPfkhkMzyk"] } } diff --git a/domains/huz.json b/domains/huz.json index 547fd3d73..79af7e866 100644 --- a/domains/huz.json +++ b/domains/huz.json @@ -6,7 +6,7 @@ "email": "farighinsaan123@gmail.com", "discord": "excalibur._.dev" }, - "record": { + "records": { "CNAME": "nooby69.github.io" } } diff --git a/domains/hvlxh.json b/domains/hvlxh.json index c143154a3..8531c78fe 100644 --- a/domains/hvlxh.json +++ b/domains/hvlxh.json @@ -4,7 +4,7 @@ "email": "monsta22019@gmail.com", "discord": "hvlxh#0001" }, - "record": { + "records": { "URL": "https://hvlxh.vercel.app" } } diff --git a/domains/hvn-network.json b/domains/hvn-network.json index fcd0a18dc..9b59601b0 100644 --- a/domains/hvn-network.json +++ b/domains/hvn-network.json @@ -1,10 +1,9 @@ { "owner": { "username": "DaoLmao", - "discord": "854380469147140106", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YYiTtfWSDHwSXb9MT6WVA8YGngFs8Na5NWWp15dLNgSOSkCDhyusojmz9so8D__NVF_MVbJ4dJ4mKUsoF1PQL_dRh-ZTINAFVnzjD4zGyFMW9nH7Q6wDk98tIGh5ZNfOUrqKgPUvslXMdDxtvkQ0ozsZB7XcIM6W35jHzHzjNYIJl58mTWlYg3qHXNcCZHXlDU-b4Qpq_yX4knBFpBBraJM-u8-j7MAkQgsX1x3kE_3LrR2W6d3AS_SofP_V7fSO-NU01glhbYPmp0TLXK0CxCGnhu8ZMzQPGD82TjN8pRtVUpQsbtMhcrCEwEmqkOXQ-D_Z4tKa_B-Qk_2g5c_gTw.HSLX0hOyRsELsyTL-Mk2tQ.WiNb7GNeSUyuaLRx6c-d00Eiv4ZC9OZM1h7_mKjjkC6AK5pdRSSvIOVpUy1c0ZRQ26SwekgDLz-rWm9GP2g5e4noskG9_2IiaH7BTg5lXb4.rxXv1bVYwiMt0sVdZz2rZg" + "discord": "854380469147140106" }, - "record": { + "records": { "CNAME": "28dc2ff8b0c75ec76975e404306d189e.ipv4.tcpshield.com" } } diff --git a/domains/hxphsts.json b/domains/hxphsts.json index 5789f698f..f6b213ebf 100644 --- a/domains/hxphsts.json +++ b/domains/hxphsts.json @@ -3,7 +3,7 @@ "username": "hxphsts", "email": "hxphsts@kernelx.ai" }, - "record": { + "records": { "URL": "https://hxphsts.kernelx.ai" } } diff --git a/domains/hycord.json b/domains/hycord.json index 482ca4839..bfa5a4f65 100644 --- a/domains/hycord.json +++ b/domains/hycord.json @@ -7,7 +7,7 @@ "twitter": "IGNHycord", "discord": "322144499734151169" }, - "record": { + "records": { "URL": "https://masen.dev/" } } diff --git a/domains/hyena.json b/domains/hyena.json index afb7f0b48..a90c48fda 100644 --- a/domains/hyena.json +++ b/domains/hyena.json @@ -5,7 +5,7 @@ "username": "MrGriefs", "email": "hagen@paw.bot" }, - "record": { + "records": { "URL": "https://hyena.gay" } } diff --git a/domains/hypnomacka.json b/domains/hypnomacka.json index 861bfdd14..ab8051ca6 100644 --- a/domains/hypnomacka.json +++ b/domains/hypnomacka.json @@ -3,7 +3,7 @@ "username": "hypnomacka", "email": "hypnomacka@gmail.com" }, - "record": { + "records": { "CNAME": "hypnomacka.github.io" } } diff --git a/domains/hyr1nk.json b/domains/hyr1nk.json new file mode 100644 index 000000000..9cb76fb7d --- /dev/null +++ b/domains/hyr1nk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kriemseeley", + "email": "adamseeley112250@gmail.com" + }, + "records": { + "A": ["39.101.73.144"] + } +} diff --git a/domains/hyro.json b/domains/hyro.json index 5b99b094b..468bf91fe 100644 --- a/domains/hyro.json +++ b/domains/hyro.json @@ -5,7 +5,7 @@ "username": "xHyroM", "email": "generalkubo@gmail.com" }, - "record": { + "records": { "URL": "https://xhyrom.vercel.app" } } diff --git a/domains/hzyusuf.json b/domains/hzyusuf.json index 607c70610..8e1e901c1 100644 --- a/domains/hzyusuf.json +++ b/domains/hzyusuf.json @@ -3,7 +3,7 @@ "username": "yufuss", "email": "yusufgocer40@hotmail.com" }, - "record": { + "records": { "CNAME": "glitch.edgeapp.net" } } diff --git a/domains/i-am.json b/domains/i-am.json index 5b296d642..1a06133a0 100644 --- a/domains/i-am.json +++ b/domains/i-am.json @@ -4,7 +4,7 @@ "username": "i-am-is-a-dev", "email": "lx737456@gmail.com" }, - "record": { + "records": { "A": ["89.106.200.1"] } } diff --git a/domains/i.json b/domains/i.json index a00e3f7d0..05dac4fcc 100644 --- a/domains/i.json +++ b/domains/i.json @@ -3,7 +3,7 @@ "username": "satindar31", "email": "satindar@satindar-is.me" }, - "record": { + "records": { "URL": "https://satindar.is-a.dev" } } diff --git a/domains/i2rys.json b/domains/i2rys.json index f55c87fdb..a6823b3ab 100644 --- a/domains/i2rys.json +++ b/domains/i2rys.json @@ -3,7 +3,7 @@ "username": "I2rys", "email": "i2rys@protonmail.com" }, - "record": { + "records": { "URL": "https://i2rys.vercel.app" } } diff --git a/domains/i3vie.json b/domains/i3vie.json deleted file mode 100644 index 371692667..000000000 --- a/domains/i3vie.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "i3vie", - "discord": "i3vie" - }, - "record": { - "CNAME": "i3vie.port0.org" - } -} diff --git a/domains/iacoposb.json b/domains/iacoposb.json index 0a487f7c0..998dcd7be 100644 --- a/domains/iacoposb.json +++ b/domains/iacoposb.json @@ -1,10 +1,9 @@ { "owner": { "username": "IacopoSb", - "discord": "442322290206703628", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Hn0wg5RpzADaJvecwSHu8KpOj-Z_oG7i08e9Z62Give15eiaNXJzezQ9d7noux00NeBYHyoAWfBB5IQ4_XXWy75cLfR2N0A80Lod8D9f6zaWhH6HOcKrauCVolIJBBrzMfTXkWpi-yt74WFtQtfkjlOYren1QB6T_EqyLps5kEJxM08Vubn49m7ckSkNh2bRNJ5NfprPwjrGrHwrdsQqCDiVWn7SL7Dp-Qs-9X1m6nsbyr4shb1BA9X3embdAeL34Yq4GMaIje2tj991jpzq0lW1wGDAZweffw2cJf4xtzC1V0BBWPJDm3ye8eWWrhyOlOmVmK5xqduHk_GJ4jB__g.C50OguoaaY8-9Y9OheaUJw.pc_1FvYpLmydbLCQBa262CG2ROnCFJl-oxfguFWsFv7xDqFr5dRyEZVdEkO8J1UxQFAbO4fm3uEKV1JXDPqdl-6xZF9cpsEkOTZ72Gb2PiY.hYU41zXsd0lJbcQwO59cwA" + "discord": "442322290206703628" }, - "record": { + "records": { "NS": ["marge.ns.cloudflare.com", "dan.ns.cloudflare.com"] } } diff --git a/domains/iagobruno.json b/domains/iagobruno.json index c7e5e802b..5e3445d3b 100644 --- a/domains/iagobruno.json +++ b/domains/iagobruno.json @@ -6,7 +6,7 @@ "email": "iagobruno.dev@gmail.com", "twitter": "iagotico" }, - "record": { + "records": { "CNAME": "iagobruno.github.io" } } diff --git a/domains/iakshay.json b/domains/iakshay.json index 678b11bce..9fd281c88 100644 --- a/domains/iakshay.json +++ b/domains/iakshay.json @@ -6,7 +6,7 @@ "email": "ak715173@gmail.com", "twitter": "i_Akshay09" }, - "record": { + "records": { "CNAME": "akshay1018.github.io" } } diff --git a/domains/iakzs.json b/domains/iakzs.json index c3f9f7ad8..799509b5d 100644 --- a/domains/iakzs.json +++ b/domains/iakzs.json @@ -5,13 +5,8 @@ "username": "iakzs", "email": "iakzs@protonmail.com" }, - "record": { - "A": [ - "185.199.109.153", - "185.199.110.153", - "185.199.111.153", - "185.199.108.153" - ], + "records": { + "A": ["185.199.109.153", "185.199.110.153", "185.199.111.153", "185.199.108.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~allCOPY" } diff --git a/domains/ialkoa.json b/domains/ialkoa.json index 0a8f0bb84..a7f1e533a 100644 --- a/domains/ialkoa.json +++ b/domains/ialkoa.json @@ -3,7 +3,7 @@ "username": "CallMePudding", "email": "CallMePudding@zohomail.eu" }, - "record": { + "records": { "URL": "https://callmepudding.github.io/ialkoastuff/" } } diff --git a/domains/iam.json b/domains/iam.json index fa65df012..026401e36 100644 --- a/domains/iam.json +++ b/domains/iam.json @@ -3,7 +3,7 @@ "username": "Utsav14s", "email": "utsavk740@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/iamai.json b/domains/iamai.json index 383d7b618..f1ca453cf 100644 --- a/domains/iamai.json +++ b/domains/iamai.json @@ -3,7 +3,7 @@ "username": "HsiangNianian", "email": "i@jyunko.cn" }, - "record": { + "records": { "CNAME": "readthedocs.io" } } diff --git a/domains/iamchoiiril.json b/domains/iamchoiiril.json index 9bcaffddd..6acff2f3f 100644 --- a/domains/iamchoiiril.json +++ b/domains/iamchoiiril.json @@ -3,7 +3,7 @@ "username": "Cfhoiril", "email": "iamchoirilfk@gmail.com" }, - "record": { + "records": { "CNAME": "cfhoiril.github.io" } } diff --git a/domains/iamdhakrey.json b/domains/iamdhakrey.json new file mode 100644 index 000000000..688003ff3 --- /dev/null +++ b/domains/iamdhakrey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamdhakrey", + "email": "dhakreyhrithik@gmail.com" + }, + "records": { + "URL": "https://iamdhakrey.dev" + } +} diff --git a/domains/iamkevinhuang.json b/domains/iamkevinhuang.json new file mode 100644 index 000000000..657e9aca1 --- /dev/null +++ b/domains/iamkevinhuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamkevinhuang", + "email": "kevinjaydenwivano@duck.com" + }, + "records": { + "CNAME": "iamkevinhuang.github.io" + } +} diff --git a/domains/iamlazylll.json b/domains/iamlazylll.json index 8f172e32f..f0c24359e 100644 --- a/domains/iamlazylll.json +++ b/domains/iamlazylll.json @@ -3,7 +3,7 @@ "username": "iamlazylll", "email": "eason4666@gmail.com" }, - "record": { + "records": { "CNAME": "iamlazylll.github.io" } } diff --git a/domains/iammithani.json b/domains/iammithani.json index 7a9191a21..7e3758d29 100644 --- a/domains/iammithani.json +++ b/domains/iammithani.json @@ -4,7 +4,7 @@ "email": "muhammadusmanmithani@gmail.com", "note": "This record was created by is-a.dev Discord bot via discord id: 632157019960377349" }, - "record": { + "records": { "CNAME": "iammithani-portfolio.pages.dev" } } diff --git a/domains/iamthedefender.json b/domains/iamthedefender.json index 36a4ca46c..08884246c 100644 --- a/domains/iamthedefender.json +++ b/domains/iamthedefender.json @@ -3,7 +3,7 @@ "username": "IamTheDefender", "discord": "iamthedefender" }, - "record": { + "records": { "URL": "https://portfolio-one-ecru-11.vercel.app" } } diff --git a/domains/iamtphuc.json b/domains/iamtphuc.json index 1147757b2..8d4106b57 100644 --- a/domains/iamtphuc.json +++ b/domains/iamtphuc.json @@ -1,10 +1,9 @@ { "owner": { "username": "jikey0210", - "discord": "786795224738824253", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ee1_-Hd9pOdM8TcGUOWeAP0h4BdpuyqIBuSvNx5_KSPpDZkXKFtYl21y6FxaCiy1PTsY_OnnC5B-fa5YMNjdvlJtiTVOpLY-HInJBz0dC-vXFbmadz9CIFFjxM-NF8-VomijgrWafUJQx4RFtRIohb3V_XdpCj5vV5JXFrsYkK-ruATrHyH06bHqLdXbIWygLhLOLtuI1sphhcw_Ud8rj6JtoxtvbZ-8qQ-D_7cuUNOKNN6ulzEa85BKN--OczTmQxTLFfAMR2vCk_NiPbppC_CLEfKdATQOY7n17qGF0jTa0VisztE1LDDeDxyyAx0ziSeODTXJyeIseq5SXzIAXg.erxs67CcIn9XGm7FDTefAw.cNT6tPgWyYx9hBEee7TviJQa8m_IxjjHPV68IL9xVKvostsQDysgw_RfVzFWvNGj4BPPvns6PklpvKQb2vFQiKF1VZqAFAlYV-_VGW_M77Y.puDjbRl-QL9A6S6WhCKiOQ" + "discord": "786795224738824253" }, - "record": { + "records": { "CNAME": "jikey0210.github.io" } } diff --git a/domains/ian.json b/domains/ian.json index 1c713214f..ff5662053 100644 --- a/domains/ian.json +++ b/domains/ian.json @@ -3,7 +3,7 @@ "username": "forsyth47", "email": "joshuasuresh2006@gmail.com" }, - "record": { + "records": { "CNAME": "forsyth47.github.io" } } diff --git a/domains/iancheung.json b/domains/iancheung.json index c24306e0d..b07b39bc7 100644 --- a/domains/iancheung.json +++ b/domains/iancheung.json @@ -4,7 +4,7 @@ "username": "iancheung0202", "email": "support@ianbrawlstars.com" }, - "record": { + "records": { "URL": "https://ianbrawlstars.com" } } diff --git a/domains/ians.json b/domains/ians.json index af327bdad..3ffaddc44 100644 --- a/domains/ians.json +++ b/domains/ians.json @@ -3,7 +3,7 @@ "username": "ianskids", "email": "theians@yahoo.com" }, - "record": { + "records": { "CNAME": "dev.ians.my.id" } } diff --git a/domains/ibalh0.json b/domains/ibalh0.json index a41658888..694269df0 100644 --- a/domains/ibalh0.json +++ b/domains/ibalh0.json @@ -1,10 +1,9 @@ { "owner": { "username": "Ibalh0", - "discord": "1148535309160677376", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q8OM23V_DPmsBSJrSdkYq4oK3ZzqYOmFumlIfDLjj3xDYnFWSzks4Hvwm_SiplJlPzqTgfsw4FqG51CbcBcuTlUzkhvoK3hyNY8CxZ8Np8_c35JPVo2v_8UkH9H1_qarNYAgquJqk08wGGc32xaaZrpJeN1jO8pCUhL6uc_r2xaJyvMMkO2w8jwu3iqCJpTJH5UH3-XpwJRUT_uzE1RK3rL9laab5TaLR6QIPFgNW5F71bN4Anj3HIlCbG5ee9mJQowSaS5YAMb4fttTYkSNT-1PR3ekKWMieg1z_7K7SbAn4vG3cE0AQj_fL06l6aO_hTWHi5M54WHUbsVj7fjsTQ.nYgVmf3xj0MTFDqn7XA-oA.BOs8XDiRPkOQ4yx9WzNlFJne3kyQPsec2y6g-LWvpvrq4xg9erYPK78xJtJlpyNwjqkxZf3dZW73bKW50kWpWUJ2UC67OWiMTYxXoKPrcs0.fWo46QmZvvKiLirmPoy7kA" + "discord": "1148535309160677376" }, - "record": { + "records": { "CNAME": "ibalh0.github.io" } } diff --git a/domains/ibrahim.json b/domains/ibrahim.json index 22a80eef1..96891be0d 100644 --- a/domains/ibrahim.json +++ b/domains/ibrahim.json @@ -1,11 +1,10 @@ { "description": "ibrahim's personal developer website.", - "repo": "https://github.com/ibrahimdevx", "owner": { "username": "ibrahimdev", "email": "ibrahimimran@northsixty.com" }, - "record": { + "records": { "CNAME": "ibrahimdevx.github.io" } } diff --git a/domains/ibrahimai.json b/domains/ibrahimai.json index 0388a32cd..88b2756a3 100644 --- a/domains/ibrahimai.json +++ b/domains/ibrahimai.json @@ -3,7 +3,7 @@ "username": "ibrahimaitech", "email": "ibrahimaik045@gmail.com" }, - "record": { + "records": { "URL": "https://telegra.ph/file/9101ffa9637ca85a5cae1.jpg" } } diff --git a/domains/ibrahimtech.json b/domains/ibrahimtech.json index 11e7d7576..ba2519aec 100644 --- a/domains/ibrahimtech.json +++ b/domains/ibrahimtech.json @@ -3,7 +3,7 @@ "username": "ibrahimaitech", "email": "ibrahimaik045@gmail.com" }, - "record": { + "records": { "URL": "https://telegra.ph/file/13685b7a1d9131dd7ca27.jpg" } } diff --git a/domains/ibru.json b/domains/ibru.json new file mode 100644 index 000000000..05dac4fcc --- /dev/null +++ b/domains/ibru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me" + }, + "records": { + "URL": "https://satindar.is-a.dev" + } +} diff --git a/domains/ice-head.json b/domains/ice-head.json index 5da892817..ab9e8a9ed 100644 --- a/domains/ice-head.json +++ b/domains/ice-head.json @@ -4,13 +4,8 @@ "email": "heads.ice@protonmail.com", "note": "This record was created by is-a.dev Discord bot via discord id: 744472773715427368" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=heads.ice@protonmail.com" } diff --git a/domains/ice.json b/domains/ice.json index 75b778728..e0df201ea 100644 --- a/domains/ice.json +++ b/domains/ice.json @@ -5,7 +5,7 @@ "username": "u0f", "email": "ice.dev1234@gmail.com" }, - "record": { + "records": { "CNAME": "u0f.github.io" } } diff --git a/domains/icm.json b/domains/icm.json index fb8145038..fdb191af9 100644 --- a/domains/icm.json +++ b/domains/icm.json @@ -5,7 +5,7 @@ "username": "ICM185", "email": "ironcladmonster185@gmail.com" }, - "record": { + "records": { "CNAME": "icm185.github.io" } } diff --git a/domains/ico-bc.json b/domains/ico-bc.json index e86e7686d..8ed238cc5 100644 --- a/domains/ico-bc.json +++ b/domains/ico-bc.json @@ -1,10 +1,9 @@ { "owner": { "username": "ChiliDain1010", - "discord": "1109163497750802462", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gUF9X8XLXk8fV1nD3vgJPKAV4fsYWamF7-F91O8zRN8SqFwSJXkrR8C9FXdear7XLnvprgNxJRM0tNi5uVtQUQHbgfekS1N_4TJzZt-lPpRpxDOS9wbDWyOs0MBJWSmty4eTNHo8HyrTBByPCa5G15TDkhXBRliKMGD2g2aW-qqPPOODIhZ5WCscwdKbn2mX8o8dDP6G0GUVsrgQEHspMyPwp34C8oJKVwzfj0OIatq5Cc_h7eGzQEKubJtDAmuJP7NnrJg-U1qui3K_iNGbeO_d-Hwv5_eHi5oelQfrbbKWfsrU9Ivb3wy-BWRSMk78gY4NskCuNXh8K6e3JYyRwg.yMnIahir7C9grLkf0WWMuw.FTH5aP1WdPaBiU6df-QWwfe6kx3fbHB1PnbIEAcr_WwRovDDUJMMZ6LYjIdPWg0xzLOty0dLkPM97scpH8CdDOqKG44A13IpvtzKSwh3Vgg.nLBgLSpeEYUNmrmEGSePLg" + "discord": "1109163497750802462" }, - "record": { + "records": { "A": ["59.93.130.149"] } } diff --git a/domains/ico.json b/domains/ico.json index 50f240c05..ef12932aa 100644 --- a/domains/ico.json +++ b/domains/ico.json @@ -5,7 +5,7 @@ "username": "babyico", "email": "iconical@programmer.net" }, - "record": { + "records": { "CNAME": "babyico.github.io" } } diff --git a/domains/icvn.json b/domains/icvn.json index 4f0098268..4acae2297 100644 --- a/domains/icvn.json +++ b/domains/icvn.json @@ -5,7 +5,7 @@ "username": "HaiYTB", "email": "haiwt2xbox@gmail.com" }, - "record": { + "records": { "A": ["103.229.52.14"] }, "proxied": true diff --git a/domains/icy.json b/domains/icy.json index c4be32a18..ca175a775 100644 --- a/domains/icy.json +++ b/domains/icy.json @@ -3,7 +3,7 @@ "username": "IcyonGit", "email": "Jazzyvela2009@outlook.com" }, - "record": { + "records": { "CNAME": "icyongit.github.io" } } diff --git a/domains/id.json b/domains/id.json index 741c7f224..1efe33405 100644 --- a/domains/id.json +++ b/domains/id.json @@ -3,7 +3,7 @@ "username": "its-id", "discord": "342664542754570250" }, - "record": { + "records": { "CNAME": "portfolio-main-q8dxiuiap-indrakantdanas-projects.vercel.app" } } diff --git a/domains/id.youfoundalpha.json b/domains/id.youfoundalpha.json index b1ed58052..80906df0a 100644 --- a/domains/id.youfoundalpha.json +++ b/domains/id.youfoundalpha.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "URL": "https://keyoxide.org/8A6CD6545839F1276C7E5E3A92E7DB3078954562" } } diff --git a/domains/ida64.json b/domains/ida64.json index a32f88384..b20862072 100644 --- a/domains/ida64.json +++ b/domains/ida64.json @@ -4,7 +4,7 @@ "username": "7v2p", "discord": "IDA#1337" }, - "record": { + "records": { "CNAME": "7v2p.github.io" } } diff --git a/domains/idcesares.json b/domains/idcesares.json new file mode 100644 index 000000000..bfacdc800 --- /dev/null +++ b/domains/idcesares.json @@ -0,0 +1,11 @@ +{ + "description": "Isaac D'Césares personal website", + "repo": "https://github.com/idcesares", + "owner": { + "username": "idcesares", + "email": "isaac.dcesares@gmail.com" + }, + "records": { + "URL": "https://dcesares.dev" + } +} diff --git a/domains/ide.json b/domains/ide.json index 3c4996686..0b3c4464a 100644 --- a/domains/ide.json +++ b/domains/ide.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "URL": "https://rustroid.is-a.dev" } } diff --git a/domains/idot.json b/domains/idot.json index a1587b8a7..a988c2b07 100644 --- a/domains/idot.json +++ b/domains/idot.json @@ -3,7 +3,7 @@ "username": "LackingCats", "email": "jackson.marsden6@gmail.com" }, - "record": { + "records": { "CNAME": "idot.hopto.org" } } diff --git a/domains/idriss.json b/domains/idriss.json new file mode 100644 index 000000000..2ebd5df2a --- /dev/null +++ b/domains/idriss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AstroDriss", + "email": "drisspennywise@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/iggy.json b/domains/iggy.json new file mode 100644 index 000000000..4e7547d1b --- /dev/null +++ b/domains/iggy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ignazio-castrogiovanni", + "email": "iggy.castrogiovanni@gmail.com" + }, + "records": { + "URL": "https://ignazio-castrogiovanni.com" + } +} diff --git a/domains/igna.json b/domains/igna.json index b162e8664..a0bd4b2b6 100644 --- a/domains/igna.json +++ b/domains/igna.json @@ -1,11 +1,10 @@ { "description": "igna's portfolio website", - "repo": "https://github.com/uhIgnacio", "owner": { "username": "uhIgnacio", "email": "igna@hypixel.one" }, - "record": { + "records": { "URL": "https://igna.rocks" } } diff --git a/domains/ignasius.json b/domains/ignasius.json index 79fcef4cd..3e788a913 100644 --- a/domains/ignasius.json +++ b/domains/ignasius.json @@ -3,7 +3,7 @@ "username": "ace3", "email": "ace3xx@gmail.com" }, - "record": { + "records": { "A": ["138.2.84.251"] } } diff --git a/domains/igor.json b/domains/igor.json index 86fcebaf5..675d98249 100644 --- a/domains/igor.json +++ b/domains/igor.json @@ -3,7 +3,7 @@ "username": "igorwastaken", "email": "figueiredoigor325@gmail.com" }, - "record": { + "records": { "CNAME": "new-portfolio-84v.pages.dev" } } diff --git a/domains/ijas.json b/domains/ijas.json new file mode 100644 index 000000000..a888e0a9d --- /dev/null +++ b/domains/ijas.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ijasxyz", + "email": "ijas.n.ijas@gmail.com" + }, + "records": { + "CNAME": "ijas.netlify.app" + }, + "proxied": false +} diff --git a/domains/ikdan.json b/domains/ikdan.json index 44355691e..4278b98a2 100644 --- a/domains/ikdan.json +++ b/domains/ikdan.json @@ -3,7 +3,7 @@ "username": "Kirill2255", "email": "ailcenko019@gmail.com" }, - "record": { + "records": { "A": ["95.163.215.114"] } } diff --git a/domains/ikhlashmulya.json b/domains/ikhlashmulya.json index 5ec9df23e..79acd41db 100644 --- a/domains/ikhlashmulya.json +++ b/domains/ikhlashmulya.json @@ -3,7 +3,7 @@ "username": "Ikhlashmulya", "email": "nurahmanmulya@gmail.com" }, - "record": { + "records": { "CNAME": "ikhlashmulya.github.io" } } diff --git a/domains/ikjun.json b/domains/ikjun.json index 903662e11..7a7053eee 100644 --- a/domains/ikjun.json +++ b/domains/ikjun.json @@ -3,7 +3,7 @@ "username": "no-ikjun", "email": "choiikjun1101@gmail.com" }, - "record": { + "records": { "CNAME": "ikjun.com" } } diff --git a/domains/ikraiyan.json b/domains/ikraiyan.json index ef9e5eb18..7906747ab 100644 --- a/domains/ikraiyan.json +++ b/domains/ikraiyan.json @@ -6,7 +6,7 @@ "email": "ihkraiyan@gmail.com", "discord": "I_K_RAIYAN#7946" }, - "record": { + "records": { "CNAME": "ikraiyan.github.io" } } diff --git a/domains/ikram.json b/domains/ikram.json new file mode 100644 index 000000000..743d4b88a --- /dev/null +++ b/domains/ikram.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "records": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all", + "google-site-verification=C38zyZL8LP_056d5IgevUInJTe4qerfxC6-qjQORdh4" + ] + } +} diff --git a/domains/ikramth.json b/domains/ikramth.json new file mode 100644 index 000000000..9ad2f7e36 --- /dev/null +++ b/domains/ikramth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arcfoz", + "email": "ikramtauffiqulh@gmail.com" + }, + "records": { + "CNAME": "ikramth.vercel.app" + } +} diff --git a/domains/ilawy.json b/domains/ilawy.json index 4527b33b3..3d1eed126 100644 --- a/domains/ilawy.json +++ b/domains/ilawy.json @@ -5,7 +5,7 @@ "username": "ilawy", "email": "ilawy@proton.me" }, - "record": { + "records": { "CNAME": "ilawy.pages.dev" } } diff --git a/domains/ilhadev.json b/domains/ilhadev.json new file mode 100644 index 000000000..d7a7b842a --- /dev/null +++ b/domains/ilhadev.json @@ -0,0 +1,11 @@ +{ + "description": "adalbertobrant.is-a.dev", + "repo": "https://github.com/adalbertobrant/adalbertobrant", + "owner": { + "username": "adalbertobrant", + "email": "adalbertobrant@protonmail.com" + }, + "records": { + "URL": "https://github.com/adalbertobrant/adalbertobrant" + } +} diff --git a/domains/illy.json b/domains/illy.json index 2f8bd197e..14b176738 100644 --- a/domains/illy.json +++ b/domains/illy.json @@ -5,7 +5,7 @@ "username": "illy-dev", "email": "illythehase@gmail.com" }, - "record": { + "records": { "CNAME": "illy-dev.github.io" } } diff --git a/domains/ilovechickennuggets.json b/domains/ilovechickennuggets.json index 9cfb0a5c2..c7f773a2e 100644 --- a/domains/ilovechickennuggets.json +++ b/domains/ilovechickennuggets.json @@ -1,10 +1,9 @@ { "owner": { "username": "getSono", - "discord": "1222250424309121145", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gAkGYSIGLwn_jm-_gUHR_Yl0sAylIkL4McCk_gZ_nXyibqjeQ_DobeuRsJfT9cRy2ddnIcQC6JwrZp9daFsrxdly1ZznSBGCporx8KIuIEYvgrP4HH6eWSORAsqE1Toph2WGdS-yk4qKwhJWgmKrZWtvjMEbUvaD0GwqvphY5MwnIIMov9_rn_ymUrnUg2rrAsy2BCUarvUT4Vf5UOmyUhSTcSp9Vemh7AM9SMytSSVTQfSb9w-G5rFMDbETYlyyVrvUEGn3fAqaxZTWd_IdqGW9X-xOJxGbNiJw6KQUcEsFwpb24mekOJD_Iz4OpRAa4P0zirQiDsFbqJBqduoReQ.moQSqRWIl7klP2yb37raLw.jNZ0pE7tDOltrj235y-bai83aUEkeOsQcA5K-g1zFKv1U6KEV7pXxE4M8ymTLcaVsPVEoUxzlwo44RCDjOxLb106X3NMGV5-hLHxMu23Ees.rtL6ctgRQu60iQYiFGxsCQ" + "discord": "1222250424309121145" }, - "record": { + "records": { "CNAME": "getsono.github.io" } } diff --git a/domains/ilya.json b/domains/ilya.json new file mode 100644 index 000000000..59a71b658 --- /dev/null +++ b/domains/ilya.json @@ -0,0 +1,11 @@ +{ + "description": "Ilya Stepanov's portfolio website", + "repo": "https://github.com/thatslegit/threejs-portfolio", + "owner": { + "username": "thatslegit", + "email": "iliastepanov1996@gmail.com" + }, + "records": { + "CNAME": "thatslegit.github.io" + } +} diff --git a/domains/imad.json b/domains/imad.json index 7eec7155d..a337aabf5 100644 --- a/domains/imad.json +++ b/domains/imad.json @@ -1,11 +1,10 @@ { "description": "Imad", - "repo": "https://github.com/imadboy89", "owner": { "username": "imadboy89", "email": "imad.kh@outlook.com" }, - "record": { + "records": { "A": ["20.101.44.225"] } } diff --git a/domains/images.civic.json b/domains/images.civic.json index f17628b17..0d398772c 100644 --- a/domains/images.civic.json +++ b/domains/images.civic.json @@ -5,7 +5,7 @@ "username": "civic1007", "discord": "civic1007" }, - "record": { + "records": { "CNAME": "civics-api.pages.dev" } } diff --git a/domains/imat.json b/domains/imat.json index f5ae19578..212bd59a1 100644 --- a/domains/imat.json +++ b/domains/imat.json @@ -5,7 +5,7 @@ "username": "imatx", "email": "adam.essakhi16+github@gmail.com" }, - "record": { + "records": { "CNAME": "sites.bootstrapstudio.io" } } diff --git a/domains/imd.json b/domains/imd.json index 7eec7155d..a337aabf5 100644 --- a/domains/imd.json +++ b/domains/imd.json @@ -1,11 +1,10 @@ { "description": "Imad", - "repo": "https://github.com/imadboy89", "owner": { "username": "imadboy89", "email": "imad.kh@outlook.com" }, - "record": { + "records": { "A": ["20.101.44.225"] } } diff --git a/domains/img.cala.json b/domains/img.cala.json index 8e1b59156..895c2f7a0 100644 --- a/domains/img.cala.json +++ b/domains/img.cala.json @@ -4,7 +4,7 @@ "email": "krivojta@gmail.com", "discord": "981555580495867964" }, - "record": { + "records": { "CNAME": "calamitywoah.github.io" } } diff --git a/domains/img.juststudio.json b/domains/img.juststudio.json index 62374a88f..06d6f9d78 100644 --- a/domains/img.juststudio.json +++ b/domains/img.juststudio.json @@ -6,12 +6,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/img.suki.json b/domains/img.suki.json index 4ae0c87c0..9ef65184f 100644 --- a/domains/img.suki.json +++ b/domains/img.suki.json @@ -3,7 +3,7 @@ "username": "SukiPlayz", "email": "sukimayoo@outlook.com" }, - "record": { + "records": { "A": ["69.197.135.204"] } } diff --git a/domains/imide.json b/domains/imide.json index 152e38fbd..8f9ca783d 100644 --- a/domains/imide.json +++ b/domains/imide.json @@ -3,7 +3,7 @@ "username": "imide", "discord": "555915168932954112" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/imlasiya.json b/domains/imlasiya.json index 81660029e..85d626f97 100644 --- a/domains/imlasiya.json +++ b/domains/imlasiya.json @@ -6,7 +6,7 @@ "email": "shsherlocksl@gmail.com", "twitter": "ImLasiya" }, - "record": { + "records": { "CNAME": "imlasiya.github.io" } } diff --git a/domains/imlasiyah.json b/domains/imlasiyah.json index 4dd882f0d..6a43c8ce9 100644 --- a/domains/imlasiyah.json +++ b/domains/imlasiyah.json @@ -3,7 +3,7 @@ "username": "ImLasiya", "email": "senash@darktsysl.onmicrosoft.com" }, - "record": { + "records": { "CNAME": "imlasiya.github.io" } } diff --git a/domains/imm0nv1nhtv.json b/domains/imm0nv1nhtv.json index 4aff3bd16..7f93dd11e 100644 --- a/domains/imm0nv1nhtv.json +++ b/domains/imm0nv1nhtv.json @@ -3,7 +3,7 @@ "username": "imm0nv1nhtv", "email": "windows10phamvinh+github@gmail.com" }, - "record": { - "CNAME": "imm0nv1nhtv.pages.dev" + "records": { + "NS": ["alberto.ns.cloudflare.com", "rosemary.ns.cloudflare.com"] } } diff --git a/domains/immuaz.json b/domains/immuaz.json new file mode 100644 index 000000000..5fa52bc8d --- /dev/null +++ b/domains/immuaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muazsrc", + "email": "muazsrc17@gmail.com" + }, + "records": { + "CNAME": "muaz.pages.dev" + } +} diff --git a/domains/imnahn.json b/domains/imnahn.json new file mode 100644 index 000000000..f7571a53b --- /dev/null +++ b/domains/imnahn.json @@ -0,0 +1,12 @@ +{ + "description": "Just my portfolio", + "repo": "https://github.com/imnotnahn/myportfolio", + "owner": { + "username": "imnotnahn", + "email": "thanhnhan.contact.work@gmail.com", + "discord": "nowim.nhan" + }, + "records": { + "CNAME": "myportfolio-2y4.pages.dev" + } +} diff --git a/domains/imnyang.json b/domains/imnyang.json new file mode 100644 index 000000000..0723bdb04 --- /dev/null +++ b/domains/imnyang.json @@ -0,0 +1,12 @@ +{ + "description": "imnyang.is-a.dev", + "repo": "https://github.com/imnyang/is-a-dev", + "owner": { + "username": "imnyang", + "email": "me@imnya.ng" + }, + "records": { + "CNAME": "imnya.ng" + }, + "proxied": false +} diff --git a/domains/imskanand.json b/domains/imskanand.json index 7e5e25962..07b9bb2b2 100644 --- a/domains/imskanand.json +++ b/domains/imskanand.json @@ -3,7 +3,7 @@ "username": "ShubhamkumarAnand", "email": "the.anand3099@gmail.com" }, - "record": { + "records": { "URL": "https://imskanand.vercel.app" } } diff --git a/domains/imsoumyaneel.json b/domains/imsoumyaneel.json index 2e2679abb..e53869fc7 100644 --- a/domains/imsoumyaneel.json +++ b/domains/imsoumyaneel.json @@ -3,7 +3,7 @@ "username": "A-Little-Hat", "email": "soumyasarkar309@gmail.com" }, - "record": { + "records": { "CNAME": "a-little-hat.github.io" } } diff --git a/domains/imsun.json b/domains/imsun.json new file mode 100644 index 000000000..5fe8bd684 --- /dev/null +++ b/domains/imsun.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jkjoy", + "email": "jkjoy@live.cn" + }, + "records": { + "CNAME": "jkjoy.github.io" + }, + "proxied": false +} diff --git a/domains/imtiazepu.json b/domains/imtiazepu.json new file mode 100644 index 000000000..3e2329412 --- /dev/null +++ b/domains/imtiazepu.json @@ -0,0 +1,10 @@ +{ + "description": "Parsonal website for Imtiaz Epu", + "owner": { + "username": "imtiazepu", + "email": "info@imtiazepu.com" + }, + "records": { + "URL": "https://imtiazepu.com" + } +} diff --git a/domains/imxitiz.json b/domains/imxitiz.json new file mode 100644 index 000000000..01d5b2a06 --- /dev/null +++ b/domains/imxitiz.json @@ -0,0 +1,9 @@ +{ + "description": "imxitiz.is-a.dev", + "owner": { + "username": "imxitiz" + }, + "records": { + "CNAME": "imxitiz.github.io" + } +} diff --git a/domains/imy.json b/domains/imy.json index f25eb25e3..55ca21db8 100644 --- a/domains/imy.json +++ b/domains/imy.json @@ -5,7 +5,7 @@ "username": "IMYdev", "email": "omranmansour096@gmail.com" }, - "record": { + "records": { "CNAME": "imydev.github.io" } } diff --git a/domains/imzulkar.json b/domains/imzulkar.json index 2ea7af4f0..dcced0289 100644 --- a/domains/imzulkar.json +++ b/domains/imzulkar.json @@ -3,7 +3,7 @@ "username": "imzulkar", "email": "gmzulkar@gmail.com" }, - "record": { + "records": { "CNAME": "imzulkar.github.io" } } diff --git a/domains/in.mcstatus.json b/domains/in.mcstatus.json index 6bc57f038..e777fe23d 100644 --- a/domains/in.mcstatus.json +++ b/domains/in.mcstatus.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/incbom.json b/domains/incbom.json index d169f2673..559f102e3 100644 --- a/domains/incbom.json +++ b/domains/incbom.json @@ -6,7 +6,7 @@ "email": "incbomyt@gmail.com", "twitter": "IncbomYT" }, - "record": { + "records": { "CNAME": "incbomdev.github.io" } } diff --git a/domains/indidee.json b/domains/indidee.json index 7c283d282..03a8b1d90 100644 --- a/domains/indidee.json +++ b/domains/indidee.json @@ -3,7 +3,7 @@ "username": "indideee", "email": "amberisamab@gmail.com" }, - "record": { + "records": { "CNAME": "indideee.github.io" } } diff --git a/domains/indodev.json b/domains/indodev.json index efa99a1c0..6b7aa69fc 100644 --- a/domains/indodev.json +++ b/domains/indodev.json @@ -4,7 +4,7 @@ "email": "hudah2102@gmail.com", "discord": "694850450410700831" }, - "record": { + "records": { "A": ["178.128.211.205"] } } diff --git a/domains/indra87g.json b/domains/indra87g.json index 063ea2303..357568e1a 100644 --- a/domains/indra87g.json +++ b/domains/indra87g.json @@ -5,7 +5,7 @@ "username": "indra87g", "email": "twinightwheel50@gmail.com" }, - "record": { + "records": { "CNAME": "indra87g.surge.sh" } } diff --git a/domains/indreshp135.json b/domains/indreshp135.json index d93dcf14e..262bebc60 100644 --- a/domains/indreshp135.json +++ b/domains/indreshp135.json @@ -3,7 +3,7 @@ "username": "indreshp135", "email": "indreshp135@gmail.com" }, - "record": { + "records": { "A": ["144.24.138.210"] } } diff --git a/domains/inf.json b/domains/inf.json index 5f63ff77e..3ca93da22 100644 --- a/domains/inf.json +++ b/domains/inf.json @@ -3,7 +3,7 @@ "username": "InfinityDevTech", "discord": "inf5" }, - "record": { + "records": { "URL": "https://infdev.netlify.app" } } diff --git a/domains/infernum.json b/domains/infernum.json index 80507194c..01842dbe4 100644 --- a/domains/infernum.json +++ b/domains/infernum.json @@ -5,7 +5,7 @@ "username": "Infernum1", "email": "infernum1212@gmail.com" }, - "record": { + "records": { "CNAME": "infernum1.github.io" } } diff --git a/domains/infiniteloop.json b/domains/infiniteloop.json index 787ed3d21..826ab4782 100644 --- a/domains/infiniteloop.json +++ b/domains/infiniteloop.json @@ -3,7 +3,7 @@ "username": "roktim32", "email": "roktimsenapoty2@gmail.com" }, - "record": { + "records": { "CNAME": "roktim32.github.io" } } diff --git a/domains/infinityloop.json b/domains/infinityloop.json index 461e40171..63ab1a384 100644 --- a/domains/infinityloop.json +++ b/domains/infinityloop.json @@ -5,7 +5,7 @@ "username": "InfinityLoop", "discord": "infinityloopdev" }, - "record": { + "records": { "URL": "https://infinityloop1.netlify.app" } } diff --git a/domains/infinotiver.json b/domains/infinotiver.json index eb05bf447..812a772f6 100644 --- a/domains/infinotiver.json +++ b/domains/infinotiver.json @@ -3,7 +3,7 @@ "username": "infinotiver", "email": "prakarsh.3482@gmail.com" }, - "record": { + "records": { "CNAME": "infinotiver.github.io" } } diff --git a/domains/info.vamtic.json b/domains/info.vamtic.json index 7e6366b80..6d4568a57 100644 --- a/domains/info.vamtic.json +++ b/domains/info.vamtic.json @@ -3,7 +3,7 @@ "username": "vamtic", "email": "vamtic@yahoo.com" }, - "record": { + "records": { "CNAME": "info-86z.pages.dev" } } diff --git a/domains/ingo.json b/domains/ingo.json new file mode 100644 index 000000000..1214bd4f7 --- /dev/null +++ b/domains/ingo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BugHunter2k", + "email": "hello@ingohollmann.de" + }, + "records": { + "URL": "https://ingohollmann.de/" + } +} diff --git a/domains/inj3c7i0n.json b/domains/inj3c7i0n.json index 16d3649b3..ce019d6c9 100644 --- a/domains/inj3c7i0n.json +++ b/domains/inj3c7i0n.json @@ -3,7 +3,7 @@ "username": "Inj3c7i0n", "email": "Inj3c7ed@gmail.com" }, - "record": { + "records": { "CNAME": "inj3c7i0n.github.io" } } diff --git a/domains/inkilu.json b/domains/inkilu.json index 89026e98b..9756bb3ba 100644 --- a/domains/inkilu.json +++ b/domains/inkilu.json @@ -5,7 +5,7 @@ "username": "inkilu", "discord": "ink#6343" }, - "record": { + "records": { "CNAME": "inkilu.github.io" } } diff --git a/domains/innocentdev.json b/domains/innocentdev.json new file mode 100644 index 000000000..ee665c7f2 --- /dev/null +++ b/domains/innocentdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Innocent-dev-yt", + "email": "prateeksingh45454545@gmail.com" + }, + "records": { + "CNAME": "portfolio.innocentdevyt.workers.dev" + } +} diff --git a/domains/innocentzero.json b/domains/innocentzero.json new file mode 100644 index 000000000..43d997dc3 --- /dev/null +++ b/domains/innocentzero.json @@ -0,0 +1,11 @@ +{ + "description": "My personal blog", + "repo": "https://codeberg.org/innocentzer0/pages", + "owner": { + "username": "InnocentZero", + "email": "isfarulhaque@proton.me" + }, + "records": { + "CNAME": "innocentzer0.codeberg.page" + } +} diff --git a/domains/inputly.json b/domains/inputly.json new file mode 100644 index 000000000..358b4e3f2 --- /dev/null +++ b/domains/inputly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NateNear", + "email": "matternate21@gmail.com" + }, + "records": { + "CNAME": "inputly.vercel.app" + } +} diff --git a/domains/insencel.json b/domains/insencel.json index d0e48264c..9345e19d9 100644 --- a/domains/insencel.json +++ b/domains/insencel.json @@ -4,7 +4,7 @@ "email": "devsencel@gmail.com" }, "description": "A domain for hosting a typo3 account to test things with and build test-websites", - "record": { + "records": { "A": ["164.68.124.156"] } } diff --git a/domains/integr.json b/domains/integr.json index b343f5964..00974e993 100644 --- a/domains/integr.json +++ b/domains/integr.json @@ -6,7 +6,7 @@ "email": "erik.reitbauer@outlook.de", "discord": "integr_" }, - "record": { + "records": { "CNAME": "integr-0.github.io" } } diff --git a/domains/integra.json b/domains/integra.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/integra.json +++ b/domains/integra.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/intergrav.json b/domains/intergrav.json index 31c54f3a0..f101cb7bf 100644 --- a/domains/intergrav.json +++ b/domains/intergrav.json @@ -3,7 +3,7 @@ "username": "intergrav", "email": "devinkid1@gmail.com" }, - "record": { + "records": { "CNAME": "intergrav.github.io" } } diff --git a/domains/interstellaros.json b/domains/interstellaros.json deleted file mode 100644 index cf559db57..000000000 --- a/domains/interstellaros.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "jacksoncraft859", - "email": "pollardjackson@outlook.com" - }, - "record": { - "TXT": "replit-verify=ac38945f-f53b-4b1b-980d-e2a1d64175c6" - } -} diff --git a/domains/invalidnoah.json b/domains/invalidnoah.json index 51e5ef603..3573bb3c7 100644 --- a/domains/invalidnoah.json +++ b/domains/invalidnoah.json @@ -6,7 +6,7 @@ "email": "me@noahist.live", "twitter": "noahlikespmmp" }, - "record": { + "records": { "CNAME": "invalidnoah.github.io" } } diff --git a/domains/inxlo.json b/domains/inxlo.json index 57ee10b8b..fe2d6b4d9 100644 --- a/domains/inxlo.json +++ b/domains/inxlo.json @@ -5,7 +5,7 @@ "username": "xlenco", "email": "xlenco@hotmail.com" }, - "record": { + "records": { "CNAME": "xlenco.github.io" } } diff --git a/domains/iomiras.json b/domains/iomiras.json new file mode 100644 index 000000000..907535fa6 --- /dev/null +++ b/domains/iomiras.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iomiras", + "email": "miras.shaltayev+isadev@gmail.com" + }, + "records": { + "CNAME": "miras-iomiras.vercel.app" + } +} diff --git a/domains/ios.json b/domains/ios.json new file mode 100644 index 000000000..68a106e56 --- /dev/null +++ b/domains/ios.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "records": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=AyQrjerFwekkOGG9oZLdBFy4TOAeVAYrHTTm5Q-NZD4", + "MX": ["SMTP.GOOGLE.COM"] + } +} diff --git a/domains/iostpa.json b/domains/iostpa.json index e3792dc3a..61e9eb2d2 100644 --- a/domains/iostpa.json +++ b/domains/iostpa.json @@ -4,7 +4,7 @@ "discord": "716306888492318790", "twitter": "iostpa" }, - "record": { + "records": { "URL": "https://iostpa.com" } } diff --git a/domains/iosviet.json b/domains/iosviet.json index 8cea5fea5..c1e395ea9 100644 --- a/domains/iosviet.json +++ b/domains/iosviet.json @@ -1,10 +1,9 @@ { "owner": { "username": "huutanphp", - "discord": "595368972594184235", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UUB3u8JnQhweiOtS8ICf09sYk-WZL0haW_S50x1JgijmaiIBNCcX8hzE5xJVR2QXtiR_DfbseMXMtHVq5p_9SHf-qyiD8LKd22TKgorKH30PxP2Ej6Qw9LhbQKdI7EuAlBBGKyKm9gLWd8HYVeQlXMuya5X6AEKQS4WoH_GuX3itLnFUKf1hFZpEb5lJrdRKrvbTQgTXkLHsXggUi4Crcdfav4lmsA7DidmmfqpwXVy90TXdluqExc70JrtIY_9q0NDXwBe5boFOFOEYh7GW9MG0QHhor2Xibnd0pi5P5jAt9fUCGhUMMHKWTLBMjLumgswe8XEW4JXQGwmBBVMt_A.KpU_DlcxDclPoZwMO0H7rA.igZyUYSqQEyzpCfjGYAQivF9Jk8A6TzvA6sf2Ju7c4jP617xNtd7ZtTz2Wy9eYeSyF0ZDeEXn5RSWphywrSaIB6jhvzuEQ4xERnRW8ozdN0.xLh6AUpP7bDHQ7P8DwaZNw" + "discord": "595368972594184235" }, - "record": { + "records": { "A": ["3.106.238.127"] } } diff --git a/domains/ipamod.json b/domains/ipamod.json index 9cfd4fa41..267789930 100644 --- a/domains/ipamod.json +++ b/domains/ipamod.json @@ -4,7 +4,7 @@ "username": "huutanphp", "email": "huutan.dev@gmail.com" }, - "record": { + "records": { "A": ["3.106.238.127"] } } diff --git a/domains/ipsum.json b/domains/ipsum.json index 0089d3bca..16020cbbf 100644 --- a/domains/ipsum.json +++ b/domains/ipsum.json @@ -3,7 +3,7 @@ "username": "ashlynmay", "email": "may.ashlyn0723@gmail.com" }, - "record": { + "records": { "CNAME": "ashlynmay-github-io.onrender.com" } } diff --git a/domains/ipuppyyt.json b/domains/ipuppyyt.json index b4f3095d7..295424562 100644 --- a/domains/ipuppyyt.json +++ b/domains/ipuppyyt.json @@ -6,13 +6,8 @@ "twitter": "ipuppyyt", "discord": "iPuppyYT#3684" }, - "record": { - "A": [ - "185.199.110.153", - "185.199.108.153", - "185.199.111.153", - "185.199.109.153" - ], + "records": { + "A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/iqat.json b/domains/iqat.json index 3e7a24656..79a70e468 100644 --- a/domains/iqat.json +++ b/domains/iqat.json @@ -5,7 +5,7 @@ "username": "Iqat476", "email": "iqat476@gmail.com" }, - "record": { + "records": { "CNAME": "iqat476.github.io" } } diff --git a/domains/irc.pele.json b/domains/irc.pele.json index eceae0d10..865fad1e4 100644 --- a/domains/irc.pele.json +++ b/domains/irc.pele.json @@ -4,7 +4,7 @@ "email": "pele.puric@gmail.com", "discord": "483261654818226186" }, - "record": { + "records": { "A": ["38.242.242.224"] } } diff --git a/domains/ireknazm.json b/domains/ireknazm.json index deb07a87e..b252e4f78 100644 --- a/domains/ireknazm.json +++ b/domains/ireknazm.json @@ -5,7 +5,7 @@ "username": "Nagellan", "email": "ireknazmievirek@gmail.com" }, - "record": { + "records": { "CNAME": "nagellan.github.io" } } diff --git a/domains/irfan.json b/domains/irfan.json index 0a99f687e..dcbe0ccfb 100644 --- a/domains/irfan.json +++ b/domains/irfan.json @@ -5,7 +5,7 @@ "username": "irfanbacker", "email": "irfuvk@gmail.com" }, - "record": { + "records": { "CNAME": "irfanbacker.github.io" } } diff --git a/domains/irfann.json b/domains/irfann.json new file mode 100644 index 000000000..f745bf347 --- /dev/null +++ b/domains/irfann.json @@ -0,0 +1,12 @@ +{ + "description": "personal portfolio", + "repo": "https://github.com/IrfanAnsarii/IrfanAnsarii.github.io", + "owner": { + "username": "IrfanAnsarii", + "email": "irfangittech@gmail.com" + }, + "records": { + "A": ["89.117.157.47"] + }, + "proxied": true +} diff --git a/domains/iris.json b/domains/iris.json index d743e7683..432d9cd83 100644 --- a/domains/iris.json +++ b/domains/iris.json @@ -1,10 +1,9 @@ { "owner": { "username": "BlockybombDEV", - "discord": "1115068990381887490", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.g7uWo8aejwTP6dC-LsPpsPtlf9CMiW8Nvj3LCZz7wQ1hykJDvqGcHMvAW9514GKzFHfVVozZdKmi-5jmH459Zk9OuCbrgv0YRb-pzk7qFuRuIG0DCrbm6YI4KDzb-QrJa5Kcp7bnS_BSP8qmKBZgRQ31WOSSPX0NSzW628FWwFYkZs5K0RuOrmg9dllB-r1VDs-MxsaVufkPKZ7GaQaNBxAVV3ijTPUIrSFSIMQRdeIRYsBn7UZra9nNvji1w16qDx8tLvqdymREZYmiQkjX-U0wJD6sYPuhqLbrBUBnyIsA2Dx5sIsikvoPTPsb9cjAUd6IKdKbh9bPtDeMv-iO8A.SBxgrswlwUpBmXGIEe-xpw._H8VZtaJ--WkYXedw9W5ZXktiZFGkLtiIDwUWYNQezDHqmxl5s-56PJ9cvzl9KnwEyVqvYkoam4futlL6n4OrKOEeythhMtBQSXaF1Z0C3k.9zvNZhPO4Jf_usApUB8gtA" + "discord": "1115068990381887490" }, - "record": { + "records": { "A": ["38.46.219.220"] } } diff --git a/domains/irumvanselme.json b/domains/irumvanselme.json index d0f9d7684..6b28ad46e 100644 --- a/domains/irumvanselme.json +++ b/domains/irumvanselme.json @@ -4,7 +4,7 @@ "email": "andesanselme@gmail.com" }, "repo": "irumvanselme.github.io", - "record": { + "records": { "CNAME": "irumvanselme.github.io" } } diff --git a/domains/isa.json b/domains/isa.json index c0c7fd45a..6028afa99 100644 --- a/domains/isa.json +++ b/domains/isa.json @@ -6,7 +6,7 @@ "email": "theonewhohasthisemail@gmail.com", "twitter": "_bob90368" }, - "record": { + "records": { "CNAME": "nottisa.github.io" } } diff --git a/domains/isaac.json b/domains/isaac.json index 50d5697f5..d6c283a77 100644 --- a/domains/isaac.json +++ b/domains/isaac.json @@ -3,7 +3,7 @@ "username": "IsaacTouhami", "email": "isaaco7274@gmail.com" }, - "record": { + "records": { "CNAME": "isaactouhami.github.io" } } diff --git a/domains/isaacrobert33.json b/domains/isaacrobert33.json new file mode 100644 index 000000000..16050ecb6 --- /dev/null +++ b/domains/isaacrobert33.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "isaacrobert33", + "email": "isaacrobertoluwaseun@gmail.com" + }, + "records": { + "CNAME": "isaacrobert-is-adev.vercel.app" + } +} diff --git a/domains/isabella.json b/domains/isabella.json index d0e038a61..3c801e159 100644 --- a/domains/isabella.json +++ b/domains/isabella.json @@ -3,7 +3,7 @@ "username": "MullerIsabella", "email": "AlpineDreamer92@protonmail.com" }, - "record": { + "records": { "CNAME": "mullerisabella.onrender.com" } } diff --git a/domains/isabelrosillo.json b/domains/isabelrosillo.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/isabelrosillo.json +++ b/domains/isabelrosillo.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/isaiahday.json b/domains/isaiahday.json deleted file mode 100644 index c4e8135bb..000000000 --- a/domains/isaiahday.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "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/isalvarez.json b/domains/isalvarez.json new file mode 100644 index 000000000..eceb942f1 --- /dev/null +++ b/domains/isalvarez.json @@ -0,0 +1,11 @@ +{ + "description": "I'll use isalvarez.is-a.dev for my personal portfolio.", + "repo": "https://github.com/isAlvarezDev/portfolio", + "owner": { + "username": "isAlvarezDev", + "email": "alvarezisaac871@gmail.com" + }, + "records": { + "CNAME": "isalvarezdev.github.io" + } +} diff --git a/domains/iscordian.json b/domains/iscordian.json index f2123e4a4..ce00a46d5 100644 --- a/domains/iscordian.json +++ b/domains/iscordian.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "iscordian", - "email": "iscordian.dev@gmail.com" - }, - "record": { - "CNAME": "iscordian.github.io" - } + "owner": { + "username": "iscordian", + "email": "iscordian.dev@gmail.com" + }, + "records": { + "CNAME": "iscordian.github.io" + } } diff --git a/domains/ishaanmehta.json b/domains/ishaanmehta.json index 58237a09b..b324fdfe1 100644 --- a/domains/ishaanmehta.json +++ b/domains/ishaanmehta.json @@ -5,7 +5,7 @@ "username": "ishaanmehta4", "email": "ishaanmehta4@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ishaanmehta4" } } diff --git a/domains/ishan-chawla.json b/domains/ishan-chawla.json index 8e8803394..fb3dd5bb8 100644 --- a/domains/ishan-chawla.json +++ b/domains/ishan-chawla.json @@ -3,7 +3,7 @@ "username": "KooShnoo", "email": "ishan.kpv@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-se0.pages.dev" } } diff --git a/domains/ishbenjamin.json b/domains/ishbenjamin.json new file mode 100644 index 000000000..e3bd0c1e5 --- /dev/null +++ b/domains/ishbenjamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aurumdev952", + "email": "benjamugi20072@gmail.com" + }, + "records": { + "CNAME": "benjamin-bay.vercel.app" + } +} diff --git a/domains/ishh.json b/domains/ishh.json index d4ef01652..5241337e0 100644 --- a/domains/ishh.json +++ b/domains/ishh.json @@ -5,7 +5,9 @@ "username": "ishh-xd", "email": "ishh-xd@proton.me" }, - "record": { - "CNAME": "ishh-xd.github.io" + "records": { + "A": ["185.199.111.153", "185.199.110.153", "185.199.108.153", "185.199.109.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/ishwar.json b/domains/ishwar.json new file mode 100644 index 000000000..5c3c9571d --- /dev/null +++ b/domains/ishwar.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/ishwar00/ishwarstuff", + "owner": { + "username": "ishwar00", + "email": "ishwargowda100@gmail.com" + }, + "records": { + "CNAME": "ishwarstuff.vercel.app" + } +} diff --git a/domains/isiraadithya.json b/domains/isiraadithya.json new file mode 100644 index 000000000..af15dbd8c --- /dev/null +++ b/domains/isiraadithya.json @@ -0,0 +1,10 @@ +{ + "description": "Isira Adithya's Personal Website", + "owner": { + "username": "isira-adithya", + "email": "me@isiraadithya.com" + }, + "records": { + "URL": "https://isiraadithya.com" + } +} diff --git a/domains/islandboy.json b/domains/islandboy.json new file mode 100644 index 000000000..a6df7e355 --- /dev/null +++ b/domains/islandboy.json @@ -0,0 +1,11 @@ +{ + "description": "Sub-domain of IslandBoy in is-a.dev", + "repo": "https://github.com/islandboymv/is-a-dev-register", + "owner": { + "username": "islandboymv", + "email": "mifzaal.scout@gmail.com" + }, + "records": { + "NS": ["lucy.ns.cloudflare.com", "mario.ns.cloudflare.com"] + } +} diff --git a/domains/isqne.json b/domains/isqne.json index 200e71404..8b1bc7ad5 100644 --- a/domains/isqne.json +++ b/domains/isqne.json @@ -5,7 +5,7 @@ "username": "Isqne", "email": "isqne@protonmail.com" }, - "record": { + "records": { "URL": "https://isqnechan.vercel.app" } } diff --git a/domains/israrkhan.json b/domains/israrkhan.json new file mode 100644 index 000000000..b76d58f53 --- /dev/null +++ b/domains/israrkhan.json @@ -0,0 +1,10 @@ +{ + "description": "israrkhan.is-a.dev.", + "owner": { + "username": "israrthedev08", + "email": "israrislive@gmail.com" + }, + "records": { + "URL": "https://guns.lol/israr08" + } +} diff --git a/domains/isrmicha.json b/domains/isrmicha.json index d2f29a017..949212467 100644 --- a/domains/isrmicha.json +++ b/domains/isrmicha.json @@ -3,7 +3,7 @@ "username": "isrmicha", "email": "israel.micha@mercadolivre.com" }, - "record": { + "records": { "URL": "https://github.com/isrmicha" } } diff --git a/domains/isturiz.json b/domains/isturiz.json new file mode 100644 index 000000000..79d0afea8 --- /dev/null +++ b/domains/isturiz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "isturiz" + }, + "records": { + "CNAME": "isturiz.vercel.app" + } +} diff --git a/domains/italo.json b/domains/italo.json new file mode 100644 index 000000000..5dc438034 --- /dev/null +++ b/domains/italo.json @@ -0,0 +1,11 @@ +{ + "description": "Personal subdomain - italo.is-a.dev", + "repo": "https://github.com/ItaloSa/italosa.github.io", + "owner": { + "username": "italoSa", + "email": "italosousa@duck.com" + }, + "records": { + "CNAME": "italosa.github.io" + } +} diff --git a/domains/itq.json b/domains/itq.json index 539ff2a00..4f36c7e17 100644 --- a/domains/itq.json +++ b/domains/itq.json @@ -3,7 +3,7 @@ "username": "devitq", "email": "itq.dev@ya.ru" }, - "record": { + "records": { "URL": "https://github.com/devitq" } } diff --git a/domains/itsdemongamez.json b/domains/itsdemongamez.json deleted file mode 100644 index ad1448374..000000000 --- a/domains/itsdemongamez.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DemonGamez", - "email": "peterwyneg@gmail.com", - "discord": "1038747272701292584" - }, - "record": { - "CNAME": "demongamez.github.io" - } -} diff --git a/domains/itsdharmik.json b/domains/itsdharmik.json index 7f48b4a48..e1f7aad6b 100644 --- a/domains/itsdharmik.json +++ b/domains/itsdharmik.json @@ -6,7 +6,7 @@ "email": "dharmikparmar2004@yahoo.com", "twitter": "itsdharmik" }, - "record": { + "records": { "CNAME": "itsdharmik.github.io" } } diff --git a/domains/itsjhonalex.json b/domains/itsjhonalex.json new file mode 100644 index 000000000..77779d82f --- /dev/null +++ b/domains/itsjhonalex.json @@ -0,0 +1,11 @@ +{ + "description": "itsjhonalex.is-a.dev", + "repo": "github.com/ItsJhonAlex/PortfolioDev", + "owner": { + "username": "ItsJhonAlex", + "email": "itsjhonalex@gmail.com" + }, + "records": { + "CNAME": "portfolio-dev-itsjhonalexs-projects.vercel.app" + } +} diff --git a/domains/itskh4ng.json b/domains/itskh4ng.json new file mode 100644 index 000000000..78b5b4953 --- /dev/null +++ b/domains/itskh4ng.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itskh4ng", + "email": "itskh4ng@proton.me" + }, + "records": { + "CNAME": "itskh4ng.pages.dev" + } +} diff --git a/domains/itskorn.json b/domains/itskorn.json index 213e91ded..4d7342500 100644 --- a/domains/itskorn.json +++ b/domains/itskorn.json @@ -3,7 +3,7 @@ "username": "DemonGamez", "email": "peterwyneg@gmail.com" }, - "record": { + "records": { "CNAME": "itskorn.github.io" } } diff --git a/domains/itsmealdo.json b/domains/itsmealdo.json index c707e146c..96690356f 100644 --- a/domains/itsmealdo.json +++ b/domains/itsmealdo.json @@ -5,7 +5,7 @@ "username": "itsmealdo", "email": "aldosaputra@gmail.com" }, - "record": { + "records": { "CNAME": "itsmealdo.github.io" } } diff --git a/domains/itsmepvr.json b/domains/itsmepvr.json new file mode 100644 index 000000000..8e272223b --- /dev/null +++ b/domains/itsmepvr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsmepvr", + "email": "pvrreddy155@gmail.com" + }, + "records": { + "CNAME": "itsmepvr.github.io" + } +} diff --git a/domains/itsneufox.json b/domains/itsneufox.json index afe9eec6e..f7eadfa7a 100644 --- a/domains/itsneufox.json +++ b/domains/itsneufox.json @@ -3,7 +3,7 @@ "username": "itsneufox", "email": "ajuda@tntsamp.com" }, - "record": { + "records": { "CNAME": "itsneufox.github.io" } } diff --git a/domains/itsnicecraft.json b/domains/itsnicecraft.json index 4e04ccfdf..f66ce1e9e 100644 --- a/domains/itsnicecraft.json +++ b/domains/itsnicecraft.json @@ -5,7 +5,7 @@ "username": "itsnicecraft", "twitter": "itsnicecraft" }, - "record": { + "records": { "CNAME": "itsnicecraft.github.io" } } diff --git a/domains/itsomsarraf.json b/domains/itsomsarraf.json index d8c84715b..8db4c3c59 100644 --- a/domains/itsomsarraf.json +++ b/domains/itsomsarraf.json @@ -5,7 +5,7 @@ "username": "itsOmSarraf", "email": "itsomsarraf@gmail.com" }, - "record": { + "records": { "CNAME": "itsomsarraf.github.io" } } diff --git a/domains/itsreimau.json b/domains/itsreimau.json index 7304cefd0..a43b1dfe1 100644 --- a/domains/itsreimau.json +++ b/domains/itsreimau.json @@ -3,7 +3,7 @@ "username": "itsreimau", "email": "private.iblmln@gmail.com" }, - "record": { + "records": { "CNAME": "itsreimau.github.io" } } diff --git a/domains/itsvick.json b/domains/itsvick.json index 421b60a90..9b2903665 100644 --- a/domains/itsvick.json +++ b/domains/itsvick.json @@ -3,7 +3,7 @@ "username": "itsvick", "email": "vivek_kasture@techjoomla.com" }, - "record": { + "records": { "CNAME": "itsvick.github.io" } } diff --git a/domains/ittranducloc.json b/domains/ittranducloc.json index db77b9d81..23fa37d69 100644 --- a/domains/ittranducloc.json +++ b/domains/ittranducloc.json @@ -3,7 +3,7 @@ "username": "ittranducloc", "email": "it.tranducloc@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ittranducloc" } } diff --git a/domains/itz-rj-here.json b/domains/itz-rj-here.json new file mode 100644 index 000000000..b5548163e --- /dev/null +++ b/domains/itz-rj-here.json @@ -0,0 +1,11 @@ +{ + "description": "It'z RJ's Website", + "repo": "https://github.com/itz-rj-here/itz-rj-here.github.io", + "owner": { + "username": "itz-rj-here", + "email": "faiadmahmudadil@gmail.com" + }, + "records": { + "CNAME": "itz-rj-here.github.io" + } +} diff --git a/domains/itzhenry.json b/domains/itzhenry.json index 13197cb25..687e6da49 100644 --- a/domains/itzhenry.json +++ b/domains/itzhenry.json @@ -4,7 +4,7 @@ "username": "ItzHenry1", "email": "trscrus@gmail.com" }, - "record": { + "records": { "CNAME": "itzhenry1.github.io" } } diff --git a/domains/itzliam.json b/domains/itzliam.json index 6abc895b7..fe8f65854 100644 --- a/domains/itzliam.json +++ b/domains/itzliam.json @@ -3,7 +3,7 @@ "username": "liamgaming23", "email": "liamstickman123@gmail.com" }, - "record": { + "records": { "CNAME": "liamgaming23.github.io" } } diff --git a/domains/itzporium.json b/domains/itzporium.json index ce80161e4..c404dde5c 100644 --- a/domains/itzporium.json +++ b/domains/itzporium.json @@ -7,7 +7,7 @@ "twitter": false, "discord": "Itzporium#9655" }, - "record": { + "records": { "CNAME": "codernocook.github.io" } } diff --git a/domains/iusearchbtw.json b/domains/iusearchbtw.json deleted file mode 100644 index c522d6c12..000000000 --- a/domains/iusearchbtw.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "iamnotmega", - "email": "uksningaken@gmail.com" - }, - "record": { - "CNAME": "iamnotmega.github.io" - } -} diff --git a/domains/ivan.json b/domains/ivan.json index 70675bc3b..2a3344f27 100644 --- a/domains/ivan.json +++ b/domains/ivan.json @@ -3,7 +3,7 @@ "username": "174n", "email": "174n@riseup.net" }, - "record": { + "records": { "CNAME": "alexandrov.online" } } diff --git a/domains/ivedant.json b/domains/ivedant.json index 929e12961..698552bff 100644 --- a/domains/ivedant.json +++ b/domains/ivedant.json @@ -5,7 +5,7 @@ "username": "Flash2014", "email": "naiduvedant@gmail.com" }, - "record": { + "records": { "CNAME": "flash2014.github.io" } } diff --git a/domains/ivin-mathew.json b/domains/ivin-mathew.json new file mode 100644 index 000000000..8dfe85c4a --- /dev/null +++ b/domains/ivin-mathew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ivin-Mathew", + "email": "ivinmk2410@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/iviswanathreddy.json b/domains/iviswanathreddy.json new file mode 100644 index 000000000..f27f07151 --- /dev/null +++ b/domains/iviswanathreddy.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio written in Ruby and HTML", + "repo": "https://github.com/iviswanathreddy/iviswanathreddy.github.io.git", + "owner": { + "username": "iviswanathreddy", + "email": "i.viswanath666@gmail.com" + }, + "records": { + "CNAME": "iviswanathreddy.github.io" + } +} diff --git a/domains/ivo.json b/domains/ivo.json new file mode 100644 index 000000000..019b6b7a7 --- /dev/null +++ b/domains/ivo.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "owner": { + "username": "ifayala", + "email": "ivo@dailabs.io", + "discord": "lt_smash666" + }, + "records": { + "A": ["34.16.212.81"] + } +} diff --git a/domains/ivy.json b/domains/ivy.json new file mode 100644 index 000000000..f31eaac44 --- /dev/null +++ b/domains/ivy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jel9", + "email": "cock@ivy.lat" + }, + "records": { + "URL": "https://ivy.lat" + } +} diff --git a/domains/ixdoggo.json b/domains/ixdoggo.json index 8dd5021b5..ccbe2a0fd 100644 --- a/domains/ixdoggo.json +++ b/domains/ixdoggo.json @@ -3,7 +3,10 @@ "username": "xellion-dev", "email": "xelxtct@gmail.com" }, - "record": { - "CNAME": "ixdoggo.pages.dev" - } + "records": { + "CNAME": "ixdoggo.pages.dev", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + }, + "proxied": true } diff --git a/domains/iystreem.json b/domains/iystreem.json index 8a23664b7..38ff0f8d0 100644 --- a/domains/iystreem.json +++ b/domains/iystreem.json @@ -5,7 +5,7 @@ "username": "IYSTREEM", "email": "iystreem186@gmail.com" }, - "record": { + "records": { "CNAME": "iystreem.github.io" } } diff --git a/domains/izerr.json b/domains/izerr.json index acfe3a8db..c1b53cc01 100644 --- a/domains/izerr.json +++ b/domains/izerr.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Explodey-Wolf", - "email": "peanutplays61@gmail.com" - }, - "record": { - "A": [ - "76.76.21.21" - ] - } + "owner": { + "username": "Explodey-Wolf", + "email": "peanutplays61@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } } diff --git a/domains/izumie.json b/domains/izumie.json new file mode 100644 index 000000000..fea7cb443 --- /dev/null +++ b/domains/izumie.json @@ -0,0 +1,12 @@ +{ + "description": "izumie.is-a.dev subdomain", + "repo": "https://github.com/LexisMate/register", + "owner": { + "username": "LexisMate", + "email": "izumieprivateltd@gmail.com" + }, + "records": { + "CNAME": "mr-izumie.vercel.app" + }, + "proxied": true +} diff --git a/domains/j.json b/domains/j.json index 6bfc0f035..c1a82a022 100644 --- a/domains/j.json +++ b/domains/j.json @@ -6,16 +6,9 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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" - ] + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/j3ffjessie.json b/domains/j3ffjessie.json index 9862bb79f..edb22c9c9 100644 --- a/domains/j3ffjessie.json +++ b/domains/j3ffjessie.json @@ -5,7 +5,7 @@ "username": "j3ffjessie", "email": "j3ffjessie@protonmail.com" }, - "record": { + "records": { "CNAME": "j3ffjessie.github.io" } } diff --git a/domains/ja.json b/domains/ja.json index 5690830d8..4da40abc6 100644 --- a/domains/ja.json +++ b/domains/ja.json @@ -3,7 +3,7 @@ "username": "jsJack", "email": "hello@jackperry.co" }, - "record": { + "records": { "URL": "https://jackperry.co" } } diff --git a/domains/jabbdev.json b/domains/jabbdev.json new file mode 100644 index 000000000..b8ef473b9 --- /dev/null +++ b/domains/jabbdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jabbcode", + "email": "jabbsontouch@gmail.com" + }, + "records": { + "CNAME": "react-frontend-production-0024.up.railway.app" + } +} diff --git a/domains/jabin.json b/domains/jabin.json index 62252d6bd..4f946a321 100644 --- a/domains/jabin.json +++ b/domains/jabin.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "jab11n", - "twitter": "jab11n", - "github": "jab11n", - "email": "iad-contact@rdr.lol" - }, - "record": { - "CNAME": "jab11n.github.io" - } + "owner": { + "username": "jab11n", + "twitter": "jab11n", + "github": "jab11n", + "email": "iad-contact@rdr.lol" + }, + "records": { + "CNAME": "jab11n.github.io" + } } diff --git a/domains/jacek.json b/domains/jacek.json new file mode 100644 index 000000000..61b481d00 --- /dev/null +++ b/domains/jacek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smolak", + "email": "jacek.smolak@gmail.com" + }, + "records": { + "CNAME": "jaceksmolak.vercel.app" + } +} diff --git a/domains/jack.json b/domains/jack.json index cc66ce2e9..612aa3633 100644 --- a/domains/jack.json +++ b/domains/jack.json @@ -4,7 +4,7 @@ "email": "chapmanjack0777@gmail.com", "discord": "crepppy#2758" }, - "record": { + "records": { "URL": "https://jackchap.com" } } diff --git a/domains/jackfrost.json b/domains/jackfrost.json index c38592604..57e948e03 100644 --- a/domains/jackfrost.json +++ b/domains/jackfrost.json @@ -3,7 +3,7 @@ "username": "JackFrost003", "email": "jackfro03@gmail.com" }, - "record": { + "records": { "URL": "https://shortner-yo72.onrender.com" } } diff --git a/domains/jackson.json b/domains/jackson.json index d0e3c5714..d0ce0b64c 100644 --- a/domains/jackson.json +++ b/domains/jackson.json @@ -3,12 +3,7 @@ "username": "SimplyJackson", "discord": "jackson!#0001" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/jacksonmalone.json b/domains/jacksonmalone.json index 5832f0353..de0cda977 100644 --- a/domains/jacksonmalone.json +++ b/domains/jacksonmalone.json @@ -3,7 +3,7 @@ "username": "jacksonmalone", "email": "jrm9918@gmail.com" }, - "record": { + "records": { "CNAME": "jacksonmalone.github.io" } } diff --git a/domains/jacob.json b/domains/jacob.json index 7a9719e9a..420092cc6 100644 --- a/domains/jacob.json +++ b/domains/jacob.json @@ -5,7 +5,7 @@ "username": "jacob13400", "email": "jacob13400@gmail.com" }, - "record": { + "records": { "CNAME": "jacob13400.github.io" } } diff --git a/domains/jacques.json b/domains/jacques.json new file mode 100644 index 000000000..4e0d8562d --- /dev/null +++ b/domains/jacques.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jacques2Marais", + "discord": "itsmejackmorris" + }, + "records": { + "CNAME": "portfolio-jade-eta-63.vercel.app" + } +} diff --git a/domains/jadebetty.json b/domains/jadebetty.json index e548a36e1..397623665 100644 --- a/domains/jadebetty.json +++ b/domains/jadebetty.json @@ -3,13 +3,8 @@ "username": "JadeBetty", "discord": "758617912566087681" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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/jaennova.json b/domains/jaennova.json new file mode 100644 index 000000000..eb6ce771e --- /dev/null +++ b/domains/jaennova.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/jaennova/portfolio", + "owner": { + "username": "jaennova", + "email": "jaendevp@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jagan.json b/domains/jagan.json index 44905c7c9..7c7dc0cac 100644 --- a/domains/jagan.json +++ b/domains/jagan.json @@ -5,7 +5,7 @@ "username": "MR-JAGANMOHAN", "email": "jaganpenke124@gmail.com" }, - "record": { + "records": { "CNAME": "mr-jaganmohan.github.io" } } diff --git a/domains/jagdhish-mer.json b/domains/jagdhish-mer.json index 272603963..3461cb51a 100644 --- a/domains/jagdhish-mer.json +++ b/domains/jagdhish-mer.json @@ -4,7 +4,7 @@ "owner": { "username": "jagdish-der" }, - "record": { + "records": { "CNAME": "jagdish-der.github.io" } } diff --git a/domains/jagdish-mer.json b/domains/jagdish-mer.json index 554509d17..ddd9d270d 100644 --- a/domains/jagdish-mer.json +++ b/domains/jagdish-mer.json @@ -4,7 +4,7 @@ "owner": { "username": "jagdish-mer" }, - "record": { + "records": { "CNAME": "jagdish-mer.github.io" } } diff --git a/domains/jagi.json b/domains/jagi.json index dc72e6d1d..e5c514cf6 100644 --- a/domains/jagi.json +++ b/domains/jagi.json @@ -3,7 +3,7 @@ "username": "javhaa07", "email": "jjagi02@gmail.com" }, - "record": { + "records": { "CNAME": "jagi-is-a-dev.pages.dev" } } diff --git a/domains/jagruti-metaliya.json b/domains/jagruti-metaliya.json index b3ea324b6..9041ae32c 100644 --- a/domains/jagruti-metaliya.json +++ b/domains/jagruti-metaliya.json @@ -5,7 +5,7 @@ "username": "jagruti-metaliya", "email": "jagruti.metaliya@truestaz.com" }, - "record": { + "records": { "URL": "https://jagruti-metaliya.github.io" } } diff --git a/domains/jai.json b/domains/jai.json new file mode 100644 index 000000000..e938e7f27 --- /dev/null +++ b/domains/jai.json @@ -0,0 +1,11 @@ +{ + "description": "Jai Singh Rathore's Portfolio Website", + "repo": "https://github.com/jaizxzx/jaizxzx.github.io", + "owner": { + "username": "jaizxzx", + "email": "jaisinghrathore4432@gmail.com" + }, + "records": { + "CNAME": "jaizxzx.github.io" + } +} diff --git a/domains/jaideep.json b/domains/jaideep.json index 59a6fe0c5..6e8609f54 100644 --- a/domains/jaideep.json +++ b/domains/jaideep.json @@ -3,7 +3,7 @@ "username": "xxeisenberg", "email": "jaideepmato7@gmail.com" }, - "record": { + "records": { "CNAME": "piyush10f.vercel.app" } } diff --git a/domains/jaimezpe.json b/domains/jaimezpe.json new file mode 100644 index 000000000..a7bee39e4 --- /dev/null +++ b/domains/jaimezpe.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/jaimezpe/bio", + "owner": { + "username": "jaimezpe", + "email": "info@jaimezpe.com" + }, + "records": { + "CNAME": "jaimezpe.com" + } +} diff --git a/domains/jainam.json b/domains/jainam.json index 469fc0ecd..287478167 100644 --- a/domains/jainam.json +++ b/domains/jainam.json @@ -3,7 +3,7 @@ "username": "jainamoswal", "email": "me@jainam.me" }, - "record": { + "records": { "URL": "http://jainam.me" } } diff --git a/domains/jairomorales.json b/domains/jairomorales.json index 6d4fd0400..845bcee5b 100644 --- a/domains/jairomorales.json +++ b/domains/jairomorales.json @@ -6,7 +6,7 @@ "email": "jairomoralesperez0@gmail.com", "discord": "icky17" }, - "record": { + "records": { "CNAME": "icky17.github.io" } } diff --git a/domains/jakakordez.json b/domains/jakakordez.json new file mode 100644 index 000000000..e297e10fc --- /dev/null +++ b/domains/jakakordez.json @@ -0,0 +1,10 @@ +{ + "description": "jakakordez.is-a.dev", + "owner": { + "username": "jakakordez", + "email": "jaka.kordez@gmail.com" + }, + "records": { + "URL": "https://github.com/jakakordez" + } +} diff --git a/domains/jake.json b/domains/jake.json index 2e5c97792..df6dcf561 100644 --- a/domains/jake.json +++ b/domains/jake.json @@ -1,9 +1,8 @@ { "owner": { - "username": "xzrci", - "email": "" + "username": "xzrci" }, - "record": { + "records": { "CNAME": "xzrci.vercel.app" } } diff --git a/domains/jakehe.json b/domains/jakehe.json index bb611cbac..3404f6d6c 100644 --- a/domains/jakehe.json +++ b/domains/jakehe.json @@ -5,7 +5,7 @@ "email": "jakehe1226@gmail.com", "twitter": "jakethebest1238" }, - "record": { + "records": { "CNAME": "jakehe1226.github.io" } } diff --git a/domains/jakub.json b/domains/jakub.json index 56e54c3a2..016f34b7a 100644 --- a/domains/jakub.json +++ b/domains/jakub.json @@ -3,7 +3,7 @@ "username": "Jakubk15", "email": "jakubk15@protonmail.com" }, - "record": { + "records": { "URL": "https://github.com/Jakubk15" } } diff --git a/domains/jal.json b/domains/jal.json new file mode 100644 index 000000000..f3fcec086 --- /dev/null +++ b/domains/jal.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio of Jal, Full Stack Dev", + "repo": "https://github.com/Jal-GG/Jal-Patel", + "owner": { + "username": "Jal-GG", + "email": "jalvrund2017@gmail.com" + }, + "records": { + "CNAME": "jal-patel.vercel.app" + } +} diff --git a/domains/jalaj.json b/domains/jalaj.json index 2f890ab41..d6911ecc6 100644 --- a/domains/jalaj.json +++ b/domains/jalaj.json @@ -5,7 +5,7 @@ "username": "jalajcodes", "twitter": "jalajcodes" }, - "record": { + "records": { "CNAME": "jalaj.up.railway.app" } } diff --git a/domains/james-wiseman.json b/domains/james-wiseman.json new file mode 100644 index 000000000..cc3a77cec --- /dev/null +++ b/domains/james-wiseman.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site for James Wiseman", + "owner": { + "username": "jamesrobertwiseman", + "email": "hello@jameswiseman.me" + }, + "records": { + "CNAME": "jameswiseman.me" + }, + "proxied": true +} diff --git a/domains/james.json b/domains/james.json new file mode 100644 index 000000000..19a6b539e --- /dev/null +++ b/domains/james.json @@ -0,0 +1,11 @@ +{ + "description": "Directory for my dev related social links", + "owner": { + "username": "jameshaworthcs", + "email": "james@j-h.ai" + }, + "records": { + "URL": "https://j-h.ai" + }, + "proxied": false +} diff --git a/domains/jameshartley.json b/domains/jameshartley.json new file mode 100644 index 000000000..fd9005268 --- /dev/null +++ b/domains/jameshartley.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio domain showcasing projects", + "repo": "https://github.com/jdbhartley/portfolio_nuro", + "owner": { + "username": "jdbhartley", + "discord": "MobiSlick#3640" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jamespi.json b/domains/jamespi.json index 7c332d79a..1a96defce 100644 --- a/domains/jamespi.json +++ b/domains/jamespi.json @@ -3,7 +3,7 @@ "username": "Sussy-OS", "email": "SussyS0S-Operating-Systems@protonmail.com" }, - "record": { + "records": { "URL": "https://cooperbrosssp.top" } } diff --git a/domains/jamestheflash.json b/domains/jamestheflash.json index bf26d55c6..e5a351e41 100644 --- a/domains/jamestheflash.json +++ b/domains/jamestheflash.json @@ -5,7 +5,7 @@ "username": "JamesTheFlash", "email": "me@jamestheflash22.is-a.dev" }, -"record": { - "CNAME": "jamestheflash22.github.io" - } -} + "records": { + "CNAME": "jamestheflash22.github.io" + } +} diff --git a/domains/jamestheflash22.json b/domains/jamestheflash22.json index defa54273..c206df6ea 100644 --- a/domains/jamestheflash22.json +++ b/domains/jamestheflash22.json @@ -5,7 +5,7 @@ "username": "JamesTheFlash22", "email": "davidebu43@gmail.com" }, - "record": { + "records": { "TXT": ["zoho-verification=zb32026957.zmverify.zoho.eu"], "MX": ["mx3.zoho.eu", "mx2.zoho.eu", "mx.zoho.eu"] } diff --git a/domains/jamied132.json b/domains/jamied132.json index 4b9bd674b..0abf7c0e5 100644 --- a/domains/jamied132.json +++ b/domains/jamied132.json @@ -1,11 +1,10 @@ { "description": "A personal portfolio about me, along with some other stuff (the repository is currently empty but I will add some stuff)", - "repo": "https://github.com/jamied132", "owner": { "username": "jamied132", "email": "jamied132.email@gmail.com" }, - "record": { + "records": { "NS": ["kevin.ns.cloudflare.com", "megan.ns.cloudflare.com"] } } diff --git a/domains/jamig.json b/domains/jamig.json index 8d1540267..3f8c173c5 100644 --- a/domains/jamig.json +++ b/domains/jamig.json @@ -3,7 +3,7 @@ "username": "jamig7", "email": "jamigseven@gmail.com" }, - "record": { + "records": { "CNAME": "jamig7.github.io" } } diff --git a/domains/jan.json b/domains/jan.json new file mode 100644 index 000000000..b614ce0de --- /dev/null +++ b/domains/jan.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Dev Website", + "owner": { + "username": "jpgreth", + "email": "github@greth.me" + }, + "records": { + "CNAME": "greth.dev" + } +} diff --git a/domains/janco.json b/domains/janco.json index 0e925f33f..3a798a509 100644 --- a/domains/janco.json +++ b/domains/janco.json @@ -1,10 +1,9 @@ { "owner": { "username": "JancoNel", - "discord": "1264555376918134796", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LXD6kezr5CJaRBhFUVB3WcB2IKWzrw1zn6yuWQNmDlGbppbOw7W1GqJWiqePOPHEA_7EVj2f-pvK1WnkFaW4i1g0zpqAPeyNQfyVtlpttW7cyWFJGe_gRoTznaXXvntNw84qOEIIuPqFFloq03Lqdj5Iox736TOefBr5uTSieAj1oJ-qcQS424nnBrremLgjE3mEXY9ORhaTYD3XPdbvX6iYKrDl8ooM_nmkorcZzmoNjCKHDe3p6TML2vuPey_YTX1R0hJGJ1A99VYdBCVhvfEeeEO9Aaxo9Nu-4Um78wMHqtp7oryLHpwOcUzp7a3rAIkjtQaNmiL4jHLoWJFgtw.GWB9aQvdXYxUHmvAYGxK0A.IfxHtkIYUorJIxI7RvkstIB_pGZ-baszSq-IpLE_9arsm3tPTctQbz_Urii0J1-nBvjUaKdkQiWQDa_YBawyT7qber-j-zZlunX-bILrcT4.L4Sb6DK6xcrjwkUsYRmLXw" + "discord": "1264555376918134796" }, - "record": { + "records": { "CNAME": "janconel.github.io" } } diff --git a/domains/janeq.json b/domains/janeq.json index 051542fbc..fdff1b3a7 100644 --- a/domains/janeq.json +++ b/domains/janeq.json @@ -5,7 +5,7 @@ "username": "notjaneq", "email": "a2012989z@gmail.com" }, - "record": { + "records": { "CNAME": "notjaneq.github.io" } } diff --git a/domains/janith.json b/domains/janith.json new file mode 100644 index 000000000..9aa40979c --- /dev/null +++ b/domains/janith.json @@ -0,0 +1,11 @@ +{ + "description": "Janith .is-a.dev domain", + "repo": "https://github.com/janithpm/janithpm.github.io", + "owner": { + "username": "Janithpm", + "email": "janithmadarasinghe@gmail.com" + }, + "records": { + "CNAME": "janithpm.github.io" + } +} diff --git a/domains/janleigh.json b/domains/janleigh.json index 60a1c72e3..cba5473e0 100644 --- a/domains/janleigh.json +++ b/domains/janleigh.json @@ -3,7 +3,7 @@ "username": "janleigh", "email": "janleigh@proton.me" }, - "record": { + "records": { "CNAME": "janleigh.github.io" } } diff --git a/domains/janmb.json b/domains/janmb.json index 6b4c5ae40..4300c7a5f 100644 --- a/domains/janmb.json +++ b/domains/janmb.json @@ -4,7 +4,7 @@ "email": "msc2tvdn@duck.com", "discord": "962788530336178236" }, - "record": { + "records": { "A": ["213.238.183.171"] } } diff --git a/domains/janmikowa.json b/domains/janmikowa.json index da4adcfb5..42f67cc99 100644 --- a/domains/janmikowa.json +++ b/domains/janmikowa.json @@ -3,7 +3,7 @@ "username": "Maritsu", "email": "maritsuqnn@gmail.com" }, - "record": { + "records": { "CNAME": "maritsu.github.io" } } diff --git a/domains/januantara.json b/domains/januantara.json index 9aa55d685..a8da7cd57 100644 --- a/domains/januantara.json +++ b/domains/januantara.json @@ -3,7 +3,7 @@ "username": "coderzhaxor", "email": "ajanuantara@gmail.com" }, - "record": { + "records": { "CNAME": "coderzhaxor.github.io" } } diff --git a/domains/janvier.json b/domains/janvier.json new file mode 100644 index 000000000..10a76b7da --- /dev/null +++ b/domains/janvier.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jenzzly", + "email": "jenzzly@gmail.com" + }, + "records": { + "URL": "https://jenzzly.github.io/systems/" + } +} diff --git a/domains/jar.json b/domains/jar.json new file mode 100644 index 000000000..b61aa3427 --- /dev/null +++ b/domains/jar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jartf", + "email": "hi@jar.tf" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/jariullah.json b/domains/jariullah.json index 131aa51d6..eb6159bc6 100644 --- a/domains/jariullah.json +++ b/domains/jariullah.json @@ -5,7 +5,7 @@ "username": "mohdjariullah", "email": "mohdjariullah@gmail.com" }, - "record": { + "records": { "CNAME": "mohdjariullah.github.io" } } diff --git a/domains/jasa.json b/domains/jasa.json new file mode 100644 index 000000000..12ed6dc56 --- /dev/null +++ b/domains/jasa.json @@ -0,0 +1,11 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/mrsanjaya/mrsanjaya.github.io", + "owner": { + "username": "mrsanjaya", + "email": "sandhysanjaya0110@gmail.com" + }, + "records": { + "CNAME": "mrsanjaya.github.io" + } +} diff --git a/domains/jasmeetsingh.json b/domains/jasmeetsingh.json index 071541f4e..1c9b24724 100644 --- a/domains/jasmeetsingh.json +++ b/domains/jasmeetsingh.json @@ -3,7 +3,7 @@ "username": "jasmeetsinghbhatia", "email": "jasmeetsinghbhatia@gmail.com" }, - "record": { + "records": { "URL": "https://jasmeetsinghbhatia.github.io/resume/" } } diff --git a/domains/jason.json b/domains/jason.json index 7d531b1a7..3ad3cf4ba 100644 --- a/domains/jason.json +++ b/domains/jason.json @@ -4,7 +4,7 @@ "email": "jasonsantiagobutler@gmail.com", "twitter": "nythrox_" }, - "record": { + "records": { "URL": "https://jasonbutler.web.app" } } diff --git a/domains/jasondevgm.json b/domains/jasondevgm.json new file mode 100644 index 000000000..497784e93 --- /dev/null +++ b/domains/jasondevgm.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/jasondevgm/jasondevgm.github.io.git", + "owner": { + "username": "jasondevgm", + "email": "jasondevgm@gmail.com" + }, + "records": { + "CNAME": "jasondevgm.github.io" + } +} diff --git a/domains/jasontumusiime.json b/domains/jasontumusiime.json index b7e23164a..16939de3f 100644 --- a/domains/jasontumusiime.json +++ b/domains/jasontumusiime.json @@ -3,7 +3,7 @@ "username": "jasontumusiime", "email": "jason.2mcme@gmail.com" }, - "record": { + "records": { "A": ["16.170.224.34"] } } diff --git a/domains/jasvindersingh.json b/domains/jasvindersingh.json new file mode 100644 index 000000000..81caecd5b --- /dev/null +++ b/domains/jasvindersingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "singhJasvinder101", + "email": "jasvindersingh3593@gmail.com" + }, + "records": { + "CNAME": "jasvinder-portfolio.netlify.app" + } +} diff --git a/domains/jatin.json b/domains/jatin.json index 7736cc99e..3e0d74837 100644 --- a/domains/jatin.json +++ b/domains/jatin.json @@ -5,7 +5,7 @@ "username": "Jateeeen", "email": "jatin@linkxtr.app" }, - "record": { + "records": { "CNAME": "jateeeen.github.io" } } diff --git a/domains/jatinkr.json b/domains/jatinkr.json index 2da55b6ae..5cf72cd84 100644 --- a/domains/jatinkr.json +++ b/domains/jatinkr.json @@ -3,7 +3,7 @@ "username": "jatinkumarg", "email": "jatinkr@duck.com" }, - "record": { + "records": { "CNAME": "jatinkumarg.github.io" } } diff --git a/domains/java.json b/domains/java.json index 3929e883c..6ef57e6fb 100644 --- a/domains/java.json +++ b/domains/java.json @@ -5,7 +5,7 @@ "username": "javascript-void0", "discord": "Java#3865" }, - "record": { + "records": { "CNAME": "javascript-void0.github.io" } } diff --git a/domains/javi.json b/domains/javi.json new file mode 100644 index 000000000..137d1958e --- /dev/null +++ b/domains/javi.json @@ -0,0 +1,11 @@ +{ + "description": "Javi's dev website", + "repo": "https://github.com/itsjavi/itsjavi.github.io", + "owner": { + "username": "itsjavi", + "discord": "itsjavi" + }, + "records": { + "CNAME": "itsjavi.github.io" + } +} diff --git a/domains/javier.json b/domains/javier.json deleted file mode 100644 index e10b9826f..000000000 --- a/domains/javier.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Javier Zaleta's personal website", - "repo": "https://github.com/jzaleta/jzaleta", - "owner": { - "username": "jzaleta", - "twitter": "j_cordz" - }, - "record": { - "CNAME": "jzaleta.github.io" - } -} diff --git a/domains/javilopercoder.json b/domains/javilopercoder.json new file mode 100644 index 000000000..bf3af6211 --- /dev/null +++ b/domains/javilopercoder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "javilopercoder", + "email": "javilopercoder@gmail.com" + }, + "records": { + "CNAME": "javilopercoder.github.io" + } +} diff --git a/domains/jawad0501.json b/domains/jawad0501.json new file mode 100644 index 000000000..c3fa92aff --- /dev/null +++ b/domains/jawad0501.json @@ -0,0 +1,11 @@ +{ + "description": "jawad's personal portfolio website", + "repo": "https://github.com/Jawad0501/terminal-portfolio.git", + "owner": { + "username": "Jawad0501", + "email": "anmjawad007@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jax.json b/domains/jax.json index b4cf745c8..076f136c8 100644 --- a/domains/jax.json +++ b/domains/jax.json @@ -5,7 +5,7 @@ "username": "jxaq", "email": "wild.dives.0x@icloud.com" }, - "record": { + "records": { "TXT": ["v=spf1 -all"], "A": ["76.76.21.21"] } diff --git a/domains/jay-bhalodiya.json b/domains/jay-bhalodiya.json index 92a48c3ed..696090459 100644 --- a/domains/jay-bhalodiya.json +++ b/domains/jay-bhalodiya.json @@ -5,7 +5,7 @@ "username": "jay-bhalodiya", "email": "jay.bhalodiya@acquaintsoft.com" }, - "record": { + "records": { "CNAME": "jay-bhalodiya.github.io" } } diff --git a/domains/jay-d-dave.json b/domains/jay-d-dave.json index f9c916535..505d92620 100644 --- a/domains/jay-d-dave.json +++ b/domains/jay-d-dave.json @@ -5,7 +5,7 @@ "username": "jay-d-dave", "email": "jay.dave@truestaz.com" }, - "record": { + "records": { "CNAME": "jay-d-dave.github.io" } } diff --git a/domains/jay.json b/domains/jay.json index a5e352183..9a9ae51c1 100644 --- a/domains/jay.json +++ b/domains/jay.json @@ -3,7 +3,7 @@ "username": "jiacea", "email": "jayjayconsuelo@gmail.com" }, - "record": { + "records": { "CNAME": "jai.pages.dev" } } diff --git a/domains/jayakrishna.json b/domains/jayakrishna.json index cc6111d71..d7bab336e 100644 --- a/domains/jayakrishna.json +++ b/domains/jayakrishna.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jayakrishna-g", - "email": "rareone.jk@gmail.com" - }, - "record": { - "CNAME": "jggandha-30911ba21954.herokuapp.com" - } + "owner": { + "username": "jayakrishna-g", + "email": "rareone.jk@gmail.com" + }, + "records": { + "CNAME": "jggandha-30911ba21954.herokuapp.com" + } } diff --git a/domains/jayantkageri.json b/domains/jayantkageri.json index 87c4d753e..d58034c0a 100644 --- a/domains/jayantkageri.json +++ b/domains/jayantkageri.json @@ -5,7 +5,7 @@ "username": "jayantkageri", "email": "jayantkageri@gmail.com" }, - "record": { + "records": { "URL": "https://www.jayantkageri.in" } } diff --git a/domains/jayasurya.json b/domains/jayasurya.json index d6eff00bf..0c49a2ddc 100644 --- a/domains/jayasurya.json +++ b/domains/jayasurya.json @@ -2,7 +2,8 @@ "owner": { "username": "jsuryakt" }, - "record": { + "records": { "A": ["75.2.60.5"] - } + }, + "proxied": false } diff --git a/domains/jaycedotbin.json b/domains/jaycedotbin.json index 309d263b0..3bd7d2b07 100644 --- a/domains/jaycedotbin.json +++ b/domains/jaycedotbin.json @@ -6,7 +6,7 @@ "email": "johncarloaustria@protonmail.com", "twitter": "jaycedotbin" }, - "record": { + "records": { "CNAME": "jaycedotbin.github.io" } } diff --git a/domains/jayg.json b/domains/jayg.json index 9fb19ca09..2176267c5 100644 --- a/domains/jayg.json +++ b/domains/jayg.json @@ -6,7 +6,7 @@ "email": "jyaptkd2126@gmail.com", "twitter": "JayGTypes" }, - "record": { + "records": { "URL": "https://jayg.top", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/jayraj.json b/domains/jayraj.json index aae089f1a..ddfdd3f11 100644 --- a/domains/jayraj.json +++ b/domains/jayraj.json @@ -6,7 +6,7 @@ "email": "jayrajcodes@gmail.com", "twitter": "wanna_relive" }, - "record": { + "records": { "CNAME": "kyoichishido.github.io" } } diff --git a/domains/jayy.json b/domains/jayy.json index 4165545d8..abb03a3ce 100644 --- a/domains/jayy.json +++ b/domains/jayy.json @@ -6,7 +6,7 @@ "email": "jayyisdev@gmail.com", "twitter": "dont-use-twitter" }, - "record": { + "records": { "CNAME": "fiskdk.github.io" } } diff --git a/domains/jb.json b/domains/jb.json index 6b3454fee..d02533b67 100644 --- a/domains/jb.json +++ b/domains/jb.json @@ -5,7 +5,8 @@ "username": "jbcarreon123", "email": "jbcarreon212@gmail.com" }, - "record": { - "A": ["35.223.92.119"] - } + "records": { + "A": ["34.56.187.73"] + }, + "proxied": true } diff --git a/domains/jbmbhs.json b/domains/jbmbhs.json new file mode 100644 index 000000000..64079e245 --- /dev/null +++ b/domains/jbmbhs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jbmbhs", + "email": "juan@belmontemarin.com" + }, + "records": { + "URL": "https://www.linkedin.com/in/juan-belmonte-821175112/" + } +} diff --git a/domains/jc-wu.json b/domains/jc-wu.json index 50f200222..41d15b1b8 100644 --- a/domains/jc-wu.json +++ b/domains/jc-wu.json @@ -5,7 +5,7 @@ "username": "jc-wu1", "email": "testingpurposeonlyemail@gmail.com" }, - "record": { + "records": { "CNAME": "jc-wu1.github.io" } } diff --git a/domains/jcarpenter.json b/domains/jcarpenter.json index e87833361..5e15492ff 100644 --- a/domains/jcarpenter.json +++ b/domains/jcarpenter.json @@ -5,7 +5,7 @@ "username": "jcarpenter48", "email": "jcarpenter48@mail.com" }, - "record": { + "records": { "CNAME": "jcarpenter48.github.io" } } diff --git a/domains/jcarroyos-teaching.json b/domains/jcarroyos-teaching.json new file mode 100644 index 000000000..8146e6d7a --- /dev/null +++ b/domains/jcarroyos-teaching.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jcarroyos-teaching", + "email": "jcarroyos@gmail.com" + }, + "records": { + "URL": "https://github.com/jcarroyos-teaching" + } +} diff --git a/domains/jckli.json b/domains/jckli.json index a79a5ebbb..4df50612c 100644 --- a/domains/jckli.json +++ b/domains/jckli.json @@ -3,7 +3,7 @@ "username": "jckli", "email": "notjackhli@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/jckli" } } diff --git a/domains/jcquieta.json b/domains/jcquieta.json index f52616721..db21d60f6 100644 --- a/domains/jcquieta.json +++ b/domains/jcquieta.json @@ -5,7 +5,7 @@ "username": "jcgaming-official", "email": "dev.jcquieta@gmail.com" }, - "record": { + "records": { "CNAME": "jcgaming-official.github.io" } } diff --git a/domains/jcs.json b/domains/jcs.json index 143458672..c2d59bccd 100644 --- a/domains/jcs.json +++ b/domains/jcs.json @@ -3,7 +3,7 @@ "username": "bi0hazarDD", "email": "jonathan-8@hotmail.co.uk" }, - "record": { + "records": { "CNAME": "bi0hazardd.github.io" } } diff --git a/domains/jd.json b/domains/jd.json index fef85ac0d..3223594d9 100644 --- a/domains/jd.json +++ b/domains/jd.json @@ -5,7 +5,7 @@ "email": "justdeveloper@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "A": ["89.106.200.1"] } } diff --git a/domains/jd1.json b/domains/jd1.json new file mode 100644 index 000000000..96cc6607e --- /dev/null +++ b/domains/jd1.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/jd1/jd1.github.io", + "owner": { + "username": "jd1", + "email": "isadev@mail.dilli.me" + }, + "records": { + "CNAME": "jd1.github.io" + } +} diff --git a/domains/jdev082.json b/domains/jdev082.json index b36153f6c..4011eeba7 100644 --- a/domains/jdev082.json +++ b/domains/jdev082.json @@ -3,7 +3,7 @@ "username": "jdev082", "email": "willsjayden2@gmail.com" }, - "record": { + "records": { "CNAME": "jdev082.pages.dev" } } diff --git a/domains/jean-arthur.json b/domains/jean-arthur.json index 981943a8a..4ff57507a 100644 --- a/domains/jean-arthur.json +++ b/domains/jean-arthur.json @@ -5,7 +5,7 @@ "username": "8n9ght", "email": "8n9ght@gmail.com" }, - "record": { + "records": { "CNAME": "8n9ght.github.io" } } diff --git a/domains/jean.json b/domains/jean.json index 42c1d304e..2f11a8833 100644 --- a/domains/jean.json +++ b/domains/jean.json @@ -5,7 +5,7 @@ "username": "emperorjean", "twitter": "emperorjean_" }, - "record": { + "records": { "CNAME": "emperorjean.github.io" } } diff --git a/domains/jeanclaude.json b/domains/jeanclaude.json new file mode 100644 index 000000000..850bf80e5 --- /dev/null +++ b/domains/jeanclaude.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jeanclaudegeagea", + "email": "jeanclaude.geagea@gmail.com" + }, + "records": { + "CNAME": "jeanclaude-omega.vercel.app" + } +} diff --git a/domains/jeanpierre.json b/domains/jeanpierre.json new file mode 100644 index 000000000..c4c541f3b --- /dev/null +++ b/domains/jeanpierre.json @@ -0,0 +1,11 @@ +{ + "description": "Jean Pierre's presentation", + "repo": "https://github.com/LittleMega777/LittleMega777.github.io", + "owner": { + "username": "LittleMega777", + "email": "pierrecouto02@gmail.com" + }, + "records": { + "CNAME": "littlemega777-github-io.pages.dev" + } +} diff --git a/domains/jeanrondon.json b/domains/jeanrondon.json new file mode 100644 index 000000000..36f4130b8 --- /dev/null +++ b/domains/jeanrondon.json @@ -0,0 +1,12 @@ +{ + "description": "Jean's portfolio website and blog - JavaScript Developer, working as Frontend Dev, developer with over 3 years of JavaScript experience and a constant interest in learning new technologies. I have a solid experience in web, mobile, and desktop Frontend development.", + "repo": "https://github.com/jeandv/my-next-portfolio", + "owner": { + "username": "jeandv", + "email": "jeanrdev@gmail.com", + "twitter": "r4yb4" + }, + "records": { + "CNAME": "jeandv.github.io" + } +} diff --git a/domains/jecoh.json b/domains/jecoh.json new file mode 100644 index 000000000..0466d4186 --- /dev/null +++ b/domains/jecoh.json @@ -0,0 +1,11 @@ +{ + "description": "For personal/portfolio use only.", + "repo": "https://github.com/jecoh12/jecoh-is-a.dev", + "owner": { + "username": "jecoh12", + "email": "jecoh12@gmail.com" + }, + "records": { + "CNAME": "jecoh12.github.io" + } +} diff --git a/domains/jeel.json b/domains/jeel.json index f62e903e4..2110bdd8e 100644 --- a/domains/jeel.json +++ b/domains/jeel.json @@ -1,11 +1,10 @@ { "description": "Jeel's portfolio website", - "repo": "https://github.com/jeelpatel1612", "owner": { "username": "jeelpatel1612", "twitter": "__j_e_e_l__" }, - "record": { + "records": { "URL": "https://jeelpatel.netlify.app" } } diff --git a/domains/jeevan.json b/domains/jeevan.json index aa69389b5..a2e8ae0c1 100644 --- a/domains/jeevan.json +++ b/domains/jeevan.json @@ -5,7 +5,7 @@ "username": "jeevan900929", "email": "jeevan.900929@gmail.com" }, - "record": { + "records": { "CNAME": "jeevan900929.github.io" } } diff --git a/domains/jeferson.json b/domains/jeferson.json index 349b8032a..1ed562a3e 100644 --- a/domains/jeferson.json +++ b/domains/jeferson.json @@ -5,7 +5,7 @@ "username": "jeferson-sb", "linkedin": "https://www.linkedin.com/in/jeferson-sb" }, - "record": { + "records": { "URL": "https://www.jefersonsilva.me" } } diff --git a/domains/jeff.json b/domains/jeff.json new file mode 100644 index 000000000..780aa6c8c --- /dev/null +++ b/domains/jeff.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "PentSec", + "email": "pentsec.2@protonmail.com" + }, + "records": { + "CNAME": "pentsec.github.io" + }, + "redirect_config": { + "custom_paths": { + "/gh": "https://github.com/PentSec", + "/dc": "https://discord.com/users/284896471210393600", + "/x": "https://x.com/__J3ff_", + "/bsky": "https://sitoz.bsky.social", + "/tw": "https://twitch.tv/Sitoz1", + "/kick": "https://kick.com/Sitoz1", + "/ig": "https://www.instagram.com/jeffreysfuenmayor_" + } + }, + "proxied": true +} diff --git a/domains/jefferson.json b/domains/jefferson.json index bee37b1e7..2b85d9d49 100644 --- a/domains/jefferson.json +++ b/domains/jefferson.json @@ -5,7 +5,7 @@ "username": "jeffersonjpr", "email": "jeffersonjpr@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/jeffersonjpr" } } diff --git a/domains/jeffrey.json b/domains/jeffrey.json index 1d1246abc..ce3631c5c 100644 --- a/domains/jeffrey.json +++ b/domains/jeffrey.json @@ -5,7 +5,7 @@ "username": "SquarePear", "email": "jeffrey@reygames.com" }, - "record": { + "records": { "URL": "https://jeffreyharmon.dev" } } diff --git a/domains/jefino.json b/domains/jefino.json new file mode 100644 index 000000000..36879b255 --- /dev/null +++ b/domains/jefino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jefino9488", + "email": "jefinojacob9488@gmail.com" + }, + "records": { + "CNAME": "jefino9488.vercel.app" + } +} diff --git a/domains/jegatchalian.json b/domains/jegatchalian.json index f48dc2d75..9f63c25e0 100644 --- a/domains/jegatchalian.json +++ b/domains/jegatchalian.json @@ -3,7 +3,7 @@ "username": "trowsjerwin", "email": "johnerwingatchalian@gmail.com" }, - "record": { + "records": { "A": ["192.232.223.67"] } } diff --git a/domains/jeielmiranda.json b/domains/jeielmiranda.json new file mode 100644 index 000000000..3852fa810 --- /dev/null +++ b/domains/jeielmiranda.json @@ -0,0 +1,11 @@ +{ + "description": "Personal subdomain", + "repo": "https://github.com/Jeiel0rbit/Jeiel0rbit.github.io", + "owner": { + "username": "Jeiel0rbit", + "email": "jeiel@duck.com" + }, + "records": { + "CNAME": "Jeiel0rbit.github.io" + } +} diff --git a/domains/jello.sewt.json b/domains/jello.sewt.json index c9c51f25e..ba9e78c4b 100644 --- a/domains/jello.sewt.json +++ b/domains/jello.sewt.json @@ -3,7 +3,7 @@ "username": "SkyExploreWasTaken", "discord": "1049263707177353247" }, - "record": { + "records": { "A": ["37.27.51.34"], "AAAA": ["2a01:4f9:3081:399c::4"], "TXT": ["domain-verification=skyexplorewastaken"] diff --git a/domains/jellobow.json b/domains/jellobow.json index 4d699d3f9..270db2023 100644 --- a/domains/jellobow.json +++ b/domains/jellobow.json @@ -3,7 +3,7 @@ "username": "homelyseven250", "discord": "JelloBow#6734" }, - "record": { + "records": { "CNAME": "mysite-production-556a.up.railway.app" } } diff --git a/domains/jellyfin.chiragnahata.json b/domains/jellyfin.chiragnahata.json index 726befd50..4dcdef8bf 100644 --- a/domains/jellyfin.chiragnahata.json +++ b/domains/jellyfin.chiragnahata.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/jemalahmedov.json b/domains/jemalahmedov.json new file mode 100644 index 000000000..4286dc28e --- /dev/null +++ b/domains/jemalahmedov.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jimjja", + "email": "jemalja.dev@gmail.com", + "discord": "665635903955533845" + }, + "records": { + "CNAME": "jemalahmedov.vercel.app" + } +} diff --git a/domains/jemex.json b/domains/jemex.json index bbd638082..8e9ed41f6 100644 --- a/domains/jemex.json +++ b/domains/jemex.json @@ -3,7 +3,7 @@ "username": "mhmmd95", "email": "mohammadalabras77@gmail.com" }, - "record": { + "records": { "A": ["51.89.109.155"] } } diff --git a/domains/jer.json b/domains/jer.json index be66faf1a..bd5bf0b14 100644 --- a/domains/jer.json +++ b/domains/jer.json @@ -1,9 +1,9 @@ { "owner": { - "username": "JerBlox", + "username": "i-Jer", "email": "chen.fuyuan07@gmail.com" }, - "record": { - "CNAME": "cbx3ryr6.up.railway.app" + "records": { + "URL": "https://www.i-jer.com/" } } diff --git a/domains/jeremiah.json b/domains/jeremiah.json new file mode 100644 index 000000000..793920638 --- /dev/null +++ b/domains/jeremiah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "1tsJeremiah", + "email": "jmatdesigns@gmail.com" + }, + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/jeremie.json b/domains/jeremie.json index 93153388d..08c81d225 100644 --- a/domains/jeremie.json +++ b/domains/jeremie.json @@ -6,7 +6,7 @@ "email": "one_w01f@protonmail.ch", "twitter": "w01f_src" }, - "record": { + "records": { "CNAME": "0xw01f.github.io" } } diff --git a/domains/jeremy.json b/domains/jeremy.json index 7f2ff3823..fdef6b196 100644 --- a/domains/jeremy.json +++ b/domains/jeremy.json @@ -3,7 +3,7 @@ "username": "jeremyssocial", "email": "nearberlin@gmail.com" }, - "record": { + "records": { "URL": "http://dev.jeremys.social" } } diff --git a/domains/jeremydavid.json b/domains/jeremydavid.json index 3d791893a..42a297e22 100644 --- a/domains/jeremydavid.json +++ b/domains/jeremydavid.json @@ -3,7 +3,7 @@ "username": "jedidavid", "email": "jeremydb.david@gmail.com" }, - "record": { + "records": { "CNAME": "jeremydavidv2.pages.dev" } } diff --git a/domains/jerikchan.json b/domains/jerikchan.json index 9dbe3fa4b..e05252d48 100644 --- a/domains/jerikchan.json +++ b/domains/jerikchan.json @@ -5,7 +5,7 @@ "username": "jerikchan", "email": "jerikchan@gmail.com" }, - "record": { + "records": { "CNAME": "jerikchan.github.io" } } diff --git a/domains/jermaine.json b/domains/jermaine.json index 6de20d1cc..027d6b572 100644 --- a/domains/jermaine.json +++ b/domains/jermaine.json @@ -3,7 +3,7 @@ "username": "Codemaine", "email": "jermaineantwi22@gmail.com" }, - "record": { + "records": { "CNAME": "codemaine.github.io" } } diff --git a/domains/jeros.json b/domains/jeros.json index 971e17bba..112ac5619 100644 --- a/domains/jeros.json +++ b/domains/jeros.json @@ -3,7 +3,7 @@ "username": "Ascript89", "email": "smartlinkwfs@gmail.com" }, - "record": { + "records": { "CNAME": "ascript89.github.io" } } diff --git a/domains/jerry.json b/domains/jerry.json index 9d6c0ab3c..de8092ebd 100644 --- a/domains/jerry.json +++ b/domains/jerry.json @@ -5,7 +5,7 @@ "username": "j3rrythomas", "email": "jerrythomasjohn9@gmail.com" }, - "record": { + "records": { "CNAME": "j3rrythomas.github.io" } } diff --git a/domains/jes.json b/domains/jes.json index e95bf90d6..7d8b671ea 100644 --- a/domains/jes.json +++ b/domains/jes.json @@ -3,7 +3,7 @@ "username": "Jesgran", "email": "calzdani20@libero.it" }, - "record": { + "records": { "CNAME": "jes.github.io" } } diff --git a/domains/jesgran.json b/domains/jesgran.json index 75bfb0256..bd35ec124 100644 --- a/domains/jesgran.json +++ b/domains/jesgran.json @@ -3,7 +3,7 @@ "username": "Jesgran", "email": "calzdani20@libero.it" }, - "record": { + "records": { "CNAME": "jesgran.github.io" } } diff --git a/domains/jesseallan.json b/domains/jesseallan.json index bb5e55010..4d47077a8 100644 --- a/domains/jesseallan.json +++ b/domains/jesseallan.json @@ -3,7 +3,7 @@ "username": "JesseAllan", "email": "jesseba20+github2@gmail.com" }, - "record": { + "records": { "CNAME": "jesseallan.github.io" } } diff --git a/domains/jessehoekema.json b/domains/jessehoekema.json index ae9fa914d..283c92ce3 100644 --- a/domains/jessehoekema.json +++ b/domains/jessehoekema.json @@ -3,12 +3,7 @@ "username": "JesseHoekema", "email": "jessehoekema@icloud.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/jessiflessi.json b/domains/jessiflessi.json new file mode 100644 index 000000000..283c92ce3 --- /dev/null +++ b/domains/jessiflessi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JesseHoekema", + "email": "jessehoekema@icloud.com" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] + } +} diff --git a/domains/jesusaristigueta.json b/domains/jesusaristigueta.json new file mode 100644 index 000000000..ac2937f6f --- /dev/null +++ b/domains/jesusaristigueta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jesusaristigueta", + "email": "jesusaristigueta@gmail.com" + }, + "records": { + "CNAME": "jesusaristigueta.pages.dev" + } +} diff --git a/domains/jesusdmedinac.json b/domains/jesusdmedinac.json new file mode 100644 index 000000000..834a997a8 --- /dev/null +++ b/domains/jesusdmedinac.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jesusdmedinac", + "email": "jesus.daniel.medina.cruz@gmail.com" + }, + "records": { + "CNAME": "jesusdmedinac.github.io" + } +} diff --git a/domains/jesusmarfil.json b/domains/jesusmarfil.json new file mode 100644 index 000000000..35676e70e --- /dev/null +++ b/domains/jesusmarfil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JesusMarlor", + "email": "jesuso.marlor@gmail.com" + }, + "records": { + "CNAME": "kripton.xyz" + } +} diff --git a/domains/jesusvaladez.json b/domains/jesusvaladez.json new file mode 100644 index 000000000..fb3aa0991 --- /dev/null +++ b/domains/jesusvaladez.json @@ -0,0 +1,11 @@ +{ + "description": "Use to show a personal portfolio", + "repo": "https://github.com/JesusVala/JesusValadez.github.io.git", + "owner": { + "username": "JesusVala", + "email": "jesusvaladezf@outlook.com" + }, + "records": { + "CNAME": "jesusvaladez.github.io" + } +} diff --git a/domains/jetta.json b/domains/jetta.json index 85f287350..57e2ba1ae 100644 --- a/domains/jetta.json +++ b/domains/jetta.json @@ -4,7 +4,7 @@ "email": "arfeasotuzbir@gmail.com", "discord": "1208335087523864598" }, - "record": { + "records": { "CNAME": "lively-first-bolt.glitch.me" } } diff --git a/domains/jeweetzelf.json b/domains/jeweetzelf.json index ccfeb7103..0035a0b6b 100644 --- a/domains/jeweetzelf.json +++ b/domains/jeweetzelf.json @@ -3,7 +3,7 @@ "username": "jeweetzelfWasTaken", "email": "jeweetzelf@rtexbot.com" }, - "record": { + "records": { "CNAME": "jeweetzelfwastaken.github.io" } } diff --git a/domains/jewishlewish.json b/domains/jewishlewish.json index 365e4b2e0..4caa0eda6 100644 --- a/domains/jewishlewish.json +++ b/domains/jewishlewish.json @@ -3,7 +3,7 @@ "username": "JewishLewish", "email": "lanbrokhman@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/jewishlewish" } } diff --git a/domains/jeymen.json b/domains/jeymen.json deleted file mode 100644 index 681eb900f..000000000 --- a/domains/jeymen.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "owner": { - "username": "Jeymen", - "email": "jeymen11@proton.me" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": "v=spf1 include:zoho.eu ~all" - } -} diff --git a/domains/jfc.json b/domains/jfc.json new file mode 100644 index 000000000..3d298066d --- /dev/null +++ b/domains/jfc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juanfranciscocis", + "email": "jfcisnerosg@icloud.com" + }, + "records": { + "CNAME": "portfoliojuanfranciscocisneros.web.app" + } +} diff --git a/domains/jg.json b/domains/jg.json new file mode 100644 index 000000000..ed004749f --- /dev/null +++ b/domains/jg.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio site for Jonathan Geva (short for jonathangeva)", + "repo": "https://github.com/jonathan-geva/Portfolio", + "owner": { + "username": "jonathan-geva", + "discord": "jonilul21" + }, + "records": { + "CNAME": "jonathangeva.ch" + } +} diff --git a/domains/jhedmendoza.json b/domains/jhedmendoza.json index e77a30f37..498ed1add 100644 --- a/domains/jhedmendoza.json +++ b/domains/jhedmendoza.json @@ -3,7 +3,7 @@ "username": "jhedmendoza", "email": "jhed.mendoza@hotmail.com" }, - "record": { + "records": { "CNAME": "jhedmendoza.github.io" } } diff --git a/domains/jhone.json b/domains/jhone.json new file mode 100644 index 000000000..4acde3457 --- /dev/null +++ b/domains/jhone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jhon-E", + "email": "jhoneospino@gmail.com" + }, + "records": { + "CNAME": "jhoneikerospino.vercel.app" + } +} diff --git a/domains/jhonneg.json b/domains/jhonneg.json index f53174ff1..95d8cc417 100644 --- a/domains/jhonneg.json +++ b/domains/jhonneg.json @@ -6,7 +6,7 @@ "email": "jonee4339@hotmail.com", "twitter": "Jonee1155" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/jhonpaco.json b/domains/jhonpaco.json index d0e0388fd..488e07eae 100644 --- a/domains/jhonpaco.json +++ b/domains/jhonpaco.json @@ -4,7 +4,7 @@ "username": "pacodan", "email": "pacodan@jhonpaco.dev" }, - "record": { + "records": { "URL": "https://pacoDan.github.io" } } diff --git a/domains/jhos.json b/domains/jhos.json index ae9fa914d..283c92ce3 100644 --- a/domains/jhos.json +++ b/domains/jhos.json @@ -3,12 +3,7 @@ "username": "JesseHoekema", "email": "jessehoekema@icloud.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/jhw.json b/domains/jhw.json new file mode 100644 index 000000000..3bcc1d605 --- /dev/null +++ b/domains/jhw.json @@ -0,0 +1,11 @@ +{ + "description": "Jason Wohlgemuth's resume", + "repo": "https://github.com/jhwohlgemuth/resume", + "owner": { + "username": "jhwohlgemuth", + "twitter": "jhwohlgemuth" + }, + "records": { + "CNAME": "jhwohlgemuth.github.io" + } +} diff --git a/domains/jigar.json b/domains/jigar.json index 7e4ed2745..4c0a66107 100644 --- a/domains/jigar.json +++ b/domains/jigar.json @@ -3,7 +3,7 @@ "username": "drone911", "email": "jigar1822@gmail.com" }, - "record": { + "records": { "URL": "https://www.github.com/drone911" } } diff --git a/domains/jigarbhoye.json b/domains/jigarbhoye.json new file mode 100644 index 000000000..a73976d05 --- /dev/null +++ b/domains/jigarbhoye.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jigarbhoye04", + "discord": "jigx.04", + "email": "jigarbhoye04@gmail.com" + }, + "records": { + "CNAME": "jigarbhoye.vercel.app" + } +} diff --git a/domains/jimmster.json b/domains/jimmster.json index 680d19345..1277be943 100644 --- a/domains/jimmster.json +++ b/domains/jimmster.json @@ -5,7 +5,7 @@ "username": "Khhs167", "email": "khhs1671@gmail.com" }, - "record": { + "records": { "URL": "https://jimmys-cave.web.app" } } diff --git a/domains/jimmy.json b/domains/jimmy.json index b9a33769e..e6ae3be98 100644 --- a/domains/jimmy.json +++ b/domains/jimmy.json @@ -6,7 +6,7 @@ "email": "idkvro8@gmail.com", "discord": "JIMMY#1371" }, - "record": { + "records": { "CNAME": "jimmy1371.github.io" } } diff --git a/domains/jinso.json b/domains/jinso.json index 1aa37e760..07cee182c 100644 --- a/domains/jinso.json +++ b/domains/jinso.json @@ -1,12 +1,11 @@ { "description": "Jinso Raj", - "repo": "https://github.com/jinsoraj", "owner": { "username": "jinsoraj", "email": "jinsoraj2000@gmail.com", "twitter": "jinsoraj" }, - "record": { + "records": { "URL": "https://jinsoraj.eu.org" } } diff --git a/domains/jirp.json b/domains/jirp.json new file mode 100644 index 000000000..606fd5b8a --- /dev/null +++ b/domains/jirp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jirp-upc", + "email": "joseirpp@gmail.com" + }, + "records": { + "CNAME": "jirp-is-a-dev.pages.dev" + } +} diff --git a/domains/jishnupsamal.json b/domains/jishnupsamal.json index b2aedfdec..488b08612 100644 --- a/domains/jishnupsamal.json +++ b/domains/jishnupsamal.json @@ -3,7 +3,7 @@ "username": "jishnu-prasad-s", "email": "support@jishnupsamal.ml" }, - "record": { + "records": { "CNAME": "jishnupsamal.pages.dev" } } diff --git a/domains/jite.json b/domains/jite.json index 6e1803ee4..f11db2e81 100644 --- a/domains/jite.json +++ b/domains/jite.json @@ -4,7 +4,7 @@ "username": "Johannestegner", "email": "jitedev@gmail.com" }, - "record": { + "records": { "URL": "https://jite.eu" } } diff --git a/domains/jitendrasaraf.json b/domains/jitendrasaraf.json new file mode 100644 index 000000000..b094cb72d --- /dev/null +++ b/domains/jitendrasaraf.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio page", + "repo": "https://github.com/jiten398/portfolio-latest", + "owner": { + "username": "jiten398", + "email": "jitendrasaraf65@gmail.com" + }, + "records": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/jithumon.json b/domains/jithumon.json index 2b8c82719..393efd172 100644 --- a/domains/jithumon.json +++ b/domains/jithumon.json @@ -6,7 +6,7 @@ "email": "jithumondev@gmail.com", "twitter": "Jithumatt" }, - "record": { + "records": { "CNAME": "jithumon.github.io" } } diff --git a/domains/jj.json b/domains/jj.json index 2df877f05..adfc0ffcb 100644 --- a/domains/jj.json +++ b/domains/jj.json @@ -5,13 +5,8 @@ "username": "TheBotlyNoob", "email": "TheBotlyNoob@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.111.153", - "185.199.110.153" - ], + "records": { + "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/jmc.json b/domains/jmc.json new file mode 100644 index 000000000..c34e4f07e --- /dev/null +++ b/domains/jmc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "josem430", + "email": "jmc300499@gmail.com", + "discord": "josem430" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/jmmille.json b/domains/jmmille.json new file mode 100644 index 000000000..dc47b1c0d --- /dev/null +++ b/domains/jmmille.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jmmille", + "email": "jmmille@gmail.com" + }, + "records": { + "URL": "https://github.com/jmmille" + } +} diff --git a/domains/joao-silva.json b/domains/joao-silva.json index 5c8b65ef3..be324b454 100644 --- a/domains/joao-silva.json +++ b/domains/joao-silva.json @@ -4,7 +4,7 @@ "email": "z4kreyyt@gmail.com", "discord": "498426798833664012" }, - "record": { + "records": { "A": ["51.75.68.140"] } } diff --git a/domains/joaopaulo.json b/domains/joaopaulo.json index 89d57e466..c7d2741f0 100644 --- a/domains/joaopaulo.json +++ b/domains/joaopaulo.json @@ -3,7 +3,7 @@ "username": "joaopaulodotbs", "email": "joaopaulodotbs@outlook.com" }, - "record": { + "records": { "CNAME": "joaopaulo.pages.dev" } } diff --git a/domains/joaovitorzv.json b/domains/joaovitorzv.json index cdfe820e6..b8e9bc078 100644 --- a/domains/joaovitorzv.json +++ b/domains/joaovitorzv.json @@ -6,7 +6,7 @@ "email": "joaovitorzv@outlook.com", "twitter": "null" }, - "record": { + "records": { "CNAME": "joaovitorzv.github.io" } } diff --git a/domains/joaoz.json b/domains/joaoz.json index 390f30cd9..4749a4549 100644 --- a/domains/joaoz.json +++ b/domains/joaoz.json @@ -3,7 +3,7 @@ "username": "joao-zanutto", "email": "jpberno@gmail.com" }, - "record": { + "records": { "CNAME": "joao-zanutto-github-com.pages.dev" } } diff --git a/domains/jobayedsumon.json b/domains/jobayedsumon.json index 3a946146e..844e98606 100644 --- a/domains/jobayedsumon.json +++ b/domains/jobayedsumon.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "jobayedsumon", - "email": "jobayedahmedsumon@gmail.com" - }, - "record": { - "A": [ - "103.159.73.11" - ] - } + "owner": { + "username": "jobayedsumon", + "email": "jobayedahmedsumon@gmail.com" + }, + "records": { + "A": ["103.159.73.11"] + } } diff --git a/domains/jobcmax.json b/domains/jobcmax.json deleted file mode 100644 index d35e94526..000000000 --- a/domains/jobcmax.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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 index f929c9a51..ad76a149a 100644 --- a/domains/joe-dawley.json +++ b/domains/joe-dawley.json @@ -1,11 +1,10 @@ { "description": "Joe Dawley", - "repo": "https://github.com/jdawley", "owner": { "username": "jdawley", "twitter": "joedawley" }, - "record": { + "records": { "CNAME": "joedawley.com" } } diff --git a/domains/joe.json b/domains/joe.json index 7b6d7bf15..de93daf9f 100644 --- a/domains/joe.json +++ b/domains/joe.json @@ -5,7 +5,7 @@ "username": "jb3", "email": "joseph@josephbanks.me" }, - "record": { + "records": { "CNAME": "jb3.github.io" } } diff --git a/domains/joe50097.json b/domains/joe50097.json index 7c9bf8e54..706b47bf3 100644 --- a/domains/joe50097.json +++ b/domains/joe50097.json @@ -3,9 +3,9 @@ "username": "Joe50097", "email": "zcell9500@gmail.com" }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all", + "records": { + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"], + "TXT": ["zoho-verification=zb32862044.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], "A": ["75.2.60.5"] } } diff --git a/domains/joeb.json b/domains/joeb.json new file mode 100644 index 000000000..52120b21e --- /dev/null +++ b/domains/joeb.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "joevizcara", + "email": "joevizcara@proton.me" + }, + "records": { + "CNAME": "joeb.pages.dev", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + }, + "proxied": true +} diff --git a/domains/joel.json b/domains/joel.json index ebefef473..fc759ac46 100644 --- a/domains/joel.json +++ b/domains/joel.json @@ -5,7 +5,7 @@ "username": "9oelm", "twitter": "9oelm" }, - "record": { + "records": { "CNAME": "9oelm.github.io" } } diff --git a/domains/joelbobanoffline.json b/domains/joelbobanoffline.json index 9f4707594..3e290e980 100644 --- a/domains/joelbobanoffline.json +++ b/domains/joelbobanoffline.json @@ -5,7 +5,7 @@ "username": "JoelBobanOffline", "email": "joelboban2007@gmail.com" }, - "record": { + "records": { "CNAME": "joelbobanoffline.github.io" } } diff --git a/domains/joelee.json b/domains/joelee.json index 20b9ae582..5d4cdf9d9 100644 --- a/domains/joelee.json +++ b/domains/joelee.json @@ -5,7 +5,7 @@ "username": "teamjoelee", "email": "tojoeleeofficial@gmail.com" }, - "record": { + "records": { "CNAME": "teamjoelee.github.io" } } diff --git a/domains/joelst.json b/domains/joelst.json new file mode 100644 index 000000000..86501da7b --- /dev/null +++ b/domains/joelst.json @@ -0,0 +1,22 @@ +{ + "owner": { + "username": "joestr", + "email": "joelstrasser1@gmail.com" + }, + "records": { + "NS": [ + "ns1-03.azure-dns.com", + "ns2-03.azure-dns.net", + "ns3-03.azure-dns.org", + "ns4-03.azure-dns.info" + ], + "DS": [ + { + "key_tag": 20446, + "algorithm": 13, + "digest_type": 2, + "digest": "66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6" + } + ] + } +} diff --git a/domains/joesepp.json b/domains/joesepp.json index 78fa4dae2..7bceaf356 100644 --- a/domains/joesepp.json +++ b/domains/joesepp.json @@ -6,7 +6,7 @@ "email": "markwer.dev@proton.me", "twitter": "devSeppski" }, - "record": { + "records": { "CNAME": "joesepph.github.io" } } diff --git a/domains/joesjourney.json b/domains/joesjourney.json index a6c76d209..b77bdc67c 100644 --- a/domains/joesjourney.json +++ b/domains/joesjourney.json @@ -3,13 +3,8 @@ "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" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx.mailtie.com"], "TXT": "mailtie=joesjourney500@gmail.com" } diff --git a/domains/joetroll.json b/domains/joetroll.json index e66f5ad9d..e6ada8b6d 100644 --- a/domains/joetroll.json +++ b/domains/joetroll.json @@ -4,7 +4,7 @@ "email": "joetechtok@proton.me", "discord": "1054945019137630278" }, - "record": { + "records": { "CNAME": "joetroll.pages.dev" } } diff --git a/domains/joey.json b/domains/joey.json new file mode 100644 index 000000000..2de2640c4 --- /dev/null +++ b/domains/joey.json @@ -0,0 +1,11 @@ +{ + "description": "GitHub Pages verification for joey.is-a.dev", + "repo": "https://github.com/jlai403/jlai403.github.io", + "owner": { + "username": "jlai403", + "discord": "120522740590575616" + }, + "records": { + "CNAME": "jlai403.github.io" + } +} diff --git a/domains/johan.json b/domains/johan.json index c7ab737ce..33a5980cb 100644 --- a/domains/johan.json +++ b/domains/johan.json @@ -5,7 +5,7 @@ "username": "johan12345", "email": "johan.forstner@gmail.com" }, - "record": { + "records": { "URL": "https://johan.vonforst.net" } } diff --git a/domains/johansansebastian.json b/domains/johansansebastian.json index 92a131883..9e55bdee2 100644 --- a/domains/johansansebastian.json +++ b/domains/johansansebastian.json @@ -1,11 +1,10 @@ { "description": "Johan's personal developer website", - "repo": "https://github.com/JohanSanSebastian.github.io", "owner": { "username": "JohanSanSebastian", "email": "johansanju06@gmail.com" }, - "record": { + "records": { "CNAME": "johansansebastian.github.io" } } diff --git a/domains/john.json b/domains/john.json index 75daad7af..e716ad5b7 100644 --- a/domains/john.json +++ b/domains/john.json @@ -6,7 +6,7 @@ "email": "johnp5419@gmail.com", "instagram": "johnp5419" }, - "record": { + "records": { "CNAME": "majesticturtlejp.github.io" } } diff --git a/domains/johna.json b/domains/johna.json index 5dd801b06..58dc247fd 100644 --- a/domains/johna.json +++ b/domains/johna.json @@ -5,7 +5,7 @@ "username": "Johna-123", "email": "j-verstraaten@hotmail.com" }, - "record": { + "records": { "CNAME": "johna.pages.dev" } } diff --git a/domains/johndoe.json b/domains/johndoe.json index cd996b2e5..ab921aed4 100644 --- a/domains/johndoe.json +++ b/domains/johndoe.json @@ -3,7 +3,7 @@ "username": "KingLuc12", "email": "lucian.g.king+github@gmail.com" }, - "record": { + "records": { "CNAME": "jhondoeisadev.pages.dev" } } diff --git a/domains/johndoegg.json b/domains/johndoegg.json index c3a7d919a..2f84d3928 100644 --- a/domains/johndoegg.json +++ b/domains/johndoegg.json @@ -3,7 +3,7 @@ "username": "kuroigg", "email": "mrlangdon197@gmail.com" }, - "record": { + "records": { "URL": "https://kuroigg.github.io/" } } diff --git a/domains/johnny.json b/domains/johnny.json index 544e38980..c05e8fc4c 100644 --- a/domains/johnny.json +++ b/domains/johnny.json @@ -3,7 +3,7 @@ "username": "john-champagne", "email": "johnchampagne97@gmail.com" }, - "record": { + "records": { "CNAME": "john-champagne.github.io" } } diff --git a/domains/johnny1337.json b/domains/johnny1337.json index 0fc6fb7ae..644483846 100644 --- a/domains/johnny1337.json +++ b/domains/johnny1337.json @@ -3,7 +3,7 @@ "username": "ProxyJohnny", "email": "johnnydx7@gmail.com" }, - "record": { + "records": { "CNAME": "johnny1337.pages.dev" } } diff --git a/domains/johnsonlee.json b/domains/johnsonlee.json index d8eaf5bd0..6132db7bb 100644 --- a/domains/johnsonlee.json +++ b/domains/johnsonlee.json @@ -5,7 +5,7 @@ "username": "johnsonlee", "email": "g.johnsonlee@gmail.com" }, - "record": { + "records": { "CNAME": "johnsonlee.github.io" } } diff --git a/domains/johntena.json b/domains/johntena.json new file mode 100644 index 000000000..8c9e8aa29 --- /dev/null +++ b/domains/johntena.json @@ -0,0 +1,11 @@ +{ + "description": "JohnT portfolio website", + "repo": "https://github.com/johnTena/johntena.github.io", + "owner": { + "username": "johnTena", + "email": "secnetwork.mx13@gmail.com" + }, + "records": { + "URL": "https://johntena.github.io/" + } +} diff --git a/domains/johntran.json b/domains/johntran.json new file mode 100644 index 000000000..a59c540fd --- /dev/null +++ b/domains/johntran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "johntranz", + "email": "john.tran.engineer@gmail.com" + }, + "records": { + "CNAME": "johntran.vercel.app" + } +} diff --git a/domains/johnythomas.json b/domains/johnythomas.json index aeeadde1f..bf66c827b 100644 --- a/domains/johnythomas.json +++ b/domains/johnythomas.json @@ -5,7 +5,7 @@ "username": "johnythomas2002", "email": "johnypani111@gmail.com" }, - "record": { + "records": { "CNAME": "johnythomas2002.github.io" } } diff --git a/domains/joinsachinarya.json b/domains/joinsachinarya.json index b57fc41d5..597e120d0 100644 --- a/domains/joinsachinarya.json +++ b/domains/joinsachinarya.json @@ -6,7 +6,7 @@ "email": "joinsachinarya@gmail.com", "twitter": "joinsachinarya" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/jojiyzo.json b/domains/jojiyzo.json index 651cd8950..439061e6a 100644 --- a/domains/jojiyzo.json +++ b/domains/jojiyzo.json @@ -3,7 +3,7 @@ "username": "jojipanackal", "email": "alphaa41@protonmail.com" }, - "record": { + "records": { "CNAME": "jojipanackal.github.io" } } diff --git a/domains/joker.json b/domains/joker.json index 3352e04c0..08ce94bde 100644 --- a/domains/joker.json +++ b/domains/joker.json @@ -6,7 +6,7 @@ "email": "joker@mythbot.org", "twitter": "JoKeRxHD" }, - "record": { + "records": { "CNAME": "jokerxtd.github.io" } } diff --git a/domains/joko.json b/domains/joko.json index d87b6341b..2660c688d 100644 --- a/domains/joko.json +++ b/domains/joko.json @@ -3,7 +3,7 @@ "username": "AhNode", "discord": "704173828187619370" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/jokostorage.json b/domains/jokostorage.json index 40827bc07..824b62594 100644 --- a/domains/jokostorage.json +++ b/domains/jokostorage.json @@ -4,7 +4,7 @@ "email": "jakijapanese@gmail.com", "discord": "704173828187619370" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/jokotwib.json b/domains/jokotwib.json index 40827bc07..824b62594 100644 --- a/domains/jokotwib.json +++ b/domains/jokotwib.json @@ -4,7 +4,7 @@ "email": "jakijapanese@gmail.com", "discord": "704173828187619370" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/joltz.json b/domains/joltz.json index e9a28bed0..6680e1e24 100644 --- a/domains/joltz.json +++ b/domains/joltz.json @@ -4,7 +4,7 @@ "email": "joltzx123@gmail.com", "discord": "837162825373188106" }, - "record": { + "records": { "URL": "https://guns.lol/joltz" } } diff --git a/domains/joltz1234.json b/domains/joltz1234.json index 76c941cb5..0f05525ae 100644 --- a/domains/joltz1234.json +++ b/domains/joltz1234.json @@ -4,7 +4,7 @@ "email": "joltzx123@gmail.com", "discord": "837162825373188106" }, - "record": { + "records": { "CNAME": "joltz1234.github.io" } } diff --git a/domains/jon.json b/domains/jon.json index 2050402ee..b6c4493e4 100644 --- a/domains/jon.json +++ b/domains/jon.json @@ -5,7 +5,7 @@ "username": "jon-edward", "email": "townsend.jonathan.e@gmail.com" }, - "record": { + "records": { "CNAME": "jon-edward.github.io" } } diff --git a/domains/jonagoldman.json b/domains/jonagoldman.json new file mode 100644 index 000000000..18f09260a --- /dev/null +++ b/domains/jonagoldman.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/jonagoldman/jonagoldman.github.io", + "owner": { + "username": "jonagoldman", + "email": "jonagoldman@gmail.com" + }, + "records": { + "CNAME": "jonagoldman.github.io" + } +} diff --git a/domains/jonasfroeller.json b/domains/jonasfroeller.json index da00be80f..33334b6d3 100644 --- a/domains/jonasfroeller.json +++ b/domains/jonasfroeller.json @@ -5,7 +5,7 @@ "username": "jonasfroeller", "email": "j.froe@gmx.at" }, - "record": { + "records": { "CNAME": "jonasfroeller.vercel.app" } } diff --git a/domains/jonathan-russ.json b/domains/jonathan-russ.json new file mode 100644 index 000000000..24d6547aa --- /dev/null +++ b/domains/jonathan-russ.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/JonathanXDR/Application-Website-Frontend", + "owner": { + "username": "JonathanXDR", + "email": "jonathan.russ@bluewin.ch", + "discord": "494042822320717827" + }, + "records": { + "NS": ["ns1.vercel-dns.com", "ns2.vercel-dns.com"] + } +} diff --git a/domains/jonathan.json b/domains/jonathan.json new file mode 100644 index 000000000..b7f3947b1 --- /dev/null +++ b/domains/jonathan.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website.", + "repo": "https://github.com/jonasfroeller/jonasfroeller", + "owner": { + "username": "JonathanB500", + "email": "jonathanbuitrago505@gmail.com" + }, + "records": { + "CNAME": "jonathanbuitragoroncancio.web.app" + } +} diff --git a/domains/jonathancarrillo.json b/domains/jonathancarrillo.json index 143458672..c2d59bccd 100644 --- a/domains/jonathancarrillo.json +++ b/domains/jonathancarrillo.json @@ -3,7 +3,7 @@ "username": "bi0hazarDD", "email": "jonathan-8@hotmail.co.uk" }, - "record": { + "records": { "CNAME": "bi0hazardd.github.io" } } diff --git a/domains/jonathangeva.json b/domains/jonathangeva.json new file mode 100644 index 000000000..e845953af --- /dev/null +++ b/domains/jonathangeva.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio site for Jonathan Geva", + "repo": "https://github.com/jonathan-geva/Portfolio", + "owner": { + "username": "jonathan-geva", + "discord": "jonilul21" + }, + "records": { + "CNAME": "jonathangeva.ch" + } +} diff --git a/domains/jonathanmoya.json b/domains/jonathanmoya.json new file mode 100644 index 000000000..57e5bdb9c --- /dev/null +++ b/domains/jonathanmoya.json @@ -0,0 +1,11 @@ +{ + "description": "Subdominio personal para portfolio web", + "repo": "https://github.com/srgrover/portfolio", + "owner": { + "username": "srgrover", + "email": "jthmoya.webdev@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jonestse.json b/domains/jonestse.json new file mode 100644 index 000000000..50a4593cf --- /dev/null +++ b/domains/jonestse.json @@ -0,0 +1,11 @@ +{ + "description": "Jones Tse's Portfolio Website", + "repo": "https://github.com/chunghei0116/portfolio", + "owner": { + "username": "chunghei0116", + "email": "chungheibrad@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jong.json b/domains/jong.json new file mode 100644 index 000000000..a529b4823 --- /dev/null +++ b/domains/jong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jongo22", + "email": "jingyiong22@gmail.com" + }, + "records": { + "CNAME": "frontend-green-kappa.vercel.app" + } +} diff --git a/domains/joordih.json b/domains/joordih.json index 632ed81ba..031fc9a8a 100644 --- a/domains/joordih.json +++ b/domains/joordih.json @@ -3,7 +3,7 @@ "username": "HarpyLMAO", "email": "harpymclol@gmail.com" }, - "record": { + "records": { "URL": "https://joordih.lol" } } diff --git a/domains/jorge-lopz.json b/domains/jorge-lopz.json new file mode 100644 index 000000000..720b55e99 --- /dev/null +++ b/domains/jorge-lopz.json @@ -0,0 +1,11 @@ +{ + "description": "Jorge's Web", + "owner": { + "username": "Jorge-lopz", + "email": "jlpenero2005@gmail.com", + "discord": "713831494761840753" + }, + "records": { + "CNAME": "jorge-lopz.vercel.app" + } +} diff --git a/domains/jorge.json b/domains/jorge.json index 186106951..5e010760d 100644 --- a/domains/jorge.json +++ b/domains/jorge.json @@ -3,7 +3,7 @@ "username": "jfelix9", "email": "jfelixdev@icloud.com" }, - "record": { + "records": { "URL": "https://jorge-felix.com" } } diff --git a/domains/jorgelopez.json b/domains/jorgelopez.json new file mode 100644 index 000000000..67c804c2e --- /dev/null +++ b/domains/jorgelopez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "j0rg3", + "email": "jorge.lopezvz@gmail.com" + }, + "records": { + "URL": "https://github.com/j0rgel0/" + } +} diff --git a/domains/jose.json b/domains/jose.json new file mode 100644 index 000000000..4c6f71372 --- /dev/null +++ b/domains/jose.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JMVS", + "email": "jose.veramutka@gmail.com" + }, + "records": { + "CNAME": "veramutka.com.ar" + } +} diff --git a/domains/josecontrerasp.json b/domains/josecontrerasp.json new file mode 100644 index 000000000..cddf25b6c --- /dev/null +++ b/domains/josecontrerasp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JoseContrerasP", + "email": "jose.contreras.p25@gmail.com" + }, + "records": { + "A": ["3.209.15.88"] + }, + "comment": "Personal portfolio of Jose Contreras deployed on AWS EC2" +} diff --git a/domains/josedevian.json b/domains/josedevian.json new file mode 100644 index 000000000..6444a5f82 --- /dev/null +++ b/domains/josedevian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "josedevian", + "email": "josedevian@gmail.com" + }, + "records": { + "URL": "https://josedevian.xyz" + } +} diff --git a/domains/josemy.json b/domains/josemy.json new file mode 100644 index 000000000..1c246a26f --- /dev/null +++ b/domains/josemy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "JosemyDuarte" + }, + "records": { + "CNAME": "josemyduarte.github.io" + } +} diff --git a/domains/joseph.json b/domains/joseph.json index 06d74b060..9ba7a7107 100644 --- a/domains/joseph.json +++ b/domains/joseph.json @@ -3,7 +3,7 @@ "username": "Friedman10", "email": "yfriedman@gmail.com" }, - "record": { + "records": { "MX": ["smtp.google.com"] } } diff --git a/domains/josh-ferrell.json b/domains/josh-ferrell.json new file mode 100644 index 000000000..a12a26238 --- /dev/null +++ b/domains/josh-ferrell.json @@ -0,0 +1,11 @@ +{ + "description": "Josh Ferrell Personal Github Page", + "repo": "https://github.com/josh-ferrell/josh-ferrell", + "owner": { + "username": "josh-ferrell", + "email": "josh.ferrell@gmail.com" + }, + "records": { + "CNAME": "josh-ferrell.github.io" + } +} diff --git a/domains/josh.json b/domains/josh.json new file mode 100644 index 000000000..75be79829 --- /dev/null +++ b/domains/josh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joshhargreaves", + "email": "me@joshhargreaves.co.uk" + }, + "records": { + "URL": "https://joshhargreaves.co.uk" + } +} diff --git a/domains/joshatticus.json b/domains/joshatticus.json index 2bdcc9584..e65575753 100644 --- a/domains/joshatticus.json +++ b/domains/joshatticus.json @@ -3,7 +3,7 @@ "username": "JoshAtticus", "email": "osmanicteam@gmail.com" }, - "record": { + "records": { "CNAME": "joshatticus.github.io" } } diff --git a/domains/joshua-hull.json b/domains/joshua-hull.json new file mode 100644 index 000000000..89cc68750 --- /dev/null +++ b/domains/joshua-hull.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/joshua-hull/joshua-hull.github.io", + "owner": { + "username": "joshua-hull", + "email": "joshua.thorild.hull@gmail.com" + }, + "records": { + "CNAME": "joshua-hull.github.io" + } +} diff --git a/domains/joshua.json b/domains/joshua.json index 795579a34..b06f5ef0e 100644 --- a/domains/joshua.json +++ b/domains/joshua.json @@ -3,7 +3,7 @@ "username": "Dwigoric", "discord": "295391820744228867" }, - "record": { - "CNAME": "dwigoric.pages.dev" + "records": { + "URL": "https://dwigoric.dev" } } diff --git a/domains/joshuanoeldeke.json b/domains/joshuanoeldeke.json new file mode 100644 index 000000000..90104190d --- /dev/null +++ b/domains/joshuanoeldeke.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joshuanoeldeke", + "email": "joshua.noeldeke@me.com" + }, + "records": { + "NS": ["adrian.ns.cloudflare.com", "keaton.ns.cloudflare.com"] + } +} diff --git a/domains/joshuawise.json b/domains/joshuawise.json new file mode 100644 index 000000000..e0377cab0 --- /dev/null +++ b/domains/joshuawise.json @@ -0,0 +1,12 @@ +{ + "description": "Joshua Wise's Personal Page", + "repo": "https://github.com/jlwisedev/jlwisedev.github.io", + "owner": { + "username": "jlwisedev", + "email": "jlwiseeha24@gmail.com" + }, + "records": { + "CNAME": "jlwisedev.github.io" + }, + "proxied": true +} diff --git a/domains/josval.json b/domains/josval.json index c111ed7b8..82c2d3d4b 100644 --- a/domains/josval.json +++ b/domains/josval.json @@ -3,7 +3,7 @@ "username": "heyy-josval", "email": "josvalmtrz@gmail.com" }, - "record": { + "records": { "URL": "https://josval.vercel.app" } } diff --git a/domains/joszxchua.json b/domains/joszxchua.json new file mode 100644 index 000000000..bd7892277 --- /dev/null +++ b/domains/joszxchua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joszxchua", + "email": "joschuaordonio29@gmail.com" + }, + "records": { + "CNAME": "joszxchua-dev.vercel.app" + } +} diff --git a/domains/jovan.json b/domains/jovan.json index 5ffe16037..df03c4b79 100644 --- a/domains/jovan.json +++ b/domains/jovan.json @@ -5,7 +5,7 @@ "username": "jovaneah", "email": "jovaneah@gmail.com" }, - "record": { + "records": { "CNAME": "jovaneah.github.io" } } diff --git a/domains/joy.json b/domains/joy.json new file mode 100644 index 000000000..f6ab63c37 --- /dev/null +++ b/domains/joy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Harmfulllll", + "email": "harmfulllll114@gmail.com", + "discord": "1007561787257933885" + }, + "records": { + "CNAME": "joy-portfolio-chi.vercel.app" + } +} diff --git a/domains/joyal-jijo.json b/domains/joyal-jijo.json index 3cebf5881..9fbc6ca1a 100644 --- a/domains/joyal-jijo.json +++ b/domains/joyal-jijo.json @@ -5,7 +5,7 @@ "username": "joyal-jij0", "discord": "joyal_jij0" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/jpedro.json b/domains/jpedro.json index 3f9cbb138..a43d95c28 100644 --- a/domains/jpedro.json +++ b/domains/jpedro.json @@ -5,7 +5,7 @@ "username": "jpedro", "email": "github@jpedro.dev" }, - "record": { + "records": { "CNAME": "jpedro.github.io" } } diff --git a/domains/jpsantistebanq.json b/domains/jpsantistebanq.json new file mode 100644 index 000000000..7c8425bea --- /dev/null +++ b/domains/jpsantistebanq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jpsantistebanq", + "email": "jpsantq@gmail.com" + }, + "records": { + "CNAME": "jpsantistebanq.github.io" + } +} diff --git a/domains/jqnn.json b/domains/jqnn.json index 95a1cf91a..e5443b0dd 100644 --- a/domains/jqnn.json +++ b/domains/jqnn.json @@ -3,7 +3,7 @@ "username": "Jqnn", "email:": "contact@jqnn.studio" }, - "record": { + "records": { "A": ["144.24.170.49"] } } diff --git a/domains/jqshuv.json b/domains/jqshuv.json index aa2341712..714d0ff27 100644 --- a/domains/jqshuv.json +++ b/domains/jqshuv.json @@ -6,7 +6,7 @@ "email": "jqshuv@gmail.com", "twitter": "jqshuv" }, - "record": { + "records": { "CNAME": "jqshuv.github.io" } } diff --git a/domains/jrdrwn.json b/domains/jrdrwn.json index f4f2eb136..9100ad3c0 100644 --- a/domains/jrdrwn.json +++ b/domains/jrdrwn.json @@ -6,7 +6,7 @@ "email": "jordirwn@gmail.com", "twitter": "_jrdrwan" }, - "record": { + "records": { "CNAME": "jrdrwn.github.io" } } diff --git a/domains/jretamal.json b/domains/jretamal.json new file mode 100644 index 000000000..22b17366b --- /dev/null +++ b/domains/jretamal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jretamal", + "email": "jretamal@gmail.com" + }, + "records": { + "URL": "https://jretamal.cl" + } +} diff --git a/domains/jrmessias.json b/domains/jrmessias.json new file mode 100644 index 000000000..c59c1de50 --- /dev/null +++ b/domains/jrmessias.json @@ -0,0 +1,12 @@ +{ + "description": "For a personal website", + "repo": "https://github.com/jrmessias/jrmessias.github.io", + "owner": { + "username": "jrmessias", + "email": "jrmessias@gmail.com", + "twitter": "jrmessias" + }, + "records": { + "CNAME": "jrmessias.github.io" + } +} diff --git a/domains/js.json b/domains/js.json index 1b9626783..729fb91f6 100644 --- a/domains/js.json +++ b/domains/js.json @@ -1,11 +1,24 @@ { - "description": "7.is.a.dev why not", + "description": "js.is-a.dev", "owner": { "username": "JustDeveloper1", - "email": "justdeveloper@juststudio.is-a.dev", + "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { - "A": ["89.106.200.1"] + "records": { + "URL": "https://juststudio.is-a.dev/" + }, + "redirect_config": { + "custom_paths": { + "/00": "https://juststudio.is-a.dev/account/#/security?from=wellknown", + "/01": "https://juststudio.is-a.dev/terms", + "/02": "https://juststudio.is-a.dev/rules", + "/03": "https://juststudio.is-a.dev/account/", + "/encoder": "https://encoder.js.is-a.dev/", + "/encoder/latest": "https://encoder.js.is-a.dev/encoder.js@1.0.1.js", + "/encoder/1.0.0": "https://encoder.js.is-a.dev/encoder.js@1.0.0.js", + "/encoder/1.0.1": "https://encoder.js.is-a.dev/encoder.js@1.0.1.js" + }, + "redirect_paths": true } } diff --git a/domains/jsanchez.json b/domains/jsanchez.json new file mode 100644 index 000000000..154fb62c5 --- /dev/null +++ b/domains/jsanchez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chuyto", + "email": "jesusanchez221296@gmail.com" + }, + "records": { + "CNAME": "jsanchez-9148b.web.app" + } +} diff --git a/domains/jshlyzxl.json b/domains/jshlyzxl.json index 15ee55b97..3de695a76 100644 --- a/domains/jshlyzxl.json +++ b/domains/jshlyzxl.json @@ -1,10 +1,9 @@ { "owner": { "username": "cbbnbbc", - "discord": "1038746610076762112", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Ab2hd4po08soMX0a0bMY_OYRwwnzSzOfytWFgSfqRcpamAeZfJ1ME2Eco_1EQgAkrgt2cnTcdIbyS17lAaFw5btEdLQKHBZaDoQdp74curgiEj1eYWRgYKQjMPS93QZdHXhgUUqLyldjggWF0Xu5fdJStxuL69MyJem9WmdXyruSOkPm01eEFZIimgd00gXs0BzPsfX4CMuakoYlOXijZlPhbJkJv-kRaJ4aFh9TUJKd8bqNRvyi6nv7JoL85yaEaIRB-d3i58G78qA-8vINoO7gAFb-ozavxkE5VY7P3F0jUJotRuXhik4BfYy40DcklPaB207S7EvUP22iijUGag.lqHb96P3LwB1bY9f7DLfLw.oHHZiB_3-GfVpTBN26unT0iDyVmA8uvOzhJ_tn2ePNKrLelQ_g--6240eFDC_vZGEgfpzEfNbWfAiZFSch1E3LV9rnmfDPVPmZJJV6hjnNk.VqaT4nVX8nGXpwSzkmsKaA" + "discord": "1038746610076762112" }, - "record": { + "records": { "CNAME": "hcchat.911748.workers.dev" } } diff --git a/domains/jsjack.json b/domains/jsjack.json index 5690830d8..4da40abc6 100644 --- a/domains/jsjack.json +++ b/domains/jsjack.json @@ -3,7 +3,7 @@ "username": "jsJack", "email": "hello@jackperry.co" }, - "record": { + "records": { "URL": "https://jackperry.co" } } diff --git a/domains/json-generator.json b/domains/json-generator.json index 3f5e81b9c..51bbafce6 100644 --- a/domains/json-generator.json +++ b/domains/json-generator.json @@ -4,7 +4,7 @@ "email": "hi@priyansh.app", "discord": "Priyansh#5220" }, - "record": { + "records": { "CNAME": "oyepriyansh.github.io" } } diff --git a/domains/json.json b/domains/json.json index 4a5fa7504..6ab814e59 100644 --- a/domains/json.json +++ b/domains/json.json @@ -4,7 +4,7 @@ "email": "isadev@jasonaa.me", "twitter": "jasonaa_" }, - "record": { + "records": { "URL": "https://jasonaa.me" } } diff --git a/domains/jsongenerator.json b/domains/jsongenerator.json deleted file mode 100644 index b14fc31dc..000000000 --- a/domains/jsongenerator.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "EducatedSuddenBucket", - "email": "educatedsuddenbucket@gmail.com" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] - } -} diff --git a/domains/jsthh.json b/domains/jsthh.json new file mode 100644 index 000000000..1427d8ec5 --- /dev/null +++ b/domains/jsthh.json @@ -0,0 +1,11 @@ +{ + "description": "JensenTHH's Portfolio ", + "repo": "https://github.com/Jensen-THH/ng-three", + "owner": { + "username": "Jensen-THH", + "email": "tranhohiep.01@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jsworld.json b/domains/jsworld.json index 9efb6007a..23e9beb91 100644 --- a/domains/jsworld.json +++ b/domains/jsworld.json @@ -6,7 +6,7 @@ "email": "gamerciter2@gmail.com", "twitter": "dont have" }, - "record": { + "records": { "CNAME": "pythoniaweb.github.io" } } diff --git a/domains/jt.json b/domains/jt.json new file mode 100644 index 000000000..c644c3f5a --- /dev/null +++ b/domains/jt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cloudcap10", + "email": "jttalasan@live.com" + }, + "records": { + "NS": ["ivan.ns.cloudflare.com", "tara.ns.cloudflare.com"] + } +} diff --git a/domains/juan-morales.json b/domains/juan-morales.json new file mode 100644 index 000000000..0ae80210c --- /dev/null +++ b/domains/juan-morales.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Juanmorales1810", + "email": "juan.exequiel.morales@gmail.com", + "discord": "746910653343596574" + }, + "records": { + "CNAME": "juan-morales.vercel.app" + } +} diff --git a/domains/juan-samayoa.json b/domains/juan-samayoa.json new file mode 100644 index 000000000..7efacb098 --- /dev/null +++ b/domains/juan-samayoa.json @@ -0,0 +1,12 @@ +{ + "description": "Portafolio of Juan Samayoa, a viewable page that shows my experience and projects worked on and will be updated from now on so needed this to begin", + "repo": "https://github.com/JuanSamayoa/Portafolio-HTML", + "owner": { + "username": "JuanSamayoa", + "email": "juancho1705@gmail.com" + }, + "records": { + "CNAME": "juansamayoa.github.io" + }, + "proxied": true +} diff --git a/domains/juan.json b/domains/juan.json index 03b9a6277..4484a3b4e 100644 --- a/domains/juan.json +++ b/domains/juan.json @@ -4,7 +4,7 @@ "email": "miavictorianash@gmail.com", "discord": "779882046067179531" }, - "record": { + "records": { "A": ["185.27.133.19"] } } diff --git a/domains/juanca.json b/domains/juanca.json new file mode 100644 index 000000000..508f1c553 --- /dev/null +++ b/domains/juanca.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wJuanca", + "email": "juancarlosturcios2001@gmail.com" + }, + "records": { + "CNAME": "juanturcios-github-io.vercel.app" + } +} diff --git a/domains/juancarloslacruz.json b/domains/juancarloslacruz.json new file mode 100644 index 000000000..b1b85360d --- /dev/null +++ b/domains/juancarloslacruz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LacruzJSDev", + "discord": "1336068820661567489" + }, + "records": { + "CNAME": "portafolio-weld-three.vercel.app" + } +} diff --git a/domains/juancx.json b/domains/juancx.json new file mode 100644 index 000000000..e5c1b31c9 --- /dev/null +++ b/domains/juancx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "juancxdev", + "email": "developer.juancx@gmail.com" + }, + "records": { + "A": ["199.36.158.100"], + "TXT": "hosting-site=juancx-9e024" + } +} diff --git a/domains/juandev.json b/domains/juandev.json new file mode 100644 index 000000000..e60026d72 --- /dev/null +++ b/domains/juandev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanPython1", + "email": "kamilo201025@gmail.com" + }, + "records": { + "CNAME": "juanpython1.github.io" + } +} diff --git a/domains/juanespachon.json b/domains/juanespachon.json new file mode 100644 index 000000000..31ebf6285 --- /dev/null +++ b/domains/juanespachon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanesPachon", + "email": "yeroparce1@gmail.com" + }, + "records": { + "CNAME": "juanes-portfolio.vercel.app" + } +} diff --git a/domains/juanhuete.json b/domains/juanhuete.json new file mode 100644 index 000000000..c1a40cf7f --- /dev/null +++ b/domains/juanhuete.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for juanhuete", + "owner": { + "username": "juanjose23", + "email": "jrios9836@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/juanjo.json b/domains/juanjo.json index d2405eae9..27830ebd0 100644 --- a/domains/juanjo.json +++ b/domains/juanjo.json @@ -5,7 +5,7 @@ "username": "string-null", "email": "null0x22@protonmail.com" }, - "record": { + "records": { "CNAME": "string-null.github.io" } } diff --git a/domains/juanluserrano.json b/domains/juanluserrano.json new file mode 100644 index 000000000..aa8be3f28 --- /dev/null +++ b/domains/juanluserrano.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "z3nitt", + "email": "juanluserranoleal@gmail.com" + }, + "records": { + "CNAME": "z3nitt.github.io" + } +} diff --git a/domains/juanpabloleonmaya.json b/domains/juanpabloleonmaya.json new file mode 100644 index 000000000..4d417b39b --- /dev/null +++ b/domains/juanpabloleonmaya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juanleon8581", + "email": "juanleon8581@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/juantito.json b/domains/juantito.json new file mode 100644 index 000000000..76f9be972 --- /dev/null +++ b/domains/juantito.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanTito", + "email": "JuanTito@gio.in" + }, + "records": { + "URL": "https://github.com/JuanGTito" + } +} diff --git a/domains/juanturcios.json b/domains/juanturcios.json new file mode 100644 index 000000000..f61d6b321 --- /dev/null +++ b/domains/juanturcios.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "wJuanca" + }, + "records": { + "CNAME": "wjuanca.github.io" + } +} diff --git a/domains/jubal.json b/domains/jubal.json new file mode 100644 index 000000000..337879455 --- /dev/null +++ b/domains/jubal.json @@ -0,0 +1,11 @@ +{ + "description": "Jubal Slone's website", + "repo": "https://github.com/jubalslone/jubalslone.github.io", + "owner": { + "username": "jubalslone", + "email": "jubal.slone@gmail.com" + }, + "records": { + "CNAME": "jubalslone.github.io" + } +} diff --git a/domains/juhair.json b/domains/juhair.json index 6695800a6..bc7b259d8 100644 --- a/domains/juhair.json +++ b/domains/juhair.json @@ -4,7 +4,7 @@ "username": "juhair-cupcake", "email": "juhair98@pm.me" }, - "record": { + "records": { "URL": "https://juhair-dev.netlify.app" } } diff --git a/domains/juikulkarni.json b/domains/juikulkarni.json index 7590d5dcc..43edf0374 100644 --- a/domains/juikulkarni.json +++ b/domains/juikulkarni.json @@ -5,7 +5,7 @@ "username": "jkulkarni01", "email": "jui01kulkarni@gmail.com" }, - "record": { + "records": { "CNAME": "jkulkarni01.github.io" } } diff --git a/domains/juin.json b/domains/juin.json index c78a8794c..be88daff5 100644 --- a/domains/juin.json +++ b/domains/juin.json @@ -5,7 +5,7 @@ "username": "Juin28", "email": "tanjuinlong@gmail.com" }, - "record": { + "records": { "CNAME": "juin28.github.io" } } diff --git a/domains/jules.json b/domains/jules.json new file mode 100644 index 000000000..a8fcc0310 --- /dev/null +++ b/domains/jules.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "not-a-feature", + "email": "contact@juleskreuer.eu" + }, + "records": { + "URL": "https://juleskreuer.eu" + } +} diff --git a/domains/julian.json b/domains/julian.json index b851fdb8a..d8019ecf1 100644 --- a/domains/julian.json +++ b/domains/julian.json @@ -3,13 +3,8 @@ "username": "getSono", "email": "sono.arbeit@gmail.com" }, - "record": { - "A": [ - "185.199.110.153", - "185.199.108.153", - "185.199.109.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.110.153", "185.199.108.153", "185.199.109.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/juliano.json b/domains/juliano.json new file mode 100644 index 000000000..7f02c8ace --- /dev/null +++ b/domains/juliano.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JuSfrei", + "email": "me@jusfrei.dev" + }, + "records": { + "MX": ["in1-smtp.messagingengine.com", "in2-smtp.messagingengine.com"], + "TXT": "v=spf1 include:spf.messagingengine.com ?all" + } +} diff --git a/domains/julianwe17.json b/domains/julianwe17.json index a75522363..4b4015a65 100644 --- a/domains/julianwe17.json +++ b/domains/julianwe17.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "Julianwe17", - "email": "julian.in.hbr@gmail.com", - "discord": "1055740356764901437" - }, - - "record": { - "CNAME": "julianwe17.github.io" - } - } - + "owner": { + "username": "Julianwe17", + "email": "julian.in.hbr@gmail.com", + "discord": "1055740356764901437" + }, + "records": { + "CNAME": "julianwe17.github.io" + } +} diff --git a/domains/julio.json b/domains/julio.json index b8118e0de..589c3d130 100644 --- a/domains/julio.json +++ b/domains/julio.json @@ -1,11 +1,10 @@ { "description": "My work portfolio", - "repo": "https://github.com/thatsquite", "owner": { "username": "thatsquite", "email": "juliocesar.santos@making.com" }, - "record": { + "records": { "CNAME": "thatsquite.github.io" } } diff --git a/domains/juliusknuff.json b/domains/juliusknuff.json index d1bf54156..08afb532c 100644 --- a/domains/juliusknuff.json +++ b/domains/juliusknuff.json @@ -3,7 +3,7 @@ "username": "juliusknuff", "email": "juliusknuff@ok.de" }, - "record": { + "records": { "CNAME": "juliusknu.pages.dev" } } diff --git a/domains/jumanji.json b/domains/jumanji.json index b3ef5c086..cca6d209c 100644 --- a/domains/jumanji.json +++ b/domains/jumanji.json @@ -3,8 +3,8 @@ "username": "heyjumanji", "email": "madhuchutiya.unhinge650@silomails.com" }, - "record": { - "A": ["172.66.47.44", "172.66.44.212"], + "records": { + "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/jun-wei.json b/domains/jun-wei.json index 18f55ddf5..b5544c29c 100644 --- a/domains/jun-wei.json +++ b/domains/jun-wei.json @@ -3,7 +3,7 @@ "username": "junwei0676", "email": "junwei0676@gmail.com" }, - "record": { + "records": { "URL": "https://jun-wei-dev.netlify.app/" } } diff --git a/domains/junwei.json b/domains/junwei.json index 18f55ddf5..b5544c29c 100644 --- a/domains/junwei.json +++ b/domains/junwei.json @@ -3,7 +3,7 @@ "username": "junwei0676", "email": "junwei0676@gmail.com" }, - "record": { + "records": { "URL": "https://jun-wei-dev.netlify.app/" } } diff --git a/domains/juqwtf.json b/domains/juqwtf.json index 396af90f7..f16e102a6 100644 --- a/domains/juqwtf.json +++ b/domains/juqwtf.json @@ -1,11 +1,11 @@ { "description": "juqwtf site", - "repo": "https://github.com/denboy0123/juq.github.io", + "repo": "https://github.com/juqwtf/juq.github.io", "owner": { - "username": "denboy0123", - "email": "pochtaproverka01@gmail.com" + "username": "juqwtf", + "email": "juqwtf@gmail.com" }, - "record": { - "CNAME": "denboy0123.github.io" + "records": { + "CNAME": "juqwtf.github.io" } } diff --git a/domains/jurgen.json b/domains/jurgen.json index 855ee18f9..c4f649645 100644 --- a/domains/jurgen.json +++ b/domains/jurgen.json @@ -3,7 +3,7 @@ "username": "def0e0", "email": "def0e0@yandex.ru" }, - "record": { + "records": { "A": ["45.148.120.75"] } } diff --git a/domains/just-muzz.json b/domains/just-muzz.json index 32e99e070..654f0fe18 100644 --- a/domains/just-muzz.json +++ b/domains/just-muzz.json @@ -6,7 +6,7 @@ "email": "idrisking759@gmail.com", "twitter": "just_Muzz" }, - "record": { + "records": { "CNAME": "just-muzz.github.io" } } diff --git a/domains/just.json b/domains/just.json index 8207723f2..9ec4c49e0 100644 --- a/domains/just.json +++ b/domains/just.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "A": ["89.106.200.1"] } } diff --git a/domains/justdev.json b/domains/justdev.json index c6539887a..94654406b 100644 --- a/domains/justdev.json +++ b/domains/justdev.json @@ -4,7 +4,7 @@ "username": "JustDeveloper1", "email": "justdeveloper@juststudio.is-a.dev" }, - "record": { + "records": { "A": ["89.106.200.1"] } } diff --git a/domains/justdeveloper.json b/domains/justdeveloper.json index 4313ccf47..1d9f3f24c 100644 --- a/domains/justdeveloper.json +++ b/domains/justdeveloper.json @@ -6,16 +6,14 @@ "email": "justdeveloper@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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": [ "google-site-verification=qBaFslC7xe6gcHiolYEJ32HjpJVk-ZOMbRpu_1zkm_s", - "yandex-verification: 10cec93159ddc69f" + "yandex-verification: 10cec93159ddc69f", + "yandex-verification: a31dc9b638bff027", + "v=spf1 include:spf.improvmx.com ~all" ] } } diff --git a/domains/justdeveloper1.json b/domains/justdeveloper1.json new file mode 100644 index 000000000..68a47ef90 --- /dev/null +++ b/domains/justdeveloper1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "records": { + "URL": "https://justdeveloper.is-a.dev/" + } +} diff --git a/domains/justdeveloper7.json b/domains/justdeveloper7.json new file mode 100644 index 000000000..68a47ef90 --- /dev/null +++ b/domains/justdeveloper7.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "records": { + "URL": "https://justdeveloper.is-a.dev/" + } +} diff --git a/domains/justforever.json b/domains/justforever.json index 603366923..229e24cc2 100644 --- a/domains/justforever.json +++ b/domains/justforever.json @@ -5,7 +5,7 @@ "username": "DevJustForever", "email": "mertcelik0541@gmail.com" }, - "record": { + "records": { "CNAME": "devjustforever.github.io" } } diff --git a/domains/justin.json b/domains/justin.json index 9b858cb6b..616e2ce16 100644 --- a/domains/justin.json +++ b/domains/justin.json @@ -5,7 +5,7 @@ "username": "justinjohnymathew", "email": "justinjohny.jj@gmail.com" }, - "record": { + "records": { "CNAME": "justinjohnymathew.github.io" } } diff --git a/domains/juststudio.json b/domains/juststudio.json index 287ea66c3..caa153bc0 100644 --- a/domains/juststudio.json +++ b/domains/juststudio.json @@ -6,13 +6,8 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], "TXT": [ "v=spf1 include:zohomail.eu ~all", @@ -20,5 +15,18 @@ "yandex-verification: aac5928d8d57ade9", "yandex-verification: 75d6e8d99eae89d4" ] - } + }, + "redirect_config": { + "custom_paths": { + "/.well-known/change-password": "https://js.is-a.dev/00", + "/terms-of-service": "https://js.is-a.dev/01", + "/user-agreement": "https://js.is-a.dev/01", + "/rules-for-players": "https://js.is-a.dev/02", + "/accounts": "https://js.is-a.dev/03", + "/r/discord": "https://discord.gg/aHXxS6VvcC", + "/r/roblox": "https://www.roblox.com/groups/11641563/JustStudio#!/about", + "/r/github": "https://github.com/JustStudio7" + } + }, + "proxied": true } diff --git a/domains/juststudio7.json b/domains/juststudio7.json new file mode 100644 index 000000000..a3039721f --- /dev/null +++ b/domains/juststudio7.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "records": { + "URL": "https://juststudio.is-a.dev/" + } +} diff --git a/domains/justtobbi.json b/domains/justtobbi.json index 98b8b8081..8f96f0f0e 100644 --- a/domains/justtobbi.json +++ b/domains/justtobbi.json @@ -5,7 +5,7 @@ "username": "justTOBBI", "email": "justtobbi@gmail.com" }, - "record": { + "records": { "CNAME": "justtobbi.github.io" } } diff --git a/domains/justtrynacode.json b/domains/justtrynacode.json index ad66d827e..e8bfce9d6 100644 --- a/domains/justtrynacode.json +++ b/domains/justtrynacode.json @@ -5,7 +5,7 @@ "username": "JustTrynacodee", "discord": "JustTrynaCode#0810" }, - "record": { + "records": { "CNAME": "justtrynacodee.github.io" } } diff --git a/domains/justwinstuff.json b/domains/justwinstuff.json index 2ba65cf76..de8c5c1f0 100644 --- a/domains/justwinstuff.json +++ b/domains/justwinstuff.json @@ -3,7 +3,7 @@ "username": "enderfoxbg", "discord": "970380468090437672" }, - "record": { + "records": { "CNAME": "justwinstuff.vercel.app" } } diff --git a/domains/jvdesign.json b/domains/jvdesign.json index 26bd113e0..8eac1d43a 100644 --- a/domains/jvdesign.json +++ b/domains/jvdesign.json @@ -5,7 +5,7 @@ "username": "JVDesignBavaria", "twitter": "JVDesignBavaria" }, - "record": { + "records": { "CNAME": "jvdesignbavaria.github.io" } } diff --git a/domains/jvideo.json b/domains/jvideo.json index 623d38a24..6761cfacc 100644 --- a/domains/jvideo.json +++ b/domains/jvideo.json @@ -4,7 +4,7 @@ "email": "davedrives7@gmail.com", "discord": "1030204181207859260" }, - "record": { + "records": { "CNAME": "jvideo-sk.github.io" } } diff --git a/domains/jvnsen.json b/domains/jvnsen.json new file mode 100644 index 000000000..e160af420 --- /dev/null +++ b/domains/jvnsen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jvnsen", + "email": "jansenharveyreyes0101@gmail.com" + }, + "records": { + "CNAME": "jvnsen.github.io" + } +} diff --git a/domains/jwaxy.json b/domains/jwaxy.json index 7b81d01fd..1cebf059a 100644 --- a/domains/jwaxy.json +++ b/domains/jwaxy.json @@ -5,7 +5,7 @@ "username": "jwaxy", "email": "me@yxawj.aleeas.com" }, - "record": { + "records": { "NS": ["isabel.ns.cloudflare.com", "kolton.ns.cloudflare.com"] } } diff --git a/domains/jwe0.json b/domains/jwe0.json new file mode 100644 index 000000000..b0a086d69 --- /dev/null +++ b/domains/jwe0.json @@ -0,0 +1,10 @@ +{ + "description": "Forwarding", + "owner": { + "email": "900qxecf7@mozmail.com", + "username": "jwe0" + }, + "records": { + "CNAME": "jwe0.xyz" + } +} diff --git a/domains/jwoj.json b/domains/jwoj.json new file mode 100644 index 000000000..734ad5de9 --- /dev/null +++ b/domains/jwoj.json @@ -0,0 +1,10 @@ +{ + "description": "Hydro Online Judge System", + "owner": { + "username": "Evansrrr", + "email": "enzoraziore@outlook.com" + }, + "records": { + "A": ["82.156.38.77"] + } +} diff --git a/domains/jzitnik.json b/domains/jzitnik.json index 58e385e73..0bd469e1c 100644 --- a/domains/jzitnik.json +++ b/domains/jzitnik.json @@ -4,10 +4,7 @@ "email": "klindkubak@zohomail.eu", "discord": "KLIND#1906" }, - "record": { - "MX": [ - "a257fec0e9137cd3.mx2.emailprofi.seznam.cz", - "a257fec0e9137cd3.mx1.emailprofi.seznam.cz" - ] + "records": { + "MX": ["a257fec0e9137cd3.mx2.emailprofi.seznam.cz", "a257fec0e9137cd3.mx1.emailprofi.seznam.cz"] } } diff --git a/domains/jznctt.json b/domains/jznctt.json new file mode 100644 index 000000000..0d7828a8e --- /dev/null +++ b/domains/jznctt.json @@ -0,0 +1,11 @@ +{ + "description": "Profile Website of Jznctt", + "repo": "https://github.com/ncttjz/ncttjz.github.io", + "owner": { + "username": "ncttjz", + "email": "jznctt@gmail.com" + }, + "records": { + "CNAME": "ncttjz.github.io" + } +} diff --git a/domains/k.json b/domains/k.json index 6f58e46d3..4d05a5e43 100644 --- a/domains/k.json +++ b/domains/k.json @@ -3,7 +3,7 @@ "username": "MaskDuck", "discord": "716134528409665586" }, - "record": { + "records": { "NS": ["ada.ns.cloudflare.com", "albert.ns.cloudflare.com"] } } diff --git a/domains/k93msy.json b/domains/k93msy.json index d72cdaf03..c9109873e 100644 --- a/domains/k93msy.json +++ b/domains/k93msy.json @@ -5,7 +5,7 @@ "username": "K93MSY", "email": "kuritama0903@gmail.com" }, - "record": { + "records": { "CNAME": "k93msy.github.io" } } diff --git a/domains/kacem.json b/domains/kacem.json index f413e6bad..2aeb6c476 100644 --- a/domains/kacem.json +++ b/domains/kacem.json @@ -1,11 +1,10 @@ { "description": "Kacem's personal dungeon", - "repo": "https://github.com/LordKacem", "owner": { "username": "Kacem", "email": "Kacem.dev@hotmail.com" }, - "record": { + "records": { "CNAME": "nkessill.sirv.com" } } diff --git a/domains/kachi.json b/domains/kachi.json index eb7277aa1..f40126643 100644 --- a/domains/kachi.json +++ b/domains/kachi.json @@ -3,7 +3,7 @@ "username": "joshex150", "email": "joshex150@gmail.com" }, - "record": { + "records": { "CNAME": "josh-folio.web.app" } } diff --git a/domains/kacper.json b/domains/kacper.json new file mode 100644 index 000000000..6b24cc84d --- /dev/null +++ b/domains/kacper.json @@ -0,0 +1,10 @@ +{ + "description": "kacper.is-a.dev", + "owner": { + "username": "k4czp3r", + "email": "contact@kacperserewis.net" + }, + "records": { + "CNAME": "kacperserewis.net" + } +} diff --git a/domains/kagari.json b/domains/kagari.json index b7e1d15a8..5c8a25394 100644 --- a/domains/kagari.json +++ b/domains/kagari.json @@ -3,7 +3,7 @@ "username": "kagarifuyukawa", "email": "fuyukawabot@gmail.com" }, - "record": { + "records": { "CNAME": "kagarifuyukawa.github.io" } } diff --git a/domains/kagchi.json b/domains/kagchi.json index 5adbcc6b0..acb8336e0 100644 --- a/domains/kagchi.json +++ b/domains/kagchi.json @@ -1,11 +1,10 @@ { "description": "KagChi's Personal Website", - "repo": "https://github.com/KagChi", "owner": { "username": "KagChi", "email": "contact@kagchi.my.id" }, - "record": { + "records": { "URL": "https://kagchi.my.id" } } diff --git a/domains/kagurayayoi.json b/domains/kagurayayoi.json new file mode 100644 index 000000000..c3429ac27 --- /dev/null +++ b/domains/kagurayayoi.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/fjaxzhy/is-a.dev", + "owner": { + "username": "Fjaxzhy", + "email": "admin@kagurayayoi.top" + }, + "records": { + "CNAME": "kagurayayoi.top" + } +} diff --git a/domains/kaguwo.json b/domains/kaguwo.json index b2ad285fe..217bb5588 100644 --- a/domains/kaguwo.json +++ b/domains/kaguwo.json @@ -4,7 +4,7 @@ "username": "kaguwomin", "email": "business@kaguwo.com" }, - "record": { + "records": { "CNAME": "kaguwomin.github.io" } } diff --git a/domains/kahseng.json b/domains/kahseng.json index 4e7967b3b..bd02092d6 100644 --- a/domains/kahseng.json +++ b/domains/kahseng.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kahseng-dev", - "email": "kahseng.chew@protonmail.com" - }, - "record": { - "CNAME": "kahseng.pages.dev" - } + "owner": { + "username": "kahseng-dev", + "email": "kahseng.chew@protonmail.com" + }, + "records": { + "CNAME": "kahseng.pages.dev" + } } diff --git a/domains/kai.json b/domains/kai.json index fe6b819d3..0bca6260a 100644 --- a/domains/kai.json +++ b/domains/kai.json @@ -5,7 +5,7 @@ "username": "blackaimc", "email": "blackaimc@gmail.com" }, - "record": { + "records": { "CNAME": "blackaimc.github.io" } } diff --git a/domains/kaish.json b/domains/kaish.json index 168dbd859..943084d4e 100644 --- a/domains/kaish.json +++ b/domains/kaish.json @@ -3,7 +3,7 @@ "username": "mark18cosmic", "email": "kaish018@gmail.com" }, - "record": { + "records": { "URL": "https://mark18cosmic.github.io" } } diff --git a/domains/kaivalya.json b/domains/kaivalya.json index 8a3db2036..52306f03e 100644 --- a/domains/kaivalya.json +++ b/domains/kaivalya.json @@ -5,7 +5,7 @@ "username": "Kaivalya4", "email": "kt6819@yahoo.com" }, - "record": { + "records": { "CNAME": "kaivalya4.github.io" } } diff --git a/domains/kaizenji2024.json b/domains/kaizenji2024.json index f75c0cc03..06831941b 100644 --- a/domains/kaizenji2024.json +++ b/domains/kaizenji2024.json @@ -3,7 +3,7 @@ "username": "Kaizenji", "email": "baratumal6788@gmail.com" }, - "record": { + "records": { "CNAME": "jayceeqti-web.pages.dev" } } diff --git a/domains/kajetan.json b/domains/kajetan.json new file mode 100644 index 000000000..1eea74110 --- /dev/null +++ b/domains/kajetan.json @@ -0,0 +1,11 @@ +{ + "description": "Personal use for my portofolio website", + "repo": "https://github.com/Kajpio/kajpio.github.io", + "owner": { + "username": "Kajpio", + "email": "thugmichel14@gmail.com" + }, + "records": { + "CNAME": "kajpio.github.io" + } +} diff --git a/domains/kakarot.json b/domains/kakarot.json index 30122896e..d6ca01d86 100644 --- a/domains/kakarot.json +++ b/domains/kakarot.json @@ -3,7 +3,7 @@ "username": "anshuayan", "email": "kakarotp@proton.me" }, - "record": { + "records": { "CNAME": "anshuayan.github.io" } } diff --git a/domains/kaktus.json b/domains/kaktus.json index c455b84db..6da1c5d07 100644 --- a/domains/kaktus.json +++ b/domains/kaktus.json @@ -3,7 +3,7 @@ "username": "kaktus-1", "discord": "kaktus___" }, - "record": { + "records": { "CNAME": "is-a-dev-3hg.pages.dev" } } diff --git a/domains/kakureta.ikram.json b/domains/kakureta.ikram.json new file mode 100644 index 000000000..81207b972 --- /dev/null +++ b/domains/kakureta.ikram.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/kalanathilake.json b/domains/kalanathilake.json index 653dff925..46f03b635 100644 --- a/domains/kalanathilake.json +++ b/domains/kalanathilake.json @@ -3,7 +3,7 @@ "username": "Kalana-Thilakarathna", "email": "kalana2100@gmail.com" }, - "record": { + "records": { "URL": "https://kalanathilake.netlify.app" } } diff --git a/domains/kalebalebachew.json b/domains/kalebalebachew.json new file mode 100644 index 000000000..027d02e10 --- /dev/null +++ b/domains/kalebalebachew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kalebalebachew", + "email": "kalebalebachew4@gmail.com" + }, + "records": { + "URL": "https://kalebalebachew.com" + } +} diff --git a/domains/kamlendras.json b/domains/kamlendras.json index 17e1e7e3a..7b8807bcd 100644 --- a/domains/kamlendras.json +++ b/domains/kamlendras.json @@ -5,7 +5,7 @@ "username": "kamlendras", "email": "kamlendras@proton.me" }, - "record": { + "records": { "CNAME": "kamlendras.github.io" } } diff --git a/domains/kamolgks.json b/domains/kamolgks.json index ced082bc1..43f631031 100644 --- a/domains/kamolgks.json +++ b/domains/kamolgks.json @@ -3,7 +3,7 @@ "username": "kamolgks", "email": "kamoliddintuhtaboev2@gmail.com" }, - "record": { + "records": { "CNAME": "kamolgks.github.io" } } diff --git a/domains/kanetu.json b/domains/kanetu.json new file mode 100644 index 000000000..8984a5bc0 --- /dev/null +++ b/domains/kanetu.json @@ -0,0 +1,11 @@ +{ + "description": "Kane Tu's personal developer website", + "repo": "https://github.com/kanetu/kanetu.github.io", + "owner": { + "username": "kanetu", + "email": "kanetu731@gmail.com" + }, + "records": { + "CNAME": "kanetu.github.io" + } +} diff --git a/domains/kanti-tkm.json b/domains/kanti-tkm.json index d4180df5a..eb53242b1 100644 --- a/domains/kanti-tkm.json +++ b/domains/kanti-tkm.json @@ -5,7 +5,7 @@ "username": "AshC1ty", "email": "ashcity07734@gmail.com" }, - "record": { + "records": { "CNAME": "ashc1ty.github.io" } } diff --git a/domains/kapoor.json b/domains/kapoor.json index fcc06ef00..1be1e6212 100644 --- a/domains/kapoor.json +++ b/domains/kapoor.json @@ -4,7 +4,7 @@ "email": "saumitrakapoor24@gmail.com", "twitter": "0xKapoor" }, - "record": { + "records": { "URL": "https://kapoorportfolio.vercel.app" } } diff --git a/domains/kappucino.json b/domains/kappucino.json index 6f690b542..50d564091 100644 --- a/domains/kappucino.json +++ b/domains/kappucino.json @@ -1,10 +1,9 @@ { "owner": { "username": "kappucin", - "email": "132572179+kappucin@users.noreply.github.com", "discord": "853170099392479253" }, - "record": { + "records": { "CNAME": "kappucin.github.io" } } diff --git a/domains/kappurumedia.json b/domains/kappurumedia.json index cee9e2034..0e9b6984f 100644 --- a/domains/kappurumedia.json +++ b/domains/kappurumedia.json @@ -5,7 +5,7 @@ "username": "CyrusCore", "email": "abramsatria7@gmail.com" }, - "record": { + "records": { "CNAME": "cyruscore.github.io" } } diff --git a/domains/kappy.json b/domains/kappy.json index 09896ea72..39802004a 100644 --- a/domains/kappy.json +++ b/domains/kappy.json @@ -6,7 +6,7 @@ "email": "justdeveloper@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "CNAME": "kappysquad.github.io" } } diff --git a/domains/karacsony.vamtic.json b/domains/karacsony.vamtic.json index a0c9ee304..ecb5578cb 100644 --- a/domains/karacsony.vamtic.json +++ b/domains/karacsony.vamtic.json @@ -3,7 +3,7 @@ "username": "vamtic", "email": "vamtic@yahoo.com" }, - "record": { + "records": { "CNAME": "karacsony.pages.dev" } } diff --git a/domains/karan.json b/domains/karan.json new file mode 100644 index 000000000..4018d825f --- /dev/null +++ b/domains/karan.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "balanikaran" + }, + "records": { + "CNAME": "karanbalani.com" + } +} diff --git a/domains/kareem.json b/domains/kareem.json new file mode 100644 index 000000000..7cbe35179 --- /dev/null +++ b/domains/kareem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kareem-m", + "email": "kareemmoh1911@gmail.com" + }, + "records": { + "CNAME": "kareemelramady.vercel.app" + } +} diff --git a/domains/karify98.json b/domains/karify98.json new file mode 100644 index 000000000..7d71e303b --- /dev/null +++ b/domains/karify98.json @@ -0,0 +1,11 @@ +{ + "description": "karify98's website", + "repo": "https://github.com/karify98/karify98.github.io", + "owner": { + "username": "karify98", + "email": "nnnam048@gmail.com" + }, + "records": { + "CNAME": "karify98.github.io" + } +} diff --git a/domains/karl95.json b/domains/karl95.json new file mode 100644 index 000000000..b91615a2f --- /dev/null +++ b/domains/karl95.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Karel95/karldev95", + "owner": { + "username": "Karel95", + "email": "karelh2207@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/karthikeyanj.json b/domains/karthikeyanj.json new file mode 100644 index 000000000..0dc4bdfad --- /dev/null +++ b/domains/karthikeyanj.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio of karthikeyan J", + "repo": "https://github.com/karthik1915/my-vue-portfolio", + "owner": { + "username": "karthik1915", + "email": "karthikeyanj1915@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/karthikr.json b/domains/karthikr.json index ceb68c8df..f2f8ce309 100644 --- a/domains/karthikr.json +++ b/domains/karthikr.json @@ -3,7 +3,7 @@ "username": "ghxst0x1", "email": "karthikrofficial7@gmail.com" }, - "record": { + "records": { "CNAME": "ghxst0x1.pages.dev" } } diff --git a/domains/kartik.json b/domains/kartik.json index 2a6e2a717..6b307345a 100644 --- a/domains/kartik.json +++ b/domains/kartik.json @@ -5,7 +5,7 @@ "username": "kartiktalwar2003", "email": "kartiktalwar2003@gmail.com" }, - "record": { + "records": { "CNAME": "kartiktalwar2003.github.io" } } diff --git a/domains/kartikshriwas.json b/domains/kartikshriwas.json index 5934ebdcc..8a0f14d65 100644 --- a/domains/kartikshriwas.json +++ b/domains/kartikshriwas.json @@ -1,11 +1,9 @@ { "owner": { "username": "kartikshriwas", - "email": "", - "discord": "756002965323645069", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pJe5J41LBdrD2xDWudBiVp66kIxdQIj60sraae1BOQ-SQ27mGzfBzsGjxzPfvEFSOFZd2sceXvK87x15PvOXRtdYvfUKNAFmt-oxcbfAfSmaiH4YtSFe7re3F5QEDNfYvYH96QsMwHQoj2CP5-5CceqWULYFvkusOL_4ScO8yYYYCRrDCKCJ8nP80wUT2ltwAikLqY6iJTwJvWS1LqiInC1qAn8VfA5-0Z6pgXCL7sMIsLWO-GZKXOqGUE_b5zV8LOgRml_RQgOlCZ306TVpOE2eF7M37nZ3ETbY3OWQo125q43oiisPZGo89sfL3jRxzd4OpaC56sEvEjj5_eXE6w.Bo1EpPh6LJSpWzAWSiqEYA.IHIiJ7JdCyD6CYg9bjHxHuBTJPluhpe2PGzmCR8A9RPmRcCitK4H5bTCXCw1R3qw6gIy2IugE9-Bt5iHulfHLHgPOmeg5xN8SHo5ea-Z7U4.1LJXKyAg2vnLjmnCoxQvGQ" + "discord": "756002965323645069" }, - "record": { + "records": { "CNAME": "kartikshriwas.github.io" } } diff --git a/domains/karttikeya.json b/domains/karttikeya.json index aebd415f4..0a825a35d 100644 --- a/domains/karttikeya.json +++ b/domains/karttikeya.json @@ -5,7 +5,7 @@ "username": "Karttikeya", "email": "karttikeyashahi@gmail.com" }, - "record": { + "records": { "CNAME": "kartkernel.github.io" } } diff --git a/domains/kashif-kadri.json b/domains/kashif-kadri.json index bac383fbe..501f8393e 100644 --- a/domains/kashif-kadri.json +++ b/domains/kashif-kadri.json @@ -4,7 +4,7 @@ "owner": { "username": "kashif-kadri" }, - "record": { + "records": { "URL": "https://kashif-kadri.github.io" } } diff --git a/domains/kasun.json b/domains/kasun.json index e8b1021a6..68feb78b5 100644 --- a/domains/kasun.json +++ b/domains/kasun.json @@ -3,7 +3,7 @@ "username": "ka0un", "email": "givemelognotes@gmail.com" }, - "record": { + "records": { "URL": "https://ka0un.github.io" } } diff --git a/domains/katidoki.json b/domains/katidoki.json new file mode 100644 index 000000000..e1a8fc769 --- /dev/null +++ b/domains/katidoki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hitoshi-okada", + "email": "okada@katidoki.com" + }, + "records": { + "CNAME": "hitoshi-okada.github.io" + } +} diff --git a/domains/katolik163.json b/domains/katolik163.json index 98d55ae2b..4b3e44be8 100644 --- a/domains/katolik163.json +++ b/domains/katolik163.json @@ -4,7 +4,7 @@ "email": "klimenko.tolik2004@gmail.com", "discord": "376320810631299084" }, - "record": { + "records": { "CNAME": "katolik163.github.io" } } diff --git a/domains/katumbapaul.json b/domains/katumbapaul.json new file mode 100644 index 000000000..d25b50642 --- /dev/null +++ b/domains/katumbapaul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kpaool", + "email": "jonathapkatumba@gmail.com" + }, + "records": { + "CNAME": "katumbapaul.com" + } +} diff --git a/domains/katz.json b/domains/katz.json index 1f6312968..eb2d55892 100644 --- a/domains/katz.json +++ b/domains/katz.json @@ -3,7 +3,7 @@ "username": "Bananalolok", "discord": "banana_lol_7678" }, - "record": { + "records": { "NS": ["audrey.ns.cloudflare.com", "hank.ns.cloudflare.com"] } } diff --git a/domains/kaushalbuccha.json b/domains/kaushalbuccha.json index 92dc3e8f6..95cbfddc2 100644 --- a/domains/kaushalbuccha.json +++ b/domains/kaushalbuccha.json @@ -6,7 +6,7 @@ "email": "kaushaljain741@gmail.com", "twitter": "kaushalbuccha" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/kaushik-bhadarka.json b/domains/kaushik-bhadarka.json index 8a26b83d0..23c9fffdf 100644 --- a/domains/kaushik-bhadarka.json +++ b/domains/kaushik-bhadarka.json @@ -5,7 +5,7 @@ "username": "kaushik-bhadarka", "email": "kaushik-bhadarka@acquaintsoft.com" }, - "record": { + "records": { "CNAME": "kaushik-bhadarka.github.io" } } diff --git a/domains/kaustubh.json b/domains/kaustubh.json index 422bbd5e7..01c6f589c 100644 --- a/domains/kaustubh.json +++ b/domains/kaustubh.json @@ -6,7 +6,7 @@ "email": "kaustubh_2008@outlook.com", "twitter": "Kaustubhkharvi" }, - "record": { + "records": { "CNAME": "kaustubhkharvi.github.io" } } diff --git a/domains/kavi.json b/domains/kavi.json index 362860163..cf1b1a116 100644 --- a/domains/kavi.json +++ b/domains/kavi.json @@ -5,7 +5,7 @@ "username": "dkaviarasu", "twitter": "kaviarasudm" }, - "record": { + "records": { "CNAME": "dkaviarasu.github.io" } } diff --git a/domains/kavin.json b/domains/kavin.json index f31da9aec..fcfb6823a 100644 --- a/domains/kavin.json +++ b/domains/kavin.json @@ -3,7 +3,7 @@ "username": "kavin81", "email": "kavin6462@gmail.com" }, - "record": { + "records": { "CNAME": "kavin81.pages.dev" } } diff --git a/domains/kaweees.json b/domains/kaweees.json index 5e0ee081e..356ca5943 100644 --- a/domains/kaweees.json +++ b/domains/kaweees.json @@ -5,7 +5,7 @@ "username": "Kaweees", "email": "miguelvillafloran@gmail.com" }, - "record": { + "records": { "CNAME": "kaweees.github.io" } } diff --git a/domains/kaweendra.json b/domains/kaweendra.json index a6e27fccb..22865c03f 100644 --- a/domains/kaweendra.json +++ b/domains/kaweendra.json @@ -3,7 +3,7 @@ "username": "kaweendras", "email": "salitha.wijerathna@gmail.com" }, - "record": { + "records": { "CNAME": "kaweendras.github.io" } } diff --git a/domains/kawet.json b/domains/kawet.json index 674b3f21a..71c70c69f 100644 --- a/domains/kawet.json +++ b/domains/kawet.json @@ -1,11 +1,10 @@ { "description": "My portofolio", - "repo": "https://github.com/Kawet00", "owner": { "username": "kawet", "email": "kawet00@proton.me" }, - "record": { + "records": { "CNAME": "ee4b2375-cc40-4c9d-b34a-9fa2047b8ebf.id.repl.co" } } diff --git a/domains/kawsar.json b/domains/kawsar.json index b6dba88ac..e42ec0fe2 100644 --- a/domains/kawsar.json +++ b/domains/kawsar.json @@ -4,7 +4,7 @@ "email": "kawsar.dev1@gmail.com", "discord": "520373269979988000" }, - "record": { + "records": { "CNAME": "kawsardev.vercel.app" } } diff --git a/domains/kaybee.json b/domains/kaybee.json index d268d9fa3..f9736f201 100644 --- a/domains/kaybee.json +++ b/domains/kaybee.json @@ -3,7 +3,7 @@ "username": "ecstaticsoul", "email": "soulfulkrishna@gmail.com" }, - "record": { + "records": { "CNAME": "ecstaticsoul.github.io" } } diff --git a/domains/kayden.json b/domains/kayden.json index 7b01d8916..30bfc7041 100644 --- a/domains/kayden.json +++ b/domains/kayden.json @@ -3,7 +3,7 @@ "username": "leekayden", "email": "kaydenleefale@gmail.com" }, - "record": { - "A": ["103.7.8.238"] + "records": { + "A": ["178.128.124.89"] } } diff --git a/domains/kayla.json b/domains/kayla.json index b2d7cbb34..e240982bc 100644 --- a/domains/kayla.json +++ b/domains/kayla.json @@ -4,7 +4,7 @@ "email": "kayla@cybah.me" }, "description": "For now I just want to secure this subdomain and have it redirect to my main site. I may do more with it later.", - "record": { + "records": { "URL": "https://cybah.me" } } diff --git a/domains/kaz.json b/domains/kaz.json index 18a5fd01f..d702d7479 100644 --- a/domains/kaz.json +++ b/domains/kaz.json @@ -5,7 +5,7 @@ "username": "kazz0001", "email": "badchicken11690@gmail.com" }, - "record": { + "records": { "CNAME": "kazz0001.github.io" } } diff --git a/domains/kazuoyk.json b/domains/kazuoyk.json index 08ccad1ca..c28b3a265 100644 --- a/domains/kazuoyk.json +++ b/domains/kazuoyk.json @@ -3,7 +3,7 @@ "username": "KazuoYK", "email": "d4rknewbie@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/kazuoyk/dev" } } diff --git a/domains/kckarnige.json b/domains/kckarnige.json index fa0c416fb..13063eb25 100644 --- a/domains/kckarnige.json +++ b/domains/kckarnige.json @@ -6,7 +6,7 @@ "email": "kayos156official@gmail.com", "twitter": "kckarnige" }, - "record": { + "records": { "CNAME": "kckarnige.github.io" } } diff --git a/domains/kefir.json b/domains/kefir.json index 010923243..8e633a202 100644 --- a/domains/kefir.json +++ b/domains/kefir.json @@ -3,7 +3,7 @@ "username": "kefir2115", "email": "zakremciany533@gmail.com" }, - "record": { + "records": { "CNAME": "kefir2115.github.io" } } diff --git a/domains/keiran.json b/domains/keiran.json index 75c5ce723..54c25c8f9 100644 --- a/domains/keiran.json +++ b/domains/keiran.json @@ -5,7 +5,7 @@ "username": "keiranscript", "email": "keiran0@proton.me" }, - "record": { + "records": { "URL": "https://e-z.bio/kc" } } diff --git a/domains/keirnegn.json b/domains/keirnegn.json index 8b07829ab..2acbedb71 100644 --- a/domains/keirnegn.json +++ b/domains/keirnegn.json @@ -4,7 +4,7 @@ "email": "terminatorx5e@gmail.com", "discord": "499592235772280842" }, - "record": { + "records": { "URL": "https://keirnegn.dev" } } diff --git a/domains/keishi.json b/domains/keishi.json new file mode 100644 index 000000000..bdfeaee3c --- /dev/null +++ b/domains/keishi.json @@ -0,0 +1,11 @@ +{ + "description": "Keishi's portfolio", + "repo": "https://github.com/VoidKeishi/PPA-Porfolio", + "owner": { + "username": "VoidKeishi", + "email": "phananha4@gmail.com" + }, + "records": { + "CNAME": "voidkeishi.github.io" + } +} diff --git a/domains/keithkhaotic.json b/domains/keithkhaotic.json index 82aca5419..791893a85 100644 --- a/domains/keithkhaotic.json +++ b/domains/keithkhaotic.json @@ -6,7 +6,7 @@ "email": "keithbussyness@gmail.com", "twitter": "redrocker133" }, - "record": { + "records": { "CNAME": "keithkhaotic.github.io" } } diff --git a/domains/keju.json b/domains/keju.json index 88d48dff2..3273ee8a5 100644 --- a/domains/keju.json +++ b/domains/keju.json @@ -6,7 +6,7 @@ "email": "kelvinjulian.kj@gmail.com", "twitter": "Keju__" }, - "record": { + "records": { "CNAME": "kejuuu.github.io" } } diff --git a/domains/kekda.json b/domains/kekda.json index 2b40ad9d8..c3391d878 100644 --- a/domains/kekda.json +++ b/domains/kekda.json @@ -4,7 +4,7 @@ "email": "yashverma7869@gmail.com", "twitter": "Yash72274544" }, - "record": { + "records": { "URL": "https://yashverma.me" } } diff --git a/domains/keli5.json b/domains/keli5.json index 01f5412c2..f9a909e7a 100644 --- a/domains/keli5.json +++ b/domains/keli5.json @@ -5,7 +5,7 @@ "username": "keli5", "twitter": "keli5_letters" }, - "record": { + "records": { "CNAME": "keli5.github.io" } } diff --git a/domains/kells.json b/domains/kells.json index d68185933..59057dffa 100644 --- a/domains/kells.json +++ b/domains/kells.json @@ -5,7 +5,7 @@ "username": "jwkim101201", "email": "jwkim101201@gmail.com" }, - "record": { + "records": { "CNAME": "jwkim101201.github.io" } } diff --git a/domains/kelly.json b/domains/kelly.json new file mode 100644 index 000000000..755a62cb9 --- /dev/null +++ b/domains/kelly.json @@ -0,0 +1,11 @@ +{ + "description": "Kelly Lawrence's personal website.", + "owner": { + "email": "kelly@kellylawrence.ca", + "username": "kellylawrence" + }, + "records": { + "CNAME": "kellylawrence.github.io" + }, + "repo": "https://github.com/kellylawrence/kellylawrence.github.io" +} diff --git a/domains/kelvin.json b/domains/kelvin.json new file mode 100644 index 000000000..060da50e1 --- /dev/null +++ b/domains/kelvin.json @@ -0,0 +1,10 @@ +{ + "description": "Dev Site", + "owner": { + "username": "kelvinelove", + "email": "kevypolu@yahoo.com" + }, + "records": { + "CNAME": "kevhi.netlify.app" + } +} diff --git a/domains/kem.json b/domains/kem.json index abd8048bf..a76d5db15 100644 --- a/domains/kem.json +++ b/domains/kem.json @@ -3,7 +3,7 @@ "username": "kemsadboiz", "email": "kemdev.contact@gmail.com" }, - "record": { + "records": { "A": ["103.169.35.190"] } } diff --git a/domains/ken-kuro.json b/domains/ken-kuro.json new file mode 100644 index 000000000..f01f7d6b3 --- /dev/null +++ b/domains/ken-kuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ken-kuro", + "linkedin": "hieuhm2610" + }, + "records": { + "CNAME": "kuro-querencia.vercel.app" + } +} diff --git a/domains/ken.json b/domains/ken.json deleted file mode 100644 index 44de3f8f8..000000000 --- a/domains/ken.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "kenpem", - "email": "kenpem@gmail.com" - }, - "record": { - "CNAME": "grumpyoldfart.org" - } -} diff --git a/domains/kendikasir.json b/domains/kendikasir.json new file mode 100644 index 000000000..332cd19b4 --- /dev/null +++ b/domains/kendikasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/kenney.json b/domains/kenney.json index b26b86938..7b3576c43 100644 --- a/domains/kenney.json +++ b/domains/kenney.json @@ -3,7 +3,7 @@ "username": "kendofriendo", "email": "goadke@g.cofc.edu" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/kenny.json b/domains/kenny.json index 674dabce5..bafe91b41 100644 --- a/domains/kenny.json +++ b/domains/kenny.json @@ -4,7 +4,7 @@ "email": "kennybugeja@gmail.com", "discord": "kenny.sb" }, - "record": { + "records": { "URL": "https://kennysb.xyz" } } diff --git a/domains/kennymolina.json b/domains/kennymolina.json new file mode 100644 index 000000000..abec118ba --- /dev/null +++ b/domains/kennymolina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xXMolinaXx", + "email": "kjmolina@live.com" + }, + "records": { + "CNAME": "xxmolinaxx.github.io" + } +} diff --git a/domains/kentaylor.json b/domains/kentaylor.json new file mode 100644 index 000000000..aaef57213 --- /dev/null +++ b/domains/kentaylor.json @@ -0,0 +1,12 @@ +{ + "description": "Keith Khaotic's personal website link", + "repo": "https://github.com/ktappdev/register", + "owner": { + "username": "Kentaylorappdev", + "email": "Kentaylorappdev@gmail.com", + "twitter": "@ktappdev" + }, + "records": { + "URL": "https://lugetech.com" + } +} diff --git a/domains/kenwu.json b/domains/kenwu.json index d1c0fd098..e1860525c 100644 --- a/domains/kenwu.json +++ b/domains/kenwu.json @@ -6,7 +6,7 @@ "email": "wooqianghao@gmail.com", "twitter": "KenWuqianghao" }, - "record": { + "records": { "CNAME": "kenwuqianghao.github.io" } } diff --git a/domains/kerlos.json b/domains/kerlos.json index dcab70ca6..1f2c2f494 100644 --- a/domains/kerlos.json +++ b/domains/kerlos.json @@ -3,7 +3,7 @@ "username": "kerlos", "email": "ker.los@hotmail.com" }, - "record": { + "records": { "URL": "https://github.com/kerlos" } } diff --git a/domains/kermicidal.json b/domains/kermicidal.json index 7c2a85ab2..ffd00202a 100644 --- a/domains/kermicidal.json +++ b/domains/kermicidal.json @@ -3,7 +3,7 @@ "username": "kermitsgonnakermicide", "email": "kermicidal@gmail.com" }, - "record": { + "records": { "CNAME": "kermitsgonnakermicide.github.io" } } diff --git a/domains/kernel32dll.json b/domains/kernel32dll.json index 15c41c3ac..ff3dfaea0 100644 --- a/domains/kernel32dll.json +++ b/domains/kernel32dll.json @@ -4,7 +4,7 @@ "email": "expertzack2+g1thub@gmail.com", "discord": "1118894556801413240" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/kershan.json b/domains/kershan.json index c6923e3ed..80605acde 100644 --- a/domains/kershan.json +++ b/domains/kershan.json @@ -4,7 +4,7 @@ "username": "kershan", "email": "n.kershan+isadev@gmail.com" }, - "record": { + "records": { "URL": "http://platformer.online/" } } diff --git a/domains/keshav.json b/domains/keshav.json new file mode 100644 index 000000000..d9b6a8f32 --- /dev/null +++ b/domains/keshav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "keshav-writes-code", + "email": "dhimankeshav201@gmail.com" + }, + "records": { + "CNAME": "keshav-writes-code.github.io" + } +} diff --git a/domains/kev.json b/domains/kev.json index 4c45b8a2a..a7f31c3a4 100644 --- a/domains/kev.json +++ b/domains/kev.json @@ -5,7 +5,7 @@ "username": "kevinle108", "email": "kevinle108@gmail.com" }, - "record": { + "records": { "CNAME": "kevinle108.github.io" } } diff --git a/domains/kevin-xavier.json b/domains/kevin-xavier.json index 30da40e59..1038704fd 100644 --- a/domains/kevin-xavier.json +++ b/domains/kevin-xavier.json @@ -5,7 +5,7 @@ "username": "keviiixaviiii", "email": "iamkevinxavi@gmail.com" }, - "record": { + "records": { "CNAME": "myreactandcssportfolio.netlify.app" } } diff --git a/domains/kevin.json b/domains/kevin.json new file mode 100644 index 000000000..411ffec4b --- /dev/null +++ b/domains/kevin.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio", + "repo": "https://github.com/kevincrafturu2/portfolio-bolt.new", + "owner": { + "username": "kevincrafturu2", + "email": "kevincrafturu2@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/kevinmolina.json b/domains/kevinmolina.json new file mode 100644 index 000000000..c0320aed4 --- /dev/null +++ b/domains/kevinmolina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kevinmolinadev", + "email": "kevinmolina.dev@gmail.com" + }, + "records": { + "CNAME": "kevinmolinadev.vercel.app" + } +} diff --git a/domains/kewanb.json b/domains/kewanb.json index 858313696..777376b39 100644 --- a/domains/kewanb.json +++ b/domains/kewanb.json @@ -3,7 +3,7 @@ "username": "kewanfr", "email": "mail@kewan.fr" }, - "record": { + "records": { "URL": "https://blog.kewan.fr" } } diff --git a/domains/keyaan.json b/domains/keyaan.json index 913845977..81fa22a69 100644 --- a/domains/keyaan.json +++ b/domains/keyaan.json @@ -4,7 +4,7 @@ "email": "keyhacker786@gmail.com", "discord": "693533573105451089" }, - "record": { + "records": { "URL": "http://ka4ma.unaux.com" } } diff --git a/domains/keybinds.json b/domains/keybinds.json index b9512c5cd..9f4f0eb4f 100644 --- a/domains/keybinds.json +++ b/domains/keybinds.json @@ -1,18 +1,10 @@ { - "owner": { - "username": "tr1xem", - "email": "admin@trix.is-a.dev" - }, - "record": { - "A": [ - "185.199.110.153", - "185.199.109.153", - "185.199.111.153", - "185.199.108.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } + "owner": { + "username": "tr1xem", + "email": "admin@trix.is-a.dev" + }, + "records": { + "A": ["185.199.110.153", "185.199.109.153", "185.199.111.153", "185.199.108.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] + } } diff --git a/domains/keyruu.json b/domains/keyruu.json new file mode 100644 index 000000000..aa23da768 --- /dev/null +++ b/domains/keyruu.json @@ -0,0 +1,11 @@ +{ + "description": "Keyruu aka Lucas", + "repo": "https://github.com/keyruu/traversetown-htmx", + "owner": { + "username": "keyruu", + "email": "me@keyruu.de" + }, + "records": { + "URL": "https://keyruu.de" + } +} diff --git a/domains/keys.devmatei.json b/domains/keys.devmatei.json deleted file mode 100644 index 9426b4aa6..000000000 --- a/domains/keys.devmatei.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "DevMatei", - "email": "matei.thoma@gmail.com" - }, - "record": { - "A": [ - "176.100.37.70" - ] - } - -} diff --git a/domains/keyurnimavat.json b/domains/keyurnimavat.json index 8a65747a0..d63ac3307 100644 --- a/domains/keyurnimavat.json +++ b/domains/keyurnimavat.json @@ -4,7 +4,7 @@ "owner": { "username": "keyurnimavat" }, - "record": { + "records": { "CNAME": "keyurnimavat.github.io" } } diff --git a/domains/kha.json b/domains/kha.json index 6751814e3..68b6cffc8 100644 --- a/domains/kha.json +++ b/domains/kha.json @@ -3,7 +3,7 @@ "username": "bkit9x", "email": "bkit9x@gmail.com" }, - "record": { + "records": { "CNAME": "bkit9x.github.io" } } diff --git a/domains/khacviet.json b/domains/khacviet.json new file mode 100644 index 000000000..182090ec3 --- /dev/null +++ b/domains/khacviet.json @@ -0,0 +1,10 @@ +{ + "description": "Khac Viet Portfolio website", + "owner": { + "username": "Khac-Viet", + "email": "viet2ca11@gmail.com" + }, + "records": { + "A": ["103.97.126.29"] + } +} diff --git a/domains/khag.json b/domains/khag.json index d33eeef0d..450cff3d6 100644 --- a/domains/khag.json +++ b/domains/khag.json @@ -3,7 +3,7 @@ "username": "khagdev", "email": "nguyendaikhang2000@gmail.com" }, - "record": { + "records": { "A": ["103.97.126.26"] } } diff --git a/domains/khaidev.json b/domains/khaidev.json index f914519fd..1611f0d74 100644 --- a/domains/khaidev.json +++ b/domains/khaidev.json @@ -4,7 +4,7 @@ "email": "truongduykhai1012@gmail.com", "discord": "871329074046435338" }, - "record": { + "records": { "CNAME": "truongduykhai.github.io" } } diff --git a/domains/khaif.json b/domains/khaif.json new file mode 100644 index 000000000..b8427b68c --- /dev/null +++ b/domains/khaif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khxif", + "email": "code.khaif@gmail.com" + }, + "records": { + "CNAME": "portfolio-khxif.vercel.app" + } +} diff --git a/domains/khaled-bakhti.json b/domains/khaled-bakhti.json index 19bad100b..477ee46ff 100644 --- a/domains/khaled-bakhti.json +++ b/domains/khaled-bakhti.json @@ -1,10 +1,9 @@ { "owner": { "username": "OTK-98", - "discord": "613789376325091329", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QxPdpax0NnXuYc2y0Kd1afVg5WCm9q-4Pg4dfOhlJD_nEl57XXLzRTqSs19REvTOzrUU1BvxFEBF3Qe3yGaCx8y_vBcRZhh8Voqu637kk4rxatFV9G8wWtle6OatoqYjJ9bXeS-pzvPk4b0hqVwH3INnlzhwMERleRh0e3EbMjolSLEEREWAkNWr0PtEErFd1JL8OqyHxXqG2qNvXqYMtVu4TyVGbBvpiqe8lgToa0amu798f6rEDWKQbKArdbRfCgYYeMsgO4Y3GIjCSx08NJB7IljDhiucILegmOcv_xvQTWizW7KARlVzoxhQz89Yd_-kfOwYA8vmgeW2LOLDuQ.gIx5z6cUtBW0cF1-dI57LA._a_x8UO3Sry1F6tTwpHhdfmfkrfLnTurDfqcT740SwPA0G7DWGY6uli2t1_cV6JzoPry3rboDzwqaLM3fk3YIwhhLYSPpT01hBQO_LVeTmoMeGssyMSseU8ztu15Y_ht.4vtubaVaW9uVN217s62Aag" + "discord": "613789376325091329" }, - "record": { + "records": { "CNAME": "khaled-bakhti.vercel.app" } } diff --git a/domains/khaled.json b/domains/khaled.json index c78b268db..d631422f9 100644 --- a/domains/khaled.json +++ b/domains/khaled.json @@ -3,7 +3,7 @@ "username": "khaled-0", "email": "spkhalad@gmail.com" }, - "record": { + "records": { "CNAME": "khaled-0.github.io" } } diff --git a/domains/khanh.json b/domains/khanh.json index cd666ce18..bff2c3afd 100644 --- a/domains/khanh.json +++ b/domains/khanh.json @@ -1,11 +1,10 @@ { "description": "Khanh's personal developer website", - "repo": "https://github.com/canfam", "owner": { "username": "canfam", "email": "khanhpham072007@gmail.com" }, - "record": { + "records": { "CNAME": "canfam.github.io" } } diff --git a/domains/khanhngn.json b/domains/khanhngn.json new file mode 100644 index 000000000..bfb8c36ed --- /dev/null +++ b/domains/khanhngn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khanhngn-dev", + "email": "khanhngn.dev@gmail.com", + "discord": "jerry.ng" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/khao.json b/domains/khao.json new file mode 100644 index 000000000..2f1998385 --- /dev/null +++ b/domains/khao.json @@ -0,0 +1,11 @@ +{ + "description": "Khao's Portfolio Website", + "repo": "https://github.com/KhaoDoesDev/portfolio", + "owner": { + "username": "KhaoDoesDev", + "email": "khao@khaodoes.dev" + }, + "records": { + "URL": "https://www.khaodoes.dev" + } +} diff --git a/domains/khateeb.json b/domains/khateeb.json new file mode 100644 index 000000000..7d3bfdaaa --- /dev/null +++ b/domains/khateeb.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to Khateeb's portfolio - a showcase of full-stack development projects and skills. Explore my work in web development, software engineering, and creative solutions built with modern technologies.", + "repo": "https://github.com/khateeboveskey/khateeboveskey.github.io", + "owner": { + "username": "khateeboveskey", + "email": "khateeboveskey@gmail.com" + }, + "records": { + "CNAME": "khateeboveskey.github.io" + } +} diff --git a/domains/khc.json b/domains/khc.json index b8b4d0d1d..70fd874a9 100644 --- a/domains/khc.json +++ b/domains/khc.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "URL": "https://mohammedkhc.is-a.dev" } } diff --git a/domains/khcrv.json b/domains/khcrv.json index 0be7cfe07..11016497d 100644 --- a/domains/khcrv.json +++ b/domains/khcrv.json @@ -5,7 +5,7 @@ "username": "KhCrv", "email": "pedusty@hotmail.com" }, - "record": { + "records": { "CNAME": "khcrv.github.io" } } diff --git a/domains/khoacao.json b/domains/khoacao.json index e70254090..77568667b 100644 --- a/domains/khoacao.json +++ b/domains/khoacao.json @@ -3,7 +3,7 @@ "username": "khoacao2k4", "email": "cqnhatkhoa@gmail.com" }, - "record": { + "records": { "CNAME": "khoa-cao-website.vercel.app" } } diff --git a/domains/khoivudev.json b/domains/khoivudev.json new file mode 100644 index 000000000..b3234ecdb --- /dev/null +++ b/domains/khoivudev.json @@ -0,0 +1,10 @@ +{ + "description": "khoivudev's portfolio", + "owner": { + "username": "khoivudevz", + "email": "khoivudev@gmail.com" + }, + "records": { + "CNAME": "khoivudev.vercel.app" + } +} diff --git a/domains/khongtontien.json b/domains/khongtontien.json index f07879c91..35269014a 100644 --- a/domains/khongtontien.json +++ b/domains/khongtontien.json @@ -3,7 +3,7 @@ "username": "thanhnguyen2075", "email": "abc.bingboong@yahoo.com.vn" }, - "record": { + "records": { "A": ["103.75.187.18"] } } diff --git a/domains/khuathuykien.json b/domains/khuathuykien.json index f9acb10c2..d685fb1d5 100644 --- a/domains/khuathuykien.json +++ b/domains/khuathuykien.json @@ -5,7 +5,7 @@ "username": "kiensamson0000", "email": "kienkh99@gmail.com" }, - "record": { + "records": { "CNAME": "kiensamson0000.github.io" } } diff --git a/domains/khuong.json b/domains/khuong.json new file mode 100644 index 000000000..e41f97f39 --- /dev/null +++ b/domains/khuong.json @@ -0,0 +1,20 @@ +{ + "description": "khuong.is-a.dev : This is my personal notebook", + "owner": { + "username": "lamngockhuong", + "email": "me@ngockhuong.com" + }, + "records": { + "URL": "https://dev.ngockhuong.com" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/lamngockhuong", + "/x": "https://x.com/lamngockhuong", + "/fb": "https://facebook.com/lamngockhuong", + "/linkedin": "https://linkedin.com/in/lamngockhuong", + "/viblo": "https://viblo.asia/u/lamngockhuong" + }, + "redirect_paths": true + } +} diff --git a/domains/khuongln.json b/domains/khuongln.json new file mode 100644 index 000000000..d3365db53 --- /dev/null +++ b/domains/khuongln.json @@ -0,0 +1,20 @@ +{ + "description": "khuongln.is-a.dev : This is my personal notebook", + "owner": { + "username": "lamngockhuong", + "email": "me@ngockhuong.com" + }, + "records": { + "URL": "https://dev.ngockhuong.com" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/lamngockhuong", + "/x": "https://x.com/lamngockhuong", + "/fb": "https://facebook.com/lamngockhuong", + "/linkedin": "https://linkedin.com/in/lamngockhuong", + "/viblo": "https://viblo.asia/u/lamngockhuong" + }, + "redirect_paths": true + } +} diff --git a/domains/khushpatil.json b/domains/khushpatil.json index 757884dd7..4eb512a2f 100644 --- a/domains/khushpatil.json +++ b/domains/khushpatil.json @@ -1,11 +1,10 @@ { "description": "my personal homepage", - "repo": "https://github.com/AssassinK786", "owner": { "username": "AssassinK786", "email": "khushpatil01@gmail.com" }, - "record": { + "records": { "CNAME": "assassink786.github.io" } } diff --git a/domains/khushraj.json b/domains/khushraj.json index fd86f5e90..085d89230 100644 --- a/domains/khushraj.json +++ b/domains/khushraj.json @@ -5,7 +5,7 @@ "username": "KhushrajRathod", "email": "me@khushrajrathod.com" }, - "record": { + "records": { "URL": "https://www.khushrajrathod.com" } } diff --git a/domains/khysnik.json b/domains/khysnik.json index 43ca4b4b4..f843505a9 100644 --- a/domains/khysnik.json +++ b/domains/khysnik.json @@ -3,7 +3,7 @@ "username": "khysnik", "email": "pangea7707@hotmail.com" }, - "record": { + "records": { "CNAME": "khysnik.pages.dev" } } diff --git a/domains/kiara.json b/domains/kiara.json index 1d3eb6904..054cf9cc9 100644 --- a/domains/kiara.json +++ b/domains/kiara.json @@ -5,7 +5,7 @@ "username": "ameliakiara", "email": "contact@kiara.my.id" }, - "record": { + "records": { "CNAME": "lavalink-music-bot-production.up.railway.app" } } diff --git a/domains/kicrops.json b/domains/kicrops.json index 7662c5a13..de89b838a 100644 --- a/domains/kicrops.json +++ b/domains/kicrops.json @@ -3,7 +3,7 @@ "username": "Kicrops", "email": "spiccininizeida@gmail.com" }, - "record": { + "records": { "CNAME": "kicrops.github.io" } } diff --git a/domains/kietdo.json b/domains/kietdo.json new file mode 100644 index 000000000..2c48cb05a --- /dev/null +++ b/domains/kietdo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kietdo-dev", + "email": "lionvs12345@gmail.com" + }, + "records": { + "CNAME": "kietdo-portolio.vercel.app" + } +} diff --git a/domains/kikemendez.json b/domains/kikemendez.json new file mode 100644 index 000000000..2deb4ba0f --- /dev/null +++ b/domains/kikemendez.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kikeme98", + "email": "l.e.mendez1998@gmail.com" + }, + "description": "My personal site portfolio", + "repo": "https://github.com/Kikeme98/react-frontend-dev-portfolio.git", + "records": { + "CNAME": "kikeme98.github.io" + } +} diff --git a/domains/kikig4mer.json b/domains/kikig4mer.json index b8206a97c..37dd2bd05 100644 --- a/domains/kikig4mer.json +++ b/domains/kikig4mer.json @@ -3,7 +3,7 @@ "username": "KikiG4mer", "email": "kikig4mer@gmail.com" }, - "record": { + "records": { "CNAME": "kikig4mer.pages.dev" } } diff --git a/domains/kilamieaz.json b/domains/kilamieaz.json new file mode 100644 index 000000000..dea7993d1 --- /dev/null +++ b/domains/kilamieaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kilamieaz", + "email": "im.sultaan05@gmail.com" + }, + "records": { + "CNAME": "kilamieaz.vercel.app" + } +} diff --git a/domains/kilic.json b/domains/kilic.json index c7ef9a8b8..b707c09d9 100644 --- a/domains/kilic.json +++ b/domains/kilic.json @@ -5,7 +5,7 @@ }, "description": "personal site", "repo": "https://github.com/kiliczsh/kiliczsh.github.io", - "record": { + "records": { "CNAME": "kiliczsh.github.io" } } diff --git a/domains/killerf.json b/domains/killerf.json index ce44e629e..6d2157449 100644 --- a/domains/killerf.json +++ b/domains/killerf.json @@ -5,7 +5,7 @@ "username": "MohamexDR", "email": "loliehentaixd@gmail.com" }, - "record": { + "records": { "URL": "https://guns.lol/killerf" } } diff --git a/domains/killua.json b/domains/killua.json index 9480f2f50..ac6398aa1 100644 --- a/domains/killua.json +++ b/domains/killua.json @@ -5,7 +5,7 @@ "username": "Killua7362", "email": "bhat7362@gmail.com" }, - "record": { + "records": { "CNAME": "killua7362.github.io" } } diff --git a/domains/killuazoldyck.json b/domains/killuazoldyck.json index fefcb1948..3b8565310 100644 --- a/domains/killuazoldyck.json +++ b/domains/killuazoldyck.json @@ -3,7 +3,7 @@ "username": "killuazoldyckreal", "email": "bk1030798@gmail.com" }, - "record": { + "records": { "CNAME": "killuazoldyckreal.github.io" } } diff --git a/domains/kimduy.json b/domains/kimduy.json new file mode 100644 index 000000000..5091a94ed --- /dev/null +++ b/domains/kimduy.json @@ -0,0 +1,20 @@ +{ + "description": "kimduy.is-a.dev : This is my personal notebook", + "owner": { + "username": "nguyenkimduy180697", + "email": "nguyenkimduy180697@gmail.com" + }, + "records": { + "URL": "https://nguyenkimduy.com/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/nguyenkimduy180697", + "/fb": "https://facebook.com/nguyenkimduy180697", + "/instagram": "https://instagram.com/nguyenkimduy180697/", + "/linkedin": "https://linkedin.com/in/nguyenkimduy180697", + "/viblo": "https://viblo.asia/u/nguyenkimduy180697" + }, + "redirect_paths": true + } +} diff --git a/domains/kind-nodes.arnxv.json b/domains/kind-nodes.arnxv.json index 2e23bf9fd..2514e264d 100644 --- a/domains/kind-nodes.arnxv.json +++ b/domains/kind-nodes.arnxv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } } diff --git a/domains/kinfhertix.json b/domains/kinfhertix.json new file mode 100644 index 000000000..54a0bf67e --- /dev/null +++ b/domains/kinfhertix.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Kinfhertix", + "email": "kinfhertix@gmail.com", + "discord": "i_mert" + }, + "records": { + "CNAME": "kinfhertix.vercel.app" + } +} diff --git a/domains/king.json b/domains/king.json index 736473518..e44e037f7 100644 --- a/domains/king.json +++ b/domains/king.json @@ -3,7 +3,7 @@ "username": "treehousekingcomic", "email": "TreeHouseKingComic@gmail.com" }, - "record": { + "records": { "CNAME": "thkc.space" } } diff --git a/domains/kingluc.json b/domains/kingluc.json index 6a548c428..260bc85af 100644 --- a/domains/kingluc.json +++ b/domains/kingluc.json @@ -3,7 +3,7 @@ "username": "KingLuc12", "email": "lucian.g.king+github@gmail.com" }, - "record": { + "records": { "URL": "https://kingluc.my.id" } } diff --git a/domains/kingofnetflix.json b/domains/kingofnetflix.json index 8e726fc9e..76e7d52e5 100644 --- a/domains/kingofnetflix.json +++ b/domains/kingofnetflix.json @@ -4,7 +4,7 @@ "email": "kingofnetflix@waifu.club" }, "description": "personal development work (websites, reverse proxying, etc)", - "record": { + "records": { "A": ["161.35.97.251"] } } diff --git a/domains/kiran.json b/domains/kiran.json index 29f6ff89b..512890ad8 100644 --- a/domains/kiran.json +++ b/domains/kiran.json @@ -5,7 +5,7 @@ "username": "kiranhart", "email": "kiran.hart@live.com" }, - "record": { + "records": { "CNAME": "kiranhart.github.io" } } diff --git a/domains/kiransala.json b/domains/kiransala.json new file mode 100644 index 000000000..1410bd9e4 --- /dev/null +++ b/domains/kiransala.json @@ -0,0 +1,10 @@ +{ + "description": "My personal portfolio site", + "owner": { + "username": "Kiransala", + "email": "kiransala.dev@gmail.com" + }, + "records": { + "CNAME": "kiransala.netlify.app" + } +} diff --git a/domains/kirbeh.json b/domains/kirbeh.json index cbb571bb6..6f628568c 100644 --- a/domains/kirbeh.json +++ b/domains/kirbeh.json @@ -3,7 +3,7 @@ "username": "MrTakedi", "email": "tristankirbehbuller@gmail.com" }, - "record": { + "records": { "URL": "https://social.vivaldi.net/@kirbeh" } } diff --git a/domains/kirill-adamuk.json b/domains/kirill-adamuk.json index 3be528e1f..85c19cc91 100644 --- a/domains/kirill-adamuk.json +++ b/domains/kirill-adamuk.json @@ -3,7 +3,7 @@ "username": "superhorsy", "email": "adamuk.kirill@gmail.com" }, - "record": { + "records": { "CNAME": "superhorsy.github.io" } } diff --git a/domains/kishan-bagiya.json b/domains/kishan-bagiya.json index d56ff0cc5..06e941250 100644 --- a/domains/kishan-bagiya.json +++ b/domains/kishan-bagiya.json @@ -4,7 +4,7 @@ "owner": { "username": "kishan-bagiya" }, - "record": { + "records": { "CNAME": "kishan-bagiya.github.io" } } diff --git a/domains/kishore.json b/domains/kishore.json new file mode 100644 index 000000000..8140b44b6 --- /dev/null +++ b/domains/kishore.json @@ -0,0 +1,11 @@ +{ + "description": "personal portfolio", + "repo": "https://github.com/Kishore0122/portfolio", + "owner": { + "username": "Kishore0122", + "email": "kishorepanuganti278@gmail.com" + }, + "records": { + "CNAME": "kishore0122.github.io" + } +} diff --git a/domains/kisi.json b/domains/kisi.json index 058367869..a11ea90d4 100644 --- a/domains/kisi.json +++ b/domains/kisi.json @@ -3,7 +3,7 @@ "username": "kisi-dev", "email": "bagasdwianggoro535@gmail.com" }, - "record": { + "records": { "CNAME": "kisi-dev.github.io" } } diff --git a/domains/kislay.json b/domains/kislay.json index 5efad9bde..4915e1c47 100644 --- a/domains/kislay.json +++ b/domains/kislay.json @@ -1,10 +1,9 @@ { "owner": { "username": "Crevils", - "discord": "716851813328093224", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.HIhUkETdeQJWFw4CAk5JOh2F2Y3gMOiQDrc0Lzu2QttwCbN9wcWJ9BLV4lH-O3T1MgC2snwX0K_-Jw35xI2MQhlW71e7fi_IOms4nTVvghkSHXDse5bQs_mPqLOMTDAXMdctjJX-AS2Xk9cWt53GY-MbIJHkkXz4I1vmjaj2-JhoJ1zKIxWnwqt4Q7ogCeNMx0fZkzZxBUlSAL7fnNTIn4CcDjAPyqN0iHwRhzvK2OFvIDVfFhywiSaaz2z_duIt-yJCavWuNyo1sKyvrmNTqlVdlc-RzdC3PQCtAxACi0ze011WMJittazwJVfXdfOZsOCj6EHgl4G1167YdKmnRQ.JKlkF98YVzYifIoXoUGH7Q.2bBLVW9QmgwifdRF32sx_5vgRnN9H6y59biU-zJu6Ay7Hb6wrwwVqZRHhD5cFFGajSIwtKk7dCxJtXMd6VdPUPXCRY-s9DZ_-OoxXiDefnrXRM_o2AIGgqnuPBOp3zad.t2l_a3UIBjnoY-tEElUuiQ" + "discord": "716851813328093224" }, - "record": { + "records": { "CNAME": "kislay-dev.web.app" } } diff --git a/domains/kiss.json b/domains/kiss.json index 3b23877db..efd2c43d0 100644 --- a/domains/kiss.json +++ b/domains/kiss.json @@ -3,7 +3,7 @@ "username": "filipekiss", "email": "filipe@kiss.ink" }, - "record": { + "records": { "CNAME": "filipe.kiss.ink" } } diff --git a/domains/kitb2romjbz3.dhlcgd.json b/domains/kitb2romjbz3.dhlcgd.json index 3e040c29f..fbe53abb3 100644 --- a/domains/kitb2romjbz3.dhlcgd.json +++ b/domains/kitb2romjbz3.dhlcgd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dhlcgd", - "email": "dhlcgdofficial@gmail.com" - }, - "record": { - "CNAME": "gv-zz3nklni3izils.dv.googlehosted.com" - } + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "records": { + "CNAME": "gv-zz3nklni3izils.dv.googlehosted.com" + } } diff --git a/domains/kito.json b/domains/kito.json index 06f44490d..f381c3501 100644 --- a/domains/kito.json +++ b/domains/kito.json @@ -1,10 +1,9 @@ { "owner": { "username": "KitoMCVN", - "discord": "915876843884777472", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.bWNBxXSrLT81uzEvuFDyDzQ6MUq8Aq3mkVGE9xrhoZ3emFszHFj1sr4hGsNg-X2IJWAYJHNAFuN6ihvsdWNW1fuJIyUpYUfxnwG272uIjq1441itpD61r9GEjhVI9-f9eiA0DCM3mZxf7JABbSZEAAQSjkQNBZy7btbWqAC_fcvaHlh8tTkmn8tiCF6PmYUaU_-OVcVfpLqfE1NG4jWhqDdh6PHy-YJdNSRMggPKW1tgOkAzzPkFDFJbZLGxbRRhPFzsVi64Q4arfkQgTcsJpEGD5RwQvbb3j_lHGtErQvCndbnhcKAOltYpc-DL3Iv8A0iTeUsrpQ8lu-FKPOuVhg.eEabdg4lkJkWzZ9LhlnMAw.BxE4h5-4aIfPNc5C1Fc13n243OxCAOj0p6aWN6sClxRz9osKsmy_ASiLJ-S0thDvWu4-IDNdEvpt2pmjkQe2a4nCDDIZ8Lh9RHzVOZi_hQs.OTiy1ZwmVAWUfoEqGkqCEg" + "discord": "915876843884777472" }, - "record": { + "records": { "CNAME": "kitomc.site" } } diff --git a/domains/kitohemat.iamkevinhuang.json b/domains/kitohemat.iamkevinhuang.json new file mode 100644 index 000000000..8309b8179 --- /dev/null +++ b/domains/kitohemat.iamkevinhuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamkevinhuang", + "email": "kevinjaydenwivano@duck.com" + }, + "records": { + "A": ["194.233.91.185"] + } +} diff --git a/domains/kitsune.json b/domains/kitsune.json index 327618679..fa174a4c4 100644 --- a/domains/kitsune.json +++ b/domains/kitsune.json @@ -3,7 +3,7 @@ "username": "KitsuneDev", "email": "kitsune@akitsune.dev" }, - "record": { + "records": { "URL": "https://akitsune.dev" } } diff --git a/domains/kitten.json b/domains/kitten.json index 2b27f72e2..a5c96767a 100644 --- a/domains/kitten.json +++ b/domains/kitten.json @@ -1,11 +1,10 @@ { "description": "using for personal projects", - "repo": "https://github.com/KittensAreDaBest", "owner": { "username": "KittensAreDaBest", "email": "is-a-dev@mythicalkitten.com" }, - "record": { + "records": { "CNAME": "is-a-dev.mythicalkitten.com" } } diff --git a/domains/kittyneverdies.json b/domains/kittyneverdies.json index d9339821e..0a92b0955 100644 --- a/domains/kittyneverdies.json +++ b/domains/kittyneverdies.json @@ -3,7 +3,7 @@ "username": "kittyneverdies", "email": "Catofeyevich@proton.me" }, - "record": { + "records": { "CNAME": "kittyneverdies.github.io" } } diff --git a/domains/kiwi.json b/domains/kiwi.json index af7ef00c0..abaaa6614 100644 --- a/domains/kiwi.json +++ b/domains/kiwi.json @@ -3,7 +3,7 @@ "username": "imdakiki", "email": "skullkid73@outlook.com" }, - "record": { + "records": { "CNAME": "kikisdevelopment.github.io" } } diff --git a/domains/kiwozen.json b/domains/kiwozen.json index 24e88cab9..205fba083 100644 --- a/domains/kiwozen.json +++ b/domains/kiwozen.json @@ -4,7 +4,7 @@ "username": "kiwozen", "email": "goat@kiwozen.de" }, - "record": { + "records": { "URL": "https://kiwozen.de" } } diff --git a/domains/kiyora.json b/domains/kiyora.json index dfed83a7a..1f1722b64 100644 --- a/domains/kiyora.json +++ b/domains/kiyora.json @@ -1,11 +1,10 @@ { "description": "using for personal projects", - "repo": "https://github.com/ItsMyEyes", "owner": { "username": "ItsMyEyes", "email": "dev@sipaling.top" }, - "record": { + "records": { "CNAME": "itsmyeyes.github.io" } } diff --git a/domains/kjimenez.json b/domains/kjimenez.json new file mode 100644 index 000000000..3819d25f9 --- /dev/null +++ b/domains/kjimenez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KevinJG994", + "email": "KevinJG994@gmail.com" + }, + "records": { + "CNAME": "kjimenez.netlify.app" + } +} diff --git a/domains/kleb.json b/domains/kleb.json index f8d1961e3..db60f2e34 100644 --- a/domains/kleb.json +++ b/domains/kleb.json @@ -3,7 +3,7 @@ "username": "KrazyKleb", "email": "krazykleb@outlook.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/kleein.json b/domains/kleein.json new file mode 100644 index 000000000..74c9116a4 --- /dev/null +++ b/domains/kleein.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kleeiny", + "discord": "763581985410121769" + }, + "records": { + "A": ["15.235.204.212"] + } +} diff --git a/domains/klent.json b/domains/klent.json index 4f18da243..d36c06f3e 100644 --- a/domains/klent.json +++ b/domains/klent.json @@ -4,7 +4,7 @@ "email": "kleeinlmao@gmail.com", "discord": "763581985410121769" }, - "record": { + "records": { "CNAME": "ghs.google.com" } } diff --git a/domains/klez.json b/domains/klez.json new file mode 100644 index 000000000..10d47b896 --- /dev/null +++ b/domains/klez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "klez2003", + "email": "klez@cock.li" + }, + "records": { + "CNAME": "ammosearch.lol" + } +} diff --git a/domains/klone.json b/domains/klone.json index fba8f2709..b833946c5 100644 --- a/domains/klone.json +++ b/domains/klone.json @@ -3,7 +3,7 @@ "username": "Vai3soh", "email": "work.rwx.seven@gmail.com" }, - "record": { + "records": { "A": ["45.153.69.189"] } } diff --git a/domains/klouqzz.json b/domains/klouqzz.json index c4df0f69e..0ff586ccf 100644 --- a/domains/klouqzz.json +++ b/domains/klouqzz.json @@ -5,7 +5,7 @@ "username": "klouqzz", "email": "klouqz@gmail.com" }, - "record": { + "records": { "CNAME": "klouqzz.github.io" } } diff --git a/domains/kml.json b/domains/kml.json index 593cccaa5..68a9354ad 100644 --- a/domains/kml.json +++ b/domains/kml.json @@ -5,7 +5,7 @@ "username": "kmlupreti", "email": "kmlupreti@protonmail.com" }, - "record": { + "records": { "CNAME": "kmlupreti.github.io" } } diff --git a/domains/kmrvarun.json b/domains/kmrvarun.json index c40c6c032..c881180df 100644 --- a/domains/kmrvarun.json +++ b/domains/kmrvarun.json @@ -3,7 +3,7 @@ "username": "kmr-varun", "email": "kmr11varun@gmail.com" }, - "record": { + "records": { "CNAME": "kmr-varun.github.io" } } diff --git a/domains/kn0tzer.json b/domains/kn0tzer.json index fbb9808a8..25523d0e7 100644 --- a/domains/kn0tzer.json +++ b/domains/kn0tzer.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Kn0tzer", - "email": "g4marchi@gmail.com" - }, - "record": { - "CNAME": "kn0tzer.github.io" - } -} + "owner": { + "username": "Kn0tzer", + "email": "g4marchi@gmail.com" + }, + "records": { + "CNAME": "kn0tzer.github.io" + } +} diff --git a/domains/ko.json b/domains/ko.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/ko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/kociak.json b/domains/kociak.json index eecd6f689..36a7fe38a 100644 --- a/domains/kociak.json +++ b/domains/kociak.json @@ -3,7 +3,7 @@ "username": "piotrkociakx", "email": "piotrekstypczynski@gmail.com" }, - "record": { + "records": { "A": ["137.74.3.247"] } } diff --git a/domains/koding.json b/domains/koding.json index 24283837d..92a6490a9 100644 --- a/domains/koding.json +++ b/domains/koding.json @@ -1,11 +1,10 @@ { "description": "Full stack developer proficient in Kotlin", - "repo": "https://github.com/KodingDev", "owner": { "username": "KodingDev", "email": "kodingdev@pm.me" }, - "record": { + "records": { "URL": "https://koding.dev" } } diff --git a/domains/kokoapi.json b/domains/kokoapi.json index f161e0317..41bc178ab 100644 --- a/domains/kokoapi.json +++ b/domains/kokoapi.json @@ -1,10 +1,9 @@ { "owner": { "username": "kokofixcomputers", - "discord": "1096839213313446019", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OVsezriezhfXmczekw7NKD6j1jiTDnkJZaV8hmKUT6jVau-fAM4xsfKuSd55u-ayIYDJTJmqUhOdDcRNGn9qJMQU1swUYKM2IjqV5F39j62OBWCEuvGahVIlvk3qPBrL6BsTnE6U5V6AcL7fk07JR7VQncG_gLo_CsF2D3NkMlvjeJweQKk-PjP5f64lFJxpGo4X6lfRgvYI9IAfyDFCBuXVz1bziA_ZLHMLSGSm6OxJSBBPV42TqlHNYGzRYaEq5gBDnANsuNDVN27pHgDEQjhCxP07U3V5dAL7JcESSlR7QQSng47lwmetAtfMlW2HSeOkBLLpkI82XNDCjwnsXA.Qpc8I5_rOVUFEGrJgh4mnw.aZ_gT11nH1hgU_JXz5a01NBB6CDgcy4i9cgBeqo2j50HuQ00uDzzBDS6M941D0WsCOLnzaQ1XvjXLcFiHKcBuINVPaVNDu0X0Nm2ruoPpfLyS6mRa_efDkm9rwXR3bghgOKkE1wcXTR6LyOkDEhyYg.jmEV6MAXMmLltboCG3yE6w" + "discord": "1096839213313446019" }, - "record": { + "records": { "A": ["37.114.46.39"] } } diff --git a/domains/kokoauth.json b/domains/kokoauth.json index 24e949628..e6f58324a 100644 --- a/domains/kokoauth.json +++ b/domains/kokoauth.json @@ -1,10 +1,9 @@ { "owner": { "username": "kokofixcomputers", - "discord": "1096839213313446019", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.siGn-NNc3J0a5tP-qPXfUiXXiLIVsc0rU0Xd0LJ2zn1pvgeLu42wC5CVbz2mPW9PvsxmeOF2FdX4W1ki8dkzxI5tZO3CljQWLsKq26TpVGTApDCXDUEFk80WpmvQK_uBajVrL-0Jaq_teH1coNYFPbH5dp9WmOV3ckgCkqwqP7alY4klkZ9A6GsdkcJ51gbQ1qHp1qZIX7jwBNcOXE0WR5KTNXKeeOGSvHbAGEWhLc96y6TzokyZsC71pkTF0UjrLfB4uylcD0UfEONiwDKc8jjXR3Jz3GnfzgaSqPjRNYqMjXQ5XxPXwjv8t4iCP3cBRNEMM70pFXneFWt3defrMQ.6dpv7unaFwIz_IkI7VerwA.P9NXfPTD2LDNEdOFa-roPC1NDB1WvFiX8Giai3cjpNFYcYHJyH7_7lOV6o4zUoN83Ttt1VaukQKLsMk2kaVedZUPPryAhzVLMJiG7-GiJlW22PgcTkjB67jRjqEdoSo_zS70y1C7KeiLv7ZyY_koGg.2NwhAegHA2i-6E9hhzlXfQ" + "discord": "1096839213313446019" }, - "record": { + "records": { "A": ["45.90.12.32"] } } diff --git a/domains/kokofixcomputers.json b/domains/kokofixcomputers.json index cebb43a29..dbacd5afc 100644 --- a/domains/kokofixcomputers.json +++ b/domains/kokofixcomputers.json @@ -1,10 +1,9 @@ { "owner": { "username": "kokofixcomputers", - "email": "113046561+kokofixcomputers@users.noreply.github.com", "discord": "1096839213313446019" }, - "record": { + "records": { "MX": ["mail0.serv00.com"] } } diff --git a/domains/komaru.json b/domains/komaru.json new file mode 100644 index 000000000..f13f7d85a --- /dev/null +++ b/domains/komaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "komaru-meow", + "email": "winbo-yml-exe@outlook.com" + }, + "records": { + "CNAME": "komaru-meow.github.io" + } +} diff --git a/domains/kona.json b/domains/kona.json new file mode 100644 index 000000000..49435ae6c --- /dev/null +++ b/domains/kona.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "konaa0", + "discord": "1149438819834269856", + "bluesky": "vornexx.has.fish" + }, + "records": { + "CNAME": "vornexx.pages.dev" + } +} diff --git a/domains/konnn04.json b/domains/konnn04.json new file mode 100644 index 000000000..8b5c75256 --- /dev/null +++ b/domains/konnn04.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website", + "repo": "https://github.com/konnn04/konnn04.github.io", + "owner": { + "username": "konnn04", + "email": "trieukon1011@gmail.com" + }, + "records": { + "CNAME": "konnn04.github.io" + } +} diff --git a/domains/konstantin-ivanov.json b/domains/konstantin-ivanov.json index 1c6418840..5781f531d 100644 --- a/domains/konstantin-ivanov.json +++ b/domains/konstantin-ivanov.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "KonstanTinoVino", - "email": "koiv.work@gmail.com" - }, - "record": { - "CNAME": "konstantinovino.github.io" - } -} + "owner": { + "username": "KonstanTinoVino", + "email": "koiv.work@gmail.com" + }, + "records": { + "CNAME": "konstantinovino.github.io" + } +} diff --git a/domains/korabase.json b/domains/korabase.json index 64e3a7fdb..0c03e9eba 100644 --- a/domains/korabase.json +++ b/domains/korabase.json @@ -3,7 +3,7 @@ "username": "WhyuMC", "email": "r12350042@gmail.com" }, - "record": { + "records": { "CNAME": "site.namedhosting.com" } } diff --git a/domains/korauo.json b/domains/korauo.json index 578fc77b5..3bf0c8244 100644 --- a/domains/korauo.json +++ b/domains/korauo.json @@ -4,7 +4,7 @@ "twitter": "korauo", "discord": "korauo#1423" }, - "record": { + "records": { "CNAME": "korauo.github.io" } } diff --git a/domains/korigamik.json b/domains/korigamik.json index 3c4652da4..6403edff0 100644 --- a/domains/korigamik.json +++ b/domains/korigamik.json @@ -1,12 +1,11 @@ { "description": "goto website of KorigamiK", - "repo": "https://github.com/KorigamiK", "owner": { "username": "KorigamiK", "email": "korigamik@gmail.com", "twitter": "https://twitter.com/codesonpaper" }, - "record": { + "records": { "CNAME": "korigamik-redirect.pages.dev" } } diff --git a/domains/koriumm.json b/domains/koriumm.json index 9a11101bf..45e2dd2d0 100644 --- a/domains/koriumm.json +++ b/domains/koriumm.json @@ -4,7 +4,7 @@ "email": "KoriummLive@gmail.com", "discord": "hong.kong" }, - "record": { + "records": { "CNAME": "koriumm.github.io" } } diff --git a/domains/korrykatti.json b/domains/korrykatti.json index 8fd67b270..f8ddd7392 100644 --- a/domains/korrykatti.json +++ b/domains/korrykatti.json @@ -6,7 +6,7 @@ "email": "8nctvx7gi@mozmail.com", "twitter": "korrykatti" }, - "record": { + "records": { "CNAME": "korrykatti.github.io" } } diff --git a/domains/kory.json b/domains/kory.json index 183e86693..ad5cc87dc 100644 --- a/domains/kory.json +++ b/domains/kory.json @@ -1,11 +1,10 @@ { "description": "Kory Porter's personal website", - "repo": "https://github.com/korziee", "owner": { "username": "korziee", "twitter": "korziee" }, - "record": { + "records": { "URL": "https://www.koryporter.com" } } diff --git a/domains/koshikkumar17.json b/domains/koshikkumar17.json deleted file mode 100644 index ae0639486..000000000 --- a/domains/koshikkumar17.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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 index 92417b361..2faecf016 100644 --- a/domains/koslz.json +++ b/domains/koslz.json @@ -5,7 +5,7 @@ "username": "iakzs", "email": "iakzs@protonmail.com" }, - "record": { + "records": { "CNAME": "koslz-studios.github.io" } } diff --git a/domains/kota.json b/domains/kota.json index b499f848b..6eb764bfc 100644 --- a/domains/kota.json +++ b/domains/kota.json @@ -3,7 +3,7 @@ "username": "sharkota", "email": "nappythebappy@gmail.com" }, - "record": { + "records": { "CNAME": "sharkota.github.io" } } diff --git a/domains/kotikov.json b/domains/kotikov.json index c9f2d4b43..27c0745d6 100644 --- a/domains/kotikov.json +++ b/domains/kotikov.json @@ -5,7 +5,7 @@ "username": "kotru21", "email": "kotikovv@proton.me" }, - "record": { + "records": { "URL": "https://kotikov.pages.dev", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/koton-bads.json b/domains/koton-bads.json index 77fa40270..4eb1ec42d 100644 --- a/domains/koton-bads.json +++ b/domains/koton-bads.json @@ -4,7 +4,7 @@ "username": "KotonBads", "email": "kotonbads@duck.com" }, - "record": { + "records": { "CNAME": "kotonbads.github.io" } } diff --git a/domains/kr.json b/domains/kr.json index fbe679633..d932fb8b2 100644 --- a/domains/kr.json +++ b/domains/kr.json @@ -3,7 +3,7 @@ "username": "me-nkr", "email": "thenaveenkr7@gmail.com" }, - "record": { + "records": { "URL": "https://dev.menkr.in" } } diff --git a/domains/kramual.json b/domains/kramual.json new file mode 100644 index 000000000..354d96335 --- /dev/null +++ b/domains/kramual.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kramual", + "email": "khtyiscooler@gmail.com" + }, + "records": { + "CNAME": "kramual.github.io" + } +} diff --git a/domains/kreativethinker.json b/domains/kreativethinker.json index 650a1eaf7..91428b09f 100644 --- a/domains/kreativethinker.json +++ b/domains/kreativethinker.json @@ -3,7 +3,7 @@ "username": "KreativeThinker", "email": "sagely2005eagle@gmail.com" }, - "record": { + "records": { "CNAME": "kreativethinker.github.io" } } diff --git a/domains/krebinkkj.json b/domains/krebinkkj.json index 827dd575f..9798a6c0a 100644 --- a/domains/krebinkkj.json +++ b/domains/krebinkkj.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "krebinkkj", - "email": "krebinkkj@gmail.com", - "discord": "1041878326169587732" - }, - "record": { - "CNAME": "krebinkkj.vercel.app" - } + "owner": { + "username": "krebinkkj", + "email": "krebinkkj@gmail.com", + "discord": "1041878326169587732" + }, + "records": { + "CNAME": "krebinkkj.vercel.app" + } } diff --git a/domains/kriloud.json b/domains/kriloud.json index 213818273..9247f168b 100644 --- a/domains/kriloud.json +++ b/domains/kriloud.json @@ -4,7 +4,7 @@ "email": "ilyalvov2007@gmail.com", "discord": "354246208828735489" }, - "record": { + "records": { "A": ["142.93.34.245"] } } diff --git a/domains/krinzal.json b/domains/krinzal.json index aad9b877e..58b8e895e 100644 --- a/domains/krinzal.json +++ b/domains/krinzal.json @@ -3,7 +3,7 @@ "username": "krinzal", "email": "krinzal54@gmail.com" }, - "record": { + "records": { "URL": "https://krinzal.vercel.app" } } diff --git a/domains/krishanu.json b/domains/krishanu.json index 1804a3e9e..17da586df 100644 --- a/domains/krishanu.json +++ b/domains/krishanu.json @@ -1,10 +1,9 @@ { "owner": { "username": "krishanunaskar", - "discord": "977802250716078210", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qGTBpEFfITIu63a63XbYmqGoJDIOlEN4ISz3uij_lTD_OvLRriPZqb86NtySYA_f0g1DyQ77BzrWfcKYaB_Z7qoZkZA6mdaLR6631PlsG-Sgmaxe8TuBO2nCGtR8aqKHZy1v7_zTxp2il4D9tnOBkVQZD292aZvzHRp1rQuXWD0938IP7sHJ7iWc8ZWCslMZ1JZr2ovn6dlrJRSZwKDz9EXxhml_Vh1uMCSX4j6SVlY4Igar7uynfnQXFdfTXtNL6PmFLZzbmrT-2v1IWX37sIxdImOlu2luXFJqWyUyU3l2EdxEcrsGVxjYkVi6BYwEwuMvk1bzBdSWUSuDtbsTXg.wvk0XAFUlCXQaRY3zBwCJw.MpTbqLhGorHkqyksytW5i_3xlG4siQOw70f1hCsOuwYArFbD0T0R1Cgw_Ms-ym8yf4ksFXR6HlmS5tf3ZfnRuUu60LTBKbDC0wKY8dWsUig.g_ceL7m8Sdnyp4PCmweWgQ" + "discord": "977802250716078210" }, - "record": { + "records": { "CNAME": "krishanu.odoo.com" } } diff --git a/domains/krishanuop.json b/domains/krishanuop.json index a3cc7a39c..17da586df 100644 --- a/domains/krishanuop.json +++ b/domains/krishanuop.json @@ -1,10 +1,9 @@ { "owner": { "username": "krishanunaskar", - "discord": "977802250716078210", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OszIokiYPY7t3Ds6Ht-imaGPObxAklMvCUMae8XWaQ7viZjgRMMtjX9YfSXws6xbHJFckk1Y40MhMYPCHVi0WUHywQeqZsW-6aSTatDKKSn-2Wd2a3VxtZQabmGAtsNDdp9MFZnOTgs-XAKABpTDdsg4l0akeb-X1XkflwVdS018GsnkIzCxhsLG_SssCnyx3de7ZvGvGHmUzPxMeU6s4SgBvV-fZ1V7dFgyutDZzT01uF29-oIm8Xtaq-JVfJAVgnUpPZNapJFD9c_RItCQ80ukB3-r3D81bj-rTpydIipcRZdnz9WxhFgijxjCyoegO-LsEF5bx0-Jhtq0Y92Cvg.e513GaD0mKvES-jC1IjD2w.Rs3pmM_TESrJJIneD2cMrpon252r1EHu43bKC0628WlYzvt9QKMpR28oLfMcEtNoh2ND90ua77XzKXMJ_oClI_MKCZ0-_L-mLV4O5y-qhAg.oCo-xWtH8UfH_DmSlBghqg" + "discord": "977802250716078210" }, - "record": { + "records": { "CNAME": "krishanu.odoo.com" } } diff --git a/domains/krishna.json b/domains/krishna.json index 3a8875946..47feec25c 100644 --- a/domains/krishna.json +++ b/domains/krishna.json @@ -4,7 +4,7 @@ "email": "Krishnabohra2013@gmail.com", "discord": "328135638358687746" }, - "record": { + "records": { "CNAME": "krishnabohra.github.io" } } diff --git a/domains/krishnan.json b/domains/krishnan.json index 2837b4fa5..334ff99b0 100644 --- a/domains/krishnan.json +++ b/domains/krishnan.json @@ -3,7 +3,7 @@ "username": "krishnans2006", "email": "krishnans2006@gmail.com" }, - "record": { + "records": { "A": ["216.24.57.1"] } } diff --git a/domains/kristiantokarim.json b/domains/kristiantokarim.json new file mode 100644 index 000000000..73374f47c --- /dev/null +++ b/domains/kristiantokarim.json @@ -0,0 +1,11 @@ +{ + "description": "For portfolio and personal page", + "repo": "https://github.com/kristiantokarim/kristiantokarim.github.io", + "owner": { + "username": "kristiantokarim", + "email": "kristiantokarim@gmail.com" + }, + "records": { + "CNAME": "kristiantokarim.github.io" + } +} diff --git a/domains/krix.json b/domains/krix.json index 07ca64bdf..b8dc5ff56 100644 --- a/domains/krix.json +++ b/domains/krix.json @@ -4,7 +4,7 @@ "username": "Krix12", "email": "kristjan.kocevar89@gmail.com" }, - "record": { + "records": { "CNAME": "krix12-github-io.pages.dev" } } diff --git a/domains/kriz.json b/domains/kriz.json index 24cc65800..067870ad7 100644 --- a/domains/kriz.json +++ b/domains/kriz.json @@ -3,7 +3,7 @@ "username": "altkriz", "email": "k.raza1932000@gmail.com" }, - "record": { + "records": { "CNAME": "altkriz.github.io" } } diff --git a/domains/kronifer.json b/domains/kronifer.json index 54638a316..d653a73ca 100644 --- a/domains/kronifer.json +++ b/domains/kronifer.json @@ -3,7 +3,7 @@ "username": "Kronifer", "email": "dillonr5@live.wsd1.org" }, - "record": { + "records": { "A": ["159.203.35.162"] } } diff --git a/domains/kruase.json b/domains/kruase.json new file mode 100644 index 000000000..8a220fd43 --- /dev/null +++ b/domains/kruase.json @@ -0,0 +1,12 @@ +{ + "description": "Root subdomain, just a CNAME to Vercel", + "repo": "https://github.com/KruASe76", + "owner": { + "username": "KruASe76", + "email": "kruanse@ya.ru", + "telegram": "https://t.me/KruASe" + }, + "records": { + "CNAME": "kruase.vercel.app" + } +} diff --git a/domains/krunch.json b/domains/krunch.json index fa6655cf6..0736fe607 100644 --- a/domains/krunch.json +++ b/domains/krunch.json @@ -3,9 +3,9 @@ "repo": "https://github.com/RadioactivePotato/krunch-is-a-dev", "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, - "record": { + "records": { "CNAME": "krunch.pages.dev" } } diff --git a/domains/kryptorian.json b/domains/kryptorian.json index b5c88bebb..b3aa5490f 100644 --- a/domains/kryptorian.json +++ b/domains/kryptorian.json @@ -3,7 +3,7 @@ "username": "kryptorian", "email": "kryptoria@protonmail.com" }, - "record": { + "records": { "A": ["130.61.159.247"] } } diff --git a/domains/kryptx.json b/domains/kryptx.json index eacaea2cf..3db5ceb69 100644 --- a/domains/kryptx.json +++ b/domains/kryptx.json @@ -3,7 +3,7 @@ "username": "0kryptx", "email": "k3px@proton.me" }, - "record": { + "records": { "CNAME": "0kryptx.github.io" } } diff --git a/domains/krystian.json b/domains/krystian.json index 687ce5471..0126f3b72 100644 --- a/domains/krystian.json +++ b/domains/krystian.json @@ -3,7 +3,7 @@ "username": "Krystian15x", "email": "krystiankoral@gmail.com" }, - "record": { + "records": { "A": ["138.2.132.47"] } } diff --git a/domains/ks.json b/domains/ks.json index 608470963..674ce3cfe 100644 --- a/domains/ks.json +++ b/domains/ks.json @@ -3,7 +3,7 @@ "username": "k2s09", "email": "soodkavin@gmail.com" }, - "record": { + "records": { "CNAME": "kavinsood.com" } } diff --git a/domains/ksign.json b/domains/ksign.json new file mode 100644 index 000000000..c3e359287 --- /dev/null +++ b/domains/ksign.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KSign-app", + "email": "tf.khoindvn@gmail.com" + }, + "records": { + "CNAME": "ksign-app.github.io" + } +} diff --git a/domains/ksvkabra.json b/domains/ksvkabra.json index 8bd3e65ae..fc580d15b 100644 --- a/domains/ksvkabra.json +++ b/domains/ksvkabra.json @@ -4,7 +4,7 @@ "username": "ksvkabra", "email": "ksvkabra@gmail.com" }, - "record": { + "records": { "CNAME": "ksvkabra.github.io" } } diff --git a/domains/ktevin01.json b/domains/ktevin01.json new file mode 100644 index 000000000..70929b2b6 --- /dev/null +++ b/domains/ktevin01.json @@ -0,0 +1,12 @@ +{ + "description": "Behold, My Stuff", + "repo": "https://github.com/ktevin01/register.is-a-dev", + "owner": { + "username": "ktevin01", + "email": "ktevin@icloud.com" + }, + "records": { + "URL": "https://github.com/ktevin01" + }, + "proxied": false +} diff --git a/domains/ktpguesser.loomeh.json b/domains/ktpguesser.loomeh.json new file mode 100644 index 000000000..61d9dc816 --- /dev/null +++ b/domains/ktpguesser.loomeh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/kuanngyn.json b/domains/kuanngyn.json new file mode 100644 index 000000000..3cf92ff1d --- /dev/null +++ b/domains/kuanngyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LOQ-burh", + "email": "nguyenminhquan042004@email.com" + }, + "records": { + "CNAME": "kuanngyn-portfolio.vercel.app" + } +} diff --git a/domains/kubov.json b/domains/kubov.json index 776034451..46e5109d9 100644 --- a/domains/kubov.json +++ b/domains/kubov.json @@ -3,7 +3,7 @@ "username": "Kubov24", "email": "jakubcaly93@gmail.com" }, - "record": { + "records": { "A": ["37.187.156.46"] } } diff --git a/domains/kucharskov.json b/domains/kucharskov.json index 2bc0cbaa9..b518dbe7e 100644 --- a/domains/kucharskov.json +++ b/domains/kucharskov.json @@ -1,10 +1,9 @@ { "owner": { "username": "Kucharskov", - "discord": "271314313984212992", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.B4bLEFARNAdE_BpPAqvnVufPoWEFTizcv4TOGjyRp4RXYC2M5KDV9FYxsJGHw1FSL349cL58sYIEj9rGNhYxAPWf9TzEXKgnCCHPcjbnOFr4q4Vo1z29HuvY2DyYjKHpWuGDoIgaYNsnXz2vYjgLeHG8gc6tB6v53Urf9jj4tF_vE3DmxgdsuXNcNlh9Lmw9Xi1DA2dId5YGklN9MVJLL78LEWkADBidKsSeQkEQ3h98pPw6MQuZ1WcDCBiFs6SaL0Hp9Mjsn3XESdwUeSF8oFbuIyRqQOsr26-SSn8t4noKeI_yvzI36sItkJVkfho9QtYUcdfjcxerXNDSpJ-6ow.fmZCDBax-e6Fvc2CpmcvUQ.TYO6CzoUcOp_GxVs9ACfSWNB4tawICrusIk8V1ccw4_4LrT5Sg8TSqX6Hv9AkSzHa1uJjqnq8Fpe5kLW7jp5neM1eC8YpeWKkpr_bxyggGA.OR3Hp4ja27cqEwLpfgmFag" + "discord": "271314313984212992" }, - "record": { + "records": { "URL": "https://kucharskov.pl" } } diff --git a/domains/kuldeep.json b/domains/kuldeep.json index 459627f12..d594e3091 100644 --- a/domains/kuldeep.json +++ b/domains/kuldeep.json @@ -1,15 +1,9 @@ { "owner": { "username": "sukanayaprajapati124", - "discord": "1268262461576839222", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.SCcJ58_aMwgeQkYGvU9rzBgJa_EBHQl4TCr1dHPJyL_9r7gO7job3EH6jpv_wPxmUjlUmuMymShEOCl2tyCoEpGwOzTdKC1u7sBddNBKGA3OrhLuTYJDmb0DyyK9pndVT2XFbTvQ3muQEu37avW4emC-J8y0f_4XPaVluz-HCy1nmx4nG5YT1vYy3lFKoblexCkoPIni8gnX99GKakb1DU4i5Zrw__Uw6FH9BNqMDZ7u7rrn5iiAtopP2wNgNnMx83I1UEJ0eomY966kEkYzl3yf43UmorvAv_BKyKSomd-BfmoRG4GMICXjBgynuju0NFO_75LDJ-6fR_6OvgHMhw.xPf25fZWwHxMLxYzTwoUnA.ifY6RnwkNbTRpE-3pV7fC2kxC9GzBgjP9HmzXLcINbYNlKK_MEAUUXUU0JXhRL_vY99SXaYy4W7To13c_7YjSbx8vORYAcvXmt15B1nknKE.NoVRB7Wo-9sX3-BxKN4iYg" + "discord": "1268262461576839222" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/kulikode.json b/domains/kulikode.json new file mode 100644 index 000000000..3d64b3da1 --- /dev/null +++ b/domains/kulikode.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khairu-aqsara", + "discord": "651519394673065977" + }, + "records": { + "CNAME": "khairu-aqsara.github.io" + } +} diff --git a/domains/kumoneo.json b/domains/kumoneo.json index e85cd90c1..1fc12c964 100644 --- a/domains/kumoneo.json +++ b/domains/kumoneo.json @@ -4,7 +4,7 @@ "email": "theamazingbrothers28@gmail.com", "discord": "961401804795547708" }, - "record": { + "records": { "CNAME": "dns.nekoweb.org" } } diff --git a/domains/kunal.json b/domains/kunal.json index 338b74b09..d1f82c8db 100644 --- a/domains/kunal.json +++ b/domains/kunal.json @@ -6,7 +6,7 @@ "discord": "Kunal#4461" }, "description": "I'll probably put some project pages on kunal.is-a.dev.", - "record": { + "records": { "CNAME": "kunalsingh19.github.io" } } diff --git a/domains/kunalpurandare.json b/domains/kunalpurandare.json new file mode 100644 index 000000000..12caa279d --- /dev/null +++ b/domains/kunalpurandare.json @@ -0,0 +1,10 @@ +{ + "repo": "https://kunalpurandare.github.io/portfolio", + "owner": { + "username": "kunalpurandare", + "email": "kunalpurandare1703@gmail.com" + }, + "records": { + "CNAME": "kunalpurandare.github.io" + } +} diff --git a/domains/kunalshah017.json b/domains/kunalshah017.json new file mode 100644 index 000000000..7cdfae7da --- /dev/null +++ b/domains/kunalshah017.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kunalshah017", + "email": "kunalmanishshah@gmail.com", + "discord": "kunalshah17" + }, + "records": { + "CNAME": "kunalshah017.vercel.app" + } +} diff --git a/domains/kunalx.json b/domains/kunalx.json new file mode 100644 index 000000000..61b7c1648 --- /dev/null +++ b/domains/kunalx.json @@ -0,0 +1,11 @@ +{ + "description": "Self-hosted personal portfolio deployed via Docker on a VPS with NGINX reverse proxy, secured through Cloudflare", + "owner": { + "username": "KunalScriptz", + "email": "kunal1520018@gmail.com", + "discord": "glitchmasterx" + }, + "records": { + "NS": ["dom.ns.cloudflare.com", "gwen.ns.cloudflare.com"] + } +} diff --git a/domains/kunsh13.json b/domains/kunsh13.json index 4e79e94a0..f1ffb796f 100644 --- a/domains/kunsh13.json +++ b/domains/kunsh13.json @@ -5,7 +5,7 @@ "username": "kunsh13", "email": "kunshmaurya@gmail.com" }, - "record": { + "records": { "CNAME": "kunsh13.github.io" } } diff --git a/domains/kuro.json b/domains/kuro.json new file mode 100644 index 000000000..f2b90caef --- /dev/null +++ b/domains/kuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kurorin-fs", + "twitter": "Kurorin_fs" + }, + "records": { + "CNAME": "kurorin-fs.github.io" + } +} diff --git a/domains/kuroigg.json b/domains/kuroigg.json index 658aeafb9..7e0d8ce75 100644 --- a/domains/kuroigg.json +++ b/domains/kuroigg.json @@ -3,7 +3,7 @@ "username": "kuroigg", "email": "mrlangdon197@gmail.com" }, - "record": { + "records": { "CNAME": "kuroigg.github.io" } } diff --git a/domains/kushagra.json b/domains/kushagra.json new file mode 100644 index 000000000..127ae2944 --- /dev/null +++ b/domains/kushagra.json @@ -0,0 +1,10 @@ +{ + "description": "Kushagra Rathore's portfolio website", + "owner": { + "username": "kushagra1212", + "email": "kushagrarathore002@gmail.com" + }, + "records": { + "CNAME": "kushagra.frii.site" + } +} diff --git a/domains/kushal.json b/domains/kushal.json index 49a0d7c66..63efba7b0 100644 --- a/domains/kushal.json +++ b/domains/kushal.json @@ -3,7 +3,7 @@ "username": "kushalshah0", "email": "code@kushalshah.com.np" }, - "record": { + "records": { "CNAME": "kushalshah0.github.io" } } diff --git a/domains/kushdhingra.json b/domains/kushdhingra.json deleted file mode 100644 index 94d0dfea3..000000000 --- a/domains/kushdhingra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kushdhingra", - "email": "kushdhingra3112@gmail.com", - "discord": "1035869217796403220", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJTReSXxF-8BxDH8rn6i_DIx0XuVrc4yYnOEN1Awfp7mZcYPIgcPt4mvsScPbJYhZLN5XtDlxl0DcdU8Za12GCk-aIWegJ9-_32bdjw3agBzaJ-ltaslRoVpNJ3zfLaQ9V-BrhwVMEJhpz5-0eYeEiikL4tHAoPzzKMlYIf8f5l7IL6aMfhBZvIFf0B3upGg2FeOpFCXAsttU5QiKkjUt4BjetuYb29UJoNzDco1ZExLdudlKd_fz6IcaAsw2K1u6MMDDs2khsic9M42AE3pRFCP_hacdllY5Z66ATlmKhYAxFryJYWrgbfpGX2PxSrQalAao_IP1TIGgiq7ugiBDw.Lg-WIZSH_nzEfnLZct78Cg.soPtqjy32EA2Ew63dHQ8P8-dt4ZihvZpipBVkHyX_rlnv-y5YpS5v2-2d3O5hGHRfCKnfxQsvewDfcPSGa4_Oq8BN01Kzhbet8AXRCK6uOM.ouoa2YqHKAeX9lKWZoFaog" - }, - "record": { - "CNAME": "kushdhingra.vercel.app" - } -} diff --git a/domains/kuyacarlos.json b/domains/kuyacarlos.json index ec0eb10c3..307898725 100644 --- a/domains/kuyacarlos.json +++ b/domains/kuyacarlos.json @@ -4,7 +4,7 @@ "username": "CarlosNatanauan", "email": "carlosbenedictn@gmail.com" }, - "record": { + "records": { "CNAME": "carlosnatanauan.github.io" } } diff --git a/domains/kuyo.json b/domains/kuyo.json index 2af5ec513..5ad92f002 100644 --- a/domains/kuyo.json +++ b/domains/kuyo.json @@ -1,10 +1,9 @@ { "owner": { "username": "KaisenyiKuyo", - "discord": "1033580960882626630", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iCF2wnxRDm-lOVzW7mpR5Hzk8w0r7tvzbOoRd-wI4WMccbkYPvoBBF3jMimR2AV71yxjeZVUdketFKEwxzzAblMmFcy2fqWrluc_--glvdT86HYZtshVKPrS8TCB018KNBApx5Vz1kj0vZ9DNCBBGGJyLseM_8JwlURJ8NDiYtR0wCtYUvFTs_h-LEsP7gqPy_41G2W92bb3D9SS6UZaShhB6tFs899A47E6u7JrgfmTcMhu_VjxwTqlq5jFdhDnjvEcwXW4SlJtwHvS_MKZzB0DGB_BzoPMmQExZzd4yXGnMZtMuboOp8M1nVCuuimdypDWVGVKFvOzFuh2fhKRXA.A8ru7HpNNyy9qpioaAFM5Q.wz2htUrwO5tiXD_uTot1C4OaPrh-HzchUNjDBFVHdWYL2u8TxnwiA-Vb1d8jBCmJ75ykdnahP4aSZkK32wEH4YxFDccgnYnli-EHoDp5iDQ.xPvh5urKu7BtaEODrareYA" + "discord": "1033580960882626630" }, - "record": { + "records": { "CNAME": "kaisenyikuyo.github.io" } } diff --git a/domains/meenbeese.json b/domains/kuzey.json similarity index 89% rename from domains/meenbeese.json rename to domains/kuzey.json index 3d17e82bb..04328cba5 100644 --- a/domains/meenbeese.json +++ b/domains/kuzey.json @@ -3,7 +3,7 @@ "username": "meenbeese", "email": "meenbeese@tutanota.com" }, - "record": { + "records": { "CNAME": "meenbeese.github.io" } } diff --git a/domains/kwan.json b/domains/kwan.json index 1d1a6c8cc..059e809b7 100644 --- a/domains/kwan.json +++ b/domains/kwan.json @@ -3,7 +3,7 @@ "username": "kwansing14", "email": "kwansing@hotmail.sg" }, - "record": { + "records": { "CNAME": "kwan-is-a-dev.pages.dev" } } diff --git a/domains/kweller.json b/domains/kweller.json index eb610763d..61971d1eb 100644 --- a/domains/kweller.json +++ b/domains/kweller.json @@ -5,7 +5,7 @@ "username": "real-kwellercat", "email": "lucas.rausch.732@k12.friscoisd.org" }, - "record": { + "records": { "CNAME": "real-kwellercat.github.io" } } diff --git a/domains/kxtz.json b/domains/kxtz.json index 3981338bc..fa7593981 100644 --- a/domains/kxtz.json +++ b/domains/kxtz.json @@ -3,7 +3,7 @@ "username": "kxtzownsu", "email": "kxtzownsu@gmail.com" }, - "record": { + "records": { "CNAME": "kxtz.dev" } } diff --git a/domains/kyhros.json b/domains/kyhros.json index d5cbbb85e..d6438c914 100644 --- a/domains/kyhros.json +++ b/domains/kyhros.json @@ -3,7 +3,7 @@ "username": "Klorycs", "email": "abmongus@gmail.com" }, - "record": { + "records": { "URL": "https://kyhros.netlify.app" } } diff --git a/domains/kyizl.json b/domains/kyizl.json new file mode 100644 index 000000000..a3ca9e24a --- /dev/null +++ b/domains/kyizl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oqzx", + "email": "ekn@envs.net" + }, + "records": { + "NS": ["ali.ns.cloudflare.com", "clay.ns.cloudflare.com"] + } +} diff --git a/domains/kylemartin.json b/domains/kylemartin.json index 18587dacd..954ac39b5 100644 --- a/domains/kylemartin.json +++ b/domains/kylemartin.json @@ -4,7 +4,7 @@ "owner": { "username": "js-kyle" }, - "record": { + "records": { "CNAME": "js-kyle.github.io" } } diff --git a/domains/kylewebdev.json b/domains/kylewebdev.json index 979e13adc..fcbb68002 100644 --- a/domains/kylewebdev.json +++ b/domains/kylewebdev.json @@ -3,7 +3,7 @@ "username": "kylewebdev", "email": "kylewebdev@gmail.com" }, - "record": { + "records": { "CNAME": "kylewebdev.com" } } diff --git a/domains/kyogrq.json b/domains/kyogrq.json index e3b687aaa..539217415 100644 --- a/domains/kyogrq.json +++ b/domains/kyogrq.json @@ -3,7 +3,7 @@ "username": "Kyogrq", "email": "benetbenson815@gmail.com" }, - "record": { + "records": { "CNAME": "kyogrq.github.io" } } diff --git a/domains/kyotox.json b/domains/kyotox.json index caf042765..88a4bb1e2 100644 --- a/domains/kyotox.json +++ b/domains/kyotox.json @@ -3,7 +3,7 @@ "username": "kyotox-dev", "email": "kyotox.dev@gmail.com" }, - "record": { + "records": { "URL": "https://ajiteshrawat.wixsite.com/portfolio" } } diff --git a/domains/kyoya.json b/domains/kyoya.json index 14b5b57dc..2cb947e08 100644 --- a/domains/kyoya.json +++ b/domains/kyoya.json @@ -3,7 +3,7 @@ "username": "kyoyacchi", "email": "kyoyacchi@protonmail.ch" }, - "record": { + "records": { "CNAME": "kyoyacchi.github.io" } } diff --git a/domains/kz.json b/domains/kz.json index 2bc45d58e..63376126a 100644 --- a/domains/kz.json +++ b/domains/kz.json @@ -4,7 +4,7 @@ "email": "iakzs@protonmail.com", "discord": "622795838032314388" }, - "record": { - "MX": ["mx1.improvmx.com"] + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/l.funn.json b/domains/l.funn.json index 161ac649c..fcb04a9f1 100644 --- a/domains/l.funn.json +++ b/domains/l.funn.json @@ -3,7 +3,7 @@ "username": "funnsam", "email": "funnsam8@gmail.com" }, - "record": { + "records": { "CNAME": "funnsam.github.io" } } diff --git a/domains/l.json b/domains/l.json index c45a313f9..aa84a3969 100644 --- a/domains/l.json +++ b/domains/l.json @@ -5,7 +5,7 @@ "username": "xkcdnerd", "email": "evanwang330@gmail.com" }, - "record": { + "records": { "URL": "https://nerd.is-a.dev" } } diff --git a/domains/l.ps.json b/domains/l.ps.json index f5f987d87..7b89f7d20 100644 --- a/domains/l.ps.json +++ b/domains/l.ps.json @@ -1,10 +1,9 @@ { "owner": { "username": "PrivacySecured", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ", "notes": "I rarely go on my emails. If I do its because I needed a verification code." }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/l0ser.json b/domains/l0ser.json index d1b55020d..76340c549 100644 --- a/domains/l0ser.json +++ b/domains/l0ser.json @@ -1,11 +1,10 @@ { "description": "L0SER's personal developer website", - "repo": "https://github.com/L0SER8228", "owner": { "username": "L0SER8228", "email": "loserlackey@gmail.com" }, - "record": { + "records": { "CNAME": "l0ser8228.github.io" } } diff --git a/domains/l6174.json b/domains/l6174.json index 505eb5de7..74c604e56 100644 --- a/domains/l6174.json +++ b/domains/l6174.json @@ -5,10 +5,7 @@ "username": "l6174", "email": "l6174@proton.me" }, - "record": { - "NS": [ - "armfazh.ns.cloudflare.com", - "stella.ns.cloudflare.com" - ] + "records": { + "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] } } diff --git a/domains/l7neg.json b/domains/l7neg.json index 62b2f4ef3..26ea417a1 100644 --- a/domains/l7neg.json +++ b/domains/l7neg.json @@ -4,7 +4,7 @@ "email": "l7negdev@gmail.com", "discord": "669453086418534400" }, - "record": { + "records": { "CNAME": "l7neg.pages.dev" } } diff --git a/domains/la-pyae-oo.json b/domains/la-pyae-oo.json new file mode 100644 index 000000000..ad2b61038 --- /dev/null +++ b/domains/la-pyae-oo.json @@ -0,0 +1,13 @@ +{ + "description": "For my static portfolio website", + "repo": "https://github.com/LaPyaeOo", + "owner": { + "username": "LaPyaeOo", + "email": "lapyaeootharthar@gmail.com" + }, + "records": { + "CNAME": "lapyaeoo.github.io", + "TXT": "google-site-verification=6LBBzq6hGqSJG1IkXd766eWxcJmf7VPHrvSMDZ_h1HE" + }, + "proxied": true +} diff --git a/domains/lachlan.json b/domains/lachlan.json new file mode 100644 index 000000000..6c22e0e2e --- /dev/null +++ b/domains/lachlan.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mrteale" + }, + "records": { + "CNAME": "lachlanteale.com" + } +} diff --git a/domains/lachsfilet.json b/domains/lachsfilet.json index 2960cf2a4..fa4a7912c 100644 --- a/domains/lachsfilet.json +++ b/domains/lachsfilet.json @@ -3,7 +3,7 @@ "username": "Lachsfilet", "email": "fberger10@gmx.de" }, - "record": { + "records": { "CNAME": "lachsfilet.github.io" } } diff --git a/domains/lackingcats.json b/domains/lackingcats.json index 68a357a64..3ff4571e8 100644 --- a/domains/lackingcats.json +++ b/domains/lackingcats.json @@ -1,10 +1,9 @@ { "owner": { "username": "LackingCats", - "discord": "779872274744082442", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fZCqZADYaD6DmkBnWFX5BBymOqmUfupbNuBRVYrbeuRO4palBeX_kv0Mqpb0LPQD3yEU1d9YseIEo6eC4cTo_KUsDR6JPYaJz7t9URslQixyQaWjZblSwG_LYCXXoNfiApkH56rb9qDUkIBf1WWBK3jE2J_9FwMBg1BZk1W5RQbuMNe-QjjY3Hn7BSDJaqDOeNMIWz95KsrRnLEAcgjW9ocoyfLO6UGMT-Yvr18jlYN9g5lo8gVexPnMS95xpzBf2MtJmjra6UJdY8g4v9y6S6qTHnF2gVpSShnkBjZCtCACyZ-m7NnWB--9hOkb3_ZK74JN6077VE0NZjXbPMJu5A.PSNruSL2dxexpB-Li38TYg.bFEi6ytIOLsqkWTOj1BO8JDs77s7jwOultNAwkKSNuP2HI3L7h3ffsFYlwUtOCGWTnaXKoSJZni-1OBESUhsuGonJ7b_qGhrjgevMjjHuBw.nPHqlyhm4Q7T525SBnhxpw" + "discord": "779872274744082442" }, - "record": { + "records": { "CNAME": "lackingcats.com.de" } } diff --git a/domains/lacky.json b/domains/lacky.json index 036d6933a..7bbb31870 100644 --- a/domains/lacky.json +++ b/domains/lacky.json @@ -3,7 +3,7 @@ "username": "LackyPal", "email": "dev.lackypal@gmail.com" }, - "record": { + "records": { "CNAME": "lackypal.github.io" } } diff --git a/domains/lacti.json b/domains/lacti.json index 2f27ee95a..bc4bb7a45 100644 --- a/domains/lacti.json +++ b/domains/lacti.json @@ -5,7 +5,7 @@ "username": "lacti", "email": "lactrious@gmail.com" }, - "record": { + "records": { "CNAME": "lacti.github.io" } } diff --git a/domains/lakhani-palak.json b/domains/lakhani-palak.json index cacb9134d..eb1806a80 100644 --- a/domains/lakhani-palak.json +++ b/domains/lakhani-palak.json @@ -4,7 +4,7 @@ "owner": { "username": "lakhani-palak" }, - "record": { + "records": { "CNAME": "lakhani-palak.github.io" } } diff --git a/domains/lakhindar.json b/domains/lakhindar.json index 0264b561d..24a4ee688 100644 --- a/domains/lakhindar.json +++ b/domains/lakhindar.json @@ -3,13 +3,8 @@ "username": "LakhindarPal", "email": "dev.lakhindarpal@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=dev.lakhindarpal@gmail.com" } diff --git a/domains/lakis.json b/domains/lakis.json index 373a93e5d..6151ecdec 100644 --- a/domains/lakis.json +++ b/domains/lakis.json @@ -4,7 +4,7 @@ "username": "Lakiś", "email": "support@axolotlmc.pl" }, - "record": { + "records": { "URL": "https://e-z.bio/lakis" } } diff --git a/domains/lakshay.json b/domains/lakshay.json new file mode 100644 index 000000000..fb7a4f31e --- /dev/null +++ b/domains/lakshay.json @@ -0,0 +1,10 @@ +{ + "description": "Porfolio website link for lux", + "owner": { + "username": "unlux", + "email": "support@unlux.dev" + }, + "records": { + "URL": "https://unlux.dev" + } +} diff --git a/domains/lakshisherediscord.json b/domains/lakshisherediscord.json new file mode 100644 index 000000000..147365afe --- /dev/null +++ b/domains/lakshisherediscord.json @@ -0,0 +1,11 @@ +{ + "description": "Welcome to my experimental domain", + "repo": "https://github.com/WebLux7/WebLux", + "owner": { + "username": "WebLux7", + "email": "lucky7049sp@gmail.com" + }, + "records": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/lakshya.json b/domains/lakshya.json new file mode 100644 index 000000000..2e181e1b8 --- /dev/null +++ b/domains/lakshya.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lakshyaCreates", + "email": "lakshya.creates07@gmail.com" + }, + "description": "Lakshya's Personal Portfolio Website", + "repo": "https://github.com/lakshyaCreates/lakshyasharma", + "records": { + "URL": "https://lakshyasharma.dev" + } +} diff --git a/domains/lalit.json b/domains/lalit.json index adefe66e7..0199342fc 100644 --- a/domains/lalit.json +++ b/domains/lalit.json @@ -3,7 +3,7 @@ "username": "lalitm1004", "email": "lalitm1004@gmail.com" }, - "record": { + "records": { "CNAME": "lalit-is-a-dev.pages.dev" } } diff --git a/domains/lalmanthakur.json b/domains/lalmanthakur.json index 432cbd53e..ce717bef4 100644 --- a/domains/lalmanthakur.json +++ b/domains/lalmanthakur.json @@ -3,7 +3,7 @@ "username": "Lalman888", "email": "chauhanlakshay074@gmail.com" }, - "record": { + "records": { "URL": "https://lalmanthakur.vercel.app" } } diff --git a/domains/lam.json b/domains/lam.json index 812afc77b..1c659101c 100644 --- a/domains/lam.json +++ b/domains/lam.json @@ -3,7 +3,7 @@ "username": "Syxaaa", "email": "nguyenlamyou@gmail.com" }, - "record": { + "records": { "CNAME": "thelastprofilecard.pages.dev" } } diff --git a/domains/lambda.json b/domains/lambda.json index 1e8d02e3e..50cd75cb2 100644 --- a/domains/lambda.json +++ b/domains/lambda.json @@ -5,7 +5,7 @@ "username": "stadial", "email": "kfulain.uphrj@aleeas.com" }, - "record": { + "records": { "CNAME": "stadial.github.io" } } diff --git a/domains/lamngockhuong.json b/domains/lamngockhuong.json new file mode 100644 index 000000000..02a9be1ab --- /dev/null +++ b/domains/lamngockhuong.json @@ -0,0 +1,20 @@ +{ + "description": "lamngockhuong.is-a.dev : This is my personal notebook", + "owner": { + "username": "lamngockhuong", + "email": "me@ngockhuong.com" + }, + "records": { + "URL": "https://dev.ngockhuong.com" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/lamngockhuong", + "/x": "https://x.com/lamngockhuong", + "/fb": "https://facebook.com/lamngockhuong", + "/linkedin": "https://linkedin.com/in/lamngockhuong", + "/viblo": "https://viblo.asia/u/lamngockhuong" + }, + "redirect_paths": true + } +} diff --git a/domains/lamnguyenz.json b/domains/lamnguyenz.json index e3f2ffe57..aea117025 100644 --- a/domains/lamnguyenz.json +++ b/domains/lamnguyenz.json @@ -1,11 +1,11 @@ { - "description": "Personal Blog Site", - "repo": "https://github.com/LamNguyenz/lamnguyenz.github.io", - "owner": { - "username": "LamNguyenz", - "email": "lamnguyen11e@gmail.com" - }, - "record": { - "CNAME": "lamnguyenz.github.io" - } + "description": "Personal Blog Site", + "repo": "https://github.com/LamNguyenz/lamnguyenz.github.io", + "owner": { + "username": "LamNguyenz", + "email": "lamnguyen11e@gmail.com" + }, + "records": { + "CNAME": "lamnguyenz.github.io" + } } diff --git a/domains/lamps-dev.json b/domains/lamps-dev.json index 855d591ea..14362f91e 100644 --- a/domains/lamps-dev.json +++ b/domains/lamps-dev.json @@ -6,7 +6,7 @@ "email": "ilovelampadaire@gmail.com", "twitter": "lampytofficial" }, - "record": { + "records": { "CNAME": "lamps-dev.github.io" } } diff --git a/domains/land.json b/domains/land.json index 918494fe6..ec5ebcfe0 100644 --- a/domains/land.json +++ b/domains/land.json @@ -3,7 +3,7 @@ "username": "LandWarderer2772", "email": "navaneethbinoy@gmail.com" }, - "record": { + "records": { "CNAME": "website-zfm.pages.dev" } } diff --git a/domains/landercity.json b/domains/landercity.json new file mode 100644 index 000000000..f25eb9b51 --- /dev/null +++ b/domains/landercity.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Juniordsfsdg", + "email": "emailcomputer22@gmail.com" + }, + "records": { + "A": ["209.126.86.32"] + } +} diff --git a/domains/landercitygaming.json b/domains/landercitygaming.json new file mode 100644 index 000000000..8e4ae9cab --- /dev/null +++ b/domains/landercitygaming.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuniorDereon", + "email": "robloxsafe72@gmail.com" + }, + "records": { + "A": ["159.69.86.171"] + } +} diff --git a/domains/laqie.json b/domains/laqie.json index dfc87f2e8..9dd8b122f 100644 --- a/domains/laqie.json +++ b/domains/laqie.json @@ -3,7 +3,7 @@ "username": "laqie", "email": "ave.lucky@gmail.com" }, - "record": { + "records": { "A": ["34.120.54.55"] } } diff --git a/domains/larp.json b/domains/larp.json index 4cc731c98..ad458b806 100644 --- a/domains/larp.json +++ b/domains/larp.json @@ -3,7 +3,7 @@ "username": "lhwe", "email": "arieslovespiggies@gmail.com" }, - "record": { + "records": { "A": ["64.23.128.177"] } } diff --git a/domains/larry.json b/domains/larry.json new file mode 100644 index 000000000..3ca6c3bca --- /dev/null +++ b/domains/larry.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dlir2404", + "email": "dinhlinh.work24@gmail.com" + }, + "records": { + "CNAME": "dlir-portfolio.vercel.app" + } +} diff --git a/domains/larryst.json b/domains/larryst.json index 91ec9d834..4949fadac 100644 --- a/domains/larryst.json +++ b/domains/larryst.json @@ -4,7 +4,7 @@ "username": "kornls", "email": "larryst.korn@gmail.com" }, - "record": { + "records": { "CNAME": "larrystudios.github.io" } } diff --git a/domains/larrystudios.json b/domains/larrystudios.json index 91ec9d834..4949fadac 100644 --- a/domains/larrystudios.json +++ b/domains/larrystudios.json @@ -4,7 +4,7 @@ "username": "kornls", "email": "larryst.korn@gmail.com" }, - "record": { + "records": { "CNAME": "larrystudios.github.io" } } diff --git a/domains/lasty.json b/domains/lasty.json index f0cef22aa..6a8f1a78c 100644 --- a/domains/lasty.json +++ b/domains/lasty.json @@ -3,7 +3,7 @@ "username": "me0w-0", "email": "lasty@outlook.in" }, - "record": { + "records": { "CNAME": "lasty.pages.dev" } } diff --git a/domains/latealways.json b/domains/latealways.json index b2f8e02d1..373a4c619 100644 --- a/domains/latealways.json +++ b/domains/latealways.json @@ -3,7 +3,7 @@ "username": "LateAlways", "email": "latealways.official@gmail.com" }, - "record": { + "records": { "CNAME": "latealways.github.io" } } diff --git a/domains/laufey.json b/domains/laufey.json index 890b24d8c..925aee987 100644 --- a/domains/laufey.json +++ b/domains/laufey.json @@ -3,10 +3,9 @@ "repo": "https://github.com/idlidev/laufey-web", "owner": { "username": "idlidev", - "email": "idliyout@gmail.com", - "twitter": "" + "email": "idliyout@gmail.com" }, - "record": { + "records": { "CNAME": "idlidev.github.io" } } diff --git a/domains/lautaro-molina.json b/domains/lautaro-molina.json new file mode 100644 index 000000000..f73268d3e --- /dev/null +++ b/domains/lautaro-molina.json @@ -0,0 +1,10 @@ +{ + "description": "json for the domain is-a.dev", + "owner": { + "username": "LautaroMol", + "email": "Laumol159@gmail.com" + }, + "records": { + "URL": "https://lautaroportfolio.vercel.app/" + } +} diff --git a/domains/lavafroth.json b/domains/lavafroth.json index 5fdb88000..1f26f3dd1 100644 --- a/domains/lavafroth.json +++ b/domains/lavafroth.json @@ -3,7 +3,7 @@ "username": "lavafroth", "email": "lavafroth@protonmail.com" }, - "record": { + "records": { "CNAME": "lavafroth.github.io" } } diff --git a/domains/lavalink.akshtt.json b/domains/lavalink.akshtt.json index ad11a082f..955f4acf0 100644 --- a/domains/lavalink.akshtt.json +++ b/domains/lavalink.akshtt.json @@ -4,7 +4,7 @@ "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/law.udhaya.json b/domains/law.udhaya.json index 9e8bd626f..03c4917e4 100644 --- a/domains/law.udhaya.json +++ b/domains/law.udhaya.json @@ -3,7 +3,7 @@ "username": "xaceduke", "email": "kinghtth0@gmail.com" }, - "record": { + "records": { "CNAME": "lawudhaya.netlify.app" } } diff --git a/domains/lawrenceee04.json b/domains/lawrenceee04.json new file mode 100644 index 000000000..31d80f74c --- /dev/null +++ b/domains/lawrenceee04.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lawrenceee04", + "email": "lawrencelg04@gmail.com" + }, + "records": { + "CNAME": "lawrenceee04.netlify.app" + } +} diff --git a/domains/laxman.json b/domains/laxman.json new file mode 100644 index 000000000..c2be2e8c5 --- /dev/null +++ b/domains/laxman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "laxmanpathe", + "email": "pathelaxman11373@gmail.com" + }, + "records": { + "CNAME": "laxmanpathe.github.io" + } +} diff --git a/domains/layhout.json b/domains/layhout.json new file mode 100644 index 000000000..d96804598 --- /dev/null +++ b/domains/layhout.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "layhout", + "email": "layhoutworkmail@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/laymoth.json b/domains/laymoth.json index f7a2ebeda..829f10b6e 100644 --- a/domains/laymoth.json +++ b/domains/laymoth.json @@ -4,7 +4,7 @@ "username": "laymoth", "email": "pm@laymoth.dev" }, - "record": { + "records": { "CNAME": "laymoth.pages.dev" } } diff --git a/domains/lazizbek.json b/domains/lazizbek.json index ebfeb3e2a..b09b0451f 100644 --- a/domains/lazizbek.json +++ b/domains/lazizbek.json @@ -3,7 +3,7 @@ "username": "LazizbekGamer", "email": "lazizbekgameryt@gmail.com" }, - "record": { + "records": { "CNAME": "www.gpitify-ai.uz" } } diff --git a/domains/lazy.json b/domains/lazy.json new file mode 100644 index 000000000..7ac93c475 --- /dev/null +++ b/domains/lazy.json @@ -0,0 +1,10 @@ +{ + "description": "lazydragon.is-a.dev", + "owner": { + "username": "xuan-Thu", + "email": "xuanthu13090@gmail.com" + }, + "records": { + "CNAME": "xuan-thu.github.io" + } +} diff --git a/domains/lazyllama.json b/domains/lazyllama.json index 9ef0c5496..64d15503d 100644 --- a/domains/lazyllama.json +++ b/domains/lazyllama.json @@ -3,7 +3,7 @@ "username": "lazylllama", "email": "kws102522@gmail.com" }, - "record": { + "records": { "CNAME": "lazylllama.github.io" } } diff --git a/domains/lbplbp.json b/domains/lbplbp.json index a55ffeaa5..c1568f224 100644 --- a/domains/lbplbp.json +++ b/domains/lbplbp.json @@ -3,7 +3,7 @@ "username": "sjzsbgwb", "email": "3022605585@qq.com" }, - "record": { + "records": { "CNAME": "wiki.jejsjsjja.workers.dev" } } diff --git a/domains/ldt.json b/domains/ldt.json index 0a4eadf66..fd27a42db 100644 --- a/domains/ldt.json +++ b/domains/ldt.json @@ -1,9 +1,9 @@ { "owner": { - "username": "luongductrong", - "email": "luongductrong2004@gmail.com" + "username": "luongductrong", + "email": "luongductrong2004@gmail.com" }, - "record": { - "CNAME": "luongductrong.github.io" + "records": { + "CNAME": "luongductrong.github.io" } } diff --git a/domains/leandrogameplays.json b/domains/leandrogameplays.json index 488013c7a..d56e280c7 100644 --- a/domains/leandrogameplays.json +++ b/domains/leandrogameplays.json @@ -2,10 +2,9 @@ "owner": { "username": "LeandroGameplaysBR", "email": "leandrogameplays74@outlook.com", - "discord": "351853993443590145", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.bZj78GsosfV-njUz8U1rJxGiVcdUic3W0HrirEAP8066paJbeal5aYkKOyyeTO7hmyatEJgdXr2DGGPexl079J4oawcsXiQYrewOwsc4XeLkpiWmAkMAJlflEy0Lwu_zPIcS6FHbLscjFltjYB0I_VaWH7d1yL-dDdB_9f79LqePpEDVWeSm_tE_K9AvOZWTxjlW-MLgtsF_dZkMCn5ez7gfQxya4KHFY2l9bEREmRe_hr_ZZp12WvNrlF29qW5MFbFQsbrYsDrI-iOxjsY041RJVT7G1abtTkF1bLuFN-5dkHXmcobAgsA9i_Z217_NLhVEfzfhxiEVvhh8bsxt-g.0gki4o65YPpemExFGVKWGQ.5filVxsyk_BErBgcU2nFuEHMtIuNQI1lUXV5oQtFB3Dr3eZCishTmAzyicrT_fu3I_BG1lstU2B3HXIDkza2bwRgOV1QTc0YmXT1jnY17tteTxICfcLkjgwqXYcoakfu.-rWHQPsibUCgYKaPMnP7vQ" + "discord": "351853993443590145" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/learn-to-code-now.json b/domains/learn-to-code-now.json index c145b07ef..222f947f7 100644 --- a/domains/learn-to-code-now.json +++ b/domains/learn-to-code-now.json @@ -3,7 +3,7 @@ "username": "qloakongithub", "email": "7469931481@stu.gcsnc.com" }, - "record": { + "records": { "CNAME": "qloakongithub.github.io" } } diff --git a/domains/ledraa.json b/domains/ledraa.json index f3ba64bf8..6098e8c54 100644 --- a/domains/ledraa.json +++ b/domains/ledraa.json @@ -3,7 +3,7 @@ "username": "elhadede", "email": "jling0139@gmail.com" }, - "record": { + "records": { "MX": ["feedback-smtp.us-east-1.amazonses.com"] } } diff --git a/domains/lee.json b/domains/lee.json new file mode 100644 index 000000000..7488b2249 --- /dev/null +++ b/domains/lee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kneesdev", + "email": "kneesdev@hotmail.com" + }, + "records": { + "CNAME": "wyzux.vercel.app" + } +} diff --git a/domains/leek.json b/domains/leek.json new file mode 100644 index 000000000..6995f98d6 --- /dev/null +++ b/domains/leek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leek", + "email": "leeked+isadev@gmail.com" + }, + "records": { + "URL": "https://leek.io" + } +} diff --git a/domains/legendsayantan.json b/domains/legendsayantan.json index 716c487eb..4feb2cef1 100644 --- a/domains/legendsayantan.json +++ b/domains/legendsayantan.json @@ -6,7 +6,7 @@ "email": "legendsayantanpaul@gmail.com", "twitter": "legendsayantan" }, - "record": { + "records": { "CNAME": "legendsayantan.github.io" } } diff --git a/domains/legz.json b/domains/legz.json new file mode 100644 index 000000000..7edf7ceed --- /dev/null +++ b/domains/legz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LegzDev", + "email": "legzdev@proton.me" + }, + "records": { + "A": ["152.206.177.227"] + } +} diff --git a/domains/leha.json b/domains/leha.json index 93f5aed49..ec6ae3046 100644 --- a/domains/leha.json +++ b/domains/leha.json @@ -6,7 +6,7 @@ "email": "pezleha@duck.com", "twitter": "pezleha2" }, - "record": { + "records": { "CNAME": "leha-code.github.io" } } diff --git a/domains/lemon.json b/domains/lemon.json deleted file mode 100644 index 8cdfa5ef6..000000000 --- a/domains/lemon.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "PassiveLemon", - "email": "lemonl3mn@protonmail.com" - }, - "record": { - "CNAME": "passivelemon.github.io" - } -} diff --git a/domains/lengyandong.json b/domains/lengyandong.json index a637193aa..4b5f17762 100644 --- a/domains/lengyandong.json +++ b/domains/lengyandong.json @@ -3,7 +3,7 @@ "username": "lengyandong", "email": "3052868271@qq.com" }, - "record": { + "records": { "CNAME": "me.lengyandong.eu.org" } } diff --git a/domains/lenicyl.json b/domains/lenicyl.json index 78dcec555..86871f4e6 100644 --- a/domains/lenicyl.json +++ b/domains/lenicyl.json @@ -3,7 +3,7 @@ "username": "Lenicyl", "discord": "HUT#5940" }, - "record": { + "records": { "CNAME": "lenicyl.github.io" } } diff --git a/domains/leo.json b/domains/leo.json index 24046e7b9..5d6ab9c9b 100644 --- a/domains/leo.json +++ b/domains/leo.json @@ -1,12 +1,11 @@ { "description": "Leonard's Personal Website", - "repo": "https://github.com/LeonardSSH", "owner": { "username": "LeonardSSH", "email": "leonardssh22@gmail.com", "twitter": "leonardssh22" }, - "record": { + "records": { "URL": "https://leonard.sh" } } diff --git a/domains/leolb.json b/domains/leolb.json new file mode 100644 index 000000000..a651268d8 --- /dev/null +++ b/domains/leolb.json @@ -0,0 +1,11 @@ +{ + "description": "Leo LB Portfolio", + "repo": "https://github.com/leo-lb29", + "owner": { + "username": "leo-lb29", + "email": "postyourbot@gmail.com" + }, + "records": { + "URL": "https://leolb.wagoo.app" + } +} diff --git a/domains/leon.json b/domains/leon.json new file mode 100644 index 000000000..3ba7e3cae --- /dev/null +++ b/domains/leon.json @@ -0,0 +1,11 @@ +{ + "description": "Leon is a dev!", + "owner": { + "username": "itsLeonB", + "email": "ellionblessan@gmail.com" + }, + "records": { + "CNAME": "itsLeonB.github.io" + }, + "proxied": true +} diff --git a/domains/leon3321.json b/domains/leon3321.json index 10c188581..7f1fe1a33 100644 --- a/domains/leon3321.json +++ b/domains/leon3321.json @@ -3,7 +3,7 @@ "username": "leon332157", "email": "leon332157@gmail.com" }, - "record": { + "records": { "CNAME": "leon332157.is-a.dev" } } diff --git a/domains/leon332157.json b/domains/leon332157.json index 25f13ae98..7d331dc03 100644 --- a/domains/leon332157.json +++ b/domains/leon332157.json @@ -3,7 +3,7 @@ "username": "leon332157", "email": "leon332157@gmail.com" }, - "record": { + "records": { "CNAME": "leon3321.pages.dev" } } diff --git a/domains/leska.json b/domains/leska.json index f46f42f06..bb8286139 100644 --- a/domains/leska.json +++ b/domains/leska.json @@ -3,7 +3,7 @@ "username": "JustLeska", "email": "leskalouis@hotmail.com" }, - "record": { + "records": { "URL": "https://guns.lol/leska" } } diff --git a/domains/lester.json b/domains/lester.json new file mode 100644 index 000000000..e5c87631e --- /dev/null +++ b/domains/lester.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LSTR", + "email": "lesternr@gmail.com" + }, + "records": { + "CNAME": "lstr.github.io" + } +} diff --git a/domains/letters.json b/domains/letters.json index cdb57547d..99a724ffb 100644 --- a/domains/letters.json +++ b/domains/letters.json @@ -3,7 +3,7 @@ "username": "keli5", "email": "keli5.letters@gmail.com" }, - "record": { + "records": { "CNAME": "keli5.duckdns.org" } } diff --git a/domains/letum.json b/domains/letum.json index c7060b934..e6fe1b630 100644 --- a/domains/letum.json +++ b/domains/letum.json @@ -3,7 +3,7 @@ "username": "amoramicae", "discord": "1252631745514180790" }, - "record": { + "records": { "CNAME": "letum.pages.dev" } } diff --git a/domains/lev.json b/domains/lev.json index dcd9481c7..4ca1edb0f 100644 --- a/domains/lev.json +++ b/domains/lev.json @@ -3,7 +3,7 @@ "username": "skyallaround", "email": "jr1264464@gmail.com" }, - "record": { + "records": { "CNAME": "basicscript.glitch.me" } } diff --git a/domains/levani.json b/domains/levani.json index 86ce4423d..63733a8aa 100644 --- a/domains/levani.json +++ b/domains/levani.json @@ -3,7 +3,7 @@ "username": "LevaniVashadze", "email": "vashadzelevani11@gmail.com" }, - "record": { + "records": { "CNAME": "levanivashadze.github.io" } } diff --git a/domains/levi.json b/domains/levi.json index bcc100bd3..780265fb8 100644 --- a/domains/levi.json +++ b/domains/levi.json @@ -6,7 +6,7 @@ "email": "levi.arista@gmail.com", "twitter": "leviarista" }, - "record": { + "records": { "URL": "https://leviarista.github.io/resume" } } diff --git a/domains/levisurely.json b/domains/levisurely.json index dcd9481c7..4ca1edb0f 100644 --- a/domains/levisurely.json +++ b/domains/levisurely.json @@ -3,7 +3,7 @@ "username": "skyallaround", "email": "jr1264464@gmail.com" }, - "record": { + "records": { "CNAME": "basicscript.glitch.me" } } diff --git a/domains/levon.json b/domains/levon.json new file mode 100644 index 000000000..cd24455aa --- /dev/null +++ b/domains/levon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "levon-d", + "email": "mycroft2003@gmail.com" + }, + "records": { + "CNAME": "levon-d.github.io" + } +} diff --git a/domains/levraiardox.json b/domains/levraiardox.json index 24d080fbb..e87012266 100644 --- a/domains/levraiardox.json +++ b/domains/levraiardox.json @@ -3,7 +3,7 @@ "username": "LeVraiArdox", "email": "adrian.arjoca18@gmail.com" }, - "record": { + "records": { "CNAME": "levraiardox.github.io" } } diff --git a/domains/lewdhutao.json b/domains/lewdhutao.json index a7f4fb43b..50184d9ee 100644 --- a/domains/lewdhutao.json +++ b/domains/lewdhutao.json @@ -3,7 +3,7 @@ "username": "LewdHuTao", "email": "lewdhutao@shittybot.xyz" }, - "record": { + "records": { "CNAME": "lewdhutao.pages.dev" } } diff --git a/domains/lewe.json b/domains/lewe.json index 1761c237f..86a38c5ed 100644 --- a/domains/lewe.json +++ b/domains/lewe.json @@ -3,7 +3,7 @@ "username": "lewe2k6", "email": "lewe2k6@gmail.com" }, - "record": { + "records": { "URL": "https://xn--a-0ym.vn" } } diff --git a/domains/lewis.json b/domains/lewis.json index 059c13d49..997b02c56 100644 --- a/domains/lewis.json +++ b/domains/lewis.json @@ -3,7 +3,7 @@ "username": "jsJack", "email": "hello@jackperry.co" }, - "record": { + "records": { "URL": "https://raybould.co" } } diff --git a/domains/lexufybot.json b/domains/lexufybot.json index 2f35b82ba..cb7cc9c5b 100644 --- a/domains/lexufybot.json +++ b/domains/lexufybot.json @@ -3,7 +3,7 @@ "username": "alidexter001", "email": "dexter.ali001@gmail.com" }, - "record": { + "records": { "A": ["45.11.229.211"] } } diff --git a/domains/lexy.json b/domains/lexy.json new file mode 100644 index 000000000..4ff642811 --- /dev/null +++ b/domains/lexy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Olalexy1", + "discord": "olalexy1" + }, + "records": { + "CNAME": "lexy-portfolio-frontend.vercel.app" + } +} diff --git a/domains/lezli01.json b/domains/lezli01.json new file mode 100644 index 000000000..424dae995 --- /dev/null +++ b/domains/lezli01.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lezli01", + "email": "lezli01@gmail.com" + }, + "records": { + "CNAME": "lezli01.github.io" + } +} diff --git a/domains/lf.json b/domains/lf.json index 811f44f5a..10675dfe0 100644 --- a/domains/lf.json +++ b/domains/lf.json @@ -3,7 +3,7 @@ "username": "lfom", "matrix": "@lfdev:envs.net" }, - "record": { + "records": { "URL": "https://lfdev.envs.net" } } diff --git a/domains/lgstfn.json b/domains/lgstfn.json index 7c4cbe3f7..454033a9d 100644 --- a/domains/lgstfn.json +++ b/domains/lgstfn.json @@ -3,10 +3,9 @@ "username": "lungustefan", "email": "hi@lungustefan.ro", "phone": "(+40) 0770618625", - "discord": "753179409682399332", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZerVkVuk5RE7iT8ymXVcKhUkihyAdAbufacrfxq1u7NKQ4Hd0_PbY5FYDAR5uuVd-sCe7fOztiSKV7f9q1OI4HNGDqQxiaWqzom_lQsrIMW-gWUDsBG4Vo8gsq0wrw2th797i-JfsXy2crWaeXlX7X1kROV5KZhGwlSusnUrMp3jlN-uUM3b4hxUyEs3grbh4BiZ9CWShm-kLUs572OBpMigXh3aO0DcUl-BdYdlpSEdRQe8zwylJbFnetxG3qBaMcciGwImixY6V4qaqFwH18isGjDknsHB2WvXM8ekMZmSxgMyRtv1VRSbC22grzMeBazgWoj3x65KU3Z8C7KNmw.w-d8n6WalLAvFcWHqlRkcw.W7GJTwpNRB9pUehhfBXVlkOR1knSNSjvJWeDViV6u2h6AyBdwyaAyILEQzC5ishw0f209VgdyaCqocC7nJp_ZjWjAfcyw0ICLiUXM37Sn3Q.xQOo4RjPMh6dBbWiF1Polw" + "discord": "753179409682399332" }, - "record": { + "records": { "NS": ["aron.ns.cloudflare.com", "dilbert.ns.cloudflare.com"] } } diff --git a/domains/lhjhminecraft.json b/domains/lhjhminecraft.json index e25b2fbb2..e3498ba3b 100644 --- a/domains/lhjhminecraft.json +++ b/domains/lhjhminecraft.json @@ -3,7 +3,7 @@ "username": "watergotspilled", "email": "sc467209@g.risd.org" }, - "record": { + "records": { "URL": "https://size-origin.gl.joinmc.link" } } diff --git a/domains/lhycerie.json b/domains/lhycerie.json new file mode 100644 index 000000000..95b25bad6 --- /dev/null +++ b/domains/lhycerie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lhycerie", + "email": "lhycerie@gmail.com" + }, + "records": { + "CNAME": "lhycerie.github.io" + } +} diff --git a/domains/liam.json b/domains/liam.json new file mode 100644 index 000000000..2f5e931a0 --- /dev/null +++ b/domains/liam.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "liamatienza", + "email": "liamdev@duck.com" + }, + "records": { + "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" + }, + "proxied": true +} diff --git a/domains/liamgenjs.json b/domains/liamgenjs.json index 914692b67..171872237 100644 --- a/domains/liamgenjs.json +++ b/domains/liamgenjs.json @@ -3,7 +3,7 @@ "username": "liam-gen", "email": "liamgen.js@proton.me" }, - "record": { + "records": { "CNAME": "liamgenjs.pages.dev" } } diff --git a/domains/liancg.json b/domains/liancg.json index 6d082e005..e04cee837 100644 --- a/domains/liancg.json +++ b/domains/liancg.json @@ -5,7 +5,7 @@ "username": "liancastellon", "email": "liancg@gmail.com" }, - "record": { + "records": { "CNAME": "liancastellon.github.io" } } diff --git a/domains/liaobots.json b/domains/liaobots.json index 6bc57f038..e777fe23d 100644 --- a/domains/liaobots.json +++ b/domains/liaobots.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/liboot.json b/domains/liboot.json new file mode 100644 index 000000000..a848c0c47 --- /dev/null +++ b/domains/liboot.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "libootnet" + }, + "records": { + "URL": "https://github.com/libootnet" + } +} diff --git a/domains/libresplit-resources.loomeh.json b/domains/libresplit-resources.loomeh.json new file mode 100644 index 000000000..61d9dc816 --- /dev/null +++ b/domains/libresplit-resources.loomeh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/libresplit.loomeh.json b/domains/libresplit.loomeh.json new file mode 100644 index 000000000..61d9dc816 --- /dev/null +++ b/domains/libresplit.loomeh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/life.qtitpc.json b/domains/life.qtitpc.json index 307fc309b..6133aa7f9 100644 --- a/domains/life.qtitpc.json +++ b/domains/life.qtitpc.json @@ -3,7 +3,7 @@ "username": "qtungnui07", "email": "qtung.07.dt@gmail.com" }, - "record": { + "records": { "URL": "https://qtitpc.notion.site/qtung-s-works-a55a20d0d4604f0b95c5ffeaefee695a" } } diff --git a/domains/light.json b/domains/light.json deleted file mode 100644 index 652b1c7e1..000000000 --- a/domains/light.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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 index 87b3fc874..a03371106 100644 --- a/domains/lighty.json +++ b/domains/lighty.json @@ -4,13 +4,8 @@ "email": "trapizoids543@gmail.com", "discord": "1108616541739700284" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/ligmatv.json b/domains/ligmatv.json deleted file mode 100644 index 12be4ab97..000000000 --- a/domains/ligmatv.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This subdomain will i use for my LIGMATV's blog website.", - "repo": "https://github.com/LIGMATV/LIGMATV.github.io", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "CNAME": "ligmatv.github.io" - } -} diff --git a/domains/lihua.json b/domains/lihua.json index 8f04a6d66..702d3b8f9 100644 --- a/domains/lihua.json +++ b/domains/lihua.json @@ -3,7 +3,7 @@ "username": "wanglihuaya", "email": "me@lihua.dev" }, - "record": { + "records": { "CNAME": "lihua.dev" } } diff --git a/domains/lihun.json b/domains/lihun.json index 9a600f651..a2e5c40ca 100644 --- a/domains/lihun.json +++ b/domains/lihun.json @@ -3,7 +3,7 @@ "username": "mushlihun", "email": "muslihun@untan.ac.id" }, - "record": { + "records": { "CNAME": "mushlihun.github.io" } } diff --git a/domains/liju.json b/domains/liju.json index c509d7979..fc8155a00 100644 --- a/domains/liju.json +++ b/domains/liju.json @@ -5,7 +5,7 @@ "username": "lijujayakumar", "email": "lijusankar@gmail.com" }, - "record": { + "records": { "CNAME": "lijujayakumar.github.io" } } diff --git a/domains/lilac.json b/domains/lilac.json index 76ce024cf..50f0c0d25 100644 --- a/domains/lilac.json +++ b/domains/lilac.json @@ -6,7 +6,7 @@ "email": "cloudberry1337@gmail.com", "twitter": "lilachvh" }, - "record": { + "records": { "CNAME": "capoxxo.github.io" } } diff --git a/domains/lilith.json b/domains/lilith.json index 0bcee95d3..1f2a941b2 100644 --- a/domains/lilith.json +++ b/domains/lilith.json @@ -3,7 +3,7 @@ "username": "LilithLovesYou", "email": "dev.cutestloli@gmail.com" }, - "record": { + "records": { "CNAME": "lilithlovesyou.github.io" } } diff --git a/domains/lilitha-mdlalana.json b/domains/lilitha-mdlalana.json new file mode 100644 index 000000000..e372e97b9 --- /dev/null +++ b/domains/lilitha-mdlalana.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio website", + "repo": "https://github.com/lilitha-mdlalana/nuxt_portfolio", + "owner": { + "username": "lilitha-mdlalana", + "email": "innomdlalana@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/limbanitejal.json b/domains/limbanitejal.json index 9e6fcd8f8..092d1853c 100644 --- a/domains/limbanitejal.json +++ b/domains/limbanitejal.json @@ -4,7 +4,7 @@ "owner": { "username": "limbanitejal" }, - "record": { + "records": { "CNAME": "limbanitejal.github.io" } } diff --git a/domains/limeware.json b/domains/limeware.json new file mode 100644 index 000000000..626ba2af8 --- /dev/null +++ b/domains/limeware.json @@ -0,0 +1,11 @@ +{ + "description": "LimeWare's Official site", + "repo": "https://github.com/dunno8489/dunno8489.github.io", + "owner": { + "username": "dunno8489" + }, + "records": { + "CNAME": "dunno8489.github.io" + }, + "proxied": true +} diff --git a/domains/linbuxiao.json b/domains/linbuxiao.json index dbcceb8f3..b1872d0c3 100644 --- a/domains/linbuxiao.json +++ b/domains/linbuxiao.json @@ -5,7 +5,7 @@ "username": "linbuxiao", "email": "linbuxiao@gmail.com" }, - "record": { + "records": { "CNAME": "linbuxiao.github.io" } } diff --git a/domains/lingle.json b/domains/lingle.json index 05c997414..ca0775d58 100644 --- a/domains/lingle.json +++ b/domains/lingle.json @@ -6,7 +6,7 @@ "email": "gideon.lingle2023@gmail.com", "twitter": "LingleDev" }, - "record": { + "records": { "CNAME": "lingledev.github.io" } } diff --git a/domains/linhtutkyaw.json b/domains/linhtutkyaw.json new file mode 100644 index 000000000..8198c620f --- /dev/null +++ b/domains/linhtutkyaw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "linhtutkyawdev", + "email": "linhtutkyaw.dev@gmail.com" + }, + "records": { + "CNAME": "linhtutkyawdev.vercel.app" + } +} diff --git a/domains/link-to.lver.json b/domains/link-to.lver.json new file mode 100644 index 000000000..1821f501f --- /dev/null +++ b/domains/link-to.lver.json @@ -0,0 +1,11 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "records": { + "A": ["52.72.49.79"] + }, + "proxied": true +} diff --git a/domains/link.krunch.json b/domains/link.krunch.json deleted file mode 100644 index 75476d8e7..000000000 --- a/domains/link.krunch.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "RadioactivePotato", - "discord": "krunchiekrunch._." - }, - "record": { - "CNAME": "cname.short.io" - } -} diff --git a/domains/link.vamtic.json b/domains/link.vamtic.json index c1ffc9e53..975ce325c 100644 --- a/domains/link.vamtic.json +++ b/domains/link.vamtic.json @@ -3,7 +3,7 @@ "username": "vamtic", "email": "vamtic@yahoo.com" }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/link.yxz.json b/domains/link.yxz.json index caf22b944..be4ed8bb8 100644 --- a/domains/link.yxz.json +++ b/domains/link.yxz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yz9551", - "discord": "yz9551" - }, - "record": { - "CNAME": "track.smtp2go.net" - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "records": { + "CNAME": "track.smtp2go.net" + } } diff --git a/domains/linkman.json b/domains/linkman.json index a855040ca..b582d2587 100644 --- a/domains/linkman.json +++ b/domains/linkman.json @@ -1,11 +1,11 @@ { - "description": "Website to put information about my projects", - "repo": "https://github.com/linkman8912/website", - "owner": { - "username": "linkman8912", - "email": "linkman8912@proton.me" - }, - "record": { - "CNAME": "website-1i7.pages.dev" - } + "description": "Website to put information about my projects", + "repo": "https://github.com/linkman8912/website", + "owner": { + "username": "linkman8912", + "email": "linkman8912@proton.me" + }, + "records": { + "CNAME": "website-1i7.pages.dev" + } } diff --git a/domains/linkr.json b/domains/linkr.json index 12cc5d437..096380a88 100644 --- a/domains/linkr.json +++ b/domains/linkr.json @@ -3,7 +3,7 @@ "username": "devlinkr", "email": "magicgamerdiscord@gmail.com" }, - "record": { + "records": { "URL": "https://sites.google.com/view/linkrdiscord" } } diff --git a/domains/links.ikram.json b/domains/links.ikram.json new file mode 100644 index 000000000..81207b972 --- /dev/null +++ b/domains/links.ikram.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/links.ryanbaig.json b/domains/links.ryanbaig.json new file mode 100644 index 000000000..79b7e763b --- /dev/null +++ b/domains/links.ryanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RyanBaig", + "discord": "757475933170040893" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/links.trung.json b/domains/links.trung.json index b99730c4e..488318c9f 100644 --- a/domains/links.trung.json +++ b/domains/links.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/links.vulcanocraft.json b/domains/links.vulcanocraft.json new file mode 100644 index 000000000..73134d14f --- /dev/null +++ b/domains/links.vulcanocraft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VulcanoSoftware", + "discord": "814891541205876767" + }, + "records": { + "CNAME": "vulcanolinks.pages.dev" + } +} diff --git a/domains/linksrayan.json b/domains/linksrayan.json index ca710c52f..985fc4ee2 100644 --- a/domains/linksrayan.json +++ b/domains/linksrayan.json @@ -5,7 +5,7 @@ "username": "linkssyedrayan", "email": "kgold3796@gmail.com" }, - "record": { + "records": { "CNAME": "linkssyedrayan.github.io" } } diff --git a/domains/linkup.json b/domains/linkup.json index 859000847..4d9544b57 100644 --- a/domains/linkup.json +++ b/domains/linkup.json @@ -3,7 +3,7 @@ "username": "Novampr", "email": "LimeDEV8756@gmail.com" }, - "record": { + "records": { "A": ["86.27.73.108"] } } diff --git a/domains/linky.json b/domains/linky.json index a3b5338ed..f52495b02 100644 --- a/domains/linky.json +++ b/domains/linky.json @@ -3,7 +3,7 @@ "username": "Grafaffel", "email": "jannis170@icloud.com" }, - "record": { + "records": { "CNAME": "linky.jannisfischer170.workers.dev" } } diff --git a/domains/linstall.json b/domains/linstall.json index 3d2753ff3..f0c31b9b4 100644 --- a/domains/linstall.json +++ b/domains/linstall.json @@ -3,7 +3,7 @@ "username": "riotoff", "discord": "1040929084684902460" }, - "record": { + "records": { "CNAME": "riotoff.github.io" } } diff --git a/domains/linusx.json b/domains/linusx.json index 41d2f010e..c14585b1e 100644 --- a/domains/linusx.json +++ b/domains/linusx.json @@ -5,7 +5,7 @@ "username": "linuzzx", "email": "galaxylinus@gmail.com" }, - "record": { + "records": { "CNAME": "linuzzx.github.io" } } diff --git a/domains/linux.formuna.json b/domains/linux.formuna.json index 2e471269e..96813dc05 100644 --- a/domains/linux.formuna.json +++ b/domains/linux.formuna.json @@ -3,7 +3,7 @@ "username": "FormunaGit", "discord": "754657845563097108" }, - "record": { + "records": { "CNAME": "rimwiki.vercel.app" } } diff --git a/domains/linux.json b/domains/linux.json index ebf6a86ee..6850bed2e 100644 --- a/domains/linux.json +++ b/domains/linux.json @@ -5,7 +5,7 @@ "username": "linux", "email": "linuxforall32@proton.me" }, - "record": { + "records": { "CNAME": "linuxforall3.github.io" } } diff --git a/domains/linuxlover.json b/domains/linuxlover.json index f33585f7d..2cc5b7eeb 100644 --- a/domains/linuxlover.json +++ b/domains/linuxlover.json @@ -5,7 +5,7 @@ "username": "winvistalover", "discord": "952930824351780904" }, - "record": { + "records": { "CNAME": "winvistalover.github.io" } } diff --git a/domains/lio.json b/domains/lio.json index 4a490624d..ebf9d0aec 100644 --- a/domains/lio.json +++ b/domains/lio.json @@ -5,7 +5,7 @@ "username": "hokkqi", "email": "lio@werewolf.design" }, - "record": { + "records": { "URL": "https://himbo.cat" } } diff --git a/domains/lioo.json b/domains/lioo.json new file mode 100644 index 000000000..90427eb8d --- /dev/null +++ b/domains/lioo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lio10jr", + "email": "kevinzambrano593@gmail.com" + }, + "records": { + "URL": "https://github.com/Lio10jr" + } +} diff --git a/domains/lipi.json b/domains/lipi.json index 320f75c9d..a979d1764 100644 --- a/domains/lipi.json +++ b/domains/lipi.json @@ -5,7 +5,7 @@ "username": "ReticentFacade", "email": "lipisharma2911@gmail.com" }, - "record": { + "records": { "CNAME": "reticentfacade.github.io" } } diff --git a/domains/liq.json b/domains/liq.json index 17595f9e5..bae155888 100644 --- a/domains/liq.json +++ b/domains/liq.json @@ -1,11 +1,9 @@ { "description": "Learning something new everyday", - "repo": "https://github.com/DevLiQ", "owner": { - "username": "DevLiQ", - "email": "21136062+devliq@users.noreply.github.com" + "username": "DevLiQ" }, - "record": { + "records": { "CNAME": "devliq.github.io" } } diff --git a/domains/lit.lver.json b/domains/lit.lver.json new file mode 100644 index 000000000..5f765b608 --- /dev/null +++ b/domains/lit.lver.json @@ -0,0 +1,16 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "records": { + "URL": "https://linktr.ee/lverboy" + }, + "redirect_config": { + "custom_paths": { + "/home": "https://lver.is-a.dev/" + }, + "redirect_paths": true + } +} diff --git a/domains/litmus.json b/domains/litmus.json index 057428418..af79ea2cd 100644 --- a/domains/litmus.json +++ b/domains/litmus.json @@ -3,7 +3,7 @@ "username": "litmus-zhang", "email": "abdulsalamlukmon9@gmail.com" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/littletw.json b/domains/littletw.json index 98f620791..38b638678 100644 --- a/domains/littletw.json +++ b/domains/littletw.json @@ -3,7 +3,7 @@ "username": "littletheworld", "email": "littlehaofficial@gmail.com" }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/live.json b/domains/live.json index d374d32ab..3bd5d7241 100644 --- a/domains/live.json +++ b/domains/live.json @@ -3,7 +3,7 @@ "username": "tomgxz", "email": "tomgxz138@gmail.com" }, - "record": { + "records": { "CNAME": "oyqkpa3p.up.railway.app" } } diff --git a/domains/lizhenghao.json b/domains/lizhenghao.json index 8a638e72a..77969c0c4 100644 --- a/domains/lizhenghao.json +++ b/domains/lizhenghao.json @@ -3,7 +3,7 @@ "username": "squareful", "email": "litiantian@ustc.edu" }, - "record": { + "records": { "CNAME": "blog.maikebuke.com" } } diff --git a/domains/ljean.json b/domains/ljean.json new file mode 100644 index 000000000..11fb480eb --- /dev/null +++ b/domains/ljean.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Granpiecito", + "email": "jeanpierresperrymanaleman@gmail.com", + "discord": "294318911791562752" + }, + "records": { + "CNAME": "portfolio-astro-fawn-ten.vercel.app" + } +} diff --git a/domains/lkmw.json b/domains/lkmw.json index 0da759beb..bec006a17 100644 --- a/domains/lkmw.json +++ b/domains/lkmw.json @@ -4,7 +4,7 @@ "email": "leo.wilkin10@gmail.com", "discord": "712341552537796629" }, - "record": { + "records": { "CNAME": "wilkin.xyz" } } diff --git a/domains/lknows.json b/domains/lknows.json index c3a80e66a..715112745 100644 --- a/domains/lknows.json +++ b/domains/lknows.json @@ -6,7 +6,7 @@ "email": "easyg53@gmail.com", "discord": "Ne bije al' ubija u pojam#2020" }, - "record": { + "records": { "CNAME": "lknows.github.io" } } diff --git a/domains/llama.json b/domains/llama.json index 417437b1d..0dba44fbc 100644 --- a/domains/llama.json +++ b/domains/llama.json @@ -5,7 +5,7 @@ "username": "LlamaLad7", "email": "l3gomindstorms@gmail.com" }, - "record": { + "records": { "CNAME": "llamalad7.github.io" } } diff --git a/domains/llanero.json b/domains/llanero.json index 237de236e..cd4b058d7 100644 --- a/domains/llanero.json +++ b/domains/llanero.json @@ -6,7 +6,7 @@ "email": "vasquez.robert.andres@gmail.com", "twitter": "robertandres14" }, - "record": { + "records": { "CNAME": "robert-ds.github.io" } } diff --git a/domains/llm.fawwaz.json b/domains/llm.fawwaz.json index f3ce99921..5bad92d46 100644 --- a/domains/llm.fawwaz.json +++ b/domains/llm.fawwaz.json @@ -3,7 +3,7 @@ "username": "fawwazanvilen", "email": "fawwazanvi@gmail.com" }, - "record": { + "records": { "A": ["103.16.117.247"] } } diff --git a/domains/llucx.json b/domains/llucx.json new file mode 100644 index 000000000..95f7e2657 --- /dev/null +++ b/domains/llucx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "llucxdev", + "email": "puertesarrue@gmail.com", + "discord": "lluuuc_12" + }, + "records": { + "CNAME": "portfolio-llucx.vercel.app" + } +} diff --git a/domains/lndr2501.json b/domains/lndr2501.json index 92e436631..f393585cb 100644 --- a/domains/lndr2501.json +++ b/domains/lndr2501.json @@ -3,7 +3,7 @@ "username": "Lndr2501" }, "repo": "https://github.com/Lndr2501/Lndr2501", - "record": { + "records": { "CNAME": "lndr2501.github.io" } } diff --git a/domains/lnfnunes.json b/domains/lnfnunes.json index 063c01ba1..72229a1e5 100644 --- a/domains/lnfnunes.json +++ b/domains/lnfnunes.json @@ -1,11 +1,10 @@ { "description": "Little Big Nunes", - "repo": "https://github.com/lnfnunes", "owner": { "username": "lnfnunes", "email": "dr1design@gmail.com" }, - "record": { + "records": { "URL": "https://lnfnunes.com.br" } } diff --git a/domains/lnk.json b/domains/lnk.json index ae1b6f1d0..ed5199cd4 100644 --- a/domains/lnk.json +++ b/domains/lnk.json @@ -4,7 +4,7 @@ "email": "littlehaofficial@gmail.com", "discord": "810846876592242719" }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/lnminh1411.json b/domains/lnminh1411.json index b4a38db99..43b9e42d1 100644 --- a/domains/lnminh1411.json +++ b/domains/lnminh1411.json @@ -5,13 +5,8 @@ "email": "nhatminh.forwarding@gmail.com", "discord": "cvn2484" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=nhatminh.forwarding@gmail.com" } diff --git a/domains/lobo.json b/domains/lobo.json new file mode 100644 index 000000000..f2e6a9ba3 --- /dev/null +++ b/domains/lobo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lobooooooo14", + "discord": "783120232134082580" + }, + "records": { + "CNAME": "olobo.vercel.app" + } +} diff --git a/domains/locionic.json b/domains/locionic.json new file mode 100644 index 000000000..eaa9344f4 --- /dev/null +++ b/domains/locionic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "locionic", + "email": "noone000a@gmail.com" + }, + "records": { + "CNAME": "portfolio-blog-locionic.vercel.app" + } +} diff --git a/domains/logan.json b/domains/logan.json index cef72e17d..13f29eb3d 100644 --- a/domains/logan.json +++ b/domains/logan.json @@ -6,7 +6,7 @@ "email": "logantheduderox@gmail.com", "twitter": "LoganTheDudeRox" }, - "record": { + "records": { "CNAME": "loganlikestocode.github.io" } } diff --git a/domains/lohit.json b/domains/lohit.json index b76800a08..69a8eab08 100644 --- a/domains/lohit.json +++ b/domains/lohit.json @@ -4,9 +4,12 @@ "email": "lohitkolluri@gmail.com", "discord": "drxven" }, - "record": { + "records": { "A": ["76.76.21.21"], "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"], - "TXT": ["v=spf1 include:zohomail.in ~all", "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDk3bjKjaUSMk1CmR3dk3zbYxepsBEwSlM5Sz7f0IMEQICvmR4rv3O3dnT+2JmzV9sr/97sqQpucCVDJaJrnLB4XlFCvgJfwUTU8TX4CPSnWOJ4P7cxrfaMRMZARJoj31m81NB/eVArLcCZFZ/wprNeiOMhPGDL4B2lZRZkDts63wIDAQAB"] + "TXT": [ + "v=spf1 include:zohomail.in ~all", + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDk3bjKjaUSMk1CmR3dk3zbYxepsBEwSlM5Sz7f0IMEQICvmR4rv3O3dnT+2JmzV9sr/97sqQpucCVDJaJrnLB4XlFCvgJfwUTU8TX4CPSnWOJ4P7cxrfaMRMZARJoj31m81NB/eVArLcCZFZ/wprNeiOMhPGDL4B2lZRZkDts63wIDAQAB" + ] } } diff --git a/domains/loinguyende.json b/domains/loinguyende.json index b6be86811..1f9d69057 100644 --- a/domains/loinguyende.json +++ b/domains/loinguyende.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "loinguyen3108", - "email": "ntloic3tbt@gmail.com" - }, - "record": { - "CNAME": "my-second-brain-omega.vercel.app" - } + "owner": { + "username": "loinguyen3108", + "email": "ntloic3tbt@gmail.com" + }, + "records": { + "CNAME": "my-second-brain-omega.vercel.app" + } } diff --git a/domains/loisvelasco.json b/domains/loisvelasco.json index 8aa472f11..c3eb0d0d6 100644 --- a/domains/loisvelasco.json +++ b/domains/loisvelasco.json @@ -5,7 +5,7 @@ }, "description": "Blog && Portfolio", "repo": "https://github.com/loiSvelasco/loisvelasco.github.io", - "record": { + "records": { "CNAME": "loisvelasco.github.io" } } diff --git a/domains/lok.json b/domains/lok.json index b769c05ba..fb66d2a16 100644 --- a/domains/lok.json +++ b/domains/lok.json @@ -5,7 +5,7 @@ "username": "lokgubhaju", "email": "lok.gubhaju@gmail.com" }, - "record": { + "records": { "CNAME": "lokgubhaju.github.io" } } diff --git a/domains/lokito.json b/domains/lokito.json index 955fd9a33..eab23bfc8 100644 --- a/domains/lokito.json +++ b/domains/lokito.json @@ -3,7 +3,7 @@ "username": "Pedrito2010", "email": "pegomsan@gmail.com" }, - "record": { + "records": { "A": ["37.60.230.249"], "AAAA": ["2a02:c206:2162:9324::1"] } diff --git a/domains/lololand.json b/domains/lololand.json new file mode 100644 index 000000000..2fe6006f8 --- /dev/null +++ b/domains/lololand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pessonnier", + "email": "ihdpsidt.hpsi@gmail.com" + }, + "records": { + "URL": "https://pessonnier.github.io/doc/" + } +} diff --git a/domains/longnt.json b/domains/longnt.json new file mode 100644 index 000000000..d2832927c --- /dev/null +++ b/domains/longnt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simel0", + "email": "longnt2204+dev@gmail.com" + }, + "records": { + "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] + } +} diff --git a/domains/looker.json b/domains/looker.json index 965f70935..deb7b75c6 100644 --- a/domains/looker.json +++ b/domains/looker.json @@ -6,7 +6,7 @@ "email": "mohit2002ss@gmail.com", "twitter": "Iam_looker" }, - "record": { + "records": { "CNAME": "iamlooker.github.io" } } diff --git a/domains/loomeh.json b/domains/loomeh.json new file mode 100644 index 000000000..e695def2f --- /dev/null +++ b/domains/loomeh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "records": { + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], + "A": ["76.76.21.21"], + "TXT": ["v=spf1 include:zohomail.eu ~all", "zoho-verification=zb06679817.zmverify.zoho.eu"] + } +} diff --git a/domains/lordshoray.json b/domains/lordshoray.json index 046a85086..9ebfc7a9a 100644 --- a/domains/lordshoray.json +++ b/domains/lordshoray.json @@ -5,7 +5,7 @@ "username": "Shoray2002", "email": "shoryasinghall@gmail.com" }, - "record": { + "records": { "CNAME": "shoray2002.github.io" } } diff --git a/domains/loser.json b/domains/loser.json index 59a8bde05..182c6e9cb 100644 --- a/domains/loser.json +++ b/domains/loser.json @@ -4,13 +4,8 @@ "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" - ], + "records": { + "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 index 59a8bde05..182c6e9cb 100644 --- a/domains/losr.json +++ b/domains/losr.json @@ -4,13 +4,8 @@ "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" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=gus.creten@gmail.com" } diff --git a/domains/lostdir69.json b/domains/lostdir69.json index 9d4e91aa7..c9c5d8ae3 100644 --- a/domains/lostdir69.json +++ b/domains/lostdir69.json @@ -5,7 +5,7 @@ "username": "lostdir69", "email": "lostdirx69@gmail.com" }, - "record": { + "records": { "CNAME": "lostdir69.github.io" } } diff --git a/domains/louis.json b/domains/louis.json index c33277693..f181be053 100644 --- a/domains/louis.json +++ b/domains/louis.json @@ -5,7 +5,7 @@ "username": "louloudev59", "email": "louis.vasseur5@gmail.com" }, - "record": { + "records": { "CNAME": "louloudev59.github.io" } } diff --git a/domains/lousybot.vulpine.json b/domains/lousybot.vulpine.json index 055304260..08aee24a2 100644 --- a/domains/lousybot.vulpine.json +++ b/domains/lousybot.vulpine.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulpineFriend87", - "discord": "911268706112397392", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.r6syW7tNxlBa5qDUur4fffj5IZ_eJk-iOjUdEY0ltdKkaQb4_duvgZdvfL5vEgus1-X6ITfovRqqRdBe0QrCUz0cGZJApqG1mNatuxfLpIvsUs6NJXgUlvtlZNgEIs4quS9nTYkwaf2GN00Dw9HIWiI1kK9Xeka9pF5mawoiEBvUgkIkXIsIsN5o8_UP-RFCA1SPqRm9G5hsgGm4xH5XW8ujrZV-rO3DOq7Y1-3jg9Wu7pchKNWGB1gxwcNtYsJdwPt1rVVHUIRrwRTB0RO5iA-lOKD0uTb0YTqljQRraTm76ED6w5xOy5cF2-dAb93NOIh_BKK-kacf1PW5AzU_WA.0uyS8PftuzxGzQXJ0Ku2ZQ.AkMecMaSNp3FPFR-cVg6ZylxV9UUwjF1P0NIIZaiHyVtr-Xzl4qnbWebKMlZ3rMT8VusovJslRt5wAL8QaPuXBlznTy2drUJUuy6rZ-3l94.WUo41eNKnKL5vZMgoweWPw" + "discord": "911268706112397392" }, - "record": { + "records": { "A": ["69.197.135.205"] } } diff --git a/domains/loutre.json b/domains/loutre.json index 61f5b04f7..1d0a4600d 100644 --- a/domains/loutre.json +++ b/domains/loutre.json @@ -4,7 +4,7 @@ "email": "loutrinesk@gmail.com", "discord": "1222265538672201759" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/love.json b/domains/love.json deleted file mode 100644 index 2470a36ce..000000000 --- a/domains/love.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "zx155", - "email": "laiquanguy82@gmail.com" - }, - "record": { - "CNAME": "zx155.github.io" - } -} diff --git a/domains/lovis.json b/domains/lovis.json index dfb88d4d2..438edd1da 100644 --- a/domains/lovis.json +++ b/domains/lovis.json @@ -3,7 +3,7 @@ "username": "LoviRent", "email": "root@lovirent.eu" }, - "record": { + "records": { "URL": "https://lovirent.eu" } } diff --git a/domains/lovishprabhakar.json b/domains/lovishprabhakar.json index 99fb5a2ba..2263dd167 100644 --- a/domains/lovishprabhakar.json +++ b/domains/lovishprabhakar.json @@ -5,7 +5,7 @@ "username": "lovishprabhakar", "email": "2020010006574@gndu.ac.in" }, - "record": { + "records": { "CNAME": "lovishprabhakar.github.io" } } diff --git a/domains/lowsummer.json b/domains/lowsummer.json index 022d65a03..7c7307ae6 100644 --- a/domains/lowsummer.json +++ b/domains/lowsummer.json @@ -6,7 +6,7 @@ "email": "bressynickolas2007@gmail.com", "twitter": "agelofmor" }, - "record": { + "records": { "CNAME": "lowsummer.github.io" } } diff --git a/domains/lpkeates.json b/domains/lpkeates.json index 6e9b8c667..5391cb817 100644 --- a/domains/lpkeates.json +++ b/domains/lpkeates.json @@ -3,7 +3,7 @@ "username": "lpkeates", "email": "realuprising2005@gmail.com" }, - "record": { + "records": { "CNAME": "lpkeates.github.io" } } diff --git a/domains/lqhuy.json b/domains/lqhuy.json index 13a49f7ca..33952acd9 100644 --- a/domains/lqhuy.json +++ b/domains/lqhuy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Lqhuy125", - "email": "lequanghuy1252206@gmail.com" - }, - "record": { - "CNAME": "lqhuy125.github.io" - } + "owner": { + "username": "Lqhuy125", + "email": "lequanghuy1252206@gmail.com" + }, + "records": { + "CNAME": "lqhuy125.github.io" + } } diff --git a/domains/lraffdev.json b/domains/lraffdev.json new file mode 100644 index 000000000..9759b1046 --- /dev/null +++ b/domains/lraffdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LRaffDev", + "email": "raffaele.la.cerra@outlook.it" + }, + "records": { + "CNAME": "LRaffDev.vercel.app" + } +} diff --git a/domains/lrmn.json b/domains/lrmn.json index 7ea536d18..d7cc128b5 100644 --- a/domains/lrmn.json +++ b/domains/lrmn.json @@ -5,7 +5,7 @@ "username": "lrmn7", "email": "lrmnid@gmail.com" }, - "record": { + "records": { "CNAME": "lrmn7.github.io" } } diff --git a/domains/lrxrn.json b/domains/lrxrn.json index e8dfd851c..54316985d 100644 --- a/domains/lrxrn.json +++ b/domains/lrxrn.json @@ -3,7 +3,7 @@ "username": "lrxrn", "email": "meesum632@gmail.com" }, - "record": { + "records": { "CNAME": "lrxrn.github.io" } } diff --git a/domains/lsalas.json b/domains/lsalas.json new file mode 100644 index 000000000..ff1c80564 --- /dev/null +++ b/domains/lsalas.json @@ -0,0 +1,11 @@ +{ + "description": "Test website for lsalas.is-a.dev using hosintger.com", + "repo": "https://github.com/leondrisalas/Lsalas", + "owner": { + "username": "leondrisalas", + "email": "leondrisalas@gmail.com" + }, + "records": { + "A": ["82.180.174.177"] + } +} diff --git a/domains/ltln.json b/domains/ltln.json index 724d1f020..d22898dad 100644 --- a/domains/ltln.json +++ b/domains/ltln.json @@ -3,7 +3,7 @@ "username": "ltln", "email": "uguest17@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ltln" } } diff --git a/domains/lua.json b/domains/lua.json index b86e5309c..1b1d5a559 100644 --- a/domains/lua.json +++ b/domains/lua.json @@ -5,7 +5,7 @@ "email": "notxlua@gmail.com", "discord": "778436572835086366" }, - "record": { + "records": { "A": ["75.119.201.51"] } } diff --git a/domains/luanrt.json b/domains/luanrt.json index 2a08a4590..2fda875af 100644 --- a/domains/luanrt.json +++ b/domains/luanrt.json @@ -5,7 +5,7 @@ "username": "luanrt", "email": "luan.lrt4@gmail.com" }, - "record": { + "records": { "CNAME": "luanrt.github.io" } } diff --git a/domains/luanvu.json b/domains/luanvu.json new file mode 100644 index 000000000..1c4d83fab --- /dev/null +++ b/domains/luanvu.json @@ -0,0 +1,12 @@ +{ + "description": "My portfolio website", + "repo": "https://github.com/zthanhluan/luan.is-a.dev", + "owner": { + "username": "zthanhluan", + "email": "dientu078@gmail.com" + }, + "records": { + "CNAME": "luanvu.betaenglish.com.vn" + }, + "proxied": false +} diff --git a/domains/lucasbaronio.json b/domains/lucasbaronio.json new file mode 100644 index 000000000..6dd9c64fa --- /dev/null +++ b/domains/lucasbaronio.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio - Lucas Baronio", + "repo": "https://github.com/lucasbaronio/dev-portfolio", + "owner": { + "username": "lucasbaronio", + "email": "lbaronio20@hotmail.com" + }, + "records": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/lucasp.json b/domains/lucasp.json index 850086954..f218a222e 100644 --- a/domains/lucasp.json +++ b/domains/lucasp.json @@ -5,7 +5,7 @@ "username": "lucaspuntillo", "email": "puntillol@linuxmail.org" }, - "record": { + "records": { "CNAME": "lucaspuntillo.github.io" } } diff --git a/domains/lucaszick.json b/domains/lucaszick.json index 4be67fc05..0d5967ae2 100644 --- a/domains/lucaszick.json +++ b/domains/lucaszick.json @@ -5,7 +5,7 @@ "username": "lucaszick", "email": "lucasalexandrezick@gmail.com" }, - "record": { + "records": { "CNAME": "lucaszick.github.io" } } diff --git a/domains/lucen.json b/domains/lucen.json index cb66df3dc..607899e94 100644 --- a/domains/lucen.json +++ b/domains/lucen.json @@ -4,7 +4,7 @@ "email": "lucentiniagustin@hotmail.com", "discord": "202467820225822720" }, - "record": { + "records": { "CNAME": "lucendev.onrender.com" } } diff --git a/domains/lucky.json b/domains/lucky.json index 74106d469..097927752 100644 --- a/domains/lucky.json +++ b/domains/lucky.json @@ -4,7 +4,7 @@ "email": "lucky@luckyc.site", "discord": "275273443329441792" }, - "record": { + "records": { "CNAME": "luckyc.site" } } diff --git a/domains/lucvuro.json b/domains/lucvuro.json new file mode 100644 index 000000000..413299eb3 --- /dev/null +++ b/domains/lucvuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lucvuro", + "email": "lucvuit@gmail.com" + }, + "records": { + "CNAME": "my-portfolio-v2-iota.vercel.app" + } +} diff --git a/domains/lucy.json b/domains/lucy.json index ac69fef85..2c28fb822 100644 --- a/domains/lucy.json +++ b/domains/lucy.json @@ -6,7 +6,7 @@ "email": "lrmn.dev@gmail.com", "discord": "romanromannya" }, - "record": { + "records": { "CNAME": "hai-lucy.github.io" } } diff --git a/domains/ludolua.json b/domains/ludolua.json new file mode 100644 index 000000000..af75fef8b --- /dev/null +++ b/domains/ludolua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leduardoaraujo", + "email": "luizeduardo55062@gmail.com" + }, + "records": { + "CNAME": "leduardoaraujo.github.io" + } +} diff --git a/domains/ludwig.json b/domains/ludwig.json index 606be3c30..71646f757 100644 --- a/domains/ludwig.json +++ b/domains/ludwig.json @@ -3,7 +3,7 @@ "username": "ludwig7685", "email": "ludwig@courvix.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/luihh.json b/domains/luihh.json index a5fef5c3b..986264cfe 100644 --- a/domains/luihh.json +++ b/domains/luihh.json @@ -4,7 +4,18 @@ "email": "luihh@proton.me", "discord": "481268875586174986" }, - "record": { + "records": { "CNAME": "spreadsheet-fih.pages.dev" - } + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/luihh", + "/twitch": "https://www.twitch.tv/luihh23", + "/youtube": "https://www.youtube.com/@Luihh", + "/discord": "https://discord.gg/MdMFGJdUB6", + "/steam": "https://steamcommunity.com/id/Luihh23", + "/paypal": "https://www.paypal.com/paypalme/luihhdev" + } + }, + "proxied": true } diff --git a/domains/luis-ciber.json b/domains/luis-ciber.json index 4ba174760..8e4073eec 100644 --- a/domains/luis-ciber.json +++ b/domains/luis-ciber.json @@ -5,7 +5,7 @@ "username": "correaleyval", "email": "correaleyval@gmail.com" }, - "record": { + "records": { "CNAME": "correaleyval.github.io" } } diff --git a/domains/luisalejandrobf.json b/domains/luisalejandrobf.json index bea1591a8..7ed08decf 100644 --- a/domains/luisalejandrobf.json +++ b/domains/luisalejandrobf.json @@ -3,7 +3,7 @@ "username": "luisalejandrobf", "email": "luisalejandrobravoferreira@gmail.com" }, - "record": { + "records": { "A": ["76.76.21.21"], "TXT": "google-site-verification=sGmOAXQM9W1XepIo-CgWM_GlqEMW7z96P10kOC2p6fs" } diff --git a/domains/luisandre.json b/domains/luisandre.json index d6accd1e9..7891797ee 100644 --- a/domains/luisandre.json +++ b/domains/luisandre.json @@ -3,8 +3,7 @@ "username": "luis073094", "email": "luis073094@gmail.com" }, - "record": { - "URL": "https://portafolioluisandre.azurewebsites.net", - "A": ["20.206.176.7"] + "records": { + "URL": "https://portafolioluisandre.azurewebsites.net" } } diff --git a/domains/luisdanieltrejo.json b/domains/luisdanieltrejo.json new file mode 100644 index 000000000..c20ad70c4 --- /dev/null +++ b/domains/luisdanieltrejo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luisdanieltrejo", + "email": "luisdanieltrejo@gmail.com" + }, + "records": { + "CNAME": "luisdanieltrejo.github.io" + } +} diff --git a/domains/luisgerardovillanueva.json b/domains/luisgerardovillanueva.json new file mode 100644 index 000000000..3bad69061 --- /dev/null +++ b/domains/luisgerardovillanueva.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/GerardoVillla/portfolio", + "owner": { + "username": "GerardoVillla", + "email": "luismendezgd@gmail.com" + }, + "records": { + "CNAME": "portfolio-6f0jbiit2-gerardovilllas-projects.vercel.app" + } +} diff --git a/domains/luislemus.json b/domains/luislemus.json index 8955c57dc..27c66d7c8 100644 --- a/domains/luislemus.json +++ b/domains/luislemus.json @@ -3,7 +3,7 @@ "username": "lemux-one", "email": "lemux.one@gmail.com" }, - "record": { + "records": { "CNAME": "lemux-one.github.io" } } diff --git a/domains/luistena.json b/domains/luistena.json index 43a8fa800..b8ba69b00 100644 --- a/domains/luistena.json +++ b/domains/luistena.json @@ -6,7 +6,7 @@ "email": "des.luistena@hotmail.com", "twitter": "dev_luist" }, - "record": { + "records": { "CNAME": "devluist.github.io" } } diff --git a/domains/luiz.json b/domains/luiz.json new file mode 100644 index 000000000..900480932 --- /dev/null +++ b/domains/luiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luk4h", + "email": "luizmarcondes@lgvm.dev" + }, + "records": { + "CNAME": "lgvm.dev" + } +} diff --git a/domains/luizdario.json b/domains/luizdario.json new file mode 100644 index 000000000..c4098214a --- /dev/null +++ b/domains/luizdario.json @@ -0,0 +1,11 @@ +{ + "description": "Personal subdomain", + "repo": "https://github.com/luizearaujo/luizdario.github.io", + "owner": { + "username": "luizearaujo", + "email": "luiz.dario.araujo@hotmail.com" + }, + "records": { + "CNAME": "luizearaujo.github.io" + } +} diff --git a/domains/lukas.json b/domains/lukas.json index c4732b429..a5805bf00 100644 --- a/domains/lukas.json +++ b/domains/lukas.json @@ -6,7 +6,7 @@ "email": "luk.popp0@gmail.com", "twitter": "LukPopp0" }, - "record": { + "records": { "CNAME": "lukpopp.com" } } diff --git a/domains/lukass.json b/domains/lukass.json index 59a7eef8f..46e85c7a9 100644 --- a/domains/lukass.json +++ b/domains/lukass.json @@ -3,7 +3,7 @@ "username": "fraimerdelacruz", "email": "fraimerdelacruzjaziel@gmail.com" }, - "record": { + "records": { "CNAME": "0abf0073-04e2-485c-9752-042bae7c1074.id.repl.co" } } diff --git a/domains/luke.json b/domains/luke.json index 32705cb1c..f68d4c1ff 100644 --- a/domains/luke.json +++ b/domains/luke.json @@ -5,7 +5,7 @@ "username": "LukeIsHereToDevelop", "email": "LucaC@dynox.us" }, - "record": { + "records": { "CNAME": "lukeisheretodevelop.github.io" } } diff --git a/domains/luked.json b/domains/luked.json new file mode 100644 index 000000000..ba7f3686d --- /dev/null +++ b/domains/luked.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luked177", + "twitter": "lukedore_" + }, + "records": { + "CNAME": "cv-sand-zeta.vercel.app" + } +} diff --git a/domains/luki.json b/domains/luki.json index 853f0ea19..91dbd0ecf 100644 --- a/domains/luki.json +++ b/domains/luki.json @@ -5,7 +5,7 @@ "username": "lzif", "email": "lukyfriendly@gmail.com" }, - "record": { + "records": { "CNAME": "lzif.github.io" } } diff --git a/domains/lumi.json b/domains/lumi.json index 91d0b04f2..8440ec245 100644 --- a/domains/lumi.json +++ b/domains/lumi.json @@ -1,10 +1,9 @@ { "owner": { - "username": "itsFatlum", - "email": "", + "username": "itssfatlum", "discord": "563697359423406082" }, - "record": { + "records": { "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] diff --git a/domains/lumidevelopment.json b/domains/lumidevelopment.json index e8cd32dc5..06f35e3c4 100644 --- a/domains/lumidevelopment.json +++ b/domains/lumidevelopment.json @@ -1,10 +1,9 @@ { "owner": { "username": "itsFatlum", - "email": "", "discord": "563697359423406082" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/luminance.json b/domains/luminance.json index afd3545d6..d5ec00fca 100644 --- a/domains/luminance.json +++ b/domains/luminance.json @@ -1,10 +1,9 @@ { "owner": { "username": "cssean11", - "discord": "635828542894112789", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JT-OnctK0mhWXNuKCDoYEGParEBfGqf4T0umEUN_IHM9eE1xsKKri85e8Wndo5UNKLqBPolVBDlS5rc7Ja76vxhXfS8nPmOP-zQAQ6n5w0LvcAYd_Qcsgw-Q2I6AqqTVCGFwknmNo_ZyQcCdLVBfZAii2zrJc_xVBlaqfWL1_Lsb8ZfN1fhnpwMNokreKFz0DgZJHu8bDSo92_0ApTAUKlbspsITB_tJ_l0qRsDcWT7nxiitJZnE915vRW26O1NBJHeGertnhcgqpauhmRnvB9c4gHE6LTByZi2S5E-LqYrQ3ahbaZlVsJFVV_Sw76_0uKazn8O4-NzMsNkELa1xow.1Nhod2QcxcgQOQoTzkV7Ew.1kPNG5us6ZohtiL8RjOtsCn1bJ9J2WyfNH_qBYNTaCAtBaUM6uUkZIsKfuX3R436pIIkKzkkV46YO8SkoCp9TJ9T78J89rG2jYGKOjyO3Jg._Nho4PqrHloNlT5R_WUqdQ" + "discord": "635828542894112789" }, - "record": { + "records": { "CNAME": "9fcca875.luminance-1cu.pages.dev" } } diff --git a/domains/lumix.json b/domains/lumix.json index c09395975..8f8ce1f9a 100644 --- a/domains/lumix.json +++ b/domains/lumix.json @@ -4,7 +4,7 @@ "email": "bylumixxx@gmail.com", "discord": "828313756827516949" }, - "record": { + "records": { "CNAME": "lumix-cmq.pages.dev" } } diff --git a/domains/luna.json b/domains/luna.json index 327618679..fa174a4c4 100644 --- a/domains/luna.json +++ b/domains/luna.json @@ -3,7 +3,7 @@ "username": "KitsuneDev", "email": "kitsune@akitsune.dev" }, - "record": { + "records": { "URL": "https://akitsune.dev" } } diff --git a/domains/lunah.json b/domains/lunah.json index bb6a54ddf..bd7e883bd 100644 --- a/domains/lunah.json +++ b/domains/lunah.json @@ -1,11 +1,10 @@ { "description": "VPS hosted domain", - "repo": "https://github.com/piotr25691", "owner": { "username": "piotr25691", "discord": "b4.lunah" }, - "record": { + "records": { "A": ["157.173.204.104"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/lunarleaf.json b/domains/lunarleaf.json index 9768bda74..801dc4c0f 100644 --- a/domains/lunarleaf.json +++ b/domains/lunarleaf.json @@ -3,7 +3,7 @@ "username": "LunarLeaf", "email": "laptopaleksa45@gmail.com" }, - "record": { + "records": { "CNAME": "lunarleaf.github.io" } } diff --git a/domains/lunax0390.json b/domains/lunax0390.json index 12ef571a8..1894827b8 100644 --- a/domains/lunax0390.json +++ b/domains/lunax0390.json @@ -5,7 +5,7 @@ "username": "lunax0390", "email": "moonsec99@gmail.com" }, - "record": { + "records": { "CNAME": "lunax0390.github.io" } } diff --git a/domains/lungustefan.json b/domains/lungustefan.json index e85e8ed1f..17c64822b 100644 --- a/domains/lungustefan.json +++ b/domains/lungustefan.json @@ -3,9 +3,36 @@ "username": "lungustefan", "email": "hi@lungustefan.ro", "discord": "753179409682399332", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZerVkVuk5RE7iT8ymXVcKhUkihyAdAbufacrfxq1u7NKQ4Hd0_PbY5FYDAR5uuVd-sCe7fOztiSKV7f9q1OI4HNGDqQxiaWqzom_lQsrIMW-gWUDsBG4Vo8gsq0wrw2th797i-JfsXy2crWaeXlX7X1kROV5KZhGwlSusnUrMp3jlN-uUM3b4hxUyEs3grbh4BiZ9CWShm-kLUs572OBpMigXh3aO0DcUl-BdYdlpSEdRQe8zwylJbFnetxG3qBaMcciGwImixY6V4qaqFwH18isGjDknsHB2WvXM8ekMZmSxgMyRtv1VRSbC22grzMeBazgWoj3x65KU3Z8C7KNmw.w-d8n6WalLAvFcWHqlRkcw.W7GJTwpNRB9pUehhfBXVlkOR1knSNSjvJWeDViV6u2h6AyBdwyaAyILEQzC5ishw0f209VgdyaCqocC7nJp_ZjWjAfcyw0ICLiUXM37Sn3Q.xQOo4RjPMh6dBbWiF1Polw" + "phone": "+40770618625", + "mobile": "+40756450998" }, - "record": { - "NS": ["teagan.ns.cloudflare.com", "yevgen.ns.cloudflare.com"] + "records": { + "NS": ["ns.lungustefan.ro", "ns2.lungustefan.ro", "ns3.lungustefan.ro", "ns4.lungustefan.ro"], + "DS": [ + { + "key_tag": 10684, + "algorithm": 13, + "digest_type": 1, + "digest": "A9933E9513FDD9F4999ED3DC10F1DF1319C34875" + }, + { + "key_tag": 10684, + "algorithm": 13, + "digest_type": 2, + "digest": "2857597715A85AD42B38D3468235022891809B5701763E6EE4792A3A010A3806" + }, + { + "key_tag": 8282, + "algorithm": 13, + "digest_type": 1, + "digest": "19AA7AE3C1857CE964E98E59244D7ABEE07ED490" + }, + { + "key_tag": 8282, + "algorithm": 13, + "digest_type": 2, + "digest": "9A1A6E8F54F85A40009C0C3A31C8815CDB294244FD0E1EB4DBBAF3695D000800" + } + ] } } diff --git a/domains/luni.json b/domains/luni.json index 8a6f70893..63ca8bd56 100644 --- a/domains/luni.json +++ b/domains/luni.json @@ -3,7 +3,7 @@ "username": "Lukas-Batema", "email": "lukasbatema@mg.batemadevelopment.com" }, - "record": { + "records": { "URL": "https://en.pronouns.page/@luni_moon" } } diff --git a/domains/luoduyu.json b/domains/luoduyu.json index 6eba634d5..2987b3de8 100644 --- a/domains/luoduyu.json +++ b/domains/luoduyu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "luoduyu", - "email": "luoduyu@hotmail.com" - }, - "record": { - "CNAME":"luoduyu.github.io" - } + "owner": { + "username": "luoduyu", + "email": "luoduyu@hotmail.com" + }, + "records": { + "CNAME": "luoduyu.github.io" + } } diff --git a/domains/luoxiaohei.json b/domains/luoxiaohei.json deleted file mode 100644 index 1ef5b4c72..000000000 --- a/domains/luoxiaohei.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "🌸 This is nicer with it's own site of discord app named Luo Xiaohei", - "repo": "https://github.com/lxhapp/lxhapp.github.io", - "owner": { - "username": "Melishy", - "email": "themelishy@outlook.com", - "twitter": "themelishy", - "discord": "1053012080812359750" - }, - "record": { - "CNAME": "lxhapp.github.io" - } -} diff --git a/domains/lutherantz.json b/domains/lutherantz.json index e3f45bbed..dcf36444a 100644 --- a/domains/lutherantz.json +++ b/domains/lutherantz.json @@ -3,7 +3,7 @@ "username": "lutherantz", "email": "akamecanic@gmail.com" }, - "record": { + "records": { "CNAME": "lutherantz.github.io" } } diff --git a/domains/luvtoxic.json b/domains/luvtoxic.json new file mode 100644 index 000000000..03a57109e --- /dev/null +++ b/domains/luvtoxic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luvtoxic", + "email": "ammarbags2023@gmail.com" + }, + "records": { + "CNAME": "new-portfolio-sigma-indol.vercel.app" + } +} diff --git a/domains/lux.json b/domains/lux.json new file mode 100644 index 000000000..fb7a4f31e --- /dev/null +++ b/domains/lux.json @@ -0,0 +1,10 @@ +{ + "description": "Porfolio website link for lux", + "owner": { + "username": "unlux", + "email": "support@unlux.dev" + }, + "records": { + "URL": "https://unlux.dev" + } +} diff --git a/domains/luxorens.json b/domains/luxorens.json new file mode 100644 index 000000000..26648f317 --- /dev/null +++ b/domains/luxorens.json @@ -0,0 +1,11 @@ +{ + "description": "Website for Luxorens projects", + "owner": { + "username": "Luxorens", + "email": "luxorens@gmail.com" + }, + "records": { + "CNAME": "luxorens.github.io" + }, + "proxied": true +} diff --git a/domains/luxxy.json b/domains/luxxy.json index a3c84983f..bc3468121 100644 --- a/domains/luxxy.json +++ b/domains/luxxy.json @@ -3,7 +3,7 @@ "username": "Luxxy-GF", "email": "deniedaddicted@gmail.com" }, - "record": { + "records": { "A": ["178.33.110.212"] } } diff --git a/domains/luyende.json b/domains/luyende.json index 64e11c218..a60aec8fd 100644 --- a/domains/luyende.json +++ b/domains/luyende.json @@ -3,7 +3,7 @@ "username": "coangsang", "email": "sangtkx2@gmail.com" }, - "record": { + "records": { "CNAME": "gv-dc5d3bwhw7btmc.dv.googlehosted.com" } } diff --git a/domains/lver-rocks.lver.json b/domains/lver-rocks.lver.json new file mode 100644 index 000000000..01bbab4ad --- /dev/null +++ b/domains/lver-rocks.lver.json @@ -0,0 +1,21 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "records": { + "URL": "https://lver-rocks.pages.dev/" + }, + "redirect_config": { + "custom_paths": { + "/home": "https://lver.is-a.dev/", + "/host": "https://pages.dev/", + "/dir": "https://github.com/is-a-dev/register", + "/iad": "https://is-a.dev/", + "/proxy": "https://developers.cloudflare.com/dns/proxy-status/", + "/contact": "https://contact-lver.pages.dev" + }, + "redirect_paths": true + } +} diff --git a/domains/lver.json b/domains/lver.json new file mode 100644 index 000000000..0c795fd00 --- /dev/null +++ b/domains/lver.json @@ -0,0 +1,19 @@ +{ + "repo": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "records": { + "URL": "https://lverz.glitch.me/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/lverx", + "/biz": "https://github.com/lverz", + "/contact": "https://contact-lver.pages.dev/", + "/site": "https://lver.link" + }, + "redirect_paths": true + } +} diff --git a/domains/lxquid.json b/domains/lxquid.json index b932a1946..b711a0676 100644 --- a/domains/lxquid.json +++ b/domains/lxquid.json @@ -3,7 +3,7 @@ "username": "lxquid", "email": "info@minemix.de" }, - "record": { + "records": { "CNAME": "liquiddevelopmentnet.github.io" } } diff --git a/domains/lxz.json b/domains/lxz.json index ad676fcd2..0d11218be 100644 --- a/domains/lxz.json +++ b/domains/lxz.json @@ -5,7 +5,7 @@ "username": "justforlxz", "twitter": "justforlxz" }, - "record": { + "records": { "CNAME": "justforlxz.github.io" } } diff --git a/domains/lyaxsh.json b/domains/lyaxsh.json new file mode 100644 index 000000000..52771baf1 --- /dev/null +++ b/domains/lyaxsh.json @@ -0,0 +1,11 @@ +{ + "description": "Simple portfolio website for lyaxsh", + "repo": "https://github.com/lyaxsh/lyaxsh.github.io", + "owner": { + "username": "lyaxsh", + "email": "lakshnahar.forwork@gmail.com" + }, + "records": { + "CNAME": "lyaxsh.github.io" + } +} diff --git a/domains/lycoris.json b/domains/lycoris.json new file mode 100644 index 000000000..76e331c07 --- /dev/null +++ b/domains/lycoris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lycorissss", + "email": "beelzebub5758@gmail.com" + }, + "records": { + "CNAME": "septyo-adi-dwi-putra.vercel.app" + } +} diff --git a/domains/lyke.json b/domains/lyke.json index 03acd4114..2f6e087bb 100644 --- a/domains/lyke.json +++ b/domains/lyke.json @@ -3,7 +3,7 @@ "username": "LykeTheBest", "email": "lykethebest@outlook.com" }, - "record": { + "records": { "URL": "https://lyke.glitch.me/" } } diff --git a/domains/lylythechosenone.json b/domains/lylythechosenone.json index 1e3f19dbf..9c46737c5 100644 --- a/domains/lylythechosenone.json +++ b/domains/lylythechosenone.json @@ -3,7 +3,7 @@ "username": "lylythechosenone", "email": "Lysander.mealy@gmail.com" }, - "record": { + "records": { "CNAME": "lylythechosenone.github.io" } } diff --git a/domains/lym.json b/domains/lym.json new file mode 100644 index 000000000..5d3718cf5 --- /dev/null +++ b/domains/lym.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "valentinsacco", + "email": "vasacco@hotmail.com.ar" + }, + "records": { + "MX": [ + { + "target": "feedback-smtp.sa-east-1.amazonses.com", + "priority": 10 + } + ], + "TXT": [ + "v=spf1 include:amazonses.com ~all", + "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqQsXtGDYZxYXgHSleoa7EOOoWmb50Y+ShykuiybSJc93jR393vWdAsPRY2nKsK/8+lMuMJjOiS/SzW8LflXyN1cUmkl7qTVS+waGz3hynAYrSNq9knoFjsVTa8KV00sStdUVqdlcxVn/PbawNJeTcjH5ou6f0TuQ58iv12IealwIDAQAB" + ] + } +} diff --git a/domains/lyn.json b/domains/lyn.json index fbd713d77..13ae9c523 100644 --- a/domains/lyn.json +++ b/domains/lyn.json @@ -3,7 +3,7 @@ "username": "cosmosc0des", "email": "lyncodes@proton.me" }, - "record": { + "records": { "URL": "https://lyncodes.neocities.org" } } diff --git a/domains/lytwest.json b/domains/lytwest.json index e53a9e9aa..e61bff991 100644 --- a/domains/lytwest.json +++ b/domains/lytwest.json @@ -5,7 +5,7 @@ "username": "Lytwest", "email": "lytwest@gmail.com" }, - "record": { + "records": { "CNAME": "lytwest.github.io" } } diff --git a/domains/lyubo.json b/domains/lyubo.json index f5f9bda53..c1014e1c9 100644 --- a/domains/lyubo.json +++ b/domains/lyubo.json @@ -3,7 +3,7 @@ "username": "impzero", "twitter": "impzero" }, - "record": { + "records": { "URL": "https://github.com/impzero" } } diff --git a/domains/lyxtem.json b/domains/lyxtem.json new file mode 100644 index 000000000..961c130f9 --- /dev/null +++ b/domains/lyxtem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lyxtem", + "email": "nu284955@gmail.com" + }, + "records": { + "CNAME": "lyxtem.vercel.app" + } +} diff --git a/domains/m.ps.json b/domains/m.ps.json index e3a9e8b66..ab274c052 100644 --- a/domains/m.ps.json +++ b/domains/m.ps.json @@ -1,14 +1,10 @@ { "owner": { "username": "PrivacySecured", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ", "notes": "I rarely go on my emails. If I do its because I needed a verification code." }, - "record": { - "TXT": [ - "zoho-verification=zb51857919.zmverify.zoho.com", - "v=spf1 include:zohomail.com ~all" - ], + "records": { + "TXT": ["zoho-verification=zb51857919.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] } } diff --git a/domains/m04.json b/domains/m04.json index 1f5c262ae..e878e7131 100644 --- a/domains/m04.json +++ b/domains/m04.json @@ -5,7 +5,7 @@ }, "description": "Redirect to personal website", "repo": "https://github.com/merlin04/benjaminsmith.dev", - "record": { + "records": { "URL": "https://benjaminsmith.dev" } } diff --git a/domains/m1.json b/domains/m1.json index 5aacd4348..77226787f 100644 --- a/domains/m1.json +++ b/domains/m1.json @@ -3,7 +3,7 @@ "username": "m1-dev", "email": "notm1dev@skiff.com" }, - "record": { + "records": { "URL": "https://m1-dev.vercel.app" } } diff --git a/domains/m1cro.json b/domains/m1cro.json index 161397d65..08f28dbdf 100644 --- a/domains/m1cro.json +++ b/domains/m1cro.json @@ -3,7 +3,7 @@ "username": "m1cro-cat", "email": "m1cro_cat@outlook.com" }, - "record": { + "records": { "A": ["65.19.141.67"] } } diff --git a/domains/m1raclemax.json b/domains/m1raclemax.json index 5581c472d..213dfca6f 100644 --- a/domains/m1raclemax.json +++ b/domains/m1raclemax.json @@ -4,7 +4,7 @@ "email": "hpscigeek@gmail.com", "discord": "862452372987314216" }, - "record": { + "records": { "CNAME": "nerdwithcomputers.github.io" } } diff --git a/domains/m3o.json b/domains/m3o.json new file mode 100644 index 000000000..897fcaba4 --- /dev/null +++ b/domains/m3o.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marco-souza", + "email": "marco@tremtec.com" + }, + "records": { + "CNAME": "marco-pages-dev.pages.dev" + } +} diff --git a/domains/m42e.json b/domains/m42e.json index c5cbebf94..e42bbf77f 100644 --- a/domains/m42e.json +++ b/domains/m42e.json @@ -1,11 +1,10 @@ { "description": "m42e Homepage", - "repo": "https://github.com/m42e", "owner": { "username": "m42e", "email": "matthias@bilger.info" }, - "record": { + "records": { "CNAME": "bilger.info" } } diff --git a/domains/m4hbod.json b/domains/m4hbod.json index 4e57e4235..e56f7fb6b 100644 --- a/domains/m4hbod.json +++ b/domains/m4hbod.json @@ -7,7 +7,7 @@ "telegram": "M4hbod", "discord": "M4hbod#1615" }, - "record": { + "records": { "CNAME": "m4hbod.github.io" } } diff --git a/domains/maanripe.json b/domains/maanripe.json new file mode 100644 index 000000000..4d3bb9bd4 --- /dev/null +++ b/domains/maanripe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "argkont", + "email": "kohacaelo+is-a-dev@gmail.com" + }, + "records": { + "CNAME": "portafolio-maan-ripe.vercel.app" + } +} diff --git a/domains/mac-lozano.json b/domains/mac-lozano.json index 0f6bf932b..4b395bbf2 100644 --- a/domains/mac-lozano.json +++ b/domains/mac-lozano.json @@ -1,10 +1,9 @@ { "owner": { "username": "lumakk", - "discord": "1239578679156408360", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Jrzl8nfaTQEYGBNdVvRDpd8W-oa_yT9SG8MRVvGG2NSiRtLmdNM09F_raK0zdFpqLGnLfqtLm36jjnGkBM2kN5DPmYnEvGuaA4cnap6GZR0yvW-iRfWDV418OjayiSRjtxDO527J1UDaQbRddCjzqfrCeuDFYQJoN10rfL_Y4weeehUTuoks7LZZe6OPY95wsVuUS04tDX-kjE-wX0NXcfwiMUkEGKBrTrB0xI_QTQLkKk78QwyFNYDzoHVSjZoohi5Nw8LG54vNPIa5yyGcgPBGO8PsM7tw06X8i6TdvCraUjJNcJeMA9lLF0SbtIugcH7QjTKtdzZvCrKKjAX23A.xkU2HEHOn80V3NQAbpHXUA.1FJRfVizr8D2YhGUcmy-dpqR8tL2T8ay8tbm5TN0oSGpThb55drnvVuc_fiCIMWKmLodMxPlCWNn4LDhoLB61HwnbaVqyMl35xCV1pdWkXs.WQuV_4ksN39VO9RiFrTnpA" + "discord": "1239578679156408360" }, - "record": { + "records": { "CNAME": "lumakk.github.io" } } diff --git a/domains/mac.json b/domains/mac.json index cf33099e3..65fb42641 100644 --- a/domains/mac.json +++ b/domains/mac.json @@ -3,7 +3,7 @@ "username": "itsmaclol", "email": "itsmaclol69@gmail.com" }, - "record": { + "records": { "CNAME": "macsite.pages.dev" } } diff --git a/domains/machip3r.json b/domains/machip3r.json new file mode 100644 index 000000000..1fe2e01cf --- /dev/null +++ b/domains/machip3r.json @@ -0,0 +1,11 @@ +{ + "description": "MacHip3r Portfolio", + "repo": "https://github.com/machip3r/portfolio", + "owner": { + "username": "machip3r", + "email": "mac_258@hotmail.com" + }, + "records": { + "CNAME": "machip3r.github.io" + } +} diff --git a/domains/macielsuassuna.json b/domains/macielsuassuna.json new file mode 100644 index 000000000..adf99bb76 --- /dev/null +++ b/domains/macielsuassuna.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maciel64", + "discord": "macielmano", + "email": "macielsuassuna14@gmail.com" + }, + "records": { + "CNAME": "macielsuassuna-portfolio.vercel.app" + } +} diff --git a/domains/mack.json b/domains/mack.json new file mode 100644 index 000000000..63468ace2 --- /dev/null +++ b/domains/mack.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mackcodes", + "email": "mackcodes03@gmail.com" + }, + "records": { + "CNAME": "mayank-port.vercel.app" + } +} diff --git a/domains/mackarroll.json b/domains/mackarroll.json index 4f4f75116..d3e946cf0 100644 --- a/domains/mackarroll.json +++ b/domains/mackarroll.json @@ -1,10 +1,9 @@ { "owner": { "username": "mackarroll-cc", - "discord": "158350765474316289", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.oY2ib88Xr7UtQT3vhdUsVy1tVTiU1K4n5ppy82sAy3vpuc_i6auFQJzajJxDN_a2cJZqegj4P15gWtoZo8i6vpVxu_mtXzDH-Q4AU05ZMjdivSH4f3N0_eJ8Y4gSSWwrKoKfSmp5yfthcwEknIRSts5g9P9PsxpLfybgkITMnPebZtlFmP7mlWQTfHUs_9qsQ9bhn2WITCrPYyjZOQQeAKAIsWiC0wR1rVTS7_8b60sdUEzBroKIIv1CIr_ysHAFpkakz1O3277kdus7O7MKgEriOyDUfnuJ9R2GZ06USQ6FluOW4JY3jRmdHaXw9KC9IoLlqPy7pNm4YF5khejoPQ.9EMGeUHPbC7Refhoylu_BQ.sPIXpepXrH3vCY9bHxA2WC5j0gSTVZ5Uel7cyBJxnRACl7iIZUfhbw9WfqIpBgdM_IRd2gwMXP1kz9vXQxOXGB7DU-FlHNJlP-sc5Msiav8.dF38jQNV8_gE1uCmkzTTPA" + "discord": "158350765474316289" }, - "record": { + "records": { "URL": "https://mackarroll.cc" } } diff --git a/domains/mackenzie.json b/domains/mackenzie.json index 69ca93fba..1252c5547 100644 --- a/domains/mackenzie.json +++ b/domains/mackenzie.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jojocraftde-dev", - "email": "jojocraftde@proton.me" - }, - "record": { - "A": ["91.200.103.154"] - } + "owner": { + "username": "jojocraftde-dev", + "email": "jojocraftde@proton.me" + }, + "records": { + "A": ["91.200.103.154"] + } } diff --git a/domains/maclong.json b/domains/maclong.json new file mode 100644 index 000000000..a6b646d37 --- /dev/null +++ b/domains/maclong.json @@ -0,0 +1,11 @@ +{ + "description": "Mac Long's personal developer portfolio and blog.", + "repo": "https://github.com/maclong9/maclong9", + "owner": { + "username": "maclong9", + "email": "maclong9@icloud.com" + }, + "records": { + "CNAME": "maclong9.github.io" + } +} diff --git a/domains/macos.notaperson535.json b/domains/macos.notaperson535.json index db686df20..dbce7cb18 100644 --- a/domains/macos.notaperson535.json +++ b/domains/macos.notaperson535.json @@ -5,7 +5,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "CNAME": "notaperson535.github.io" } } diff --git a/domains/maddy.json b/domains/maddy.json index eaa4ee5b8..6b59b5369 100644 --- a/domains/maddy.json +++ b/domains/maddy.json @@ -5,7 +5,7 @@ "username": "madhav-madhusoodanan", "email": "f20200049@pilani.bits-pilani.ac.in" }, - "record": { + "records": { "CNAME": "madhav-madhusoodanan.github.io" } } diff --git a/domains/madebytragic.json b/domains/madebytragic.json index 1767be151..a432107cc 100644 --- a/domains/madebytragic.json +++ b/domains/madebytragic.json @@ -3,7 +3,7 @@ "username": "lrmn7", "email": "lrmnid@gmail.com" }, - "record": { + "records": { "CNAME": "madebytragic.github.io" } } diff --git a/domains/madhan.json b/domains/madhan.json index e01c5d907..6724bd5d4 100644 --- a/domains/madhan.json +++ b/domains/madhan.json @@ -5,7 +5,7 @@ "username": "madhank93", "email": "madhankumaravelu93@gmail.com" }, - "record": { + "records": { "CNAME": "madhank93.github.io" } } diff --git a/domains/madhav.json b/domains/madhav.json index dad17bb84..a062b1a30 100644 --- a/domains/madhav.json +++ b/domains/madhav.json @@ -4,7 +4,7 @@ "username": "LaBus3", "email": "madhav.v.1996@gmail.com" }, - "record": { + "records": { "CNAME": "labus3.github.io" } } diff --git a/domains/madhavgupta.json b/domains/madhavgupta.json index cb72f0085..2249c7b7b 100644 --- a/domains/madhavgupta.json +++ b/domains/madhavgupta.json @@ -3,7 +3,7 @@ "username": "M4dhav", "email": "madhav.gupta7674@gmail.com" }, - "record": { + "records": { "URL": "https://madhavgupta.vercel.app" } } diff --git a/domains/madhavjhawar.json b/domains/madhavjhawar.json index 81d886ce3..e40df148b 100644 --- a/domains/madhavjhawar.json +++ b/domains/madhavjhawar.json @@ -5,7 +5,7 @@ "username": "madhav32x", "email": "madhavjhawar@gmail.com" }, - "record": { + "records": { "CNAME": "madhav32x.github.io" } } diff --git a/domains/madhead341.json b/domains/madhead341.json index 59a8bde05..182c6e9cb 100644 --- a/domains/madhead341.json +++ b/domains/madhead341.json @@ -4,13 +4,8 @@ "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" - ], + "records": { + "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/madhup.json b/domains/madhup.json index 708fc80c3..3a004315b 100644 --- a/domains/madhup.json +++ b/domains/madhup.json @@ -1,10 +1,9 @@ { "owner": { "username": "madhup", - "discord": "714323644641181737", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FudKVLrMa8Q4yq0sg6zxHlvtXq8KbfVv3tPlVaDvIeHJpHbviikAzWuGKxWnrGPrXJLzggxzjrmGfE-TwymhzhhN1K7t1iteQNsPMvs3ip-nBqV3urK9Hj-UvTT_n_qi-a5sH98-UvNWJcoqk52JvBNcyefncswd7qSx_4pI_rF68wMXIRgVqvz6sB45lupouDGKmbakDFaNqNY2Pi5LpUrZfCjl5wLcaXMv-0CJJ4bCCzpki8V8HAbVod-OfhpuJTy3S-P0XOHiHJ5HM10WIyjSfZEN9fm9ejT9pwoB3gdFqetXT0HWa2OYIpzM2TQUT7bzkf-xkdOzunOGit6FLg.F0pfD9nwaAjmepPR5cQKHg.FG9GyKfRJrX2qW0XI3-u-SbCeCMznQnr5hJlWuGo6nD0nOX0pLU5jeeOOXIsfXncIoTVhOx-_Me5eV2sIwUacA.sMMoX_OUCKYynrzuwKIrGQ" + "discord": "714323644641181737" }, - "record": { + "records": { "CNAME": "madhup.github.io" } } diff --git a/domains/madhurya.json b/domains/madhurya.json index f72d68d8a..6ec4aa209 100644 --- a/domains/madhurya.json +++ b/domains/madhurya.json @@ -3,7 +3,7 @@ "username": "madhuryadutta", "email": "www.madhuryadutta2016@gmail.com" }, - "record": { + "records": { "CNAME": "madhuryadutta.github.io" } } diff --git a/domains/madkarma.json b/domains/madkarma.json index d5b53d204..6e7f6d361 100644 --- a/domains/madkarma.json +++ b/domains/madkarma.json @@ -3,7 +3,7 @@ "username": "madkarmaa", "email": "madkarma99@gmail.com" }, - "record": { + "records": { "CNAME": "madkarmaa.github.io" } } diff --git a/domains/maestro194.json b/domains/maestro194.json index 1ab156047..fcfd218a8 100644 --- a/domains/maestro194.json +++ b/domains/maestro194.json @@ -3,7 +3,7 @@ "username": "maestro194", "email": "dongboy1904@gmail.com" }, - "record": { + "records": { "CNAME": "maestro194.github.io" } } diff --git a/domains/mafiz.json b/domains/mafiz.json new file mode 100644 index 000000000..ed8906542 --- /dev/null +++ b/domains/mafiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pacehutt", + "email": "mafizonly@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/magdi.json b/domains/magdi.json index 2ba8f630c..e5fcbd409 100644 --- a/domains/magdi.json +++ b/domains/magdi.json @@ -3,7 +3,7 @@ "username": "coeur85", "email": "ahmed.magdi@msn.com" }, - "record": { + "records": { "MX": ["mx01.mail.icloud.com"] } } diff --git a/domains/mage.json b/domains/mage.json index 586abbfd0..05325ea62 100644 --- a/domains/mage.json +++ b/domains/mage.json @@ -3,7 +3,7 @@ "username": "mageclienttt", "email": "mageclienttt@gmail.com" }, - "record": { + "records": { "MX": ["mx01.mail.icloud.com"] } } diff --git a/domains/magedibrahim.json b/domains/magedibrahim.json new file mode 100644 index 000000000..b9ca238fa --- /dev/null +++ b/domains/magedibrahim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maqed", + "email": "magedibra@yahoo.com", + "discord": "272808689688248320" + }, + "records": { + "CNAME": "magedibrahim.vercel.app" + } +} diff --git a/domains/magenta.json b/domains/magenta.json index 13a1cc7ab..37c3fabee 100644 --- a/domains/magenta.json +++ b/domains/magenta.json @@ -3,7 +3,7 @@ "username": "EddieCherian", "email": "eddiecherianj@gmail.com" }, - "record": { + "records": { "URL": "https://magenta.com" } } diff --git a/domains/magic4me.json b/domains/magic4me.json index e30f56782..c9667a359 100644 --- a/domains/magic4me.json +++ b/domains/magic4me.json @@ -3,7 +3,7 @@ "username": "magic4me", "email": "magic4me.info@gmail.com" }, - "record": { + "records": { "CNAME": "magic4me.github.io" } } diff --git a/domains/magitian.json b/domains/magitian.json index 537cbd209..4b184cecd 100644 --- a/domains/magitian.json +++ b/domains/magitian.json @@ -5,7 +5,7 @@ "username": "magitian", "email": "magitian@duck.com" }, - "record": { + "records": { "CNAME": "magitian.vercel.app" } } diff --git a/domains/magma.json b/domains/magma.json index 9417daedf..4d1893b51 100644 --- a/domains/magma.json +++ b/domains/magma.json @@ -1,11 +1,10 @@ { "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": { + "records": { "CNAME": "mgam-is-dreamin.github.io" } } diff --git a/domains/magniquick.json b/domains/magniquick.json index 5f604d432..3cf69ac93 100644 --- a/domains/magniquick.json +++ b/domains/magniquick.json @@ -5,7 +5,7 @@ "username": "magniquick", "discord": "Magniquick#5003" }, - "record": { + "records": { "CNAME": "magniquick.github.io" } } diff --git a/domains/mahaviraenterprises.json b/domains/mahaviraenterprises.json index 726befd50..4dcdef8bf 100644 --- a/domains/mahaviraenterprises.json +++ b/domains/mahaviraenterprises.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/mahdi.json b/domains/mahdi.json new file mode 100644 index 000000000..07ddf72d7 --- /dev/null +++ b/domains/mahdi.json @@ -0,0 +1,11 @@ +{ + "description": "my dev portfolio website", + "repo": "https://github.com/Mahdi-Hazrati/mahdi.is-a.dev", + "owner": { + "username": "mahdi-hazrati", + "email": "mahdihazratimailbox@gmail.com" + }, + "records": { + "CNAME": "mahdi-hazrati.github.io" + } +} diff --git a/domains/mahdiruiz.json b/domains/mahdiruiz.json index 931bd8840..cb2e98362 100644 --- a/domains/mahdiruiz.json +++ b/domains/mahdiruiz.json @@ -1,10 +1,9 @@ { "owner": { "username": "Mrdev88", - "discord": "1182049473673830435", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ePsSqFOGNkSh4H1BcdgVTr7Ie66h4JZ2t3AQPLM9OBgfOZcSTDU6VYAxTy2sHEMZkOPVGC97DpDVmngpyKQgkJD8B3nxecnzpboapW1lY6tlNp0drwcIeGfHH9oHdAw8ylY9BarqkAzxKeHtiqf6NPWCBc2xmgszDzk9CN4fKY6RelA9Yhdu_HUFnKHVUdSvm2MVfZYUzaChN2hOZoMmm_TUQI3s__CeXKlOPlywcP3L21zQk7uFdO3_pyavpesO2BB4f5gTerRYQE1CodhJvtkPTfxHEM0bWgzQ8g3gBJptcWR8937-yU2V7rFrvPCbyKpICP9TnpE5Pi5ncG4WLQ.ivq5ahY4SO1IXoJyhTghVw.3ma2bVTFuG7H6kaPUrzFl39vDPtx_0rHRftLlUD2eslqmlXm1tH2TAIZvZcQvuNTNLnX6gF_JBoPvqIr9TtRxg.9aIDcwUbsqrjtsqT9LOAsQ" + "discord": "1182049473673830435" }, - "record": { + "records": { "CNAME": "mrdev88.github.io" } } diff --git a/domains/maher-xubair.json b/domains/maher-xubair.json new file mode 100644 index 000000000..ee4f2eebb --- /dev/null +++ b/domains/maher-xubair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maher-xubair", + "email": "za998192@gmail.com" + }, + "records": { + "CNAME": "maher-zubair.vercel.app" + } +} diff --git a/domains/mahesh.json b/domains/mahesh.json index 507cc5270..8b9a70910 100644 --- a/domains/mahesh.json +++ b/domains/mahesh.json @@ -3,7 +3,7 @@ "username": "MaheshTheDeveloper", "email": "dhingra3673@gmail.com" }, - "record": { + "records": { "CNAME": "maheshthedeveloper.github.io" } } diff --git a/domains/maheshpaul.json b/domains/maheshpaul.json new file mode 100644 index 000000000..1397a5b17 --- /dev/null +++ b/domains/maheshpaul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maheshpaulj", + "email": "mahesh.paul.j@gmail.com" + }, + "records": { + "CNAME": "maheshpaul.vercel.app" + } +} diff --git a/domains/maheta-bhavik.json b/domains/maheta-bhavik.json index d2eb68269..625810bfe 100644 --- a/domains/maheta-bhavik.json +++ b/domains/maheta-bhavik.json @@ -4,7 +4,7 @@ "owner": { "username": "maheta-bhavik" }, - "record": { + "records": { "CNAME": "maheta-bhavik.github.io" } } diff --git a/domains/mahevish-husseni.json b/domains/mahevish-husseni.json index 65d0b2b2d..a9d69e736 100644 --- a/domains/mahevish-husseni.json +++ b/domains/mahevish-husseni.json @@ -4,7 +4,7 @@ "owner": { "username": "mahevish-husseni" }, - "record": { + "records": { "CNAME": "mahevish-husseni.github.io" } } diff --git a/domains/mahfuz.json b/domains/mahfuz.json new file mode 100644 index 000000000..8c50f28f3 --- /dev/null +++ b/domains/mahfuz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mahfuzurrahman98", + "email": "mdmahfuzurrahmanarif@gmail.com" + }, + "records": { + "CNAME": "mahfuz.devcms.io" + } +} diff --git a/domains/mahir.json b/domains/mahir.json index bd1a902ee..ed391c389 100644 --- a/domains/mahir.json +++ b/domains/mahir.json @@ -1,13 +1,12 @@ { "description": "Mahir's Website", - "repo": "https://github.com/mtgsquad", "owner": { "username": "mtgsquad", "email": "mahir@molai.dev", "twitter": "DevMolai", "discord": "molai777" }, - "record": { + "records": { "URL": "https://molai.dev" } } diff --git a/domains/mahmoud-makady.json b/domains/mahmoud-makady.json new file mode 100644 index 000000000..7ae499aef --- /dev/null +++ b/domains/mahmoud-makady.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mahmoud-Makady", + "email": "m.makady19@gmail.com" + }, + "records": { + "CNAME": "mahmoud-makady.netlify.app" + } +} diff --git a/domains/mahmoud.json b/domains/mahmoud.json index 4d84e811b..b2b74776e 100644 --- a/domains/mahmoud.json +++ b/domains/mahmoud.json @@ -5,13 +5,8 @@ "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" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mahmud.json b/domains/mahmud.json index 3322304f2..326e4990e 100644 --- a/domains/mahmud.json +++ b/domains/mahmud.json @@ -6,7 +6,7 @@ "email": "kanieloutis758@gmail.com", "twitter": "mahmudislam47" }, - "record": { + "records": { "CNAME": "jbaxb8h7.github.io" } } diff --git a/domains/mahmulp.json b/domains/mahmulp.json new file mode 100644 index 000000000..d2f21668d --- /dev/null +++ b/domains/mahmulp.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site for Machmul Pratama", + "owner": { + "username": "MahmulP", + "email": "hello@mahmulp.my.id" + }, + "records": { + "CNAME": "mahmulp.my.id" + }, + "proxied": false +} diff --git a/domains/maideveloper.json b/domains/maideveloper.json new file mode 100644 index 000000000..f55e88c0e --- /dev/null +++ b/domains/maideveloper.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maideveloper", + "email": "maiwebdeveloper@gmail.com" + }, + "records": { + "CNAME": "maideveloper.com" + } +} diff --git a/domains/mail-noma.json b/domains/mail-noma.json index 1b3990859..8971214c9 100644 --- a/domains/mail-noma.json +++ b/domains/mail-noma.json @@ -4,7 +4,7 @@ "username": "Noma4321", "email": "Noma4321business@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.aayushsiwa.json b/domains/mail.aayushsiwa.json index 05f975bbe..4b39f2878 100644 --- a/domains/mail.aayushsiwa.json +++ b/domains/mail.aayushsiwa.json @@ -3,7 +3,7 @@ "username": "aayushsiwa", "email": "22052177@kiit.ac.in" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/mail.amaankazi.json b/domains/mail.amaankazi.json index 3d81509b8..a10717048 100644 --- a/domains/mail.amaankazi.json +++ b/domains/mail.amaankazi.json @@ -4,7 +4,7 @@ "username": "Amaan-Kazi", "email": "amaankazi1793@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.animesh.json b/domains/mail.animesh.json index c6f9d89f9..958f43361 100644 --- a/domains/mail.animesh.json +++ b/domains/mail.animesh.json @@ -3,7 +3,7 @@ "username": "animeshryu", "email": "animeshryu@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.arman.json b/domains/mail.arman.json index be189220d..61d56146c 100644 --- a/domains/mail.arman.json +++ b/domains/mail.arman.json @@ -4,7 +4,7 @@ "username": "ItzArman09", "email": "itz.armxn@outlook.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.boolean44.json b/domains/mail.boolean44.json deleted file mode 100644 index b008c8f0f..000000000 --- a/domains/mail.boolean44.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "boolean44-repos", - "email": "serenitypalmer10@gmail.com" - }, - "record": { - "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], - "TXT": ["forward-email=palmerowen100@gmail.com"] - } -} diff --git a/domains/mail.codesoft.json b/domains/mail.codesoft.json new file mode 100644 index 000000000..3ee77c50e --- /dev/null +++ b/domains/mail.codesoft.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesoft@proton.me" + }, + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/mail.deadcode.json b/domains/mail.deadcode.json index 2726276ef..9e65f0b21 100644 --- a/domains/mail.deadcode.json +++ b/domains/mail.deadcode.json @@ -7,7 +7,7 @@ "bluesky": "kanshen.click", "telegram": "richardkanskje" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.devansh.json b/domains/mail.devansh.json index 54b129949..4f66bdbf7 100644 --- a/domains/mail.devansh.json +++ b/domains/mail.devansh.json @@ -6,7 +6,7 @@ "email": "dev8adam576@gmail.com", "twitter": "devanshyadav" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/mail.fran.json b/domains/mail.fran.json index 62e7a6f13..735c5c084 100644 --- a/domains/mail.fran.json +++ b/domains/mail.fran.json @@ -6,7 +6,7 @@ "email": "xz1@dr.com", "username": "xzonix" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.gs.json b/domains/mail.gs.json index ac0096acc..5452770ab 100644 --- a/domains/mail.gs.json +++ b/domains/mail.gs.json @@ -2,14 +2,10 @@ "owner": { "username": "Newfies", "twitter": "YeahItsGav", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fraa7gfMOqQqWmbk-4fE5_pNd2zEvQ1K5w53QIHDTtr1C_Wu2Pzw-GfOlhxAtr7Af5ZIj_p7F5OOp6PwDxlKBXGt13e5l3Z9CQlYRclhfnaeYQm_xetYFlf9ucsYXVTfjFAeXxybT-RxbBjRl3Z48tSQaAto3E3Y-SbqwHPhjqh7-4tCpRZu5yc38Bx0_RHt95Ib2Mcg4cWShE-2ggvygSsonBuYBRGFqMIhM60tMA-cbJdQpvfVdZTJv0vHOtUJltv3eVzPpi4q5S5lWz3EKizGXuwAq3HLFycrBVrt5pegWLi1gId-urV9HGV1L3myGfQQSGwDVCEew9YKQFj71A.bxACuA7jrws9Z7z0oTx4wQ.fzzUvSGM_6ODHxUwg6vQvfJeI2kmUx5DW_4tIGVjPOymDplL8iBjzb5HIHhLqo_PlkcmGxeNr5DH4glPZdn1Dq2ywNTV90hWqpjfoHSOsYk.O8IBPKTRGwaH43VBg1rK3A", "notes": "I'm occasionally on Twitter from time to time; hit me up if you need to talk to me. Let me know you're from is-a.dev." }, - "record": { - "TXT": [ - "zoho-verification=zb26727871.zmverify.zoho.com", - "v=spf1 include:zohomail.com ~all" - ], + "records": { + "TXT": ["zoho-verification=zb26727871.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] } } diff --git a/domains/mail.hvn-network.json b/domains/mail.hvn-network.json index c44cc4c4f..0a70931f8 100644 --- a/domains/mail.hvn-network.json +++ b/domains/mail.hvn-network.json @@ -1,10 +1,9 @@ { "owner": { "username": "DaoLmao", - "discord": "854380469147140106", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YYiTtfWSDHwSXb9MT6WVA8YGngFs8Na5NWWp15dLNgSOSkCDhyusojmz9so8D__NVF_MVbJ4dJ4mKUsoF1PQL_dRh-ZTINAFVnzjD4zGyFMW9nH7Q6wDk98tIGh5ZNfOUrqKgPUvslXMdDxtvkQ0ozsZB7XcIM6W35jHzHzjNYIJl58mTWlYg3qHXNcCZHXlDU-b4Qpq_yX4knBFpBBraJM-u8-j7MAkQgsX1x3kE_3LrR2W6d3AS_SofP_V7fSO-NU01glhbYPmp0TLXK0CxCGnhu8ZMzQPGD82TjN8pRtVUpQsbtMhcrCEwEmqkOXQ-D_Z4tKa_B-Qk_2g5c_gTw.HSLX0hOyRsELsyTL-Mk2tQ.WiNb7GNeSUyuaLRx6c-d00Eiv4ZC9OZM1h7_mKjjkC6AK5pdRSSvIOVpUy1c0ZRQ26SwekgDLz-rWm9GP2g5e4noskG9_2IiaH7BTg5lXb4.rxXv1bVYwiMt0sVdZz2rZg" + "discord": "854380469147140106" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.krunch.json b/domains/mail.krunch.json index 45b36bb29..ef8f1ea54 100644 --- a/domains/mail.krunch.json +++ b/domains/mail.krunch.json @@ -1,10 +1,10 @@ { - "description": "ImprovMX Email", + "description": "ImprovMX Mail Forwarding", "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.letum.json b/domains/mail.letum.json index e9c949849..a5b3fda4a 100644 --- a/domains/mail.letum.json +++ b/domains/mail.letum.json @@ -3,7 +3,7 @@ "username": "amoramicae", "discord": "1252631745514180790" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.lumix.json b/domains/mail.lumix.json index 172accf71..b8faad8ee 100644 --- a/domains/mail.lumix.json +++ b/domains/mail.lumix.json @@ -3,7 +3,7 @@ "username": "o-lumix", "email": "lumix@duck.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/mail.lver.json b/domains/mail.lver.json new file mode 100644 index 000000000..46426fb17 --- /dev/null +++ b/domains/mail.lver.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "records": { + "TXT": ["zoho-verification=zb43169475.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] + } +} diff --git a/domains/mail.masseo.json b/domains/mail.masseo.json index 1447cd68a..546d3bbab 100644 --- a/domains/mail.masseo.json +++ b/domains/mail.masseo.json @@ -3,7 +3,7 @@ "username": "matte-oss", "email": "7sz8jlw6h@mozmail.com" }, - "record": { + "records": { "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], "TXT": [ "v=spf1 include:zohomail.eu ~all", diff --git a/domains/mail.minmit.json b/domains/mail.minmit.json index 9c375418a..1e1302392 100644 --- a/domains/mail.minmit.json +++ b/domains/mail.minmit.json @@ -1,11 +1,10 @@ { "description": "Mail For My Website", - "repo": "https://github.com/MinMitCoder", "owner": { "username": "MinMitCoder", "email": "minmitgamer@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.mrjunkyz.json b/domains/mail.mrjunkyz.json index 726befd50..4dcdef8bf 100644 --- a/domains/mail.mrjunkyz.json +++ b/domains/mail.mrjunkyz.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/mail.mrstickypiston.json b/domains/mail.mrstickypiston.json index 2179d6b97..f6411c571 100644 --- a/domains/mail.mrstickypiston.json +++ b/domains/mail.mrstickypiston.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "MrStickyPiston", - "discord": "700766242268774471", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag" - }, - - "record": { - "TXT": "v=spf1 include:_spf.mailersend.net ~all" - } -} \ No newline at end of file + "owner": { + "username": "MrStickyPiston", + "discord": "700766242268774471" + }, + "records": { + "TXT": ["zoho-verification=zb27779902.zmverify.zoho.eu", "v=spf1 include:zohomail.eu ~all"], + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"] + } +} diff --git a/domains/mail.mxnticek.json b/domains/mail.mxnticek.json index 154b5d5c2..6bb586cc6 100644 --- a/domains/mail.mxnticek.json +++ b/domains/mail.mxnticek.json @@ -4,10 +4,7 @@ "username": "VlastikYoutubeKo", "email": "plainrock@seznam.cz" }, - "record": { - "MX": [ - "d9025d2074984e72.mx2.emailprofi.seznam.cz", - "d9025d2074984e72.mx1.emailprofi.seznam.cz" - ] + "records": { + "MX": ["d9025d2074984e72.mx2.emailprofi.seznam.cz", "d9025d2074984e72.mx1.emailprofi.seznam.cz"] } } diff --git a/domains/mail.neki.json b/domains/mail.neki.json index fe56649d4..a889a25a6 100644 --- a/domains/mail.neki.json +++ b/domains/mail.neki.json @@ -4,7 +4,7 @@ "username": "PinkLittleKitty", "email": "santyfisela@gmail.com" }, - "record": { + "records": { "TXT": "zoho-verification=zb84078345.zmverify.zoho.com" } } diff --git a/domains/mail.notaperson535.json b/domains/mail.notaperson535.json index 1b17786bf..1d5867041 100644 --- a/domains/mail.notaperson535.json +++ b/domains/mail.notaperson535.json @@ -4,7 +4,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=notaperson939@gmail.com" } diff --git a/domains/mail.noteswallah.json b/domains/mail.noteswallah.json index 726befd50..4dcdef8bf 100644 --- a/domains/mail.noteswallah.json +++ b/domains/mail.noteswallah.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/mail.senaditya.json b/domains/mail.senaditya.json index c5c016185..500fc8d48 100644 --- a/domains/mail.senaditya.json +++ b/domains/mail.senaditya.json @@ -4,7 +4,7 @@ "username": "senaditya", "email": "aditya.sen1hl@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.shymike.json b/domains/mail.shymike.json index 8c23c8219..ef8706990 100644 --- a/domains/mail.shymike.json +++ b/domains/mail.shymike.json @@ -2,7 +2,7 @@ "owner": { "username": "ImShyMike" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.somyadipghosh.json b/domains/mail.somyadipghosh.json index 726befd50..4dcdef8bf 100644 --- a/domains/mail.somyadipghosh.json +++ b/domains/mail.somyadipghosh.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/mail.sx9.json b/domains/mail.sx9.json index 7f4f30be8..ca8c289d1 100644 --- a/domains/mail.sx9.json +++ b/domains/mail.sx9.json @@ -6,7 +6,7 @@ "email": "sx-91@outlook.com", "username": "SX-9" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.teamcodearc.json b/domains/mail.teamcodearc.json index 726befd50..4dcdef8bf 100644 --- a/domains/mail.teamcodearc.json +++ b/domains/mail.teamcodearc.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/mail.tmasikt.json b/domains/mail.tmasikt.json index 972a1b830..486ce1805 100644 --- a/domains/mail.tmasikt.json +++ b/domains/mail.tmasikt.json @@ -6,7 +6,7 @@ "telegram": "tmasikt", "discord": "tmasikt" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mailjet._d298bc98.thetommylong.json b/domains/mailjet._d298bc98.thetommylong.json new file mode 100644 index 000000000..35c7c6181 --- /dev/null +++ b/domains/mailjet._d298bc98.thetommylong.json @@ -0,0 +1,10 @@ +{ + "description": "Currently used for portfolio website and SMTP mail server", + "owner": { + "username": "TheTommylongIsHeree", + "discord": "thetommylong" + }, + "records": { + "TXT": "d298bc98f2e641f0e05df3bb66eac4c3" + } +} diff --git a/domains/maindak.json b/domains/maindak.json index 5f6b582f7..e6de19354 100644 --- a/domains/maindak.json +++ b/domains/maindak.json @@ -3,7 +3,7 @@ "username": "masroof-maindak", "email": "mujtaba.asim.amin@gmail.com" }, - "record": { + "records": { "CNAME": "masroof-maindak.github.io" } } diff --git a/domains/maine.json b/domains/maine.json index 9a0b4cacb..b65ff9d90 100644 --- a/domains/maine.json +++ b/domains/maine.json @@ -4,7 +4,7 @@ "email": "jermaineantwi22@gmail.com", "discord": "672698075910766622" }, - "record": { + "records": { "CNAME": "codemaine.github.io" } } diff --git a/domains/mak448a.json b/domains/mak448a.json index 2fed264c9..79a005cf9 100644 --- a/domains/mak448a.json +++ b/domains/mak448a.json @@ -3,7 +3,7 @@ "username": "mak448a", "discord": "295391820744228867" }, - "record": { + "records": { "CNAME": "mak448a.github.io" } } diff --git a/domains/mak5er.json b/domains/mak5er.json new file mode 100644 index 000000000..fd42388c9 --- /dev/null +++ b/domains/mak5er.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mak5er", + "telegram": "@Mak5er" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/makarbass.json b/domains/makarbass.json new file mode 100644 index 000000000..87cd72be8 --- /dev/null +++ b/domains/makarbass.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "makarbass" + }, + "records": { + "URL": "https://makarbass.github.io/" + } +} diff --git a/domains/makhbaz.json b/domains/makhbaz.json index 2536652d2..b1e2f660f 100644 --- a/domains/makhbaz.json +++ b/domains/makhbaz.json @@ -6,7 +6,7 @@ "email": "makhbaz@proton.me", "telegram": "Makhbaz" }, - "record": { + "records": { "CNAME": "makhbaz.github.io" } } diff --git a/domains/maki.json b/domains/maki.json index 75ee18b82..d3e946cf0 100644 --- a/domains/maki.json +++ b/domains/maki.json @@ -1,10 +1,9 @@ { "owner": { "username": "mackarroll-cc", - "discord": "158350765474316289", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.j8JWg0u5up2imhyvumsu8Z2rBOCvISQRqe_gJ_BW99OP1Czo67btMZ8G7PMxv8Z8TtfXAJIuwq0KILxELaHcaHlO-LcSnejyTcpVGQEDvhnQPoQPiJzaLggP2uqtFZ9O86V1trHBYdb73nK_PR5Xdx9FxJl69YhQ37DunU9bxW_TD63ETW29SveTL5PanejBcZt-68Lcb3U7mqiMIIU8eEJNYrqrYNEYC0VfAv75_g6xexd3QInfZEcnjgZR3FPrvk280qua61hMbJj65Onh-JEMRS6a13fCnoQANF23DbYXQ1syNHF_q63l-UmUm23nVPWn0uh30dJrNzkFAt1tZw.jC17NLbSioPA1-NUXyMbPQ.zRur4tObIw-Z4Y5gIlUQyknmh4_7J2v6wVkKzRnwRSk7-8gQp6-uxWURiujJ97pwqULTt0bF1D_rq15_lSTmkur0yQrq5AqUZVJY3_10s6E.qy0SGuCH0DvGsRMHulV8Qw" + "discord": "158350765474316289" }, - "record": { + "records": { "URL": "https://mackarroll.cc" } } diff --git a/domains/maks.json b/domains/maks.json index 3b09a8b3f..46090de09 100644 --- a/domains/maks.json +++ b/domains/maks.json @@ -4,7 +4,7 @@ "username": "LinusBotTips", "email": "maks-dev@outlook.com" }, - "record": { + "records": { "CNAME": "linusbottips.github.io" } } diff --git a/domains/malbouy.json b/domains/malbouy.json index 97da1c598..7936b3aec 100644 --- a/domains/malbouy.json +++ b/domains/malbouy.json @@ -5,7 +5,7 @@ "username": "malbouy", "email": "malbouy@techie.com" }, - "record": { + "records": { "CNAME": "malbouy.github.io" } } diff --git a/domains/malfunzionato.json b/domains/malfunzionato.json index cebccf3e6..0f81ce911 100644 --- a/domains/malfunzionato.json +++ b/domains/malfunzionato.json @@ -3,7 +3,7 @@ "username": "P0rc0D10", "email": "grazioligiuliano52@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/p0rc0d10" } } diff --git a/domains/malik.json b/domains/malik.json index b31396c30..9e7c18cac 100644 --- a/domains/malik.json +++ b/domains/malik.json @@ -1,10 +1,9 @@ { "owner": { "username": "Gwilymm", - "discord": "236575185849810944", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.dMI0nCVMnrusA6rZGPce5iBkGP9OpJCD_TGzFTtS1Ko2rDuVGKx-MgjX-GOwprAfcVuyWAFkKg6_ojRzld7lZeZmOxJE8DkOCW7VC-jWVQpZxZPJJFzEsqw4C9HLVSg2jUuhmRst8JzfhLFIvYPxeFv9w9rwQabWWCa9Trj4w9QRqAdwCX-vaVBo53C2D_n_fneAkTyvTHanNbipUNd2B-DbSrVdutzt0Ke-s5CZwKihRHfGB5hRVN0Oo5jviOPN7J2z5Q_8ObKv96uE_Mg0v08hM-bC47e4JLI1YnMl9z1-yq-m4tnSdhct7oBFg8SXehYu5GdvHMGmco6mrB6U_g.FdEs8-xLPtiqUTvLnijCYg.Cp4jo4xgq_zwhJD7HYchf6WysPFYx7E5Nsk6fq1IS_GLnQaIm2sg2qojKEVj9WKM_W97cQp4hRz7GPwAshmlRFiVstyw5pguVksRfE4aUfE.aKO5_Shplf_wnBE5idRQZg" + "discord": "236575185849810944" }, - "record": { + "records": { "A": ["149.56.15.68"] } } diff --git a/domains/malleshcn.json b/domains/malleshcn.json index f9a971deb..018d1392d 100644 --- a/domains/malleshcn.json +++ b/domains/malleshcn.json @@ -3,7 +3,7 @@ "username": "rohanworld", "email": "rohanmaharaj78@gmail.com" }, - "record": { + "records": { "URL": "https://malleshcn.netlify.app/" } } diff --git a/domains/malo.json b/domains/malo.json index b1815cf9f..60d6dfb55 100644 --- a/domains/malo.json +++ b/domains/malo.json @@ -3,7 +3,7 @@ "username": "MaloDaHood", "email": "malomr2002@gmail.com" }, - "record": { + "records": { "A": ["54.37.225.204"] } } diff --git a/domains/mameen.json b/domains/mameen.json index c5b02a28b..7bf171542 100644 --- a/domains/mameen.json +++ b/domains/mameen.json @@ -3,7 +3,7 @@ "username": "mameen-omar", "email": "mameen.omar@gmail.com" }, - "record": { + "records": { "A": ["129.151.180.253"] } } diff --git a/domains/mamun.json b/domains/mamun.json index d7f8436e0..4146e1721 100644 --- a/domains/mamun.json +++ b/domains/mamun.json @@ -1,11 +1,10 @@ { "description": "Mamun's website", - "repo": "https://github.com/mamunhpath", "owner": { "username": "mamunhpath", "email": "mamunhpath@hotmail.com" }, - "record": { + "records": { "CNAME": "mamunhpath.github.io" } } diff --git a/domains/man.json b/domains/man.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/man.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/manage.uptime.trung.json b/domains/manage.uptime.trung.json index b99730c4e..488318c9f 100644 --- a/domains/manage.uptime.trung.json +++ b/domains/manage.uptime.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/manas.json b/domains/manas.json index 0bbee6c43..654c43989 100644 --- a/domains/manas.json +++ b/domains/manas.json @@ -5,7 +5,7 @@ "username": "Manas140", "email": "manas140@protonmail.com" }, - "record": { + "records": { "CNAME": "manas140.github.io" } } diff --git a/domains/manash.json b/domains/manash.json index bd5c50311..67bcc7238 100644 --- a/domains/manash.json +++ b/domains/manash.json @@ -1,11 +1,10 @@ { "description": "Manash Sonowal - DEV", - "repo": "https://github.com/msonowal", "owner": { "username": "msonowal", "email": "manash149@gmail.com" }, - "record": { + "records": { "CNAME": "www.claritytech.io" } } diff --git a/domains/manastripathi.json b/domains/manastripathi.json index b8b227820..a4d8080cf 100644 --- a/domains/manastripathi.json +++ b/domains/manastripathi.json @@ -3,7 +3,7 @@ "username": "godspeedx14", "email": "manastripathi.m@gmail.com" }, - "record": { + "records": { "CNAME": "manas-t.web.app" } } diff --git a/domains/manav.json b/domains/manav.json index edc5f97cc..eb7d33aa1 100644 --- a/domains/manav.json +++ b/domains/manav.json @@ -5,7 +5,7 @@ "username": "Manav011", "email": "manavbafna87+github@gmail.com" }, - "record": { + "records": { "CNAME": "manav011.github.io" } } diff --git a/domains/mandaninikunj.json b/domains/mandaninikunj.json index 33cd05b5a..9bbff6bf1 100644 --- a/domains/mandaninikunj.json +++ b/domains/mandaninikunj.json @@ -4,7 +4,7 @@ "owner": { "username": "mandaninikunj" }, - "record": { + "records": { "CNAME": "mandaninikunj.github.io" } } diff --git a/domains/manel.json b/domains/manel.json new file mode 100644 index 000000000..5bd82478a --- /dev/null +++ b/domains/manel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alcoceba", + "email": "manelalcoceba@gmail.com" + }, + "records": { + "CNAME": "alcoceba.github.io" + } +} diff --git a/domains/manhnguyen18.json b/domains/manhnguyen18.json new file mode 100644 index 000000000..32db9750d --- /dev/null +++ b/domains/manhnguyen18.json @@ -0,0 +1,11 @@ +{ + "description": "manhnguyen18 portfolio", + "repo": "https://github.com/nguyenmanh18", + "owner": { + "username": "nguyenmanh18", + "email": "nguyenmanh1891997@gmail.com" + }, + "records": { + "CNAME": "manh-nguyen-blogs.vercel.app" + } +} diff --git a/domains/manhtran.json b/domains/manhtran.json new file mode 100644 index 000000000..1a9e91976 --- /dev/null +++ b/domains/manhtran.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "ducmanh86", + "email": "ducmanh86@gmail.com" + }, + "records": { + "CNAME": "tranducmanh-info.web.app" + }, + "proxied": true +} diff --git a/domains/maninder.json b/domains/maninder.json index f62a88fe1..19949e3c4 100644 --- a/domains/maninder.json +++ b/domains/maninder.json @@ -1,11 +1,10 @@ { "description": "My Github Page!", - "repo": "https://github.com/github4maninder", "owner": { "username": "github4maninder", "email": "iamgoat@tutanota.com" }, - "record": { + "records": { "CNAME": "maninder.github.io" } } diff --git a/domains/manish-madi.json b/domains/manish-madi.json index fe4f90072..d1bd0bf58 100644 --- a/domains/manish-madi.json +++ b/domains/manish-madi.json @@ -5,7 +5,7 @@ "username": "m-manish03", "email": "manish.rebel14@gmail.com" }, - "record": { + "records": { "CNAME": "m-manish03.github.io" } } diff --git a/domains/manish.json b/domains/manish.json index 11b607bb2..5e5db521d 100644 --- a/domains/manish.json +++ b/domains/manish.json @@ -5,7 +5,7 @@ "username": "manish7479dlp", "email": "manish7479dlp@gmail.com" }, - "record": { + "records": { "CNAME": "manish7479dlp.github.io" } } diff --git a/domains/manishgautam.json b/domains/manishgautam.json new file mode 100644 index 000000000..98ffb54ba --- /dev/null +++ b/domains/manishgautam.json @@ -0,0 +1,11 @@ +{ + "description": "Manish Gautam's Website", + "repo": "https://github.com/Manishmg3994/Manishmg3994.github.io", + "owner": { + "username": "Manishmg3994", + "email": "manishgautammg7@gmail.com" + }, + "records": { + "CNAME": "manishmg3994.github.io" + } +} diff --git a/domains/manit.json b/domains/manit.json index c2af209d7..5d52efc43 100644 --- a/domains/manit.json +++ b/domains/manit.json @@ -3,7 +3,7 @@ "username": "namzop", "email": "manit.765489@gmail.com" }, - "record": { + "records": { "CNAME": "namzop.github.io" } } diff --git a/domains/mannu.json b/domains/mannu.json index 16bc6a50f..ecc2f00bd 100644 --- a/domains/mannu.json +++ b/domains/mannu.json @@ -3,7 +3,7 @@ "username": "MannuVilasara", "discord": "786926252811485186" }, - "record": { + "records": { "URL": "https://www.mannuvls.xyz/" } } diff --git a/domains/mano.json b/domains/mano.json index 40398015d..56523c03e 100644 --- a/domains/mano.json +++ b/domains/mano.json @@ -3,7 +3,7 @@ "username": "infofbnr", "email": "manuelhagopian961@gmail.com" }, - "record": { + "records": { "CNAME": "infofbnr.github.io" } } diff --git a/domains/manodeepray.json b/domains/manodeepray.json index c2f586aac..10204693a 100644 --- a/domains/manodeepray.json +++ b/domains/manodeepray.json @@ -4,7 +4,7 @@ "username": "Manodeepray", "email": "manodeepray@gmail.com" }, - "record": { + "records": { "CNAME": "manodeepray.github.io" } } diff --git a/domains/manoj-kumar-c.json b/domains/manoj-kumar-c.json index e5d834776..92870944e 100644 --- a/domains/manoj-kumar-c.json +++ b/domains/manoj-kumar-c.json @@ -5,7 +5,7 @@ "username": "Manoj-kumar-C", "email": "developermanoj2003@gmail.com" }, - "record": { + "records": { "URL": "https://manoj-kumar-c.github.io/manojkumar-c-dev/" } } diff --git a/domains/manoj.json b/domains/manoj.json new file mode 100644 index 000000000..f24dd23a9 --- /dev/null +++ b/domains/manoj.json @@ -0,0 +1,11 @@ +{ + "description": "Manoj's portfolio website", + "repo": "https://github.com/ManojINaik/portfolio", + "owner": { + "username": "ManojINaik", + "email": "naik97059@gmail.com" + }, + "records": { + "CNAME": "manojinaik.github.io" + } +} diff --git a/domains/manojbarman.json b/domains/manojbarman.json index eeff41055..af0281976 100644 --- a/domains/manojbarman.json +++ b/domains/manojbarman.json @@ -4,8 +4,7 @@ "twitter": "itsmanojb" }, "description": "My personal website", - "repo": "https://github.com/itsmanojb", - "record": { + "records": { "URL": "https://manojbarman.in" } } diff --git a/domains/mantas.json b/domains/mantas.json index ec487c071..f905558ca 100644 --- a/domains/mantas.json +++ b/domains/mantas.json @@ -1,11 +1,10 @@ { "description": "Mantas is a developer!", - "repo": "https://github.com/mantooc", "owner": { "username": "mantooc", "email": "mantasnugaras@gmail.com" }, - "record": { + "records": { "CNAME": "mantooc.github.io" } } diff --git a/domains/mantou.json b/domains/mantou.json index 0492c135a..fb9caffa0 100644 --- a/domains/mantou.json +++ b/domains/mantou.json @@ -1,10 +1,9 @@ { "owner": { "username": "Mantouisyummy", - "discord": "549056425943629825", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.aY6RLu6wtMjujwma0w1H5llw7yK9XYV91lqW6dNENxxMQAM3gOGYdq4qzDEkqtJgnRPk-3AS2aKNdvYKvhbiEwQZJjfMiI6mph1mJOiDzytTY0ddjVxUbpqCOzYfnH4eelbV_OLpkG-Xhmjq9oTIv26OIAdb5fNAb8KQ5mijE7R0hNW1gGOkwVgkdrAPdOI3CzzDWqAl7CBrXwhlIGNNlayd82F8KyZ7W3zqgQ2mmH8LlgIfPq0LWizcv4pkPULosHuAbY_JZWqlxEUVM0nGOZj2XmzQaqvslkCk2rpDf4sMs6lB2i1PX_LSwPMxzhyMpJ_GYTbJzTbWlX7LvDrCjA.wK3xmiKr05WNTB93lhQTCg.Kda6iR0wzdHXtytoJJyX8mPKl644gOimwKl3TUOK_qT6HxMP3nbu5YWSRuKT4BH1orCeYKgwh5qfo9jhauznKBJKgq9_thQPO7fHG6mOleI.iesJ_iq1hFXiiynvLhjZgg" + "discord": "549056425943629825" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/manu.json b/domains/manu.json index bf3b6114d..b344cf0e2 100644 --- a/domains/manu.json +++ b/domains/manu.json @@ -5,7 +5,7 @@ "username": "manuthecoder", "email": "manusvathgurudath@gmail.com" }, - "record": { + "records": { "CNAME": "manuthecoder.pages.dev" } } diff --git a/domains/manuel-garcia-nieto.json b/domains/manuel-garcia-nieto.json new file mode 100644 index 000000000..4327b603a --- /dev/null +++ b/domains/manuel-garcia-nieto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mGarciaNieto", + "email": "mgarcianieto@gmail.com" + }, + "records": { + "CNAME": "mGarciaNieto.github.io" + } +} diff --git a/domains/manuelramallo.json b/domains/manuelramallo.json new file mode 100644 index 000000000..fe5ea7d4d --- /dev/null +++ b/domains/manuelramallo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ManuelRamallo", + "email": "mramallodiaz96@gmail.com" + }, + "records": { + "CNAME": "manuelramallo.github.io" + } +} diff --git a/domains/manugeni.json b/domains/manugeni.json new file mode 100644 index 000000000..e82dd6a65 --- /dev/null +++ b/domains/manugeni.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "manugeni" + }, + "records": { + "CNAME": "manugeni.github.io" + } +} diff --git a/domains/manulucenaportfolio.json b/domains/manulucenaportfolio.json new file mode 100644 index 000000000..189f59f7d --- /dev/null +++ b/domains/manulucenaportfolio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "manulucena12", + "email": "mlucenasalas@gmail.com" + }, + "records": { + "CNAME": "manuportolio.netlify.app" + } +} diff --git a/domains/map.mrdiamond.json b/domains/map.mrdiamond.json new file mode 100644 index 000000000..e285b01f3 --- /dev/null +++ b/domains/map.mrdiamond.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "records": { + "A": ["129.146.51.207"] + }, + "proxied": false +} diff --git a/domains/maps.vulcanocraft.json b/domains/maps.vulcanocraft.json index 06fb36cad..6c721f153 100644 --- a/domains/maps.vulcanocraft.json +++ b/domains/maps.vulcanocraft.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sIf_Ps8WbH_gxCdpTRX4pW-t2UH0uDm6j9dZbmDUM4joSTKNzlCq_vILFhEnBaffuUmYlpK7H0D29oZkl_agqgJ54Py6zm0E3IbFzbD7d5MIZeK_FXwpDb4yVV1dUMqB2iwIRG8dteCaE1dSIxMrckwuKxHR4QQR3k3_lr5J9Gx5RHIqYv3aWcVvgto8OtLX77SAywaz_b9ApXLHcokyGn20R4olg-7F_7OxFS6evQlnUabcf9sM4g-FkmygM_lDwCkjYmlXfTFmgMvE3XFpmheQY0yDtZSOKdGhmCGoxQTygyQuBlqmLd8GLnCVfEmCBc2oS4xLI1KzT5mb3rYbDA.h31K0cwMVajgtr9_PBGCvg.CzF5EYfU9U2LnSrayx3TCx2n3FHTG8ywzS6TONZmJdBWIB2GOg5hlXXYk0CMRVOO62DpZ_P1HGsN3utzVxNRJExKJHCr7VUCpJ0sPYpd8KdBfpEKHwJ8A3tHFPXqHYwx.0q-hLeHabXueOUCtZtJV4Q" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "vulcanomap.pages.dev" } } diff --git a/domains/mapsyseo.json b/domains/mapsyseo.json index 57cfc5050..135dfeb38 100644 --- a/domains/mapsyseo.json +++ b/domains/mapsyseo.json @@ -3,7 +3,7 @@ "username": "ShingSemicolon", "email": "Shing.XD.0602@gmail.com" }, - "record": { + "records": { "A": ["81.16.29.155"] } } diff --git a/domains/maqbool.json b/domains/maqbool.json new file mode 100644 index 000000000..f346deda6 --- /dev/null +++ b/domains/maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "records": { + "CNAME": "abdullahmaqbool-portfolio.vercel.app" + } +} diff --git a/domains/marban.json b/domains/marban.json index cc8b81fd1..44e6f0cee 100644 --- a/domains/marban.json +++ b/domains/marban.json @@ -3,7 +3,7 @@ "username": "Rahuletto", "email": "rahulmarban@gmail.com" }, - "record": { + "records": { "CNAME": "marban.pages.dev" } } diff --git a/domains/marc.json b/domains/marc.json index 414c35ef8..232625f68 100644 --- a/domains/marc.json +++ b/domains/marc.json @@ -1,11 +1,10 @@ { "description": "Marc Gruita is a Developer!", - "repo": "https://github.com/marcgr9", "owner": { "username": "marcgr9", "email": "marc@gruita.ro" }, - "record": { + "records": { "URL": "https://gruita.ro" } } diff --git a/domains/marcelomrwin.json b/domains/marcelomrwin.json index c22c49bf7..0767b309b 100644 --- a/domains/marcelomrwin.json +++ b/domains/marcelomrwin.json @@ -1,11 +1,10 @@ { "description": "My personal website to showcase the stuff that I do", - "repo": "https://github.com/marcelomrwin", "owner": { "username": "marcelomrwin", "email": "marcelo.d.sales@gmail.com" }, - "record": { + "records": { "CNAME": "marcelomrwin.github.io" } } diff --git a/domains/marchiba99.json b/domains/marchiba99.json index 44b94da6c..b227a79ab 100644 --- a/domains/marchiba99.json +++ b/domains/marchiba99.json @@ -3,7 +3,7 @@ "username": "marchiba99", "email": "marchiba99@gmail.com" }, - "record": { + "records": { "CNAME": "marchiba99.github.io" } } diff --git a/domains/marco-voegeli.json b/domains/marco-voegeli.json new file mode 100644 index 000000000..9de8f38ab --- /dev/null +++ b/domains/marco-voegeli.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Marco-Voegeli", + "email": "voegelijjm@gmail.com" + }, + "records": { + "CNAME": "marco-voegeli.github.io" + } +} diff --git a/domains/marco.json b/domains/marco.json index 0156692b1..52c431f9c 100644 --- a/domains/marco.json +++ b/domains/marco.json @@ -3,7 +3,7 @@ "username": "marcomafessolli", "email": "marcomafessolli@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/marcomafessolli" } } diff --git a/domains/marcoleder.json b/domains/marcoleder.json new file mode 100644 index 000000000..b9a6bd575 --- /dev/null +++ b/domains/marcoleder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marcoleder", + "email": "info@marcoleder.ch" + }, + "records": { + "URL": "https://marcoleder.ch" + } +} diff --git a/domains/marcos.json b/domains/marcos.json new file mode 100644 index 000000000..adb73fe1a --- /dev/null +++ b/domains/marcos.json @@ -0,0 +1,10 @@ +{ + "description": "Developer portfolio", + "owner": { + "username": "mtoranzo", + "email": "mtoranzo@gmail.com" + }, + "records": { + "CNAME": "mtoranzo.github.io" + } +} diff --git a/domains/marcus.json b/domains/marcus.json index 80f868fe2..a8ed3b3e3 100644 --- a/domains/marcus.json +++ b/domains/marcus.json @@ -6,7 +6,7 @@ "email": "webmaster@herogamers.dev", "twitter": "ItsHeroGamers" }, - "record": { + "records": { "CNAME": "portfolio-4cw.pages.dev" } } diff --git a/domains/mardino.json b/domains/mardino.json new file mode 100644 index 000000000..e2891845a --- /dev/null +++ b/domains/mardino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zdienos", + "email": "zdienos@yahoo.com" + }, + "records": { + "CNAME": "zdienos.com" + } +} diff --git a/domains/maria.json b/domains/maria.json index aa9890ef8..4d1a6fa2a 100644 --- a/domains/maria.json +++ b/domains/maria.json @@ -3,7 +3,7 @@ "username": "nirewen", "email": "londero.edu@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/marialuisamol" } } diff --git a/domains/mariano-avila.json b/domains/mariano-avila.json index 0671c1ad9..584471674 100644 --- a/domains/mariano-avila.json +++ b/domains/mariano-avila.json @@ -6,7 +6,7 @@ "email": "marianoavilaj4@gmail.com", "twitter": "MarianoAvilaC" }, - "record": { + "records": { "CNAME": "dxravage.github.io" } } diff --git a/domains/mario-papetti.json b/domains/mario-papetti.json new file mode 100644 index 000000000..0b2c88db6 --- /dev/null +++ b/domains/mario-papetti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mario-dango", + "email": "mp.robots@gmail.com" + }, + "records": { + "CNAME": "mario-dango.github.io" + } +} diff --git a/domains/marioannier.json b/domains/marioannier.json index 0260fed13..ff6f6eb28 100644 --- a/domains/marioannier.json +++ b/domains/marioannier.json @@ -3,7 +3,7 @@ "username": "marioannier", "email": "mario.annier@gmail.com" }, - "record": { + "records": { "CNAME": "marioannier.github.io" } } diff --git a/domains/marjuz.json b/domains/marjuz.json new file mode 100644 index 000000000..0065ea417 --- /dev/null +++ b/domains/marjuz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "marjuzdev" + }, + "records": { + "CNAME": "marjuz.netlify.app" + } +} diff --git a/domains/mark.json b/domains/mark.json index 7234ae4f7..7ceee3f04 100644 --- a/domains/mark.json +++ b/domains/mark.json @@ -6,7 +6,7 @@ "email": "dev.caspian.hayashi@gmail.com", "discord": "944959943310737408" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/markaguirre.json b/domains/markaguirre.json new file mode 100644 index 000000000..72853de81 --- /dev/null +++ b/domains/markaguirre.json @@ -0,0 +1,11 @@ +{ + "description": "Developer Portfolio", + "repo": "https://github.com/MarkAguirre26/folio", + "owner": { + "username": "MarkAguirre26", + "email": "markaguirre26@gmail.com" + }, + "records": { + "CNAME": "markaguirre.netlify.app" + } +} diff --git a/domains/markasaad.json b/domains/markasaad.json new file mode 100644 index 000000000..d5335d68d --- /dev/null +++ b/domains/markasaad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voltonik", + "email": "markasaadramzy@gmail.com" + }, + "records": { + "CNAME": "markasaad.vercel.app" + } +} diff --git a/domains/markblum.json b/domains/markblum.json index 073ee14d4..2ef812534 100644 --- a/domains/markblum.json +++ b/domains/markblum.json @@ -3,7 +3,7 @@ "username": "mblumdumes", "email": "mark@el-blum.de" }, - "record": { - "CNAME": "el-blum.selfhost.co" + "records": { + "CNAME": "dyndns.el-blum.de" } } diff --git a/domains/markgurney.json b/domains/markgurney.json index 57a759fa7..376705f6d 100644 --- a/domains/markgurney.json +++ b/domains/markgurney.json @@ -3,7 +3,7 @@ "username": "Superchicken962", "email": "superchicken9962@gmail.com" }, - "record": { + "records": { "URL": "https://markgurney.cf/" } } diff --git a/domains/markos.json b/domains/markos.json index deb080298..9eb1d3a6c 100644 --- a/domains/markos.json +++ b/domains/markos.json @@ -1,11 +1,10 @@ { "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": { + "records": { "CNAME": "markos.me" } } diff --git a/domains/markus.json b/domains/markus.json index d5a60c9cd..5d53952b8 100644 --- a/domains/markus.json +++ b/domains/markus.json @@ -4,7 +4,7 @@ "username": "markusjx", "email": "markusjx11@gmail.com" }, - "record": { + "records": { "CNAME": "markusjx.github.io" } } diff --git a/domains/markvayson.json b/domains/markvayson.json index 751d552e7..c5ae953bd 100644 --- a/domains/markvayson.json +++ b/domains/markvayson.json @@ -3,7 +3,7 @@ "username": "markvayson", "email": "markvayson@gmail.com" }, - "record": { + "records": { "CNAME": "58p02o7x.up.railway.app" } } diff --git a/domains/marlon.json b/domains/marlon.json new file mode 100644 index 000000000..900f24314 --- /dev/null +++ b/domains/marlon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MarlonDevs", + "email": "marlonmogollon13@gmail.com" + }, + "records": { + "CNAME": "marlondevs.github.io" + } +} diff --git a/domains/marlonbaatjes.json b/domains/marlonbaatjes.json new file mode 100644 index 000000000..d367c1fab --- /dev/null +++ b/domains/marlonbaatjes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mdesignscode", + "email": "marlonbaatjes62@gmail.com" + }, + "records": { + "CNAME": "marlonbaatjes.vercel.app" + } +} diff --git a/domains/marten-mrfc.json b/domains/marten-mrfc.json new file mode 100644 index 000000000..de45c4e40 --- /dev/null +++ b/domains/marten-mrfc.json @@ -0,0 +1,11 @@ +{ + "description": "For my portfolio site", + "repo": "https://github.com/Marten-Mrfc/Marten-Mrfc", + "owner": { + "username": "Marten-Mrfc", + "email": "martensog@gmail.com" + }, + "records": { + "CNAME": "marten-mrfc.github.io" + } +} diff --git a/domains/martial.json b/domains/martial.json index 3fe1363b5..e8aad0f25 100644 --- a/domains/martial.json +++ b/domains/martial.json @@ -5,7 +5,7 @@ "username": "MartialSeron", "email": "martial.seron@gmail.com" }, - "record": { + "records": { "CNAME": "martialseron.github.io" } } diff --git a/domains/martin.json b/domains/martin.json new file mode 100644 index 000000000..8851fbd59 --- /dev/null +++ b/domains/martin.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/martinshaw/martinshaw.github.io", + "owner": { + "username": "martinshaw", + "email": "hello@martinshaw.co" + }, + "records": { + "CNAME": "martinshaw.github.io" + } +} diff --git a/domains/martinvruiz.json b/domains/martinvruiz.json new file mode 100644 index 000000000..7b8056c76 --- /dev/null +++ b/domains/martinvruiz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "martinvruiz", + "email": "martinvruiz10@gmail.com", + "discord": "martinvruiz10" + }, + "records": { + "CNAME": "portfoliomvr.vercel.app" + } +} diff --git a/domains/marufcseuu.json b/domains/marufcseuu.json new file mode 100644 index 000000000..283c0b4c6 --- /dev/null +++ b/domains/marufcseuu.json @@ -0,0 +1,10 @@ +{ + "description": "0xmaruf.is-a.dev domain", + "owner": { + "username": "marufms4", + "email": "marufsm4@gmail.com" + }, + "records": { + "CNAME": "marufcse.netlify.app" + } +} diff --git a/domains/maryll.json b/domains/maryll.json index c782f4ebb..075acdf97 100644 --- a/domains/maryll.json +++ b/domains/maryll.json @@ -3,7 +3,7 @@ "username": "Maryll-castelino", "email": "maryllcastelino@gmail.com" }, - "record": { + "records": { "CNAME": "maryll-castelino.github.io" } } diff --git a/domains/masdzub.json b/domains/masdzub.json new file mode 100644 index 000000000..63a38d8d6 --- /dev/null +++ b/domains/masdzub.json @@ -0,0 +1,11 @@ +{ + "description": "My Personal Website.", + "repo": "https://github.com/masdzub/masdzub.github.io", + "owner": { + "username": "masdzub", + "email": "hello@masdzub.com" + }, + "records": { + "CNAME": "masdzub-github-io.pages.dev" + } +} diff --git a/domains/maskduck.json b/domains/maskduck.json index e8cc52d8b..08242c6eb 100644 --- a/domains/maskduck.json +++ b/domains/maskduck.json @@ -3,7 +3,7 @@ "username": "maskduck", "discord": "_ngiu.a_" }, - "record": { + "records": { "NS": ["ada.ns.cloudflare.com", "albert.ns.cloudflare.com"] } } diff --git a/domains/masmiyen.json b/domains/masmiyen.json index 472bdb64a..bc9372838 100644 --- a/domains/masmiyen.json +++ b/domains/masmiyen.json @@ -6,7 +6,7 @@ "email": "masmiyen@gmail.com", "twitter": "MAsmiyen" }, - "record": { + "records": { "CNAME": "masmiyen.github.io" } } diff --git a/domains/masood.json b/domains/masood.json index aad69bdb4..43c68346e 100644 --- a/domains/masood.json +++ b/domains/masood.json @@ -1,11 +1,10 @@ { "description": "Masood Mohammad's Personal Website", - "repo": "https://github.com/masoodbinmohammad", "owner": { "username": "masoodbinmohammad", "email": "masoodbinmohammad@hotmail.com" }, - "record": { + "records": { "CNAME": "masoodbinmohammad.github.io" } } diff --git a/domains/masseo.json b/domains/masseo.json index c47cca342..6f2d9b072 100644 --- a/domains/masseo.json +++ b/domains/masseo.json @@ -3,7 +3,7 @@ "username": "matte-oss", "email": "7sz8jlw6h@mozmail.co" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/massick.json b/domains/massick.json index f09d36d4b..b97f1d7fd 100644 --- a/domains/massick.json +++ b/domains/massick.json @@ -3,7 +3,7 @@ "username": "M4ss1ck", "email": "4ndyraul@gmail.com" }, - "record": { + "records": { "URL": "https://massick.netlify.app" } } diff --git a/domains/mastergrid.json b/domains/mastergrid.json index 549590ce7..40fe5cd8c 100644 --- a/domains/mastergrid.json +++ b/domains/mastergrid.json @@ -3,7 +3,7 @@ "username": "AtharvParsewar", "email": "atharvparsewar@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/matbak.json b/domains/matbak.json index 91eacefe4..39e79947a 100644 --- a/domains/matbak.json +++ b/domains/matbak.json @@ -3,7 +3,7 @@ "username": "matbakdev", "email": "matbakdev@protonmail.com" }, - "record": { + "records": { "CNAME": "matbakdev.github.io" } } diff --git a/domains/match.json b/domains/match.json index ca5cb8d25..48290e772 100644 --- a/domains/match.json +++ b/domains/match.json @@ -5,12 +5,7 @@ "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" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/matei.json b/domains/matei.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/matei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/mateogariboglio.json b/domains/mateogariboglio.json new file mode 100644 index 000000000..8f0060960 --- /dev/null +++ b/domains/mateogariboglio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mateo-404", + "discord": "gary_______" + }, + "records": { + "CNAME": "portfolio-mateo-404s-projects.vercel.app" + } +} diff --git a/domains/mateoguidi.json b/domains/mateoguidi.json new file mode 100644 index 000000000..7b932f3c7 --- /dev/null +++ b/domains/mateoguidi.json @@ -0,0 +1,11 @@ +{ + "description": "Mateo GUIDI's Portfolio", + "repo": "https://github.com/MateoGuidi/mateoguidi.github.io", + "owner": { + "username": "MateoGuidi", + "email": "mateo.guidi5@gmail.com" + }, + "records": { + "CNAME": "mateoguidi.github.io" + } +} diff --git a/domains/mateus.json b/domains/mateus.json new file mode 100644 index 000000000..14d77da2a --- /dev/null +++ b/domains/mateus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "costamateus", + "email": "mateus@costamateus.com.br" + }, + "records": { + "A": ["147.79.84.80"] + } +} diff --git a/domains/mateuseap.json b/domains/mateuseap.json new file mode 100644 index 000000000..a97380fd7 --- /dev/null +++ b/domains/mateuseap.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio", + "repo": "https://github.com/mateuseap/mateuseap.github.io", + "owner": { + "username": "mateuseap", + "email": "mateuseap@mateuseap.com" + }, + "records": { + "CNAME": "mateuseap.github.io" + } +} diff --git a/domains/mateusz.json b/domains/mateusz.json new file mode 100644 index 000000000..4ac30209a --- /dev/null +++ b/domains/mateusz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Pand3moniuMx3" + }, + "records": { + "CNAME": "mateuszmirecki.netlify.app" + } +} diff --git a/domains/matheus.json b/domains/matheus.json index d9fd18381..74ad2971a 100644 --- a/domains/matheus.json +++ b/domains/matheus.json @@ -5,7 +5,7 @@ "username": "mthcsta", "email": "matheuscosta.dev@yahoo.com" }, - "record": { + "records": { "CNAME": "mthcsta.github.io" } } diff --git a/domains/matheusdev.json b/domains/matheusdev.json new file mode 100644 index 000000000..d8d492aee --- /dev/null +++ b/domains/matheusdev.json @@ -0,0 +1,13 @@ +{ + "description": "Web Developer Portifolio", + "repo": "https://github.com/matheusfdosan/portifolio/", + "owner": { + "username": "matheusfdosan", + "email": "matheusfaustinoe20@gmail.com", + "linkedin": "https://www.linkedin.com/in/matheusfaus/", + "discord": "979816215281279019" + }, + "records": { + "CNAME": "portifolio-swart-five-65.vercel.app" + } +} diff --git a/domains/mathiassm.json b/domains/mathiassm.json index 8ed5ca5a6..0116e5369 100644 --- a/domains/mathiassm.json +++ b/domains/mathiassm.json @@ -5,7 +5,7 @@ }, "description": "MathiasSM's Personal Site", "repo": "https://github.com/MathiasSM/mathiassm.github.io", - "record": { + "records": { "URL": "https://mathiassm.dev" } } diff --git a/domains/mathiscool.json b/domains/mathiscool.json index f1d1e9d31..0687aa8f4 100644 --- a/domains/mathiscool.json +++ b/domains/mathiscool.json @@ -5,7 +5,7 @@ "username": "testbot-github", "email": "testbot-github@gmail.com" }, - "record": { + "records": { "CNAME": "mathiscool.github.io" } } diff --git a/domains/mathu-lmn.json b/domains/mathu-lmn.json index cc96d5008..f14c6d7f0 100644 --- a/domains/mathu-lmn.json +++ b/domains/mathu-lmn.json @@ -5,7 +5,7 @@ "username": "mathu-lmn", "discord": "Mathu_lmn#6970" }, - "record": { + "records": { "CNAME": "mathu-lmn.github.io" } } diff --git a/domains/matrix.vi0leta.json b/domains/matrix.vi0leta.json index def51632a..5866567c0 100644 --- a/domains/matrix.vi0leta.json +++ b/domains/matrix.vi0leta.json @@ -3,7 +3,7 @@ "username": "vi0letadev", "email": "vi0leta@riseup.net" }, - "record": { + "records": { "A": ["37.27.4.76"] } } diff --git a/domains/matrixcoder.json b/domains/matrixcoder.json index e584272b1..0f0686a99 100644 --- a/domains/matrixcoder.json +++ b/domains/matrixcoder.json @@ -5,13 +5,8 @@ "username": "MatrixCoder0101", "email": "tkgoutamm625@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/matt-murdock.json b/domains/matt-murdock.json new file mode 100644 index 000000000..6278af132 --- /dev/null +++ b/domains/matt-murdock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xr-coder", + "email": "nryadav7412@gmail.com" + }, + "records": { + "NS": ["anahi.ns.cloudflare.com", "darl.ns.cloudflare.com"] + } +} diff --git a/domains/matt.json b/domains/matt.json index 50ac3d430..c165f000f 100644 --- a/domains/matt.json +++ b/domains/matt.json @@ -1,11 +1,10 @@ { "description": "Matt is a Developer!", - "repo": "https://github.com/Tweak4141", "owner": { "username": "tweak4141", "email": "tweak@talosbot.xyz" }, - "record": { + "records": { "A": ["150.230.46.24"], "MX": ["mx1.talosbot.xyz", "mx2.talosbot.xyz"], "TXT": "v=spf1 include:spf.talosbot.xyz include:spf.brevo.com include:mailgun.org include:webmail.talosbot.xyz ~all" diff --git a/domains/matt3o0.json b/domains/matt3o0.json index f39094035..0c75141f9 100644 --- a/domains/matt3o0.json +++ b/domains/matt3o0.json @@ -3,7 +3,7 @@ "username": "duvbolone", "email": "duvbolone@gmail.com" }, - "record": { + "records": { "CNAME": "matt3o0.vercel.app" } } diff --git a/domains/mattcheng.json b/domains/mattcheng.json new file mode 100644 index 000000000..16192abde --- /dev/null +++ b/domains/mattcheng.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mattchengg" + }, + "records": { + "CNAME": "mattchengg.github.io" + } +} diff --git a/domains/mattew.json b/domains/mattew.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/mattew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/matthew.json b/domains/matthew.json index 7909c2f1e..20142f081 100644 --- a/domains/matthew.json +++ b/domains/matthew.json @@ -5,7 +5,7 @@ "twitter": "MattGleich" }, "repo": "https://github.com/Matt-Gleich/site-v2", - "record": { + "records": { "URL": "https://mattglei.ch" } } diff --git a/domains/mattw.json b/domains/mattw.json index 7b365e300..92a518213 100644 --- a/domains/mattw.json +++ b/domains/mattw.json @@ -1,11 +1,10 @@ { "description": "Matt is a Developer!", - "repo": "https://github.com/Tweak4141", "owner": { "username": "tweak4141", "email": "tweak@talosbot.xyz" }, - "record": { + "records": { "CNAME": "nginxpm.talosbot.xyz" } } diff --git a/domains/matytyma.json b/domains/matytyma.json index 12f779297..a7ae88534 100644 --- a/domains/matytyma.json +++ b/domains/matytyma.json @@ -4,7 +4,7 @@ "email": "matytyma22@gmail.com", "discord": "803549121247838209" }, - "record": { + "records": { "CNAME": "matytyma.github.io" } } diff --git a/domains/mau.json b/domains/mau.json new file mode 100644 index 000000000..8a6af29cb --- /dev/null +++ b/domains/mau.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mamv2137", + "email": "mamv.2137@gmail.com" + }, + "records": { + "CNAME": "mamv2137.github.io" + } +} diff --git a/domains/maurice.json b/domains/maurice.json index 6f40018d0..7dd75bdb4 100644 --- a/domains/maurice.json +++ b/domains/maurice.json @@ -4,7 +4,7 @@ "email": "capybara@mail.de", "discord": "1181949050770161756" }, - "record": { + "records": { "A": ["91.216.248.20"] } } diff --git a/domains/mausami-parmar.json b/domains/mausami-parmar.json index 5ce30ac48..1cc70465a 100644 --- a/domains/mausami-parmar.json +++ b/domains/mausami-parmar.json @@ -4,7 +4,7 @@ "owner": { "username": "mausami-parmar" }, - "record": { + "records": { "CNAME": "mausami-parmar.github.io" } } diff --git a/domains/mawoka.json b/domains/mawoka.json index 2d7d1cccf..0d46e7e51 100644 --- a/domains/mawoka.json +++ b/domains/mawoka.json @@ -3,7 +3,7 @@ "username": "mawoka-myblock", "email": "git@mawoka.eu" }, - "record": { + "records": { "URL": "https://mawoka.eu" } } diff --git a/domains/maxgiveawaybot.json b/domains/maxgiveawaybot.json index f8bbac476..b76eddc11 100644 --- a/domains/maxgiveawaybot.json +++ b/domains/maxgiveawaybot.json @@ -1,10 +1,9 @@ { "owner": { "username": "emmu123", - "discord": "863271170228486187", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U15Blx01XkJwDCgPniImJMBtkqzEzQ_InjZmPuBx2h7RRMPnBgBqUDOgC6r4r0NCARF6iKa5FqP5dJkh2wP2d0fV3opIioWqApLGll1XQOTW5N14yTk3NO9B7Sqa2RVMB-xmxxrXSyILkDXO3WnF4k2JUdoIYJ2E_wd5Mo8CwQpkd3hIfzfroaoSUvmeIR_cDh3KLOoliP-1SFuNn_Yo4sqoFI0xifcQsXAEV9RLaQ5KuJQz9mv6RBeT8C13TxJIt51e4Bb_JXLMyVjz-jiFyuOTIY0Wt3e8ATgXXHovoJkDiP71xcEWA1jzWUGEWE1qC9bmseghh-Ii6_Z4ieWdKA.ddonB5m57O0yCwXStFhsiw.DjqWalsKwjt07LA_Q--Kxda7_hfxAwvgBHtGQphyj7VRCbVT3DBitJmTXvH0fUuJ4oqs4Lr0iWl7gbAi9zxJmKHXWuGJ7D-yDmSQRPwfJYE.RetwqAP8tPc9M0RpGyk26A" + "discord": "863271170228486187" }, - "record": { + "records": { "CNAME": "emmu123.github.io" } } diff --git a/domains/maximilian.json b/domains/maximilian.json index df71adf25..afae37fd1 100644 --- a/domains/maximilian.json +++ b/domains/maximilian.json @@ -3,13 +3,8 @@ "username": "MaximilianHeinrich", "email": "maxhei.21@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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/maxt.json b/domains/maxt.json index ef332e66e..7abf1430d 100644 --- a/domains/maxt.json +++ b/domains/maxt.json @@ -5,7 +5,7 @@ "username": "MaxTCodes", "email": "dev@maxt-is-a.dev" }, - "record": { + "records": { "URL": "https://maxt-is-a.dev" } } diff --git a/domains/maxwelbm.json b/domains/maxwelbm.json new file mode 100644 index 000000000..7b0deb9c5 --- /dev/null +++ b/domains/maxwelbm.json @@ -0,0 +1,11 @@ +{ + "description": "My blog personal.", + "repo": "https://github.com/maxwelbm/maxwelbm.github.io", + "owner": { + "username": "maxwelbm", + "email": "maxwelbm@hotmail.com" + }, + "records": { + "CNAME": "maxwelbm.github.io" + } +} diff --git a/domains/mayank-rathva.json b/domains/mayank-rathva.json index 0135f50cb..00d6c8397 100644 --- a/domains/mayank-rathva.json +++ b/domains/mayank-rathva.json @@ -4,7 +4,7 @@ "owner": { "username": "mayank-rathva" }, - "record": { + "records": { "CNAME": "mayank-rathva.github.io" } } diff --git a/domains/mayank.json b/domains/mayank.json index 3c9d891a5..e68c1343d 100644 --- a/domains/mayank.json +++ b/domains/mayank.json @@ -3,7 +3,7 @@ "username": "MayankServers", "email": "mayankreal657@gmail.com" }, - "record": { + "records": { "CNAME": "mayankservers.github.io" } } diff --git a/domains/mayank2808sharma.json b/domains/mayank2808sharma.json index 0c7ca10f7..535acdaca 100644 --- a/domains/mayank2808sharma.json +++ b/domains/mayank2808sharma.json @@ -6,7 +6,7 @@ "email": "mayank2808sharma@gmail.com", "twitter": "mayanksharmaa03" }, - "record": { + "records": { "CNAME": "mayank2808sharma.github.io" } } diff --git a/domains/docs.devmatei.json b/domains/maybe.json similarity index 65% rename from domains/docs.devmatei.json rename to domains/maybe.json index fb9d70034..5cdcf8cf4 100644 --- a/domains/docs.devmatei.json +++ b/domains/maybe.json @@ -3,9 +3,7 @@ "username": "DevMatei", "email": "matei.thoma@gmail.com" }, - "record": { - "A": [ - "75.2.60.5" - ] + "records": { + "A": ["75.2.60.5"] } } diff --git a/domains/mayerfried.json b/domains/mayerfried.json index 85b531275..00243c25e 100644 --- a/domains/mayerfried.json +++ b/domains/mayerfried.json @@ -1,11 +1,10 @@ { "description": "Mayer Fried Is A Dev", - "repo": "https://github.com/mfried40", "owner": { "username": "mfried40", "email": "mayer@mayerfried.com" }, - "record": { + "records": { "CNAME": "me.mayerfried.com" } } diff --git a/domains/mayur.json b/domains/mayur.json index 591394d56..ff89f24f9 100644 --- a/domains/mayur.json +++ b/domains/mayur.json @@ -5,7 +5,7 @@ "username": "mayurdange", "email": "mayurdange@live.com" }, - "record": { + "records": { "CNAME": "mayurdange.github.io" } } diff --git a/domains/mayuresh.json b/domains/mayuresh.json new file mode 100644 index 000000000..2d69b71a3 --- /dev/null +++ b/domains/mayuresh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mayur1377", + "email": "mayuresh1377@gmail.com" + }, + "records": { + "CNAME": "iammayur.vercel.app" + } +} diff --git a/domains/mayurraut.json b/domains/mayurraut.json new file mode 100644 index 000000000..6241b7100 --- /dev/null +++ b/domains/mayurraut.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/razobeckett/razobeckett.github.io", + "owner": { + "username": "razobeckett", + "email": "mayurraut.dev@gmail.com" + }, + "records": { + "CNAME": "razobeckett.github.io" + } +} diff --git a/domains/mazengohar.json b/domains/mazengohar.json index 79bee6893..5f96c072c 100644 --- a/domains/mazengohar.json +++ b/domains/mazengohar.json @@ -1,11 +1,10 @@ { "description": "Mazen Gohar - DEV", - "repo": "https://github.com/MazenGohar", "owner": { "username": "MazenGohar", "email": "mizoiology@gmail.com" }, - "record": { + "records": { "CNAME": "mazen-gohar-dev.onrender.com" } } diff --git a/domains/mb.json b/domains/mb.json index 246c7c3e5..2777ef44a 100644 --- a/domains/mb.json +++ b/domains/mb.json @@ -1,11 +1,10 @@ { "description": "Michael's personal developer website", - "repo": "https://github.com/mbrav", "owner": { "username": "mbrav", "email": "mbrav@protonmail.com" }, - "record": { + "records": { "CNAME": "mbrav.github.io" } } diff --git a/domains/mburguete.json b/domains/mburguete.json index 5486871a8..491ca5273 100644 --- a/domains/mburguete.json +++ b/domains/mburguete.json @@ -5,7 +5,7 @@ "username": "nai98x", "email": "marianoburguete@gmail.com" }, - "record": { + "records": { "CNAME": "nai98x.github.io" } } diff --git a/domains/mc.3gee.json b/domains/mc.3gee.json new file mode 100644 index 000000000..2926abfdd --- /dev/null +++ b/domains/mc.3gee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "records": { + "CNAME": "gold.magmanode.com" + } +} diff --git a/domains/mc.h3l.json b/domains/mc.h3l.json index 0145ec64c..57632f15f 100644 --- a/domains/mc.h3l.json +++ b/domains/mc.h3l.json @@ -5,7 +5,7 @@ "username": "gvalue-04", "email": "vaporvault04@gmail.com" }, - "record": { + "records": { "CNAME": "on-clan.gl.at.ply.gg" } } diff --git a/domains/mc.haft.json b/domains/mc.haft.json index 6cf4bd80a..228ad9aa6 100644 --- a/domains/mc.haft.json +++ b/domains/mc.haft.json @@ -6,7 +6,7 @@ "discord": "imhaft", "email": "haftthedev@gmail.com" }, - "record": { + "records": { "A": ["38.22.104.156"] } } diff --git a/domains/mc.js.json b/domains/mc.js.json new file mode 100644 index 000000000..03323a490 --- /dev/null +++ b/domains/mc.js.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "dev@j.is-a.dev" + }, + "records": { + "NS": ["galileo.aternos.org", "columbus.aternos.org"] + } +} diff --git a/domains/mc.json b/domains/mc.json index ccb5069a7..26adfa424 100644 --- a/domains/mc.json +++ b/domains/mc.json @@ -1,10 +1,9 @@ { "owner": { "username": "EducatedSuddenBucket", - "discord": "1167825360151380032", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LSD9kCcuVMiKKvlR-FO7qhiXahKbBdhrtM9wnZpaelPXdjLYvhVOOIGNqpus2aj8DuVjqu3gvaoKqOOCvlxZVe8O22Ef6JqCtu2HWMm4nZbXfpUyxpORZbSXuKg8JOIdX50Tm2Hrx3UwG4xjzbRAK96DUuew4l2qeIyEUrl1ycBpv5CEDPVQz6DN7v1IoWEZlYHup9x9zIjC4U-YR3zjXOTZPjyQul9fQFKXqy9oNsock4u0PTHCJ6q9aNG4WW2_n4gyGxYGXN5IdRxIsIIuXGif_W4u2FbjcSiWPvmN7FND-1jWnvwhYTK6fT0L5j2FJ7SVFanm1wi8Rg8AM2iG6A.oVOsZt9TwDae4njjIkcczw.p2DEVq4W4Wp1FbeEd50P0KQYEtxu_purdwrb5eskPNIhn-UU8V3V4MCcA0IFYSEtWGbjdHy3YtI6NXp_zTE1INyHslf9sBsr1zohyhTzqbHw3FYB_C7ZZioMg6jXrIy2.Yj7_I0i-HKwO8VBpDxpQeA" + "discord": "1167825360151380032" }, - "record": { + "records": { "CNAME": "bff5bd034c7fbbeafaaf626f505c8cc5.ipv4.tcpshield.com" } } diff --git a/domains/mc.minmit.json b/domains/mc.minmit.json index be6dba2f9..77c7f8777 100644 --- a/domains/mc.minmit.json +++ b/domains/mc.minmit.json @@ -4,7 +4,7 @@ "email": "minmitgamer@gmail.com", "discord": "499232953352716288" }, - "record": { + "records": { "A": ["141.144.228.165"] } } diff --git a/domains/mc.neki.json b/domains/mc.neki.json index f2156df7e..2cca284e1 100644 --- a/domains/mc.neki.json +++ b/domains/mc.neki.json @@ -3,7 +3,7 @@ "username": "PinkLittleKitty", "email": "santyfisela@neki.is-a.dev" }, - "record": { + "records": { "A": ["128.254.225.78"] } } diff --git a/domains/mc.notanicepenguin.json b/domains/mc.notanicepenguin.json new file mode 100644 index 000000000..eb0cf3a1c --- /dev/null +++ b/domains/mc.notanicepenguin.json @@ -0,0 +1,16 @@ +{ + "description": "Its to make a minecraft server.", + "owner": { + "username": "notanicepenguin" + }, + "records": { + "SRV": [ + { + "priority": 10, + "weight": 5, + "port": 26009, + "target": "notanicepenguin.aternos.me" + } + ] + } +} diff --git a/domains/mc.pig.json b/domains/mc.pig.json index 4d81398e5..d0599b570 100644 --- a/domains/mc.pig.json +++ b/domains/mc.pig.json @@ -3,7 +3,7 @@ "username": "ipigtw", "email": "diegogamingtw@gmail.com" }, - "record": { + "records": { "A": ["34.81.149.229"] } } diff --git a/domains/mc.vulcanocraft.json b/domains/mc.vulcanocraft.json index f1c58414c..cacff50ee 100644 --- a/domains/mc.vulcanocraft.json +++ b/domains/mc.vulcanocraft.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WYB8jKD71t5bNPCzGO99a6kcjoLLipJVLzHxhAqoPUcGLm8MAPJRa4WMlKhCDM0eN49rQ5EHzL08go2s05jE12ezxmZ92m58MJ9ztAlF16TOxCTI4Vy3hFknZlOWhIdE69DhINJT1sG1ceWLY_oGk758-GIvBAQrDVPB-5m1nYEpp2LYipiMngwgZDvz0gLF0BXXRrP7b74phJUmw39nK1_gE1uJFKuDknWGYlCxPfhJ1aNQEAHHxgbuVghaLCv3tIqrh29j99dXZjw8wFxmaubcew0eei1NaG_An_OzbgwsTJn3QiAnanYRtnSaMGBGTHzhJ3OWx9st5Phxfut7lQ.qPrZy8EOYsGDVaIXF-Ilcg.CXoxIk3NL2J6h0tipv9pRe47YDHQ3Vl7VB58l0tdPtSTE_guNUoBwxvNOLkwj5pozh3oVKlqdGH4sego6PCw1blqG5nIPKq3Lju0-jdQr_jH74BrOJ6Vp4VOY-m0-2kG.0kLSV4Xse1p9_QqEod0M6g" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "f14fb61a3cd4425fe52de16b257ca673.ipv4.tcpshield.com" } } diff --git a/domains/mcalec.json b/domains/mcalec.json new file mode 100644 index 000000000..4f4d7826b --- /dev/null +++ b/domains/mcalec.json @@ -0,0 +1,12 @@ +{ + "description": "mcalec.is-a.dev", + "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev", + "owner": { + "username": "mcalec-dev", + "email": "hello@mcalec.dev", + "discord": "mcalec" + }, + "records": { + "CNAME": "mcalec.dev" + } +} diff --git a/domains/mcotocel.json b/domains/mcotocel.json index 7659d4b43..3837e110e 100644 --- a/domains/mcotocel.json +++ b/domains/mcotocel.json @@ -5,7 +5,7 @@ "username": "mcotocel", "email": "mcotocel@outlook.com" }, - "record": { + "records": { "CNAME": "mcotocel.github.io" } } diff --git a/domains/mcreed.json b/domains/mcreed.json index b2ae7698e..dc25a00eb 100644 --- a/domains/mcreed.json +++ b/domains/mcreed.json @@ -3,12 +3,7 @@ "username": "M-creed", "email": "marwankalosha005@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/mcsavvy.json b/domains/mcsavvy.json index a67c41eea..01b62c89d 100644 --- a/domains/mcsavvy.json +++ b/domains/mcsavvy.json @@ -4,7 +4,7 @@ "discord": "savvii#3184", "email": "davemcsavvii@gmail.com" }, - "record": { + "records": { "CNAME": "mcsavvy.github.io" } } diff --git a/domains/mcstatus.json b/domains/mcstatus.json index 37f3924e7..87b27702b 100644 --- a/domains/mcstatus.json +++ b/domains/mcstatus.json @@ -4,10 +4,8 @@ "email": "educatedsuddenbucket@gmail.com", "discord": "1167825360151380032" }, - "record": { + "records": { "A": ["89.106.200.1"], - "TXT": [ - "google-site-verification=nDh74FzhzmLwzfX4wZWHjZOjNXmTCKyuw89TGKOIfkE" - ] + "TXT": ["google-site-verification=nDh74FzhzmLwzfX4wZWHjZOjNXmTCKyuw89TGKOIfkE"] } } diff --git a/domains/mduha.json b/domains/mduha.json index 13d6545c3..f428a6162 100644 --- a/domains/mduha.json +++ b/domains/mduha.json @@ -3,7 +3,7 @@ "username": "r2kch", "email": "marco@dubini.com" }, - "record": { + "records": { "A": ["84.72.8.155"] } } diff --git a/domains/me.json b/domains/me.json index 4bd2309ac..9bf93c73e 100644 --- a/domains/me.json +++ b/domains/me.json @@ -3,7 +3,7 @@ "username": "cloudcap10", "email": "jttalasan@live.com" }, - "record": { + "records": { "CNAME": "cloudcap10.github.io" } } diff --git a/domains/me.violet.json b/domains/me.violet.json new file mode 100644 index 000000000..4e521b2a5 --- /dev/null +++ b/domains/me.violet.json @@ -0,0 +1,9 @@ +{ + "description": "Personal Page", + "owner": { + "username": "violetlaire" + }, + "records": { + "CNAME": "portfolio-nine-delta-53.vercel.app" + } +} diff --git a/domains/mebius.json b/domains/mebius.json index e9fc701cd..c9c65b4b7 100644 --- a/domains/mebius.json +++ b/domains/mebius.json @@ -3,7 +3,7 @@ "username": "Mebiius", "email": "anjuangyu@gmail.com" }, - "record": { + "records": { "URL": "https://mebiius.github.io/" } } diff --git a/domains/medhanite.json b/domains/medhanite.json index 82ffc98e9..b58f430a1 100644 --- a/domains/medhanite.json +++ b/domains/medhanite.json @@ -5,7 +5,7 @@ "username": "EyobYb", "email": "eyobyirgu@gmail.com" }, - "record": { + "records": { "CNAME": "medhanite.github.io" } } diff --git a/domains/medinilla.json b/domains/medinilla.json new file mode 100644 index 000000000..356b02b64 --- /dev/null +++ b/domains/medinilla.json @@ -0,0 +1,11 @@ +{ + "description": "nedinilla is a dev", + "repo": "https://github.com/cmedinilla/cmedinilla.github.io", + "owner": { + "username": "cmedinilla", + "email": "cris.medinill@gmail.com" + }, + "records": { + "URL": "https://cmedinilla.github.io" + } +} diff --git a/domains/meerkats.shays.json b/domains/meerkats.shays.json index 4f57d567d..f32a63f30 100644 --- a/domains/meerkats.shays.json +++ b/domains/meerkats.shays.json @@ -3,7 +3,7 @@ "username": "SHays24", "discord": "munchkin2309" }, - "record": { + "records": { "CNAME": "the-meerkats-projects-shays24-90484013ec4c0067187cd3a154c706ad6.gitlab.io" } } diff --git a/domains/meesam.json b/domains/meesam.json index c850075b3..e11e5c46e 100644 --- a/domains/meesam.json +++ b/domains/meesam.json @@ -3,7 +3,7 @@ "username": "meesam4687", "email": "meesam4687@gmail.com" }, - "record": { + "records": { "CNAME": "meesam4687.github.io" } } diff --git a/domains/mega-lag.sx9.json b/domains/mega-lag.sx9.json index cc96811a3..8cf15f784 100644 --- a/domains/mega-lag.sx9.json +++ b/domains/mega-lag.sx9.json @@ -3,7 +3,7 @@ "username": "SX-9", "email": "satriakrach@gmail.com" }, - "record": { + "records": { "CNAME": "sx-9.github.io" } } diff --git a/domains/mega.json b/domains/mega.json index b93865291..960bf7345 100644 --- a/domains/mega.json +++ b/domains/mega.json @@ -1,11 +1,10 @@ { "description": "My Personal website and possibly an API", - "repo": "https://github.com/MegaDevGuy", "owner": { "username": "MegaDevGuy", "twitter": "_Mega_Dev_" }, - "record": { + "records": { "CNAME": "flask-production-b336.up.railway.app" } } diff --git a/domains/megalith.json b/domains/megalith.json index 2e569285e..e48e360c9 100644 --- a/domains/megalith.json +++ b/domains/megalith.json @@ -3,7 +3,7 @@ "username": "MegalithOffical", "email": "gekocakaya@gmail.com" }, - "record": { + "records": { "URL": "https://profile-megalithoffical.vercel.app" } } diff --git a/domains/meghdip.json b/domains/meghdip.json index 3365c4c37..410e26d5a 100644 --- a/domains/meghdip.json +++ b/domains/meghdip.json @@ -4,7 +4,7 @@ "email": "karmakarmeghdip@gmail.com", "discord": "479631349167423509" }, - "record": { - "CNAME": "karmakarmeghdip.github.io" + "records": { + "CNAME": "meghdip.vercel.app" } } diff --git a/domains/mehdigr.json b/domains/mehdigr.json index bf3dda1e6..1381f9d5a 100644 --- a/domains/mehdigr.json +++ b/domains/mehdigr.json @@ -3,7 +3,7 @@ "username": "MehdiGR", "email": "Mehdi_osMd@proton.me" }, - "record": { + "records": { "URL": "https://mehdigr.netlify.app/" } } diff --git a/domains/mehdigrdev.json b/domains/mehdigrdev.json index 45662c47c..ce2d9189c 100644 --- a/domains/mehdigrdev.json +++ b/domains/mehdigrdev.json @@ -3,7 +3,7 @@ "username": "Mehdi-GR-Dev", "email": "Mehdi_is_my_Email@proton.me" }, - "record": { + "records": { "URL": "https://portfolio-seven-gold-50.vercel.app/" } } diff --git a/domains/mehedi.json b/domains/mehedi.json index af13fd29d..ee0252251 100644 --- a/domains/mehedi.json +++ b/domains/mehedi.json @@ -3,7 +3,7 @@ "username": "asma019", "email": "asmaparvin019@gmail.com" }, - "record": { + "records": { "CNAME": "asma019.github.io" } } diff --git a/domains/mehedihjim.json b/domains/mehedihjim.json new file mode 100644 index 000000000..79e470151 --- /dev/null +++ b/domains/mehedihjim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mehedihjim", + "email": "mhjim.info@gmail.com" + }, + "records": { + "CNAME": "mehedihjim.github.io" + } +} diff --git a/domains/mehmetabak.json b/domains/mehmetabak.json index dd3ed4ed4..06d0882d0 100644 --- a/domains/mehmetabak.json +++ b/domains/mehmetabak.json @@ -5,7 +5,7 @@ "username": "memoli0", "email": "indiahelloim01@gmail.com" }, - "record": { + "records": { "URL": "https://mehmetabak.vercel.app" } } diff --git a/domains/mehrdad.json b/domains/mehrdad.json new file mode 100644 index 000000000..cb6f359ea --- /dev/null +++ b/domains/mehrdad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mehrdad-shokri", + "email": "code.poet95@gmail.com" + }, + "records": { + "CNAME": "mehrdad.ai" + } +} diff --git a/domains/mehrshad.json b/domains/mehrshad.json new file mode 100644 index 000000000..f622ced8c --- /dev/null +++ b/domains/mehrshad.json @@ -0,0 +1,11 @@ +{ + "description": "Overview And Introduction of Owner's Open Source Projects", + "repo": "https://github.com/SaintScraTchY/SaintScraTchY.github.io", + "owner": { + "username": "SaintScraTchY", + "email": "mehrshad2028@gmail.com" + }, + "records": { + "CNAME": "saintscratchy.github.io" + } +} diff --git a/domains/mehtiyev.json b/domains/mehtiyev.json new file mode 100644 index 000000000..6ff2dd9d4 --- /dev/null +++ b/domains/mehtiyev.json @@ -0,0 +1,13 @@ +{ + "description": "Personal portfolio website hosted on Azure Static Web Apps", + "owner": { + "username": "Mehtiyevs", + "email": "mehtiyevelnur261@gmail.com", + "discord": "eln_meht" + }, + "records": { + "CNAME": "thankful-beach-04863d303.6.azurestaticapps.net", + "TXT": "vc-domain-verify=mehtiyev.is-a.dev,_x65jujuilutr796n9mg5yz0zkhpv8s6" + }, + "proxied": true +} diff --git a/domains/mehul.json b/domains/mehul.json index 2b57a89e4..220f5cde9 100644 --- a/domains/mehul.json +++ b/domains/mehul.json @@ -4,7 +4,7 @@ "username": "psvm-tallman", "email": "mehulsavio@gmail.com" }, - "record": { + "records": { "URL": "https://mehul-uttam-portfolio.vercel.app" } } diff --git a/domains/mehulpathak.json b/domains/mehulpathak.json new file mode 100644 index 000000000..08a86c41d --- /dev/null +++ b/domains/mehulpathak.json @@ -0,0 +1,10 @@ +{ + "description": "Mehul Pathak's Portfolio", + "owner": { + "username": "m3hu1", + "email": "pathakkmehul@gmail.com" + }, + "records": { + "URL": "https://mehulpathak.vercel.app/" + } +} diff --git a/domains/meku.json b/domains/meku.json index e160851ed..27d54d81d 100644 --- a/domains/meku.json +++ b/domains/meku.json @@ -4,7 +4,7 @@ "email": "micomacabali14@gmail.com", "discord": "1130452399094505534" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/mekuu.json b/domains/mekuu.json index 5071f1cfc..b20bb2e1a 100644 --- a/domains/mekuu.json +++ b/domains/mekuu.json @@ -3,7 +3,7 @@ "username": "Mai1ii", "email": "micomacabali14@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/mekuuu.json b/domains/mekuuu.json index 5071f1cfc..b20bb2e1a 100644 --- a/domains/mekuuu.json +++ b/domains/mekuuu.json @@ -3,7 +3,7 @@ "username": "Mai1ii", "email": "micomacabali14@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/mekuvsh.json b/domains/mekuvsh.json index 5071f1cfc..b20bb2e1a 100644 --- a/domains/mekuvsh.json +++ b/domains/mekuvsh.json @@ -3,7 +3,7 @@ "username": "Mai1ii", "email": "micomacabali14@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/mekuzv.json b/domains/mekuzv.json index 5071f1cfc..b20bb2e1a 100644 --- a/domains/mekuzv.json +++ b/domains/mekuzv.json @@ -3,7 +3,7 @@ "username": "Mai1ii", "email": "micomacabali14@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/melainegerard.json b/domains/melainegerard.json index 211289550..c2dcf96ce 100644 --- a/domains/melainegerard.json +++ b/domains/melainegerard.json @@ -1,12 +1,11 @@ { "description": "Redirect to my personal website", - "repo": "https://github.com/MelaineGerard", "owner": { "username": "MelaineGerard", "email": "pro@melaine-gerard.fr", "discord": "SkitDev#2556" }, - "record": { + "records": { "URL": "https://melaine-gerard.fr" } } diff --git a/domains/melatonin.json b/domains/melatonin.json index 7af06d425..d4f32161b 100644 --- a/domains/melatonin.json +++ b/domains/melatonin.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "heheleo", - "email": "leowasntfound@gmail.com" - }, - "record": { - "CNAME": "heheleo.github.io" - } + "owner": { + "username": "heheleo", + "email": "leowasntfound@gmail.com" + }, + "records": { + "CNAME": "heheleo.github.io" + } } diff --git a/domains/melih.json b/domains/melih.json new file mode 100644 index 000000000..98db4c0f1 --- /dev/null +++ b/domains/melih.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mdegis", + "email": "melihdegis@gmail.com" + }, + "records": { + "CNAME": "mdegis.com" + } +} diff --git a/domains/melody.json b/domains/melody.json index ab6099cd2..0253a2497 100644 --- a/domains/melody.json +++ b/domains/melody.json @@ -4,7 +4,7 @@ "email": "phantonducthang@hotmail.com", "discord": "1190624410630099046" }, - "record": { + "records": { "CNAME": "melody.64342fb9f8-hosting.gitbook.io" } } diff --git a/domains/meloun7.json b/domains/meloun7.json index c1275092f..4a2fd3e44 100644 --- a/domains/meloun7.json +++ b/domains/meloun7.json @@ -1,11 +1,10 @@ { "description": "My personal website", - "repo": "https://github.com/Whtery1087", "owner": { "username": "Whtery1087", "email": "beelandsofficialmc@gmail.com" }, - "record": { + "records": { "CNAME": "web-1.hostnow.cz" } } diff --git a/domains/melvin.json b/domains/melvin.json index b982de417..12b10cd4b 100644 --- a/domains/melvin.json +++ b/domains/melvin.json @@ -3,7 +3,7 @@ "username": "melvinjjoseph", "email": "melvinjjoseph2002@gmail.com" }, - "record": { + "records": { "CNAME": "melvinjjoseph.github.io" } } diff --git a/domains/melwyn.json b/domains/melwyn.json index fc8306d93..a88017f56 100644 --- a/domains/melwyn.json +++ b/domains/melwyn.json @@ -5,7 +5,7 @@ "username": "melwyn95", "email": "melwyn95@gmail.com" }, - "record": { + "records": { "CNAME": "melwyn95.github.io" } } diff --git a/domains/memo.json b/domains/memo.json new file mode 100644 index 000000000..b571811f9 --- /dev/null +++ b/domains/memo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gmglln", + "email": "gmogollan@gmail.com" + }, + "records": { + "URL": "https://github.com/gmglln" + } +} diff --git a/domains/menard.json b/domains/menard.json index 35c72932a..0849dfda2 100644 --- a/domains/menard.json +++ b/domains/menard.json @@ -3,7 +3,7 @@ "username": "DevNanad", "email": "menardpajares02@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-fe29.onrender.com" } } diff --git a/domains/menkr.json b/domains/menkr.json index fbe679633..d932fb8b2 100644 --- a/domains/menkr.json +++ b/domains/menkr.json @@ -3,7 +3,7 @@ "username": "me-nkr", "email": "thenaveenkr7@gmail.com" }, - "record": { + "records": { "URL": "https://dev.menkr.in" } } diff --git a/domains/menn.json b/domains/menn.json new file mode 100644 index 000000000..5822484ad --- /dev/null +++ b/domains/menn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hedgehog-menn", + "email": "kp.thananchai@gmail.com", + "discord": "26623men" + }, + "records": { + "CNAME": "hedgehog-menn.vercel.app" + } +} diff --git a/domains/meow.json b/domains/meow.json new file mode 100644 index 000000000..f790320b1 --- /dev/null +++ b/domains/meow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "records": { + "CNAME": "ukriu.pages.dev" + } +} diff --git a/domains/merely.json b/domains/merely.json index 66bd2a57d..342570bc2 100644 --- a/domains/merely.json +++ b/domains/merely.json @@ -3,7 +3,7 @@ "username": "MerelyMiserable", "email": "MerelyMiserable@gmail.com" }, - "record": { + "records": { "CNAME": "merelymiserable.github.io" } } diff --git a/domains/mert.json b/domains/mert.json index b636c7bff..37f8051a5 100644 --- a/domains/mert.json +++ b/domains/mert.json @@ -3,7 +3,7 @@ "username": "DevJustMert", "email": "mertcelik0541@gmail.com" }, - "record": { + "records": { "URL": "https://mert.vercel.app" } } diff --git a/domains/mertal-i.json b/domains/mertal-i.json index 04c5a2b21..f469c6212 100644 --- a/domains/mertal-i.json +++ b/domains/mertal-i.json @@ -1,10 +1,9 @@ { "owner": { "username": "mertal-i", - "discord": "756092748104335370", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.SKwpppmoVeC4eo8UVv9DF7inwpr6T1c7CJ1VULOurIk7f97GfyJtC4CjQBlZgv6ozPXsIzWejztvds2d0jDIoJ2__3D5cN58iztxzso4a_AukvAyaDo3CiqOa_VVU9clnRpE78F1oixzDCdzGkYTxShqf0ufHact_JZeJtQe6Nlvo7u25MULuXDXWrRB-8sydkAF7bFlpDt9RoN5TQMQT0chhFniiRW6GvNcv7wA0ww9XGvM3TnMUJDiEW-33P9lseFEZ7dnL00ymGQiv_NZ5udJ52d5zSBFtjyUS1neAWlAmSg2IAdI1vSOrJioXQ6uKm8g6U3V2AugXgq_DQZigA.cWNDprOdJItlfuXKLATXsw._ok99P9vK5jnDZ4wT7_R0kRjWGKhlEyWC3798tYoKv6gq1lEvcxfk52TdGu4EkDBtCHZNcJfzvQa4l2-ghvLxUEKkyHNz9O0s_Mxm1you-fAOMUr-1VhB73VIKKuYmrB.ctQR3Ro5bLhtvS4D4t4F6Q" + "discord": "756092748104335370" }, - "record": { + "records": { "A": ["185.27.134.223"] } } diff --git a/domains/mertdemir.json b/domains/mertdemir.json new file mode 100644 index 000000000..58dd4344b --- /dev/null +++ b/domains/mertdemir.json @@ -0,0 +1,11 @@ +{ + "description": "Mert Demir CV", + "repo": "https://github.com/mertdemir0/mertdemir0.github.io", + "owner": { + "username": "mertdemir0", + "email": "mertdemir@pec.it" + }, + "records": { + "CNAME": "mertdemir0.github.io" + } +} diff --git a/domains/mesflit.json b/domains/mesflit.json index 8f620936f..891195d95 100644 --- a/domains/mesflit.json +++ b/domains/mesflit.json @@ -3,7 +3,7 @@ "username": "mesflit", "email": "benomerfaruk11@gmail.com" }, - "record": { + "records": { "URL": "https://mesflit.github.io/" } } diff --git a/domains/mesren2.json b/domains/mesren2.json new file mode 100644 index 000000000..c09aaf642 --- /dev/null +++ b/domains/mesren2.json @@ -0,0 +1,11 @@ +{ + "description": "main website for mesren2", + "repo": "https://github.com/mesren2/mesren2.github.io", + "owner": { + "username": "mesren2", + "email": "iamreallysilly90@gmail.com" + }, + "records": { + "CNAME": "mesren2.github.io" + } +} diff --git a/domains/messiersixtyfour.json b/domains/messiersixtyfour.json index e9e8f28df..95b9eb853 100644 --- a/domains/messiersixtyfour.json +++ b/domains/messiersixtyfour.json @@ -3,7 +3,7 @@ "username": "MessierSixtyFour", "email": "messier1244@gmail.com" }, - "record": { + "records": { "CNAME": "messiersixtyfour.github.io" } } diff --git a/domains/mew.json b/domains/mew.json index b620c7f01..5a8a2018e 100644 --- a/domains/mew.json +++ b/domains/mew.json @@ -1,12 +1,9 @@ -{ - "owner": { - "username": "meewmeew", - "email": "mauminh.nguyen@gmail.com" - }, - "record": { - "NS": [ - "bart.ns.cloudflare.com", - "karina.ns.cloudflare.com" - ] - } -} \ No newline at end of file +{ + "owner": { + "username": "meewmeew", + "email": "mauminh.nguyen@gmail.com" + }, + "records": { + "NS": ["bart.ns.cloudflare.com", "karina.ns.cloudflare.com"] + } +} diff --git a/domains/mewwme.json b/domains/mewwme.json index 07f130c06..1d652cd54 100644 --- a/domains/mewwme.json +++ b/domains/mewwme.json @@ -5,7 +5,7 @@ "username": "lrmn7", "email": "lrmn.dev@gmail.com" }, - "record": { + "records": { "CNAME": "mewwme.github.io" } } diff --git a/domains/meyer-pidiache.json b/domains/meyer-pidiache.json new file mode 100644 index 000000000..59c61f1dc --- /dev/null +++ b/domains/meyer-pidiache.json @@ -0,0 +1,10 @@ +{ + "description": "Blog", + "owner": { + "username": "meyer-pidiache", + "email": "pidiache@duck.com" + }, + "records": { + "CNAME": "meyer-pidiache.github.io" + } +} diff --git a/domains/meywy.json b/domains/meywy.json index 51c3765e1..ee55f53e2 100644 --- a/domains/meywy.json +++ b/domains/meywy.json @@ -6,7 +6,7 @@ "email": "meywyy@gmail.com", "discord": "923162990419791913" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all", "A": ["75.2.60.5"] diff --git a/domains/mgb.json b/domains/mgb.json new file mode 100644 index 000000000..745037a7e --- /dev/null +++ b/domains/mgb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mbonum", + "email": "m.bonum@protonmail.com" + }, + "records": { + "CNAME": "mbonum.github.io" + } +} diff --git a/domains/mhmd.json b/domains/mhmd.json index b8b4d0d1d..70fd874a9 100644 --- a/domains/mhmd.json +++ b/domains/mhmd.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "URL": "https://mohammedkhc.is-a.dev" } } diff --git a/domains/mhzen.json b/domains/mhzen.json new file mode 100644 index 000000000..958476f73 --- /dev/null +++ b/domains/mhzen.json @@ -0,0 +1,10 @@ +{ + "description": "Personal site", + "owner": { + "username": "mhzen", + "email": "mhzen@proton.me" + }, + "records": { + "CNAME": "mhzen.pages.dev" + } +} diff --git a/domains/miaomingc.json b/domains/miaomingc.json new file mode 100644 index 000000000..37ddf5453 --- /dev/null +++ b/domains/miaomingc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "miaomingc", + "email": "miaomingc@outlook.com" + }, + "records": { + "A": ["204.194.66.196"], + "AAAA": ["2001:470:18:c89::2"] + } +} diff --git a/domains/micah.json b/domains/micah.json index ebe809748..af23a797e 100644 --- a/domains/micah.json +++ b/domains/micah.json @@ -1,11 +1,10 @@ { "description": "Micah Lindley is a web developer.", - "repo": "https://github.com/micahlt", "owner": { "username": "micahlt", "email": "hi@micahlindley.com" }, - "record": { + "records": { "URL": "https://micahlindley.com" } } diff --git a/domains/micahb.json b/domains/micahb.json new file mode 100644 index 000000000..4f43a8b29 --- /dev/null +++ b/domains/micahb.json @@ -0,0 +1,11 @@ +{ + "description": "Micah Brereton, technologist creating impact", + "owner": { + "username": "BreretonCodez", + "email": "me@micahb.net", + "discord": "kingmb" + }, + "records": { + "URL": "https://micahb.net" + } +} diff --git a/domains/michael.json b/domains/michael.json index 5b07e4bf6..dffe94773 100644 --- a/domains/michael.json +++ b/domains/michael.json @@ -5,7 +5,7 @@ "username": "michaelmano", "email": "michael.mano26@gmail.com" }, - "record": { + "records": { "CNAME": "michaelmano.github.io" } } diff --git a/domains/michaelmuthomi.json b/domains/michaelmuthomi.json new file mode 100644 index 000000000..81345f648 --- /dev/null +++ b/domains/michaelmuthomi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "michaelmuthomi", + "email": "lit911call@gmail.com" + }, + "records": { + "CNAME": "michael-portfolio-green.vercel.app" + } +} diff --git a/domains/michi.json b/domains/michi.json index cd1f6cc41..9e7d71fb7 100644 --- a/domains/michi.json +++ b/domains/michi.json @@ -5,7 +5,7 @@ "username": "Michi4", "email": "michael.ruep@gmail.com" }, - "record": { + "records": { "CNAME": "michi4.vercel.app" } } diff --git a/domains/michioxd.json b/domains/michioxd.json index f63024993..2b3198f71 100644 --- a/domains/michioxd.json +++ b/domains/michioxd.json @@ -3,7 +3,7 @@ "username": "michioxd", "email": "michio.haiyaku@gmail.com" }, - "record": { + "records": { "CNAME": "michioxd.github.io" } } diff --git a/domains/micky.json b/domains/micky.json index 897c8a06e..b02cf0876 100644 --- a/domains/micky.json +++ b/domains/micky.json @@ -3,7 +3,7 @@ "username": "Manish5121", "email": "manishgambhirrao21@gmail.com" }, - "record": { + "records": { "CNAME": "manish5121.github.io" } } diff --git a/domains/mico.json b/domains/mico.json index 461378ddb..136eb4c88 100644 --- a/domains/mico.json +++ b/domains/mico.json @@ -2,7 +2,7 @@ "owner": { "username": "micoms" }, - "record": { + "records": { "CNAME": "micoo.vercel.app" } } diff --git a/domains/micozv.json b/domains/micozv.json index 8872dfe46..28c357bcf 100644 --- a/domains/micozv.json +++ b/domains/micozv.json @@ -4,7 +4,7 @@ "email": "macabalimicooz@gmail.com", "discord": "711934005343158303" }, - "record": { + "records": { "CNAME": "mekuvsh.pages.dev" } } diff --git a/domains/midair.json b/domains/midair.json index f6e5c0c37..7a6f2ddb4 100644 --- a/domains/midair.json +++ b/domains/midair.json @@ -6,7 +6,7 @@ "email": "midair4546@gmail.com", "twitter": "M16a1r" }, - "record": { + "records": { "CNAME": "zmidair.github.io" } } diff --git a/domains/midlaj.json b/domains/midlaj.json index d551b462c..34364643f 100644 --- a/domains/midlaj.json +++ b/domains/midlaj.json @@ -3,7 +3,7 @@ "username": "whoismidlaj", "email": "midlaj@tuta.io" }, - "record": { + "records": { "A": ["107.173.201.166"] } } diff --git a/domains/midnight0s.json b/domains/midnight0s.json index 97e672be3..dff17c13e 100644 --- a/domains/midnight0s.json +++ b/domains/midnight0s.json @@ -3,7 +3,7 @@ "username": "midnight0s", "discord": "817858871388799026" }, - "record": { + "records": { "CNAME": "midnight0s-is-a-dev.vercel.app" } } diff --git a/domains/mig.json b/domains/mig.json index fd64f6d89..8d1f02afc 100644 --- a/domains/mig.json +++ b/domains/mig.json @@ -8,7 +8,7 @@ "instagram": "miguelcodes7", "note": "Previously, mig.is-a.dev was hosted on Netlify, but now it will be hosted on vercel. _vercel.mig.json has been created already. I have also updated my social media (email and instagram)." }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/miguel.json b/domains/miguel.json index bf19dfe0d..ea7e4f347 100644 --- a/domains/miguel.json +++ b/domains/miguel.json @@ -1,11 +1,10 @@ { "description": "Miguel Piedrafita's website", - "repo": "https://github.com/m1guelpf", "owner": { "username": "m1guelpf", "email": "soy@miguelpiedrafita.com" }, - "record": { + "records": { "URL": "https://miguelpiedrafita.com" } } diff --git a/domains/miguelsole.json b/domains/miguelsole.json new file mode 100644 index 000000000..30ba48c05 --- /dev/null +++ b/domains/miguelsole.json @@ -0,0 +1,11 @@ +{ + "description": "Miguel Sole's personal portfolio", + "repo": "https://github.com/Msole18/12-portfolio", + "owner": { + "username": "Msole18", + "email": "miguel.sole18@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/mihai.json b/domains/mihai.json index cfa0ed3bb..abc5ee29f 100644 --- a/domains/mihai.json +++ b/domains/mihai.json @@ -5,7 +5,7 @@ "email": "mihai@8xu.tech", "twitter": "reallymihai" }, - "record": { + "records": { "CNAME": "8xu.github.io" } } diff --git a/domains/mihchis.json b/domains/mihchis.json new file mode 100644 index 000000000..95b55fbe6 --- /dev/null +++ b/domains/mihchis.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mihchis" + }, + "records": { + "CNAME": "mihchis.github.io" + } +} diff --git a/domains/mihir-patel-agc.json b/domains/mihir-patel-agc.json index f8221e0aa..6b7ed9819 100644 --- a/domains/mihir-patel-agc.json +++ b/domains/mihir-patel-agc.json @@ -4,7 +4,7 @@ "owner": { "username": "mihir-patel-agc" }, - "record": { + "records": { "CNAME": "mihir-patel-agc.github.io" } } diff --git a/domains/mihrpsah.json b/domains/mihrpsah.json index dc0a565e0..37f4ab534 100644 --- a/domains/mihrpsah.json +++ b/domains/mihrpsah.json @@ -3,7 +3,7 @@ "username": "mihrpsah", "email": "smihirp1@gmail.com" }, - "record": { + "records": { "CNAME": "mihrpsah.github.io" } } diff --git a/domains/mijhelt.json b/domains/mijhelt.json index 2366f230c..2cf78e11a 100644 --- a/domains/mijhelt.json +++ b/domains/mijhelt.json @@ -4,7 +4,7 @@ "email": "ondanwe@gmail.com" }, "description": "Aero Glass+", - "record": { + "records": { "CNAME": "mijhelt.github.io" } } diff --git a/domains/mika.json b/domains/mika.json index b6caa09c5..9abb6a1f0 100644 --- a/domains/mika.json +++ b/domains/mika.json @@ -4,7 +4,7 @@ "username": "Developer-Mike", "email": "delta.cephei@outlook.com" }, - "record": { + "records": { "URL": "https://developer-mike.vercel.app/" } } diff --git a/domains/mikapikazo.json b/domains/mikapikazo.json index 1e5e92d4e..290541106 100644 --- a/domains/mikapikazo.json +++ b/domains/mikapikazo.json @@ -3,7 +3,7 @@ "username": "rinxyzz", "email": "putriimuttzz.cantikk@gmail.com" }, - "record": { + "records": { "CNAME": "rinxyzz-github-io.pages.dev" } } diff --git a/domains/mike.json b/domains/mike.json index 41b595b2f..1cd8e81d9 100644 --- a/domains/mike.json +++ b/domains/mike.json @@ -1,11 +1,10 @@ { "description": "Mike's portfolio website and blog", - "repo": "https://github.com/mdrobbins", "owner": { "username": "mdrobbins", "email": "mikedrobbins@gmail.com" }, - "record": { + "records": { "URL": "https://mikerobbins.me" } } diff --git a/domains/mikevdberge.json b/domains/mikevdberge.json new file mode 100644 index 000000000..0b47c66ce --- /dev/null +++ b/domains/mikevdberge.json @@ -0,0 +1,10 @@ +{ + "description": "Mike van den Berge's website and blog", + "owner": { + "username": "mikevdberge", + "email": "mike.van.den.berge@gmail.com" + }, + "records": { + "CNAME": "mikevdberge.github.io" + } +} diff --git a/domains/mikey.json b/domains/mikey.json index 37e048b27..1a94b1911 100644 --- a/domains/mikey.json +++ b/domains/mikey.json @@ -5,7 +5,7 @@ "username": "isigebengu-mikey", "email": "mikey@mikeyo.ml" }, - "record": { + "records": { "CNAME": "isigebengu-mikey.github.io" } } diff --git a/domains/mikko.json b/domains/mikko.json index 64a7c0e2f..f900452e3 100644 --- a/domains/mikko.json +++ b/domains/mikko.json @@ -6,7 +6,7 @@ "email": "mikkoahh@gmail.com", "twitter": "mikkortx" }, - "record": { + "records": { "CNAME": "mikkortx.github.io" } } diff --git a/domains/miko.json b/domains/miko.json new file mode 100644 index 000000000..cd66b7373 --- /dev/null +++ b/domains/miko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mspratama", + "email": "mikospratama@gmail.com" + }, + "records": { + "CNAME": "mikosp.pages.dev" + } +} diff --git a/domains/mikronet.json b/domains/mikronet.json index 7898f18a1..a60c3e5f6 100644 --- a/domains/mikronet.json +++ b/domains/mikronet.json @@ -3,7 +3,7 @@ "username": "mikrodinet", "email": "mikrodinet@gmail.com" }, - "record": { + "records": { "CNAME": "mikrodinet.github.io" } } diff --git a/domains/milaan.json b/domains/milaan.json new file mode 100644 index 000000000..15b0ff9c0 --- /dev/null +++ b/domains/milaan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "milandangol", + "email": "milandangol57@gmail.com" + }, + "records": { + "CNAME": "milaan.pages.dev" + } +} diff --git a/domains/miladamiri.json b/domains/miladamiri.json index c77d3ee11..c28e04b87 100644 --- a/domains/miladamiri.json +++ b/domains/miladamiri.json @@ -3,7 +3,7 @@ "username": "DigitalGenius-ui", "email": "miladmarketing282@gmail.com" }, - "record": { + "records": { "URL": "https://miladamiri.netlify.app/" } } diff --git a/domains/milan.json b/domains/milan.json index 17cb89d11..27efac826 100644 --- a/domains/milan.json +++ b/domains/milan.json @@ -5,7 +5,7 @@ "username": "milanaryal", "mastodon": "@milanaryal@mastodon.social" }, - "record": { + "records": { "URL": "https://milanaryal.com.np" } } diff --git a/domains/milan090.json b/domains/milan090.json index 7a6d8947d..bbbee149b 100644 --- a/domains/milan090.json +++ b/domains/milan090.json @@ -1,11 +1,10 @@ { "description": "I'm a student, but who are you 🔫", - "repo": "https://github.com/milan090", "owner": { "username": "milan090", "email": "milanmuhammed1@gmail.com" }, - "record": { + "records": { "URL": "https://milan090.me" } } diff --git a/domains/milind.json b/domains/milind.json index 6bc98cbea..176164f9a 100644 --- a/domains/milind.json +++ b/domains/milind.json @@ -3,7 +3,7 @@ "username": "milindmadhukar", "email": "m.milind15@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/milindmadhukar" } } diff --git a/domains/milodev123.json b/domains/milodev123.json new file mode 100644 index 000000000..76ce0ab99 --- /dev/null +++ b/domains/milodev123.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MiloDev123", + "email": "milo@milosantos.com", + "discord": "699318362848886864" + }, + "records": { + "NS": ["kristin.ns.cloudflare.com", "uriah.ns.cloudflare.com"] + } +} diff --git a/domains/milu.json b/domains/milu.json index 3f0eed517..4aa989c55 100644 --- a/domains/milu.json +++ b/domains/milu.json @@ -3,7 +3,7 @@ "username": "milanmarton", "discord": "312899549670801410" }, - "record": { + "records": { "CNAME": "milu-eor.pages.dev" } } diff --git a/domains/mimic.json b/domains/mimic.json new file mode 100644 index 000000000..d8cd80f3b --- /dev/null +++ b/domains/mimic.json @@ -0,0 +1,11 @@ +{ + "description": "@mimic's personal portfolio", + "repo": "https://github.com/GioMjds/Personal-Portfolio.git", + "owner": { + "username": "GioMjds", + "email": "giomjds@gmail.com" + }, + "records": { + "CNAME": "giomjds-portfolio.vercel.app" + } +} diff --git a/domains/minecraft.mrdiamond.json b/domains/minecraft.mrdiamond.json new file mode 100644 index 000000000..6e0e6f44a --- /dev/null +++ b/domains/minecraft.mrdiamond.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "records": { + "A": ["129.146.51.207"] + } +} diff --git a/domains/mineek.json b/domains/mineek.json index 3ad87f615..317ec10e3 100644 --- a/domains/mineek.json +++ b/domains/mineek.json @@ -5,7 +5,7 @@ "username": "mineek", "discord": "Mineek#6323" }, - "record": { + "records": { "CNAME": "mineek.github.io" } } diff --git a/domains/minerwolfybtvn.json b/domains/minerwolfybtvn.json index 749826128..f939132ab 100644 --- a/domains/minerwolfybtvn.json +++ b/domains/minerwolfybtvn.json @@ -4,7 +4,7 @@ "email": "ngdung853@gmail.com", "discord": "947884053544189992" }, - "record": { + "records": { "CNAME": "miner-9eu.pages.dev" } } diff --git a/domains/minh2000.json b/domains/minh2000.json index e5de8a9f2..edad97a53 100644 --- a/domains/minh2000.json +++ b/domains/minh2000.json @@ -4,7 +4,7 @@ "email": "mn9173024@gmail.com", "discord": "634263941153030175" }, - "record": { + "records": { "CNAME": "minnb-bit.github.io" } } diff --git a/domains/minhh2792.json b/domains/minhh2792.json index 137d11b4e..0947f70f9 100644 --- a/domains/minhh2792.json +++ b/domains/minhh2792.json @@ -6,7 +6,7 @@ "email": "minhh2792.work@gmail.com", "twitter": "minhh2792" }, - "record": { + "records": { "CNAME": "minhh2792.github.io" } } diff --git a/domains/minhmmb.json b/domains/minhmmb.json index 3d516cb07..fdc5ac473 100644 --- a/domains/minhmmb.json +++ b/domains/minhmmb.json @@ -3,7 +3,7 @@ "username": "minnb-bit", "email": "mn9173024@gmail.com" }, - "record": { + "records": { "CNAME": "minnb-bit.github.io" } } diff --git a/domains/minhphan.json b/domains/minhphan.json index 8a75dc1d5..abcba30ea 100644 --- a/domains/minhphan.json +++ b/domains/minhphan.json @@ -3,7 +3,7 @@ "username": "MinhPhan1203", "email": "phan48788@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/minhphuong.json b/domains/minhphuong.json new file mode 100644 index 000000000..7c0fc3965 --- /dev/null +++ b/domains/minhphuong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PhuongDeveloper", + "email": "trminhphuong28@gmail.com" + }, + "records": { + "CNAME": "phuongdeveloper.github.io" + } +} diff --git a/domains/minhtan.json b/domains/minhtan.json new file mode 100644 index 000000000..119428d5c --- /dev/null +++ b/domains/minhtan.json @@ -0,0 +1,12 @@ +{ + "description": "Trình giả lập chạy mã Python trên website.", + "repo": "https://github.com/tanbaycu/pythonCLI-webapp", + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "records": { + "CNAME": "python-cli-webapp.vercel.app" + }, + "proxied": true +} diff --git a/domains/minhtuan-1.json b/domains/minhtuan-1.json new file mode 100644 index 000000000..75c9a8d06 --- /dev/null +++ b/domains/minhtuan-1.json @@ -0,0 +1,11 @@ +{ + "description": "profile-tuan.dev", + "owner": { + "username": "tuannguyen2002", + "email": "nxmtuan.2002@gmail.com", + "discord": "nightfury06749" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/minhvo.json b/domains/minhvo.json new file mode 100644 index 000000000..22b3d27fa --- /dev/null +++ b/domains/minhvo.json @@ -0,0 +1,12 @@ +{ + "description": "minhomega.github.io", + "repo": "https://github.com/minhomega/minhomega.github.io", + "owner": { + "username": "minhomega", + "email": "minhvo050298@gmail.com", + "discord": "omega0502" + }, + "records": { + "CNAME": "minhomega.github.io" + } +} diff --git a/domains/minify.json b/domains/minify.json index 0a2e96ce5..31f557954 100644 --- a/domains/minify.json +++ b/domains/minify.json @@ -3,9 +3,7 @@ "username": "DevMatei", "email": "contact@devmatei.is-a.dev" }, - "record": { - "A": [ - "75.2.60.5" - ] + "records": { + "A": ["75.2.60.5"] } } diff --git a/domains/minitor.json b/domains/minitor.json index e10eeb8af..de26f6f5c 100644 --- a/domains/minitor.json +++ b/domains/minitor.json @@ -1,11 +1,11 @@ { - "description": "Self hosted service", - "repo": "https://github.com/MinitorMHS/register", - "owner": { - "username": "minitormhs", - "email": "me@minitor.eu.org" - }, - "record": { - "CNAME": "cf-repl.pages.dev" - } + "description": "Self hosted service", + "repo": "https://github.com/MinitorMHS/register", + "owner": { + "username": "minitormhs", + "email": "me@minitor.eu.org" + }, + "records": { + "CNAME": "cf-repl.pages.dev" + } } diff --git a/domains/minkxx.json b/domains/minkxx.json index 8f7d90984..db69721e8 100644 --- a/domains/minkxx.json +++ b/domains/minkxx.json @@ -3,7 +3,7 @@ "username": "minkxx", "email": "aryuokk@gmail.com" }, - "record": { + "records": { "URL": "https://minkxx.onrender.com" } } diff --git a/domains/minmit.json b/domains/minmit.json index 20ac64b44..c29f8ede5 100644 --- a/domains/minmit.json +++ b/domains/minmit.json @@ -1,11 +1,10 @@ { "description": "My Personal Website", - "repo": "https://github.com/MinMitCoder", "owner": { "username": "MinMitCoder", "email": "minmitgamer@gmail.com" }, - "record": { + "records": { "CNAME": "minmit.pages.dev" } } diff --git a/domains/minnb-bit.json b/domains/minnb-bit.json index e5de8a9f2..edad97a53 100644 --- a/domains/minnb-bit.json +++ b/domains/minnb-bit.json @@ -4,7 +4,7 @@ "email": "mn9173024@gmail.com", "discord": "634263941153030175" }, - "record": { + "records": { "CNAME": "minnb-bit.github.io" } } diff --git a/domains/minoa.json b/domains/minoa.json index 54a3db14b..f0324df05 100644 --- a/domains/minoa.json +++ b/domains/minoa.json @@ -3,7 +3,7 @@ "username": "M1noa", "email": "baccusminoa@gmail.com" }, - "record": { + "records": { "URL": "https://about.minoa.cat" } } diff --git a/domains/minto.json b/domains/minto.json index e0f8309d1..31038efb5 100644 --- a/domains/minto.json +++ b/domains/minto.json @@ -3,7 +3,7 @@ "username": "m1ntooo", "email": "yht413@i.softbank.jp" }, - "record": { + "records": { "URL": "https://m1ntooo.com" } } diff --git a/domains/mioscape.json b/domains/mioscape.json index 112839813..78e23ed45 100644 --- a/domains/mioscape.json +++ b/domains/mioscape.json @@ -5,7 +5,7 @@ "username": "mioscape", "email": "mioscape@gmail.com" }, - "record": { + "records": { "CNAME": "mioscape.github.io" } } diff --git a/domains/miquel.json b/domains/miquel.json index 1fe6d72dc..6fb85b305 100644 --- a/domains/miquel.json +++ b/domains/miquel.json @@ -3,7 +3,7 @@ "username": "MCrumo", "email": "miquel1rr@gmail.com" }, - "record": { + "records": { "CNAME": "mcrumo.github.io" } } diff --git a/domains/miraclecherrypie.json b/domains/miraclecherrypie.json index a1956938d..ac424818b 100644 --- a/domains/miraclecherrypie.json +++ b/domains/miraclecherrypie.json @@ -5,7 +5,7 @@ "username": "MiracleCherryPie", "email": "christianpandapotans@gmail.com" }, - "record": { + "records": { "CNAME": "miraclecherrypie.up.railway.app" } } diff --git a/domains/mirozr.json b/domains/mirozr.json index a79236b32..917e3dbd1 100644 --- a/domains/mirozr.json +++ b/domains/mirozr.json @@ -4,7 +4,7 @@ "username": "miroslavchen", "email": "miroslavnezgoduk8@gmail.com" }, - "record": { + "records": { "CNAME": "miroslavchen.github.io" } } diff --git a/domains/mirzosharif.json b/domains/mirzosharif.json index 26d4d6269..bc9db065a 100644 --- a/domains/mirzosharif.json +++ b/domains/mirzosharif.json @@ -5,7 +5,7 @@ "username": "habiboffdev", "email": "mirzoupwork@gmail.com" }, - "record": { + "records": { "CNAME": "mirzosharif.me" } } diff --git a/domains/misaka.json b/domains/misaka.json new file mode 100644 index 000000000..0c03e6b8e --- /dev/null +++ b/domains/misaka.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/misaka12843/misaka12843.github.io", + "owner": { + "username": "misaka12843", + "email": "misaka12843@outlook.com" + }, + "records": { + "CNAME": "misaka12843.github.io" + } +} diff --git a/domains/misha.json b/domains/misha.json index 959fb4896..b84431ff0 100644 --- a/domains/misha.json +++ b/domains/misha.json @@ -3,7 +3,7 @@ "username": "misha-jw", "email": "mishawu@outlook.com" }, - "record": { + "records": { "CNAME": "misha-jw.github.io" } } diff --git a/domains/mishal.json b/domains/mishal.json index a4dafbbad..903c975d8 100644 --- a/domains/mishal.json +++ b/domains/mishal.json @@ -5,7 +5,7 @@ "email": "meow@mishl.dev", "discord": "m.shl" }, - "record": { + "records": { "CNAME": "mishl-dev.github.io" } } diff --git a/domains/misi.json b/domains/misi.json index 6252e94ae..888258100 100644 --- a/domains/misi.json +++ b/domains/misi.json @@ -3,7 +3,7 @@ "username": "suhajda3", "twitter": "misi" }, - "record": { + "records": { "URL": "https://6esm7nio666sm3gejt6cl4gc3e0dzavv.lambda-url.eu-central-1.on.aws" } } diff --git a/domains/miskode.json b/domains/miskode.json index 70e1b696a..4c9291042 100644 --- a/domains/miskode.json +++ b/domains/miskode.json @@ -3,7 +3,7 @@ "username": "miskode", "email": "miskonx97@gmail.com" }, - "record": { + "records": { "CNAME": "miskode.github.io" } } diff --git a/domains/mitch.json b/domains/mitch.json index 90c3466ce..e62599fe5 100644 --- a/domains/mitch.json +++ b/domains/mitch.json @@ -3,7 +3,7 @@ "username": "liao02x", "email": "liao02x@gmail.com" }, - "record": { + "records": { "CNAME": "114032.xyz" } } diff --git a/domains/miteigi.json b/domains/miteigi.json new file mode 100644 index 000000000..bd4d06d27 --- /dev/null +++ b/domains/miteigi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "actuallyundefined", + "email": "baokhang4930@gmail.com" + }, + "records": { + "NS": ["elijah.ns.cloudflare.com", "jo.ns.cloudflare.com"] + } +} diff --git a/domains/miten.json b/domains/miten.json index 1a59666d6..dda5e518c 100644 --- a/domains/miten.json +++ b/domains/miten.json @@ -3,7 +3,7 @@ "username": "m1ten", "email": "h4ckr+github@icloud.com" }, - "record": { + "records": { "CNAME": "m1ten.github.io" } } diff --git a/domains/miti99.json b/domains/miti99.json index f09c62708..de93ca6f6 100644 --- a/domains/miti99.json +++ b/domains/miti99.json @@ -3,7 +3,7 @@ "username": "tiennm99", "email": "minhtienit99@gmail.com" }, - "record": { - "CNAME": "miti.eu.org" + "records": { + "CNAME": "miti99.pages.dev" } } diff --git a/domains/mitja.json b/domains/mitja.json index 58cfc1bdf..a7dc90211 100644 --- a/domains/mitja.json +++ b/domains/mitja.json @@ -1,10 +1,9 @@ { "owner": { "username": "MitjaCH", - "discord": "627840040671772672", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mZFrhA1Z_iPWWQ-43dpDS8euyiKx0Btqct3ByfNNFIBfir0lksCAmhzgBHa5BbjuW6GtD5lfjkC-FxBvK4o37MYi4Hq4Q5mglIgkk7TjaBkcBaEkiBjfWqqY3Yw4cjJ7VKqsNNRg6rgUhuL0GIeVQNsLI1nPQTqnfUm4Z03sZ9xKe3BKdWZbEDuCQFnpnSjRTARKViC-9G9kKc31pHe7MwrKdXNrWdmiODYElG_tj0Wa1wYeH4GKpn96OPAOSuhV1aoa8JF8NMuyQuqC6diPCvdZhOhAKyRkIwa7-tBbCi7RLew2hMh-GuTnDwrF6al1yN78gyKh1nhJB_Xea-1gsw.dhj1MctCjX-1zgPJJ4om-w.vejH_HHplqUKJfRPdiuMoqwY4agNsXSGkrVykmKcWZrcomt-5xTGD1gblKMmolCW6_2aJQ6b_rGuD-I7xWv1rzk96QFAXamvx1HpY7DUMEY.3qG1WxmK8k9ntg6fmfGxRg" + "discord": "627840040671772672" }, - "record": { + "records": { "CNAME": "portfolio-9ro.pages.dev" } } diff --git a/domains/miu.json b/domains/miu.json index 31cd7ddbe..47879539e 100644 --- a/domains/miu.json +++ b/domains/miu.json @@ -6,7 +6,7 @@ "email": "lrmn.dev@gmail.com", "discord": "romanromannya" }, - "record": { + "records": { "CNAME": "miu-discord.github.io" } } diff --git a/domains/miyuki.json b/domains/miyuki.json new file mode 100644 index 000000000..9e472b971 --- /dev/null +++ b/domains/miyuki.json @@ -0,0 +1,12 @@ +{ + "description": "Miyuki Yue's is-a.dev domain", + "repo": "https://github.com/YueMiyuki", + "owner": { + "username": "YueMiyuki", + "email": "me@miyuki-yue.dev" + }, + "records": { + "URL": "https://miyuki-yue.dev" + }, + "proxied": false +} diff --git a/domains/mizu.json b/domains/mizu.json index 2d59f920f..f36843e77 100644 --- a/domains/mizu.json +++ b/domains/mizu.json @@ -7,7 +7,7 @@ "twitter": "miyagawamizu", "discord": "miyagawamizu" }, - "record": { + "records": { "CNAME": "mizu.pages.dev" } } diff --git a/domains/mj1532.json b/domains/mj1532.json index 2cbeb6fa3..cd07bb601 100644 --- a/domains/mj1532.json +++ b/domains/mj1532.json @@ -1,11 +1,10 @@ { "description": "MJ1532 Just A Normal Developer", - "repo": "https://github.com/MJ1532", "owner": { "username": "MJ1532", "email": "business@mj1532.cf" }, - "record": { + "records": { "CNAME": "portfolio-4s4.pages.dev" } } diff --git a/domains/mjclavillas.json b/domains/mjclavillas.json index cd4be2168..071dd144e 100644 --- a/domains/mjclavillas.json +++ b/domains/mjclavillas.json @@ -4,7 +4,7 @@ "username": "mjclavillas", "email": "mjdc1337@gmail.com" }, - "record": { + "records": { "CNAME": "mjclavillas.github.io" } } diff --git a/domains/mjdc.json b/domains/mjdc.json index cd4be2168..071dd144e 100644 --- a/domains/mjdc.json +++ b/domains/mjdc.json @@ -4,7 +4,7 @@ "username": "mjclavillas", "email": "mjdc1337@gmail.com" }, - "record": { + "records": { "CNAME": "mjclavillas.github.io" } } diff --git a/domains/mjresu.json b/domains/mjresu.json new file mode 100644 index 000000000..d0d144efe --- /dev/null +++ b/domains/mjresu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mjdsj", + "email": "work.mjdsj+is-a-dev@gmail.com" + }, + "records": { + "CNAME": "portfolio-workmjdsj-gmailcom.vercel.app" + }, + "proxied": false +} diff --git a/domains/mk.json b/domains/mk.json index cc0b5df23..41cc20074 100644 --- a/domains/mk.json +++ b/domains/mk.json @@ -5,7 +5,7 @@ "username": "mklabs", "email": "daniel.mickael@gmail.com" }, - "record": { + "records": { "CNAME": "mklabs.github.io" } } diff --git a/domains/mkblane.json b/domains/mkblane.json new file mode 100644 index 000000000..672cee076 --- /dev/null +++ b/domains/mkblane.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website and portfolio", + "repo": "https://github.com/mkblane/mkblane.github.io", + "owner": { + "username": "mkblane", + "email": "rendaniman@outlook.com" + }, + "records": { + "CNAME": "mkblane.github.io" + } +} diff --git a/domains/mkeko-dm.json b/domains/mkeko-dm.json new file mode 100644 index 000000000..8a2537484 --- /dev/null +++ b/domains/mkeko-dm.json @@ -0,0 +1,11 @@ +{ + "description": "Mkeko'S DM RULES DOCS", + "owner": { + "username": "Mkeko", + "email": "mkekoplayreal@gmail.com" + }, + "records": { + "URL": "https://docs.google.com/document/d/11kX-6F9HoGzgIM5KYXvMmPvt4A_vIbLT9aj5uCATpOM/edit?usp=sharing" + }, + "proxied": false +} diff --git a/domains/mkeko.json b/domains/mkeko.json index 54340ecb0..3843a5f93 100644 --- a/domains/mkeko.json +++ b/domains/mkeko.json @@ -3,7 +3,8 @@ "username": "Mkeko", "discord": "1212043905059790881" }, - "record": { - "A": ["76.76.21.21"] + "records": { + "A": ["76.76.21.21"], + "TXT": "vyntr-verify=1745509030098-httpsmkekoisadev-2c0jtf2go8k" } } diff --git a/domains/mkk.json b/domains/mkk.json index 39ff4e442..c691da598 100644 --- a/domains/mkk.json +++ b/domains/mkk.json @@ -5,7 +5,7 @@ "username": "maokangkun", "email": "uri.lqy@gmail.com" }, - "record": { + "records": { "CNAME": "urinx.github.io" } } diff --git a/domains/mldeveer.json b/domains/mldeveer.json new file mode 100644 index 000000000..cd5ec6dbe --- /dev/null +++ b/domains/mldeveer.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/existing-dev/mldeveer", + "owner": { + "username": "existing-dev", + "email": "maamelankar.deveer@gmail.com" + }, + "records": { + "CNAME": "existing-dev.github.io" + } +} diff --git a/domains/mln.json b/domains/mln.json new file mode 100644 index 000000000..d5428a9b4 --- /dev/null +++ b/domains/mln.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/xmi1an/portfoliov2.git", + "owner": { + "username": "xmi1an", + "email": "xnarcos300@gmail.com" + }, + "records": { + "CNAME": "xmi1an.vercel.app" + } +} diff --git a/domains/mlsend2._domainkey.mail.mrstickypiston.json b/domains/mlsend2._domainkey.mail.mrstickypiston.json deleted file mode 100644 index 5f6b5488c..000000000 --- a/domains/mlsend2._domainkey.mail.mrstickypiston.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "MrStickyPiston", - "discord": "700766242268774471", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag" - }, - - "record": { - "CNAME": "mlsend2._domainkey.mailersend.net" - } - } - \ No newline at end of file diff --git a/domains/mmondragon.json b/domains/mmondragon.json new file mode 100644 index 000000000..de7d74794 --- /dev/null +++ b/domains/mmondragon.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Mac-Mondragon" + }, + "records": { + "CNAME": "Mac-Mondragon.github.io" + } +} diff --git a/domains/mnhtng.json b/domains/mnhtng.json new file mode 100644 index 000000000..1e38d61c4 --- /dev/null +++ b/domains/mnhtng.json @@ -0,0 +1,9 @@ +{ + "description": "mnhtng.is-a.dev", + "owner": { + "username": "MnhTng" + }, + "records": { + "URL": "https://mnhtng.github.io/Student-managerment" + } +} diff --git a/domains/mnsrulz.json b/domains/mnsrulz.json index f2907c144..648965f6a 100644 --- a/domains/mnsrulz.json +++ b/domains/mnsrulz.json @@ -5,7 +5,7 @@ "username": "mnsrulz", "email": "mnsrulz@gmail.com" }, - "record": { + "records": { "CNAME": "mnsrulz.github.io" } } diff --git a/domains/moca.json b/domains/moca.json index c322eae2e..f31b75474 100644 --- a/domains/moca.json +++ b/domains/moca.json @@ -3,7 +3,7 @@ "username": "MocaSrour", "email": "mukarramsrour@gmail.com" }, - "record": { + "records": { "CNAME": "mocasrour.github.io" } } diff --git a/domains/mod.s4il.json b/domains/mod.s4il.json index 6d450044b..26794001b 100644 --- a/domains/mod.s4il.json +++ b/domains/mod.s4il.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "S4IL21", - "email": "s4il.is.a.dev@gmail.com" - }, - "record": { - "CNAME": "s4il21.github.io" - } + "owner": { + "username": "S4IL21", + "email": "s4il.is.a.dev@gmail.com" + }, + "records": { + "CNAME": "s4il21.github.io" + } } diff --git a/domains/modasser.json b/domains/modasser.json index 60c885d41..8b2fa1f47 100644 --- a/domains/modasser.json +++ b/domains/modasser.json @@ -6,7 +6,7 @@ "email": "modassermubin@gmail.com", "twitter": "n/a" }, - "record": { + "records": { "CNAME": "theprojectsx.github.io" } } diff --git a/domains/moddatei.json b/domains/moddatei.json new file mode 100644 index 000000000..4ea36907c --- /dev/null +++ b/domains/moddatei.json @@ -0,0 +1,11 @@ +{ + "description": "this is my profile / portfolio", + "repo": "https://github.com/moddatei/moddatei.github.io", + "owner": { + "username": "moddatei", + "email": "moddatei@proton.me" + }, + "records": { + "CNAME": "moddatei.github.io" + } +} diff --git a/domains/moddedstuffguy.json b/domains/moddedstuffguy.json index e125a7e6f..40ae9d811 100644 --- a/domains/moddedstuffguy.json +++ b/domains/moddedstuffguy.json @@ -5,7 +5,7 @@ "username": "moddedstuffguy", "email": "pruebecitasg2@gmail.com" }, - "record": { + "records": { "CNAME": "moddedstuffguy.github.io" } } diff --git a/domains/moddy.json b/domains/moddy.json new file mode 100644 index 000000000..7a5b2c617 --- /dev/null +++ b/domains/moddy.json @@ -0,0 +1,12 @@ +{ + "description": "🚀 This is the official site for Moddy, a Discord bot.", + "repo": "https://github.com/MilkTools/moddybot", + "owner": { + "username": "MilkTools", + "email": "milktuto@gmail.com", + "discord": "1031341585436266546" + }, + "records": { + "CNAME": "milktools.github.io" + } +} diff --git a/domains/modi.json b/domains/modi.json index 10d042abf..1749a4695 100644 --- a/domains/modi.json +++ b/domains/modi.json @@ -3,7 +3,7 @@ "username": "oyepriyansh", "email": "oyepriyansh@hotmail.com" }, - "record": { + "records": { "CNAME": "oyepriyansh.github.io" } } diff --git a/domains/modules.json b/domains/modules.json index 17f83d092..5e653206c 100644 --- a/domains/modules.json +++ b/domains/modules.json @@ -3,7 +3,7 @@ "username": "Manafix", "email": "manafix.pub@gmail.com" }, - "record": { + "records": { "CNAME": "manafix.dev" } } diff --git a/domains/moein.json b/domains/moein.json new file mode 100644 index 000000000..724824d8b --- /dev/null +++ b/domains/moein.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TrueMoein", + "email": "truemoein@gmail.com", + "discord": "truemoein" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/mofuru.json b/domains/mofuru.json index cefd4ef6d..71f4c50ae 100644 --- a/domains/mofuru.json +++ b/domains/mofuru.json @@ -3,7 +3,7 @@ "username": "dskprt", "reddit": "dskprt" }, - "record": { + "records": { "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 index ac964f40f..a1f975f66 100644 --- a/domains/moh.json +++ b/domains/moh.json @@ -5,7 +5,7 @@ "username": "minoyahia", "email": "notminoyahiahf@gmail.com" }, - "record": { + "records": { "CNAME": "personal-website-cyj.pages.dev" } } diff --git a/domains/moha.json b/domains/moha.json index 35ba88af4..0cd37dc9c 100644 --- a/domains/moha.json +++ b/domains/moha.json @@ -5,7 +5,7 @@ "username": "mohanedashraf", "twitter": "mohanedzz" }, - "record": { + "records": { "CNAME": "mohanedashraf.github.io" } } diff --git a/domains/mohamad.json b/domains/mohamad.json index cf07338b3..903dd6746 100644 --- a/domains/mohamad.json +++ b/domains/mohamad.json @@ -3,7 +3,7 @@ "username": "mjnaous", "email": "mj@naous.eu.org" }, - "record": { + "records": { "CNAME": "mjnaous.github.io" } } diff --git a/domains/mohamadalzhori.json b/domains/mohamadalzhori.json new file mode 100644 index 000000000..1ef46e62e --- /dev/null +++ b/domains/mohamadalzhori.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio for Mohamad Alzhori", + "owner": { + "username": "mohamadalzhori", + "email": "mohamadalzhori01@gmail.com" + }, + "records": { + "CNAME": "mohamadalzhori.github.io" + }, + "proxied": true +} diff --git a/domains/mohamed.json b/domains/mohamed.json index 74883a102..573f8fcb2 100644 --- a/domains/mohamed.json +++ b/domains/mohamed.json @@ -3,7 +3,7 @@ "username": "negativems", "email": "mohamedbenhamzaa@gmail.com" }, - "record": { + "records": { "URL": "https://mmbh.dev" } } diff --git a/domains/mohamedbishr.json b/domains/mohamedbishr.json new file mode 100644 index 000000000..ea074d6ac --- /dev/null +++ b/domains/mohamedbishr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohamedWaelBishr", + "email": "mohamedwaelbishr@gmail.com" + }, + "records": { + "URL": "https://mohamed-bishr.vercel.app/" + } +} diff --git a/domains/mohamedhisham.json b/domains/mohamedhisham.json new file mode 100644 index 000000000..66962b14c --- /dev/null +++ b/domains/mohamedhisham.json @@ -0,0 +1,11 @@ +{ + "description": "The personal website for Mohamed Hisham", + "repo": "https://github.com/MH0386/MH0386.github.io", + "owner": { + "username": "MH0386", + "email": "mohamed.hisham.abdelzaher@gmail.com" + }, + "records": { + "CNAME": "mh0386.github.io" + } +} diff --git a/domains/mohammad.json b/domains/mohammad.json new file mode 100644 index 000000000..5529f4fb6 --- /dev/null +++ b/domains/mohammad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x7dl8p", + "email": "ahmad.khan200499@gmail.com" + }, + "records": { + "CNAME": "d3vmohammad.netlify.app" + } +} diff --git a/domains/mohammad87115.json b/domains/mohammad87115.json index 86bbdb0ab..7e54cc395 100644 --- a/domains/mohammad87115.json +++ b/domains/mohammad87115.json @@ -6,7 +6,7 @@ "email": "mohammad87115@gmail.com", "twitter": "mohammad87115" }, - "record": { + "records": { "CNAME": "mohammad87115.github.io" } } diff --git a/domains/mohammed.json b/domains/mohammed.json index b8b4d0d1d..70fd874a9 100644 --- a/domains/mohammed.json +++ b/domains/mohammed.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "URL": "https://mohammedkhc.is-a.dev" } } diff --git a/domains/mohammedasif-shaikh.json b/domains/mohammedasif-shaikh.json index 76a4f1153..7db86e267 100644 --- a/domains/mohammedasif-shaikh.json +++ b/domains/mohammedasif-shaikh.json @@ -4,7 +4,7 @@ "owner": { "username": "mohammedasif-shaikh" }, - "record": { + "records": { "CNAME": "mohammedasif-shaikh.github.io" } } diff --git a/domains/mohammedkhc.json b/domains/mohammedkhc.json index a4f0acf91..eae6e4417 100644 --- a/domains/mohammedkhc.json +++ b/domains/mohammedkhc.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "CNAME": "mohammedkhc.pages.dev" } } diff --git a/domains/mohammedobaid.json b/domains/mohammedobaid.json new file mode 100644 index 000000000..04ba6b5b5 --- /dev/null +++ b/domains/mohammedobaid.json @@ -0,0 +1,10 @@ +{ + "description": "My name is mohammed obaid. I am a software engineer", + "owner": { + "username": "mdobaid311", + "email": "mdobaid311@gmail.com" + }, + "records": { + "CNAME": "mohammedobaid.vercel.app" + } +} diff --git a/domains/mohammedwisam.json b/domains/mohammedwisam.json new file mode 100644 index 000000000..fb2cf9ba6 --- /dev/null +++ b/domains/mohammedwisam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "redcodemohammed", + "email": "redcodemohammed@gmail.com" + }, + "records": { + "CNAME": "mohammed-wisam.pages.dev" + } +} diff --git a/domains/mohan.json b/domains/mohan.json index 83879a983..97b0c3783 100644 --- a/domains/mohan.json +++ b/domains/mohan.json @@ -1,10 +1,9 @@ { "owner": { "username": "mohankumarpaluru", - "discord": "272751100237578241", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.O5C1Uzwh01XoHKti4fJ_Eh0ZCpqF32HIpdXGCHhaWGSS_Z3z-QT6BlMvzizTINB-aLjfTGrH9ey782Ew9rgjfh2kc59apj578D92W9huwdc-CwRxepsIfp1KmPTnzLWCH3o6VACrUvY4UB6-vRNkEu6a8dCEsCixypW9NPAeVo8nkweD0ITUXiO3rYFHVnKKvMyZRuqZ0BBMl37IXA55cSqhF2CFZo7mi-c7o0-Ft05wDTo94LQ4UbBVR6Bckb8hhHoWcVw5fvkbACNSk7gM1lG76KYvgzJy--UzylVzCJ4A1KqUNTzfNTEQx7CqPme32t8LtpkQM7EoO7lpTgIChg.9ycjUnzEXFf4bpRGEBz01Q.QdrS2Qupx8u_YCeoyP9W5gJlFyrz2tfRpw1j_fu0LlOO-yHLENRlsmODrh9wpd_UJz2KbwCvszos83SFhkxvWmO8nEkUFJ-9qpgk-0a2p6TKGIrptqkPzMfCe5wguQd-.taQ4FYyW5M3SwaH68et8bw" + "discord": "272751100237578241" }, - "record": { + "records": { "A": ["68.233.113.238"] } } diff --git a/domains/mohannadk28.json b/domains/mohannadk28.json index a521928e1..47a830889 100644 --- a/domains/mohannadk28.json +++ b/domains/mohannadk28.json @@ -5,7 +5,7 @@ "username": "Mohannadk28", "email": "mohannadk28@protonmail.com" }, - "record": { + "records": { "CNAME": "mohannadk28.github.io" } } diff --git a/domains/mohdjariullah.json b/domains/mohdjariullah.json index bd07018cb..ee7634593 100644 --- a/domains/mohdjariullah.json +++ b/domains/mohdjariullah.json @@ -6,7 +6,7 @@ "email": "mohdjariullah@gmail.com", "twitter": "mohdjariullah" }, - "record": { + "records": { "CNAME": "mohdjariullah.github.io" } } diff --git a/domains/mohdsohel.json b/domains/mohdsohel.json index 8def5ddbc..332064025 100644 --- a/domains/mohdsohel.json +++ b/domains/mohdsohel.json @@ -6,7 +6,7 @@ "email": "salmanisohail26@gmail.com", "twitter": "real_sohel_" }, - "record": { + "records": { "CNAME": "realsohel.github.io" } } diff --git a/domains/mohit-sundrani.json b/domains/mohit-sundrani.json new file mode 100644 index 000000000..80a6258f7 --- /dev/null +++ b/domains/mohit-sundrani.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/mohit-sundrani/portfolio", + "owner": { + "username": "mohit-sundrani", + "email": "mohit4sundrani@gmail.com" + }, + "records": { + "CNAME": "mohit-sundrani.web.app" + } +} diff --git a/domains/mohit.json b/domains/mohit.json new file mode 100644 index 000000000..012c0864a --- /dev/null +++ b/domains/mohit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kumar-mohit-dev", + "email": "mohitgoswami.work@gmail.com" + }, + "records": { + "CNAME": "kumar-mohit-dev.github.io" + } +} diff --git a/domains/mohsen.json b/domains/mohsen.json new file mode 100644 index 000000000..066068297 --- /dev/null +++ b/domains/mohsen.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio website for mohsenansari.com", + "owner": { + "username": "mohsenari", + "email": "mansari387@gmail.com" + }, + "records": { + "CNAME": "mohsenansari.com" + } +} diff --git a/domains/mokho.json b/domains/mokho.json new file mode 100644 index 000000000..bd23e5d7b --- /dev/null +++ b/domains/mokho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ngompoweredbypoi", + "discord": "ngompoweredbypoi" + }, + "records": { + "CNAME": "mokho.github.io" + } +} diff --git a/domains/moku.json b/domains/moku.json new file mode 100644 index 000000000..9df227de6 --- /dev/null +++ b/domains/moku.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/Moku922/CSS_HTML-CV_Website", + "owner": { + "username": "Moku922", + "email": "abdulmoqtadir1@gmail.com" + }, + "records": { + "CNAME": "moku922.github.io" + } +} diff --git a/domains/molai.json b/domains/molai.json index bd1a902ee..ed391c389 100644 --- a/domains/molai.json +++ b/domains/molai.json @@ -1,13 +1,12 @@ { "description": "Mahir's Website", - "repo": "https://github.com/mtgsquad", "owner": { "username": "mtgsquad", "email": "mahir@molai.dev", "twitter": "DevMolai", "discord": "molai777" }, - "record": { + "records": { "URL": "https://molai.dev" } } diff --git a/domains/molikai.json b/domains/molikai.json new file mode 100644 index 000000000..6a86d9304 --- /dev/null +++ b/domains/molikai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "molikai-work", + "email": "wuxiaci@hotmail.com" + }, + "records": { + "CNAME": "molikaiwork.pages.dev" + } +} diff --git a/domains/momoka.json b/domains/momoka.json new file mode 100644 index 000000000..208e1f168 --- /dev/null +++ b/domains/momoka.json @@ -0,0 +1,11 @@ +{ + "description": "M0M0K4S4N.github.io", + "repo": "https://github.com/M0M0K4S4N/M0M0K4S4N.github.io", + "owner": { + "username": "M0M0K4S4N", + "email": "momokasan@proton.me" + }, + "records": { + "CNAME": "m0m0k4s4n.github.io" + } +} diff --git a/domains/momu54.json b/domains/momu54.json index a69cb3997..20966c607 100644 --- a/domains/momu54.json +++ b/domains/momu54.json @@ -3,7 +3,7 @@ "username": "momu54", "email": "MoMuAlt@outlook.jp" }, - "record": { + "records": { "CNAME": "momu54.github.io" } } diff --git a/domains/moncef.json b/domains/moncef.json index 7c062c694..e55d2b5c4 100644 --- a/domains/moncef.json +++ b/domains/moncef.json @@ -3,7 +3,7 @@ "username": "m2ncef", "email": "moncxff@gmail.com" }, - "record": { + "records": { "CNAME": "m2ncef.github.io" } } diff --git a/domains/mongodb.trung.json b/domains/mongodb.trung.json index b99730c4e..488318c9f 100644 --- a/domains/mongodb.trung.json +++ b/domains/mongodb.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/moni.json b/domains/moni.json index 5849fa346..e5730debb 100644 --- a/domains/moni.json +++ b/domains/moni.json @@ -5,7 +5,7 @@ "username": "monitrr", "email": "aanilsaint26@gmail.com" }, - "record": { + "records": { "CNAME": "monitrr.github.io" } } diff --git a/domains/monkey3three.json b/domains/monkey3three.json index 8555b0862..265096066 100644 --- a/domains/monkey3three.json +++ b/domains/monkey3three.json @@ -1,10 +1,9 @@ { "owner": { "username": "monkey3three", - "discord": "872983325017514004", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.CtotszpAHc7y1esxQir3rFPcA7ijMeMIpj3JWiGEO7TWWTo7i3pozjvbcQj7PfjQgTAq-kfGj-B_Q6KyZM7lep49WkEmq3AFPlVVjnODuHoJkSPt1DsdF1nl__H0FzABL8h0yOVwxAQ_IrQ46boS-Lz1UpVIwkjYQn2wrd5zXWEFSvHBJuxob1t-sWOlIgVyoBNYUMaPmQ-BVLnkSqUmruMvpLSLUBCepEBONieioYWL3n_1a6URRj1-I3sn_lTPPRoX79Vj9fMkKxCx5vB0bqWHOMZfXE_R5KIsvHCQqJL1fMbwz_TU8MJ4OUdP7o90GAFv3A5KTq2kVoHcIOhufg.86MFM2JVNy8kmZaZQlh0mQ.28QEVQ_vJ8FnCw3O9aWhDdNBOu1-BA5ohMMeOvrtbFZJAw7bOUCoUfhDpIMASopsz6uPsUR6VHsWemjKhuaUZU4Y5wKmBav0zWrMisMEFq8.cYQth00awbZ4ZnzgZz-q1Q" + "discord": "872983325017514004" }, - "record": { + "records": { "CNAME": "portfolio-9xw.pages.dev" } } diff --git a/domains/monosen.json b/domains/monosen.json new file mode 100644 index 000000000..5f02903de --- /dev/null +++ b/domains/monosen.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Monosen", + "email": "edisonbj21@gmail.com", + "discord": "monosen" + }, + "records": { + "CNAME": "minimalist-portfolio-zeta.vercel.app" + } +} diff --git a/domains/moo.json b/domains/moo.json index 69bfc942d..76af07339 100644 --- a/domains/moo.json +++ b/domains/moo.json @@ -6,7 +6,7 @@ "email": "lrmn.dev@gmail.com", "discord": "romanromannya#0" }, - "record": { + "records": { "CNAME": "moo-7.github.io" } } diff --git a/domains/moon.json b/domains/moon.json index c94462a9d..7a08266f5 100644 --- a/domains/moon.json +++ b/domains/moon.json @@ -5,7 +5,7 @@ "username": "cx622", "email": "this-email@is-sus.com" }, - "record": { + "records": { "CNAME": "cx622.github.io" } } diff --git a/domains/moothecow.json b/domains/moothecow.json index e278c46e4..a284589bb 100644 --- a/domains/moothecow.json +++ b/domains/moothecow.json @@ -3,7 +3,7 @@ "username": "Mikeymoo5", "email": "moodids@outlook.com" }, - "record": { + "records": { "CNAME": "mikeymoo5.github.io" } } diff --git a/domains/mopamo.json b/domains/mopamo.json index 30bf95dbd..dca19fc65 100644 --- a/domains/mopamo.json +++ b/domains/mopamo.json @@ -6,7 +6,7 @@ "email": "mopamo@protonmail.com", "twitter": "MoPaMo_" }, - "record": { + "records": { "CNAME": "mopamo.github.io" } } diff --git a/domains/mori.lalit.json b/domains/mori.lalit.json index 66ece50c8..bcf5e347d 100644 --- a/domains/mori.lalit.json +++ b/domains/mori.lalit.json @@ -3,7 +3,7 @@ "username": "lalitm1004", "email": "lalitm1004@gmail.com" }, - "record": { + "records": { "CNAME": "memento-mori-6at.pages.dev" } } diff --git a/domains/moritz.json b/domains/moritz.json index 0f84d37c5..255bae2ae 100644 --- a/domains/moritz.json +++ b/domains/moritz.json @@ -5,7 +5,7 @@ "username": "Radiergummi", "email": "m@9dev.de" }, - "record": { + "records": { "URL": "https://www.moritzfriedrich.com" } } diff --git a/domains/morning3tar.json b/domains/morning3tar.json index 283893644..e3dbba203 100644 --- a/domains/morning3tar.json +++ b/domains/morning3tar.json @@ -4,7 +4,7 @@ "username": "morning3tar", "discord": "Morning3tar#7388" }, - "record": { + "records": { "CNAME": "glitch.edgeapp.net" } } diff --git a/domains/morphoit.json b/domains/morphoit.json new file mode 100644 index 000000000..f9f06a61b --- /dev/null +++ b/domains/morphoit.json @@ -0,0 +1,11 @@ +{ + "description": "morphoit profile site", + "repo": "https://github.com/morphoit/morphoit.github.io", + "owner": { + "username": "morphoit", + "email": "morphoits@gmail.com" + }, + "records": { + "CNAME": "morphoit.github.io" + } +} diff --git a/domains/morzhstudio.json b/domains/morzhstudio.json index 8196ce57e..95d03df9d 100644 --- a/domains/morzhstudio.json +++ b/domains/morzhstudio.json @@ -4,7 +4,13 @@ "email": "kapikrussia@gmail.com", "discord": "1261855255147057220" }, - "record": { - "A": ["185.199.108.153"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/mosa.json b/domains/mosa.json index e55f37352..e1e7ad18c 100644 --- a/domains/mosa.json +++ b/domains/mosa.json @@ -3,7 +3,7 @@ "username": "mosageneral", "email": "mosageneral@gmail.com" }, - "record": { + "records": { "A": ["130.162.164.99"] } } diff --git a/domains/mosaab.json b/domains/mosaab.json index ed3bba5f1..5d6f22826 100644 --- a/domains/mosaab.json +++ b/domains/mosaab.json @@ -5,13 +5,8 @@ "username": "MosaabGKA", "email": "mosaabgka@outlook.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mosaic.json b/domains/mosaic.json index f6d577390..857021ea7 100644 --- a/domains/mosaic.json +++ b/domains/mosaic.json @@ -4,7 +4,7 @@ "email": "golden_mooooooon@outlook.com", "discord": "1160256967504318576" }, - "record": { + "records": { "CNAME": "aboutmeeeeeeeeeee.onrender.com" } } diff --git a/domains/mostafaefafi.json b/domains/mostafaefafi.json index 16e2c91bb..43b5bbd5e 100644 --- a/domains/mostafaefafi.json +++ b/domains/mostafaefafi.json @@ -5,7 +5,7 @@ "username": "mostafa-efafi", "email": "mostafa.ef@gmail.com" }, - "record": { + "records": { "CNAME": "mostafa-efafi.github.io" } } diff --git a/domains/mostypc123.json b/domains/mostypc123.json index 705dcd965..9836bc7fc 100644 --- a/domains/mostypc123.json +++ b/domains/mostypc123.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "mostypc123" - }, - "record": { - "CNAME": "mostypc123.github.io" - } -} + "owner": { + "username": "mostypc123" + }, + "records": { + "CNAME": "mostypc123.github.io" + } +} diff --git a/domains/moviebypass.json b/domains/moviebypass.json index 2f35b82ba..cb7cc9c5b 100644 --- a/domains/moviebypass.json +++ b/domains/moviebypass.json @@ -3,7 +3,7 @@ "username": "alidexter001", "email": "dexter.ali001@gmail.com" }, - "record": { + "records": { "A": ["45.11.229.211"] } } diff --git a/domains/mpult.json b/domains/mpult.json index cbd6fc922..ef8f95d06 100644 --- a/domains/mpult.json +++ b/domains/mpult.json @@ -5,7 +5,7 @@ "username": "MPult", "email": "MPult@protonmail.com" }, - "record": { + "records": { "CNAME": "mpult.github.io" } } diff --git a/domains/mpy.json b/domains/mpy.json index b51be78f2..597b24705 100644 --- a/domains/mpy.json +++ b/domains/mpy.json @@ -1,11 +1,10 @@ { "description": "Mike Perry Y Attara's personal website", - "repo": "https://github.com/mikeattara", "owner": { "username": "mikeattara", "email": "mpyebattara@gmail.com" }, - "record": { + "records": { "CNAME": "mikeattara.github.io" } } diff --git a/domains/mqhirr.json b/domains/mqhirr.json index adc07ce91..b6283717d 100644 --- a/domains/mqhirr.json +++ b/domains/mqhirr.json @@ -4,7 +4,7 @@ "discord": "mqhirr" }, "repo": "https://github.com/mqhirr/webnn_live", - "record": { + "records": { "CNAME": "mqhirr.github.io" } } diff --git a/domains/mqrshie.json b/domains/mqrshie.json index 3e5b946af..dadf69e9b 100644 --- a/domains/mqrshie.json +++ b/domains/mqrshie.json @@ -5,7 +5,7 @@ "email": "rasberryalt@hotmail.com", "twitter": "Mqrshie" }, - "record": { + "records": { "CNAME": "mqrshie.github.io" } } diff --git a/domains/mqry.json b/domains/mqry.json index 7f49e17ac..b3a8ae419 100644 --- a/domains/mqry.json +++ b/domains/mqry.json @@ -6,7 +6,7 @@ "email": "mayjane27refuerzo@gmail.com", "twitter": "maqryjqne" }, - "record": { + "records": { "CNAME": "mqry.github.io" } } diff --git a/domains/mr-arsenic.json b/domains/mr-arsenic.json index 0564416a3..091721a89 100644 --- a/domains/mr-arsenic.json +++ b/domains/mr-arsenic.json @@ -3,7 +3,7 @@ "username": "MrArsenic621", "email": "asedighi81@gmail.com" }, - "record": { + "records": { "CNAME": "personal-portfolio-dev.onrender.com" } } diff --git a/domains/mr-julus.json b/domains/mr-julus.json index 7a5159704..0c2b0de24 100644 --- a/domains/mr-julus.json +++ b/domains/mr-julus.json @@ -4,7 +4,7 @@ "username": "BougSoon-Studio", "email": "bougsoon.studio@gmail.com" }, - "record": { - "CNAME": "mr-julus.web.app" + "records": { + "CNAME": "mr-julus.vercel.app" } } diff --git a/domains/mr-virus.json b/domains/mr-virus.json index ae70ed940..8b0e627cb 100644 --- a/domains/mr-virus.json +++ b/domains/mr-virus.json @@ -3,7 +3,7 @@ "username": "Mr-Virus-Dev", "email": "mr.virus.dev@gmail.com" }, - "record": { + "records": { "CNAME": "mr-virus.pages.dev" } } diff --git a/domains/mr.bhardwaj.json b/domains/mr.bhardwaj.json index fdb97f8e2..bbd43ec24 100644 --- a/domains/mr.bhardwaj.json +++ b/domains/mr.bhardwaj.json @@ -3,7 +3,7 @@ "username": "rohanbhardwaj205", "email": "71399@cgcjhanjeri.in" }, - "record": { + "records": { "CNAME": "rohanbhardwaj205.github.io" } } diff --git a/domains/mrasif.json b/domains/mrasif.json index a94695c24..8619eb35d 100644 --- a/domains/mrasif.json +++ b/domains/mrasif.json @@ -4,7 +4,7 @@ "username": "mrasif", "email": "admin@mrasif.in" }, - "record": { + "records": { "CNAME": "mrasif.github.io" } } diff --git a/domains/mrasyadc.json b/domains/mrasyadc.json new file mode 100644 index 000000000..48a43404d --- /dev/null +++ b/domains/mrasyadc.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Website", + "owner": { + "username": "mrasyadc", + "email": "mrasyadc@gmail.com" + }, + "records": { + "CNAME": "mrasyadc.github.io" + } +} diff --git a/domains/mrcat.json b/domains/mrcat.json new file mode 100644 index 000000000..35dece212 --- /dev/null +++ b/domains/mrcat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bipre2466", + "discord": "1137413640945934418" + }, + "records": { + "A": ["31.6.7.25"] + } +} diff --git a/domains/mrcl.json b/domains/mrcl.json index 57052a821..91c049a53 100644 --- a/domains/mrcl.json +++ b/domains/mrcl.json @@ -3,7 +3,7 @@ "username": "6lb", "email": "6lb@github.io" }, - "record": { + "records": { "CNAME": "6lb.github.io" } } diff --git a/domains/mrdavidss.json b/domains/mrdavidss.json new file mode 100644 index 000000000..682b88be2 --- /dev/null +++ b/domains/mrdavidss.json @@ -0,0 +1,13 @@ +{ + "description": "David's Github Page", + "repo": "https://mrdavidss-vgg.github.io/profile/", + "owner": { + "username": "mrdavidss-vgg", + "email": "mrdavidssbusiness@gmail.com", + "github": "mrdavidss-vgg", + "discord": "mrdavidss" + }, + "records": { + "CNAME": "mrdavidss-vgg.github.io" + } +} diff --git a/domains/mrdiamond.json b/domains/mrdiamond.json index 691b44ea1..38332948e 100644 --- a/domains/mrdiamond.json +++ b/domains/mrdiamond.json @@ -3,7 +3,7 @@ "username": "MrDiamondDog", "email": "drewratner27@gmail.com" }, - "record": { + "records": { "CNAME": "mrdiamond.pages.dev" } } diff --git a/domains/mrepol742.json b/domains/mrepol742.json index 0dcde3a93..b6b2ed503 100644 --- a/domains/mrepol742.json +++ b/domains/mrepol742.json @@ -3,7 +3,7 @@ "username": "mrepol742", "email": "mrepol742@gmail.com" }, - "record": { + "records": { "CNAME": "mrepol742.github.io" } } diff --git a/domains/mrfrostyxd.json b/domains/mrfrostyxd.json index 79b6bd9fb..329e244c7 100644 --- a/domains/mrfrostyxd.json +++ b/domains/mrfrostyxd.json @@ -3,7 +3,7 @@ "username": "MrxAravind", "email": "mrspidyxd@gmail.com" }, - "record": { + "records": { "URL": "https://web-zn9tdjcukv7o.up-de-fra1-k8s-1.apps.run-on-seenode.com" } } diff --git a/domains/mricecream.json b/domains/mricecream.json index 978eb63ad..c7fbcac17 100644 --- a/domains/mricecream.json +++ b/domains/mricecream.json @@ -6,7 +6,7 @@ "email": "guy@ochakov.com", "twitter": "Mr__Icecream" }, - "record": { + "records": { "CNAME": "mr1cecream.github.io" } } diff --git a/domains/mrincer.json b/domains/mrincer.json new file mode 100644 index 000000000..6eee92a16 --- /dev/null +++ b/domains/mrincer.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khincer", + "email": "kirk.incerg@gmail.com", + "discord": "kyllhua" + }, + "records": { + "CNAME": "portfolio-ashy-ten-95.vercel.app" + } +} diff --git a/domains/mrinjamul.json b/domains/mrinjamul.json index d9dc32e12..af146cf98 100644 --- a/domains/mrinjamul.json +++ b/domains/mrinjamul.json @@ -4,7 +4,7 @@ "username": "mrinjamul", "email": "injamulmohammadmollah@gmail.com" }, - "record": { + "records": { "CNAME": "mrinjamul.github.io" } } diff --git a/domains/mrinmoy.json b/domains/mrinmoy.json index 2f518a0cd..bf62ad8a5 100644 --- a/domains/mrinmoy.json +++ b/domains/mrinmoy.json @@ -5,7 +5,7 @@ "twitter": "_mrinmoy_haloi_", "discord": "Mrinmoy#5878" }, - "record": { + "records": { "CNAME": "mrinmoyhaloi.github.io" } } diff --git a/domains/mrjulus.json b/domains/mrjulus.json index 91549e840..aafc1f7bc 100644 --- a/domains/mrjulus.json +++ b/domains/mrjulus.json @@ -4,7 +4,7 @@ "username": "mr-julus", "email": "sabjul100@gmail.com" }, - "record": { + "records": { "CNAME": "mr-julus.web.app" } } diff --git a/domains/mrjunkyz.json b/domains/mrjunkyz.json index 726befd50..4dcdef8bf 100644 --- a/domains/mrjunkyz.json +++ b/domains/mrjunkyz.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/mrkos.json b/domains/mrkos.json index efbb3b648..18c35b716 100644 --- a/domains/mrkos.json +++ b/domains/mrkos.json @@ -2,10 +2,9 @@ "description": "Personal Page", "repo": "https://github.com/mrkOS1210/mrkos1210.github.io", "owner": { - "username": "mrkOS1210", - "email": "72011329+mrkOS1210@users.noreply.github.com" + "username": "mrkOS1210" }, - "record": { + "records": { "CNAME": "mrkos1210.github.io" } } diff --git a/domains/mrksbgg.json b/domains/mrksbgg.json index 5f54ff175..56bb01010 100644 --- a/domains/mrksbgg.json +++ b/domains/mrksbgg.json @@ -4,7 +4,7 @@ "email": "lapo.ez.yt@gmail.com", "discord": "1097383143708827679" }, - "record": { + "records": { "CNAME": "mrksbgg.github.io" } } diff --git a/domains/mrprime.json b/domains/mrprime.json index 95047ee22..5d32aab53 100644 --- a/domains/mrprime.json +++ b/domains/mrprime.json @@ -6,7 +6,7 @@ "twitter": "RealMrPrime", "discord": "MrPrime#9636" }, - "record": { + "records": { "URL": "https://bio.link/mrprime" } } diff --git a/domains/mrshoe.json b/domains/mrshoe.json index 6562e9777..358c35003 100644 --- a/domains/mrshoe.json +++ b/domains/mrshoe.json @@ -5,7 +5,7 @@ "username": "mrshoeshoe66", "email": "mrshoeshoe66@gmail.com" }, - "record": { + "records": { "URL": "https://mrshoe.dev" } } diff --git a/domains/mrstickypiston.json b/domains/mrstickypiston.json index 90f4c685f..a1b52d862 100644 --- a/domains/mrstickypiston.json +++ b/domains/mrstickypiston.json @@ -3,7 +3,7 @@ "username": "MrStickyPiston", "email": "mr.sticky.piston@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-site-4d2.pages.dev" } } diff --git a/domains/mrtemp70.json b/domains/mrtemp70.json index 640f68ad0..f8440f18e 100644 --- a/domains/mrtemp70.json +++ b/domains/mrtemp70.json @@ -3,7 +3,7 @@ "username": "mrtemp70", "email": "mrtemp70@gmail.com" }, - "record": { + "records": { "CNAME": "mrtemp70.github.io" } } diff --git a/domains/mrthundergod.json b/domains/mrthundergod.json index 7cdc71b00..75b9f1cd3 100644 --- a/domains/mrthundergod.json +++ b/domains/mrthundergod.json @@ -1,11 +1,10 @@ { "description": "The ThunderDome", - "repo": "https://github.com/mrthundergod", "owner": { "username": "mrthundergod", "email": "mrthundergod@gmail.com" }, - "record": { + "records": { "CNAME": "mrthundergod.github.io" } } diff --git a/domains/mrtspeedy.json b/domains/mrtspeedy.json new file mode 100644 index 000000000..3e7e3c214 --- /dev/null +++ b/domains/mrtspeedy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mrtspeedy", + "email": "toxicspeedytv@gmail.com", + "discord": "1095502790534627348" + }, + "records": { + "CNAME": "portfolio-mrtspeedy.vercel.app" + } +} diff --git a/domains/mrugeshtank.json b/domains/mrugeshtank.json index 93c7fa64e..564085e77 100644 --- a/domains/mrugeshtank.json +++ b/domains/mrugeshtank.json @@ -4,7 +4,7 @@ "email": "mrugeshtank@gmail.com", "twitter": "mrugeshtank" }, - "record": { + "records": { "URL": "https://mrugesh.tk" } } diff --git a/domains/mrvasil.json b/domains/mrvasil.json index 957a8f3b6..7dc4c6a19 100644 --- a/domains/mrvasil.json +++ b/domains/mrvasil.json @@ -4,7 +4,7 @@ "username": "mrvasil", "email": "adminich@urrr.ru" }, - "record": { + "records": { "A": ["176.109.106.66"] } } diff --git a/domains/mryusuf.json b/domains/mryusuf.json index 607c70610..8e1e901c1 100644 --- a/domains/mryusuf.json +++ b/domains/mryusuf.json @@ -3,7 +3,7 @@ "username": "yufuss", "email": "yusufgocer40@hotmail.com" }, - "record": { + "records": { "CNAME": "glitch.edgeapp.net" } } diff --git a/domains/mssfreight.json b/domains/mssfreight.json index 0f0ef26d8..73404df09 100644 --- a/domains/mssfreight.json +++ b/domains/mssfreight.json @@ -3,7 +3,7 @@ "username": "KRNRBRBR", "email": "kizadawiza2@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/mta.mail.mrstickypiston.json b/domains/mta.mail.mrstickypiston.json deleted file mode 100644 index 748577693..000000000 --- a/domains/mta.mail.mrstickypiston.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "MrStickyPiston", - "discord": "700766242268774471", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag" - }, - - "record": { - "CNAME": "mailersend.net" - } - } - \ No newline at end of file diff --git a/domains/mthia.json b/domains/mthia.json index acadd2605..f75f73934 100644 --- a/domains/mthia.json +++ b/domains/mthia.json @@ -5,7 +5,7 @@ "email": "mthia@xdd.moe", "discord": "443794213524733962" }, - "record": { + "records": { "CNAME": "mthia.xdd.moe" } } diff --git a/domains/mu.json b/domains/mu.json new file mode 100644 index 000000000..3f63aa545 --- /dev/null +++ b/domains/mu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mohammadusman666", + "email": "mohammadusman666@gmail.com" + }, + "records": { + "CNAME": "portfolio-1cw.pages.dev" + } +} diff --git a/domains/muaz.json b/domains/muaz.json new file mode 100644 index 000000000..52f900e03 --- /dev/null +++ b/domains/muaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muazsrc", + "email": "muazsrc17@gmail.com" + }, + "records": { + "CNAME": "muaz-2te.pages.dev" + } +} diff --git a/domains/mubaidr.json b/domains/mubaidr.json index 48c5f0d80..39f5b895c 100644 --- a/domains/mubaidr.json +++ b/domains/mubaidr.json @@ -1,10 +1,9 @@ { "owner": { "username": "mubaidr", - "email": "mubaidr@gmail.com", - "discord": "" + "email": "mubaidr@gmail.com" }, - "record": { + "records": { "CNAME": "mubaidr.js.org" } } diff --git a/domains/mubarak.json b/domains/mubarak.json new file mode 100644 index 000000000..df6d31322 --- /dev/null +++ b/domains/mubarak.json @@ -0,0 +1,10 @@ +{ + "description": "link to Mubarak H. Alketbi Github profile", + "owner": { + "username": "MubarakHAlketbi", + "email": "mubarak.harran@gmail.com" + }, + "records": { + "URL": "https://github.com/MubarakHAlketbi/" + } +} diff --git a/domains/muchenski.json b/domains/muchenski.json index d4be75aed..9b2360b3b 100644 --- a/domains/muchenski.json +++ b/domains/muchenski.json @@ -5,7 +5,7 @@ "username": "Muchenski", "email": "muchenski.dev@gmail.com" }, - "record": { + "records": { "CNAME": "muchenski.github.io" } } diff --git a/domains/mudasir.json b/domains/mudasir.json new file mode 100644 index 000000000..30094ee60 --- /dev/null +++ b/domains/mudasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzamudassir", + "discord": "0xmudassir" + }, + "records": { + "CNAME": "modasir.vercel.app" + } +} diff --git a/domains/muff.json b/domains/muff.json index 0c7cde2b4..d21fbc99c 100644 --- a/domains/muff.json +++ b/domains/muff.json @@ -3,7 +3,7 @@ "username": "lifeless-muffin", "email": "mansoorroeen71@gmail.com" }, - "record": { + "records": { "CNAME": "lifeless-muffin.github.io" } } diff --git a/domains/muhalvin.json b/domains/muhalvin.json index 002cdd5ae..42ed1f441 100644 --- a/domains/muhalvin.json +++ b/domains/muhalvin.json @@ -5,7 +5,7 @@ "username": "muhalvin", "email": "work.muhalvin@gmail.com" }, - "record": { + "records": { "CNAME": "muhalvin.github.io" } } diff --git a/domains/muhammad-yusuf.json b/domains/muhammad-yusuf.json new file mode 100644 index 000000000..de5392ae7 --- /dev/null +++ b/domains/muhammad-yusuf.json @@ -0,0 +1,11 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/mhmmd-ysf/mhmmd-ysf", + "owner": { + "username": "mhmmd-ysf", + "email": "muhammad_yusuf22@outlook.com" + }, + "records": { + "URL": "https://mhmmd-ysf.github.io" + } +} diff --git a/domains/muhammad.json b/domains/muhammad.json index b8b4d0d1d..70fd874a9 100644 --- a/domains/muhammad.json +++ b/domains/muhammad.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "URL": "https://mohammedkhc.is-a.dev" } } diff --git a/domains/muhammadabdullah.json b/domains/muhammadabdullah.json new file mode 100644 index 000000000..e65da559c --- /dev/null +++ b/domains/muhammadabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah9715", + "email": "muftimuhammadabdullah225@gmail.com" + }, + "records": { + "URL": "https://latest-porfolio-website.web.app" + } +} diff --git a/domains/muhammadbasitobaid.json b/domains/muhammadbasitobaid.json index 2db9785c7..30539adf0 100644 --- a/domains/muhammadbasitobaid.json +++ b/domains/muhammadbasitobaid.json @@ -4,7 +4,7 @@ "username": "muhammadbasitobaid", "email": "muhammadbasitobaid@gmail.com" }, - "record": { + "records": { "CNAME": "muhammadbasitobaid.github.io" } } diff --git a/domains/muhammed.json b/domains/muhammed.json new file mode 100644 index 000000000..d3aa39321 --- /dev/null +++ b/domains/muhammed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MhmdFais", + "email": "mofam534@gmail.com" + }, + "records": { + "CNAME": "muhammeddev.vercel.app" + } +} diff --git a/domains/muheko.json b/domains/muheko.json deleted file mode 100644 index b748bac89..000000000 --- a/domains/muheko.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "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/muiz.json b/domains/muiz.json new file mode 100644 index 000000000..2b19981f6 --- /dev/null +++ b/domains/muiz.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio", + "repo": "https://github.com/MuizU/muizu.github.io", + "owner": { + "username": "MuizU", + "email": "muizuvais99@gmail.com" + }, + "records": { + "CNAME": "muizu.github.io" + } +} diff --git a/domains/muizzz.json b/domains/muizzz.json index f76bc7d64..72375d663 100644 --- a/domains/muizzz.json +++ b/domains/muizzz.json @@ -6,7 +6,7 @@ "email": "muizzatam110@gmail.com", "twitter": "muizzatam" }, - "record": { + "records": { "CNAME": "muizzatam.github.io" } } diff --git a/domains/mukesh-tadpad.json b/domains/mukesh-tadpad.json index 44fcc60ca..9e5531bbf 100644 --- a/domains/mukesh-tadpad.json +++ b/domains/mukesh-tadpad.json @@ -4,7 +4,7 @@ "owner": { "username": "mukesh-tadpad" }, - "record": { + "records": { "CNAME": "mukesh-tadpad.github.io" } } diff --git a/domains/munir.json b/domains/munir.json new file mode 100644 index 000000000..d7ba618ca --- /dev/null +++ b/domains/munir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "munirsiddiqui54", + "email": "munir230204@gmail.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/muntasir.json b/domains/muntasir.json index bf7b496d6..bb1fb3db2 100644 --- a/domains/muntasir.json +++ b/domains/muntasir.json @@ -3,7 +3,7 @@ "username": "muntasir-dev", "email": "meeoundnp@gmail.com" }, - "record": { + "records": { "CNAME": "muntasir-de.github.io" } } diff --git a/domains/muralikrishna.json b/domains/muralikrishna.json new file mode 100644 index 000000000..c026f2b1e --- /dev/null +++ b/domains/muralikrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muralimallela", + "email": "mmallela9@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/murasame-san-ddl.json b/domains/murasame-san-ddl.json index 25d27f193..1c22640ec 100644 --- a/domains/murasame-san-ddl.json +++ b/domains/murasame-san-ddl.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "comderzaid", - "email": "diazkhan66@gmail.com", - "discord": "544461226499899393", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h5XfBb-IScJHFReqzLw1Or84zoOq6R4ypGCyDQDYsW-wijccncffZxnRm0UaPov4GHyypLM3kEYvOGymNCuAl-ipzDQrAkRIpD8Je8_thCTShwt06ftADHWrFc-UQgFhEOTwLiaaaz4z3Q0Jp6dNlqVCXnyIkk_V7A6-FQQS19oUQUCW0Vv-DC-XJO3GWvFPy31WFaYP8FIUwnkQH49CRO-CtdMZdbMsJ5kuAYKM_wSVnGeOK9qCJce8cP_oMO7b-XLkKGlHwymb0Qyn5r1vbCTk6gAd_A6PoPHYH8JmjEnexk9L8r2nkelP5Us1ZgrraBKMOvAP9QDI8U8iDtajrA.esKVpOzITWARO4xxpboB_A.ebg8aH85QLWwPoiYCm87y7baFdxdCKV48Ufs0esjY9wYpBtWpIHR-NJ1VCZ6vQGxzal8KrV11osN4PGYexSLSTgOiTdE3d48Yd753FS7_uE.LNSomkDjTx3uuscJhq48cg" - }, - "record": { - "CNAME": "cylindrical-gardlic-8jekw3mlfaoniohl2i7wdokz.herokudns.com" - } -} \ No newline at end of file + "owner": { + "username": "comderzaid", + "email": "diazkhan66@gmail.com", + "discord": "544461226499899393" + }, + "records": { + "CNAME": "cylindrical-gardlic-8jekw3mlfaoniohl2i7wdokz.herokudns.com" + } +} diff --git a/domains/murodovazizmurod.json b/domains/murodovazizmurod.json index 012116536..cc17b4473 100644 --- a/domains/murodovazizmurod.json +++ b/domains/murodovazizmurod.json @@ -5,7 +5,7 @@ "username": "murodovazizmurod", "email": "murodovazizmurod@gmail.com" }, - "record": { + "records": { "CNAME": "murodovazizmurod.github.io" } } diff --git a/domains/musiccorn01.json b/domains/musiccorn01.json index 6e44b6d8e..59c7b8954 100644 --- a/domains/musiccorn01.json +++ b/domains/musiccorn01.json @@ -3,7 +3,7 @@ "username": "ondirisuliuly", "email": "ondirisuliuly@gmail.com" }, - "record": { + "records": { "A": ["185.239.48.45"] } } diff --git a/domains/mustafa.json b/domains/mustafa.json index b10e768be..fb4afe6b9 100644 --- a/domains/mustafa.json +++ b/domains/mustafa.json @@ -3,7 +3,7 @@ "username": "Cuurle", "email": "cuurleee@gmail.com" }, - "record": { + "records": { "CNAME": "glitch.edgeapp.net" } } diff --git a/domains/mustafaozturk.json b/domains/mustafaozturk.json index ee71e791e..fd095b7cf 100644 --- a/domains/mustafaozturk.json +++ b/domains/mustafaozturk.json @@ -3,7 +3,7 @@ "username": "Night-X-dev", "email": "mustafaozturkk1907@gmail.com" }, - "record": { + "records": { "URL": "https://mustafa.yusufzengin.com.tr/" } } diff --git a/domains/muthomi.json b/domains/muthomi.json new file mode 100644 index 000000000..3f94d4a38 --- /dev/null +++ b/domains/muthomi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "michaelmuthomi", + "discord": "michaelgikunda" + }, + "records": { + "CNAME": "michael-portfolio-green.vercel.app" + } +} diff --git a/domains/muzammil.json b/domains/muzammil.json index 8bf5dcfec..a0b95c73a 100644 --- a/domains/muzammil.json +++ b/domains/muzammil.json @@ -4,7 +4,7 @@ "username": "taqnar", "email": "muzammilthottathil.official@gmail.com" }, - "record": { + "records": { "CNAME": "taqnar.github.io" } } diff --git a/domains/mvl.json b/domains/mvl.json new file mode 100644 index 000000000..684a753a2 --- /dev/null +++ b/domains/mvl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "medival", + "email": "dev.adipurnomo@gmail.com" + }, + "records": { + "CNAME": "blog.mvl.biz.id" + } +} diff --git a/domains/mwa.json b/domains/mwa.json index 52f77c560..a5f5a2766 100644 --- a/domains/mwa.json +++ b/domains/mwa.json @@ -3,7 +3,7 @@ "username": "Totallynotmwa", "discord": "totallynotmwa" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/mwanothere.json b/domains/mwanothere.json index 0fe23b8c2..ee1444e24 100644 --- a/domains/mwanothere.json +++ b/domains/mwanothere.json @@ -3,7 +3,7 @@ "username": "Totallynotmwa", "email": "totallynot@mwa.lol" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/mxnticek.json b/domains/mxnticek.json index 68094cc50..1189f3929 100644 --- a/domains/mxnticek.json +++ b/domains/mxnticek.json @@ -5,7 +5,7 @@ "username": "VlastikYoutubeKo", "email": "mxnticek@proton.me" }, - "record": { + "records": { "CNAME": "vlastikyoutubeko.github.io" } } diff --git a/domains/mxnuchim.json b/domains/mxnuchim.json index 34be0b539..5bce7ca0b 100644 --- a/domains/mxnuchim.json +++ b/domains/mxnuchim.json @@ -3,7 +3,7 @@ "username": "mxnuchim", "email": "manuchimoliver779@gmail.com" }, - "record": { + "records": { "URL": "https://manuchimoliver.vercel.app" } } diff --git a/domains/mxritz.json b/domains/mxritz.json index 26a02cac2..f3131a25a 100644 --- a/domains/mxritz.json +++ b/domains/mxritz.json @@ -2,9 +2,9 @@ "description": "Personal Portfolio", "owner": { "username": "mxritzdev", - "email": "contact@mxritz.dev" + "email": "mail@mxritz.dev" }, - "record": { - "CNAME": "proxy.host.bytes.wtf" + "records": { + "CNAME": "server.mxritz.dev" } } diff --git a/domains/my.mr-julus.json b/domains/my.mr-julus.json index 82a4a9210..7bb1dfaa0 100644 --- a/domains/my.mr-julus.json +++ b/domains/my.mr-julus.json @@ -4,7 +4,7 @@ "username": "BougSoon-Studio", "email": "bougsoon.studio@gmail.com" }, - "record": { + "records": { "CNAME": "my-mr-julus.web.app" } } diff --git a/domains/my.sembiland.json b/domains/my.sembiland.json index fafe88295..ed2e24b97 100644 --- a/domains/my.sembiland.json +++ b/domains/my.sembiland.json @@ -3,7 +3,7 @@ "username": "TTGGHHgjkG", "email": "tgfeghfcrxctchvvhv@gmail.com" }, - "record": { + "records": { "URL": "https://sembiland.my.canva.site" } } diff --git a/domains/my5ter.json b/domains/my5ter.json new file mode 100644 index 000000000..317f855b3 --- /dev/null +++ b/domains/my5ter.json @@ -0,0 +1,12 @@ +{ + "description": "Myster's website", + "repo": "https://github.com/MysterV/mysterv.github.io", + "owner": { + "username": "MysterV", + "email": "myster@ik.me", + "discord": "my5ter" + }, + "records": { + "CNAME": "mysterv.github.io" + } +} diff --git a/domains/mydesktop.json b/domains/mydesktop.json index 141d1b56b..b40bf3ff4 100644 --- a/domains/mydesktop.json +++ b/domains/mydesktop.json @@ -3,7 +3,7 @@ "username": "bigcacarouci", "email": "bigcacarouci@gmail.com" }, - "record": { + "records": { "A": ["188.241.118.89"] } } diff --git a/domains/myforum.json b/domains/myforum.json index 72a2fee0a..81d6de8dc 100644 --- a/domains/myforum.json +++ b/domains/myforum.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "myforum.mydiscussion.net" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "myforum.mydiscussion.net" + } } diff --git a/domains/myominhan.json b/domains/myominhan.json new file mode 100644 index 000000000..961d841c5 --- /dev/null +++ b/domains/myominhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mmhann18491", + "email": "myominhan18491@gmail.com" + }, + "records": { + "CNAME": "my-portfolio-site-2d30a.web.app" + } +} diff --git a/domains/myprofile.json b/domains/myprofile.json new file mode 100644 index 000000000..85254f71e --- /dev/null +++ b/domains/myprofile.json @@ -0,0 +1,11 @@ +{ + "description": "tuan.myprofile.dev", + "owner": { + "username": "tuannguyen2002", + "email": "coixaygio107@gmail.com", + "discord": "minhtuan9039" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/myrdin.json b/domains/myrdin.json index 3d0af9700..3ab54d507 100644 --- a/domains/myrdin.json +++ b/domains/myrdin.json @@ -3,7 +3,7 @@ "username": "Myrdincx", "email": "myrdincx@gmail.com" }, - "record": { + "records": { "CNAME": "myrdincx.github.io" } } diff --git a/domains/myster.json b/domains/myster.json new file mode 100644 index 000000000..317f855b3 --- /dev/null +++ b/domains/myster.json @@ -0,0 +1,12 @@ +{ + "description": "Myster's website", + "repo": "https://github.com/MysterV/mysterv.github.io", + "owner": { + "username": "MysterV", + "email": "myster@ik.me", + "discord": "my5ter" + }, + "records": { + "CNAME": "mysterv.github.io" + } +} diff --git a/domains/mystery.json b/domains/mystery.json index 299519559..3b6ae3d26 100644 --- a/domains/mystery.json +++ b/domains/mystery.json @@ -5,7 +5,7 @@ "username": "SilentDemonSD", "email": "mysterysd.sd@gmail.com" }, - "record": { + "records": { "CNAME": "silentdemonsd.github.io" } } diff --git a/domains/mystic-titans.json b/domains/mystic-titans.json index 9e1ed46ce..388da8abb 100644 --- a/domains/mystic-titans.json +++ b/domains/mystic-titans.json @@ -3,7 +3,7 @@ "username": "joltz1234", "email": "joltzx123@gmail.com" }, - "record": { + "records": { "URL": "https://discord.gg/mystic-titans" } } diff --git a/domains/mystic.trung.json b/domains/mystic.trung.json index b99730c4e..488318c9f 100644 --- a/domains/mystic.trung.json +++ b/domains/mystic.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/mystie.json b/domains/mystie.json index 88db868f1..e43a47c55 100644 --- a/domains/mystie.json +++ b/domains/mystie.json @@ -3,7 +3,7 @@ "username": "mystieneko", "email": "z232566755z@gmail.com" }, - "record": { + "records": { "A": ["64.62.151.106"] } } diff --git a/domains/mythsman.json b/domains/mythsman.json index 6ba26aaef..dec775815 100644 --- a/domains/mythsman.json +++ b/domains/mythsman.json @@ -1,11 +1,10 @@ { "description": "Mythsman's personal site", - "repo": "https://github.com/mythsman", "owner": { "username": "mythsman", "email": "mythsman@foxmail.com" }, - "record": { + "records": { "URL": "https://blog.mythsman.com" } } diff --git a/domains/myxi.json b/domains/myxi.json index 1a2f6a835..d32c8c1df 100644 --- a/domains/myxi.json +++ b/domains/myxi.json @@ -3,7 +3,7 @@ "username": "eeriemyxi", "email": "myxi@envs.net" }, - "record": { + "records": { "URL": "https://myxi.envs.net" } } diff --git a/domains/mz.json b/domains/mz.json index 43aa4ed86..5bd099a02 100644 --- a/domains/mz.json +++ b/domains/mz.json @@ -3,7 +3,7 @@ "username": "influxweb", "email": "matt@dev4web.net" }, - "record": { + "records": { "URL": "https://www.dev4web.net" } } diff --git a/domains/mzakyr.json b/domains/mzakyr.json index 6d03b5fb9..ef839c4b1 100644 --- a/domains/mzakyr.json +++ b/domains/mzakyr.json @@ -3,7 +3,7 @@ "username": "muhammadzaki693", "email": "rzaki9353@gmail.com" }, - "record": { + "records": { "CNAME": "my-personal-web-production.up.railway.app" } } diff --git a/domains/mzaman.json b/domains/mzaman.json new file mode 100644 index 000000000..09a9f2d07 --- /dev/null +++ b/domains/mzaman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzazaman", + "email": "mirzazaman828@gmail.com" + }, + "records": { + "CNAME": "zaman-portfolio.vercel.app" + } +} diff --git a/domains/mzn.json b/domains/mzn.json index 45d33185b..79b5e9a7c 100644 --- a/domains/mzn.json +++ b/domains/mzn.json @@ -3,7 +3,7 @@ "username": "mznking", "email": "maazinking23@gmail.com" }, - "record": { + "records": { "CNAME": "mzn-king.onrender.com" } } diff --git a/domains/mznking.json b/domains/mznking.json index 45d33185b..79b5e9a7c 100644 --- a/domains/mznking.json +++ b/domains/mznking.json @@ -3,7 +3,7 @@ "username": "mznking", "email": "maazinking23@gmail.com" }, - "record": { + "records": { "CNAME": "mzn-king.onrender.com" } } diff --git a/domains/mzunino.json b/domains/mzunino.json new file mode 100644 index 000000000..dda59d840 --- /dev/null +++ b/domains/mzunino.json @@ -0,0 +1,11 @@ +{ + "description": "Mariano Zunino's personal portfolio site", + "repo": "https://github.com/marianozunino/portfolio", + "owner": { + "username": "marianozunino", + "email": "marianoz@posteo.net" + }, + "records": { + "CNAME": "mzunino.com.uy" + } +} diff --git a/domains/mzykin.json b/domains/mzykin.json index b767666ae..311a32596 100644 --- a/domains/mzykin.json +++ b/domains/mzykin.json @@ -3,7 +3,7 @@ "username": "maxzkn", "email": "maks.zyk@gmail.com" }, - "record": { + "records": { "CNAME": "mzykin.com" } } diff --git a/domains/n.json b/domains/n.json index 26ddb97a0..153a0ac1d 100644 --- a/domains/n.json +++ b/domains/n.json @@ -1,9 +1,12 @@ { - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "CNAME": "xproject-xi.vercel.app" - } + "description": "backup domain for my url shortener", + "repo": "https://github.com/NotNalin/url-shortener", + "owner": { + "username": "NotNalin", + "email": "notnalin@protonmail.com", + "discord": "trickygamer" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } } diff --git a/domains/n0kemm.json b/domains/n0kemm.json new file mode 100644 index 000000000..a8cb145df --- /dev/null +++ b/domains/n0kemm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chaetard", + "email": "jesus.santos4160@alumnos.udg.mx" + }, + "records": { + "CNAME": "n0kemm.netlify.app" + } +} diff --git a/domains/n0rule.json b/domains/n0rule.json index 153275be1..aacec812f 100644 --- a/domains/n0rule.json +++ b/domains/n0rule.json @@ -3,7 +3,7 @@ "username": "N0rule", "email": "N0rule228@gmail.com" }, - "record": { + "records": { "CNAME": "n0rule.github.io" } } diff --git a/domains/n1ghtmare.json b/domains/n1ghtmare.json index 6c652eee8..b66790b6a 100644 --- a/domains/n1ghtmare.json +++ b/domains/n1ghtmare.json @@ -3,7 +3,7 @@ "username": "n1ghtmare3301", "email": "n1ghtmare3301@proton.me" }, - "record": { + "records": { "CNAME": "n1ghtmare3301.github.io" } } diff --git a/domains/n3m.json b/domains/n3m.json new file mode 100644 index 000000000..da584c5a6 --- /dev/null +++ b/domains/n3m.json @@ -0,0 +1,9 @@ +{ + "description": "Domain that redirects to my personal portfolio", + "owner": { + "username": "n3m" + }, + "records": { + "URL": "https://n3m.me" + } +} diff --git a/domains/n3rdc4ptn.json b/domains/n3rdc4ptn.json new file mode 100644 index 000000000..7ab93ac1c --- /dev/null +++ b/domains/n3rdc4ptn.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for n3rdc4ptn", + "owner": { + "username": "n3rdc4ptn" + }, + "records": { + "CNAME": "moritzreich.dev" + }, + "proxied": true +} diff --git a/domains/n4n5.json b/domains/n4n5.json index e4331b8c4..e04abac52 100644 --- a/domains/n4n5.json +++ b/domains/n4n5.json @@ -1,10 +1,9 @@ { "description": "redirects to my website", - "repo": "https://github.com/Its-Just-Nans", "owner": { "username": "Its-Just-Nans" }, - "record": { + "records": { "URL": "https://n4n5.dev" } } diff --git a/domains/n4rc1ssus.json b/domains/n4rc1ssus.json index 44601c8d5..82c646c2c 100644 --- a/domains/n4rc1ssus.json +++ b/domains/n4rc1ssus.json @@ -4,7 +4,7 @@ "email": "extrastuff.j3db6@simplelogin.co", "note": "Not my actual email, but it forwards to my actual one." }, - "record": { + "records": { "CNAME": "n4rc1ssus.codeberg.page" } } diff --git a/domains/nabeel.json b/domains/nabeel.json new file mode 100644 index 000000000..8452b6b72 --- /dev/null +++ b/domains/nabeel.json @@ -0,0 +1,12 @@ +{ + "repo": "https://nabeel.molham.me/links/github", + "owner": { + "username": "N-Molham", + "email": "nmolham@duck.com", + "twitter": "https://nabeel.molham.me/links/twitter", + "links": "https://nabeel.molham.me/links/" + }, + "records": { + "CNAME": "nabeel.molham.me" + } +} diff --git a/domains/nabil.json b/domains/nabil.json new file mode 100644 index 000000000..ed9bceae4 --- /dev/null +++ b/domains/nabil.json @@ -0,0 +1,11 @@ +{ + "description": "Rahat Morshed Nabil - Portfolio", + "repo": "https://github.com/imrmnabil/profile", + "owner": { + "username": "imrmnabil", + "email": "imrmnabil@gmail.com" + }, + "records": { + "CNAME": "imrmnabil.github.io" + } +} diff --git a/domains/nabin.json b/domains/nabin.json new file mode 100644 index 000000000..6be0ffd37 --- /dev/null +++ b/domains/nabin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nabinkatwal7", + "email": "mediocampistaa@gmail.com" + }, + "records": { + "CNAME": "portfolio-v3-six-iota.vercel.app" + } +} diff --git a/domains/nadeem.json b/domains/nadeem.json index b42098234..723aacf8c 100644 --- a/domains/nadeem.json +++ b/domains/nadeem.json @@ -3,7 +3,7 @@ "username": "Nadeem-05", "email": "m.nadeem83005@gmail.com" }, - "record": { + "records": { "CNAME": "nadeem-05.github.io" } } diff --git a/domains/nadeerasilva.json b/domains/nadeerasilva.json new file mode 100644 index 000000000..9e385dbeb --- /dev/null +++ b/domains/nadeerasilva.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio", + "repo": "https://github.com/NadeeraSilvaa/nadeerasilvaa.github.io", + "owner": { + "username": "nadeerasilvaa", + "email": "nadeerasilva01@gmail.com" + }, + "records": { + "CNAME": "nadeerasilvaa.github.io" + } +} diff --git a/domains/naffy.json b/domains/naffy.json index 956734e4a..3d407dbe9 100644 --- a/domains/naffy.json +++ b/domains/naffy.json @@ -5,7 +5,7 @@ "username": "knownasnaffy", "twitter": "dharni_naffy" }, - "record": { + "records": { "CNAME": "knownasnaffy.github.io" } } diff --git a/domains/naftali100.json b/domains/naftali100.json new file mode 100644 index 000000000..bd239cf73 --- /dev/null +++ b/domains/naftali100.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "naftali100", + "email": "hello@naftali100.top" + }, + "records": { + "CNAME": "naftali100.top" + } +} diff --git a/domains/nagarajgond.json b/domains/nagarajgond.json index a0da3fddb..ab48ac0e5 100644 --- a/domains/nagarajgond.json +++ b/domains/nagarajgond.json @@ -5,7 +5,7 @@ "username": "nagarajgond", "email": "nagarajgond@live.com" }, - "record": { + "records": { "CNAME": "nagarajgond.github.io" } } diff --git a/domains/nahid.json b/domains/nahid.json index a8da62284..cd9ea1373 100644 --- a/domains/nahid.json +++ b/domains/nahid.json @@ -5,7 +5,7 @@ "username": "SOUROVKHANNAHID", "email": "SourovKhanNahid@gmail.com" }, - "record": { + "records": { "CNAME": "sourovkhannahid.github.io" } } diff --git a/domains/nahuel.json b/domains/nahuel.json new file mode 100644 index 000000000..1516c7057 --- /dev/null +++ b/domains/nahuel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "navalesnahuel", + "email": "navalesnahuel@gmail.com" + }, + "records": { + "CNAME": "navalesnahuel.github.io" + } +} diff --git a/domains/nahuelnavales.json b/domains/nahuelnavales.json new file mode 100644 index 000000000..1516c7057 --- /dev/null +++ b/domains/nahuelnavales.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "navalesnahuel", + "email": "navalesnahuel@gmail.com" + }, + "records": { + "CNAME": "navalesnahuel.github.io" + } +} diff --git a/domains/nai.json b/domains/nai.json new file mode 100644 index 000000000..a1601b484 --- /dev/null +++ b/domains/nai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NailethR", + "email": "nait.0005@gmail.com" + }, + "records": { + "CNAME": "nailethr.github.io" + } +} diff --git a/domains/naimur.json b/domains/naimur.json new file mode 100644 index 000000000..ae8e72454 --- /dev/null +++ b/domains/naimur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mohammad-naimur-rahman", + "discord": "829283275846975488" + }, + "records": { + "CNAME": "naimurdev.vercel.app" + } +} diff --git a/domains/naivelyn.json b/domains/naivelyn.json index 8bc9cacc2..a9bd05b0e 100644 --- a/domains/naivelyn.json +++ b/domains/naivelyn.json @@ -3,7 +3,7 @@ "username": "Golgrax", "email": "pepe.kotelurow@gmail.com" }, - "record": { + "records": { "CNAME": "naivelyn.pages.dev" } } diff --git a/domains/naki.json b/domains/naki.json index 698a9f5a9..79df75a8e 100644 --- a/domains/naki.json +++ b/domains/naki.json @@ -3,7 +3,7 @@ "username": "YoruAkio", "email": "yoruakio@proton.me" }, - "record": { + "records": { "CNAME": "nakio.pages.dev" } } diff --git a/domains/nakim.json b/domains/nakim.json new file mode 100644 index 000000000..10c154634 --- /dev/null +++ b/domains/nakim.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/xaviermawet", + "owner": { + "username": "xaviermawet", + "email": "xavier@nakim.be" + }, + "records": { + "CNAME": "nakim.be" + } +} diff --git a/domains/nalin.json b/domains/nalin.json index dc3434c46..a4186b444 100644 --- a/domains/nalin.json +++ b/domains/nalin.json @@ -4,7 +4,7 @@ "email": "nalinstudios@gmail.com", "instagram": "nalin_2005" }, - "record": { + "records": { "CNAME": "nalin-2005.github.io" } } diff --git a/domains/naltheduck.json b/domains/naltheduck.json index dffb88718..c9342f073 100644 --- a/domains/naltheduck.json +++ b/domains/naltheduck.json @@ -5,7 +5,7 @@ "username": "PewZew", "email": "lanlehoang957@gmail.com" }, - "record": { + "records": { "CNAME": "pewzew.github.io" } } diff --git a/domains/naman-machchhar.json b/domains/naman-machchhar.json index 182de655c..ba55cd465 100644 --- a/domains/naman-machchhar.json +++ b/domains/naman-machchhar.json @@ -4,7 +4,7 @@ "owner": { "username": "naman-machchhar" }, - "record": { + "records": { "CNAME": "naman-machchhar.github.io" } } diff --git a/domains/naman.json b/domains/naman.json index e02534f18..de885508c 100644 --- a/domains/naman.json +++ b/domains/naman.json @@ -5,7 +5,7 @@ "username": "Naman-Gururani", "email": "gururaninaman@gmail.com" }, - "record": { + "records": { "CNAME": "naman-gururani.github.io" } } diff --git a/domains/namansethi.json b/domains/namansethi.json new file mode 100644 index 000000000..3659b65a1 --- /dev/null +++ b/domains/namansethi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "namansethi13", + "email": "heynamansethi@gmail.com" + }, + "records": { + "CNAME": "namansethi.vercel.app" + } +} diff --git a/domains/namansrivastava.json b/domains/namansrivastava.json new file mode 100644 index 000000000..48941d1cf --- /dev/null +++ b/domains/namansrivastava.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "naman-0804", + "email": "namansrivastava1608@gmail.com", + "discord": "naman_1101" + }, + "records": { + "CNAME": "naman08portfolio.vercel.app" + } +} diff --git a/domains/namesmt.json b/domains/namesmt.json index 49dc6964a..629b0f47e 100644 --- a/domains/namesmt.json +++ b/domains/namesmt.json @@ -3,7 +3,7 @@ "username": "NamesMT", "email": "dangquoctrung123@gmail.com" }, - "record": { + "records": { "CNAME": "namesmt.github.io" } } diff --git a/domains/namht.json b/domains/namht.json new file mode 100644 index 000000000..f1f3b7cd5 --- /dev/null +++ b/domains/namht.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lagux-coding", + "email": "nguyenhientrungnam@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/namkun.json b/domains/namkun.json index 2ffcacdbb..ab08c4266 100644 --- a/domains/namkun.json +++ b/domains/namkun.json @@ -3,7 +3,7 @@ "username": "beocaca", "email": "namdev1402@gmail.com" }, - "record": { + "records": { "CNAME": "namkun.pages.dev" } } diff --git a/domains/namra.json b/domains/namra.json index fb30d1c0b..725554194 100644 --- a/domains/namra.json +++ b/domains/namra.json @@ -3,7 +3,7 @@ "username": "njxixi", "email": "jnamra.nj@gmail.com" }, - "record": { + "records": { "CNAME": "njxixi.github.io" } } diff --git a/domains/nan.json b/domains/nan.json index 7a7c1a88e..db3e38ce2 100644 --- a/domains/nan.json +++ b/domains/nan.json @@ -6,7 +6,7 @@ "email": "harpesmun69@gmail.com", "facebook": "https://facebook.com/nan.phtml" }, - "record": { + "records": { "CNAME": "begalnenen.github.io" } } diff --git a/domains/nand.json b/domains/nand.json index d80d1bc59..7727e6c5d 100644 --- a/domains/nand.json +++ b/domains/nand.json @@ -4,7 +4,7 @@ "username": "nandkk05", "email": "nandkk07@gmail.com" }, - "record": { + "records": { "CNAME": "nandkk05.github.io" } } diff --git a/domains/nandhu.json b/domains/nandhu.json index 95f64cdff..09a440987 100644 --- a/domains/nandhu.json +++ b/domains/nandhu.json @@ -3,7 +3,7 @@ "username": "nandhu-44", "email": "nandhu90040@gmail.com" }, - "record": { + "records": { "CNAME": "nandhu.deno.dev" } } diff --git a/domains/nanonavigate.json b/domains/nanonavigate.json index bee5b0f63..783bf639b 100644 --- a/domains/nanonavigate.json +++ b/domains/nanonavigate.json @@ -3,7 +3,7 @@ "username": "Kurumi30", "email": "fernandoshengxinzhu@gmail.com" }, - "record": { + "records": { "URL": "https://nanonavigate.onrender.com/" } } diff --git a/domains/naokoshoto.json b/domains/naokoshoto.json index 89f3f4960..67354c794 100644 --- a/domains/naokoshoto.json +++ b/domains/naokoshoto.json @@ -5,7 +5,7 @@ "email": "mdigreget@gmail.com", "twitter": "naokoshoto" }, - "record": { + "records": { "URL": "https://naokoshoto.my.id" } } diff --git a/domains/narasima.json b/domains/narasima.json new file mode 100644 index 000000000..5f22f3ba3 --- /dev/null +++ b/domains/narasima.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com", + "discord": "gamingdoodle" + }, + "records": { + "A": ["75.2.60.5"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/narender.json b/domains/narender.json index 4d82ac070..c5050652b 100644 --- a/domains/narender.json +++ b/domains/narender.json @@ -5,7 +5,7 @@ "username": "nkkize", "email": "nkk.snat@gmail.com" }, - "record": { + "records": { "CNAME": "nkkize.github.io" } } diff --git a/domains/narendradwivedi.json b/domains/narendradwivedi.json new file mode 100644 index 000000000..44712e1da --- /dev/null +++ b/domains/narendradwivedi.json @@ -0,0 +1,10 @@ +{ + "description": "narendradwivedi.is-a.dev for portfolio and projects", + "owner": { + "username": "NarendraDwivedi", + "discord": "narendradwivedi" + }, + "records": { + "CNAME": "narendradwivedi.github.io" + } +} diff --git a/domains/nashnc.json b/domains/nashnc.json new file mode 100644 index 000000000..d7c389689 --- /dev/null +++ b/domains/nashnc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nashnc", + "email": "nash.nc@gmail.com" + }, + "records": { + "CNAME": "nashnc.github.io" + } +} diff --git a/domains/nass.json b/domains/nass.json index 51ee84657..c3baf4885 100644 --- a/domains/nass.json +++ b/domains/nass.json @@ -4,7 +4,7 @@ "email": "spy456@zoho.com", "discord": "404659098919895045" }, - "record": { + "records": { "A": ["64.226.79.220"] } } diff --git a/domains/nassro.json b/domains/nassro.json index 136aab237..989c6b02d 100644 --- a/domains/nassro.json +++ b/domains/nassro.json @@ -3,7 +3,7 @@ "username": "nassro199", "email": "nasrohasini19ny@gmail.com" }, - "record": { + "records": { "URL": "https://nassro.vercel.app" } } diff --git a/domains/nat.json b/domains/nat.json index 1911853dd..9e0848896 100644 --- a/domains/nat.json +++ b/domains/nat.json @@ -4,7 +4,7 @@ "discord": "696698254770831421", "email": "natasquarelol@gmail.com" }, - "record": { + "records": { "CNAME": "natasquare.github.io" } } diff --git a/domains/natalievu.json b/domains/natalievu.json index e29879888..f6b08887c 100644 --- a/domains/natalievu.json +++ b/domains/natalievu.json @@ -5,7 +5,7 @@ "username": "tnvu7", "email": "vuthunga2001@gmail.com" }, - "record": { + "records": { "CNAME": "tnvu7.github.io" } } diff --git a/domains/natan.json b/domains/natan.json new file mode 100644 index 000000000..09a6faea3 --- /dev/null +++ b/domains/natan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NatanKonig", + "email": "natan.camargo8@gmail.com" + }, + "records": { + "A": ["144.22.137.5"] + } +} diff --git a/domains/nate.json b/domains/nate.json index 029e8718a..01bbe771a 100644 --- a/domains/nate.json +++ b/domains/nate.json @@ -1,10 +1,9 @@ { "owner": { "username": "natewombwell", - "discord": "561428834663006208", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.r1ZfrPomNfeydU8c3S9mToZbpFStt303nzw9ujvdwylTnjrIUGyfVER7P11HftqO43Sj3BN-R0MumWUFs_LIDWxpjXBK3hpZdUUfZnOXNHElwKkTBm6V1s9Uvc-Na4TTVxWcE5uChPatbnDWYP8xAqArMPAIwQgC5w9l4z6LVDhDbkypyMpofbmlmZR_VtrNtsP_beK9CYzonAVZriG33_TKwqAJ5kyx53smXoUIHtApIL9rkKKmvQXH3vpci7HD917elmn3nu-2WEOG59KvsVXayXpXNQJMb65lV03jdR8iN3yTco8rFxnsPfLB4t8Cwn1btWjqhfM-B9m0tSe4RA.JpxuyATUyVpjqG7NzEBKOA.MSTbWtKk4-4o9cN03K1838lrnn8ffMzAlhKJ8HXEeNSXlnJv0FV4fkDC8LPR13b40V66IUBvaOb5tgFqOz-_yUg2035QfiTEbymPo0o5-yg.tLR30laxvdmfPsWxSqeg1Q" + "discord": "561428834663006208" }, - "record": { + "records": { "A": ["172.66.0.70"] } } diff --git a/domains/natewashburn.json b/domains/natewashburn.json index d0e1eab61..bb2b0a8af 100644 --- a/domains/natewashburn.json +++ b/domains/natewashburn.json @@ -3,7 +3,7 @@ "username": "NateTheGreat1230", "email": "nathanprattwashburn@gmail.com" }, - "record": { + "records": { "CNAME": "natethegreat1230.github.io" } } diff --git a/domains/nathan.json b/domains/nathan.json index 86bb6d99d..d44b71f16 100644 --- a/domains/nathan.json +++ b/domains/nathan.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/MagedNuggets/MagedNuggets.github.io", + "repo": "https://github.com/nduartech/nduartech.github.io", "owner": { - "username": "MagedNuggets", - "email": "mastertofu12345@gmail.com" + "username": "nduartech", + "email": "nduartech101@gmail.com" }, - "record": { - "CNAME": "magednuggets.github.io" + "records": { + "CNAME": "nduartech.github.io" } } diff --git a/domains/nathanospino.json b/domains/nathanospino.json new file mode 100644 index 000000000..42c68c40a --- /dev/null +++ b/domains/nathanospino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "C4lumny", + "email": "ospinonathan@gmail.com" + }, + "records": { + "CNAME": "nathanospino.vercel.app" + } +} diff --git a/domains/natya.json b/domains/natya.json index 1a7c53bf8..b031d2414 100644 --- a/domains/natya.json +++ b/domains/natya.json @@ -6,7 +6,7 @@ "email": "natyavidhanbiswas10@gmail.com", "twitter": "GamerStudious" }, - "record": { + "records": { "CNAME": "studiousgamer.github.io" } } diff --git a/domains/navaneeth.json b/domains/navaneeth.json new file mode 100644 index 000000000..68bc40fc7 --- /dev/null +++ b/domains/navaneeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "snavaneeth78", + "email": "naveen.micro.test1@gmail.com" + }, + "records": { + "URL": "https://naveen.works" + } +} diff --git a/domains/navdeep.json b/domains/navdeep.json new file mode 100644 index 000000000..b274d2718 --- /dev/null +++ b/domains/navdeep.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Navdeep-Codes", + "email": "navdeep13dps@gmail.com" + }, + + "records": { + "CNAME": "navdeepsingh-tech.vercel.app" + } + +} diff --git a/domains/naveen-kumar-reddy-murthi.json b/domains/naveen-kumar-reddy-murthi.json new file mode 100644 index 000000000..cc9b1898b --- /dev/null +++ b/domains/naveen-kumar-reddy-murthi.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio website", + "owner": { + "username": "Naveen-Kumar-Reddy-Murthi", + "email": "mnreddy.nv@gmail.com" + }, + "records": { + "CNAME": "naveen-dev.netlify.app" + }, + "proxied": true +} diff --git a/domains/naveen.json b/domains/naveen.json index e699dd8c4..aab7769af 100644 --- a/domains/naveen.json +++ b/domains/naveen.json @@ -3,7 +3,7 @@ "username": "naveen8384", "email": "naveen.nani321@gmail.com" }, - "record": { + "records": { "URL": "https://naveenkumar.org" } } diff --git a/domains/naveenxd.json b/domains/naveenxd.json index 3d986bfa2..16a6f137a 100644 --- a/domains/naveenxd.json +++ b/domains/naveenxd.json @@ -1,11 +1,10 @@ { "description": "naveenxd.is-a.dev", - "repo": "https://github.com/Naveen-X", "owner": { "username": "Naveen-X", "email": "naveen@ourclg.tech" }, - "record": { + "records": { "CNAME": "naveen-x.github.io" } } diff --git a/domains/naviheylisten.json b/domains/naviheylisten.json new file mode 100644 index 000000000..ed3815b3d --- /dev/null +++ b/domains/naviheylisten.json @@ -0,0 +1,11 @@ +{ + "description": "Domain used for the backend of my blog", + "owner": { + "username": "HeyListenNavi", + "email": "heylistennavi@proton.me", + "discord": "naviheylisten" + }, + "records": { + "NS": ["gloria.ns.cloudflare.com", "mustafa.ns.cloudflare.com"] + } +} diff --git a/domains/navistar.json b/domains/navistar.json index fe0f0c9bf..86e696b6d 100644 --- a/domains/navistar.json +++ b/domains/navistar.json @@ -3,10 +3,7 @@ "username": "AShuba", "email": "anatoliy.shuba@gmail.com" }, - - "record": { - "A": [ - "138.68.159.126" - ] + "records": { + "A": ["138.68.159.126"] } } diff --git a/domains/navistar2.json b/domains/navistar2.json new file mode 100644 index 000000000..ab2a2e5de --- /dev/null +++ b/domains/navistar2.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AShuba", + "email": "anatoliy.shuba@gmail.com" + }, + "records": { + "A": ["50.16.7.52"] + } +} diff --git a/domains/navon.json b/domains/navon.json index 4ca613951..b8f15cd44 100644 --- a/domains/navon.json +++ b/domains/navon.json @@ -3,7 +3,7 @@ "username": "Magniquick", "email": "navonjohnlukose@gmail.com" }, - "record": { + "records": { "URL": "https://magniquick.github.io/" } } diff --git a/domains/nayan-gorasiya.json b/domains/nayan-gorasiya.json index 52ec26aed..09ea75fc3 100644 --- a/domains/nayan-gorasiya.json +++ b/domains/nayan-gorasiya.json @@ -5,7 +5,7 @@ "username": "nayan-gorasiya", "email": "nayan-gorasiya@acquaintsoft.com" }, - "record": { + "records": { "CNAME": "nayan-gorasiya.github.io" } } diff --git a/domains/nayan.json b/domains/nayan.json index ab18853e8..b997cccfa 100644 --- a/domains/nayan.json +++ b/domains/nayan.json @@ -1,11 +1,10 @@ { "description": "A personal website, for Nayan Patel.", - "repo": "https://github.com/pateln123", "owner": { "username": "pateln123", "email": "hello@nayanpatel.net" }, - "record": { + "records": { "URL": "https://nayanpatel.net" } } diff --git a/domains/nayandas.json b/domains/nayandas.json new file mode 100644 index 000000000..df9b188bc --- /dev/null +++ b/domains/nayandas.json @@ -0,0 +1,11 @@ +{ + "description": "Personal blog for Nayan Das (NayanJD)", + "repo": "https://github.com/NayanJD/nayanjd.github.io", + "owner": { + "username": "NayanJD", + "email": "dastms@gmail.com" + }, + "records": { + "CNAME": "nayanjd.github.io" + } +} diff --git a/domains/nayu.json b/domains/nayu.json new file mode 100644 index 000000000..12fbcb3f3 --- /dev/null +++ b/domains/nayu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nayumin", + "email": "nayumi@duck.com" + }, + "records": { + "CNAME": "web-dgj.pages.dev" + } +} diff --git a/domains/nc.json b/domains/nc.json index 9bc135c67..2c085c096 100644 --- a/domains/nc.json +++ b/domains/nc.json @@ -3,7 +3,7 @@ "username": "NCCoder1", "email": "nikhilchhawacharia@gmail.com" }, - "record": { + "records": { "CNAME": "nc-qc9p.onrender.com" } } diff --git a/domains/nd24.json b/domains/nd24.json new file mode 100644 index 000000000..1b86aa625 --- /dev/null +++ b/domains/nd24.json @@ -0,0 +1,11 @@ +{ + "description": "natedog2424's portfolio website", + "repo": "https://github.com/natedog2424/natedog2424.github.io", + "owner": { + "username": "natedog2424", + "email": "natedog2424mail@gmail.com" + }, + "records": { + "CNAME": "natedog2424.github.io" + } +} diff --git a/domains/nebula.json b/domains/nebula.json index 3cf4c2b94..50dd5901b 100644 --- a/domains/nebula.json +++ b/domains/nebula.json @@ -5,7 +5,7 @@ "username": "itsnebulalol", "email": "computerman1229@gmail.com" }, - "record": { + "records": { "CNAME": "itsnebulalol.github.io" } } diff --git a/domains/neca.json b/domains/neca.json index 5c22775c3..79e7be2cf 100644 --- a/domains/neca.json +++ b/domains/neca.json @@ -4,7 +4,7 @@ "email": "dazzerdev@gmail.com", "discord": "797458672225091594" }, - "record": { + "records": { "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], "TXT": [ "zoho-verification=zb18547320.zmverify.zoho.eu", diff --git a/domains/neebooo.json b/domains/neebooo.json index 4ea2e37de..bdd379600 100644 --- a/domains/neebooo.json +++ b/domains/neebooo.json @@ -3,9 +3,7 @@ "username": "neebooo", "email": "dev.cnamew@gmail.com" }, - "record": { - "A": [ - "193.187.255.169" - ] + "records": { + "A": ["193.187.255.169"] } } diff --git a/domains/needrose.json b/domains/needrose.json index 525238ca6..5913a9148 100644 --- a/domains/needrose.json +++ b/domains/needrose.json @@ -3,7 +3,7 @@ "username": "Needrose", "email": "neeedrose@gmail.com" }, - "record": { + "records": { "A": ["155.248.226.206"] } } diff --git a/domains/neel.json b/domains/neel.json new file mode 100644 index 000000000..d581dca52 --- /dev/null +++ b/domains/neel.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website of Neel Mishra", + "repo": "https://github.com/Neel-07/my_portfolio", + "owner": { + "username": "neelmishra", + "email": "neelmishra9125@gmail.com" + }, + "records": { + "CNAME": "neelmishra.vercel.app" + } +} diff --git a/domains/neeraj-2401.json b/domains/neeraj-2401.json index c4bc60eb9..3113892aa 100644 --- a/domains/neeraj-2401.json +++ b/domains/neeraj-2401.json @@ -4,7 +4,7 @@ "username": "NeeRaj-2401", "email": "niraj.yadav@slrtce.in" }, - "record": { + "records": { "CNAME": "neeraj-2401.github.io" } } diff --git a/domains/neerav.json b/domains/neerav.json index b20172406..ad70a5596 100644 --- a/domains/neerav.json +++ b/domains/neerav.json @@ -1,10 +1,9 @@ { "owner": { "username": "BadPotato1007", - "discord": "1176835313356767312", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h5lVmEVgNjSJED4_lCqP0uq8U6PetLRaVdYIsrVbDslLhV0Nmvkdj9AbxxT1TGf3ZGwFSSJe-0zei3AeiQ-opshMYrw_DRlx4f686t-AhNXj9Kmf2-0wQxjsmUvwXNsmNfgwxjXtD5gHv8jLOF1oh_ZV9rbjCmWUejPLX6a0RvRk-hH9ACxziJ3qzdY88SdlXcqA6KqxhD0ZDyWt_NAXk-DIDv-oOoeX-MM9ZW1f89HDXvQPZ3uqOmcdzJtoCBGGAt4nY9C0fkK0YGSp_lXe_r6G7gjhNfwEH_BQ997SpDpibdH3ensKeGf6DOufxaN1FK8L0KCf-XpLXELc9c2qUw.bEd83RTDvTOZ19pDJ6YrTA.hj0EVK9MR1_ygJEtgrhofZrU37pBoHu-zXlTGQSG0DuRAi1VQC3jOP6QrMJZi7zWZbce2Y83elAYzq_I4W0KrshAwfAUlcr6DRTb5Hl4JdU.RFRNhW4hhRsoe9Mw-F-fwg" + "discord": "1176835313356767312" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/neeraz.json b/domains/neeraz.json index 884ad0480..90eaec18f 100644 --- a/domains/neeraz.json +++ b/domains/neeraz.json @@ -3,7 +3,7 @@ "username": "techneeraz", "email": "tech.neeraz@groupiig.com" }, - "record": { + "records": { "A": ["103.147.226.20"] } } diff --git a/domains/neeyl.json b/domains/neeyl.json index cb87d479f..384632699 100644 --- a/domains/neeyl.json +++ b/domains/neeyl.json @@ -5,7 +5,7 @@ "username": "subhramit", "email": "subhramit.bb@live.in" }, - "record": { + "records": { "CNAME": "subhramit.github.io" } } diff --git a/domains/nef.json b/domains/nef.json new file mode 100644 index 000000000..7b0f6f032 --- /dev/null +++ b/domains/nef.json @@ -0,0 +1,11 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/nefter/eleventy-netlify-boilerplate", + "owner": { + "username": "nefter", + "email": "therealnefter@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/neil.json b/domains/neil.json new file mode 100644 index 000000000..461b4c09a --- /dev/null +++ b/domains/neil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nxl22", + "email": "lien.dev.22@gmail.com" + }, + "records": { + "CNAME": "nxl22.github.io" + } +} diff --git a/domains/nek0zyx.json b/domains/nek0zyx.json new file mode 100644 index 000000000..c5c1de27f --- /dev/null +++ b/domains/nek0zyx.json @@ -0,0 +1,11 @@ +{ + "description": "Serving my website fr fr", + "repo": "https://github.com/nek0zyx/nek0zyx.github.io", + "owner": { + "username": "nek0zyx", + "email": "nek0zyx@costmiku.space" + }, + "records": { + "CNAME": "nek0zyx.github.io" + } +} diff --git a/domains/nekaoumike.json b/domains/nekaoumike.json index 941b10a4c..339a16e5c 100644 --- a/domains/nekaoumike.json +++ b/domains/nekaoumike.json @@ -3,7 +3,7 @@ "username": "NekaouMike", "email": "nekaoumike@gmail.com" }, - "record": { + "records": { "CNAME": "nekaoumike.dev" } } diff --git a/domains/neki.json b/domains/neki.json index 396f552d4..7fbcdea6e 100644 --- a/domains/neki.json +++ b/domains/neki.json @@ -4,13 +4,8 @@ "username": "PinkLittleKitty", "email": "santyfisela@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/nekitori17.json b/domains/nekitori17.json index 7cc6487cf..adbdd3dfb 100644 --- a/domains/nekitori17.json +++ b/domains/nekitori17.json @@ -7,7 +7,7 @@ "twitter": "nekitori17", "discord": "nekitorihakari" }, - "record": { + "records": { "CNAME": "nekitori17.github.io" } } diff --git a/domains/neko7sora.json b/domains/neko7sora.json index 7a49bb638..f3b3bb282 100644 --- a/domains/neko7sora.json +++ b/domains/neko7sora.json @@ -5,7 +5,7 @@ "twitter": "Neko7sora", "keybase": "neko7sora" }, - "record": { + "records": { "URL": "https://neko7sora.github.io" } } diff --git a/domains/nekoibot.json b/domains/nekoibot.json index 86811be7c..86fd665d5 100644 --- a/domains/nekoibot.json +++ b/domains/nekoibot.json @@ -3,7 +3,7 @@ "username": "DomathID", "email": "domath69@gmail.com" }, - "record": { + "records": { "CNAME": "domathid.github.io" } } diff --git a/domains/nekomiyasorato.json b/domains/nekomiyasorato.json index 2eb28ca8b..dbd7b9fc2 100644 --- a/domains/nekomiyasorato.json +++ b/domains/nekomiyasorato.json @@ -5,7 +5,7 @@ "twitter": "Neko7sora", "keybase": "neko7sora" }, - "record": { + "records": { "URL": "https://neko7sora.github.io" } } diff --git a/domains/nekomyaa.json b/domains/nekomyaa.json new file mode 100644 index 000000000..5e206c236 --- /dev/null +++ b/domains/nekomyaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lolinekord", + "email": "contact@lolineko3.net" + }, + "records": { + "URL": "https://github.com/lolinekord" + } +} diff --git a/domains/nelson.json b/domains/nelson.json index 1588dc0c2..94a7ea391 100644 --- a/domains/nelson.json +++ b/domains/nelson.json @@ -3,7 +3,7 @@ "username": "nelsonGX", "email": "hi@nelsongx.com" }, - "record": { + "records": { "URL": "https://nelsongx.com" } } diff --git a/domains/nemoralis.json b/domains/nemoralis.json new file mode 100644 index 000000000..c8c986440 --- /dev/null +++ b/domains/nemoralis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nemoralis", + "email": "nerim4n@pm.me" + }, + "records": { + "CNAME": "neriman-me.pages.dev" + } +} diff --git a/domains/nengsriaryati.json b/domains/nengsriaryati.json index ef1a64bd0..4501a3101 100644 --- a/domains/nengsriaryati.json +++ b/domains/nengsriaryati.json @@ -3,7 +3,7 @@ "username": "Hillzacky", "email": "Hilm4nsyah@gmail.com" }, - "record": { + "records": { "CNAME": "nengsriaryati.github.io" } } diff --git a/domains/neo.json b/domains/neo.json index ac048537a..5c24bd60e 100644 --- a/domains/neo.json +++ b/domains/neo.json @@ -3,7 +3,7 @@ "username": "phantonducthang", "email": "phantonducthang@hotmail.com" }, - "record": { + "records": { "CNAME": "64342fb9f8-hosting.gitbook.io" } } diff --git a/domains/neoapps.json b/domains/neoapps.json index d5f3eea2a..3db21fcb8 100644 --- a/domains/neoapps.json +++ b/domains/neoapps.json @@ -4,7 +4,7 @@ "username": "neoapps-dev", "email": "asd22.info@gmail.com" }, - "record": { + "records": { "URL": "https://neoapps-dev.github.io/web" } } diff --git a/domains/neon.json b/domains/neon.json index cf6370585..e52e1d09f 100644 --- a/domains/neon.json +++ b/domains/neon.json @@ -7,14 +7,9 @@ "twitter": "NeonTheNerd", "email": "goodboyneon03@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/neranjana.json b/domains/neranjana.json index 55a2b16dd..777d150ea 100644 --- a/domains/neranjana.json +++ b/domains/neranjana.json @@ -5,7 +5,7 @@ "username": "NandiyaLive", "email": "neranjanaprsd@gmail.com" }, - "record": { + "records": { "URL": "https://neranjana.tk" } } diff --git a/domains/nerd.json b/domains/nerd.json index 46ecb6cf5..cdba3aa1c 100644 --- a/domains/nerd.json +++ b/domains/nerd.json @@ -5,7 +5,7 @@ "username": "xkcdnerd", "email": "evanwang330@gmail.com" }, - "record": { + "records": { "CNAME": "xkcdnerd.github.io" } } diff --git a/domains/neria.json b/domains/neria.json index b069aff5c..67df633ad 100644 --- a/domains/neria.json +++ b/domains/neria.json @@ -3,7 +3,7 @@ "username": "neriat", "email": "me@neria.dev" }, - "record": { + "records": { "CNAME": "neria.dev" } } diff --git a/domains/nes.json b/domains/nes.json index 4908f2b78..5d1381ed7 100644 --- a/domains/nes.json +++ b/domains/nes.json @@ -5,7 +5,7 @@ "username": "undefinedDarkness", "discord": "Dark NES#4901" }, - "record": { + "records": { "CNAME": "undefineddarkness.github.io" } } diff --git a/domains/neslinesli93.json b/domains/neslinesli93.json index 3aa76243d..19a35c2a5 100644 --- a/domains/neslinesli93.json +++ b/domains/neslinesli93.json @@ -3,7 +3,7 @@ "username": "neslinesli93", "email": "p.tommy93@gmail.com" }, - "record": { + "records": { "CNAME": "tommasopifferi.com" } } diff --git a/domains/nestornahuel.json b/domains/nestornahuel.json new file mode 100644 index 000000000..eead30433 --- /dev/null +++ b/domains/nestornahuel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NestorNahuel", + "email": "nahuel6195@gmail.com" + }, + "records": { + "CNAME": "portfolio-steel-seven-72.vercel.app" + } +} diff --git a/domains/netsterx.json b/domains/netsterx.json index 62ab8446d..dd7b8f0ce 100644 --- a/domains/netsterx.json +++ b/domains/netsterx.json @@ -3,7 +3,7 @@ "username": "netsterX", "email": "mb3202879@gmail.com" }, - "record": { + "records": { "CNAME": "netsterx.github.io" } } diff --git a/domains/nettles.json b/domains/nettles.json index aff4a0239..2edea1734 100644 --- a/domains/nettles.json +++ b/domains/nettles.json @@ -6,7 +6,7 @@ "email": "nettles.dev@gmail.com", "twitter": "rickroll" }, - "record": { + "records": { "CNAME": "nettlees.github.io" } } diff --git a/domains/neven.json b/domains/neven.json index aba4f1040..b70140e65 100644 --- a/domains/neven.json +++ b/domains/neven.json @@ -5,7 +5,7 @@ "username": "nevenxr", "discord": "Neven#3985" }, - "record": { + "records": { "CNAME": "nevenxr.github.io" } } diff --git a/domains/neville.json b/domains/neville.json index ead646d7d..519e1c23e 100644 --- a/domains/neville.json +++ b/domains/neville.json @@ -5,7 +5,7 @@ "username": "Neville03", "email": "zuweyrh1@gmail.com" }, - "record": { + "records": { "CNAME": "neville03.github.io" } } diff --git a/domains/new.sx9.json b/domains/new.sx9.json index 5cdcbf659..ee6be3583 100644 --- a/domains/new.sx9.json +++ b/domains/new.sx9.json @@ -3,7 +3,7 @@ "username": "SX-9", "email": "hello@mail.sx9.is-a.dev" }, - "record": { + "records": { "CNAME": "sx-9.github.io" } } diff --git a/domains/new.vornexx.json b/domains/new.vornexx.json index a85ee32c5..8e7e5a2eb 100644 --- a/domains/new.vornexx.json +++ b/domains/new.vornexx.json @@ -3,7 +3,7 @@ "username": "vornexx", "email": "ajay.ramnath8812@gmail.com" }, - "record": { + "records": { "CNAME": "newvornexx.pages.dev" } } diff --git a/domains/newkernel.json b/domains/newkernel.json index 76295bfe0..208080750 100644 --- a/domains/newkernel.json +++ b/domains/newkernel.json @@ -5,7 +5,7 @@ "username": "KernelNew", "email": "new.kernel@outlook.com" }, - "record": { + "records": { "CNAME": "kernelnew.github.io" } } diff --git a/domains/newpk.json b/domains/newpk.json index 2371d4f36..c3462c7e4 100644 --- a/domains/newpk.json +++ b/domains/newpk.json @@ -3,7 +3,7 @@ "username": "newpkorn", "email": "pakorn.soikham@gmail.com" }, - "record": { - "CNAME": "newpkorn.github.io" + "records": { + "CNAME": "newpk.netlify.app" } } diff --git a/domains/newtun-code-cheat-sheet.json b/domains/newtun-code-cheat-sheet.json new file mode 100644 index 000000000..39db50770 --- /dev/null +++ b/domains/newtun-code-cheat-sheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "records": { + "CNAME": "code-cheat-sheet.vercel.app" + } +} diff --git a/domains/newtun.json b/domains/newtun.json new file mode 100644 index 000000000..86906a510 --- /dev/null +++ b/domains/newtun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "records": { + "CNAME": "portfolio-nine-cyan-53.vercel.app" + } +} diff --git a/domains/newyear.trung.json b/domains/newyear.trung.json index 2081b19e3..78cf2e119 100644 --- a/domains/newyear.trung.json +++ b/domains/newyear.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "CNAME": "lunar-newyr-countdown.pages.dev" } } diff --git a/domains/nexfilms.json b/domains/nexfilms.json index 588c0f5c0..03feed3dc 100644 --- a/domains/nexfilms.json +++ b/domains/nexfilms.json @@ -3,7 +3,7 @@ "username": "nexos20levrai", "discord": "610847328680673302" }, - "record": { + "records": { "A": ["5.181.187.182"] } } diff --git a/domains/nexflix.json b/domains/nexflix.json index 588c0f5c0..03feed3dc 100644 --- a/domains/nexflix.json +++ b/domains/nexflix.json @@ -3,7 +3,7 @@ "username": "nexos20levrai", "discord": "610847328680673302" }, - "record": { + "records": { "A": ["5.181.187.182"] } } diff --git a/domains/nexos.json b/domains/nexos.json index 5efda0e8e..aaa7a49f9 100644 --- a/domains/nexos.json +++ b/domains/nexos.json @@ -3,7 +3,7 @@ "username": "nexos20levrai", "email": "nexos.dons@gmail.com" }, - "record": { + "records": { "A": ["78.47.213.108"] } } diff --git a/domains/nexproxymanager.json b/domains/nexproxymanager.json index 588c0f5c0..03feed3dc 100644 --- a/domains/nexproxymanager.json +++ b/domains/nexproxymanager.json @@ -3,7 +3,7 @@ "username": "nexos20levrai", "discord": "610847328680673302" }, - "record": { + "records": { "A": ["5.181.187.182"] } } diff --git a/domains/nextcloud.vi0leta.json b/domains/nextcloud.vi0leta.json index def51632a..5866567c0 100644 --- a/domains/nextcloud.vi0leta.json +++ b/domains/nextcloud.vi0leta.json @@ -3,7 +3,7 @@ "username": "vi0letadev", "email": "vi0leta@riseup.net" }, - "record": { + "records": { "A": ["37.27.4.76"] } } diff --git a/domains/nexus.json b/domains/nexus.json index d16440a8a..7d1f102c6 100644 --- a/domains/nexus.json +++ b/domains/nexus.json @@ -5,7 +5,7 @@ "username": "Nexus", "email": "uvraysxc@gmail.com" }, - "record": { + "records": { "CNAME": "nexzon.github.io" } } diff --git a/domains/nezarec.json b/domains/nezarec.json index 8eb7b4ec4..5992f1933 100644 --- a/domains/nezarec.json +++ b/domains/nezarec.json @@ -3,7 +3,7 @@ "username": "NezarecSR", "email": "anjuangyu@gmail.com" }, - "record": { + "records": { "URL": "https://nezhome.vercel.app/" } } diff --git a/domains/nfc.json b/domains/nfc.json index c56d123fe..0ef67ba7e 100644 --- a/domains/nfc.json +++ b/domains/nfc.json @@ -3,7 +3,7 @@ "username": "Tomgxz", "email": "tomgxz138@gmail.com" }, - "record": { + "records": { "CNAME": "is3193tx.up.railway.app" } } diff --git a/domains/ngocjohn.json b/domains/ngocjohn.json index c597a80ac..e838ff168 100644 --- a/domains/ngocjohn.json +++ b/domains/ngocjohn.json @@ -6,7 +6,7 @@ "email": "ngocjohn@me.com", "twitter": "emkay3000" }, - "record": { + "records": { "CNAME": "ngocjohn.github.io" } } diff --git a/domains/ngockhuong.json b/domains/ngockhuong.json new file mode 100644 index 000000000..f506d3001 --- /dev/null +++ b/domains/ngockhuong.json @@ -0,0 +1,20 @@ +{ + "description": "ngockhuong.is-a.dev : This is my personal notebook", + "owner": { + "username": "lamngockhuong", + "email": "me@ngockhuong.com" + }, + "records": { + "URL": "https://dev.ngockhuong.com" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/lamngockhuong", + "/x": "https://x.com/lamngockhuong", + "/fb": "https://facebook.com/lamngockhuong", + "/linkedin": "https://linkedin.com/in/lamngockhuong", + "/viblo": "https://viblo.asia/u/lamngockhuong" + }, + "redirect_paths": true + } +} diff --git a/domains/ngocphung.json b/domains/ngocphung.json new file mode 100644 index 000000000..efde0a9ca --- /dev/null +++ b/domains/ngocphung.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "nguyenngocphung2000" + }, + "records": { + "CNAME": "nguyenngocphung2000.github.io" + } +} diff --git a/domains/ngompoweredbypoi.json b/domains/ngompoweredbypoi.json new file mode 100644 index 000000000..9847134fa --- /dev/null +++ b/domains/ngompoweredbypoi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ngompoweredbypoi", + "discord": "ngompoweredbypoi" + }, + "records": { + "CNAME": "ngompoweredbypoi.github.io" + } +} diff --git a/domains/ngoutam.json b/domains/ngoutam.json new file mode 100644 index 000000000..bab7d99ac --- /dev/null +++ b/domains/ngoutam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Goutam-04", + "email": "goutamnayak2804+github1@gmail.com" + }, + "records": { + "CNAME": "goutam-porfolio.vercel.app" + } +} diff --git a/domains/ngqkhai.json b/domains/ngqkhai.json index 45da83466..6c8c4759b 100644 --- a/domains/ngqkhai.json +++ b/domains/ngqkhai.json @@ -1,11 +1,10 @@ { - "description": "Documentation website for is-a.dev", - "repo": "", - "owner": { - "username": "ngqkhai", - "email": "nguyenquangkhai2509@gmail.com" - }, - "record": { - "URL": "https://github.com/ngqkhai" - } + "description": "Documentation website for is-a.dev", + "owner": { + "username": "ngqkhai", + "email": "nguyenquangkhai2509@gmail.com" + }, + "records": { + "URL": "https://github.com/ngqkhai" + } } diff --git a/domains/ngt.json b/domains/ngt.json index 3b12d7731..09f397912 100644 --- a/domains/ngt.json +++ b/domains/ngt.json @@ -3,7 +3,7 @@ "username": "7ngt", "email": "contatofthales@gmail.com" }, - "record": { + "records": { "URL": "https://discord.com/users/906639702558375986" } } diff --git a/domains/nguyen-phuong-nam.json b/domains/nguyen-phuong-nam.json new file mode 100644 index 000000000..592746c8c --- /dev/null +++ b/domains/nguyen-phuong-nam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NBlue", + "email": "nam.np194336@gmail.com" + }, + "records": { + "CNAME": "protofilo-beta.vercel.app" + } +} diff --git a/domains/nguyenkimduy.json b/domains/nguyenkimduy.json new file mode 100644 index 000000000..220aaa31b --- /dev/null +++ b/domains/nguyenkimduy.json @@ -0,0 +1,20 @@ +{ + "description": "nguyenkimduy.is-a.dev : This is my personal notebook", + "owner": { + "username": "nguyenkimduy180697", + "email": "nguyenkimduy180697@gmail.com" + }, + "records": { + "URL": "https://nguyenkimduy.com/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/nguyenkimduy180697", + "/fb": "https://facebook.com/nguyenkimduy180697", + "/instagram": "https://instagram.com/nguyenkimduy180697/", + "/linkedin": "https://linkedin.com/in/nguyenkimduy180697", + "/viblo": "https://viblo.asia/u/nguyenkimduy180697" + }, + "redirect_paths": true + } +} diff --git a/domains/nguyenminhtuan.json b/domains/nguyenminhtuan.json new file mode 100644 index 000000000..25295dd98 --- /dev/null +++ b/domains/nguyenminhtuan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "records": { + "CNAME": "profile-sigma-wine.vercel.app" + } +} diff --git a/domains/ngvgb.json b/domains/ngvgb.json index 964709d3b..f7849aa45 100644 --- a/domains/ngvgb.json +++ b/domains/ngvgb.json @@ -1,10 +1,9 @@ { "owner": { "username": "NgVGB-Workspace", - "discord": "905671220333264966", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PRdSIXpK3bfSVItlR4zG6y6YC0KwWF8fALLRJoKYHEiMUwTFQvi48kgvzveCVwUBuYJWQBMCYWBVstMTtR32JBnpQFMNVUnh3m3sFWKIiuydQL7JPzimMLZQ9WvTtEl3AUF-5DZaH_uX4_2CSxs-c0JfEG7n0vnjKRdOZ-31wtitEAvUolUiKcwoQKX6clvSiNN3l9pSVhP3ufyt9JN_caHya1xQrk8X9Ijaf9EYctXZFwXaf4KUJ44QcJZ1erfKh6FykNUtkkO0GV4V1XZlYZS8TaETta5k7GR3fJi_V9MKSCtiR5dG15KARX485akLI5ZYqqcRp7fH2xaLEOQCCQ.3pFuR0GZ8XBQGaFFIpFv9w.xuvztR8HsOO6zzPNpo_8sDQJimmQj79swKQqYi5blxu7Cpmdf_sLVw0SNmCCOVBPJJ-tyexWUEA7iXk36cDiB_iF9mkdb14Mwegb-0zFEQg.fDszk-8TV4Idc_CIIKOa_A" + "discord": "905671220333264966" }, - "record": { + "records": { "CNAME": "ngvgb-workspace.github.io" } } diff --git a/domains/nh.json b/domains/nh.json deleted file mode 100644 index 9a5666540..000000000 --- a/domains/nh.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "nonxistnt", - "email": "khtyiscooler@gmail.com" - }, - "record": { - "CNAME": "nonxistnt.github.io" - } -} diff --git a/domains/nhat.json b/domains/nhat.json index 7b20fb435..fb6a00200 100644 --- a/domains/nhat.json +++ b/domains/nhat.json @@ -3,7 +3,7 @@ "username": "ductoanvo", "email": "toan.ducvo@icloud.com" }, - "record": { + "records": { "URL": "https://www.facebook.com/profile.php?id=100016726364383" } } diff --git a/domains/nhatphan.json b/domains/nhatphan.json index 6a3043e6a..61878a8b7 100644 --- a/domains/nhatphan.json +++ b/domains/nhatphan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "minaphan2815", - "email": "nhatphan2815@gmail.com" - }, - "record": { - "CNAME": "minaphan2815.github.io" - } + "owner": { + "username": "minaphan2815", + "email": "nhatphan2815@gmail.com" + }, + "records": { + "CNAME": "minaphan2815.github.io" + } } diff --git a/domains/nhatphong.json b/domains/nhatphong.json index 4cee5d6b1..bbbbcae66 100644 --- a/domains/nhatphong.json +++ b/domains/nhatphong.json @@ -4,7 +4,7 @@ "email": "dungnqFX28972@funix.edu.vn", "discord": "1050395028452806714" }, - "record": { + "records": { "CNAME": "nhatphongsite.pages.dev" } } diff --git a/domains/nhavy.json b/domains/nhavy.json new file mode 100644 index 000000000..a887cf179 --- /dev/null +++ b/domains/nhavy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "VzTong" + }, + "records": { + "CNAME": "vztong.github.io" + } +} diff --git a/domains/nhemgomia.json b/domains/nhemgomia.json index 08b8b8bcf..68ac05f3a 100644 --- a/domains/nhemgomia.json +++ b/domains/nhemgomia.json @@ -5,7 +5,7 @@ "username": "nhemgomia", "discord": "nhemdgaf" }, - "record": { + "records": { "CNAME": "nhemgomia.github.io" } } diff --git a/domains/nhim411.json b/domains/nhim411.json new file mode 100644 index 000000000..2daab0e99 --- /dev/null +++ b/domains/nhim411.json @@ -0,0 +1,11 @@ +{ + "description": "Le Hoai Nam's website", + "repo": "https://github.com/nhim411/nhim411.github.io", + "owner": { + "username": "nhim411", + "email": "lehoainam1998@gmail.com" + }, + "records": { + "CNAME": "nhim411.github.io" + } +} diff --git a/domains/nicatdcw.json b/domains/nicatdcw.json index e50c7dd9f..ff259e7ca 100644 --- a/domains/nicatdcw.json +++ b/domains/nicatdcw.json @@ -5,7 +5,7 @@ "username": "Cheeini", "email": "kurtbot60@gmail.com" }, - "record": { + "records": { "CNAME": "nicat-dcw.github.io" } } diff --git a/domains/niceeli.json b/domains/niceeli.json index df6a18214..2a0adaf60 100644 --- a/domains/niceeli.json +++ b/domains/niceeli.json @@ -3,7 +3,7 @@ "username": "niceEli", "email": "EliCardoso2009@gmail.com" }, - "record": { + "records": { "CNAME": "niceeli.github.io" } } diff --git a/domains/nicesapien.json b/domains/nicesapien.json index 6d36c1cdf..6cf5aed09 100644 --- a/domains/nicesapien.json +++ b/domains/nicesapien.json @@ -6,7 +6,7 @@ "email": "nicesapien@duck.com", "twitter": "nicesapien" }, - "record": { + "records": { "CNAME": "portfolio-6dp.pages.dev" } } diff --git a/domains/nicetodayweather.json b/domains/nicetodayweather.json new file mode 100644 index 000000000..73192c562 --- /dev/null +++ b/domains/nicetodayweather.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mmhann18491", + "email": "myominhan18491@gmail.com" + }, + "records": { + "CNAME": "nice-today-weather.web.app" + } +} diff --git a/domains/nick.json b/domains/nick.json new file mode 100644 index 000000000..da8e18d76 --- /dev/null +++ b/domains/nick.json @@ -0,0 +1,11 @@ +{ + "description": "nick.is-a.dev -> nicholasalfonso.com", + "owner": { + "username": "PrinceBunBun981", + "email": "me@nick.cool", + "discord": "nickwoah" + }, + "records": { + "URL": "https://nicholasalfonso.com" + } +} diff --git a/domains/nickibreeki.json b/domains/nickibreeki.json new file mode 100644 index 000000000..1d77899dc --- /dev/null +++ b/domains/nickibreeki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "n1ckibreeki", + "email": "nickibreeki@outlook.com" + }, + "records": { + "CNAME": "nickibreeki.pages.dev" + } +} diff --git a/domains/niclqs.json b/domains/niclqs.json index 5aa8d348b..025ec97ba 100644 --- a/domains/niclqs.json +++ b/domains/niclqs.json @@ -1,9 +1,8 @@ { "description": "niclqs.is-a.dev --> niclqs.dev", - "record": { + "records": { "URL": "https://niclqs.dev" }, - "repo": "https://github.com/niclqsger", "owner": { "discord": "niclqs", "email": "discord@push-den-weg.de", diff --git a/domains/nico.json b/domains/nico.json index 7ffadfca3..01fa58410 100644 --- a/domains/nico.json +++ b/domains/nico.json @@ -6,7 +6,7 @@ "email": "nicodreyer7@icloud.com", "discord": "nicosnico#7674" }, - "record": { + "records": { "CNAME": "nicogaming77.github.io" } } diff --git a/domains/nicojsuarez.json b/domains/nicojsuarez.json new file mode 100644 index 000000000..f42b4ba6b --- /dev/null +++ b/domains/nicojsuarez.json @@ -0,0 +1,11 @@ +{ + "description": "Personal use", + "repo": "https://github.com/NicoJSuarez2/PersonalPage", + "owner": { + "username": "nicojsuarez2", + "email": "javinsurez@gmail.com" + }, + "records": { + "CNAME": "Nicojsuarez2.github.io" + } +} diff --git a/domains/nicol.json b/domains/nicol.json index 383f15d04..de509b29d 100644 --- a/domains/nicol.json +++ b/domains/nicol.json @@ -4,7 +4,7 @@ "owner": { "username": "Linadevv" }, - "record": { + "records": { "CNAME": "linadevv.github.io" } } diff --git a/domains/nicoladen.json b/domains/nicoladen.json index 0911814b2..8d6a91fc0 100644 --- a/domains/nicoladen.json +++ b/domains/nicoladen.json @@ -3,7 +3,7 @@ "username": "nicoladen05", "email": "nicolashartmanntaba@gmail.com" }, - "record": { + "records": { "CNAME": "nicoladen05.github.io" } } diff --git a/domains/nicolas.json b/domains/nicolas.json new file mode 100644 index 000000000..36099651a --- /dev/null +++ b/domains/nicolas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "niicojs", + "discord": ".niico." + }, + "records": { + "CNAME": "home-is-a-dev.vercel.app" + } +} diff --git a/domains/nicollas.json b/domains/nicollas.json new file mode 100644 index 000000000..bd182b37e --- /dev/null +++ b/domains/nicollas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nicollaspetrelli", + "discord": "233677267975274496" + }, + "records": { + "CNAME": "nicollas.dev" + } +} diff --git a/domains/nidhis-patel.json b/domains/nidhis-patel.json index 1465bff5b..f8b6bf1c2 100644 --- a/domains/nidhis-patel.json +++ b/domains/nidhis-patel.json @@ -4,7 +4,7 @@ "owner": { "username": "nidhis-patel" }, - "record": { + "records": { "URL": "https://nidhis-patel.github.io" } } diff --git a/domains/nidun.json b/domains/nidun.json index 135b2ee93..d1b913f43 100644 --- a/domains/nidun.json +++ b/domains/nidun.json @@ -5,7 +5,7 @@ "username": "nldun", "email": "rezkyto@gmail.com" }, - "record": { + "records": { "CNAME": "nldun.github.io" } } diff --git a/domains/nietbeer.json b/domains/nietbeer.json new file mode 100644 index 000000000..45f661339 --- /dev/null +++ b/domains/nietbeer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VulcanoSoftware", + "discord": "814891541205876767" + }, + "records": { + "CNAME": "nietbeer.pages.dev" + } +} diff --git a/domains/nifle.json b/domains/nifle.json index e2459a572..b05cea700 100644 --- a/domains/nifle.json +++ b/domains/nifle.json @@ -1,13 +1,9 @@ { - "owner": { - "username": "Nifle-CGE", - "email": "", - "discord": "553939229475078154", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRTs07oBPtm7QihIkDqo1f3eBQwtYmpzZZYebo3UsxrJ9gpmPnY42WdO-H0r8XRAwYiwzZjZ8GnmRrG2xwz_8dw49VD0UvvWyJKTR7SSN1XxznSkbGJ3wthb384seNE_Fhg-E6Q6qV9vW8B1U6GD39blKsURHcgpTrSa-qopwXDeFctAo-RcxbmFwr-Mw0Cwr9ia3L1wnqvOSjQbU0a92oVv6293QbSvqgupXkS1ttXoBR9rpDPp8tH9oIXbCK4AhVTKowgIYAYh2iZT41nlkFKeus10yRKw5GqyokBXBdA70qKnU3lCd9VFZ4Eq4DxbSoMNBqk8FADig2MtA5RBFg.CqfMnrP60ibdRwfM4yUB8A.HZl3zu19tbnEz2j4hlejxUJfoEkCk0qsLeHlqLzc1-qXAnH1984_R8joN9l3WWA0Jgr13m8qr-GQsAEcjjdiog.vUXuNT3B9rjoE606ZfrRRA" - }, - - "record": { - "A": ["172.234.178.155"] - } - } - \ No newline at end of file + "owner": { + "username": "Nifle-CGE", + "discord": "553939229475078154" + }, + "records": { + "A": ["172.234.178.155"] + } +} diff --git a/domains/nightmaregods.json b/domains/nightmaregods.json index bef349368..99c35221e 100644 --- a/domains/nightmaregods.json +++ b/domains/nightmaregods.json @@ -5,7 +5,7 @@ "username": "nightmaregodss", "discord": "Demon Emperor NightmareGods#0001" }, - "record": { + "records": { "CNAME": "nightmaregodss.github.io" } } diff --git a/domains/nightsfall.json b/domains/nightsfall.json index b523cfbb3..2d4b02d3f 100644 --- a/domains/nightsfall.json +++ b/domains/nightsfall.json @@ -3,7 +3,7 @@ "username": "NightsFaII", "email": "niqhtsfall2@gmail.com" }, - "record": { + "records": { "CNAME": "nightsfaii.github.io" } } diff --git a/domains/nihalkrishna.json b/domains/nihalkrishna.json new file mode 100644 index 000000000..168631dea --- /dev/null +++ b/domains/nihalkrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nkverified", + "email": "nkverifiedyt@gmail.com" + }, + "records": { + "CNAME": "nkverified.github.io" + } +} diff --git a/domains/nik.json b/domains/nik.json index fae6c2cf1..e839638f1 100644 --- a/domains/nik.json +++ b/domains/nik.json @@ -4,7 +4,7 @@ "email": "nikhilsoniya123@gmail.com", "discord": "nikxso#0000" }, - "record": { + "records": { "CNAME": "myweb-266f0.web.app" } } diff --git a/domains/nikaxe.json b/domains/nikaxe.json index b31efedb9..f85c9c3e9 100644 --- a/domains/nikaxe.json +++ b/domains/nikaxe.json @@ -5,7 +5,7 @@ "username": "Nikaxe-dev", "email": "iamnikaxing@gmail.com" }, - "record": { + "records": { "CNAME": "nikaxe-dev.github.io" } } diff --git a/domains/nikenhapsari.json b/domains/nikenhapsari.json index 898df4a5e..79ecc4bff 100644 --- a/domains/nikenhapsari.json +++ b/domains/nikenhapsari.json @@ -3,7 +3,7 @@ "username": "nikenhpsr", "email": "hpsri.niken@gmail.com" }, - "record": { + "records": { "CNAME": "my-web-7nu.pages.dev" } } diff --git a/domains/nikhil.json b/domains/nikhil.json index b32f8630d..2ac4f9d0e 100644 --- a/domains/nikhil.json +++ b/domains/nikhil.json @@ -5,7 +5,7 @@ "username": "nikhils4", "email": "nikhilsingh498@gmail.com" }, - "record": { + "records": { "CNAME": "nikhils4.github.io" } } diff --git a/domains/nikhilji.json b/domains/nikhilji.json new file mode 100644 index 000000000..57572de60 --- /dev/null +++ b/domains/nikhilji.json @@ -0,0 +1,11 @@ +{ + "description": "Nikhil Ji ki Website", + "repo": "https://github.com/cityji/cityji.github.io", + "owner": { + "username": "cityji", + "email": "mail.tiwarinikhil+domainIsADev@googlemail.com" + }, + "records": { + "CNAME": "cityji.github.io" + } +} diff --git a/domains/niki-tiwari.json b/domains/niki-tiwari.json index a88148eed..92b36a036 100644 --- a/domains/niki-tiwari.json +++ b/domains/niki-tiwari.json @@ -4,7 +4,7 @@ "owner": { "username": "niki-tiwari" }, - "record": { + "records": { "CNAME": "niki-tiwari.github.io" } } diff --git a/domains/nikita.json b/domains/nikita.json index f1fca510c..00613cf4a 100644 --- a/domains/nikita.json +++ b/domains/nikita.json @@ -3,7 +3,7 @@ "username": "nikitacontreras", "email": "elfantoche.tv@gmail.com" }, - "record": { + "records": { "CNAME": "nikitacontreras.github.io" } } diff --git a/domains/nikity.json b/domains/nikity.json new file mode 100644 index 000000000..434fa695d --- /dev/null +++ b/domains/nikity.json @@ -0,0 +1,10 @@ +{ + "description": "Subdomain woohoo", + "owner": { + "username": "Nikityyy", + "email": "bergernikita1807@gmail.com" + }, + "records": { + "CNAME": "nikityyy.github.io" + } +} diff --git a/domains/nikk.json b/domains/nikk.json index d04237017..118b8f762 100644 --- a/domains/nikk.json +++ b/domains/nikk.json @@ -4,7 +4,7 @@ "username": "bonitoflakez", "email": "nikhildhiman9050@gmail.com" }, - "record": { + "records": { "CNAME": "bonitoflakez.github.io" } } diff --git a/domains/niklas.json b/domains/niklas.json index 8fb6f7b8d..50565b2e8 100644 --- a/domains/niklas.json +++ b/domains/niklas.json @@ -5,7 +5,7 @@ "email": "niklas@niklas.tech", "twitter": "nklsdev" }, - "record": { + "records": { "URL": "https://niklas.tech" } } diff --git a/domains/niksne.json b/domains/niksne.json index 962a60e0f..7e6414be8 100644 --- a/domains/niksne.json +++ b/domains/niksne.json @@ -3,7 +3,7 @@ "username": "NikSneMC", "email": "contact@niksne.ru" }, - "record": { + "records": { "CNAME": "niksne-ru.pages.dev" } } diff --git a/domains/nikyofficial.json b/domains/nikyofficial.json index 561752de2..3e1e474e8 100644 --- a/domains/nikyofficial.json +++ b/domains/nikyofficial.json @@ -3,7 +3,7 @@ "username": "nikyy2", "email": "anhky581@gmail.com" }, - "record": { + "records": { "CNAME": "nikyy2.github.io" } } diff --git a/domains/nikywelcome.json b/domains/nikywelcome.json index 63ab207d1..651748ced 100644 --- a/domains/nikywelcome.json +++ b/domains/nikywelcome.json @@ -3,7 +3,7 @@ "username": "nikyy2", "email": "anhky581@gmail.com" }, - "record": { + "records": { "CNAME": "nikytap1n.github.io" } } diff --git a/domains/nilashan.json b/domains/nilashan.json index 8fe7bfb3a..46cf249ab 100644 --- a/domains/nilashan.json +++ b/domains/nilashan.json @@ -3,7 +3,7 @@ "username": "N-Nilashan", "email": "informal.nimesh@gmail.com" }, - "record": { + "records": { "URL": "https://n-nilashan.github.io/" } } diff --git a/domains/nileshhaldar98.json b/domains/nileshhaldar98.json index 655b19852..4bd44eb3a 100644 --- a/domains/nileshhaldar98.json +++ b/domains/nileshhaldar98.json @@ -5,7 +5,7 @@ "username": "nileshhaldar98", "email": "nileshhaldar98@gmail.com" }, - "record": { + "records": { "CNAME": "nileshhaldar98.github.io" } } diff --git a/domains/nils.json b/domains/nils.json index 4984fdb72..809283745 100644 --- a/domains/nils.json +++ b/domains/nils.json @@ -4,7 +4,7 @@ "email": "nilsbergmann@noim.io" }, "description": "Use as alias for noim.io (My private webpage)", - "record": { + "records": { "URL": "https://noim.io" } } diff --git a/domains/nimesh.json b/domains/nimesh.json index 5df280a08..4f9d086bf 100644 --- a/domains/nimesh.json +++ b/domains/nimesh.json @@ -3,7 +3,7 @@ "username": "N-Nilashan", "email": "informal.nimesh@gmail.com" }, - "record": { + "records": { "CNAME": "n-nilashan.github.io" } } diff --git a/domains/ninad.json b/domains/ninad.json index 87d55ce0e..31ad6d55d 100644 --- a/domains/ninad.json +++ b/domains/ninad.json @@ -4,8 +4,8 @@ "email": "ninadtechnical@gmail.com" }, "repo": "https://github.com/ninadnaik10/ninadnaik10.github.io", - "record": { - "URL": "https://ninadnaik.xyz", + "records": { + "URL": "https://ninadnaik.me", "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=ninadtechnical+fe@gmail.com" } diff --git a/domains/nine.json b/domains/nine.json index 1187ad82d..02ac803ba 100644 --- a/domains/nine.json +++ b/domains/nine.json @@ -1,19 +1,11 @@ { - "owner": { - "username": "NineLEL", - "email": "notninelel@gmail.com" - }, - "record": { - "A": [ - "76.76.21.21" - ], - "MX": [ - "mx.zoho.eu", - "mx2.zoho.eu", - "mx3.zoho.eu" - ], - "TXT": [ - "zoho-verification=zb50940916.zmverify.zoho.com" - ] - } + "owner": { + "username": "NineLEL", + "email": "notninelel@gmail.com" + }, + "records": { + "A": ["76.76.21.21"], + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], + "TXT": ["zoho-verification=zb50940916.zmverify.zoho.com"] + } } diff --git a/domains/ninjaasmoke.json b/domains/ninjaasmoke.json index 11d683016..42654ae43 100644 --- a/domains/ninjaasmoke.json +++ b/domains/ninjaasmoke.json @@ -5,7 +5,7 @@ "username": "ninjaasmoke", "email": "nithins674@gmail.com" }, - "record": { + "records": { "CNAME": "ninjaasmoke.github.io" } } diff --git a/domains/ninjastrikers.json b/domains/ninjastrikers.json index ca39ff806..594a28b09 100644 --- a/domains/ninjastrikers.json +++ b/domains/ninjastrikers.json @@ -5,7 +5,7 @@ "username": "ninjastrikers", "email": "leonhart@ninjastrikers.net" }, - "record": { + "records": { "URL": "https://ninjastrikers.net" } } diff --git a/domains/ninju.json b/domains/ninju.json index 8b7565492..6600146e0 100644 --- a/domains/ninju.json +++ b/domains/ninju.json @@ -5,7 +5,7 @@ "username": "Ninju69", "email": "inju2692@outlook.com" }, - "record": { + "records": { "CNAME": "ninju69.github.io" } } diff --git a/domains/nino.json b/domains/nino.json index 605b45e51..3e9f66766 100644 --- a/domains/nino.json +++ b/domains/nino.json @@ -7,7 +7,7 @@ "twitter": "_tokisaki_nino", "discord": "tokisakinino" }, - "record": { + "records": { "CNAME": "tokisakininovn.github.io" } } diff --git a/domains/nipul-bhogayat.json b/domains/nipul-bhogayat.json index a75e6e181..e2d7f263c 100644 --- a/domains/nipul-bhogayat.json +++ b/domains/nipul-bhogayat.json @@ -4,7 +4,7 @@ "owner": { "username": "nipul-bhogayat" }, - "record": { + "records": { "CNAME": "nipul-bhogayat.github.io" } } diff --git a/domains/nipuni.json b/domains/nipuni.json new file mode 100644 index 000000000..63b3b0934 --- /dev/null +++ b/domains/nipuni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nipunigamage", + "email": "nipunikanishka255@gmail.com" + }, + "records": { + "CNAME": "nipuni.pages.dev" + } +} diff --git a/domains/niransnarayanan.json b/domains/niransnarayanan.json index b7b20ae8c..6ea164c9a 100644 --- a/domains/niransnarayanan.json +++ b/domains/niransnarayanan.json @@ -4,7 +4,7 @@ "username": "nirans2002", "email": "nirans2002@gmail.com" }, - "record": { + "records": { "CNAME": "niransnarayanan-web.web.app" } } diff --git a/domains/nirav-bhut.json b/domains/nirav-bhut.json index ffcf7a031..d72c1e4ce 100644 --- a/domains/nirav-bhut.json +++ b/domains/nirav-bhut.json @@ -4,7 +4,7 @@ "owner": { "username": "nirav-bhut" }, - "record": { + "records": { "CNAME": "nirav-bhut.github.io" } } diff --git a/domains/nirushan.json b/domains/nirushan.json index 5c2d829d7..da3255fc0 100644 --- a/domains/nirushan.json +++ b/domains/nirushan.json @@ -6,7 +6,7 @@ "email": "nirushan.prabaharan@gmail.com", "twitter": "tpnirushan" }, - "record": { + "records": { "CNAME": "nirushan1.github.io" } } diff --git a/domains/nisarga.json b/domains/nisarga.json index de2dfcef0..83ca98870 100644 --- a/domains/nisarga.json +++ b/domains/nisarga.json @@ -6,7 +6,7 @@ "email": "adhikarynisarga17@gmail.com", "twitter": "ni5arga" }, - "record": { + "records": { "CNAME": "ni5arga.github.io" } } diff --git a/domains/nischay.json b/domains/nischay.json index 46e7b3d77..56d9130a1 100644 --- a/domains/nischay.json +++ b/domains/nischay.json @@ -8,13 +8,8 @@ "snapchat": "nischay_02", "discord": "OGGY#9889" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/nishan-hamza.json b/domains/nishan-hamza.json index cdb996869..0be23d6db 100644 --- a/domains/nishan-hamza.json +++ b/domains/nishan-hamza.json @@ -3,7 +3,7 @@ "username": "NishanHamza", "email": "nishanhamza2@gmail.com" }, - "record": { + "records": { "CNAME": "nishan-hamza.pages.dev" } } diff --git a/domains/nishantattrey.json b/domains/nishantattrey.json index afc7e4038..938db9a5a 100644 --- a/domains/nishantattrey.json +++ b/domains/nishantattrey.json @@ -3,7 +3,7 @@ "username": "nishantattrey07", "email": "nishantattrey07@gmail.com" }, - "record": { + "records": { "CNAME": "nishantattrey07.github.io" } } diff --git a/domains/nishantb.json b/domains/nishantb.json index e0e505444..5c607e967 100644 --- a/domains/nishantb.json +++ b/domains/nishantb.json @@ -3,7 +3,7 @@ "username": "Nishant-Bharwani", "email": "nbtaylor1031@gmail.com" }, - "record": { + "records": { "URL": "https://nishantdev.netlify.app" } } diff --git a/domains/nishith.json b/domains/nishith.json index b10457a21..ea83119e7 100644 --- a/domains/nishith.json +++ b/domains/nishith.json @@ -3,7 +3,7 @@ "username": "Nishith-Savla", "email": "nishithsavla005@gmail.com" }, - "record": { + "records": { "CNAME": "nishith.tech" } } diff --git a/domains/nitesh-rathod.json b/domains/nitesh-rathod.json index 6496d435c..202c46248 100644 --- a/domains/nitesh-rathod.json +++ b/domains/nitesh-rathod.json @@ -4,7 +4,7 @@ "owner": { "username": "nitesh-rathod" }, - "record": { + "records": { "CNAME": "nitesh-rathod.github.io" } } diff --git a/domains/nitesh.json b/domains/nitesh.json index 99d5d9035..a11323ac9 100644 --- a/domains/nitesh.json +++ b/domains/nitesh.json @@ -1,11 +1,10 @@ { "description": "My personal portfolio site", - "repo": "https://github.com/Niteshballa", "owner": { "username": "Niteshballa", "email": "nithesh.mom@gmail.com" }, - "record": { + "records": { "CNAME": "niteshballa.github.io" } } diff --git a/domains/niteshpanthi.json b/domains/niteshpanthi.json index 91962475b..c36df63ba 100644 --- a/domains/niteshpanthi.json +++ b/domains/niteshpanthi.json @@ -3,7 +3,7 @@ "username": "nieekha", "email": "nittrashzn@gmail.com" }, - "record": { + "records": { "CNAME": "niteshpanthi.com.np" } } diff --git a/domains/nithin.json b/domains/nithin.json index 7e7f6ef2b..32f0135ca 100644 --- a/domains/nithin.json +++ b/domains/nithin.json @@ -4,7 +4,7 @@ "email": "nithinnikhil582@gmail.com", "discord": "514353302675259412" }, - "record": { + "records": { "CNAME": "nithinlycanz.github.io" } } diff --git a/domains/nithinbiju.json b/domains/nithinbiju.json index c6bc83ba1..92e562644 100644 --- a/domains/nithinbiju.json +++ b/domains/nithinbiju.json @@ -5,7 +5,7 @@ "username": "nithinbiju007", "email": "nithinbijubiss@gmail.com" }, - "record": { + "records": { "CNAME": "nithinbiju007.github.io" } } diff --git a/domains/nithinramkalava.json b/domains/nithinramkalava.json new file mode 100644 index 000000000..bf39f0f00 --- /dev/null +++ b/domains/nithinramkalava.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nithinramkalava", + "email": "nithinramkalava@gmail.com" + }, + "records": { + "CNAME": "nithinramkalava.vercel.app" + } +} diff --git a/domains/nitin.json b/domains/nitin.json index a9b62dabf..fff6f93c6 100644 --- a/domains/nitin.json +++ b/domains/nitin.json @@ -3,7 +3,7 @@ "username": "chess10kp", "email": "nitinshankarmadhu@gmail.com" }, - "record": { + "records": { "CNAME": "nitinwebsite-bde4d.web.app" } } diff --git a/domains/nitink.json b/domains/nitink.json new file mode 100644 index 000000000..b4611f17e --- /dev/null +++ b/domains/nitink.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NitinKosuru", + "email": "nitinkosuru@vk.com" + }, + "records": { + "CNAME": "nitink.pages.dev" + } +} diff --git a/domains/nix.json b/domains/nix.json index 0d1e56db2..d40d3d2c7 100644 --- a/domains/nix.json +++ b/domains/nix.json @@ -3,7 +3,7 @@ "username": "linuxhoe", "email": "b0t@disroot.org" }, - "record": { + "records": { "CNAME": "linuxhoe.github.io" } } diff --git a/domains/niyakipham.json b/domains/niyakipham.json index 241c092d9..17b685fed 100644 --- a/domains/niyakipham.json +++ b/domains/niyakipham.json @@ -1,11 +1,11 @@ { - "description": "niyakipham.is-a.dev", - "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io", - "owner": { - "username": "niyakipham", - "email": "niyakipham@gmail.com" - }, - "record": { - "CNAME": "niyakipham.github.io" - } + "description": "niyakipham.is-a.dev", + "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io", + "owner": { + "username": "niyakipham", + "email": "niyakipham@gmail.com" + }, + "records": { + "CNAME": "niyakipham.github.io" + } } diff --git a/domains/nk.json b/domains/nk.json index 73f2d0f17..a952f7d24 100644 --- a/domains/nk.json +++ b/domains/nk.json @@ -3,7 +3,7 @@ "username": "nkoehring", "email": "n@koehr.in" }, - "record": { + "records": { "URL": "https://koehr.ing" } } diff --git a/domains/nlog0312.json b/domains/nlog0312.json new file mode 100644 index 000000000..a4de8f75b --- /dev/null +++ b/domains/nlog0312.json @@ -0,0 +1,11 @@ +{ + "description": "Profile card", + "repo": "https://github.com/nLog0312/nlog0312.github.io", + "owner": { + "username": "nLog0312", + "email": "nlog.021203@gmail.com" + }, + "records": { + "CNAME": "nlog0312.github.io" + } +} diff --git a/domains/nmsderp.json b/domains/nmsderp.json index 7f4f0fa35..b63997743 100644 --- a/domains/nmsderp.json +++ b/domains/nmsderp.json @@ -5,7 +5,7 @@ "username": "nmsderp", "email": "nmsderp@gmail.com" }, - "record": { + "records": { "CNAME": "nmsderp.github.io" } } diff --git a/domains/nnocsupnn.json b/domains/nnocsupnn.json new file mode 100644 index 000000000..f528b06c2 --- /dev/null +++ b/domains/nnocsupnn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nnocsupnn", + "email": "nnocsupnn@gmail.com" + }, + "records": { + "CNAME": "nnocsupnn.github.io" + } +} diff --git a/domains/noah.json b/domains/noah.json index 8d4030b8e..cd7290492 100644 --- a/domains/noah.json +++ b/domains/noah.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "noahprm", - "email": "contact.noahprm@gmail.com", - "discord": "949273553168121856" - }, - "record": { - "A": [ - "217.145.72.79" - ] - } + "owner": { + "username": "noahprm", + "email": "contact.noahprm@gmail.com", + "discord": "949273553168121856" + }, + "records": { + "A": ["217.145.72.79"] + } } diff --git a/domains/noahgao.json b/domains/noahgao.json index 2e627e7cc..c25bb58b2 100644 --- a/domains/noahgao.json +++ b/domains/noahgao.json @@ -4,7 +4,7 @@ "email": "ziheng1719@163.com", "discord": "900791393931362374" }, - "record": { + "records": { "CNAME": "noahziheng.github.io" } } diff --git a/domains/noctade.json b/domains/noctade.json new file mode 100644 index 000000000..26d7dbbdf --- /dev/null +++ b/domains/noctade.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "noctade", + "discord": "1117869855538942032", + "email": "endeade80@gmail.com" + }, + "records": { + "CNAME": "noctade.github.io" + } +} diff --git a/domains/nocwarebot.acronical.json b/domains/nocwarebot.acronical.json index f84af7e3e..693d802cb 100644 --- a/domains/nocwarebot.acronical.json +++ b/domains/nocwarebot.acronical.json @@ -3,7 +3,7 @@ "username": "AcronicalYT", "email": "acronicalbusiness@gmail.com" }, - "record": { + "records": { "CNAME": "59893.site.bot-hosting.net" } } diff --git a/domains/node.devmatei.json b/domains/node.devmatei.json deleted file mode 100644 index 9426b4aa6..000000000 --- a/domains/node.devmatei.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "DevMatei", - "email": "matei.thoma@gmail.com" - }, - "record": { - "A": [ - "176.100.37.70" - ] - } - -} diff --git a/domains/noel.json b/domains/noel.json index 03e789111..3a68d5de9 100644 --- a/domains/noel.json +++ b/domains/noel.json @@ -7,7 +7,7 @@ "twitter": "NoelJacob01", "discord": "Noel Jacob#7465" }, - "record": { + "records": { "CNAME": "noeljacob.github.io" } } diff --git a/domains/noelpaton-og.json b/domains/noelpaton-og.json new file mode 100644 index 000000000..5a0d2dc23 --- /dev/null +++ b/domains/noelpaton-og.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "noelpaton-og", + "email": "noel27938@gmail.com" + }, + "records": { + "CNAME": "noelpaton-og.github.io" + } +} diff --git a/domains/noelpatonog.json b/domains/noelpatonog.json new file mode 100644 index 000000000..5a0d2dc23 --- /dev/null +++ b/domains/noelpatonog.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "noelpaton-og", + "email": "noel27938@gmail.com" + }, + "records": { + "CNAME": "noelpaton-og.github.io" + } +} diff --git a/domains/nohello.areen.json b/domains/nohello.areen.json new file mode 100644 index 000000000..af24f03bb --- /dev/null +++ b/domains/nohello.areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "records": { + "CNAME": "nogreeting.pages.dev" + } +} diff --git a/domains/noicemath.json b/domains/noicemath.json index 967a99919..b03005cac 100644 --- a/domains/noicemath.json +++ b/domains/noicemath.json @@ -3,7 +3,7 @@ "username": "andydrew727", "email": "0793620@student.osceolaschools.net" }, - "record": { + "records": { "URL": "https://theniceman.netlify.app/" } } diff --git a/domains/noir.json b/domains/noir.json index bd7badc3c..0ffde0ce7 100644 --- a/domains/noir.json +++ b/domains/noir.json @@ -6,7 +6,7 @@ "email": "xyroemail1@gmail.com", "twitter": "zPyrooooo" }, - "record": { + "records": { "CNAME": "noirdevelopment.github.io" } } diff --git a/domains/noise.json b/domains/noise.json index 92a4b9fd1..8f6772faa 100644 --- a/domains/noise.json +++ b/domains/noise.json @@ -5,7 +5,7 @@ "username": "iamthen0ise", "email": "evgenii.uvarov.post@gmail.com" }, - "record": { + "records": { "CNAME": "iamthen0ise.github.io" } } diff --git a/domains/nolan-mai.json b/domains/nolan-mai.json index 9af8b5603..1c1056251 100644 --- a/domains/nolan-mai.json +++ b/domains/nolan-mai.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "PotBorger", - "email": "khanhtrinh232005@gmail.com" - }, - "record": { - "CNAME": "potborger.github.io" - } + "owner": { + "username": "PotBorger", + "email": "khanhtrinh232005@gmail.com" + }, + "records": { + "CNAME": "potborger.github.io" + } } diff --git a/domains/nom.json b/domains/nom.json index 767b61329..b7e22252f 100644 --- a/domains/nom.json +++ b/domains/nom.json @@ -3,7 +3,7 @@ "username": "kqcl", "email": "jscharein.js@gmail.com" }, - "record": { + "records": { "A": ["185.234.69.13"] } } diff --git a/domains/noma.json b/domains/noma.json index f96f4c501..28d2938b5 100644 --- a/domains/noma.json +++ b/domains/noma.json @@ -5,7 +5,7 @@ "username": "Noma4321", "email": "noma4321business@gmail.com" }, - "record": { + "records": { "CNAME": "noma4321.github.io" } } diff --git a/domains/nomena.json b/domains/nomena.json index 4ba4fa00d..4e23603a4 100644 --- a/domains/nomena.json +++ b/domains/nomena.json @@ -3,7 +3,7 @@ "username": "Shiro-cha", "email": "noum.rzdr@gmail.com" }, - "record": { + "records": { "CNAME": "shiro-cha.github.io" } } diff --git a/domains/nonam4lol.json b/domains/nonam4lol.json index 93c491387..76c17897c 100644 --- a/domains/nonam4lol.json +++ b/domains/nonam4lol.json @@ -3,7 +3,7 @@ "username": "Nonam4lol", "email": "literallynoname13@gmail.com" }, - "record": { + "records": { "A": ["45.11.229.211"] } } diff --git a/domains/nonograms.talinsharma.json b/domains/nonograms.talinsharma.json index 35128e40d..51c76aa65 100644 --- a/domains/nonograms.talinsharma.json +++ b/domains/nonograms.talinsharma.json @@ -3,7 +3,7 @@ "username": "TalinTheDev", "email": "talinsharma.dev@gmail.com" }, - "record": { + "records": { "CNAME": "talinthedev.github.io" } } diff --git a/domains/nonomino.json b/domains/nonomino.json index 9e5d83307..97be925e2 100644 --- a/domains/nonomino.json +++ b/domains/nonomino.json @@ -4,7 +4,7 @@ "email": "ontharros@gmail.com", "discord": "937674639881166859" }, - "record": { + "records": { "CNAME": "nonomino.pages.dev" } } diff --git a/domains/noob.json b/domains/noob.json new file mode 100644 index 000000000..55f9b7731 --- /dev/null +++ b/domains/noob.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio site, made in nextjs", + "repo": "https://github.com/IMXNOOBX/universe", + "owner": { + "username": "IMXNOOBX", + "email": "me@noob.bio" + }, + "records": { + "CNAME": "noob.bio" + } +} diff --git a/domains/noobisaures.json b/domains/noobisaures.json new file mode 100644 index 000000000..cec345e0a --- /dev/null +++ b/domains/noobisaures.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Noobisaures", + "discord": "870276960612417547" + }, + "records": { + "CNAME": "noobisaures.github.io" + } +} diff --git a/domains/nooz.json b/domains/nooz.json index b8f3c8d41..2c3685230 100644 --- a/domains/nooz.json +++ b/domains/nooz.json @@ -6,13 +6,8 @@ "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" - ], + "records": { + "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/norkart.json b/domains/norkart.json index dc74c575d..ca991ac1c 100644 --- a/domains/norkart.json +++ b/domains/norkart.json @@ -3,7 +3,7 @@ "username": "norkart1", "email": "navasforwork@gmail.com" }, - "record": { + "records": { "CNAME": "personal-website-26y.pages.dev" } } diff --git a/domains/not-ethan.json b/domains/not-ethan.json index a560fa9d2..b55513d76 100644 --- a/domains/not-ethan.json +++ b/domains/not-ethan.json @@ -3,14 +3,9 @@ "username": "not-a-ethan", "discord": "not_ethan." }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all", - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/not.json b/domains/not.json index d139592ba..c10cc2ea8 100644 --- a/domains/not.json +++ b/domains/not.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "Moodygd761", - "discord": "1279615522593308734", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WDBjZ898iNiRP_Lvbnoj4LirAorotHcGhnntu1zdoqeuHq2AyxBL8ehFxtM3vtrYz1N73zp_8rKaJ8ynhakivpRjTW6i6JoadAD4fMALwRGFb8Ewa7sfyBpF90-GbhJlwGTVwJXxbM6gh0C0WUJBU0SSMMdQPSNqlDXzgcshhKKjnslQCqnoe82fJIbLWbYVIj7DY_vQd_c426LFFw-ELEdaSIS8BcvVvuAPBBEtMeTPHHJGlfM6uQFd5LC91dnL4OtIQRJrS-Dm3jHUqCDBIwBQOJ-GjUuZNSISvNN7nxn0RPmHEFPVorEgll_jIGSWoqZblFQAdTry_tco9-VTRg.xy1T4Mv96AlgNiL15wa86A.UgQ0AQSB-2dIvHfkqag9dLHY4ta9MBeNLu7aOgGjANs90WIwsgXbwguK2biGSOGf7yx-rKclyrSbQiFxl1m6GYj9eJ0Y3yZXe96TuhH3h9U.BxmZhevlny3h3XoYMkLgyw" - }, - "record": { - "A": [ - "158.178.200.29" - ] - } + "owner": { + "username": "Moodygd761", + "discord": "1279615522593308734" + }, + "records": { + "A": ["158.178.200.29"] + } } diff --git a/domains/notanicepenguin.json b/domains/notanicepenguin.json new file mode 100644 index 000000000..c2c38e6f2 --- /dev/null +++ b/domains/notanicepenguin.json @@ -0,0 +1,10 @@ +{ + "description": "I will use this to learn HTML5 and CSS3 + to share myself!", + "repo": "https://github.com/notanicepenguin/notanicepenguin.github.io", + "owner": { + "username": "notanicepenguin" + }, + "records": { + "CNAME": "notanicepenguin.github.io" + } +} diff --git a/domains/notaperson535.json b/domains/notaperson535.json index af68b5d16..ecfebd9ab 100644 --- a/domains/notaperson535.json +++ b/domains/notaperson535.json @@ -5,7 +5,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "CNAME": "notaperson535.github.io" } } diff --git a/domains/notaproton.json b/domains/notaproton.json new file mode 100644 index 000000000..03d796abb --- /dev/null +++ b/domains/notaproton.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotAProton", + "discord": "881083592648843294" + }, + "records": { + "CNAME": "notaproton.github.io" + } +} diff --git a/domains/notaussie.json b/domains/notaussie.json index 7e0c3e872..973551a64 100644 --- a/domains/notaussie.json +++ b/domains/notaussie.json @@ -5,7 +5,7 @@ "username": "NotAussie", "email": "Aussie_Okay@protonmail.com" }, - "record": { + "records": { "CNAME": "notaussie.github.io" } } diff --git a/domains/notcoded.json b/domains/notcoded.json index d065c32ac..0e4d00c59 100644 --- a/domains/notcoded.json +++ b/domains/notcoded.json @@ -3,10 +3,10 @@ "repo": "https://github.com/not-coded/not-coded.github.io", "owner": { "username": "not-coded", - "discord": "Code#9844", + "discord": "notcoded", "discordUserID": "620662953347121163" }, - "record": { + "records": { "CNAME": "not-coded.github.io" } } diff --git a/domains/notdevmatei.json b/domains/notdevmatei.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/notdevmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/note.json b/domains/note.json index b53a0cdd3..04494d165 100644 --- a/domains/note.json +++ b/domains/note.json @@ -3,7 +3,7 @@ "username": "imimbert", "email": "2080035494@qq.com" }, - "record": { + "records": { "CNAME": "imimbert.github.io" } } diff --git a/domains/notedwin.json b/domains/notedwin.json index adb2eaf51..932001571 100644 --- a/domains/notedwin.json +++ b/domains/notedwin.json @@ -3,7 +3,7 @@ "username": "Edwin15857", "email": "notedwin.music@gmail.com" }, - "record": { + "records": { "URL": "https://notedwin.api.stdlib.com/portfolio-using-html-in-autocode@dev" } } diff --git a/domains/notefct.json b/domains/notefct.json index b6f801dcc..85fd5c73c 100644 --- a/domains/notefct.json +++ b/domains/notefct.json @@ -5,7 +5,7 @@ "username": "notefct", "email": "edunlima2007@gmail.com" }, - "record": { + "records": { "CNAME": "notefct.github.io" } } diff --git a/domains/notes.json b/domains/notes.json index 116d34bcd..156972c3e 100644 --- a/domains/notes.json +++ b/domains/notes.json @@ -4,7 +4,7 @@ "email": "satindar@satindar-is.me", "discord": "713254655999868931" }, - "record": { + "records": { "URL": "https://satindar.is-a.dev" } } diff --git a/domains/noteswallah.json b/domains/noteswallah.json index 726befd50..4dcdef8bf 100644 --- a/domains/noteswallah.json +++ b/domains/noteswallah.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/notfenixio.json b/domains/notfenixio.json index 5d226063b..57cc56a5a 100644 --- a/domains/notfenixio.json +++ b/domains/notfenixio.json @@ -3,7 +3,7 @@ "username": "NotFenixio", "email": "josueart40@gmail.com" }, - "record": { + "records": { "CNAME": "notfenixio.github.io" } } diff --git a/domains/notfrycek.json b/domains/notfrycek.json index dc4a9ff8b..f72ca9a1a 100644 --- a/domains/notfrycek.json +++ b/domains/notfrycek.json @@ -3,7 +3,7 @@ "username": "NotFrycek", "email": "frycek345@gmail.com" }, - "record": { + "records": { "CNAME": "notfrycek.github.io" } } diff --git a/domains/nothazz.json b/domains/nothazz.json index c5193bd3b..6a16f5103 100644 --- a/domains/nothazz.json +++ b/domains/nothazz.json @@ -5,7 +5,7 @@ "username": "nothazz", "email": "hazz73963@gmail.com" }, - "record": { + "records": { "CNAME": "nothazz.github.io" } } diff --git a/domains/notjadeja.json b/domains/notjadeja.json index d0ece2eb1..f44a05a53 100644 --- a/domains/notjadeja.json +++ b/domains/notjadeja.json @@ -3,13 +3,8 @@ "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" - ], + "records": { + "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/notjunar.json b/domains/notjunar.json index 10803726b..4524bcedd 100644 --- a/domains/notjunar.json +++ b/domains/notjunar.json @@ -3,7 +3,7 @@ "username": "NotJunar", "discord": "notjunar" }, - "record": { + "records": { "CNAME": "notjunar.github.io" } } diff --git a/domains/notrana.json b/domains/notrana.json index 64f23b2eb..cdb24f303 100644 --- a/domains/notrana.json +++ b/domains/notrana.json @@ -3,7 +3,7 @@ "username": "NotRana", "email": "benyameen75@gmail.com" }, - "record": { + "records": { "CNAME": "notrana.github.io" } } diff --git a/domains/notreallyprince.json b/domains/notreallyprince.json index 92d751ca7..be0a5b3f1 100644 --- a/domains/notreallyprince.json +++ b/domains/notreallyprince.json @@ -3,7 +3,7 @@ "username": "notreallyprince", "email": "prince30112001@gmail.com" }, - "record": { + "records": { "CNAME": "notreallyprince.github.io" } } diff --git a/domains/notzer0two.json b/domains/notzer0two.json new file mode 100644 index 000000000..3683ce022 --- /dev/null +++ b/domains/notzer0two.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "records": { + "CNAME": "notzer0two.vercel.app" + } +} diff --git a/domains/nova.json b/domains/nova.json index 6dfa7862f..d12db6b11 100644 --- a/domains/nova.json +++ b/domains/nova.json @@ -3,9 +3,9 @@ "owner": { "username": "LunarN0v4", "email": "nova@zeusteam.dev", - "discord": "novad3v" + "discord": "7un4r" }, - "record": { - "CNAME": "zeusteam.dev" + "records": { + "A": ["23.136.44.108"] } } diff --git a/domains/novafox.json b/domains/novafox.json index ffbf10de3..7265f3e88 100644 --- a/domains/novafox.json +++ b/domains/novafox.json @@ -3,7 +3,7 @@ "username": "novathefox", "email": "foxsdenyt@gmail.com" }, - "record": { + "records": { "CNAME": "foxsdenyt-github-io.onrender.com" } } diff --git a/domains/novampr.json b/domains/novampr.json index 89e756e16..4739c6a65 100644 --- a/domains/novampr.json +++ b/domains/novampr.json @@ -3,7 +3,7 @@ "username": "Novampr", "email": "LimeDEV8756@gmail.com" }, - "record": { + "records": { "CNAME": "novampr.github.io" } } diff --git a/domains/noxsin.json b/domains/noxsin.json index 349e4c1ea..7d5d0e7fd 100644 --- a/domains/noxsin.json +++ b/domains/noxsin.json @@ -6,7 +6,7 @@ "email": "arcteac@gmail.com", "telegram": "mentolbot" }, - "record": { + "records": { "CNAME": "komysh.github.io" } } diff --git a/domains/noxturnix.json b/domains/noxturnix.json index 670ff6454..315486744 100644 --- a/domains/noxturnix.json +++ b/domains/noxturnix.json @@ -3,7 +3,7 @@ "username": "Noxturnix", "email": "noxturnix@noxt.us" }, - "record": { + "records": { "URL": "https://noxt.us" } } diff --git a/domains/nozura.json b/domains/nozura.json index 9efa74196..7ddc3f8c7 100644 --- a/domains/nozura.json +++ b/domains/nozura.json @@ -5,7 +5,7 @@ "username": "inozura", "email": "nodhzen@gmail.com" }, - "record": { + "records": { "CNAME": "inozura.github.io" } } diff --git a/domains/nparashar150.json b/domains/nparashar150.json new file mode 100644 index 000000000..a94838f34 --- /dev/null +++ b/domains/nparashar150.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nparashar150", + "email": "nparashar150@gmail.com" + }, + "records": { + "CNAME": "portfolio-beta-ecru-19.vercel.app" + } +} diff --git a/domains/nrdybhu1.json b/domains/nrdybhu1.json index c750a379a..211e575f2 100644 --- a/domains/nrdybhu1.json +++ b/domains/nrdybhu1.json @@ -5,7 +5,7 @@ "username": "NrdyBhu1", "email": "NrdyBhu1@gmail.com" }, - "record": { + "records": { "CNAME": "nrdybhu1.github.io" } } diff --git a/domains/nsh.json b/domains/nsh.json index ba9686d4e..b82619c68 100644 --- a/domains/nsh.json +++ b/domains/nsh.json @@ -5,7 +5,7 @@ "twitter": "oyepriyansh" }, "description": "mail domain", - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/ntech.json b/domains/ntech.json index fd04049d3..a110cb772 100644 --- a/domains/ntech.json +++ b/domains/ntech.json @@ -3,7 +3,7 @@ "username": "NTechsoftware", "email": "finnzi151@gmail.com" }, - "record": { + "records": { "CNAME": "ntechservices.xyz" } } diff --git a/domains/ntfy.ravener.json b/domains/ntfy.ravener.json index 829548d3a..7fbacf6f5 100644 --- a/domains/ntfy.ravener.json +++ b/domains/ntfy.ravener.json @@ -5,7 +5,7 @@ "twitter": "RavenRavener", "discord": "292690616285134850" }, - "record": { + "records": { "A": ["132.145.196.17"] } } diff --git a/domains/ntg.json b/domains/ntg.json index 8a6ea35b9..4f88436af 100644 --- a/domains/ntg.json +++ b/domains/ntg.json @@ -5,7 +5,7 @@ "username": "dotntg", "email": "dotntg.dev@gmail.com" }, - "record": { + "records": { "CNAME": "dotntg.github.io" } } diff --git a/domains/nthduc.json b/domains/nthduc.json index 1bdc76b52..869cc7712 100644 --- a/domains/nthduc.json +++ b/domains/nthduc.json @@ -3,7 +3,7 @@ "username": "nthduc", "email": "nguyenthaiduc0212@gmail.com" }, - "record": { + "records": { "CNAME": "xb00925c3.custom.b4a.run" } } diff --git a/domains/nthn.json b/domains/nthn.json index 622f63a89..7d53719ca 100644 --- a/domains/nthn.json +++ b/domains/nthn.json @@ -1,11 +1,10 @@ { "description": "Storage Untuk Mengupload Semua Filemu", - "repo": "https://github.com/ZeroChanBot", "owner": { "username": "Nathan", "email": "contact@webraku.xyz" }, - "record": { + "records": { "CNAME": "storage-production.up.railway.app" } } diff --git a/domains/ntmusic.json b/domains/ntmusic.json index bb1377a14..08bf5b529 100644 --- a/domains/ntmusic.json +++ b/domains/ntmusic.json @@ -3,7 +3,7 @@ "username": "gunawan092w", "email": "gunawan092w@gmail.com" }, - "record": { + "records": { "CNAME": "ntmusic.github.io" } } diff --git a/domains/ntrs05.json b/domains/ntrs05.json index f2f45ddb8..b4c3f0f43 100644 --- a/domains/ntrs05.json +++ b/domains/ntrs05.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ntrs05", - "email": "tukheo123@gmail.com" - }, - "record": { - "CNAME": "ntrs05.github.io" - } + "owner": { + "username": "ntrs05", + "email": "tukheo123@gmail.com" + }, + "records": { + "CNAME": "ntrs05.github.io" + } } diff --git a/domains/nuggew.json b/domains/nuggew.json new file mode 100644 index 000000000..bf6922b22 --- /dev/null +++ b/domains/nuggew.json @@ -0,0 +1,10 @@ +{ + "description": "nuggew's fortress (portfolio)", + "owner": { + "username": "Nuggew", + "email": "contato.guilherme.silva.araujo@gmail.com" + }, + "records": { + "CNAME": "nuggew.github.io" + } +} diff --git a/domains/nulitas.json b/domains/nulitas.json index 90cde575e..36e7b5452 100644 --- a/domains/nulitas.json +++ b/domains/nulitas.json @@ -4,7 +4,7 @@ "email": "ndrakita@gmail.com", "discord": "nulitas" }, - "record": { + "records": { "CNAME": "nulitas.github.io" } } diff --git a/domains/null.json b/domains/null.json index c2fdcdfdd..d978b0bf3 100644 --- a/domains/null.json +++ b/domains/null.json @@ -3,7 +3,7 @@ "username": "Sudo-null7", "email": "philippeparr38@gmail.com" }, - "record": { + "records": { "CNAME": "null.parr.lol" } } diff --git a/domains/nullaustin.json b/domains/nullaustin.json new file mode 100644 index 000000000..aa48f16d5 --- /dev/null +++ b/domains/nullaustin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Null-Austin", + "email": "admoore1310@gmail.com" + }, + "records": { + "CNAME": "null-austin.github.io" + } +} diff --git a/domains/numerius.json b/domains/numerius.json index 554faea37..8b274cd3a 100644 --- a/domains/numerius.json +++ b/domains/numerius.json @@ -3,7 +3,7 @@ "username": "EmperorNumerius", "email": "krishnamohanmeda@gmail.com" }, - "record": { + "records": { "URL": "https://numeriusdevwebsite.vercel.app/" } } diff --git a/domains/nunya-9018.json b/domains/nunya-9018.json index f6af3da05..1a6850e62 100644 --- a/domains/nunya-9018.json +++ b/domains/nunya-9018.json @@ -3,7 +3,7 @@ "username": "Nunya-9018", "email": "007youdontknowme@gmail.com" }, - "record": { + "records": { "CNAME": "nunya-9018.up.railway.app" } } diff --git a/domains/nuraly.json b/domains/nuraly.json new file mode 100644 index 000000000..ce2d2e005 --- /dev/null +++ b/domains/nuraly.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for the portfolio website", + "owner": { + "username": "nuraly-v", + "email": "mescorpx@gmail.com" + }, + "records": { + "CNAME": "nuraly-v.github.io" + } +} diff --git a/domains/nutworks-team.json b/domains/nutworks-team.json index 784d1e830..2360e8e3d 100644 --- a/domains/nutworks-team.json +++ b/domains/nutworks-team.json @@ -3,7 +3,7 @@ "username": "rightburrow", "email": "rightburrowyt@gmail.com" }, - "record": { + "records": { "URL": "https://nutworks-team.neocities.org" } } diff --git a/domains/nuxsh.json b/domains/nuxsh.json index 2c0db117e..bde45fe44 100644 --- a/domains/nuxsh.json +++ b/domains/nuxsh.json @@ -6,7 +6,7 @@ "email": "nuxshed@gmail.com", "discord": "nuxsh#9338" }, - "record": { + "records": { "CNAME": "nuxshed.github.io" } } diff --git a/domains/nv2k3.json b/domains/nv2k3.json index 2326cad67..a49feb9b5 100644 --- a/domains/nv2k3.json +++ b/domains/nv2k3.json @@ -5,7 +5,7 @@ "username": "nv2k3", "email": "nagendrar.537@gmail.com" }, - "record": { + "records": { "CNAME": "nv2k3.github.io" } } diff --git a/domains/nvcoden.json b/domains/nvcoden.json new file mode 100644 index 000000000..91fc18d9c --- /dev/null +++ b/domains/nvcoden.json @@ -0,0 +1,11 @@ +{ + "description": "Blog for my personal stuff and things I like", + "repo": "https://github.com/nvcoden/nvcoden.github.io", + "owner": { + "username": "nvcoden", + "email": "navneeths55555@gmail.com" + }, + "records": { + "CNAME": "nvcoden.github.io" + } +} diff --git a/domains/nvhai272.json b/domains/nvhai272.json new file mode 100644 index 000000000..4dcd6ea3f --- /dev/null +++ b/domains/nvhai272.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "nvhai272" + }, + "records": { + "CNAME": "nvhai272.github.io" + } +} diff --git a/domains/nvhmadridista.json b/domains/nvhmadridista.json index 2b6b5849d..2c09c86b7 100644 --- a/domains/nvhmadridista.json +++ b/domains/nvhmadridista.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nvhmadridista", - "email": "nvh.madridista@email.address" - }, - "record": { - "CNAME": "nvhmadridista.github.io" - } + "owner": { + "username": "nvhmadridista", + "email": "nvh.madridista@email.address" + }, + "records": { + "CNAME": "nvhmadridista.github.io" + } } diff --git a/domains/nvme0n1p.json b/domains/nvme0n1p.json index 8c3be4d2e..eeec606d5 100644 --- a/domains/nvme0n1p.json +++ b/domains/nvme0n1p.json @@ -3,7 +3,7 @@ "username": "lbr77", "email": "me@nvme0n1p.dev" }, - "record": { + "records": { "CNAME": "homepagen.pages.dev" } } diff --git a/domains/nvrxstdwrth.json b/domains/nvrxstdwrth.json index 741e34961..f5af9c6bd 100644 --- a/domains/nvrxstdwrth.json +++ b/domains/nvrxstdwrth.json @@ -1,10 +1,9 @@ { "owner": { "username": "HIlight3R", - "discord": "632272741000544259", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WwWL6rfhXZA0dVr8hvLSkevzpSY1ETrC-HjSa2C7RLxujUUwlyIwjhugowOuLMIGn2j_nJLy0vmFf-NrekykpLpsJdbQ5KeeW-YnnGL5Oj9waXYeBqofQ9HMGNERSmMdZig6gkRXcGu_mSbkqByt6Hye4StQ_5OzUOw5-IRnhZEWZmdW92rsiHbPb1FxQZ_0JzO3pusOwpIm3du9SbOLOS8EYp5wCjxJJQWIhQVbbf2zz38-kklX5XkL9aIJgyMVXdPUN0OwWG3zkVuAsofQamwsT9PM3cmNcij4v4VDRy23hkViQuBSkExUW5-GANGHsgmvULxc2XLt-34FPPpcGQ.o_hc0F4i2CbgXEizGhwbfA.Gq3lOGxqc_cmX5sQ_Qh1iZ_GXeuSPmnjhGimjVn5gjQXMBVcgn7EFWtEmNjMgvZ84GXfUTVdSjGSI1YIZf0eY6rizgkVojxDgrop0SSoAdvtHjcTxS-tlO9oUQxH5fa9.T5TSx4g4kGrd6g8KwX_T-g" + "discord": "632272741000544259" }, - "record": { + "records": { "A": ["65.21.61.55"] } } diff --git a/domains/nvyrsta.json b/domains/nvyrsta.json index b14ba9f50..68659d2e8 100644 --- a/domains/nvyrsta.json +++ b/domains/nvyrsta.json @@ -3,7 +3,7 @@ "username": "nvyrsta", "email": "natali.vyrsta@gmail.com" }, - "record": { + "records": { "CNAME": "nvyrsta.github.io" } } diff --git a/domains/nx.json b/domains/nx.json index 086a880c5..5af0639e6 100644 --- a/domains/nx.json +++ b/domains/nx.json @@ -3,7 +3,7 @@ "username": "jadfoq", "email": "jadfoq@getgoogleoff.me" }, - "record": { + "records": { "CNAME": "spo-o0x5.onrender.com" } } diff --git a/domains/nxb1t.json b/domains/nxb1t.json index b252cee6f..83e4204e1 100644 --- a/domains/nxb1t.json +++ b/domains/nxb1t.json @@ -6,7 +6,7 @@ "email": "nxb1t@proton.me", "twitter": "nxb1t4n6" }, - "record": { + "records": { "CNAME": "nxb1t.github.io" } } diff --git a/domains/nxmtuan.json b/domains/nxmtuan.json new file mode 100644 index 000000000..f6b4db9db --- /dev/null +++ b/domains/nxmtuan.json @@ -0,0 +1,11 @@ +{ + "description": "nxmt-profile.dev", + "owner": { + "username": "tuannguyen2002", + "email": "coixaygio107@gmail.com", + "discord": "nightfury06749" + }, + "records": { + "CNAME": "profile-sigma-wine.vercel.app" + } +} diff --git a/domains/nxnlab.json b/domains/nxnlab.json index 4c6d1cd7a..d43da2406 100644 --- a/domains/nxnlab.json +++ b/domains/nxnlab.json @@ -3,7 +3,7 @@ "username": "NxnRmz", "email": "nxnrmz@gmail.com" }, - "record": { + "records": { "CNAME": "nxnrmz.github.io" } } diff --git a/domains/nxrmqlly.json b/domains/nxrmqlly.json index 403ae35f2..804bcb038 100644 --- a/domains/nxrmqlly.json +++ b/domains/nxrmqlly.json @@ -3,10 +3,9 @@ "repo": "https://github.com/nxrmqlly/nxrmqlly.github.io", "owner": { "username": "nxrmqlly", - "email": "ritam.das3110@outlook.com", - "twitter": "" + "email": "ritam.das3110@outlook.com" }, - "record": { + "records": { "CNAME": "nxrmqlly.github.io" } } diff --git a/domains/nyan.json b/domains/nyan.json index d734ce853..e80d58204 100644 --- a/domains/nyan.json +++ b/domains/nyan.json @@ -5,7 +5,7 @@ "discord": "Bread#2635", "note": "discord id: 548821619661864962" }, - "record": { + "records": { "CNAME": "ppy.pages.dev" } } diff --git a/domains/nyanbrowser.json b/domains/nyanbrowser.json index 7feba489a..e5bd1c1a2 100644 --- a/domains/nyanbrowser.json +++ b/domains/nyanbrowser.json @@ -5,7 +5,7 @@ "username": "hoppygamer", "email": "hoppyloser11@gmail.com" }, - "record": { + "records": { "CNAME": "nyanbrowser.github.io" } } diff --git a/domains/nyda.json b/domains/nyda.json index eb19dd5dc..dbd7bbcf3 100644 --- a/domains/nyda.json +++ b/domains/nyda.json @@ -3,7 +3,7 @@ "username": "Nydauron", "email": "jarethgomes@gmail.com" }, - "record": { + "records": { "CNAME": "jarethgomes.com" } } diff --git a/domains/nyel.json b/domains/nyel.json index ef4c3badd..37ea7e3ed 100644 --- a/domains/nyel.json +++ b/domains/nyel.json @@ -3,7 +3,7 @@ "username": "nyelnizy", "email": "yhiamdan@gmail.com" }, - "record": { + "records": { "CNAME": "nyelnizy.github.io" } } diff --git a/domains/nyexoi.json b/domains/nyexoi.json new file mode 100644 index 000000000..2878a1ccd --- /dev/null +++ b/domains/nyexoi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nyex0i", + "discord": "1212192971164754033" + }, + "records": { + "CNAME": "siteisw.tiiny.site" + } +} diff --git a/domains/nyx.json b/domains/nyx.json index 37ee7f990..a295adb14 100644 --- a/domains/nyx.json +++ b/domains/nyx.json @@ -5,7 +5,7 @@ "username": "devnyxie", "email": "timbusinez@gmail.com" }, - "record": { + "records": { "CNAME": "devnyxie.github.io" } } diff --git a/domains/nziie.json b/domains/nziie.json index 124abb7b4..c3cea0d27 100644 --- a/domains/nziie.json +++ b/domains/nziie.json @@ -5,7 +5,7 @@ "username": "Nzii3", "email": "exeyst@gmail.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/o.json b/domains/o.json index b42ec9a6b..9796cf796 100644 --- a/domains/o.json +++ b/domains/o.json @@ -1,9 +1,8 @@ { "owner": { - "username": "omsenjalia", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RROLuTVz1Yiu7gYQ78NhdEWblxDBcdAtgXSrSKBX4s-6C15Gbg1gvdalVJRUFfhvt7FQ1HEtB7Wwz0Rdn1Jxk7Eqxp2s116sCmWwviCoh8RfWUEkWt9k4csRDjBtnwijFrfSv5gjf67gAe1dyoryQjg1ZFf9dlmwmaQtiJNKVkjlBsNAYNph9-CsYK8a0-TI-GVXung0rFjd-222TQij66CYBd7qitAvTPEypCBarB2SyBrN30wLTS9NjB-bSpmJZwcZO8CQ2obcYdMfVQ0nZgXBJhkbwjtGWfWTS-3AnCeLF48mT-9DCsVoraLb6DLoJoPB-9g4dim-tSZwC5pQ.OsIglUJ8OXge3R5CTVoEEw.YS-YtdmeJZKK1TEkERBJlH9RKdKcMynvcB5PrUsKXY4FJhgfrPoqF_JOAXO4tyYqwJzWnNM0hfd4WxqLi3KmjXToHxRAzdiFu1f4iiBfX68ABHoycHXkose4AHWe54a8.UazMc8kLEVvxHs2YN0DC3Q" + "username": "omsenjalia" }, - "record": { + "records": { "NS": ["raina.ns.cloudflare.com", "sergi.ns.cloudflare.com"] } } diff --git a/domains/oalonzo.json b/domains/oalonzo.json new file mode 100644 index 000000000..7fb0341ad --- /dev/null +++ b/domains/oalonzo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "valitogt", + "email": "oswalonzo@hotmail.com" + }, + "records": { + "CNAME": "Valitogt79.github.io" + } +} diff --git a/domains/oandbtech-chat.json b/domains/oandbtech-chat.json index 5815fb617..bf57d97d6 100644 --- a/domains/oandbtech-chat.json +++ b/domains/oandbtech-chat.json @@ -3,7 +3,7 @@ "username": "bhaskaraa45", "email": "bhaskarmandal369@gmail.com" }, - "record": { + "records": { "A": ["20.198.8.42"] } } diff --git a/domains/oandbtech.json b/domains/oandbtech.json index 5815fb617..bf57d97d6 100644 --- a/domains/oandbtech.json +++ b/domains/oandbtech.json @@ -3,7 +3,7 @@ "username": "bhaskaraa45", "email": "bhaskarmandal369@gmail.com" }, - "record": { + "records": { "A": ["20.198.8.42"] } } diff --git a/domains/obedev.json b/domains/obedev.json index c89d67365..7785f4c8d 100644 --- a/domains/obedev.json +++ b/domains/obedev.json @@ -4,7 +4,7 @@ "email": "obedev.dev@gmail.com", "discord": "1149424852986511441" }, - "record": { + "records": { "CNAME": "obedev.onrender.com" } } diff --git a/domains/objshadow.json b/domains/objshadow.json new file mode 100644 index 000000000..25c3db019 --- /dev/null +++ b/domains/objshadow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShadowObj", + "email": "shadowobject@protonmail.com" + }, + "records": { + "CNAME": "objshadow.pages.dev" + } +} diff --git a/domains/oc.json b/domains/oc.json index cef1c4605..78c1b0b2c 100644 --- a/domains/oc.json +++ b/domains/oc.json @@ -3,7 +3,7 @@ "username": "orangci", "discord": "orangc" }, - "record": { - "URL": "https://orangc.xyz" + "records": { + "URL": "https://orangc.net" } } diff --git a/domains/ocean.json b/domains/ocean.json index 5dcfb7ed1..6201fa06a 100644 --- a/domains/ocean.json +++ b/domains/ocean.json @@ -3,7 +3,7 @@ "username": "OceanTechnic", "twitter": "UnderWater_DEV" }, - "record": { + "records": { "CNAME": "oceantechnic.github.io" } } diff --git a/domains/oceannetwork.json b/domains/oceannetwork.json index 3a9465b6e..484237c69 100644 --- a/domains/oceannetwork.json +++ b/domains/oceannetwork.json @@ -3,7 +3,7 @@ "username": "ikcaaft", "email": "mitchelblokker@hotmail.com" }, - "record": { + "records": { "URL": "https://7b5d5049-e5ab-47a5-93c2-14b263d69fce-00-2y8olb6cg2med.janeway.replit.dev/index.html" } } diff --git a/domains/odanilo.json b/domains/odanilo.json index f3a2aeee1..fec505609 100644 --- a/domains/odanilo.json +++ b/domains/odanilo.json @@ -3,7 +3,7 @@ "username": "oculosdanilo", "email": "oculosdanilo@gmail.com" }, - "record": { + "records": { "CNAME": "odanilo.web.app" } } diff --git a/domains/ofer.json b/domains/ofer.json index a2ee9c1d6..e77c9e505 100644 --- a/domains/ofer.json +++ b/domains/ofer.json @@ -5,7 +5,7 @@ "username": "ofersadan85", "email": "ofersadan85@gmail.com" }, - "record": { + "records": { "URL": "https://ofersadan85.github.io/portfolio/" } } diff --git a/domains/ofersadan.json b/domains/ofersadan.json index 9ba117ee3..8f6f8e846 100644 --- a/domains/ofersadan.json +++ b/domains/ofersadan.json @@ -5,7 +5,7 @@ "username": "ofersadan85", "email": "ofersadan85@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ofersadan85" } } diff --git a/domains/ofheather.json b/domains/ofheather.json new file mode 100644 index 000000000..de4f45709 --- /dev/null +++ b/domains/ofheather.json @@ -0,0 +1,11 @@ +{ + "description": "It is for my portfolio", + "repo": "https://github.com/alfonso12dev/portfolio", + "owner": { + "username": "alfonso12dev", + "email": "bmeza9407@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ofv.json b/domains/ofv.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/ofv.json +++ b/domains/ofv.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/ohcrazy.json b/domains/ohcrazy.json index cc239d507..bd51597a7 100644 --- a/domains/ohcrazy.json +++ b/domains/ohcrazy.json @@ -3,7 +3,7 @@ "username": "mrcrazii", "email": "milhanlahir321@gmail.com" }, - "record": { + "records": { "CNAME": "mrcrazii.github.io" } } diff --git a/domains/ohdy.json b/domains/ohdy.json index 52e6b9bdd..ec67d7c49 100644 --- a/domains/ohdy.json +++ b/domains/ohdy.json @@ -3,7 +3,7 @@ "username": "ohdy518", "email": "ohdy518@gmail.com" }, - "record": { + "records": { "CNAME": "ohdy518.pages.dev" } } diff --git a/domains/ohqte.json b/domains/ohqte.json index 6c500a2d5..878c6b39d 100644 --- a/domains/ohqte.json +++ b/domains/ohqte.json @@ -3,7 +3,7 @@ "username": "ohqte", "email": "ohqte@proton.me" }, - "record": { + "records": { "URL": "https://ohqte.vercel.app", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/oioioi.json b/domains/oioioi.json index 71d078448..bfd708a61 100644 --- a/domains/oioioi.json +++ b/domains/oioioi.json @@ -3,7 +3,7 @@ "username": "VaibhavSys", "email": "vaibhavsys@protonmail.com" }, - "record": { + "records": { "CNAME": "azltvzbg.infinityfree.com" } } diff --git a/domains/ok.json b/domains/ok.json new file mode 100644 index 000000000..428b3fe68 --- /dev/null +++ b/domains/ok.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "catch6", + "email": "catchlife6@163.com" + }, + "records": { + "CNAME": "catch6.github.io" + } +} diff --git a/domains/okan12300.json b/domains/okan12300.json index 39736548c..fcc4a8f7b 100644 --- a/domains/okan12300.json +++ b/domains/okan12300.json @@ -6,7 +6,7 @@ "email": "okanakd89@outlook.com", "twitter": "okanakd12" }, - "record": { + "records": { "CNAME": "okan12300.github.io" } } diff --git a/domains/okinea.json b/domains/okinea.json index 2f586da5b..111198e27 100644 --- a/domains/okinea.json +++ b/domains/okinea.json @@ -1,13 +1,12 @@ { "description": "Okinea Dev website", - "repo": "https://github.com/okineadev-website", "owner": { "username": "okineadev", "telegram": "https://telegram.okinea.dev", "email": "hi@okinea.dev", "discord": "okineadev" }, - "record": { + "records": { "URL": "https://okinea.dev" } } diff --git a/domains/okyanusoz.json b/domains/okyanusoz.json index 3c9313c22..636b1e1de 100644 --- a/domains/okyanusoz.json +++ b/domains/okyanusoz.json @@ -3,7 +3,7 @@ "username": "okyanusoz", "github": "okyanusoz" }, - "record": { + "records": { "URL": "https://github.com/okyanusoz" } } diff --git a/domains/olasubomi.json b/domains/olasubomi.json new file mode 100644 index 000000000..b8f7b9a70 --- /dev/null +++ b/domains/olasubomi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "firstaxel", + "email": "olasubomiolubisi@geeg.space", + "discord": "1209136236607049758" + }, + "records": { + "CNAME": "twinkle-portfolio-wine.vercel.app" + } +} diff --git a/domains/old.rizz.json b/domains/old.rizz.json new file mode 100644 index 000000000..af1de33a1 --- /dev/null +++ b/domains/old.rizz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bananaking6", + "discord": "skibidibagel" + }, + "records": { + "CNAME": "skibidi-2.vercel.app" + } +} diff --git a/domains/oleg.json b/domains/oleg.json index 07a48418e..e65129255 100644 --- a/domains/oleg.json +++ b/domains/oleg.json @@ -3,7 +3,7 @@ "username": "olegrumiancev", "email": "oleg.rumiancev@gmail.com" }, - "record": { + "records": { "URL": "https://olegrumiancev.github.io" } } diff --git a/domains/oleksa.json b/domains/oleksa.json index 395762d64..30a1fd826 100644 --- a/domains/oleksa.json +++ b/domains/oleksa.json @@ -5,7 +5,7 @@ "username": "oleksa15", "email": "oleksaa.ua@gmail.com" }, - "record": { + "records": { "CNAME": "oleksa15.github.io" } } diff --git a/domains/oli.json b/domains/oli.json index cdf4baa26..9aeaa8d3c 100644 --- a/domains/oli.json +++ b/domains/oli.json @@ -3,7 +3,7 @@ "username": "hxntaish", "email": "juliettepoisson3@gmail.com" }, - "record": { + "records": { "A": ["185.171.202.187"] } } diff --git a/domains/olili.json b/domains/olili.json index 67bd1e257..f4a89f424 100644 --- a/domains/olili.json +++ b/domains/olili.json @@ -5,7 +5,7 @@ "username": "Olili2017", "email": "olilidaniel@gmail.com" }, - "record": { + "records": { "CNAME": "olili2017.github.io" } } diff --git a/domains/oliver.json b/domains/oliver.json new file mode 100644 index 000000000..51a1e483f --- /dev/null +++ b/domains/oliver.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oli-ward", + "email": "oliver.ward94@gmail.com" + }, + "records": { + "CNAME": "is-a-dev-zc9.pages.dev" + } +} diff --git a/domains/oliverg.json b/domains/oliverg.json new file mode 100644 index 000000000..53ecda194 --- /dev/null +++ b/domains/oliverg.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "owner": { + "username": "oliver720", + "email": "olivergarro2017@gmail.com" + }, + "records": { + "A": ["52.160.46.153"] + }, + "proxied": false +} diff --git a/domains/olivia.json b/domains/olivia.json index 6dd26072b..66d858160 100644 --- a/domains/olivia.json +++ b/domains/olivia.json @@ -5,7 +5,7 @@ "email": "olivia.r.dev@gmail.com", "discord": "723626729247342662" }, - "record": { + "records": { "CNAME": "olivi-r.github.io" } } diff --git a/domains/om-auti.json b/domains/om-auti.json index f6bfd70ec..29540f7cc 100644 --- a/domains/om-auti.json +++ b/domains/om-auti.json @@ -3,7 +3,7 @@ "username": "hOMie03", "email": "autiom3123@gmail.com" }, - "record": { + "records": { "URL": "https://om-auti.vercel.app/" } } diff --git a/domains/om.json b/domains/om.json index b42ec9a6b..9796cf796 100644 --- a/domains/om.json +++ b/domains/om.json @@ -1,9 +1,8 @@ { "owner": { - "username": "omsenjalia", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RROLuTVz1Yiu7gYQ78NhdEWblxDBcdAtgXSrSKBX4s-6C15Gbg1gvdalVJRUFfhvt7FQ1HEtB7Wwz0Rdn1Jxk7Eqxp2s116sCmWwviCoh8RfWUEkWt9k4csRDjBtnwijFrfSv5gjf67gAe1dyoryQjg1ZFf9dlmwmaQtiJNKVkjlBsNAYNph9-CsYK8a0-TI-GVXung0rFjd-222TQij66CYBd7qitAvTPEypCBarB2SyBrN30wLTS9NjB-bSpmJZwcZO8CQ2obcYdMfVQ0nZgXBJhkbwjtGWfWTS-3AnCeLF48mT-9DCsVoraLb6DLoJoPB-9g4dim-tSZwC5pQ.OsIglUJ8OXge3R5CTVoEEw.YS-YtdmeJZKK1TEkERBJlH9RKdKcMynvcB5PrUsKXY4FJhgfrPoqF_JOAXO4tyYqwJzWnNM0hfd4WxqLi3KmjXToHxRAzdiFu1f4iiBfX68ABHoycHXkose4AHWe54a8.UazMc8kLEVvxHs2YN0DC3Q" + "username": "omsenjalia" }, - "record": { + "records": { "NS": ["raina.ns.cloudflare.com", "sergi.ns.cloudflare.com"] } } diff --git a/domains/omairr.json b/domains/omairr.json index f459e1a4e..e055f0fe3 100644 --- a/domains/omairr.json +++ b/domains/omairr.json @@ -3,7 +3,7 @@ "username": "omaiirr", "email": "crazyomairennab@gmail.com" }, - "record": { + "records": { "CNAME": "omaiirr.github.io" } } diff --git a/domains/omar.json b/domains/omar.json index 53cae4161..6bacb084d 100644 --- a/domains/omar.json +++ b/domains/omar.json @@ -3,7 +3,7 @@ "username": "TheGr8Coder", "email": "omarrushil@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/thegr8coder/" } } diff --git a/domains/omaradel.json b/domains/omaradel.json new file mode 100644 index 000000000..4a5d505d3 --- /dev/null +++ b/domains/omaradel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xOmarAdel", + "email": "omaradelawad20013@gmail.com" + }, + "records": { + "CNAME": "omar-adel.netlify.app" + } +} diff --git a/domains/omarjaber.json b/domains/omarjaber.json new file mode 100644 index 000000000..e80ea8473 --- /dev/null +++ b/domains/omarjaber.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/omarHJ/Portfolio-Website", + "owner": { + "username": "omarHJ", + "email": "omarpp5555@gmail.com" + }, + "records": { + "CNAME": "omarhj.github.io" + } +} diff --git a/domains/omarmarquez.json b/domains/omarmarquez.json new file mode 100644 index 000000000..c5cafaa91 --- /dev/null +++ b/domains/omarmarquez.json @@ -0,0 +1,11 @@ +{ + "description": "Omar Márquez minimalist portfolio", + "repo": "https://github.com/Trkiller02/minimalist-portfolio", + "owner": { + "username": "Trkiller02", + "email": "trollkiller0207@gmail.com" + }, + "records": { + "CNAME": "trkiller02.github.io" + } +} diff --git a/domains/omera.json b/domains/omera.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/omera.json +++ b/domains/omera.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/omesh.json b/domains/omesh.json new file mode 100644 index 000000000..8949db9f9 --- /dev/null +++ b/domains/omesh.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "omesh7" + }, + "records": { + "CNAME": "omesh7.github.io" + } +} diff --git a/domains/omi.json b/domains/omi.json new file mode 100644 index 000000000..c8ca05295 --- /dev/null +++ b/domains/omi.json @@ -0,0 +1,9 @@ +{ + "description": "Omi Personal Webpage", + "owner": { + "username": "omi-the-sorcerer" + }, + "records": { + "CNAME": "omi.cat" + } +} diff --git a/domains/omkar.json b/domains/omkar.json new file mode 100644 index 000000000..3e79c1879 --- /dev/null +++ b/domains/omkar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "omkarkirpan", + "email": "okirpan@gmail.com" + }, + "repo": "https://github.com/omkarkirpan", + "records": { + "CNAME": "omkarkirpan.com" + } +} diff --git a/domains/omkartenkale.json b/domains/omkartenkale.json new file mode 100644 index 000000000..8c03d18ac --- /dev/null +++ b/domains/omkartenkale.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "omkar-tenkale", + "email": "otenkale@gmail.com" + }, + "records": { + "CNAME": "omkar-tenkale.github.io" + } +} diff --git a/domains/omkhalane.json b/domains/omkhalane.json new file mode 100644 index 000000000..a765593c1 --- /dev/null +++ b/domains/omkhalane.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "omkhalane", + "email": "om.khalane.dev@gmail.com" + }, + "records": { + "URL": "https://omkhalane.github.io/portfolio/" + } +} diff --git a/domains/omshahane.json b/domains/omshahane.json index ab7792842..c52653c0e 100644 --- a/domains/omshahane.json +++ b/domains/omshahane.json @@ -3,7 +3,7 @@ "username": "shahane806", "email": "om.p.shahane@gmail.com" }, - "record": { + "records": { "CNAME": "shahaneom-portfolio.vercel.app" } } diff --git a/domains/one.json b/domains/one.json index 1aab8cf16..fd7869b3d 100644 --- a/domains/one.json +++ b/domains/one.json @@ -4,7 +4,7 @@ "email": "vibred@pm.me", "discord": "1169947990551699568" }, - "record": { + "records": { "CNAME": "t-rex-runner.pages.dev" } } diff --git a/domains/oneclick-macos-simple-kvm.notaperson535.json b/domains/oneclick-macos-simple-kvm.notaperson535.json index d963cbb33..81ea93757 100644 --- a/domains/oneclick-macos-simple-kvm.notaperson535.json +++ b/domains/oneclick-macos-simple-kvm.notaperson535.json @@ -5,7 +5,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "CNAME": "notaperson535.github.io" } } diff --git a/domains/onerandom.json b/domains/onerandom.json new file mode 100644 index 000000000..f9c802570 --- /dev/null +++ b/domains/onerandom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OneRandom1509", + "email": "anantukid@gmail.com" + }, + "records": { + "CNAME": "folio-five-beta.vercel.app" + } +} diff --git a/domains/onion.json b/domains/onion.json index 6eefb1e00..63ccd7dbf 100644 --- a/domains/onion.json +++ b/domains/onion.json @@ -3,7 +3,7 @@ "username": "OnionDev1885", "discord": "OnionDev#1885" }, - "record": { + "records": { "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 index bc141a889..30a38c2c5 100644 --- a/domains/oniondev.json +++ b/domains/oniondev.json @@ -3,7 +3,7 @@ "username": "OnionDev1885", "discord": "OnionDev#1885" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all", "URL": "https://trgop.gq" diff --git a/domains/onkarsathe.json b/domains/onkarsathe.json new file mode 100644 index 000000000..ab983784b --- /dev/null +++ b/domains/onkarsathe.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/Onkarsathe007/portfolio", + "owner": { + "username": "Onkarsathe007", + "email": "onkarsathe96k@gmail.com" + }, + "records": { + "CNAME": "onkarsathe007.github.io" + } +} diff --git a/domains/onlive.json b/domains/onlive.json index 008f34d06..7de97fb74 100644 --- a/domains/onlive.json +++ b/domains/onlive.json @@ -3,7 +3,7 @@ "username": "onlive1337", "discord": "onlive" }, - "record": { + "records": { "CNAME": "onlive1337.github.io" } } diff --git a/domains/onthepixel.json b/domains/onthepixel.json index cb8a6792a..df925a524 100644 --- a/domains/onthepixel.json +++ b/domains/onthepixel.json @@ -5,7 +5,7 @@ "username": "TinyBrickBoy", "email": "leo@scherr.xyz" }, - "record": { + "records": { "CNAME": "play.onthepixel.net" } } diff --git a/domains/onvy.json b/domains/onvy.json index 5ca200119..08d0dc1fa 100644 --- a/domains/onvy.json +++ b/domains/onvy.json @@ -3,7 +3,7 @@ "username": "eiobc3a0", "email": "eiobc3a0@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/oogway.json b/domains/oogway.json index c7d15aef4..2867258a5 100644 --- a/domains/oogway.json +++ b/domains/oogway.json @@ -3,7 +3,7 @@ "username": "ActualMasterOogway", "email": "williasfun@gmail.com" }, - "record": { + "records": { "URL": "https://actualmasteroogway.github.io" } } diff --git a/domains/oops.json b/domains/oops.json index 7ed4cb71a..fd246e6d1 100644 --- a/domains/oops.json +++ b/domains/oops.json @@ -3,7 +3,7 @@ "username": "finnickguo", "email": "finnickguo@gmail.com" }, - "record": { + "records": { "A": ["150.109.115.77"] } } diff --git a/domains/oopshnik.json b/domains/oopshnik.json index d42f7b33f..1e225eee6 100644 --- a/domains/oopshnik.json +++ b/domains/oopshnik.json @@ -5,7 +5,7 @@ "username": "oopshnik", "discord": "1186159079178108982" }, - "record": { + "records": { "CNAME": "oopshnik.github.io" } } diff --git a/domains/opaps.json b/domains/opaps.json index 6b3edc504..3d67931f5 100644 --- a/domains/opaps.json +++ b/domains/opaps.json @@ -3,7 +3,7 @@ "username": "ais1175", "email": "wutau179@gmail.com" }, - "record": { + "records": { "A": ["43.229.135.123"] } } diff --git a/domains/openmalus.json b/domains/openmalus.json index 2c9409b2f..7037091e5 100644 --- a/domains/openmalus.json +++ b/domains/openmalus.json @@ -3,7 +3,7 @@ "username": "openmalus", "email": "openmalus@proton.me" }, - "record": { + "records": { "A": ["47.99.50.139"] } } diff --git a/domains/opott.json b/domains/opott.json index c7d07fdd6..df85f1fe9 100644 --- a/domains/opott.json +++ b/domains/opott.json @@ -3,7 +3,7 @@ "username": "opott", "email": "om.potter09@gmail.com" }, - "record": { + "records": { "URL": "https://opott.github.io", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/optidium.json b/domains/optidium.json index 2a3cfa767..9b029f269 100644 --- a/domains/optidium.json +++ b/domains/optidium.json @@ -5,7 +5,7 @@ "username": "XMODERLIVE", "email": "ka237133@gmail.com" }, - "record": { + "records": { "CNAME": "xmoderlive.github.io" } } diff --git a/domains/orangc.json b/domains/orangc.json index bad8300d4..78c1b0b2c 100644 --- a/domains/orangc.json +++ b/domains/orangc.json @@ -3,7 +3,7 @@ "username": "orangci", "discord": "orangc" }, - "record": { - "NS": ["nucum.ns.cloudflare.com", "tate.ns.cloudflare.com"] + "records": { + "URL": "https://orangc.net" } } diff --git a/domains/orange.json b/domains/orange.json index cef1c4605..78c1b0b2c 100644 --- a/domains/orange.json +++ b/domains/orange.json @@ -3,7 +3,7 @@ "username": "orangci", "discord": "orangc" }, - "record": { - "URL": "https://orangc.xyz" + "records": { + "URL": "https://orangc.net" } } diff --git a/domains/orangeleaf36.json b/domains/orangeleaf36.json index 60636ccd3..eb040602a 100644 --- a/domains/orangeleaf36.json +++ b/domains/orangeleaf36.json @@ -3,7 +3,7 @@ "username": "OrangeLeafDev", "email": "caluzajacob07@gmail.com" }, - "record": { + "records": { "CNAME": "orangeleafdev.github.io" } } diff --git a/domains/orangethewell.json b/domains/orangethewell.json index 721e6bcbe..2b6f9ab7f 100644 --- a/domains/orangethewell.json +++ b/domains/orangethewell.json @@ -3,7 +3,7 @@ "username": "orangethewell", "email": "orangethewell@gmail.com" }, - "record": { + "records": { "A": ["85.31.231.4"] } } diff --git a/domains/orbit.json b/domains/orbit.json new file mode 100644 index 000000000..be3b5b582 --- /dev/null +++ b/domains/orbit.json @@ -0,0 +1,10 @@ +{ + "description": "Discord bot site", + "owner": { + "username": "sheet315", + "email": "shaundereuv@gmail.com" + }, + "records": { + "A": ["167.114.194.156"] + } +} diff --git a/domains/orcapet.json b/domains/orcapet.json index f6811d88c..8711e592e 100644 --- a/domains/orcapet.json +++ b/domains/orcapet.json @@ -6,7 +6,7 @@ "email": "user0thenyancat@proton.me", "discord": "1085633540139532329" }, - "record": { + "records": { "CNAME": "orca-pet3910.github.io" } } diff --git a/domains/ordernest.json b/domains/ordernest.json new file mode 100644 index 000000000..e73e5d002 --- /dev/null +++ b/domains/ordernest.json @@ -0,0 +1,10 @@ +{ + "description": "Website in development for a non-profit organization", + "owner": { + "username": "gills", + "email": "gigi37300@gmail.com" + }, + "records": { + "CNAME": "ordernest.qevi7356.odns.fr" + } +} diff --git a/domains/orellanamatias.json b/domains/orellanamatias.json new file mode 100644 index 000000000..30344433d --- /dev/null +++ b/domains/orellanamatias.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OrellanaMatias", + "email": "meorellanaramirez@gmail.com", + "discord": "1151115185419997184" + }, + "records": { + "CNAME": "portafolio-orellana-workspace.vercel.app" + } +} diff --git a/domains/oreo.json b/domains/oreo.json index ae229d19c..a860c0742 100644 --- a/domains/oreo.json +++ b/domains/oreo.json @@ -6,7 +6,7 @@ "email": "bobgim20@gmail.com", "twitter": "YummyOreo3" }, - "record": { + "records": { "CNAME": "yummyoreo.github.io" } } diff --git a/domains/orestsaban.json b/domains/orestsaban.json index 1795837c2..1970f1545 100644 --- a/domains/orestsaban.json +++ b/domains/orestsaban.json @@ -4,13 +4,8 @@ "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" - ], + "records": { + "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/os.json b/domains/os.json index d700b9f2d..b45bc73e4 100644 --- a/domains/os.json +++ b/domains/os.json @@ -1,10 +1,9 @@ { "owner": { "username": "heyturkiye204", - "discord": "718374283642011728", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YJHWsoIpTsaRjylmi0-c_2BNyuXsWm4cCJRRcnHFOPJkGyeVjNY809QQTzVQQuSoCgynyAv9VMTr54ZVc3AsjChVJWHCOP-Yz9Ajwfpbg1r3rHDtw7srO0RJU3Vp5afUNW4BnLE9pnOHPx_vGXVRb7KvITlAxj8GSKGzPYgm0yG0X5Yv1ZUI7AQ4WKngNl46n-9b0F9cWyTAPGmjeQMC6epBIrWYQQsWWG8Yjtpzfmw_FUipIrmrqkYl1Qy-RFZxtXLR7mTdewioJTFz2aVWKs7EyS4L0ok43yoOnPu6hGk7NOIIOPfLQpa4U2cdJzcCoFiaBeoSQGpXsbX7-JW3tA.CX_ALvG4kKdcCx21vPhwKg.ghxIF1QlhqFsyzeHnNybQDXByjJuvlqxLKMBL-HziRlnqfAxRyfvwCYwqiGM8oUdgwlhMKQxVx_HIH7sRMCdcjkOz04f9bZrzQCxJQvxDkiw0ePfwZgdqIO6ph-k0zQNBBqf40tkL_fNb0nzEq84LQ.Xl_zhcLwxfih4J4_xUuiSA" + "discord": "718374283642011728" }, - "record": { + "records": { "CNAME": "cdn-rsdv-hey.netlify.app" } } diff --git a/domains/osada.json b/domains/osada.json index d3823a364..832fcfa46 100644 --- a/domains/osada.json +++ b/domains/osada.json @@ -4,7 +4,7 @@ "email": "osadavidath@gmail.com", "twitter": "osadavidath" }, - "record": { + "records": { "URL": "https://osada-is-a-dev.vercel.app" } } diff --git a/domains/osama.json b/domains/osama.json new file mode 100644 index 000000000..e35b7f42d --- /dev/null +++ b/domains/osama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/osho.json b/domains/osho.json index f947a746a..a7ca9e913 100644 --- a/domains/osho.json +++ b/domains/osho.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "profxadke", - "email": "xadkeg@duck.com" - }, - "record": { - "CNAME": "profxadke.github.io" - } + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "records": { + "CNAME": "profxadke.github.io" + } } diff --git a/domains/otter.json b/domains/otter.json index 651305607..781e8cba3 100644 --- a/domains/otter.json +++ b/domains/otter.json @@ -5,7 +5,7 @@ "username": "OtterCodes101", "email": "oliver.anderson4435@gmail.com" }, - "record": { + "records": { "CNAME": "ottercodes101.github.io" } } diff --git a/domains/outroninja.json b/domains/outroninja.json index 3a60b9d0d..e8ca7ea13 100644 --- a/domains/outroninja.json +++ b/domains/outroninja.json @@ -3,7 +3,7 @@ "username": "outroninja", "email": "outroninjaa@gmail.com" }, - "record": { + "records": { "URL": "https://outroninja.vercel.app" } } diff --git a/domains/overshifted.json b/domains/overshifted.json index c57395025..71814893e 100644 --- a/domains/overshifted.json +++ b/domains/overshifted.json @@ -3,7 +3,7 @@ "username": "OverShifted", "email": "prowidgs@gmail.com" }, - "record": { + "records": { "CNAME": "overshifted.github.io" } } diff --git a/domains/ovillafuerte94.json b/domains/ovillafuerte94.json index d80b59dce..daf0e7b9b 100644 --- a/domains/ovillafuerte94.json +++ b/domains/ovillafuerte94.json @@ -5,7 +5,7 @@ "username": "ovillafuerte94", "email": "ovillafuerte.94@gmail.com" }, - "record": { + "records": { "CNAME": "ovillafuerte94.github.io" } } diff --git a/domains/owais.json b/domains/owais.json new file mode 100644 index 000000000..407b86359 --- /dev/null +++ b/domains/owais.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/Muhammad-Owais-Warsi/portfolio2.1", + "owner": { + "username": "Muhammad-Owais-Warsi", + "email": "warsimuhammadowais@gmail.com" + }, + "records": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/oways.json b/domains/oways.json index af59c0c12..43ce3eb83 100644 --- a/domains/oways.json +++ b/domains/oways.json @@ -1,10 +1,9 @@ { "owner": { "username": "owayys", - "discord": "247290252941590528", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FflqC5vxx2tCbycFekRghumtS6tE1lpXYp9pVYDYBmgjkR4j7MqsQ4foZrVZpX2zGQb4q5j1-v5drvUyH0etOCQkWyoMKbd6a_McTXNk-bseqJigoLS5Hcy37-KcN8qg1hkiRs6telGDJuNUErYKS3WO091Dkr1o-o_AsXAM2T-XNTciE1RFexrHcd_LlTSmwWUsubgJ7CnBoBhTNGkI5-L2dL4Sl8lheY7mXNbkVgMgDCoyzE8oHrt_1U0GTXGu9WSaAxaIo-jU5STWfvgdlNElEpti3yhaWHBlSyTueiE183-qVIu5DGUq3OuNz234y2yOY2PS_HvxULLBibSSSA.giN0WBv3jgt9RtOek-GaMQ.98AT5bnunl4fl52ShWBfpwWhAxIhuLvaBK1g6riZm0rZt-d1rFOgRmzW20nX2DWmWRp8SEMFVg7-0M-dNRkdMvGPex_VIy8AHdW2_EmEwcA.TPlreyvul6OSkcaQeosRHw" + "discord": "247290252941590528" }, - "record": { + "records": { "CNAME": "owayys.github.io" } } diff --git a/domains/owen.json b/domains/owen.json new file mode 100644 index 000000000..b02a57c58 --- /dev/null +++ b/domains/owen.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "WuSandWitch" + }, + "records": { + "CNAME": "wusandwitch.zudo.cc" + } +} diff --git a/domains/owens.json b/domains/owens.json new file mode 100644 index 000000000..92c9b95bb --- /dev/null +++ b/domains/owens.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "owenslopez211" + }, + "records": { + "CNAME": "owenslopez211.github.io" + } +} diff --git a/domains/owentech.json b/domains/owentech.json deleted file mode 100644 index c7ff567a7..000000000 --- a/domains/owentech.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Owen's website", - "owner": { - "username": "owentechv", - "email": "dowenx83@gmail.com" - }, - "record": { - "CNAME": "owentechv.github.io" - } -} diff --git a/domains/owl.json b/domains/owl.json deleted file mode 100644 index c1ee8caa7..000000000 --- a/domains/owl.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "wdh.app" - }, - "proxied": true -} diff --git a/domains/owo.json b/domains/owo.json index cef1c4605..78c1b0b2c 100644 --- a/domains/owo.json +++ b/domains/owo.json @@ -3,7 +3,7 @@ "username": "orangci", "discord": "orangc" }, - "record": { - "URL": "https://orangc.xyz" + "records": { + "URL": "https://orangc.net" } } diff --git a/domains/owofied.json b/domains/owofied.json index 9335a7805..cdb0d41be 100644 --- a/domains/owofied.json +++ b/domains/owofied.json @@ -4,7 +4,7 @@ "email": "xiro@duck.com", "discord": "owofied" }, - "record": { + "records": { "CNAME": "personal-page-3ps.pages.dev" } } diff --git a/domains/owonico.json b/domains/owonico.json index 4e43c078d..562c86b72 100644 --- a/domains/owonico.json +++ b/domains/owonico.json @@ -3,7 +3,7 @@ "username": "OwoNico", "email": "nicoytwastaken@gmail.com" }, - "record": { + "records": { "URL": "https://www.owonico.cf" } } diff --git a/domains/oxmc.json b/domains/oxmc.json index 3aba52655..2c554d37f 100644 --- a/domains/oxmc.json +++ b/domains/oxmc.json @@ -4,13 +4,8 @@ "email": "oxmc7769.mail@gmail.com", "discord": "oxmc7769" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=contact:oxmc7769.mail@gmail.com,jadenmc:oxmc7769.mail@gmail.com,buisness:oxmc7769.mail@gmail.com" } diff --git a/domains/oxy.json b/domains/oxy.json index 5ee976ea1..657de5acf 100644 --- a/domains/oxy.json +++ b/domains/oxy.json @@ -3,7 +3,7 @@ "username": "0xyc0de", "email": "alexutu49@outlook.com" }, - "record": { + "records": { "CNAME": "0xyc0de.github.io" } } diff --git a/domains/oyepriyansh.json b/domains/oyepriyansh.json index 24cb37034..6070f6f42 100644 --- a/domains/oyepriyansh.json +++ b/domains/oyepriyansh.json @@ -3,7 +3,7 @@ "username": "oyepriyansh", "email": "hi@priyansh.app" }, - "record": { + "records": { "CNAME": "priyanshprajapat.pages.dev" } } diff --git a/domains/p-kinjal.json b/domains/p-kinjal.json index 17bf2caab..45e599eb0 100644 --- a/domains/p-kinjal.json +++ b/domains/p-kinjal.json @@ -4,7 +4,7 @@ "owner": { "username": "p-kinjal" }, - "record": { + "records": { "CNAME": "p-kinjal.github.io" } } diff --git a/domains/p.json b/domains/p.json index 04961f75d..31de84aba 100644 --- a/domains/p.json +++ b/domains/p.json @@ -1,9 +1,9 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com" + "email": "priyansxu@yahoo.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/p1raidz.json b/domains/p1raidz.json index d8d72cf51..7aea70275 100644 --- a/domains/p1raidz.json +++ b/domains/p1raidz.json @@ -3,7 +3,7 @@ "username": "p1raidz", "email": "adithyaalex5@gmail.com" }, - "record": { + "records": { "CNAME": "p1raidz.github.io" } } diff --git a/domains/p2m.json b/domains/p2m.json index c2f6095fb..1acac3383 100644 --- a/domains/p2m.json +++ b/domains/p2m.json @@ -5,7 +5,7 @@ "username": "Philipou", "email": "philippe.lestrohan@les4vents.eu" }, - "record": { + "records": { "A": ["91.224.149.29"] } } diff --git a/domains/p4bu1.json b/domains/p4bu1.json index 7a20eb789..30a596fb8 100644 --- a/domains/p4bu1.json +++ b/domains/p4bu1.json @@ -1,10 +1,9 @@ { "owner": { "username": "pabu1san", - "discord": "1012270723663925278", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.B9KDLtWYgCT0YDOd4xQyAgKmSaDJipMXSMFCXUe3r7q_5qh08iHTW8mK0BxMQ2bYPKEuMsfAEWwu6t3g4A_kXBb-GSaDvFfggge46WFV-rlPU7Vcc0i4WR8Uonna_y2WZzS9T5JrEnbMC2I7_5JihjAaOzD5Gr2-TCfm4L-Bk6TGLOnkDmj1hmlLsTFe7tHy5BhYgxIWsocbxeBrtRFMSqCUubgIh2MM4sz0QK9wWcIp3orJKDiD2WpdA552gTeUff5nuTQrwgxTwv4Cxy45wOM5E4hc9pvr7k7VB7oG6dNT_5U2WuBEFyaYjH0gHI0kF7exk0m-eLkXOcikLR6M5g.F_Vy2IBlPyy9sf-z76mPTA.F3g-ocOOvvBKyD0ipMYg39QeSck-zJ4d8vKY2bnnBw1tnTmWqPaxU7EJKJKP301gx_L1OoBN3I950LiNUB1SqEN-LrOybjVg-a58SayBT-4._dBIp2VZ_6grZywv78duSg" + "discord": "1012270723663925278" }, - "record": { + "records": { "MX": ["mx.forwarding-service.maildim.com"] } } diff --git a/domains/pa1.json b/domains/pa1.json new file mode 100644 index 000000000..5648acace --- /dev/null +++ b/domains/pa1.json @@ -0,0 +1,11 @@ +{ + "description": "It's my personal portfolio page", + "repo": "https://github.com/pavan-ambekar/pavan-ambekar.github.io", + "owner": { + "username": "pavan-ambekar", + "email": "pavan479eC@gmail.com" + }, + "records": { + "CNAME": "pavan-ambekar.github.io" + } +} diff --git a/domains/paban.json b/domains/paban.json index 18879ad6b..905875d21 100644 --- a/domains/paban.json +++ b/domains/paban.json @@ -5,7 +5,7 @@ "username": "Pabanjyoti", "email": "pawanjyotimail@gmail.com" }, - "record": { + "records": { "CNAME": "pabanjyoti.github.io" } } diff --git a/domains/pabitrabanerjee.json b/domains/pabitrabanerjee.json index e6a5ae2cc..81fca042f 100644 --- a/domains/pabitrabanerjee.json +++ b/domains/pabitrabanerjee.json @@ -4,7 +4,7 @@ "email": "rockstarpabitra2204@gmail.com", "discord": "1091585182974345366" }, - "record": { + "records": { "A": ["12.14.243.127"] } } diff --git a/domains/pablo.json b/domains/pablo.json index 5d252ea58..1a18ce25c 100644 --- a/domains/pablo.json +++ b/domains/pablo.json @@ -3,7 +3,7 @@ "username": "pasanflo", "email": "pasanflo@protonmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/paddycooper.json b/domains/paddycooper.json index 1f2b371e2..6deb1f4a3 100644 --- a/domains/paddycooper.json +++ b/domains/paddycooper.json @@ -3,7 +3,7 @@ "username": "PaddyCooper08", "email": "1210@rgsg.co.uk" }, - "record": { + "records": { "CNAME": "paddycooper.surge.sh" } } diff --git a/domains/paillat.json b/domains/paillat.json index b0b6f0bf8..e50de6b4a 100644 --- a/domains/paillat.json +++ b/domains/paillat.json @@ -3,7 +3,7 @@ "username": "Paillat-dev", "email": "me@paillat.dev" }, - "record": { + "records": { "CNAME": "paill.at" } } diff --git a/domains/painscreen.json b/domains/painscreen.json index df6526f0e..bdb32388d 100644 --- a/domains/painscreen.json +++ b/domains/painscreen.json @@ -4,7 +4,7 @@ "discord": "836012649959522384", "reddit": "u/ahhlifeeee" }, - "record": { + "records": { "CNAME": "ihategithub9000.github.io" } } diff --git a/domains/paiva.json b/domains/paiva.json index b451f8524..2574e2a32 100644 --- a/domains/paiva.json +++ b/domains/paiva.json @@ -4,7 +4,7 @@ "email": "david.paiva+github@my.istec.pt", "discord": "764778654626349086" }, - "record": { + "records": { "CNAME": "dpaiv0.github.io" } } diff --git a/domains/pajsen.json b/domains/pajsen.json index 92f021368..410cd8183 100644 --- a/domains/pajsen.json +++ b/domains/pajsen.json @@ -5,7 +5,7 @@ "username": "Pajsen9263", "email": "admin@cybercore.gq" }, - "record": { + "records": { "CNAME": "pajsen-media.github.io" } } diff --git a/domains/pal-rakesh-2.json b/domains/pal-rakesh-2.json index 237c9d611..25f6660a7 100644 --- a/domains/pal-rakesh-2.json +++ b/domains/pal-rakesh-2.json @@ -5,7 +5,7 @@ "username": "pal-rakesh", "email": "rakesh.pal@truestaz.com" }, - "record": { + "records": { "CNAME": "pal-rakesh.github.io" } } diff --git a/domains/palak.json b/domains/palak.json index ad11a082f..955f4acf0 100644 --- a/domains/palak.json +++ b/domains/palak.json @@ -4,7 +4,7 @@ "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/palekiox.json b/domains/palekiox.json index 7ea3e8f9c..20efa16d3 100644 --- a/domains/palekiox.json +++ b/domains/palekiox.json @@ -3,7 +3,7 @@ "username": "palekiox", "email": "zigzagrpg@gmail.com" }, - "record": { + "records": { "CNAME": "palekiox.github.io" } } diff --git a/domains/pan.json b/domains/pan.json new file mode 100644 index 000000000..fdb9c0a45 --- /dev/null +++ b/domains/pan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Currypan1229", + "email": "abcqqqwpvp@gmail.com" + }, + "records": { + "URL": "https://github.com/Currypan1229" + } +} diff --git a/domains/pana.json b/domains/pana.json index 711d51ad5..e9425a7f6 100644 --- a/domains/pana.json +++ b/domains/pana.json @@ -3,7 +3,7 @@ "username": "ANDREIP211109", "email": "panaandreimihai@gmail.com" }, - "record": { + "records": { "A": ["79.118.191.216"] } } diff --git a/domains/panashe-mapika.json b/domains/panashe-mapika.json new file mode 100644 index 000000000..c7831fdf9 --- /dev/null +++ b/domains/panashe-mapika.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "panda-zw" + }, + "records": { + "CNAME": "panashe.codes" + } +} diff --git a/domains/panashe.json b/domains/panashe.json new file mode 100644 index 000000000..c7831fdf9 --- /dev/null +++ b/domains/panashe.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "panda-zw" + }, + "records": { + "CNAME": "panashe.codes" + } +} diff --git a/domains/panchal-chirag.json b/domains/panchal-chirag.json index 23c5ea016..cae2e7a38 100644 --- a/domains/panchal-chirag.json +++ b/domains/panchal-chirag.json @@ -4,7 +4,7 @@ "owner": { "username": "panchal-chirag" }, - "record": { + "records": { "CNAME": "panchal-chirag.github.io" } } diff --git a/domains/panchal-jatin.json b/domains/panchal-jatin.json index eaa60b21b..1eaba96c0 100644 --- a/domains/panchal-jatin.json +++ b/domains/panchal-jatin.json @@ -4,7 +4,7 @@ "owner": { "username": "panchal-jatin" }, - "record": { + "records": { "CNAME": "panchal-jatin.github.io" } } diff --git a/domains/panchal-meet.json b/domains/panchal-meet.json index 5f174d5f9..8bdbd1d8c 100644 --- a/domains/panchal-meet.json +++ b/domains/panchal-meet.json @@ -4,7 +4,7 @@ "owner": { "username": "panchal-meet" }, - "record": { + "records": { "CNAME": "panchal-meet.github.io" } } diff --git a/domains/pancystudio.json b/domains/pancystudio.json index a50ded369..756940e74 100644 --- a/domains/pancystudio.json +++ b/domains/pancystudio.json @@ -1,10 +1,9 @@ { "owner": { "username": "ImTurbis", - "discord": "711329342193664012", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YzG5hvJGZpP7QEGLttKRRJ3aa_voQNqUebTs1wZb7kD-XVzdggqVkYzmW9nVppmqunMUZ9PumQGb_2LdjaB1UskfrxRb7z0NXdycFgZ2n44ADDhAFaYruOTLznglg02ni5htnfwmQSJtPjSMRa65foPNBGCqQFdQYCsx0DaD84havLlCvHMUdKZOgaJWgO75kfaf2toO7cbK_EXl17EN53gH54zixIKMNwSi_Ug8mEScECN_HJ7cRM5yu91IVdyQiwxemT5Ze01bAl6KmlCmJWcnO2-9qqvuv82K2WxHoKlLU-nmI77jJ_vr0w6rkxYeb1zW28LV6EKKCKfU1oYAog.B6Ik8FFPJoBvR9YZCw3dMw.xyWEoyFUZwTLIGiacwhtx0k3LJgQEd3vxuHZ9z9eAAHtSfJzeTzWvxCLiDnJ4Qwq00sDbfR0PNzvGBc9IoI002h0pBnAwp9cMDZHZk5biGo.enRsEf6i-7nlTeVgZSgGZA" + "discord": "711329342193664012" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/panda.json b/domains/panda.json new file mode 100644 index 000000000..026755b78 --- /dev/null +++ b/domains/panda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0pandadev", + "email": "contact@pandadev.net" + }, + "records": { + "CNAME": "pandadev.net" + } +} diff --git a/domains/pandaninjas.json b/domains/pandaninjas.json index 1ef2031c4..ddabfc2f6 100644 --- a/domains/pandaninjas.json +++ b/domains/pandaninjas.json @@ -3,7 +3,7 @@ "username": "pandaninjas", "email": "admin@malwarefight.gq" }, - "record": { + "records": { "CNAME": "pandaninjas.github.io" } } diff --git a/domains/pande.json b/domains/pande.json index 4bb8f779b..175885912 100644 --- a/domains/pande.json +++ b/domains/pande.json @@ -3,7 +3,7 @@ "username": "PandeCode", "email": "pandeshawnbenjamin@gmail.com" }, - "record": { + "records": { "URL": "https://pandecode.github.io/" } } diff --git a/domains/pandya-riddhi.json b/domains/pandya-riddhi.json index f89c2ddc9..6736bc811 100644 --- a/domains/pandya-riddhi.json +++ b/domains/pandya-riddhi.json @@ -4,7 +4,7 @@ "owner": { "username": "pandya-riddhi" }, - "record": { + "records": { "CNAME": "pandya-riddhi.github.io" } } diff --git a/domains/panel-luxxy.json b/domains/panel-luxxy.json index 0d72df397..40976b75c 100644 --- a/domains/panel-luxxy.json +++ b/domains/panel-luxxy.json @@ -3,7 +3,7 @@ "username": "Luxxy-GF", "email": "deniedaddicted@gmail.com" }, - "record": { + "records": { "CNAME": "panel.luxxy.xyz" } } diff --git a/domains/panel.devmatei.json b/domains/panel.devmatei.json deleted file mode 100644 index 9426b4aa6..000000000 --- a/domains/panel.devmatei.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "DevMatei", - "email": "matei.thoma@gmail.com" - }, - "record": { - "A": [ - "176.100.37.70" - ] - } - -} diff --git a/domains/panel.vulcanocraft.json b/domains/panel.vulcanocraft.json index baf8a4c5a..8277a1f53 100644 --- a/domains/panel.vulcanocraft.json +++ b/domains/panel.vulcanocraft.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cT0Sm5ImSgFtrSLPMnQCdiQ22eeG9cU-X47BHIi-PwL6zMYOeUdsPEOpqDci0QKqrY9F0htQgSrgftsz5RtsbO0NWJsMwLcDdJ7daHeJQLKEjK_mMjv0xwf7pM4rRzGaed7euFSMP-LWAy3yni3911hMfU31BKYpoLzKOAvlzIRzFx58yT2URT2a7pzXLKQjhOHrBepCE9ssYyWmHiOhh8-zbUi8rMqX0m8zDntWqTVjjOdjyfji4QTyaTNsGK5CoMQudYcY3LHaVFvWM2kTJ6sTu26bWRTIth09WWdegQMMtSxuQoo8BRd_gHcweSN-yE5a9PSo5yh8-_6f1EeX_Q.XQLnjpPi_TRxouddA3YfTQ.GMRXSo5jiV2gnabTbuZaNbb5etbBABBaof-7KggBf7CCy2J2E5RsE4Zy6Nwwer2AJ_QK8XnRn7z0W4ahjnFRMq5DTUzAUGqyY5qrAKuoSXBvVNrK9X0n2TwnyxzZPIHT.v-xaNb6vPxjQjEYSAPFXnw" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "vulcanopanel.pages.dev" } } diff --git a/domains/panel.xrap1dx.json b/domains/panel.xrap1dx.json index cf7422741..b3b178025 100644 --- a/domains/panel.xrap1dx.json +++ b/domains/panel.xrap1dx.json @@ -1,11 +1,10 @@ { "description": "making my cdn!!!", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "discord": "xrap1dx" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/pankaj.json b/domains/pankaj.json index 9a6a16246..15c293dc2 100644 --- a/domains/pankaj.json +++ b/domains/pankaj.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "1719pankaj", - "email": "1719pankaj@gmail.com" - }, - "record": { - "URL": "https://1719pankaj.github.io" - } +{ + "owner": { + "username": "1719pankaj", + "email": "1719pankaj@gmail.com" + }, + "records": { + "URL": "https://1719pankaj.github.io" + } } diff --git a/domains/panntod.json b/domains/panntod.json new file mode 100644 index 000000000..6f6893ad8 --- /dev/null +++ b/domains/panntod.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "panntod", + "email": "munjalindra.pandhu@gmail.com", + "discord": "975960358999171152" + }, + "records": { + "CNAME": "panntod-personal.vercel.app" + } +} diff --git a/domains/pansy.json b/domains/pansy.json index 0ad4dc48e..cb7885377 100644 --- a/domains/pansy.json +++ b/domains/pansy.json @@ -3,7 +3,7 @@ "username": "pansy27", "email": "uselessshogun99@gmail.com" }, - "record": { + "records": { "CNAME": "pansy27.github.io" } } diff --git a/domains/paperstar.json b/domains/paperstar.json index 66e10fd24..c030a462f 100644 --- a/domains/paperstar.json +++ b/domains/paperstar.json @@ -3,7 +3,7 @@ "username": "2paperstar", "email": "lee@paperst.ar" }, - "record": { + "records": { "CNAME": "paperst.ar" } } diff --git a/domains/papyrus.json b/domains/papyrus.json index a2bec565f..b11906ce7 100644 --- a/domains/papyrus.json +++ b/domains/papyrus.json @@ -5,7 +5,7 @@ "username": "Papyrus0444", "email": "vladbogdanmicu@gmail.com" }, - "record": { + "records": { "CNAME": "papyrus0444.github.io" } } diff --git a/domains/paranoiasystem.json b/domains/paranoiasystem.json index 3b0c8decb..838fdbe05 100644 --- a/domains/paranoiasystem.json +++ b/domains/paranoiasystem.json @@ -5,7 +5,7 @@ "username": "paranoiasystem", "email": "marcoferraioli@live.com" }, - "record": { + "records": { "CNAME": "paranoiasystem.github.io" } } diff --git a/domains/park.json b/domains/park.json index 0a6aa8528..8679fad37 100644 --- a/domains/park.json +++ b/domains/park.json @@ -1,10 +1,9 @@ { "owner": { "username": "parknich", - "discord": "556850704770138114", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RMlyfY4mGtUlaUQkOaxoaNdyfU8ldylf06Qtl7tYhrU_ivjmCSHks5pygP37oEYyHN6NfenY9FntFxaddwKCbb5eGeGs7cO4M213MPs9agSU-3NzvjLg6Kya5bjVrlhcF8KVXihW5ITNp4MUA20gPuM2EfImenDGnwe0azXhSuiFbaDvak1Yg51jy3eAnKi3OUgPF8TfOhHO_Hu4bGg5yq87P8Sp1X7w6ZhThgX83ZUCdH16xHIa_oUhnT7AQZIrZlLyT6SSDRg7oryZVPLlD1E-BrqEQlZXPuZPtDRxrNXmISCSorBCDd5fGAAEHN_RG_8qs2ysJoDTQ9E_g5v23g.8cbDPSl8X94DpagdJchXVw.rSdmAuGBzGk33r1XVbD6BkPI6CAi7BQ5lrXfTmuEHXvNELMytmHQL4uGzXgyKoAsQYbpRhwtoug6vE48VA2ydL08AgwlX3rdp9W_20E_gtgWZu36-2Diqy75WHbl567B.uQeFnbQ5lEE89z14li7Rig" + "discord": "556850704770138114" }, - "record": { + "records": { "CNAME": "bio.parknich.xyz" } } diff --git a/domains/parmar-dixita.json b/domains/parmar-dixita.json index cd9000840..02f284014 100644 --- a/domains/parmar-dixita.json +++ b/domains/parmar-dixita.json @@ -4,7 +4,7 @@ "owner": { "username": "parmar-dixita" }, - "record": { + "records": { "CNAME": "parmar-dixita.github.io" } } diff --git a/domains/parovoz.json b/domains/parovoz.json index 656f0dd5d..87bba1357 100644 --- a/domains/parovoz.json +++ b/domains/parovoz.json @@ -3,7 +3,7 @@ "username": "parov0z", "email": "andrey.android7890@mail.ru" }, - "record": { + "records": { "CNAME": "parovoz.tw1.ru" } } diff --git a/domains/parpok.json b/domains/parpok.json index d25878efe..31fe45bae 100644 --- a/domains/parpok.json +++ b/domains/parpok.json @@ -3,7 +3,7 @@ "username": "parpok", "email": "patrykpucilowski40@gmail.com" }, - "record": { + "records": { "CNAME": "parpok.xyz" } } diff --git a/domains/parrot.json b/domains/parrot.json index 64dce2b97..f9e5a3f93 100644 --- a/domains/parrot.json +++ b/domains/parrot.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "A": ["34.120.54.55"], "AAAA": ["2600:1901:0:6d85::"] } diff --git a/domains/parrothacker1.json b/domains/parrothacker1.json index 31c37daeb..fe53eb3c5 100644 --- a/domains/parrothacker1.json +++ b/domains/parrothacker1.json @@ -7,7 +7,7 @@ "twitter": "parrothacker1", "discord": "parrothacker1" }, - "record": { + "records": { "CNAME": "parrothacker1.github.io" } } diff --git a/domains/parsewar.json b/domains/parsewar.json index 549590ce7..40fe5cd8c 100644 --- a/domains/parsewar.json +++ b/domains/parsewar.json @@ -3,7 +3,7 @@ "username": "AtharvParsewar", "email": "atharvparsewar@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/parshnt.json b/domains/parshnt.json index 169b9886b..5cadd8597 100644 --- a/domains/parshnt.json +++ b/domains/parshnt.json @@ -1,11 +1,10 @@ { "description": "YAY, new place for my Portfolio", - "repo": "https://github.com/parshnt", "owner": { "username": "parshnt", "email": "hi.parshant@gmail.com" }, - "record": { + "records": { "CNAME": "parshnt.github.io" } } diff --git a/domains/parth.json b/domains/parth.json index e920cebd1..9490c655a 100644 --- a/domains/parth.json +++ b/domains/parth.json @@ -5,7 +5,7 @@ "username": "parthpanchal123", "email": "parthpanchal53@gmail.com" }, - "record": { + "records": { "CNAME": "parthpanchal123.github.io" } } diff --git a/domains/parthmandawaria.json b/domains/parthmandawaria.json new file mode 100644 index 000000000..8ce73aed7 --- /dev/null +++ b/domains/parthmandawaria.json @@ -0,0 +1,10 @@ +{ + "description": "crazyy domain for my portfolio", + "owner": { + "username": "parthhcodess", + "email": "parthmandawaria@gmail.com" + }, + "records": { + "CNAME": "parthhcodess.github.io" + } +} diff --git a/domains/pascal-jacq.json b/domains/pascal-jacq.json index b333c5537..2a23fbfc0 100644 --- a/domains/pascal-jacq.json +++ b/domains/pascal-jacq.json @@ -3,7 +3,7 @@ "username": "Pascal-Jacq", "email": "pascal.jacq29@gmail.com" }, - "record": { + "records": { "A": ["80.119.158.22"] } } diff --git a/domains/pashigin.json b/domains/pashigin.json index d32fbb69f..e70774f95 100644 --- a/domains/pashigin.json +++ b/domains/pashigin.json @@ -5,7 +5,7 @@ "username": "pashigin", "telegram": "pashigin" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/pasindu.json b/domains/pasindu.json index f34884b8f..c5a526911 100644 --- a/domains/pasindu.json +++ b/domains/pasindu.json @@ -3,7 +3,7 @@ "username": "PasinduUpendra", "email": "pasindu@toadcreatives.com" }, - "record": { + "records": { "URL": "https://github.com/pasinduupendra", "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=pasindu@toadcreatives.com" diff --git a/domains/passadissubmari.json b/domains/passadissubmari.json index f264feb98..647547b7b 100644 --- a/domains/passadissubmari.json +++ b/domains/passadissubmari.json @@ -5,7 +5,7 @@ "username": "Cucusise", "email": "cucusise@gmail.com" }, - "record": { + "records": { "CNAME": "cucusise.github.io" } } diff --git a/domains/passed.json b/domains/passed.json index 18c7e2ba8..391510c77 100644 --- a/domains/passed.json +++ b/domains/passed.json @@ -1,10 +1,9 @@ { "owner": { "username": "Dn1w", - "discord": "923208452581511199", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YrCOGlefwiQLBjZKVl7fCH8lBcSZ35Dqye3FZvKNdBzwwVnVoB9EtUx9yxkKvMejmqPtBnc-Vd0qtwqMTP_XeA7N1Pb_uAXP5LJ0eVAK6A5dQV7PHD_91Zx9R1olSeJgxJpIXHM1VueDHDlqNSLy-iYE9xnF64NAMBwDBNW_NpRYzYJZdN4xNHx2fnHVeKq2U1YA643JGLDZCGSDzvPxDl6jYGsOP3ik56upOEbzlztzhcbEP1e7Tf16KHCGaObgu3gEhfQGixenW-FjBORCpAn1ECiGwSnbDZQgS-gcqKQmVagPT2AQTzd5yKIAqb6zO1vNySa_KXWwobON5rJ7lA.jvJTlSgE2hlML0SOblB-tw.hVJGFeU0buh0JsV4LSwoV0Gcc9HGnyiyXAklqJ9zgaDx5FX-vLT7eUoV0FdwKtMWr3bxbZ6FAWHAjJMv1vx5LQLnYHjDfDzG0-SpjY33y_M.6KvQ4vVBC9v0af7qCsc5mw" + "discord": "923208452581511199" }, - "record": { + "records": { "CNAME": "yuwindev.github.io" } } diff --git a/domains/patel-darshit.json b/domains/patel-darshit.json index 8e42f01e5..ef58c3b70 100644 --- a/domains/patel-darshit.json +++ b/domains/patel-darshit.json @@ -5,7 +5,7 @@ "username": "Patel-Darshit", "email": "darshit.patel@truestaz.com" }, - "record": { + "records": { "CNAME": "patel-darshit.github.io" } } diff --git a/domains/patel-hetal.json b/domains/patel-hetal.json index ad599c51d..6d824f9b3 100644 --- a/domains/patel-hetal.json +++ b/domains/patel-hetal.json @@ -4,7 +4,7 @@ "owner": { "username": "patel-hetal" }, - "record": { + "records": { "CNAME": "patel-hetal.github.io" } } diff --git a/domains/patel-jatin.json b/domains/patel-jatin.json index c89232408..a6fd86195 100644 --- a/domains/patel-jatin.json +++ b/domains/patel-jatin.json @@ -4,7 +4,7 @@ "owner": { "username": "patel-jatin" }, - "record": { + "records": { "CNAME": "patel-jatin.github.io" } } diff --git a/domains/patel-kalpesh.json b/domains/patel-kalpesh.json index 53516dd29..5143059e5 100644 --- a/domains/patel-kalpesh.json +++ b/domains/patel-kalpesh.json @@ -5,7 +5,7 @@ "username": "Patle-Kalpesh", "email": "kalpesh.patel@truestaz.com" }, - "record": { + "records": { "CNAME": "patle-kalpesh.github.io" } } diff --git a/domains/patel-komal.json b/domains/patel-komal.json index 65b760b87..84fb8c4b9 100644 --- a/domains/patel-komal.json +++ b/domains/patel-komal.json @@ -4,7 +4,7 @@ "owner": { "username": "patel-komal" }, - "record": { + "records": { "CNAME": "patel-komal.github.io" } } diff --git a/domains/patel-monal.json b/domains/patel-monal.json index 76a06570f..e693523f8 100644 --- a/domains/patel-monal.json +++ b/domains/patel-monal.json @@ -4,7 +4,7 @@ "owner": { "username": "patel-monal" }, - "record": { + "records": { "CNAME": "patel-monal.github.io" } } diff --git a/domains/patel-parthiv.json b/domains/patel-parthiv.json index 94201ee9a..392379c93 100644 --- a/domains/patel-parthiv.json +++ b/domains/patel-parthiv.json @@ -4,7 +4,7 @@ "owner": { "username": "patel-parthiv" }, - "record": { + "records": { "CNAME": "patel-parthiv.github.io" } } diff --git a/domains/patel-radhika.json b/domains/patel-radhika.json index 2edb9a59e..5e1a92b1a 100644 --- a/domains/patel-radhika.json +++ b/domains/patel-radhika.json @@ -5,7 +5,7 @@ "username": "patel-radhika", "email": "radhika.patel@truestaz.com" }, - "record": { + "records": { "CNAME": "patel-radhika.github.io" } } diff --git a/domains/patelhardik-p.json b/domains/patelhardik-p.json index 559279048..53789af5f 100644 --- a/domains/patelhardik-p.json +++ b/domains/patelhardik-p.json @@ -4,7 +4,7 @@ "owner": { "username": "patelhardik-p" }, - "record": { + "records": { "CNAME": "patelhardik-p.github.io" } } diff --git a/domains/pathan-imran.json b/domains/pathan-imran.json index 05e54c671..5aa2aed65 100644 --- a/domains/pathan-imran.json +++ b/domains/pathan-imran.json @@ -4,7 +4,7 @@ "owner": { "username": "pathan-imran" }, - "record": { + "records": { "CNAME": "pathan-imran.github.io" } } diff --git a/domains/pati.json b/domains/pati.json index c10492779..7141d2619 100644 --- a/domains/pati.json +++ b/domains/pati.json @@ -3,7 +3,7 @@ "username": "EmojiPati", "email": "bestami355karakaya@gmail.com" }, - "record": { + "records": { "CNAME": "termoji.pages.dev" } } diff --git a/domains/patin.json b/domains/patin.json index 3e04759c5..fe3a101b3 100644 --- a/domains/patin.json +++ b/domains/patin.json @@ -4,7 +4,7 @@ "email": "patinopsu@gmail.com", "discord": "patin_osu" }, - "record": { + "records": { "A": ["5.78.24.5"] } } diff --git a/domains/patriciafelix.json b/domains/patriciafelix.json index 02b75e638..c42fac22d 100644 --- a/domains/patriciafelix.json +++ b/domains/patriciafelix.json @@ -5,7 +5,7 @@ "username": "patriciafelixx", "email": "patriciafelixx@outlook.com" }, - "record": { + "records": { "CNAME": "patriciafelixx.github.io" } } diff --git a/domains/patrick.json b/domains/patrick.json new file mode 100644 index 000000000..21ae65ad2 --- /dev/null +++ b/domains/patrick.json @@ -0,0 +1,10 @@ +{ + "description": "My portfolio website made with GoHugo", + "owner": { + "username": "davidsneighbour", + "email": "pkollitsch+isadev@gmail.com" + }, + "records": { + "URL": "https://kollitsch.dev/" + } +} diff --git a/domains/patrickzhou.json b/domains/patrickzhou.json index bee176071..8afe00354 100644 --- a/domains/patrickzhou.json +++ b/domains/patrickzhou.json @@ -3,7 +3,7 @@ "username": "patrickzhou1234", "discord": "moist__nugget" }, - "record": { + "records": { "CNAME": "patrickzhou1234.github.io" } } diff --git a/domains/patuiqx.json b/domains/patuiqx.json index c93693610..7956c6ac3 100644 --- a/domains/patuiqx.json +++ b/domains/patuiqx.json @@ -3,7 +3,7 @@ "username": "GyShinA", "email": "MonicaGyoShin@gmail.com" }, - "record": { + "records": { "CNAME": "gyshina.github.io" } } diff --git a/domains/pau.json b/domains/pau.json new file mode 100644 index 000000000..b2008f34b --- /dev/null +++ b/domains/pau.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paugp", + "email": "hello@pau.dev" + }, + "records": { + "URL": "https://pau.dev/" + } +} diff --git a/domains/paul.json b/domains/paul.json index 8628d3dbe..4f6ffbb84 100644 --- a/domains/paul.json +++ b/domains/paul.json @@ -1,11 +1,10 @@ { "description": "My Personal Landing Page!", - "repo": "https://github.com/NotKaskus", "owner": { "username": "NotKaskus", "email": "kaskus45@protonmail.com" }, - "record": { + "records": { "URL": "https://paulandrew.vercel.app/" } } diff --git a/domains/paul8liveira.json b/domains/paul8liveira.json new file mode 100644 index 000000000..bf14edbed --- /dev/null +++ b/domains/paul8liveira.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paul8liveira", + "email": "paul8liveira@gmail.com" + }, + "records": { + "CNAME": "paul8liveira.vercel.app" + } +} diff --git a/domains/paula.json b/domains/paula.json index dd0530491..2d935cd3e 100644 --- a/domains/paula.json +++ b/domains/paula.json @@ -3,7 +3,7 @@ "username": "pbabbicola", "email": "paula.babbicola@gmail.com" }, - "record": { + "records": { "A": ["185.26.156.151"], "AAAA": ["2a00:d0c0:200:0:64fc:adff:fef0:8a72"] } diff --git a/domains/paulmarc.json b/domains/paulmarc.json new file mode 100644 index 000000000..30a85c469 --- /dev/null +++ b/domains/paulmarc.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Dev website for paulmarc.is-a.dev", + "repo": "https://github.com/paulmarc", + "owner": { + "username": "paulmarc", + "email": "develop@paulmarc.org" + }, + "records": { + "URL": "https://github.com/paulmarc" + }, + "proxied": false +} diff --git a/domains/pavan.json b/domains/pavan.json index 5b77857fa..17e97d125 100644 --- a/domains/pavan.json +++ b/domains/pavan.json @@ -3,7 +3,7 @@ "username": "PavanKumarGurram", "email": "gurrampavankumar1@gmail.com" }, - "record": { + "records": { "URL": "https://pavangurram.com" } } diff --git a/domains/pavanc.json b/domains/pavanc.json new file mode 100644 index 000000000..79e0ecf36 --- /dev/null +++ b/domains/pavanc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pavancos", + "email": "pavankc005@gmail.com" + }, + "records": { + "URL": "https://pavanc.me" + } +} diff --git a/domains/pavankteja.json b/domains/pavankteja.json new file mode 100644 index 000000000..6a6eac24c --- /dev/null +++ b/domains/pavankteja.json @@ -0,0 +1,11 @@ +{ + "description": "Want to use it to showcase my portfolio", + "repo": "https://github.com/pavan-k-teja/pavan-k-teja.github.io", + "owner": { + "username": "pavan-k-teja", + "email": "pavan@pavan.gg" + }, + "records": { + "CNAME": "pavan-k-teja.github.io" + } +} diff --git a/domains/pavi.json b/domains/pavi.json index 35aabf57a..e5663a38b 100644 --- a/domains/pavi.json +++ b/domains/pavi.json @@ -3,7 +3,7 @@ "username": "rekcah-pavi", "email": "paviththanravi@gmail.com" }, - "record": { + "records": { "CNAME": "rekcah-pavi.github.io" } } diff --git a/domains/pavlo.json b/domains/pavlo.json new file mode 100644 index 000000000..5f19a0c80 --- /dev/null +++ b/domains/pavlo.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation for https://github.com/olvap80", + "repo": "https://github.com/olvap80", + "owner": { + "username": "olvap80", + "email": "olvap@i.ua" + }, + "records": { + "CNAME": "olvap80.github.io" + } +} diff --git a/domains/pawan.json b/domains/pawan.json new file mode 100644 index 000000000..c10868c0e --- /dev/null +++ b/domains/pawan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pawansubedi889", + "email": "mail@pawansubedi.me" + }, + "records": { + "URL": "https://www.pawansubedi.me/" + } +} diff --git a/domains/paylink.joe50097.json b/domains/paylink.joe50097.json new file mode 100644 index 000000000..de4492944 --- /dev/null +++ b/domains/paylink.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "CNAME": "paylink-comming-soon.netlify.app" + } +} diff --git a/domains/pc.json b/domains/pc.json index 007d4d120..9fbce270c 100644 --- a/domains/pc.json +++ b/domains/pc.json @@ -4,7 +4,7 @@ "email": "maxpjh0528@naver.com", "discord": "381062768385720321" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/pdf.aaqif.json b/domains/pdf.aaqif.json new file mode 100644 index 000000000..fbb28c8c1 --- /dev/null +++ b/domains/pdf.aaqif.json @@ -0,0 +1,11 @@ +{ + "description": "PDF", + "repo": "https://github.com/aaqifshafi/chat-with-pdf", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "records": { + "CNAME": "chat-with-pdf-aaqifshafis-projects.vercel.app" + } +} diff --git a/domains/pds.hcj.json b/domains/pds.hcj.json new file mode 100644 index 000000000..f95ba99d4 --- /dev/null +++ b/domains/pds.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "records": { + "CNAME": "serveo.net" + } +} diff --git a/domains/peach.json b/domains/peach.json index ade9fef83..caf2ed431 100644 --- a/domains/peach.json +++ b/domains/peach.json @@ -6,7 +6,7 @@ "email": "azisbillah95@gmail.com", "discord": "edrea#1717" }, - "record": { + "records": { "CNAME": "ruw3t.github.io" } } diff --git a/domains/peachy.json b/domains/peachy.json index f89e3335f..121c7a003 100644 --- a/domains/peachy.json +++ b/domains/peachy.json @@ -4,7 +4,7 @@ "email": "minecraft350star@gmail.com", "discord": "781577857511587900" }, - "record": { + "records": { "CNAME": "peachysy.github.io" } } diff --git a/domains/peantastic.json b/domains/peantastic.json index 417f24900..34a2943a9 100644 --- a/domains/peantastic.json +++ b/domains/peantastic.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "peantastic", - "email": "leostark.vndev@gmail.com" - }, - "description": "👋 Hello! I'm Do Tan Tinh, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.", - "repo": "https://github.com/peantastic/", - "record": { - "CNAME": "dotantinh.onrender.com" - } -} \ No newline at end of file + "owner": { + "username": "peantastic", + "email": "leostark.vndev@gmail.com" + }, + "description": "👋 Hello! I'm Do Tan Tinh, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.", + "repo": "https://github.com/peantastic/", + "records": { + "CNAME": "dotantinh.onrender.com" + } +} diff --git a/domains/pearlcz.json b/domains/pearlcz.json index 56f953b26..8157c8e5c 100644 --- a/domains/pearlcz.json +++ b/domains/pearlcz.json @@ -6,7 +6,7 @@ "email": "vitekjurcik@gmail.com", "twitter": "pearl_czoffic" }, - "record": { + "records": { "CNAME": "0pearlcz0.github.io" } } diff --git a/domains/pedrito.json b/domains/pedrito.json index 4aca01f86..60d8d0701 100644 --- a/domains/pedrito.json +++ b/domains/pedrito.json @@ -6,7 +6,7 @@ "email": "pegomsan@gmail.com", "twitter": "Pedro929953698" }, - "record": { + "records": { "CNAME": "ranojay1.github.io" } } diff --git a/domains/pedrofff.json b/domains/pedrofff.json new file mode 100644 index 000000000..4f592f61e --- /dev/null +++ b/domains/pedrofff.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/Pedrofff23/Portfolio", + "owner": { + "username": "Pedrofff23", + "email": "pmendes09@hotmail.com" + }, + "records": { + "CNAME": "portfolio-opal-theta-47.vercel.app" + } +} diff --git a/domains/pele.json b/domains/pele.json index eceae0d10..865fad1e4 100644 --- a/domains/pele.json +++ b/domains/pele.json @@ -4,7 +4,7 @@ "email": "pele.puric@gmail.com", "discord": "483261654818226186" }, - "record": { + "records": { "A": ["38.242.242.224"] } } diff --git a/domains/peme969.json b/domains/peme969.json index cab3805f5..f6ee4e479 100644 --- a/domains/peme969.json +++ b/domains/peme969.json @@ -1,9 +1,11 @@ { "owner": { "username": "peme969", - "email": "mrcoderpeme@gmail.com" + "email": "me@peme969.dev" }, - "record": { - "CNAME": "peme969.github.io" + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "TXT": ["forward-email=hello:me@peme969.dev, bot:bot@peme969.dev"], + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"] } } diff --git a/domains/pemtshewang.json b/domains/pemtshewang.json index f226df434..124a8db51 100644 --- a/domains/pemtshewang.json +++ b/domains/pemtshewang.json @@ -6,7 +6,7 @@ "email": "pemtshewang500@gmail.com", "twitter": "pemtshewang_4" }, - "record": { + "records": { "CNAME": "pemtshewang.github.io" } } diff --git a/domains/penguin.json b/domains/penguin.json index 0b0358dd8..8ec83069f 100644 --- a/domains/penguin.json +++ b/domains/penguin.json @@ -3,13 +3,8 @@ "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" - ], + "records": { + "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 index 33031215f..4bdfac218 100644 --- a/domains/penguinmod.json +++ b/domains/penguinmod.json @@ -3,7 +3,7 @@ "username": "FreshPenguin112", "email": "freshpenguin1@outlook.com" }, - "record": { + "records": { "URL": "https://penguinmod.github.io/PenguinMod-Gui/editor.html" } } diff --git a/domains/penieldialu.json b/domains/penieldialu.json index ee56eeb53..0600fdf3c 100644 --- a/domains/penieldialu.json +++ b/domains/penieldialu.json @@ -3,7 +3,7 @@ "username": "bilwifi", "email": "dialundamapeniel@gmail.com" }, - "record": { + "records": { "URL": "https://penieldialu.carrd.co" } } diff --git a/domains/penieldialundama.json b/domains/penieldialundama.json index ee56eeb53..0600fdf3c 100644 --- a/domains/penieldialundama.json +++ b/domains/penieldialundama.json @@ -3,7 +3,7 @@ "username": "bilwifi", "email": "dialundamapeniel@gmail.com" }, - "record": { + "records": { "URL": "https://penieldialu.carrd.co" } } diff --git a/domains/pepe.ravener.json b/domains/pepe.ravener.json index 829548d3a..7fbacf6f5 100644 --- a/domains/pepe.ravener.json +++ b/domains/pepe.ravener.json @@ -5,7 +5,7 @@ "twitter": "RavenRavener", "discord": "292690616285134850" }, - "record": { + "records": { "A": ["132.145.196.17"] } } diff --git a/domains/perfecthabibur.json b/domains/perfecthabibur.json index 1b8304297..803602394 100644 --- a/domains/perfecthabibur.json +++ b/domains/perfecthabibur.json @@ -5,7 +5,7 @@ "username": "perfecthabibur", "email": "socialhabibur@gmail.com" }, - "record": { + "records": { "CNAME": "perfecthabibur.github.io" } } diff --git a/domains/peris.json b/domains/peris.json index ecb5c9139..e7c0d6745 100644 --- a/domains/peris.json +++ b/domains/peris.json @@ -5,7 +5,7 @@ "username": "perisrai", "email": "perishrai@gmail.com" }, - "record": { + "records": { "CNAME": "perisrai.github.io" } } diff --git a/domains/peroxide.json b/domains/peroxide.json index 4ea4fb5ed..fcc87b69c 100644 --- a/domains/peroxide.json +++ b/domains/peroxide.json @@ -6,7 +6,7 @@ "email": "modelcafe14266@gmail.com", "discord": "hydrogenpero.xide" }, - "record": { + "records": { "CNAME": "oshinymew.github.io" } } diff --git a/domains/perry.json b/domains/perry.json index 45a196ba4..b2631a5b0 100644 --- a/domains/perry.json +++ b/domains/perry.json @@ -4,7 +4,7 @@ "email": "brendanrcg@gmail.com", "discord": "616746774744268820" }, - "record": { + "records": { "CNAME": "brenny.zip" } } diff --git a/domains/pete.json b/domains/pete.json new file mode 100644 index 000000000..9f5a68343 --- /dev/null +++ b/domains/pete.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio of a fullstack developer", + "repo": "https://github.com/daspete/pete-github-io", + "owner": { + "username": "daspete", + "email": "daspetemail@gmail.com" + }, + "records": { + "CNAME": "daspete.github.io" + } +} diff --git a/domains/peter.json b/domains/peter.json index fea68158d..85c24ecbe 100644 --- a/domains/peter.json +++ b/domains/peter.json @@ -3,7 +3,7 @@ "username": "pjschinske", "email": "pjschinske@gmail.com" }, - "record": { + "records": { "CNAME": "pjschinske.github.io" } } diff --git a/domains/peterbuga.json b/domains/peterbuga.json new file mode 100644 index 000000000..4efac15da --- /dev/null +++ b/domains/peterbuga.json @@ -0,0 +1,11 @@ +{ + "description": "Presentation website for peterbuga", + "repo": "https://github.com/peterbuga/peterbuga.github.io", + "owner": { + "username": "peterbuga", + "discord": "902580031044325407" + }, + "records": { + "CNAME": "peterbuga.github.io" + } +} diff --git a/domains/pex.json b/domains/pex.json new file mode 100644 index 000000000..5c7dea386 --- /dev/null +++ b/domains/pex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pexeixv", + "email": "gavn@duck.com" + }, + "records": { + "CNAME": "gavn.in" + } +} diff --git a/domains/peyloride.json b/domains/peyloride.json new file mode 100644 index 000000000..de37e9afb --- /dev/null +++ b/domains/peyloride.json @@ -0,0 +1,11 @@ +{ + "description": "Peyloride - Okan Binli", + "repo": "https://github.com/peyloride/peyloride", + "owner": { + "username": "peyloride", + "email": "okanbinli@gmail.com" + }, + "records": { + "CNAME": "peyloride.github.io" + } +} diff --git a/domains/pgscom.json b/domains/pgscom.json new file mode 100644 index 000000000..c1570956f --- /dev/null +++ b/domains/pgscom.json @@ -0,0 +1,11 @@ +{ + "description": "Url redirect to pgscom.es", + "repo": "https://github.com/pgscom/pgscom.github.io", + "owner": { + "username": "pgscom", + "twitter": "PGSCOM_54" + }, + "records": { + "URL": "https://pgscom.es" + } +} diff --git a/domains/pgscom54.json b/domains/pgscom54.json new file mode 100644 index 000000000..c1570956f --- /dev/null +++ b/domains/pgscom54.json @@ -0,0 +1,11 @@ +{ + "description": "Url redirect to pgscom.es", + "repo": "https://github.com/pgscom/pgscom.github.io", + "owner": { + "username": "pgscom", + "twitter": "PGSCOM_54" + }, + "records": { + "URL": "https://pgscom.es" + } +} diff --git a/domains/ph7ntom.json b/domains/ph7ntom.json index f8ab53cc1..869d8db82 100644 --- a/domains/ph7ntom.json +++ b/domains/ph7ntom.json @@ -3,7 +3,7 @@ "username": "PH7N", "email": "hdgameplaybbtt@gmail.com" }, - "record": { + "records": { "URL": "https://ph7n.github.io/ph7ntom-web/" } } diff --git a/domains/phamanhtien.json b/domains/phamanhtien.json index 02a56d28c..d8d61b21a 100644 --- a/domains/phamanhtien.json +++ b/domains/phamanhtien.json @@ -3,7 +3,7 @@ "username": "phamanhtiencutis1", "email": "nhincaiditmemay888@gmail.com" }, - "record": { + "records": { "CNAME": "181.ip.ply.gg" } } diff --git a/domains/phamthanhnghia.json b/domains/phamthanhnghia.json index 2378ce50d..3f323e6c3 100644 --- a/domains/phamthanhnghia.json +++ b/domains/phamthanhnghia.json @@ -1,11 +1,11 @@ { - "description": "phamthanhnghia.is-a.dev", - "repo": "https://github.com/phamthanhnghia/phamthanhnghia.github.io", - "owner": { - "username": "phamthanhnghia", - "email": "phamthanhnghia.it@gmail.com" - }, - "record": { - "CNAME": "phamthanhnghia.github.io" - } + "description": "phamthanhnghia.is-a.dev", + "repo": "https://github.com/phamthanhnghia/phamthanhnghia.github.io", + "owner": { + "username": "phamthanhnghia", + "email": "phamthanhnghia.it@gmail.com" + }, + "records": { + "CNAME": "phamthanhnghia.github.io" + } } diff --git a/domains/phani.json b/domains/phani.json new file mode 100644 index 000000000..338370d99 --- /dev/null +++ b/domains/phani.json @@ -0,0 +1,11 @@ +{ + "description": "PortFolio Showcasing my Works and contact details", + "repo": "https://github.com/Phani2425/My-Portfolio", + "owner": { + "username": "Phani2425", + "email": "mohantyphanibhusan@gmail.com" + }, + "records": { + "URL": "https://portfolioweb-gules.vercel.app/" + } +} diff --git a/domains/phelix.json b/domains/phelix.json index 508ebbb73..8d580b5db 100644 --- a/domains/phelix.json +++ b/domains/phelix.json @@ -5,7 +5,7 @@ "username": "phelixdusengimana", "email": "phelixdusengimana@gmail.com" }, - "record": { + "records": { "URL": "https://phelixdusengimana.vercel.app" } } diff --git a/domains/phelixdusengimana.json b/domains/phelixdusengimana.json index 508ebbb73..8d580b5db 100644 --- a/domains/phelixdusengimana.json +++ b/domains/phelixdusengimana.json @@ -5,7 +5,7 @@ "username": "phelixdusengimana", "email": "phelixdusengimana@gmail.com" }, - "record": { + "records": { "URL": "https://phelixdusengimana.vercel.app" } } diff --git a/domains/phi.json b/domains/phi.json new file mode 100644 index 000000000..5a9e1b5ea --- /dev/null +++ b/domains/phi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "y5c4l3", + "email": "y5c4l3@proton.me" + }, + "records": { + "NS": ["johnny.ns.cloudflare.com", "rachel.ns.cloudflare.com"] + } +} diff --git a/domains/philama.json b/domains/philama.json new file mode 100644 index 000000000..e22c143aa --- /dev/null +++ b/domains/philama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Philama", + "email": "guardi2005@yahoo.fr" + }, + "records": { + "CNAME": "portfoliovuejs.vercel.app" + } +} diff --git a/domains/philcajurao.json b/domains/philcajurao.json index fb8158e0a..8e7a44a4d 100644 --- a/domains/philcajurao.json +++ b/domains/philcajurao.json @@ -5,7 +5,7 @@ "username": "philcajurao", "email": "philcajurao@gmail.com" }, - "record": { + "records": { "CNAME": "philcajurao.github.io" } } diff --git a/domains/phongli.json b/domains/phongli.json new file mode 100644 index 000000000..d66b39785 --- /dev/null +++ b/domains/phongli.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PhongLi", + "email": "longpt1109@gmail.com", + "discord": "_younglin" + }, + "records": { + "CNAME": "phonglidev.vercel.app" + } +} diff --git a/domains/php.json b/domains/php.json new file mode 100644 index 000000000..00d8a5337 --- /dev/null +++ b/domains/php.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for Pedro Henrique Pires (PHP)", + "owner": { + "username": "pedrohenriquepires", + "email": "pdrhenriquepires@gmail.com" + }, + "records": { + "CNAME": "site-v2-puce.vercel.app" + } +} diff --git a/domains/pic.cfp.json b/domains/pic.cfp.json index f4702cc66..4fe3bd918 100644 --- a/domains/pic.cfp.json +++ b/domains/pic.cfp.json @@ -4,7 +4,7 @@ "username": "cfpwastaken", "discord": "cfp (318394797822050315)" }, - "record": { + "records": { "CNAME": "dyn.picoscratch.de" } } diff --git a/domains/picklerick.json b/domains/picklerick.json index 51c8ba470..ff07babae 100644 --- a/domains/picklerick.json +++ b/domains/picklerick.json @@ -5,7 +5,7 @@ "username": "ticklerick", "email": "pickle@anonemail.net" }, - "record": { + "records": { "CNAME": "ticklerick.github.io" } } diff --git a/domains/picloud.json b/domains/picloud.json index 2f37fb1d4..1c2ce4c75 100644 --- a/domains/picloud.json +++ b/domains/picloud.json @@ -3,7 +3,7 @@ "username": "hb0313", "email": "hbhandwaldar@gmail.com" }, - "record": { + "records": { "URL": "https://sites.google.com/view/pihome1/home" } } diff --git a/domains/pics.imide.json b/domains/pics.imide.json index 47fc78a18..da95ec6be 100644 --- a/domains/pics.imide.json +++ b/domains/pics.imide.json @@ -3,7 +3,7 @@ "username": "imide", "discord": "555915168932954112" }, - "record": { + "records": { "CNAME": "ksso4kc.141.148.65.26.sslip.io" } } diff --git a/domains/pie.json b/domains/pie.json index db9478823..16403f4e5 100644 --- a/domains/pie.json +++ b/domains/pie.json @@ -5,7 +5,7 @@ "username": "4pii4", "email": "naivenevaii@gmail.com" }, - "record": { + "records": { "CNAME": "4pii4.github.io" } } diff --git a/domains/pig.json b/domains/pig.json index f9b5d424d..bbe9bb2f9 100644 --- a/domains/pig.json +++ b/domains/pig.json @@ -3,7 +3,7 @@ "username": "ipigtw", "email": "diegogamingtw@gmail.com" }, - "record": { + "records": { "CNAME": "react-app-djl.pages.dev" } } diff --git a/domains/pikachu.json b/domains/pikachu.json new file mode 100644 index 000000000..8be6b101f --- /dev/null +++ b/domains/pikachu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vighnesh153", + "email": "pikachu@vighnesh153.dev" + }, + "records": { + "CNAME": "vighnesh153-app.web.app" + } +} diff --git a/domains/piker.json b/domains/piker.json index 7066708df..2a07c29fa 100644 --- a/domains/piker.json +++ b/domains/piker.json @@ -1,9 +1,9 @@ { "owner": { "username": "Piker98988", - "email": "piker98@tutanota.com" + "email": "iker.pavcur@gmail.com" }, - "record": { + "records": { "CNAME": "pikerdevdomain.pages.dev" } } diff --git a/domains/pilagonzalez.json b/domains/pilagonzalez.json new file mode 100644 index 000000000..1e554b99c --- /dev/null +++ b/domains/pilagonzalez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Pilag6", + "email": "pilag6@gmail.com", + "discord": "pilagonzalez" + }, + "records": { + "URL": "https://piladev.netlify.app" + } +} diff --git a/domains/pilotseye.json b/domains/pilotseye.json new file mode 100644 index 000000000..db292838e --- /dev/null +++ b/domains/pilotseye.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "YFFKJB", + "email": "1261546255@qq.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + }, + "description": "PilotsEYE Studio 会计系统 - PilotsEYE Studio 的基于 Web 的会计系统" +} diff --git a/domains/pinage404.json b/domains/pinage404.json index 297c9310d..c9efe6a3f 100644 --- a/domains/pinage404.json +++ b/domains/pinage404.json @@ -3,7 +3,7 @@ "username": "pinage404", "email": "pinage404+is-a.dev@gmail.com" }, - "record": { + "records": { "CNAME": "pinage404.gitlab.io" } } diff --git a/domains/pinchese.json b/domains/pinchese.json index 0fc394b29..c63ed2155 100644 --- a/domains/pinchese.json +++ b/domains/pinchese.json @@ -5,7 +5,7 @@ "username": "pinchese", "email": "pinchese@protonmail.com" }, - "record": { + "records": { "CNAME": "pinchese.github.io" } } diff --git a/domains/pingoda.json b/domains/pingoda.json index 21a9cc9b0..cecbb4feb 100644 --- a/domains/pingoda.json +++ b/domains/pingoda.json @@ -6,7 +6,7 @@ "email": "francescoclem915@gmail.com", "twitter": "Pingoda_" }, - "record": { + "records": { "CNAME": "pinogda.github.io" } } diff --git a/domains/pinkyplant.json b/domains/pinkyplant.json index 0f0005b92..b7c37f6fe 100644 --- a/domains/pinkyplant.json +++ b/domains/pinkyplant.json @@ -6,7 +6,7 @@ "email": "pinkyplantz@proton.me", "twitter": "pinkyplant" }, - "record": { + "records": { "CNAME": "pinkyplant.github.io" } } diff --git a/domains/pinont.json b/domains/pinont.json index 514e0d136..a58d240f6 100644 --- a/domains/pinont.json +++ b/domains/pinont.json @@ -5,7 +5,7 @@ "username": "PinozenTH", "email": "Pinozen.Thailand@gmail.com" }, - "record": { + "records": { "CNAME": "pinozenth.github.io" } } diff --git a/domains/pipc.json b/domains/pipc.json index 5f9248b8c..27e8c34b3 100644 --- a/domains/pipc.json +++ b/domains/pipc.json @@ -3,7 +3,7 @@ "username": "PiPc1", "email": "rhileighc9@gmail.com" }, - "record": { + "records": { "CNAME": "pipc1.github.io" } } diff --git a/domains/piplup7575.json b/domains/piplup7575.json index f3351cd3e..0bbdbc23d 100644 --- a/domains/piplup7575.json +++ b/domains/piplup7575.json @@ -3,7 +3,7 @@ "username": "Piplup7575", "email": "piplup7575@gmail.com" }, - "record": { + "records": { "CNAME": "pip75.github.io" } } diff --git a/domains/pirate-project.json b/domains/pirate-project.json index 911e81019..810d80769 100644 --- a/domains/pirate-project.json +++ b/domains/pirate-project.json @@ -4,7 +4,7 @@ "username": "StalkerMeyr", "email": "andchit223@gmail.com" }, - "record": { + "records": { "A": ["185.87.50.120"] } } diff --git a/domains/pisarevski.json b/domains/pisarevski.json new file mode 100644 index 000000000..3adf24edc --- /dev/null +++ b/domains/pisarevski.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/pisarevski/pisarevski.github.io", + "owner": { + "username": "pisarevski", + "email": "pisarevsc@gmail.com" + }, + "records": { + "CNAME": "pisarevski.github.io" + } +} diff --git a/domains/piste.json b/domains/piste.json index 3191be22d..114f8515c 100644 --- a/domains/piste.json +++ b/domains/piste.json @@ -3,7 +3,7 @@ "username": "zpiste", "email": "contact@piste.dev" }, - "record": { + "records": { "URL": "https://piste.dev" } } diff --git a/domains/pita.json b/domains/pita.json new file mode 100644 index 000000000..b81f0eef8 --- /dev/null +++ b/domains/pita.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pita092", + "discord": "spongebob_spongebob_spongebob" + }, + "records": { + "CNAME": "pita092.github.io" + } +} diff --git a/domains/pixel.json b/domains/pixel.json index 4b558abe2..3c6893513 100644 --- a/domains/pixel.json +++ b/domains/pixel.json @@ -6,7 +6,7 @@ "email": "osama.mo.qudah@gmail.com", "twitter": "pqudah" }, - "record": { + "records": { "CNAME": "basicpixel.github.io" } } diff --git a/domains/pixelbend.json b/domains/pixelbend.json new file mode 100644 index 000000000..b0fb06d0e --- /dev/null +++ b/domains/pixelbend.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pixelbend", + "email": "m.arkamfahry@gmail.com" + }, + "records": { + "CNAME": "pixelbend.github.io" + } +} diff --git a/domains/pixelgeek.json b/domains/pixelgeek.json index 2fbfcedec..74acc9d24 100644 --- a/domains/pixelgeek.json +++ b/domains/pixelgeek.json @@ -3,7 +3,7 @@ "username": "pixelgeek", "email": "pxe.geek+github@gmail.com" }, - "record": { + "records": { "CNAME": "pixelgeek.github.io" } } diff --git a/domains/pixelll.json b/domains/pixelll.json new file mode 100644 index 000000000..afed3689c --- /dev/null +++ b/domains/pixelll.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pixel2175", + "email": "pixel2175@gmail.com" + }, + "records": { + "CNAME": "pixell.ddns.net" + } +} diff --git a/domains/pixelplayz.json b/domains/pixelplayz.json index 835caf70b..5c54eb724 100644 --- a/domains/pixelplayz.json +++ b/domains/pixelplayz.json @@ -5,7 +5,7 @@ "username": "PixelPlayzXD", "email": "pixelplayz1887@gmail.com" }, - "record": { + "records": { "CNAME": "pixelplayzweb.pages.dev" } } diff --git a/domains/pixelwhiz.json b/domains/pixelwhiz.json index 6f880b756..69bcca479 100644 --- a/domains/pixelwhiz.json +++ b/domains/pixelwhiz.json @@ -3,7 +3,7 @@ "username": "pixelwhiz", "email": "daffa01futn@gmail.com" }, - "record": { + "records": { "CNAME": "pixelwhiz.github.io" } } diff --git a/domains/pixie.json b/domains/pixie.json index 0d468934d..f5c18cf04 100644 --- a/domains/pixie.json +++ b/domains/pixie.json @@ -3,7 +3,7 @@ "username": "Salmontrap26283627", "email": "soudeur-epicier.0x@icloud.com" }, - "record": { + "records": { "URL": "https://html-starter-seven-umber.vercel.app" } } diff --git a/domains/pixl8.json b/domains/pixl8.json index 11b423405..04081127c 100644 --- a/domains/pixl8.json +++ b/domains/pixl8.json @@ -3,7 +3,7 @@ "username": "pixl8dev", "email": "judah.cs08@gmail.com" }, - "record": { + "records": { "CNAME": "pixl8dev.github.io" } } diff --git a/domains/pixxo.json b/domains/pixxo.json new file mode 100644 index 000000000..7cc64b1e8 --- /dev/null +++ b/domains/pixxo.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for Aleeyoo", + "owner": { + "username": "Aleeyoo", + "email": "m16638037095@163.com" + }, + "records": { + "URL": "https://aleeyoo.github.io/pixxo.github.io/" + } +} diff --git a/domains/piyush.json b/domains/piyush.json index 175077ef7..f8dbf1137 100644 --- a/domains/piyush.json +++ b/domains/piyush.json @@ -4,7 +4,7 @@ "username": "officialpiyush", "email": "bhangalepiyush@gmail.com" }, - "record": { + "records": { "URL": "https://officialpiyush.github.io" } } diff --git a/domains/piyushkatyal.json b/domains/piyushkatyal.json index d3a9a48b4..9bbe5d7a6 100644 --- a/domains/piyushkatyal.json +++ b/domains/piyushkatyal.json @@ -5,7 +5,7 @@ "username": "piyushk77", "email": "pshkatyal8@gmail.com" }, - "record": { + "records": { "CNAME": "piyushk77.github.io" } } diff --git a/domains/piyushrb.json b/domains/piyushrb.json index d63f30855..1afd54dbd 100644 --- a/domains/piyushrb.json +++ b/domains/piyushrb.json @@ -1,11 +1,13 @@ { "description": "Personal Portfolio Website", - "repo": "https://github.com/piyush-rb/piyush-rb.github.io", + "repo": "https://github.com/pibiswal/pibiswal.github.io", "owner": { - "username": "piyush-rb", + "username": "pibiswal", "email": "urpiyush39@gmail.com" }, - "record": { - "CNAME": "piyush-rb.github.io" - } + "records": { + "CNAME": "pibiswal.github.io", + "TXT": "google-site-verification=kDWGAChQixBO8bGxGGNoA9kXH24lQyfomrT3zyC5jiM" + }, + "proxied": true } diff --git a/domains/pizzav.json b/domains/pizzav.json index 3fcd8f940..8a89bad5b 100644 --- a/domains/pizzav.json +++ b/domains/pizzav.json @@ -4,7 +4,7 @@ "email": "bengallemoni@gmail.com", "discord": "645235712815398912" }, - "record": { + "records": { "CNAME": "pizzav.pages.dev" } } diff --git a/domains/pknw1.json b/domains/pknw1.json index 140b88de9..a9ada6e96 100644 --- a/domains/pknw1.json +++ b/domains/pknw1.json @@ -3,7 +3,7 @@ "username": "pknw1", "email": "github@pknw1.co.uk" }, - "record": { + "records": { "CNAME": "ks5.pknw1.co.uk" } } diff --git a/domains/plague.json b/domains/plague.json index e7cbda39c..5f36ded38 100644 --- a/domains/plague.json +++ b/domains/plague.json @@ -6,7 +6,7 @@ "email": "viniciuslucianocardoso@gmail.com", "discord": "plague🥣#8408" }, - "record": { + "records": { "CNAME": "pl4gue.github.io" } } diff --git a/domains/plan.vulcanocraft.json b/domains/plan.vulcanocraft.json index 0359aab27..7f54144de 100644 --- a/domains/plan.vulcanocraft.json +++ b/domains/plan.vulcanocraft.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U1HQ4j2veW3D6ZRfm8J-dyfphms0kkF7IYRUmA2n6zawu-A3FyVRC4PzxMEmRpZO_Q3rQXCbHcO_EtWQFtVw244aHgjASUW2bfbHr7Rhpl2VjdMNXXfWeQKR4XhoOmYRM4qmN585VSiMfV5WVYk96UKf9-VUhmWQpf-EDbModBujIIqLXQdMVVu3awmcXEvyPqOyVntrX7wg7sFT_z0GiZVB-LhdiXJBjl5M2Me-aWQX9TzY_US6deMO6MuhLo1MwPdQbvnwQp0cDx9yoI2Ef9kxihRGPr6aD7OiEXE4CF1LdDw7bt2hDEoJwnBNWCOLHDCpUJELx5qhKmAu3ulUYQ.K3l5byKhIee3xpCLLlcGBA.z5Csrbp2TdpvdGfegFKIgsipiWdGMC5oUsmLpDhOiNx8QPc3u-jhsf-97HigCS7ul789Kepa78SC5FTJbVjszVTFFcADXB9IlCb6RQjfE8a2gHMY75HXgcpxoA6HNnaR.SwL0PQR_FS5DQ-zXBhCSlA" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "vulcanoplan.pages.dev" } } diff --git a/domains/play.alora.json b/domains/play.alora.json new file mode 100644 index 000000000..be26ac150 --- /dev/null +++ b/domains/play.alora.json @@ -0,0 +1,11 @@ +{ + "description": "Making my MC server accessible via a custom domain name", + "repo": "https://www.minecraft.com/", + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com" + }, + "records": { + "A": ["78.46.65.243"] + } +} diff --git a/domains/play.soccer.json b/domains/play.soccer.json new file mode 100644 index 000000000..84b96b0c7 --- /dev/null +++ b/domains/play.soccer.json @@ -0,0 +1,19 @@ +{ + "description": "KillToLive minecraft server", + "owner": { + "username": "minecradt", + "email": "soccer1992.is.a.dev@gmail.com" + }, + "records": { + "SRV": [ + { + "name": "_minecraft._tcp.play", + "priority": 0, + "weight": 5, + "port": 25565, + "target": "KillToLive.valksystems.pro" + } + ], + "A": ["82.45.179.13"] + } +} diff --git a/domains/playboyfear.json b/domains/playboyfear.json index e7d99bef4..37220ff79 100644 --- a/domains/playboyfear.json +++ b/domains/playboyfear.json @@ -1,10 +1,9 @@ { "owner": { "username": "Fear-Itself", - "discord": "1079471323220295781", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lxlc-07Kcz9oxe3endfLP2iaYnhFx1YdAtlEl8n0GHWodaqDj6rscZ-tyqOgcQLgH4juWf4tm8f3ExHzYrwx097K5X97Rf3ZvibOI5KlhKwNxMDEPSrsaq13r2ILCAZGmeQmVnNVWzmbiwDns-z_uh0QEl-YvGatR2Z5XhNfvID_dRtshwkqdwi9SsDuwX6Y2qHUBBTtuy0a35nBU9iITFMLHKSvkmfnul6hwRo6g9rJhUZIebynuUCwDxb9seba8kI1tWYBGXNE0uwGb-1SJKp4XrFTsLZYlMXBCTdwCFtebONQtWAkbkuQAfhUuqtOvIbz6KcIyI7g6KV5OnPNzw.q9Fb1LgcuGOhDM7d8UPiuw.fdmJ9W-LPDrT6p53ITGhZqNxbisbRcssIA9XUoFvbrDCk8apYtDAeIaqR3N5QWtydIcKVkPdvhbEU-Dduga5PXqsO9Ot1MQLeErtI28O1H8.pKzhEjWsJBuESoPUMQzM4g" + "discord": "1079471323220295781" }, - "record": { + "records": { "CNAME": "fear-itself.github.io" } } diff --git a/domains/playeranalytics.vulcanocraft.json b/domains/playeranalytics.vulcanocraft.json index db7ef754b..7f54144de 100644 --- a/domains/playeranalytics.vulcanocraft.json +++ b/domains/playeranalytics.vulcanocraft.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PaUlk6ZArYasb5GFWnvJMTUcFLt0hlPqX2DDMAs_8dKVCFZhhAJYHfjbuo7Imsx8y9TQSv3b2_qSaTvo488GReI4sa8uscSTFUtypOeKYE5hzo6G7vWfj_fJ4OWQbxBhiAd-ebA5gJQQFihIS2SL37o1uvTQDdkOGprZS0XxsMN7hl3s9-u9tfwnIM_j5iG6z_TnzkE0QCIANe_y20J8ift_GPd89bz7M2-X7gpqgiWfzTGrRnOF2gFjIHofZB4uljxaPNK3TzzlV72Qwyh_WrU8Kw3XsKxsjr7IO62BrrNzTJyjixJd-oZkcEhd8Z4N5wueMX_Vx9cdJ0xtOIjrmQ.JdAPDqQADI_gas7asULI6A.r5P4wD7e_E-4TpKksyzjdQQvp3OWTHffPIM5_C5EfOWYeR6oUTCNB16WdP6NVKFvfWOdWnVuVgjO9bWTWTZKxuUxXTj0WeBIQSS3plaoNWbuEFY31OgMm-XXFP1ZRBie.lXIj9HQI-dJm1aJ5r-RJXw" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "vulcanoplan.pages.dev" } } diff --git a/domains/playreaver.json b/domains/playreaver.json index 36a8c1f76..608c4bd6f 100644 --- a/domains/playreaver.json +++ b/domains/playreaver.json @@ -1,10 +1,9 @@ { "owner": { "username": "playreaver", - "discord": "802466803984760853", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YIQZW1Q4GvuHtwoVApEhTUfnTvZRbzgeTMFBwrRj4bRe-r37w_KlqAfvqDuBXCPv7a7uPkwE5evyx_DVX2UJ3Jl5M8N1SMKIg26cnzShzMARtF1m6oBGlei_fGung5SHj0UUekOnNqE6XlspxmKZLRT1EfT9H1DxLxXHlWjOaV1uAtEyKcZvv5G1TR_pLEanpcAik1jHaSdRoMOHH_LL4T-yZ_AcY2qfzI9dKdkJSdzdjw0ZKhmmFX9APqUTf9AWV2P0Aj_dKIKejzdR8CgTqnofaI7eWZ3kAJp_8LDVNoisvJvr2BgnPGvCQ_Lfv7YRouD7UE0SHEh9Rb0Ev1owsQ.FDIBraLuBZXlcNTt3jsXdA.MRrBmfOZ3L9_pnW4SuCmAaAr23yqsMOp-ptrX4TUFwY9Gobq7XyzKp1q-8w4Uv_bTsDEVj-QvEhsCRFKrnctLb-yDWHCJfQMau1mgwCgaK4.qG8M04A5TqkLwQnOLJD0QA" + "discord": "802466803984760853" }, - "record": { + "records": { "CNAME": "playreaver.github.io" } } diff --git a/domains/playwithbmr.json b/domains/playwithbmr.json index 75aa87db1..d8202cec9 100644 --- a/domains/playwithbmr.json +++ b/domains/playwithbmr.json @@ -5,7 +5,7 @@ "username": "RXHGGAMES", "email": "syedyaseerali854@gmail.com" }, - "record": { + "records": { "CNAME": "rxhggames.github.io" } } diff --git a/domains/plopilpy.json b/domains/plopilpy.json index 43178d678..f21d9010e 100644 --- a/domains/plopilpy.json +++ b/domains/plopilpy.json @@ -6,7 +6,7 @@ "email": "plopilpy@tazzy.ca", "twitter": "plopilpy" }, - "record": { + "records": { "CNAME": "plopilpy.github.io" } } diff --git a/domains/ploszukiwacz.json b/domains/ploszukiwacz.json index dd1d68a42..7381251ab 100644 --- a/domains/ploszukiwacz.json +++ b/domains/ploszukiwacz.json @@ -1,15 +1,19 @@ { - "description": "Personal Website for PlOszukiwacz", - "repo": "https://github.com/PlOszukiwaczDEV/ploszukiwaczdev.github.io", + "repo": "https://github.com/ploszukiwacz/website_new", "owner": { - "username": "PlOszukiwaczDEV", + "username": "ploszukiwacz", "email": "ploszukiwacz1@gmail.com" }, - "record": { - "NS": [ - "jake.ns.cloudflare.com", - "stephane.ns.cloudflare.com" + "records": { + "NS": ["jake.ns.cloudflare.com", "stephane.ns.cloudflare.com"], + "DS": [ + { + "key_tag": 2371, + "algorithm": 13, + "digest_type": 2, + "digest": "CD6679293B68CD539A071B61A4BBC03B2B81F1B1DA48AAC2F2F690E957524AD1" + } ] } } diff --git a/domains/plow.json b/domains/plow.json index 253d26a07..74a2ad0ab 100644 --- a/domains/plow.json +++ b/domains/plow.json @@ -3,7 +3,7 @@ "username": "ClicpoW", "email": "clicpowytb@gmail.com" }, - "record": { + "records": { "CNAME": "mlkfkqd.pages.dev" } } diff --git a/domains/plug.json b/domains/plug.json index 651490985..7ab22483d 100644 --- a/domains/plug.json +++ b/domains/plug.json @@ -3,7 +3,7 @@ "username": "0n4u", "email": "musicbotqn@gmail.com" }, - "record": { + "records": { "CNAME": "0n4u.github.io" } } diff --git a/domains/plumaxe.json b/domains/plumaxe.json index cceaa4f76..8f20e9267 100644 --- a/domains/plumaxe.json +++ b/domains/plumaxe.json @@ -3,7 +3,7 @@ "username": "Firewoork", "email": "iaintflxzra122@gmail.com" }, - "record": { + "records": { "CNAME": "plumaxe.github.io" } } diff --git a/domains/plumbus.json b/domains/plumbus.json new file mode 100644 index 000000000..b832465b5 --- /dev/null +++ b/domains/plumbus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MAM-SYS", + "email": "m.hossein95th@gmail.com" + }, + "records": { + "URL": "https://github.com/MAM-SYS" + } +} diff --git a/domains/plumsy.json b/domains/plumsy.json index 3751cf9a2..8a7879fcb 100644 --- a/domains/plumsy.json +++ b/domains/plumsy.json @@ -3,7 +3,7 @@ "username": "hxntaish", "email": "juliettepoisson3@gmail.com" }, - "record": { + "records": { "CNAME": "geo-routing.nexuspipe.com" } } diff --git a/domains/plun.json b/domains/plun.json index 3dee1aeca..bb5ad4740 100644 --- a/domains/plun.json +++ b/domains/plun.json @@ -3,7 +3,7 @@ "username": "plun1331", "email": "plun1331@gmail.com" }, - "record": { + "records": { "CNAME": "plun.pages.dev" } } diff --git a/domains/plusrazz.json b/domains/plusrazz.json new file mode 100644 index 000000000..3121553cd --- /dev/null +++ b/domains/plusrazz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "codehihe", + "email": "saurav.shubham8656@gmail.com" + }, + "records": { + "CNAME": "codehihe.github.io" + } +} diff --git a/domains/ply.json b/domains/ply.json index 0572cf98e..19ef038ed 100644 --- a/domains/ply.json +++ b/domains/ply.json @@ -3,7 +3,7 @@ "username": "plymc", "email": "plymc@proton.me" }, - "record": { + "records": { "CNAME": "plymc.github.io" } } diff --git a/domains/pmint05.json b/domains/pmint05.json index a431269a3..6fc967d97 100644 --- a/domains/pmint05.json +++ b/domains/pmint05.json @@ -6,7 +6,7 @@ "email": "pmint05@protonmail.com", "twitter": "pmint05" }, - "record": { + "records": { "CNAME": "pmint05.github.io" } } diff --git a/domains/pndaboi.json b/domains/pndaboi.json index 6ac168f10..fc00e92f6 100644 --- a/domains/pndaboi.json +++ b/domains/pndaboi.json @@ -6,7 +6,7 @@ "email": "vareshplayzyt@gmail.com", "discord": "ΞGØ〢⎝⎝✧Varesh Here✧⎠⎠#9890" }, - "record": { + "records": { "CNAME": "pndaboi.github.io" } } diff --git a/domains/podcodar.json b/domains/podcodar.json new file mode 100644 index 000000000..2d765979d --- /dev/null +++ b/domains/podcodar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marco-souza", + "email": "marco@podcodar.org" + }, + "records": { + "CNAME": "podcodar.pages.dev" + } +} diff --git a/domains/pog.json b/domains/pog.json index 03845c585..92f5c3b75 100644 --- a/domains/pog.json +++ b/domains/pog.json @@ -3,7 +3,7 @@ "username": "PogMaster9001", "discord": "1190052608346435597" }, - "record": { + "records": { "CNAME": "projectdevs.net" } } diff --git a/domains/pogmaster.json b/domains/pogmaster.json index 03845c585..92f5c3b75 100644 --- a/domains/pogmaster.json +++ b/domains/pogmaster.json @@ -3,7 +3,7 @@ "username": "PogMaster9001", "discord": "1190052608346435597" }, - "record": { + "records": { "CNAME": "projectdevs.net" } } diff --git a/domains/pogmaster9001.json b/domains/pogmaster9001.json index 03845c585..92f5c3b75 100644 --- a/domains/pogmaster9001.json +++ b/domains/pogmaster9001.json @@ -3,7 +3,7 @@ "username": "PogMaster9001", "discord": "1190052608346435597" }, - "record": { + "records": { "CNAME": "projectdevs.net" } } diff --git a/domains/poked.json b/domains/poked.json index cd4b1057b..a032bbabb 100644 --- a/domains/poked.json +++ b/domains/poked.json @@ -6,7 +6,7 @@ "email": "pokedwastaken@gmail.com", "discord": "poked" }, - "record": { + "records": { "CNAME": "pokedwastaken.github.io" } } diff --git a/domains/pokey.json b/domains/pokey.json index 88d140542..272c4ecae 100644 --- a/domains/pokey.json +++ b/domains/pokey.json @@ -1,10 +1,9 @@ { "owner": { "username": "Pokeylooted", - "discord": "469808869426724865", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YwtcHwpMZkKBYbgs0mxj-7NxjIGcUOrXLTJmxRNtVUAENnuLfqfoGn0-l4CeYdFvYSxBYv2ElPgXrvmfynv5w7bUclrf8k7nc2EEKaXgddisH4nHH1EhCDZ3S7N3wVA15MN4PwBehgRJkvNU-ckVpyQ1vMzpXhbeXz8UErfp039VViBrvY5S0V-n43CkDSf3iqtsa9sMDaWh9-I3oYXeMKqCyx-OXBhaY8w9R9f6V4rthWdwu2--gYe1gqEoV29I16wXRVZqpzHgecZV8rmcamLUZUkWSYdrG7ibBjkmzn_1j8Pxe-OBWLtuVpHUnX_PYwour7OPajWzXkAPjIoQAQ.sdtAwCEcrzrn3SV-e277bA.q73Rr_IE9cxfke6WUU-HessDBZZdhUOs9Ga7IK4bWZ1ewgtV7pLzaGDoe8_ukVHf-oo5Ya-QEJaGLglkvBK1IQWUKPpSW9rxzCQSMCpxCkg.9-P9cZ5_qyjMrJ8XMP2-Pg" + "discord": "469808869426724865" }, - "record": { + "records": { "CNAME": "pokeylooted.github.io" } } diff --git a/domains/polar.json b/domains/polar.json index 52bf068a2..d5730e989 100644 --- a/domains/polar.json +++ b/domains/polar.json @@ -4,7 +4,7 @@ "email": "rafaelbraun5@hotmail.com" }, "repo": "https://github.com/polarfreez/polarfreez.github.io", - "record": { + "records": { "CNAME": "polarfreez.github.io" } } diff --git a/domains/polars.json b/domains/polars.json index 65f2dd4bf..d636d949a 100644 --- a/domains/polars.json +++ b/domains/polars.json @@ -3,7 +3,7 @@ "username": "pol-ars", "email": "tariqsaedbusiness@outlook.com" }, - "record": { + "records": { "CNAME": "pol-ars.github.io" } } diff --git a/domains/poldek.json b/domains/poldek.json index a98db4452..2ff8933e9 100644 --- a/domains/poldek.json +++ b/domains/poldek.json @@ -3,7 +3,7 @@ "username": "poldekdev", "discord": "poldek333" }, - "record": { + "records": { "CNAME": "poldek.pages.dev" } } diff --git a/domains/polishboiyt.json b/domains/polishboiyt.json index 86e381037..0f2865a00 100644 --- a/domains/polishboiyt.json +++ b/domains/polishboiyt.json @@ -1,10 +1,9 @@ { "owner": { "username": "PolishBoiYT", - "discord": "994187133847875604", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lRT7_mboLxbZEhJf5GgShupSpYsiC5X4nKn9lneWnVOe0_Zy425skI6hIF0PDM8SiggRM6l8mZ6rMIWeLE2hD0-5s1Py6qeb193EEOtAflwJMzdQZzmiLSg2G8lvMkronAbqy9hhQvIlfn31oNMQHwCxDao4623iJu4Lms4LyX5O9q9k-OHbl1n9_x7OuQkCR-v-TcaswbIs30MYwbOanV_2Nq9_Mryh1UPFRvn9XccokV6Kg4epVLweUIfUfL5uLLky7MnMHCncen3InovJZPoWzsx6Ze4vO1WfgU90hLPbMhVwUptgFxYtuSF_drt2dV3c00HJRS_chslDnE-UkQ.2bulfUF5rDNMy8TOVgKpQw.PVcafBMcxwoWZyccETnARrk7TDCkoIZhl4z-hZKHbCni1ed1xfD62KpHH1modkbh_4v1O3s12jtwvcvrsumzwtsfFms59PIuxfevOezpwH4.wtRTEYk_LfzqZKdkqk3ivQ" + "discord": "994187133847875604" }, - "record": { + "records": { "CNAME": "polishboiyt.github.io" } } diff --git a/domains/polo.json b/domains/polo.json index 0800c8081..bcbd99f22 100644 --- a/domains/polo.json +++ b/domains/polo.json @@ -3,7 +3,7 @@ "username": "polo-1245-oficial", "discord": "725316907187568701" }, - "record": { + "records": { "CNAME": "polo-1245-oficial.github.io" } } diff --git a/domains/polongdev.json b/domains/polongdev.json index acd57582f..7b4636b38 100644 --- a/domains/polongdev.json +++ b/domains/polongdev.json @@ -3,7 +3,7 @@ "username": "PolongDev", "email": "kennethgregorioperez@gmail.com" }, - "record": { + "records": { "URL": "https://polongdev.github.io" } } diff --git a/domains/polopro.json b/domains/polopro.json index fbfac54f5..3ca5c080e 100644 --- a/domains/polopro.json +++ b/domains/polopro.json @@ -5,7 +5,7 @@ "username": "polo-1245-oficial", "email": "contacto@polo1245.es" }, - "record": { + "records": { "CNAME": "polo-1245-oficial.github.io" } } diff --git a/domains/polygon6233.json b/domains/polygon6233.json index 463f5ccfd..93c0d2bba 100644 --- a/domains/polygon6233.json +++ b/domains/polygon6233.json @@ -3,7 +3,7 @@ "username": "polygon6233", "email": "nikitasitter@gmail.com" }, - "record": { + "records": { "CNAME": "polygon6233.github.io" } } diff --git a/domains/poppy.json b/domains/poppy.json index 7bbbfb162..dd2525ac8 100644 --- a/domains/poppy.json +++ b/domains/poppy.json @@ -5,7 +5,7 @@ "username": "ignpoppyseed", "email": "ignpoppyseed@cloverbrand.xyz" }, - "record": { + "records": { "CNAME": "ignpoppyseed.github.io" } } diff --git a/domains/porant.json b/domains/porant.json index abf61d960..c5cc436e4 100644 --- a/domains/porant.json +++ b/domains/porant.json @@ -3,7 +3,7 @@ "username": "porant", "email": "porant@gmail.com" }, - "record": { + "records": { "A": ["188.194.183.203"] } } diff --git a/domains/portfolio.arash.json b/domains/portfolio.arash.json new file mode 100644 index 000000000..71c43cfbf --- /dev/null +++ b/domains/portfolio.arash.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio", + "owner": { + "username": "hatamiarash7", + "email": "hatamiarash7@gmail.com", + "twitter": "hatamiarash7" + }, + "records": { + "URL": "https://portfolio.arash-hatami.ir" + } +} diff --git a/domains/portfolio.json b/domains/portfolio.json new file mode 100644 index 000000000..de4f45709 --- /dev/null +++ b/domains/portfolio.json @@ -0,0 +1,11 @@ +{ + "description": "It is for my portfolio", + "repo": "https://github.com/alfonso12dev/portfolio", + "owner": { + "username": "alfonso12dev", + "email": "bmeza9407@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/posandu.json b/domains/posandu.json index 967592d15..5a2a93fb1 100644 --- a/domains/posandu.json +++ b/domains/posandu.json @@ -6,7 +6,7 @@ "email": "posandumapa@gmail.com", "twitter": "posandu" }, - "record": { + "records": { "CNAME": "posandu.github.io" } } diff --git a/domains/post.json b/domains/post.json index 0763d2d1c..d3510d405 100644 --- a/domains/post.json +++ b/domains/post.json @@ -3,7 +3,7 @@ "username": "vibred", "email": "vibred@att.net" }, - "record": { + "records": { "TXT": [ "verification-code-site-App_lark=HBuHgbKczItwYdsgJHDZ", "v=spf1 +include:spf.onlarksuite.com -all" diff --git a/domains/potato.json b/domains/potato.json index 9427482cf..62c59c715 100644 --- a/domains/potato.json +++ b/domains/potato.json @@ -3,7 +3,7 @@ "username": "RaafatTurki", "email": "raafat.turki@pm.me" }, - "record": { + "records": { "CNAME": "potato.alwaysdata.net" } } diff --git a/domains/potatoenergy.json b/domains/potatoenergy.json index 4decf203b..49fe6acee 100644 --- a/domains/potatoenergy.json +++ b/domains/potatoenergy.json @@ -5,7 +5,7 @@ "email": "ponfertato@potatoenergy.ru", "discord": "ponfertato" }, - "record": { + "records": { "CNAME": "potatoenergy.ru" } } diff --git a/domains/potatoland4492.json b/domains/potatoland4492.json index 8f3f2255f..7d00f6823 100644 --- a/domains/potatoland4492.json +++ b/domains/potatoland4492.json @@ -5,7 +5,7 @@ "username": "potatoland4492", "email": "potatoland4492@gmail.com" }, - "record": { + "records": { "CNAME": "potatoland4492.github.io" } } diff --git a/domains/pow.json b/domains/pow.json index 718c59e9a..a0c8069bf 100644 --- a/domains/pow.json +++ b/domains/pow.json @@ -3,7 +3,7 @@ "username": "Calebrlx", "email": "caleb@alyeska.dev" }, - "record": { + "records": { "URL": "https://calebrlx.github.io" } } diff --git a/domains/poyo.json b/domains/poyo.json index 567fa2ba4..53777b735 100644 --- a/domains/poyo.json +++ b/domains/poyo.json @@ -4,7 +4,7 @@ "username": "MrDaPoyo", "email": "wiiuforever25@gmail.com" }, - "record": { + "records": { "CNAME": "mrdapoyo.github.io" } } diff --git a/domains/poysa213.json b/domains/poysa213.json new file mode 100644 index 000000000..3d63f9d2b --- /dev/null +++ b/domains/poysa213.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "poysa213", + "email": "hanaiayoucef@gmail.com", + "discord": "944238875566551110", + "twitter": "poysa213", + "repo": "https://github.com/poysa213/portfolio" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ppg00.json b/domains/ppg00.json deleted file mode 100644 index e1f703da2..000000000 --- a/domains/ppg00.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "for my personal website ^_^", - "repo": "https://github.com/ppg00/ppg00.github.io", - "owner": { - "username": "ppg00", - "email": "ppqg00@gmail.com", - "twitter": "qqg00" - }, - "record": { - "CNAME": "ppg00.github.io" - } -} diff --git a/domains/ppierzchalka.json b/domains/ppierzchalka.json new file mode 100644 index 000000000..5b4008705 --- /dev/null +++ b/domains/ppierzchalka.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website of Przemyslaw Pierzchalka", + "repo": "https://github.com/ppierzchalka/firegarden", + "owner": { + "username": "ppierzchalka", + "email": "przemekpierzchalka@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ppyoung.json b/domains/ppyoung.json new file mode 100644 index 000000000..c7bdf4b94 --- /dev/null +++ b/domains/ppyoung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ppYoung", + "email": "dongyang.luo@gmail.com" + }, + "records": { + "CNAME": "ppyoung.github.io" + } +} diff --git a/domains/pr0k41.json b/domains/pr0k41.json index d09ae075f..8285e0b6d 100644 --- a/domains/pr0k41.json +++ b/domains/pr0k41.json @@ -5,7 +5,7 @@ "username": "pr0k41", "email": "pr0k41@proton.me" }, - "record": { + "records": { "CNAME": "pr0k41.github.io" } } diff --git a/domains/prabhakaranjm.json b/domains/prabhakaranjm.json index c70092f41..1f2d00390 100644 --- a/domains/prabhakaranjm.json +++ b/domains/prabhakaranjm.json @@ -5,7 +5,7 @@ "username": "prabhakaranjm", "email": "prabhakaran.jm@gmail.com" }, - "record": { + "records": { "CNAME": "prajaymas.github.io" } } diff --git a/domains/prabhas.json b/domains/prabhas.json new file mode 100644 index 000000000..c33d0ed44 --- /dev/null +++ b/domains/prabhas.json @@ -0,0 +1,11 @@ +{ + "description": "A personal website with information about me, notes and blogs.", + "repo": "https://github.com/TrailingWhitespace/Website", + "owner": { + "username": "TrailingWhitespace", + "email": "flash1719@protonmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/prabin.json b/domains/prabin.json index be6412422..d5c2edee2 100644 --- a/domains/prabin.json +++ b/domains/prabin.json @@ -5,7 +5,7 @@ "username": "prabincankod", "email": "prabinsubedi2016@gmail.com" }, - "record": { + "records": { "URL": "https://www.prabinsubedi.tech" } } diff --git a/domains/practical.json b/domains/practical.json index 64004ae0f..5bbabc293 100644 --- a/domains/practical.json +++ b/domains/practical.json @@ -5,7 +5,7 @@ "username": "practicaldev101", "email": "carlosospinomonsalve@gmail.com" }, - "record": { + "records": { "CNAME": "practicaldev101.github.io" } } diff --git a/domains/pradeepvarma22.json b/domains/pradeepvarma22.json index c2441c7f5..a29564236 100644 --- a/domains/pradeepvarma22.json +++ b/domains/pradeepvarma22.json @@ -4,7 +4,7 @@ "username": "pradeepvarma22", "email": "pradeepnadimpalli22@gmail.com" }, - "record": { + "records": { "CNAME": "pradeepvarma22.github.io" } } diff --git a/domains/praharsh.json b/domains/praharsh.json index b1531198b..f66c9684f 100644 --- a/domains/praharsh.json +++ b/domains/praharsh.json @@ -3,7 +3,7 @@ "username": "praharshjain", "email": "praharshsamria@gmail.com" }, - "record": { + "records": { "CNAME": "praharsh.zz.mu" } } diff --git a/domains/praharshjain.json b/domains/praharshjain.json index b1531198b..f66c9684f 100644 --- a/domains/praharshjain.json +++ b/domains/praharshjain.json @@ -3,7 +3,7 @@ "username": "praharshjain", "email": "praharshsamria@gmail.com" }, - "record": { + "records": { "CNAME": "praharsh.zz.mu" } } diff --git a/domains/prajapati-divya.json b/domains/prajapati-divya.json index 8346aca47..46da08d32 100644 --- a/domains/prajapati-divya.json +++ b/domains/prajapati-divya.json @@ -4,7 +4,7 @@ "owner": { "username": "prajapati-divya" }, - "record": { + "records": { "CNAME": "prajapati-divya.github.io" } } diff --git a/domains/prajwal.json b/domains/prajwal.json index 4fd04c8c6..c2016dda9 100644 --- a/domains/prajwal.json +++ b/domains/prajwal.json @@ -4,7 +4,7 @@ "email": "prjwl028@gmail.com", "discord": "721093211577385020" }, - "record": { + "records": { "CNAME": "toricane.github.io" } } diff --git a/domains/prakhar.json b/domains/prakhar.json index a1953b0d2..4807136e9 100644 --- a/domains/prakhar.json +++ b/domains/prakhar.json @@ -1,11 +1,10 @@ { "description": "Prakhar| Portfolio", - "repo": "https://github.com/Prakhar-commits.github.io", "owner": { "username": "Prakhar-commits", "email": "prakharb56@gmail.com" }, - "record": { + "records": { "CNAME": "prakhar-commits.github.io" } } diff --git a/domains/prakhillohiya.json b/domains/prakhillohiya.json index 727901172..67d76569b 100644 --- a/domains/prakhillohiya.json +++ b/domains/prakhillohiya.json @@ -3,7 +3,7 @@ "username": "prakhillohiya", "email": "prakhillohiya@gmail.com" }, - "record": { + "records": { "CNAME": "prakhillohiya.github.io" } } diff --git a/domains/pramod-rawat.json b/domains/pramod-rawat.json index d1389a416..443c836c8 100644 --- a/domains/pramod-rawat.json +++ b/domains/pramod-rawat.json @@ -5,7 +5,7 @@ "username": "pramod-rawat", "email": "pramod.rawat@truestaz.com" }, - "record": { + "records": { "CNAME": "pramod-rawat.github.io" } } diff --git a/domains/pranav.json b/domains/pranav.json new file mode 100644 index 000000000..07e6eede6 --- /dev/null +++ b/domains/pranav.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "Srcpranav", + "email": "zoldyckzoldyck41@gmail.com" + }, + "records": { + "CNAME": "pranav-portfolio-sigma.vercel.app" + }, + "proxied": true +} diff --git a/domains/pranavagrawal.json b/domains/pranavagrawal.json index 961525336..91ce6f1d5 100644 --- a/domains/pranavagrawal.json +++ b/domains/pranavagrawal.json @@ -5,9 +5,14 @@ "username": "pranavagrawal321", "email": "pranavagrawal321@gmail.com" }, - "record": { - "A": ["185.199.108.153"], - "AAAA": ["2606:50c0:8001::153"], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/pranavarya.json b/domains/pranavarya.json new file mode 100644 index 000000000..a93cd07c8 --- /dev/null +++ b/domains/pranavarya.json @@ -0,0 +1,11 @@ +{ + "description:": "pranavarya.is-a.dev (pranavarya.in)", + "owner": { + "username": "PranavArya37", + "email": "pranavarya2799@gmail.com", + "linkedin": "https://www.linkedin.com/in/pranavarya37/" + }, + "records": { + "URL": "https://pranavarya.in" + } +} diff --git a/domains/pranavs.json b/domains/pranavs.json new file mode 100644 index 000000000..bd1b907e7 --- /dev/null +++ b/domains/pranavs.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio-website", + "repo": "https://github.com/Prs96/portfolio-website.git", + "owner": { + "username": "Prs96", + "email": "pranavsudheesh34@gmail.com" + }, + "records": { + "CNAME": "prs96.github.io" + } +} diff --git a/domains/pranavsaxena.json b/domains/pranavsaxena.json index 6da15a292..cf4a1f093 100644 --- a/domains/pranavsaxena.json +++ b/domains/pranavsaxena.json @@ -6,7 +6,7 @@ "email": "pranavsaxena155@gmail.com", "discord": "PRANAV SAXENA#9327" }, - "record": { + "records": { "CNAME": "pranav-saxena.github.io" } } diff --git a/domains/pranavsingh.json b/domains/pranavsingh.json new file mode 100644 index 000000000..1d2342046 --- /dev/null +++ b/domains/pranavsingh.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/pranavsinghpatil/portfolio", + "owner": { + "username": "pranavsinghpatil", + "email": "puneet.pranav04@gmail.com" + }, + "records": { + "CNAME": "pranavsingh.vercel.app" + }, + "proxied": true +} diff --git a/domains/pranay.json b/domains/pranay.json new file mode 100644 index 000000000..215b80c61 --- /dev/null +++ b/domains/pranay.json @@ -0,0 +1,10 @@ +{ + "description": "Website for my personal use", + "owner": { + "username": "pranaynidhi", + "email": "pranaynidhi@gmail.com" + }, + "records": { + "CNAME": "pranaynidhi.tech" + } +} diff --git a/domains/praneeth.json b/domains/praneeth.json index e0b97f071..f3db0fdcc 100644 --- a/domains/praneeth.json +++ b/domains/praneeth.json @@ -4,7 +4,7 @@ "email": "praneeth.nkl@gmail.com", "discord": "606833730459533372" }, - "record": { + "records": { "CNAME": "praneeth-balamurugan.github.io" } } diff --git a/domains/pranjal.json b/domains/pranjal.json index dd2772b8e..2ecba3e81 100644 --- a/domains/pranjal.json +++ b/domains/pranjal.json @@ -5,7 +5,7 @@ "username": "Pranjal-SB", "email": "psbhatnagar.in@gmal.com" }, - "record": { + "records": { "CNAME": "pranjal-sb.github.io" } } diff --git a/domains/pranoy.json b/domains/pranoy.json new file mode 100644 index 000000000..ee47aafd6 --- /dev/null +++ b/domains/pranoy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pranoymajumdar", + "email": "pranoyfr@gmail.com", + "discord": "1303089079809740904" + }, + "records": { + "CNAME": "pranoy-ruby.vercel.app" + } +} diff --git a/domains/praquron.json b/domains/praquron.json index f979ea33a..a2fa2a159 100644 --- a/domains/praquron.json +++ b/domains/praquron.json @@ -6,7 +6,7 @@ "email": "praquron@gmail.com", "twitter": "praquron" }, - "record": { + "records": { "CNAME": "praquron.github.io" } } diff --git a/domains/prasad.json b/domains/prasad.json new file mode 100644 index 000000000..fab2e0064 --- /dev/null +++ b/domains/prasad.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "prasad89" + }, + "records": { + "CNAME": "prasad89.github.io" + } +} diff --git a/domains/prasant.json b/domains/prasant.json new file mode 100644 index 000000000..5be81ab26 --- /dev/null +++ b/domains/prasant.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/prashant48653c/portfolio", + "owner": { + "username": "prashant48653c", + "email": "acharyaprashant227@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/prashant.json b/domains/prashant.json index f57f055bb..4312f8de5 100644 --- a/domains/prashant.json +++ b/domains/prashant.json @@ -3,7 +3,7 @@ "username": "Meprazhant", "email": "meprazhant@gmail.com" }, - "record": { + "records": { "URL": "https://www.prashantkafle.com.np" } } diff --git a/domains/prashanthkusuma.json b/domains/prashanthkusuma.json new file mode 100644 index 000000000..660d5993c --- /dev/null +++ b/domains/prashanthkusuma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prashanthkusuma", + "email": "kusumaprashanth2000@gmail.com" + }, + "records": { + "URL": "https://prashanthkusuma.github.io" + } +} diff --git a/domains/prashil.json b/domains/prashil.json new file mode 100644 index 000000000..713e4c96e --- /dev/null +++ b/domains/prashil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prashilthul", + "email": "prashil1411@gmail.com" + }, + "records": { + "A": ["216.198.79.1", "64.29.17.1"] + } +} diff --git a/domains/prateek.json b/domains/prateek.json index ae5bdeb29..481ffcaae 100644 --- a/domains/prateek.json +++ b/domains/prateek.json @@ -6,7 +6,7 @@ "email": "chaubeyprateek2@gmail.com", "twitter": "PrateekChaubeyy" }, - "record": { + "records": { "CNAME": "prateek-chaubey.github.io" } } diff --git a/domains/pratham.json b/domains/pratham.json new file mode 100644 index 000000000..198d657f0 --- /dev/null +++ b/domains/pratham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Prathamdas3", + "email": "daspratham3@gmail.com" + }, + "records": { + "CNAME": "prathamdas.vercel.app" + } +} diff --git a/domains/pratham15541.json b/domains/pratham15541.json new file mode 100644 index 000000000..899fa9ca9 --- /dev/null +++ b/domains/pratham15541.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pratham15541", + "email": "prathamparikh94@gmail.com", + "discord": "951846985172938782" + }, + "records": { + "CNAME": "pratham-portfolio-web.vercel.app" + } +} diff --git a/domains/prathamesh.json b/domains/prathamesh.json index 5e405bafb..eb256eebd 100644 --- a/domains/prathamesh.json +++ b/domains/prathamesh.json @@ -1,10 +1,9 @@ { "owner": { - "username": "Prathamesh-Dukare", - "email": "prathameshdukaremail@gmail.com", - "discord": "741144155559821342" + "username": "prathamesh-2002", + "email": "prathameshisadev@gmail.com" }, - "record": { - "CNAME": "prathamesh.works" + "records": { + "CNAME": "prathamesh-2002.github.io" } } diff --git a/domains/prathm.json b/domains/prathm.json new file mode 100644 index 000000000..debc301fd --- /dev/null +++ b/domains/prathm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prathm", + "email": "prathmtayade30@gmail.com" + }, + "records": { + "CNAME": "prathmtayade.vercel.app" + } +} diff --git a/domains/pratike-patel.json b/domains/pratike-patel.json index d451ac524..8e555cd75 100644 --- a/domains/pratike-patel.json +++ b/domains/pratike-patel.json @@ -4,7 +4,7 @@ "owner": { "username": "pratike-patel" }, - "record": { + "records": { "CNAME": "pratike-patel.github.io" } } diff --git a/domains/pratikmali.json b/domains/pratikmali.json index 5f9ad85d3..559849249 100644 --- a/domains/pratikmali.json +++ b/domains/pratikmali.json @@ -3,7 +3,7 @@ "username": "impratik7", "email": "malipratik09@gmail.com" }, - "record": { + "records": { "CNAME": "impratik7.github.io" } } diff --git a/domains/pratikp-patel.json b/domains/pratikp-patel.json index 751dd3a8d..4c1c72539 100644 --- a/domains/pratikp-patel.json +++ b/domains/pratikp-patel.json @@ -4,7 +4,7 @@ "owner": { "username": "pratikp-patel" }, - "record": { + "records": { "CNAME": "pratikp-patel.github.io" } } diff --git a/domains/pratikshya.json b/domains/pratikshya.json index e6d7c99e1..f333c0356 100644 --- a/domains/pratikshya.json +++ b/domains/pratikshya.json @@ -4,7 +4,7 @@ "owner": { "username": "pratikshya-gautam" }, - "record": { + "records": { "CNAME": "pratikshya-gautam.github.io" } } diff --git a/domains/pratikthapw.json b/domains/pratikthapw.json new file mode 100644 index 000000000..c714881ca --- /dev/null +++ b/domains/pratikthapw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pratikthapw", + "email": "pratikthapw@gmail.com" + }, + "records": { + "CNAME": "pratikthapw.github.io" + } +} diff --git a/domains/prats.json b/domains/prats.json new file mode 100644 index 000000000..5bcdc85a3 --- /dev/null +++ b/domains/prats.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "theyashl", + "email": "yashlohakare48@outlook.com" + }, + "records": { + "CNAME": "developerfolio-are.pages.dev" + } +} diff --git a/domains/pratyay.json b/domains/pratyay.json index 4de110802..7c986bb93 100644 --- a/domains/pratyay.json +++ b/domains/pratyay.json @@ -1,11 +1,10 @@ { "description": "Pratyay's portfolio website and blog", - "repo": "https://github.com/x3nosiz", "owner": { "username": "x3nosiz", "email": "neilblaze007@gmail.com" }, - "record": { + "records": { "CNAME": "neilblaze.github.io" } } diff --git a/domains/praveen-2006.json b/domains/praveen-2006.json new file mode 100644 index 000000000..3ad0ee9b6 --- /dev/null +++ b/domains/praveen-2006.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "InfiniteCoder06", + "email": "mallidipraveenkumar@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/praveen-patel.json b/domains/praveen-patel.json index f3a80dbe6..d6829736c 100644 --- a/domains/praveen-patel.json +++ b/domains/praveen-patel.json @@ -1,11 +1,10 @@ { - "repo": "https://github.com/praveen8git", "owner": { "username": "praveen8git", "email": "praveenpatel@duck.com", "discord": "praveen.patel" }, - "record": { + "records": { "CNAME": "praveensingh.in" } } diff --git a/domains/praveen.json b/domains/praveen.json index 128459810..3f58a9f7d 100644 --- a/domains/praveen.json +++ b/domains/praveen.json @@ -1,11 +1,10 @@ { "description": "Praveen's personal developer website", - "repo": "https://github.com/PraveenPal4232", "owner": { "username": "PraveenPal4232", "email": "praveenpal4232@gmail.com" }, - "record": { + "records": { "CNAME": "praveenpal4232.github.io" } } diff --git a/domains/premiumairoxide.json b/domains/premiumairoxide.json index dc7a76be0..ea8a916ea 100644 --- a/domains/premiumairoxide.json +++ b/domains/premiumairoxide.json @@ -4,7 +4,7 @@ "email": "iididhejejdj@gmail.com", "discord": "850820069310201896" }, - "record": { + "records": { "CNAME": "air-busl.onrender.com" } } diff --git a/domains/preston-code-lobby.json b/domains/preston-code-lobby.json index 1ed2484da..cb60b4c39 100644 --- a/domains/preston-code-lobby.json +++ b/domains/preston-code-lobby.json @@ -3,7 +3,7 @@ "username": "Skitskat7738", "email": "doooogy7738@gmail.com" }, - "record": { + "records": { "URL": "https://mountainous-doll.surge.sh/preston-code/prestoncode.wixsite.com/website-2.html" } } diff --git a/domains/preston-code.json b/domains/preston-code.json index e78bff979..af7063313 100644 --- a/domains/preston-code.json +++ b/domains/preston-code.json @@ -3,7 +3,7 @@ "username": "preston-riley", "email": "pres1234569@gmail.com" }, - "record": { + "records": { "CNAME": "preston-riley.github.io" } } diff --git a/domains/preview.shan.json b/domains/preview.shan.json index 14545aa26..c9c7a77b0 100644 --- a/domains/preview.shan.json +++ b/domains/preview.shan.json @@ -5,7 +5,7 @@ "email": "mail@shan.is-a.dev", "twitter": "lordlinux69" }, - "record": { + "records": { "A": ["45.90.12.122"] } } diff --git a/domains/prharshith.json b/domains/prharshith.json index f0944d7a9..fe93a3d0d 100644 --- a/domains/prharshith.json +++ b/domains/prharshith.json @@ -4,7 +4,7 @@ "email": "prharshith37@gmail.com", "twitter": "prharshith37" }, - "record": { + "records": { "CNAME": "prharshith.pages.dev" } } diff --git a/domains/prima.json b/domains/prima.json index 9aa55d685..a8da7cd57 100644 --- a/domains/prima.json +++ b/domains/prima.json @@ -3,7 +3,7 @@ "username": "coderzhaxor", "email": "ajanuantara@gmail.com" }, - "record": { + "records": { "CNAME": "coderzhaxor.github.io" } } diff --git a/domains/prime.json b/domains/prime.json index b9bd80825..d5a939def 100644 --- a/domains/prime.json +++ b/domains/prime.json @@ -6,7 +6,7 @@ "email": "primetdmomega@gmail.com", "twitter": "primeinspace" }, - "record": { + "records": { "CNAME": "primetdmomega.github.io" } } diff --git a/domains/prince.json b/domains/prince.json index da9cd79dc..d5c7cc3b5 100644 --- a/domains/prince.json +++ b/domains/prince.json @@ -8,7 +8,7 @@ "twitter": "ThePrinceRaj", "discord": "bhaalu" }, - "record": { + "records": { "CNAME": "theprinceraj.github.io" } } diff --git a/domains/princeprajapati.json b/domains/princeprajapati.json index ae58450fd..5da70c5d0 100644 --- a/domains/princeprajapati.json +++ b/domains/princeprajapati.json @@ -3,7 +3,7 @@ "username": "notreallyprince", "email": "prince30112001@gmail.com" }, - "record": { + "records": { "CNAME": "princexd.vercel.app" } } diff --git a/domains/princevora.json b/domains/princevora.json new file mode 100644 index 000000000..1fdf0755e --- /dev/null +++ b/domains/princevora.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "princevora" + }, + "records": { + "CNAME": "princevora.vercel.app" + } +} diff --git a/domains/princexd.json b/domains/princexd.json index ae58450fd..5da70c5d0 100644 --- a/domains/princexd.json +++ b/domains/princexd.json @@ -3,7 +3,7 @@ "username": "notreallyprince", "email": "prince30112001@gmail.com" }, - "record": { + "records": { "CNAME": "princexd.vercel.app" } } diff --git a/domains/priscila.json b/domains/priscila.json new file mode 100644 index 000000000..0c7c44ef7 --- /dev/null +++ b/domains/priscila.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pgoliv-code", + "email": "pguillen.oliv@gmail.com" + }, + "records": { + "CNAME": "pgoliv-code.github.io" + } +} diff --git a/domains/pritam.json b/domains/pritam.json new file mode 100644 index 000000000..d11f6c105 --- /dev/null +++ b/domains/pritam.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio.", + "repo": "https://github.com/ImDarkShadow/ImDarkShadow", + "owner": { + "username": "ImDarkShadow", + "email": "itspritam@proton.me" + }, + "records": { + "CNAME": "pritam-das.vercel.app" + } +} diff --git a/domains/priti-shide.json b/domains/priti-shide.json index 37e6cbad4..32bd898be 100644 --- a/domains/priti-shide.json +++ b/domains/priti-shide.json @@ -4,7 +4,7 @@ "owner": { "username": "priti-shide" }, - "record": { + "records": { "CNAME": "priti-shide.github.io" } } diff --git a/domains/private.shockbs.json b/domains/private.shockbs.json index 3f6947a7b..97253d289 100644 --- a/domains/private.shockbs.json +++ b/domains/private.shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "CNAME": "shockbs-private.netlify.app" } } diff --git a/domains/privatekey.json b/domains/privatekey.json deleted file mode 100644 index 39624ad33..000000000 --- a/domains/privatekey.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "keydevelops", - "email": "rumaevvadim@gmail.com" - }, - "record": { - "CNAME": "keydevelops.github.io" - } -} diff --git a/domains/priyansh.json b/domains/priyansh.json index 390b88b26..06c4568a4 100644 --- a/domains/priyansh.json +++ b/domains/priyansh.json @@ -3,7 +3,7 @@ "username": "oyepriyansh", "email": "hi@priyansh.app" }, - "record": { + "records": { "CNAME": "priyansh.pages.dev" } } diff --git a/domains/priyanshu.json b/domains/priyanshu.json index bc043c227..2c85b0131 100644 --- a/domains/priyanshu.json +++ b/domains/priyanshu.json @@ -1,10 +1,10 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com", + "email": "priyansxu@yahoo.com", "twitter": "priyansxu_gupta" }, - "record": { + "records": { "CNAME": "priyanshu.pages.dev" } } diff --git a/domains/priyanshul.json b/domains/priyanshul.json index 60fcdbea9..0ad46bde7 100644 --- a/domains/priyanshul.json +++ b/domains/priyanshul.json @@ -5,7 +5,7 @@ "username": "Priyanshul1307", "email": "piyanshul1307@gmail.com" }, - "record": { + "records": { "CNAME": "priyanshul130.github.io" } } diff --git a/domains/priyas-rana.json b/domains/priyas-rana.json index 7e8714b37..14102e900 100644 --- a/domains/priyas-rana.json +++ b/domains/priyas-rana.json @@ -4,7 +4,7 @@ "owner": { "username": "priyas-rana" }, - "record": { + "records": { "CNAME": "priyas-rana.github.io" } } diff --git a/domains/prnice.json b/domains/prnice.json index 01d447ad5..296ecdacc 100644 --- a/domains/prnice.json +++ b/domains/prnice.json @@ -5,7 +5,7 @@ }, "repo": "https://portfolio.prnice.me", "description": "Test domain for this really cool service", - "record": { + "records": { "URL": "https://portfolio.prnice.me" } } diff --git a/domains/probir-sarkar.json b/domains/probir-sarkar.json index c0dcd0345..911457cf6 100644 --- a/domains/probir-sarkar.json +++ b/domains/probir-sarkar.json @@ -3,7 +3,7 @@ "username": "probir-sarkar", "email": "me@probir.dev" }, - "record": { + "records": { "URL": "https://probir-sarkar.vercel.app" } } diff --git a/domains/proficode.json b/domains/proficode.json index ab1555bf5..f43faeb6c 100644 --- a/domains/proficode.json +++ b/domains/proficode.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "profic0de", - "email": "anonymou3489@gmail.com" - }, - "record": { - "CNAME": "239581.site.bot-hosting.net" - } + "owner": { + "username": "profic0de", + "email": "anonymou3489@gmail.com" + }, + "records": { + "CNAME": "239581.site.bot-hosting.net" + } } diff --git a/domains/profile.alora.json b/domains/profile.alora.json index 0cc3ce1b2..ffb897b48 100644 --- a/domains/profile.alora.json +++ b/domains/profile.alora.json @@ -4,7 +4,7 @@ "email": "xaloramia@gmail.com", "discord": "1236292707371057216" }, - "record": { + "records": { "CNAME": "3d-portfolio-jade-ten.vercel.app" } } diff --git a/domains/profile.json b/domains/profile.json index 10d042abf..1749a4695 100644 --- a/domains/profile.json +++ b/domains/profile.json @@ -3,7 +3,7 @@ "username": "oyepriyansh", "email": "oyepriyansh@hotmail.com" }, - "record": { + "records": { "CNAME": "oyepriyansh.github.io" } } diff --git a/domains/proghead00.json b/domains/proghead00.json index 9f4244f5a..d53e2daf4 100644 --- a/domains/proghead00.json +++ b/domains/proghead00.json @@ -5,7 +5,7 @@ "username": "proghead00", "email": "susnata00@gmail.com" }, - "record": { + "records": { "CNAME": "proghead00.github.io" } } diff --git a/domains/programmerraja.json b/domains/programmerraja.json new file mode 100644 index 000000000..35788b182 --- /dev/null +++ b/domains/programmerraja.json @@ -0,0 +1,11 @@ +{ + "description": "programmerraja is.a.dev domain!", + "repo": "https://github.com/programmerraja/programmerraja.github.io", + "owner": { + "username": "programmerraja", + "email": "boooathis123@gmail.com" + }, + "records": { + "CNAME": "programmerraja.github.io" + } +} diff --git a/domains/projassets.oxmc.json b/domains/projassets.oxmc.json index 28a3a3fb7..bb175cb4a 100644 --- a/domains/projassets.oxmc.json +++ b/domains/projassets.oxmc.json @@ -4,13 +4,8 @@ "email": "oxmc7769.mail@gmail.com", "discord": "oxmc7769" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=contact:oxmc7769.mail@gmail.com" } diff --git a/domains/project-jam.json b/domains/project-jam.json index a0b9b2cc7..a7fb8abf2 100644 --- a/domains/project-jam.json +++ b/domains/project-jam.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "Omarplayz233", - "email": "mrbouiri@gmail.com" - }, - "record": { - "NS": [ - "elsa.ns.cloudflare.com", - "roan.ns.cloudflare.com" - ] - } + "owner": { + "username": "Omarplayz233", + "email": "mrbouiri@gmail.com" + }, + "records": { + "NS": ["elsa.ns.cloudflare.com", "roan.ns.cloudflare.com"] + } } diff --git a/domains/projects.catzboy.json b/domains/projects.catzboy.json index b3aae05fb..68258e510 100644 --- a/domains/projects.catzboy.json +++ b/domains/projects.catzboy.json @@ -5,7 +5,7 @@ "username": "Maruful007", "email": "marufulislamsami2007@gmail.com" }, - "record": { + "records": { "CNAME": "maruful007.github.io" } } diff --git a/domains/projects.skibidi.json b/domains/projects.skibidi.json new file mode 100644 index 000000000..fb2f11007 --- /dev/null +++ b/domains/projects.skibidi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bananaking6", + "email": "", + "discord": "skibidibagel" + }, + "records": { + "CNAME": "skibidi-4.vercel.app" + } +} diff --git a/domains/prokai-kun.json b/domains/prokai-kun.json index 8ee15ad97..b548f6227 100644 --- a/domains/prokai-kun.json +++ b/domains/prokai-kun.json @@ -5,7 +5,7 @@ "username": "IAKORP", "email": "prokaiindo003@gmail.com" }, - "record": { + "records": { "CNAME": "iakorp.github.io" } } diff --git a/domains/prokai.json b/domains/prokai.json index 11715999d..43bee1e83 100644 --- a/domains/prokai.json +++ b/domains/prokai.json @@ -5,7 +5,7 @@ "username": "14k0rp", "email": "iakorp@protonmail.com" }, - "record": { + "records": { "CNAME": "14k0rp.github.io" } } diff --git a/domains/pronicio.json b/domains/pronicio.json index 1ffca5071..5e1eb8c80 100644 --- a/domains/pronicio.json +++ b/domains/pronicio.json @@ -1,12 +1,11 @@ { "description": "Pronicio's Portfolio", - "repo": "https://github.com/Pronicio", "owner": { "username": "Pronicio", "email": "pronicio.contact@gmail.com", "twitter": "Pronicio_dev" }, - "record": { + "records": { "CNAME": "portfolio-5s1.pages.dev" } } diff --git a/domains/protoshock.gizzy.json b/domains/protoshock.gizzy.json index d2fba1abb..f351a04a9 100644 --- a/domains/protoshock.gizzy.json +++ b/domains/protoshock.gizzy.json @@ -4,7 +4,7 @@ "username": "GizzyUwU", "email": "nerop455@gmail.com" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/proudmuslim.json b/domains/proudmuslim.json index 95ffb7402..6f7660b6c 100644 --- a/domains/proudmuslim.json +++ b/domains/proudmuslim.json @@ -4,7 +4,7 @@ "username": "proudmuslim-dev", "email": "proudmuslim-dev@protonmail.com" }, - "record": { + "records": { "CNAME": "proudmuslim-dev.github.io" } } diff --git a/domains/prox.preston-code.json b/domains/prox.preston-code.json index b1ab99cdd..ef05e0b29 100644 --- a/domains/prox.preston-code.json +++ b/domains/prox.preston-code.json @@ -4,7 +4,7 @@ "email": "pres1234569@gmail.com", "discord": "816152941923663902" }, - "record": { + "records": { "CNAME": "compiler-glzx.onrender.com" } } diff --git a/domains/proxy.json b/domains/proxy.json index b226183e2..cc1778ed4 100644 --- a/domains/proxy.json +++ b/domains/proxy.json @@ -5,7 +5,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "CNAME": "notaperson535.github.io" } } diff --git a/domains/proxy.trung.json b/domains/proxy.trung.json index b99730c4e..488318c9f 100644 --- a/domains/proxy.trung.json +++ b/domains/proxy.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/proxyjohnny.json b/domains/proxyjohnny.json index dfd792f8b..e09f88b20 100644 --- a/domains/proxyjohnny.json +++ b/domains/proxyjohnny.json @@ -3,7 +3,7 @@ "username": "ProxyJohnny", "email": "johnnydx7@gmail.com" }, - "record": { + "records": { "CNAME": "proxyjohnny.pages.dev" } } diff --git a/domains/proxzima.json b/domains/proxzima.json index f031317d4..31bd53d6a 100644 --- a/domains/proxzima.json +++ b/domains/proxzima.json @@ -7,7 +7,7 @@ "twitter": "pro_x_zima", "discord": "PROxZIMA#7272" }, - "record": { + "records": { "CNAME": "proxzima.github.io" } } diff --git a/domains/prozt.json b/domains/prozt.json index f2bffbdb5..a9385b128 100644 --- a/domains/prozt.json +++ b/domains/prozt.json @@ -3,7 +3,7 @@ "username": "TechPro709", "email": "prozt709@gmail.com" }, - "record": { + "records": { "CNAME": "techpro709.github.io" } } diff --git a/domains/prtksunal.json b/domains/prtksunal.json index 127485dd9..5a80e78ff 100644 --- a/domains/prtksunal.json +++ b/domains/prtksunal.json @@ -3,7 +3,7 @@ "username": "prateekmedia", "email": "prtksunal@gmail.com" }, - "record": { + "records": { "CNAME": "prateekmedia.github.io" } } diff --git a/domains/ps.json b/domains/ps.json index 1a4a92db5..62507c792 100644 --- a/domains/ps.json +++ b/domains/ps.json @@ -1,9 +1,8 @@ { "owner": { - "username": "PrivacySecured", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ" + "username": "PrivacySecured" }, - "record": { + "records": { "CNAME": "privacysecured.github.io" } } diff --git a/domains/psicmi.json b/domains/psicmi.json index c35086852..709447f9b 100644 --- a/domains/psicmi.json +++ b/domains/psicmi.json @@ -3,7 +3,7 @@ "username": "psicmi", "email": "hello@psicmi.party" }, - "record": { + "records": { "CNAME": "psicmi.win" } } diff --git a/domains/psj.json b/domains/psj.json index 5514a9335..008dc019c 100644 --- a/domains/psj.json +++ b/domains/psj.json @@ -3,7 +3,7 @@ "username": "philphirn", "email": "locusapp1@gmail.com" }, - "record": { + "records": { "CNAME": "philphirn.github.io" } } diff --git a/domains/psnbl.json b/domains/psnbl.json index e6b5ddc49..b89ced569 100644 --- a/domains/psnbl.json +++ b/domains/psnbl.json @@ -3,7 +3,7 @@ "username": "psnbl", "email": "pietrosimone.nobiletti@studenti.unipr.it" }, - "record": { + "records": { "CNAME": "psnbl.github.io" } } diff --git a/domains/psy.json b/domains/psy.json index 8b6da6e21..c9f089649 100644 --- a/domains/psy.json +++ b/domains/psy.json @@ -3,7 +3,7 @@ "username": "ensyde", "email": "ensyde0@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ensyde" } } diff --git a/domains/ptd.json b/domains/ptd.json index 401823245..bb0df91f7 100644 --- a/domains/ptd.json +++ b/domains/ptd.json @@ -4,7 +4,7 @@ "username": "phantatdung233", "email": "phantatdung233@gmail.com" }, - "record": { + "records": { "CNAME": "ptdung.site" } } diff --git a/domains/ptr.json b/domains/ptr.json new file mode 100644 index 000000000..deb258fd7 --- /dev/null +++ b/domains/ptr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "schminho", + "email": "peter@geiselnehmer.de" + }, + "records": { + "CNAME": "schminho.github.io" + } +} diff --git a/domains/pulkitmidha.json b/domains/pulkitmidha.json new file mode 100644 index 000000000..7bcd3fd35 --- /dev/null +++ b/domains/pulkitmidha.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website", + "owner": { + "username": "midopooler", + "email": "midhapulkit28@gmail.com" + }, + "records": { + "CNAME": "midopooler.github.io" + } +} diff --git a/domains/puncoz.json b/domains/puncoz.json new file mode 100644 index 000000000..9708322fc --- /dev/null +++ b/domains/puncoz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "puncoz", + "discord": "333515022565113856" + }, + "records": { + "NS": ["bruce.ns.cloudflare.com", "coco.ns.cloudflare.com"] + } +} diff --git a/domains/push.json b/domains/push.json index 290292048..c130e0f82 100644 --- a/domains/push.json +++ b/domains/push.json @@ -6,7 +6,7 @@ "email": "pushing@mailfence.com", "twitter": "Thxczx" }, - "record": { + "records": { "CNAME": "pushingcc.github.io" } } diff --git a/domains/pushpak.json b/domains/pushpak.json index 8e0712686..821382492 100644 --- a/domains/pushpak.json +++ b/domains/pushpak.json @@ -5,7 +5,7 @@ "username": "1pushpak1", "email": "pushpakkumawat20028@gmail.com" }, - "record": { + "records": { "CNAME": "1pushpak1.github.io" } } diff --git a/domains/pustak.json b/domains/pustak.json index 60c4cb14d..283effa9c 100644 --- a/domains/pustak.json +++ b/domains/pustak.json @@ -3,7 +3,7 @@ "username": "PustakP", "email": "pustakpathak7@gmail.com" }, - "record": { + "records": { "CNAME": "oppoyy.pages.dev" } } diff --git a/domains/pvyas.json b/domains/pvyas.json index 34baaa5a3..bbc3f7cc2 100644 --- a/domains/pvyas.json +++ b/domains/pvyas.json @@ -1,10 +1,9 @@ { "owner": { "username": "parthvyas7", - "discord": "505731689788473347", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sf0jfkbSFi9mJlIHKGJyHq6aLTTeihBVr4C24pYoXyVydhbwXIsvMjzl6EplTvtAdaaTKAeA2Mvda4Q4_FrbsBdkX3Qd56ByRc4uuLHj-IX_-2W4gJ6EFUZ67Fqx1ePQIZ50SpZw9zLZBhXmExF0bOd3c9xJaf081kgqISRjxYlfy0ITaXjvly9ye2CDAgFN-oyKtRAyoolwiGCywfl-njl-oix02Ezc3EWS0zWVTPIjTyGoAxeeexfobLV0wWQa9P27GsnKQrTfpmmWxWlPLLfUlKmotW2C9bEPWSu5dEWhvCnQDry5tJ2m9IHsoSy27YRiqQLLo-WeQNF7CU9tLg.gf0byOghlGoqNnuHgld42A.EddL6PqoWvCcmqTte698ZKtTyyt_8sqMYIvVciH4GSSbOPxsKtRZkYE73QdBSC-tC0CwX2-nxsAGOSff4VFUSCl7S8p-s8YEmLe2-0g21QmPwyXGVwi1lAMcAY0GODf4.VypDGE8qp8W364yhOfkfNA" + "discord": "505731689788473347" }, - "record": { + "records": { "CNAME": "parthvyas7.github.io" } } diff --git a/domains/pxseu.json b/domains/pxseu.json index d54b138a9..0a7b18bf8 100644 --- a/domains/pxseu.json +++ b/domains/pxseu.json @@ -4,7 +4,7 @@ "username": "pxseu", "twitter": "pxseu" }, - "record": { + "records": { "URL": "https://www.pxseu.com" } } diff --git a/domains/pxsty.json b/domains/pxsty.json new file mode 100644 index 000000000..9d8bb2b4f --- /dev/null +++ b/domains/pxsty.json @@ -0,0 +1,11 @@ +{ + "description": "pxsty personal web page", + "repo": "https://github.com/pxsty0/pxsty0.github.io", + "owner": { + "username": "pxsty0", + "email": "pxsty@pxserv.net" + }, + "records": { + "CNAME": "pxsty0.github.io" + } +} diff --git a/domains/py.json b/domains/py.json index b3e1d70fd..9f2fe500e 100644 --- a/domains/py.json +++ b/domains/py.json @@ -3,7 +3,7 @@ "username": "jrirydkdifu", "email": "0kryptx@gmail.com" }, - "record": { + "records": { "CNAME": "jrirydkdifu.github.io" } } diff --git a/domains/pyaesonewin.json b/domains/pyaesonewin.json new file mode 100644 index 000000000..9b17ac62c --- /dev/null +++ b/domains/pyaesonewin.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website and portfolio for Pyae Sone Win", + "repo": "https://github.com/mgmgpyaesonewin/mgmgpyaesonewin.github.io", + "owner": { + "username": "mgmgpyaesonewin", + "email": "pyaesonewin.dev@gmail.com" + }, + "records": { + "CNAME": "mgmgpyaesonewin.github.io" + } +} diff --git a/domains/pyro.json b/domains/pyro.json index 194a0fb34..aa18279da 100644 --- a/domains/pyro.json +++ b/domains/pyro.json @@ -1,11 +1,10 @@ { "description": "pyro's portfolio", - "repo": "https://github.com/pyroisgamer.github.io", "owner": { "username": "pyroisgamer", "email": "pyroisgamer@outlook.com" }, - "record": { + "records": { "CNAME": "pyroisgamer.github.io" } } diff --git a/domains/pythonplumber.json b/domains/pythonplumber.json index a0cb3b2b0..9ac3d9ae3 100644 --- a/domains/pythonplumber.json +++ b/domains/pythonplumber.json @@ -5,7 +5,7 @@ "username": "PythonPlumber", "email": "mario.yellow.bea@proton.me" }, - "record": { + "records": { "CNAME": "pythonplumber.github.io" } } diff --git a/domains/pythonscratcher.json b/domains/pythonscratcher.json index 2ab0b99e5..42b29975c 100644 --- a/domains/pythonscratcher.json +++ b/domains/pythonscratcher.json @@ -3,7 +3,7 @@ "username": "PythonScratcher", "email": "callumcardy7@gmail.com" }, - "record": { + "records": { "CNAME": "pythonscratcher.github.io" } } diff --git a/domains/pythonweb.json b/domains/pythonweb.json new file mode 100644 index 000000000..1e4afd24c --- /dev/null +++ b/domains/pythonweb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeGeekR", + "discord": "768080481924677632" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/pyve.json b/domains/pyve.json index 29f444a1a..1fedf2ca7 100644 --- a/domains/pyve.json +++ b/domains/pyve.json @@ -5,7 +5,7 @@ "username": "pvignau", "email": "vignau.py@gmail.com" }, - "record": { + "records": { "CNAME": "pvignau.github.io" } } diff --git a/domains/pyyupsk.json b/domains/pyyupsk.json index 467897efe..a56dd2b0d 100644 --- a/domains/pyyupsk.json +++ b/domains/pyyupsk.json @@ -3,9 +3,8 @@ "username": "pyyupsk", "email": "pyyupsk@proton.me" }, - "description": "👋 Hello! I'm ファース, a passionate full-stack developer with a passionate about creating innovative solutions that have a positive impact on people's lives.", - "repo": "https://github.com/pyyupsk/personal-website", - "record": { - "CNAME": "pyyupsk.pages.dev" + "description": "Independent full-stack developer based in Thailand. Building efficient and scalable web apps.", + "records": { + "CNAME": "personal-website-4xb.pages.dev" } } diff --git a/domains/pznguin.json b/domains/pznguin.json index 888585325..ebb96813d 100644 --- a/domains/pznguin.json +++ b/domains/pznguin.json @@ -3,7 +3,7 @@ "username": "pznguin-kyun", "email": "p3nguinkun@proton.me" }, - "record": { + "records": { "CNAME": "pznguin-kyun.github.io" } } diff --git a/domains/q.json b/domains/q.json index 26ddb97a0..baa7c4a24 100644 --- a/domains/q.json +++ b/domains/q.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "CNAME": "xproject-xi.vercel.app" - } + "owner": { + "username": "syedtahseen", + "email": "itxtahseen@gmail.com" + }, + "records": { + "CNAME": "xproject-xi.vercel.app" + } } diff --git a/domains/qavv.json b/domains/qavv.json new file mode 100644 index 000000000..4c26c5b0f --- /dev/null +++ b/domains/qavv.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "qavv" + }, + "records": { + "CNAME": "qavv.github.io" + } +} diff --git a/domains/qhungg289.json b/domains/qhungg289.json index 8ce92a95d..8f0ed16ac 100644 --- a/domains/qhungg289.json +++ b/domains/qhungg289.json @@ -4,7 +4,7 @@ "email": "qhungg289@proton.me" }, "repo": "https://github.com/qhungg289/qhungg289.github.io", - "record": { + "records": { "CNAME": "qhungg289.github.io" } } diff --git a/domains/qing762.json b/domains/qing762.json index cdb0dca57..c5750f088 100644 --- a/domains/qing762.json +++ b/domains/qing762.json @@ -3,7 +3,7 @@ "username": "qing762", "email": "threatedblade@outlook.com" }, - "record": { + "records": { "CNAME": "qing-website.onrender.com" } } diff --git a/domains/qloha.json b/domains/qloha.json index 91951a17f..ccdcbdba9 100644 --- a/domains/qloha.json +++ b/domains/qloha.json @@ -2,11 +2,11 @@ "description": "Portfolio", "repo": "https://github.com/qloha/qloha.github.io", "owner": { - "username": "qloha", - "youtube": "https://youtube.com/@qloha", - "email": "sirfigaloha@gmail.com" + "username": "qloha", + "youtube": "https://youtube.com/@qloha", + "email": "sirfigaloha@gmail.com" }, - "record": { - "CNAME": "qloha.github.io" + "records": { + "CNAME": "qloha.github.io" } -} \ No newline at end of file +} diff --git a/domains/qnos.json b/domains/qnos.json index 18d3fc039..775242530 100644 --- a/domains/qnos.json +++ b/domains/qnos.json @@ -5,7 +5,7 @@ "username": "Qnos", "email": "qnos237@gmail.com" }, - "record": { + "records": { "CNAME": "qnos41.github.io" } } diff --git a/domains/qr.akshtt.json b/domains/qr.akshtt.json new file mode 100644 index 000000000..460347ccf --- /dev/null +++ b/domains/qr.akshtt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/qrcode.json b/domains/qrcode.json index 72bd1be2b..c29af2586 100644 --- a/domains/qrcode.json +++ b/domains/qrcode.json @@ -4,7 +4,7 @@ "username": "isobarsmustang0g", "email": "isobars.mustang_0g@icloud.com" }, - "record": { + "records": { "A": ["103.97.126.29"] } } diff --git a/domains/qtitpc.json b/domains/qtitpc.json index 25943f908..fb12e44bd 100644 --- a/domains/qtitpc.json +++ b/domains/qtitpc.json @@ -3,7 +3,7 @@ "username": "qtungnui07", "email": "qtung.07.dt@gmail.com" }, - "record": { + "records": { "CNAME": "qtungnui07.github.io" } } diff --git a/domains/quadeer.json b/domains/quadeer.json index e2b52a500..263d64e96 100644 --- a/domains/quadeer.json +++ b/domains/quadeer.json @@ -3,7 +3,7 @@ "username": "maquadeer", "email": "mdquadeer2003@gmail.com" }, - "record": { + "records": { "CNAME": "quadeer.pages.dev" } } diff --git a/domains/quang.json b/domains/quang.json new file mode 100644 index 000000000..1ba414f80 --- /dev/null +++ b/domains/quang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kokkini", + "email": "trannhatquang1104@gmail.com" + }, + "records": { + "CNAME": "kokkini.github.io" + } +} diff --git a/domains/quangtran.json b/domains/quangtran.json new file mode 100644 index 000000000..1ba414f80 --- /dev/null +++ b/domains/quangtran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kokkini", + "email": "trannhatquang1104@gmail.com" + }, + "records": { + "CNAME": "kokkini.github.io" + } +} diff --git a/domains/quantum.json b/domains/quantum.json index d472647a4..a438572f8 100644 --- a/domains/quantum.json +++ b/domains/quantum.json @@ -1,9 +1,12 @@ { "owner": { - "username": "RabbitFored", - "email": "quantum@theostrich.eu.org" + "username": "lakshinhemachandran", + "email": "lh140313@outlook.com" }, - "record": { - "CNAME": "quantum.theostrich.eu.org" - } + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"], + "CNAME": "lakshinhemachandran.github.io" + }, + "proxied": true } diff --git a/domains/quantumgarden.json b/domains/quantumgarden.json index 822c527d4..ef0f380dd 100644 --- a/domains/quantumgarden.json +++ b/domains/quantumgarden.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "AlejandroGomezFrieiro", - "email": "alejandrogomezfrieiro@gmail.com" - }, - "record": { - "CNAME": "alejandrogomezfrieiro.github.io" - } + "owner": { + "username": "AlejandroGomezFrieiro", + "email": "alejandrogomezfrieiro@gmail.com" + }, + "records": { + "CNAME": "alejandrogomezfrieiro.github.io" + } } diff --git a/domains/quantummapleqc.json b/domains/quantummapleqc.json index d9fb6ac91..647b6c439 100644 --- a/domains/quantummapleqc.json +++ b/domains/quantummapleqc.json @@ -4,7 +4,7 @@ "username": "quantumapleqc", "email": "thefattestmod@gmail.com" }, - "record": { + "records": { "CNAME": "quantummapleqc.github.io" } } diff --git a/domains/quddi.json b/domains/quddi.json new file mode 100644 index 000000000..0b1450726 --- /dev/null +++ b/domains/quddi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Quddi", + "email": "quddi6@gmail.com" + }, + "records": { + "CNAME": "quddiy.github.io" + } +} diff --git a/domains/queirozt.json b/domains/queirozt.json index ce87828fe..7b961b407 100644 --- a/domains/queirozt.json +++ b/domains/queirozt.json @@ -3,7 +3,7 @@ "username": "QueirozT", "email": "tiagoqueirozgoncalves100@gmail.com" }, - "record": { + "records": { "A": ["144.22.180.97"] } } diff --git a/domains/qui.json b/domains/qui.json index cb82f193a..51a3202cd 100644 --- a/domains/qui.json +++ b/domains/qui.json @@ -3,7 +3,7 @@ "username": "quiww", "mastodon": "qui@bsd.cafe" }, - "record": { + "records": { "CNAME": "quiww.github.io" } } diff --git a/domains/quick.json b/domains/quick.json index e3e92110f..60ed039b3 100644 --- a/domains/quick.json +++ b/domains/quick.json @@ -6,7 +6,7 @@ "email": "quickdaffy@gmail.com", "twitter": "quickdaffy" }, - "record": { + "records": { "CNAME": "quickdaffy.github.io" } } diff --git a/domains/quincetart10.json b/domains/quincetart10.json index 813f0ee88..efadd54d1 100644 --- a/domains/quincetart10.json +++ b/domains/quincetart10.json @@ -5,13 +5,8 @@ "username": "QuinceTart10", "discord": "862644161156218891" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": [ "5a3d085e4aa47645.mx1.emailprofi.seznam.cz", "5a3d085e4aa47645.mx2.emailprofi.seznam.cz" diff --git a/domains/quvi.json b/domains/quvi.json index 1d2d9e499..a116f9b42 100644 --- a/domains/quvi.json +++ b/domains/quvi.json @@ -5,7 +5,7 @@ "username": "quvvii", "email": "quvi.top@gmail.com" }, - "record": { + "records": { "CNAME": "quvvii.github.io" } } diff --git a/domains/quydang.json b/domains/quydang.json index 357fe95c4..eca27263d 100644 --- a/domains/quydang.json +++ b/domains/quydang.json @@ -5,7 +5,7 @@ "username": "quydang04", "email": "dangvonguyen169@gmail.com" }, - "record": { + "records": { "CNAME": "quydang04.github.io" } } diff --git a/domains/qwel.json b/domains/qwel.json index 74b22e569..fdd49bda7 100644 --- a/domains/qwel.json +++ b/domains/qwel.json @@ -4,7 +4,7 @@ "discord": "qwel.exe#9583", "email": "anirudh012009@gmail.com" }, - "record": { + "records": { "CNAME": "qwel-exe.github.io" } } diff --git a/domains/qwertx.json b/domains/qwertx.json index 9065e4f9a..1e7058b47 100644 --- a/domains/qwertx.json +++ b/domains/qwertx.json @@ -5,7 +5,7 @@ "username": "notqwertz", "email": "zuweyrh752@gmail.com" }, - "record": { + "records": { "CNAME": "notqwertz.github.io" } } diff --git a/domains/qwerty.json b/domains/qwerty.json deleted file mode 100644 index 749836d47..000000000 --- a/domains/qwerty.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Redirecting to my personal website!", - "repo": "https://github.com/qwertyiscoding/simple-redirect", - "owner": { - "username": "QwertyIsCoding", - "email": "3kn5nsfkb@relay.firefox.com", - "twitter": "qwertyiscoding" - }, - "record": { - "CNAME": "qwertyiscoding.github.io" - } -} diff --git a/domains/qwertyqwerty.json b/domains/qwertyqwerty.json index a9fd0e978..a7b152823 100644 --- a/domains/qwertyqwerty.json +++ b/domains/qwertyqwerty.json @@ -4,7 +4,7 @@ "email": "personqwertyperson88@gmail.com", "twitter": "QwertyQwerty88_" }, - "record": { + "records": { "CNAME": "qwertyqwerty.pages.dev" } } diff --git a/domains/qwertyr0.json b/domains/qwertyr0.json index 91032c2f1..792cfbfc3 100644 --- a/domains/qwertyr0.json +++ b/domains/qwertyr0.json @@ -5,7 +5,7 @@ "username": "QwertyR0", "discord": "qwerty.r0" }, - "record": { + "records": { "CNAME": "qwertyr0.github.io" } } diff --git a/domains/qxb3.json b/domains/qxb3.json index 261baea2e..e3c91709f 100644 --- a/domains/qxb3.json +++ b/domains/qxb3.json @@ -3,7 +3,7 @@ "username": "qxb3", "email": "qxbthree@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/r.json b/domains/r.json deleted file mode 100644 index eb5b1172f..000000000 --- a/domains/r.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Razuuu", - "discord": "346717564895887360", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.e12vH6rhniPE29iegE8Nldgxx-_a4OW-RXe-JU-CbynMzDOPDozeZi-ASerbzV3Ta0HfAVDZmy5jYz1afPDuYIN4p1l_BI3Z_YTkWyiX37-hIkX9HSwY9epZ6keYodPHLCO5yWBlLaJ0zJ5PMUbzCYQvbB7WA1dmFEU7Aro_gYiIKkUMRMOtBkemiPJPp3YxuOFN18nboDTAk9_tmlgpyiChcjEezP3j3w4t7sw6b6EPy2gmrGEH5E4bd4Je2Pzk-Dt-9d20bYygn2tGaiKqMtGSx0b77K-J0SCG-yAE0SCDJzf4IuGD-tTsl12Q5WfolA90aKc_NPZyferBU0-BLw.E39G4iGbEfitm6rMmdGO9g.zNLGD5wcfN73kGkj9WKuUnycEpB7tsdzrZGeZT8TTjYyG-xdkbmgTObik7PdzD48ddnOwm7x0W2Cn9bOoqxpmNHb5ORhegp9x8ejUZT8Q_z6EJICfqEcRoDjk9sV7_Tf.suB-fbnKTcGFHoUmZyb45w" - }, - "record": { - "CNAME": "razuuu.de" - } -} diff --git a/domains/r00t3d.json b/domains/r00t3d.json index 59c07423e..682ded785 100644 --- a/domains/r00t3d.json +++ b/domains/r00t3d.json @@ -1,13 +1,9 @@ { - "owner": { - "username": "percioandrade", - "email": "", - "discord": "521918790951501843", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Z4DxbZ0HkguwBNihF_uYcYo6F90LU8_TxIWyvfSaynKVyfIULpKkPpKppLgxlDlTbnog7UqK1L5Q78CwzFZmIve_-rK3T7jmQSoXLVi9eZsnRj9DgVLjM3tWwiHdNnP-A_hIzW4A9zUwU6kSzo0yqI1XCgxadcm_O6YXUWVJ7hWjRHEMe_KQsiyd8EJCIEuG1mb5vHpSGueIpdchmNfK42chf8gWhl267t6H4fXg--HlSxbCTdD0a6IS5dfg8FdZFmhjhSUsPMFDcqBObtm1-As6lbVmLYfnQdJv4bV_YJkdYetGZ2B1edMLP99dRN1-kgmn3dzu40EIHJrjJgApdg.lqR4yiVU5IkKqRPkzJPSiA.EhOlPjq7MutxeLsxjNz5R3yuNP5gnZ2vIKz8v9gc8OC1g0RtEwXDLsbD2tjVkgn5wIsC2oG4lOUAKX1OVpO7n2HECDSil6gD3UF_t4bp_-I.P-A-L2t0f6vu2o-dn5M_XQ" - }, - "record": { - "A": [ - "144.126.135.27" - ] - } + "owner": { + "username": "percioandrade", + "discord": "521918790951501843" + }, + "records": { + "A": ["144.126.135.27"] + } } diff --git a/domains/r04nx.json b/domains/r04nx.json index 1cc2d1e35..d7f51d4d0 100644 --- a/domains/r04nx.json +++ b/domains/r04nx.json @@ -3,7 +3,7 @@ "username": "r04nx", "email": "rohanprakashpawar2005@gmail.com" }, - "record": { + "records": { "CNAME": "r04nx.github.io" } } diff --git a/domains/r1p.json b/domains/r1p.json index eacaea2cf..3db5ceb69 100644 --- a/domains/r1p.json +++ b/domains/r1p.json @@ -3,7 +3,7 @@ "username": "0kryptx", "email": "k3px@proton.me" }, - "record": { + "records": { "CNAME": "0kryptx.github.io" } } diff --git a/domains/r2kip.json b/domains/r2kip.json index 13643e9d5..08543e767 100644 --- a/domains/r2kip.json +++ b/domains/r2kip.json @@ -5,7 +5,7 @@ "email": "i@r2kip.ru", "discord": "631193679775662122" }, - "record": { + "records": { "URL": "https://r2kip.vercel.app/" } } diff --git a/domains/r2mvstr.json b/domains/r2mvstr.json index d4ad28162..fdf1e11e0 100644 --- a/domains/r2mvstr.json +++ b/domains/r2mvstr.json @@ -3,7 +3,7 @@ "username": "1MillonunlockDev", "email": "1millonunlock@gmail.com" }, - "record": { + "records": { "A": ["144.91.94.164"] } } diff --git a/domains/r42mp6d7pwns.bao.json b/domains/r42mp6d7pwns.bao.json new file mode 100644 index 000000000..e2ab64745 --- /dev/null +++ b/domains/r42mp6d7pwns.bao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bphamict", + "email": "bphamict@gmail.com" + }, + "records": { + "CNAME": "gv-t63jjd67zkqqxj.dv.googlehosted.com" + } +} diff --git a/domains/r4yish.json b/domains/r4yish.json index 15eaa6f6b..5b45cbff8 100644 --- a/domains/r4yish.json +++ b/domains/r4yish.json @@ -3,7 +3,7 @@ "username": "r4yish", "email": "r4yish@gmail.com" }, - "record": { + "records": { "CNAME": "r4yish.github.io" } } diff --git a/domains/raafey.json b/domains/raafey.json index b2cd0e262..2d2251957 100644 --- a/domains/raafey.json +++ b/domains/raafey.json @@ -3,9 +3,7 @@ "username": "RaafeyRaza", "email": "raafeyraza1@gmail.com" }, - "record": { - "A": ["69.197.135.202"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + "records": { + "CNAME": "v0-personal-portfolio-tf.vercel.app" } } diff --git a/domains/raahi.json b/domains/raahi.json deleted file mode 100644 index a35019c37..000000000 --- a/domains/raahi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ravan745", - "email": "carelessgaming8@gmail.com" - }, - "record": { - "A": ["45.90.12.29"] - } -} diff --git a/domains/rabbi-shuki.json b/domains/rabbi-shuki.json index 2b3fdc78b..3df40dcae 100644 --- a/domains/rabbi-shuki.json +++ b/domains/rabbi-shuki.json @@ -5,7 +5,7 @@ "username": "rabbishuki", "email": "rabbishuki+is-a-dev@gmail.com" }, - "record": { + "records": { "CNAME": "rabbishuki.github.io" } } diff --git a/domains/rabug.json b/domains/rabug.json index 542f74157..477b8ac52 100644 --- a/domains/rabug.json +++ b/domains/rabug.json @@ -1,10 +1,9 @@ { "owner": { "username": "NotRabug50", - "discord": "541194606214250496", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ps0moOTq92R__wFgKFQH6WfwtOBaTQI4l7VY-uKJH1Eq0_rgwbZn5VFO4JGz06gUM6TF7WcUJTXCKMBNmJ2FP72EziCABmyM9Nre1UzcAWQ5u8vI9BoBsFTRqbqtezMbfwi18iYzl5PhpTT9jFP9OVosqgRTaCuFQab6u_63KwrOfw4cH-vKUKAU0fr3Q0t2hlFKyioN04n--bgMbtxBkH1F9U4Y2WeeAikUsNUM-RJPxSRDkE5jPQwH3CRvteBDR3p9kMvT8hZDXH0MUQizKFE5ok2GEpc0f4yw7XZtCf59fg-kAuBlneA0or4twHPmMVBc5gj3RMQ2wkBM5TtEKg.Dz0wpW_pv-ibVW_W-AG46w.JxtLaG5wminoevZ_ovAe-G5MsPRfQLP-JsiFF_0nuHEYCrAGQvbDyTs5R9E6B9iqEvyWu7gcOAaSoclyaworD83p0P8oDbHcrRuzFnEl-N0.CsKvYUIxVUV9977e0H3KTw" + "discord": "541194606214250496" }, - "record": { + "records": { "CNAME": "notrabug.vercel.app" } } diff --git a/domains/raccoon.json b/domains/raccoon.json index 8212ee3da..a583246a8 100644 --- a/domains/raccoon.json +++ b/domains/raccoon.json @@ -1,10 +1,9 @@ { "owner": { "username": "nilsraccoon", - "discord": "1129507464589627512", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Qx4ThJ6b-2bcrSCHvwQmwUm15cmnRgh8h2yafFwKND06K1CQp7zeGCyn3r2OCwFVkwfRAZfBFVMcb3gbGs5jnP1HdOi7qqZ3DuRdhWd2aXb4_x_WLbwAxfn0S6dHcQqKH46aCkRVHyZYnHhxEYaroUy3vdsvQWhnOs-gDLCIvYFCrz7fhiLAFXogwvccmBAfNZb_y9hrfeGm86uYHsQHYhIrkEPBX7EwX1wdXabkitIfbzr0_-7_-JwLJrmvyOPp605EKOyvrjI1Q-rlQadYanljBfXK-Mi2Evkohe-0PjSY0NAXvKD26OjEXblcRqFBgQGWgOyCvJ7bSBxo-MV8QQ.GfbApX_iVz_Sp6y0Y2a70g.Jf4zyGsWoKyjxofhnW2KWMKe9C677jCrMYM9q1mnK3xRL3wrbINlMfHpuoDpsXztC-5YByYMUsZCz7oN2tpIk7EUxAMnMNdqShvbvtZfdWw.ONM_KW-WKU-G1lL4rn-HkA" + "discord": "1129507464589627512" }, - "record": { + "records": { "CNAME": "nilsraccoon.github.io" } } diff --git a/domains/rachancheet.json b/domains/rachancheet.json new file mode 100644 index 000000000..b72500285 --- /dev/null +++ b/domains/rachancheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rachancheet", + "email": "raxxsngh37@gmail.com" + }, + "records": { + "A": ["152.67.163.7"] + } +} diff --git a/domains/rachit.json b/domains/rachit.json index a6d9f490b..de86f1f0d 100644 --- a/domains/rachit.json +++ b/domains/rachit.json @@ -5,7 +5,7 @@ "email": "rachitkhurana40@gmail.com", "twitter": "notnotrachit" }, - "record": { + "records": { "CNAME": "notnotrachit.github.io" } } diff --git a/domains/rachmadsuharja.json b/domains/rachmadsuharja.json index fc38defe7..ce4ef8b1f 100644 --- a/domains/rachmadsuharja.json +++ b/domains/rachmadsuharja.json @@ -3,7 +3,7 @@ "username": "rachmadsuharja", "email": "rachmadsuharja123@gmail.com" }, - "record": { + "records": { "CNAME": "rachmadsuharja.github.io" } } diff --git a/domains/radim.json b/domains/radim.json index b964c83f7..5191e9a49 100644 --- a/domains/radim.json +++ b/domains/radim.json @@ -1,10 +1,9 @@ { "owner": { "username": "radim-codes", - "discord": "1136622247918972968", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ALR6-kSY_1xcCXWeEFcN3MljHGs64i5CXNdAfaJjL76vrWcIdrbQpq1pxkJ5IUivvK6kO3glLYwGFY2aIMUAUOrNqP6kY8jwGz_jocoI6GsZrNMFG-iivMJH6KfMVflPxsi7S5Gj1h16SodeCYkSY75i_BFRzSuK2R08YAVogKYG0DCjnBy4vPmwGpDBzgvlzC1xcB3cp0xAiSAWGy1_yJ2AhSejJvJLOJjnduJKssiDQTStoh2pFJmFcegTg-d3XyEhPG2CLjlETMy5scK_7TJhfm2B_j7_WoGeqx9bYnhvezq2UL98_SApjQHYW0RqCvc2H8hDyqzz_mUSjqzdjw.twUMfQDP1UG0sSdnIjzl0Q.UlPnydKIKETIKTLQ0FDmnL_JEzfVezFXc3KkY5_Sn3aXpC0GOOhddolmTPmrxU7UX71wlhPJWcDQVVjIzf41IoN0gLSbq_T0GMuQbwq-kp8.v8huc9AakxQ0ROz0eTxxtA" + "discord": "1136622247918972968" }, - "record": { + "records": { "CNAME": "radim-codes.github.io" } } diff --git a/domains/radio.mxnticek.json b/domains/radio.mxnticek.json index 09f94e34a..a6ac7dda4 100644 --- a/domains/radio.mxnticek.json +++ b/domains/radio.mxnticek.json @@ -4,7 +4,7 @@ "username": "VlastikYoutubeKo", "email": "plainrock@seznam.cz" }, - "record": { + "records": { "A": ["129.151.254.58"] } } diff --git a/domains/radke.json b/domains/radke.json index c37ccfabe..22ac15dbb 100644 --- a/domains/radke.json +++ b/domains/radke.json @@ -4,7 +4,7 @@ "email": "radekw8733@gmail.com" }, "repo": "https://github.com/radekw8733/radke.is-a.dev", - "record": { + "records": { "CNAME": "radke.duckdns.org" } } diff --git a/domains/raed.json b/domains/raed.json new file mode 100644 index 000000000..19c8d165d --- /dev/null +++ b/domains/raed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raed667", + "email": "contact@raed.email" + }, + "records": { + "CNAME": "raed.dev" + } +} diff --git a/domains/raf.json b/domains/raf.json index e817c6f71..7b22b0245 100644 --- a/domains/raf.json +++ b/domains/raf.json @@ -3,7 +3,7 @@ "username": "rafaalrazzak", "email": "dev.rafaalrazzak@gmail.com" }, - "record": { + "records": { "CNAME": "rafaar.pages.dev" } } diff --git a/domains/rafa.json b/domains/rafa.json index d83264610..e3e637fee 100644 --- a/domains/rafa.json +++ b/domains/rafa.json @@ -1,10 +1,9 @@ { "owner": { "username": "xmceflp", - "discord": "1101900324467376139", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.psgSFJhaRVPO23S0CNPftTx1m35a_s7LRY_23XpcDAEm7_VstIcSEgf3UqE7XE5piyDqBx7E4fFp7OyjD271greQVjs3cbS5lOu93XalLq2LvOlT4LTsLqehmAawphAFoa1BiDzWKsnEX1sSCFeOQxiV85XuwV3yG1aEs7ErM8Nyc1GiTKI8_G4EyQiVWdiJ_XYorXgg9ycbX1x8dVfHzWfJb0C4KAYkByrbstDUEGsq11u1K2OfhE8PzcF7xgexueTXNfJIom5gQReXBDLH4CS-3EqsF57Dyt80wr7GS_z9Y3q0WNiwWyaYzMcnbZox8b5k0jRXBfeTmPgbdgrB0Q.FxF35ghjOYbPNHip8BnKLw.C0zTN0mfMahn-lHCejtrOejAanhzKOUweBfq3xjMAtgH2Jdt4TpItNh6Q-iw5himDS08FD09n9qMcmITW2LNR5Qwr1e1QD0tRGYxkcW0sOzFbjlG_OzhG3hL5gvvPfZG.wkMvw-xcKWyQ15hXwNQxxQ" + "discord": "1101900324467376139" }, - "record": { + "records": { "A": ["144.22.130.149"] } } diff --git a/domains/rafaar.json b/domains/rafaar.json index e817c6f71..7b22b0245 100644 --- a/domains/rafaar.json +++ b/domains/rafaar.json @@ -3,7 +3,7 @@ "username": "rafaalrazzak", "email": "dev.rafaalrazzak@gmail.com" }, - "record": { + "records": { "CNAME": "rafaar.pages.dev" } } diff --git a/domains/rafael.json b/domains/rafael.json new file mode 100644 index 000000000..d893bb37a --- /dev/null +++ b/domains/rafael.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rcerrejon", + "email": "neoline@gmail.com" + }, + "records": { + "CNAME": "rafaelcerrejon.com" + } +} diff --git a/domains/rafaelfernandes.json b/domains/rafaelfernandes.json new file mode 100644 index 000000000..7454da89f --- /dev/null +++ b/domains/rafaelfernandes.json @@ -0,0 +1,12 @@ +{ + "description": "Personal potifolho site.", + "repo": "https://github.com/RafaelFernandesBR/rafaelfernandes.github.io", + "owner": { + "username": "RafaelFernandesBR", + "email": "marcorafaeldemelo16@protonmail.com" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] + }, + "proxied": true +} diff --git a/domains/rafalmeida73.json b/domains/rafalmeida73.json index d2763a5ea..debf94cff 100644 --- a/domains/rafalmeida73.json +++ b/domains/rafalmeida73.json @@ -5,7 +5,7 @@ "username": "rafalmeida73", "email": "rafaelsantana7213@gmail.com" }, - "record": { + "records": { "CNAME": "rafalmeida73.github.io" } } diff --git a/domains/rafinia.json b/domains/rafinia.json new file mode 100644 index 000000000..9eb044b01 --- /dev/null +++ b/domains/rafinia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nRafinia", + "email": "naser.r@gmail.com" + }, + "records": { + "CNAME": "naser.rafinia.info" + } +} diff --git a/domains/rafsan.json b/domains/rafsan.json index b992037bb..1fb9a6f1e 100644 --- a/domains/rafsan.json +++ b/domains/rafsan.json @@ -5,7 +5,7 @@ "username": "htrafsan", "email": "rafsanoff@gmail.com" }, - "record": { + "records": { "CNAME": "htrafsan.github.io" } } diff --git a/domains/rafsanza.json b/domains/rafsanza.json new file mode 100644 index 000000000..a20e0c092 --- /dev/null +++ b/domains/rafsanza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rafsanza-hub", + "email": "rapsanza@gmail.com" + }, + "records": { + "CNAME": "rafsanza.vercel.app" + } +} diff --git a/domains/rag3r.json b/domains/rag3r.json index 960537eb8..764d0b73d 100644 --- a/domains/rag3r.json +++ b/domains/rag3r.json @@ -5,7 +5,7 @@ "username": "Rage65", "email": "123thetechguy@gmail.com" }, - "record": { + "records": { "CNAME": "rage65.github.io" } } diff --git a/domains/raghav.json b/domains/raghav.json new file mode 100644 index 000000000..eb575b9b0 --- /dev/null +++ b/domains/raghav.json @@ -0,0 +1,11 @@ +{ + "description": "Flex", + "repo": "https://github.com/GodKode69/GodKode69.github.io", + "owner": { + "username": "GodKode69", + "email": "knownasraghav@gmail.com" + }, + "records": { + "CNAME": "godkode69.github.io" + } +} diff --git a/domains/raghavkorde.json b/domains/raghavkorde.json index 57f769d19..71f96927a 100644 --- a/domains/raghavkorde.json +++ b/domains/raghavkorde.json @@ -3,7 +3,7 @@ "username": "raghavkorde", "email": "raghavkorde4@gmail.com" }, - "record": { + "records": { "CNAME": "web-resume-b8p.pages.dev" } } diff --git a/domains/raghavyuva.json b/domains/raghavyuva.json index 7aa332ded..5b362f4dc 100644 --- a/domains/raghavyuva.json +++ b/domains/raghavyuva.json @@ -3,7 +3,7 @@ "username": "raghavyuva", "email": "vikramnbhat15@gmail.com" }, - "record": { + "records": { "CNAME": "raghavyuva.github.io" } } diff --git a/domains/raghu.json b/domains/raghu.json new file mode 100644 index 000000000..c4db3b4a6 --- /dev/null +++ b/domains/raghu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raghu-8", + "email": "raghu.project.websites@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/rahatrumi.json b/domains/rahatrumi.json new file mode 100644 index 000000000..a1754880e --- /dev/null +++ b/domains/rahatrumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rahat87942R", + "email": "rumirahat63@gmail.com" + }, + "records": { + "CNAME": "rahatrumi.vercel.app" + } +} diff --git a/domains/rahil.json b/domains/rahil.json index 9e0d52ec0..c0682380f 100644 --- a/domains/rahil.json +++ b/domains/rahil.json @@ -4,7 +4,7 @@ "email": "rahilkazi66@gmail.com", "discord": "rahilkzi" }, - "record": { + "records": { "CNAME": "cname.vercel-dns.com" } } diff --git a/domains/rahul-deka.json b/domains/rahul-deka.json index d248e655a..aaa28c805 100644 --- a/domains/rahul-deka.json +++ b/domains/rahul-deka.json @@ -3,7 +3,7 @@ "username": "iamRahul21", "email": "rahuldeka072@gmail.com" }, - "record": { + "records": { "CNAME": "iamrahul21.github.io" } } diff --git a/domains/rahul-rabari.json b/domains/rahul-rabari.json index f22a6d963..a533f1e05 100644 --- a/domains/rahul-rabari.json +++ b/domains/rahul-rabari.json @@ -4,7 +4,7 @@ "owner": { "username": "rahul-rabari" }, - "record": { + "records": { "CNAME": "rahul-rabari.github.io" } } diff --git a/domains/rahulc0dy.json b/domains/rahulc0dy.json new file mode 100644 index 000000000..537089b6c --- /dev/null +++ b/domains/rahulc0dy.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/rahulc0dy/rahulc0dy.github.io", + "owner": { + "username": "rahulc0dy", + "email": "codyrahulop@gmail.com" + }, + "records": { + "CNAME": "rahulc0dy.github.io" + } +} diff --git a/domains/rahulcodes.json b/domains/rahulcodes.json index 690c05eb0..e4ef8e819 100644 --- a/domains/rahulcodes.json +++ b/domains/rahulcodes.json @@ -5,7 +5,7 @@ "username": "rahulcodes", "email": "rahulbussa@outlook.com" }, - "record": { + "records": { "CNAME": "bussarahul.github.io" } } diff --git a/domains/rahulgurujala.json b/domains/rahulgurujala.json new file mode 100644 index 000000000..664142072 --- /dev/null +++ b/domains/rahulgurujala.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/rahulgurujala/personal-portfolio", + "owner": { + "username": "rahulgurujala", + "email": "isaacnewtonrahul@gmail.com" + }, + "records": { + "CNAME": "rahulgurujala.vercel.app" + } +} diff --git a/domains/rahulkirangaddam.json b/domains/rahulkirangaddam.json index 8e5351c94..a808a0d0a 100644 --- a/domains/rahulkirangaddam.json +++ b/domains/rahulkirangaddam.json @@ -5,7 +5,7 @@ "username": "rahgadda", "email": "gaddam.rahul@gmail.com" }, - "record": { + "records": { "CNAME": "rahgadda.github.io" } } diff --git a/domains/rahulps.json b/domains/rahulps.json index e73bfb4b2..4369f9c49 100644 --- a/domains/rahulps.json +++ b/domains/rahulps.json @@ -3,7 +3,7 @@ "username": "rahulps1000", "email": "rahulps1000@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] }, "proxied": false diff --git a/domains/rahulsunil.json b/domains/rahulsunil.json new file mode 100644 index 000000000..b3d5c970e --- /dev/null +++ b/domains/rahulsunil.json @@ -0,0 +1,11 @@ +{ + "description": "Rahul Sunil - GenAI Engineer", + "repo": "https://github.com/rahulsunil2/rahulsunil-code-portfolio", + "owner": { + "username": "rahulsunil2", + "email": "rahulsunil2@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/rahulverma.json b/domains/rahulverma.json new file mode 100644 index 000000000..72e156ca1 --- /dev/null +++ b/domains/rahulverma.json @@ -0,0 +1,11 @@ +{ + "description": "My Developer Portfolio", + "repo": "https://github.com/SudoRV/register", + "owner": { + "username": "SudoRV", + "email": "rahulverma.1.2005@gamil.com" + }, + "records": { + "CNAME": "rahul-verma.onrender.com" + } +} diff --git a/domains/raice.json b/domains/raice.json index 852d23fc9..de6b36e78 100644 --- a/domains/raice.json +++ b/domains/raice.json @@ -3,7 +3,7 @@ "username": "RiceTheDev", "email": "ricenooba@gmail.com" }, - "record": { + "records": { "CNAME": "raice.pages.dev" } } diff --git a/domains/raid.json b/domains/raid.json index c9b927d17..0a1011d67 100644 --- a/domains/raid.json +++ b/domains/raid.json @@ -3,7 +3,7 @@ "username": "ThatsRaid", "email": "itsraidlol@gmail.com" }, - "record": { + "records": { "CNAME": "thatsraid.github.io" } } diff --git a/domains/rainotoberu.json b/domains/rainotoberu.json index 8dcaf6c68..925120192 100644 --- a/domains/rainotoberu.json +++ b/domains/rainotoberu.json @@ -3,7 +3,7 @@ "username": "Rainotoberu", "email": "imdmelan@gmail.com" }, - "record": { + "records": { "CNAME": "rainotoberu.github.io" } } diff --git a/domains/raiyaad-raad.json b/domains/raiyaad-raad.json index 22292f020..a15a5a979 100644 --- a/domains/raiyaad-raad.json +++ b/domains/raiyaad-raad.json @@ -3,7 +3,7 @@ "username": "Raiyaad-Raad", "email": "raiyaadraad132rafan45@gmail.com" }, - "record": { + "records": { "CNAME": "raiyaad-raad.github.io" } } diff --git a/domains/raiyaad.json b/domains/raiyaad.json index 22292f020..a15a5a979 100644 --- a/domains/raiyaad.json +++ b/domains/raiyaad.json @@ -3,7 +3,7 @@ "username": "Raiyaad-Raad", "email": "raiyaadraad132rafan45@gmail.com" }, - "record": { + "records": { "CNAME": "raiyaad-raad.github.io" } } diff --git a/domains/raj.json b/domains/raj.json index e83f82c0a..828ff9d34 100644 --- a/domains/raj.json +++ b/domains/raj.json @@ -3,7 +3,7 @@ "username": "rajmaskey", "email": "rajmaskey017@gmail.com" }, - "record": { + "records": { "CNAME": "website-3.onrender.com" } } diff --git a/domains/rajasbhagatkar.json b/domains/rajasbhagatkar.json index 4007f101e..5d3447e5f 100644 --- a/domains/rajasbhagatkar.json +++ b/domains/rajasbhagatkar.json @@ -3,7 +3,7 @@ "username": "RajasBhagatkar", "email": "rajasbhagatkar@gmail.com" }, - "record": { + "records": { "CNAME": "rajasbhagatkar.github.io" } } diff --git a/domains/rajeshkumar.json b/domains/rajeshkumar.json new file mode 100644 index 000000000..4b4f4fde3 --- /dev/null +++ b/domains/rajeshkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354586@gmail.com" + }, + "records": { + "CNAME": "dev-rajeshkumars.vercel.app" + } +} diff --git a/domains/rajeshreddy.json b/domains/rajeshreddy.json new file mode 100644 index 000000000..be36184c8 --- /dev/null +++ b/domains/rajeshreddy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rajesh-reddy1", + "email": "mrrajeshreddy1@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/rajputshashank.json b/domains/rajputshashank.json new file mode 100644 index 000000000..aa479e1f6 --- /dev/null +++ b/domains/rajputshashank.json @@ -0,0 +1,11 @@ +{ + "description": "Shashank's portfolio", + "repo": "https://github.com/rajputshashank003/details", + "owner": { + "username": "rajputshashank003", + "email": "hariomshashank@gmail.com" + }, + "records": { + "CNAME": "rajputshashank.vercel.app" + } +} diff --git a/domains/rajveer.json b/domains/rajveer.json index 28465abca..695a3da3b 100644 --- a/domains/rajveer.json +++ b/domains/rajveer.json @@ -3,7 +3,7 @@ "username": "kyouhei14", "email": "rajveerkobot@gmail.com" }, - "record": { + "records": { "URL": "https://kyouhei14.github.io/rajveer-is-dead/" } } diff --git a/domains/raka.json b/domains/raka.json index ae55c1618..9497412be 100644 --- a/domains/raka.json +++ b/domains/raka.json @@ -6,7 +6,7 @@ "note": "I'm open to connect with developers for collaborations." }, "description": "Landing page of RakaCreativeContent Organization", - "record": { + "records": { "CNAME": "rakacreativecontent.github.io" } } diff --git a/domains/rakib.json b/domains/rakib.json new file mode 100644 index 000000000..ef6421f69 --- /dev/null +++ b/domains/rakib.json @@ -0,0 +1,11 @@ +{ + "description": "for my portfolio website", + "repo": "https://github.com/rakibmia7254/portfolio", + "owner": { + "username": "rakibmia7254", + "email": "rakib4ggp@gmail.com" + }, + "records": { + "CNAME": "rakibmia7254.github.io" + } +} diff --git a/domains/rakibhossain.json b/domains/rakibhossain.json new file mode 100644 index 000000000..ef6421f69 --- /dev/null +++ b/domains/rakibhossain.json @@ -0,0 +1,11 @@ +{ + "description": "for my portfolio website", + "repo": "https://github.com/rakibmia7254/portfolio", + "owner": { + "username": "rakibmia7254", + "email": "rakib4ggp@gmail.com" + }, + "records": { + "CNAME": "rakibmia7254.github.io" + } +} diff --git a/domains/rakshit.json b/domains/rakshit.json new file mode 100644 index 000000000..760a56c01 --- /dev/null +++ b/domains/rakshit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "spuckhafte", + "email": "rakshit240405@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ralph.json b/domains/ralph.json index 6ab58382a..9f1c1f455 100644 --- a/domains/ralph.json +++ b/domains/ralph.json @@ -3,7 +3,7 @@ "username": "rpineda26", "email": "rp.pineda26@gmail.com" }, - "record": { + "records": { "CNAME": "rpineda26.github.io" } } diff --git a/domains/ralphpineda.json b/domains/ralphpineda.json index 6ab58382a..9f1c1f455 100644 --- a/domains/ralphpineda.json +++ b/domains/ralphpineda.json @@ -3,7 +3,7 @@ "username": "rpineda26", "email": "rp.pineda26@gmail.com" }, - "record": { + "records": { "CNAME": "rpineda26.github.io" } } diff --git a/domains/ram.json b/domains/ram.json index f368d3465..4c96ac6a6 100644 --- a/domains/ram.json +++ b/domains/ram.json @@ -6,7 +6,7 @@ "email": "ramkiranmohan1759@gmail.com", "twitter": "RamKiranMohan1" }, - "record": { + "records": { "CNAME": "thisisramhere.github.io" } } diff --git a/domains/ramakant.json b/domains/ramakant.json index d9524acd3..bfe01c047 100644 --- a/domains/ramakant.json +++ b/domains/ramakant.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ramakantbot", - "email": "ramakantbot@duck.com" - }, - "record": { - "CNAME": "ramakantbot.github.io" - } + "owner": { + "username": "ramakantbot", + "email": "ramakantbot@duck.com" + }, + "records": { + "CNAME": "ramakantbot.github.io" + } } diff --git a/domains/ramakrishna.json b/domains/ramakrishna.json index 7dc065210..fe5606455 100644 --- a/domains/ramakrishna.json +++ b/domains/ramakrishna.json @@ -3,7 +3,7 @@ "username": "Arrekhey", "email": "pillaramakrishna77@yahoo.com" }, - "record": { + "records": { "URL": "https://www.ramakrishna.com" } } diff --git a/domains/raman.json b/domains/raman.json index fcafeca57..ae77ccc77 100644 --- a/domains/raman.json +++ b/domains/raman.json @@ -3,7 +3,7 @@ "username": "kushalshah0", "email": "code@kushalshah.com.np" }, - "record": { + "records": { "CNAME": "ramanshah0.github.io" } } diff --git a/domains/rameez.json b/domains/rameez.json index c1d645d26..ff3a758b7 100644 --- a/domains/rameez.json +++ b/domains/rameez.json @@ -5,7 +5,7 @@ "username": "rameezrami", "email": "rameespu@gmail.com" }, - "record": { + "records": { "CNAME": "rameezrami.github.io" } } diff --git a/domains/ramiro.json b/domains/ramiro.json new file mode 100644 index 000000000..6579586d3 --- /dev/null +++ b/domains/ramiro.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RamiroUrt", + "email": "urteagaramiro33@gmail.com" + }, + "records": { + "CNAME": "portafolio-chi-gilt.vercel.app" + }, + "proxied": false +} diff --git a/domains/ramirocosa.json b/domains/ramirocosa.json new file mode 100644 index 000000000..29453d57e --- /dev/null +++ b/domains/ramirocosa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RadikeCosa", + "email": "ramirocosa@gmail.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/rammeghe.json b/domains/rammeghe.json index 1c6deff23..c28cd72d5 100644 --- a/domains/rammeghe.json +++ b/domains/rammeghe.json @@ -1,9 +1,8 @@ { "owner": { - "username": "kartikshriwas", - "email": "" + "username": "kartikshriwas" }, - "record": { + "records": { "CNAME": "rammeghe.github.io" } } diff --git a/domains/ramoweb.json b/domains/ramoweb.json new file mode 100644 index 000000000..60f98412a --- /dev/null +++ b/domains/ramoweb.json @@ -0,0 +1,11 @@ +{ + "description": "My personal Portfolio Ramoweb", + "repo": "https://github.com/d0vak1n/ramoweb", + "owner": { + "username": "d0vak1n", + "email": "raul@ramoweb.com" + }, + "records": { + "CNAME": "ramoweb.onrender.com" + } +} diff --git a/domains/ramsheed.json b/domains/ramsheed.json new file mode 100644 index 000000000..d1fa8d869 --- /dev/null +++ b/domains/ramsheed.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website of Ramsheed", + "repo": "https://github.com/ramsheedrd/ramsheedrd.github.io", + "owner": { + "username": "ramsheedrd", + "email": "ramsheedkc10@gmail.com" + }, + "records": { + "CNAME": "ramsheedrd.github.io" + } +} diff --git a/domains/ramya.json b/domains/ramya.json new file mode 100644 index 000000000..ca31f37c0 --- /dev/null +++ b/domains/ramya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ramya-Me", + "email": "ramyashah.dev@gmail.com" + }, + "records": { + "CNAME": "ramya-umber.vercel.app" + } +} diff --git a/domains/ranareal.json b/domains/ranareal.json index 7959ab94e..f484fe01d 100644 --- a/domains/ranareal.json +++ b/domains/ranareal.json @@ -3,7 +3,7 @@ "username": "NotRana", "email": "notrana1122@outlook.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/randika.json b/domains/randika.json new file mode 100644 index 000000000..a449ad851 --- /dev/null +++ b/domains/randika.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "randika-srimal" + }, + "records": { + "CNAME": "area51projects.com" + } +} diff --git a/domains/random.json b/domains/random.json index 0b0d32b26..07fedd9b4 100644 --- a/domains/random.json +++ b/domains/random.json @@ -5,7 +5,7 @@ "username": "gusruben", "email": "gusruben@protonmail.com" }, - "record": { + "records": { "A": ["173.255.236.153"] } } diff --git a/domains/random2.json b/domains/random2.json index b14fc31dc..92600d01b 100644 --- a/domains/random2.json +++ b/domains/random2.json @@ -3,12 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/ranjit.json b/domains/ranjit.json index 1479da917..500832433 100644 --- a/domains/ranjit.json +++ b/domains/ranjit.json @@ -3,7 +3,7 @@ "username": "patilranjit485", "email": "patilranjit2610@gmail.com" }, - "record": { + "records": { "CNAME": "demon-brother.blogspot.com" } } diff --git a/domains/ranjityadav.json b/domains/ranjityadav.json new file mode 100644 index 000000000..52dab5466 --- /dev/null +++ b/domains/ranjityadav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "13yadav", + "email": "yadavranjit521@gmail.com", + "discord": "529604454908035083" + }, + "records": { + "CNAME": "ranjityadav.vercel.app" + } +} diff --git a/domains/raofin.json b/domains/raofin.json index 3073e98c7..df2907d0e 100644 --- a/domains/raofin.json +++ b/domains/raofin.json @@ -3,7 +3,7 @@ "username": "raofin", "email": "contact@raofin.net" }, - "record": { + "records": { "CNAME": "rao-dev.pages.dev" } } diff --git a/domains/raoufbakhti.json b/domains/raoufbakhti.json index 7d53e16d7..a99b0cd80 100644 --- a/domains/raoufbakhti.json +++ b/domains/raoufbakhti.json @@ -1,10 +1,9 @@ { "owner": { "username": "Raoufbaa", - "discord": "515230523128414228", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.CXjc5ZysF6WlX8X2or2V8RaOpyYr6KLUW9rw6KsogqcNnnMNn40xj-q2cDbHtUhdvLNtAjbnVZ17B61pRiY0fFxUXhmACQ_os6ePruIAzVgFu63nUqoumDXxqgzFxjO2CUQdutkaqWKgSUwiSsRYRvAQ8tBSRUBTUCQUArLxOEv6d5q2_-XkUW68EzqVsRRiREsmM-NSiJevv7pUlldqQ_gRWEJtmhdxIb1VZSl6fkOAExFtkvVOwImfZ5lLgU8AmptokCal4sxHnVTgggA2yVbY9e340nnph4BfFJwuUsPpotupOHxfYjTBWumJwedmsnpurDYeY8i9r9XzSQ5b_A.vAVImPUd1QO0K3glM07HAQ.x6THhvYTTHDP0J88xd0_FoUfABzspoar6w54QxykjJwjJeTrX9HtTfMJBjAfWrOe0mbAvd4jeX5L0lYX8QTBq8sj-rG52uIALTM03yV8Xc8.N20mCuJh7klNP8LF0bOQSQ" + "discord": "515230523128414228" }, - "record": { + "records": { "CNAME": "raoufbakhti.vercel.app" } } diff --git a/domains/raphael.json b/domains/raphael.json index fff1c6cf6..9f4f6bc85 100644 --- a/domains/raphael.json +++ b/domains/raphael.json @@ -3,7 +3,7 @@ "username": "raphael-as", "email": "raphaelas.pro@gmail.com" }, - "record": { + "records": { "CNAME": "raphael-as.github.io" } } diff --git a/domains/rapixar.json b/domains/rapixar.json index e9f74478a..52cc2760f 100644 --- a/domains/rapixar.json +++ b/domains/rapixar.json @@ -5,7 +5,7 @@ "username": "Rapixar", "email": "cudraphael@gmail.com" }, - "record": { + "records": { "CNAME": "rapixar.github.io" } } diff --git a/domains/rappergi.json b/domains/rappergi.json new file mode 100644 index 000000000..44382e9ff --- /dev/null +++ b/domains/rappergi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rappergi", + "email": "hoangvanchu202@gmail.com" + }, + "records": { + "NS": ["norm.ns.cloudflare.com", "pola.ns.cloudflare.com"] + } +} diff --git a/domains/rapter.json b/domains/rapter.json new file mode 100644 index 000000000..1da108d50 --- /dev/null +++ b/domains/rapter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rapter001", + "email": "rapter001yt@gmail.com" + }, + "records": { + "NS": ["martha.ns.cloudflare.com", "quinton.ns.cloudflare.com"] + } +} diff --git a/domains/raqeemtak.json b/domains/raqeemtak.json index 939448708..7154b8256 100644 --- a/domains/raqeemtak.json +++ b/domains/raqeemtak.json @@ -3,7 +3,7 @@ "username": "RaqeemTak", "email": "raqeemahmadtak@gmail.com" }, - "record": { + "records": { "CNAME": "raqeemtak.github.io" } } diff --git a/domains/rasel.json b/domains/rasel.json index 9b0a96011..4e6a884fe 100644 --- a/domains/rasel.json +++ b/domains/rasel.json @@ -3,7 +3,7 @@ "username": "raselshikdar", "email": "imrasel597@gmail.com" }, - "record": { + "records": { "CNAME": "rasel.pages.dev" } } diff --git a/domains/raselshikdar.json b/domains/raselshikdar.json index 842d4ada5..01a3388ca 100644 --- a/domains/raselshikdar.json +++ b/domains/raselshikdar.json @@ -3,7 +3,7 @@ "username": "raselshikdar", "email": "imrasel597@gmail.com" }, - "record": { + "records": { "CNAME": "raselshikdar.github.io" } } diff --git a/domains/rashed.json b/domains/rashed.json index c6dc12fec..019ff9999 100644 --- a/domains/rashed.json +++ b/domains/rashed.json @@ -3,7 +3,7 @@ "username": "Rashed360", "email": "ruman.rush+isadev@gmail.com" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/rasmus.json b/domains/rasmus.json index b68c5379a..90b799acd 100644 --- a/domains/rasmus.json +++ b/domains/rasmus.json @@ -5,7 +5,7 @@ "username": "rfoldbirk", "twitter": "RasmusFoldberg" }, - "record": { + "records": { "CNAME": "rfoldbirk.github.io" } } diff --git a/domains/rasp.json b/domains/rasp.json index 22884a041..6771665b7 100644 --- a/domains/rasp.json +++ b/domains/rasp.json @@ -3,7 +3,7 @@ "username": "titusj3026", "email": "titusjeffery54@gmail.com" }, - "record": { + "records": { "CNAME": "titusj3026.github.io" } } diff --git a/domains/raspicloud.json b/domains/raspicloud.json new file mode 100644 index 000000000..e949c5d85 --- /dev/null +++ b/domains/raspicloud.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mkrage", + "email": "manuel.krage@gmx.de" + }, + "records": { + "A": ["141.144.239.115"] + } +} diff --git a/domains/rathee.json b/domains/rathee.json new file mode 100644 index 000000000..6b76f7f09 --- /dev/null +++ b/domains/rathee.json @@ -0,0 +1,11 @@ +{ + "description": "Abhinav' Welcome to my portfolio", + "repo": "https://github.com/abhinavrathee/Folio-AbhinavRathee", + "owner": { + "username": "abhinavrathee", + "email": "abhinavrathee00007@gmail.com" + }, + "records": { + "CNAME": "rathee.vercel.app" + } +} diff --git a/domains/raunak.json b/domains/raunak.json index 939f2b007..4a8e627f4 100644 --- a/domains/raunak.json +++ b/domains/raunak.json @@ -4,12 +4,7 @@ "email": "newerxd1@gmail.com", "discord": "964547951273840650" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/ravana.json b/domains/ravana.json index 40883cced..43099ca46 100644 --- a/domains/ravana.json +++ b/domains/ravana.json @@ -5,7 +5,7 @@ "username": "ravana69", "twitter": "hornyravana>" }, - "record": { + "records": { "CNAME": "ravana.github.io" } } diff --git a/domains/ravener.json b/domains/ravener.json index cc6d4bc55..48ac80eaf 100644 --- a/domains/ravener.json +++ b/domains/ravener.json @@ -5,7 +5,7 @@ "twitter": "RavenRavener", "discord": "292690616285134850" }, - "record": { + "records": { "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/ravi-pate.json b/domains/ravi-pate.json index ae51c37e2..6df215ee5 100644 --- a/domains/ravi-pate.json +++ b/domains/ravi-pate.json @@ -4,7 +4,7 @@ "owner": { "username": "ravi-pate" }, - "record": { + "records": { "CNAME": "ravi-pate.github.io" } } diff --git a/domains/ravi.json b/domains/ravi.json new file mode 100644 index 000000000..7fa918630 --- /dev/null +++ b/domains/ravi.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website of Ravi", + "repo": "https://github.com/ravikhokhar23/ravikhokhar23.github.io", + "owner": { + "username": "ravikhokhar23", + "email": "khokhar.ravikumar@gmail.com" + }, + "records": { + "CNAME": "ravikhokhar23.github.io" + } +} diff --git a/domains/raviteja-geddada.json b/domains/raviteja-geddada.json index 3e4423c0c..e36ea6fdc 100644 --- a/domains/raviteja-geddada.json +++ b/domains/raviteja-geddada.json @@ -3,12 +3,7 @@ "username": "Raviteja77", "email": "geddadaraviteja612@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/raviteja.json b/domains/raviteja.json index e1cc53fd4..98d9bacc1 100644 --- a/domains/raviteja.json +++ b/domains/raviteja.json @@ -6,7 +6,7 @@ "email": "iraviteja77@gmail.com", "twitter": "_iraviteja" }, - "record": { + "records": { "CNAME": "iraviteja.github.io" } } diff --git a/domains/raw-api.json b/domains/raw-api.json deleted file mode 100644 index b8d2e61c5..000000000 --- a/domains/raw-api.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "is-a.dev" - } -} diff --git a/domains/raw-kirito.json b/domains/raw-kirito.json index 6c1555378..6b528b84f 100644 --- a/domains/raw-kirito.json +++ b/domains/raw-kirito.json @@ -4,7 +4,7 @@ "username": "ThisMe124", "email": "anonymous.orgn@gmail.com" }, - "record": { + "records": { "CNAME": "thisme124.github.io" } } diff --git a/domains/rawfin.json b/domains/rawfin.json index 3f42275a3..b91353235 100644 --- a/domains/rawfin.json +++ b/domains/rawfin.json @@ -3,7 +3,7 @@ "username": "raofin", "email": "contact@rawfin.net" }, - "record": { + "records": { "CNAME": "rawfin.pages.dev" } } diff --git a/domains/rawir.json b/domains/rawir.json index a15272c49..93156c30e 100644 --- a/domains/rawir.json +++ b/domains/rawir.json @@ -6,7 +6,7 @@ "email": "0x4d3a@protonmail.com", "twitter": "Rawir_" }, - "record": { + "records": { "CNAME": "rawiros.github.io" } } diff --git a/domains/rawr.json b/domains/rawr.json new file mode 100644 index 000000000..e1bccda0f --- /dev/null +++ b/domains/rawr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "yunexiz" + }, + "records": { + "URL": "https://y.is-a.dev" + } +} diff --git a/domains/ray.json b/domains/ray.json index 088e1870c..139db2f4a 100644 --- a/domains/ray.json +++ b/domains/ray.json @@ -3,7 +3,7 @@ "username": "RayDev07", "email": "jatingujjar.alive@gmail.com" }, - "record": { + "records": { "CNAME": "raydev07.github.io" } } diff --git a/domains/rayane-nekena.json b/domains/rayane-nekena.json index 201528a0b..f389c8612 100644 --- a/domains/rayane-nekena.json +++ b/domains/rayane-nekena.json @@ -1,11 +1,11 @@ { - "description": "Domain for my personal blog", + "description": "Domain for my personal portfolio", "repo": "https://github.com/Online13/Online13.github.io", "owner": { "username": "Online13", - "email": "Rratiarivelo@gmail.com" + "email": "rratiarivelo@gmail.com" }, - "record": { - "CNAME": "online13.github.io" + "records": { + "CNAME": "portfolio-cwk.pages.dev" } } diff --git a/domains/rayen.json b/domains/rayen.json new file mode 100644 index 000000000..c9ed16d98 --- /dev/null +++ b/domains/rayen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "korbirayen", + "email": "contact.rayenkorbi@gmail.com" + }, + "records": { + "CNAME": "korbirayen.github.io" + } +} diff --git a/domains/raymar.json b/domains/raymar.json index 7f2047ff8..81c7275c8 100644 --- a/domains/raymar.json +++ b/domains/raymar.json @@ -3,7 +3,7 @@ "username": "RaymarMonte", "email": "raymarmontecs@gmail.com" }, - "record": { + "records": { "CNAME": "raymar-laboratory.surge.sh" } } diff --git a/domains/raymond.json b/domains/raymond.json index 51fa74ad5..8c59e00e6 100644 --- a/domains/raymond.json +++ b/domains/raymond.json @@ -3,7 +3,7 @@ "username": "raylu15742cs", "email": "raylucs15742@gmail.com" }, - "record": { + "records": { "CNAME": "raylu15742cs.github.io" } } diff --git a/domains/raymondlu.json b/domains/raymondlu.json index 51fa74ad5..8c59e00e6 100644 --- a/domains/raymondlu.json +++ b/domains/raymondlu.json @@ -3,7 +3,7 @@ "username": "raylu15742cs", "email": "raylucs15742@gmail.com" }, - "record": { + "records": { "CNAME": "raylu15742cs.github.io" } } diff --git a/domains/raymonzhang.json b/domains/raymonzhang.json index 5fba946e0..3ad0698ed 100644 --- a/domains/raymonzhang.json +++ b/domains/raymonzhang.json @@ -5,7 +5,7 @@ "username": "raymon-zhang", "email": "raymonzhang.rz@gmail.com" }, - "record": { + "records": { "CNAME": "raymon-zhang.github.io" } } diff --git a/domains/raynaldescala.json b/domains/raynaldescala.json new file mode 100644 index 000000000..3b1ace96d --- /dev/null +++ b/domains/raynaldescala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raynaldescala", + "email": "raynaldescala01@gmail.com" + }, + "records": { + "CNAME": "raynaldescala.vercel.app" + } +} diff --git a/domains/rayr.json b/domains/rayr.json index fe125c21b..25153be85 100644 --- a/domains/rayr.json +++ b/domains/rayr.json @@ -3,7 +3,7 @@ "username": "Rayrsn", "email": "rayrsn@proton.me" }, - "record": { + "records": { "URL": "https://rayrsn.me/" } } diff --git a/domains/rayrsn.json b/domains/rayrsn.json index 8365050ed..f657e968e 100644 --- a/domains/rayrsn.json +++ b/domains/rayrsn.json @@ -3,7 +3,7 @@ "username": "Rayrsn", "email": "ramtin.015@gmail.com" }, - "record": { + "records": { "A": ["217.174.245.249"], "MX": ["hosts.is-a.dev"], "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" diff --git a/domains/rayvid.json b/domains/rayvid.json index e26d64386..510851513 100644 --- a/domains/rayvid.json +++ b/domains/rayvid.json @@ -1,11 +1,10 @@ { "description": "Rayvid's website", - "repo": "https://github.com/Rayvid", "owner": { "username": "rayvid", "email": "gin.kisonas@gmail.com" }, - "record": { + "records": { "CNAME": "rayvid.github.io" } } diff --git a/domains/rayyan.json b/domains/rayyan.json new file mode 100644 index 000000000..36f7728c3 --- /dev/null +++ b/domains/rayyan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RayyanNafees", + "email": "nafees.rayyan@gmail.com" + }, + "records": { + "CNAME": "rayyano.vercel.app" + } +} diff --git a/domains/razin.json b/domains/razin.json index 57736bd41..0fd390cff 100644 --- a/domains/razin.json +++ b/domains/razin.json @@ -3,7 +3,7 @@ "username": "razinrayees", "email": "razin.rayeesk@gmail.com" }, - "record": { + "records": { "URL": "https://razin.in" } } diff --git a/domains/razu.json b/domains/razu.json index 4eb3ee06f..933e2415b 100644 --- a/domains/razu.json +++ b/domains/razu.json @@ -1,10 +1,9 @@ { "owner": { "username": "Razuuu", - "discord": "346717564895887360", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XinpxXaZoe1abJCLysJ0Qhlxxe_tuIJ_rgJsIJz-FHFMhJwqz_MmZsvpg7fZ0UWiqBmLDiuPz7-nJrfd8XvXsEfY1N91ct50zja5SCJ3JlenS3G5rtO9pu2Lr9hDnOYcplGLuYKs8w18Le-pXigC_iouAhatve7sia93wmXls3pXGsFklnwnugeieu5hyT5MsZxVhwcZqp4GGkY-MXJA44bBGa6eDp9ZkMFSlhxzznz4RvxobTLvvshVQGClcQvH2janDr6h7YYT9BPY4juP2sfWLxl2Q_P_oPtFLxIh91eMksuAjjtcEffAUQwU5cWR0Zvoh9uiXDvCyK7GXz1HDw.jv5iNpUnsRvDFUHPfuS48A.fbrPdcBHOlaaiSjCJpZO9Lg9tkloC9stW7t9lYPF2wWzWKqz_KsSvmU4A2Wmh_vRbcq-cLDTBx7jpvUOvqGNRmhP8I_Mkj49e15jeOii9dA6Xvy_hShp842kCg06YhEL.kneCY9HIDL_efPvrqrUeug" + "discord": "346717564895887360" }, - "record": { + "records": { "CNAME": "razuuu.de" } } diff --git a/domains/razuuu.json b/domains/razuuu.json index 652673c1a..933e2415b 100644 --- a/domains/razuuu.json +++ b/domains/razuuu.json @@ -1,10 +1,9 @@ { "owner": { "username": "Razuuu", - "discord": "346717564895887360", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pLyyjwPv7LQ2RpeT7-Jc5bdoNokmFI_gW4yNwexrR_pq1c3UBUbVYSKiiyGBk-2Y5elcXkvMeMLD5svNuLaPVFdRMfPlmPBknQNDIhseBgptD0Hbfcp4g1SYTnuRVuLk3a-XH1u1HQcZ7735QMSsX9R-TXZA9t-qOsrpBKnMGpjZ9U6HedcWWTGJREz89jBlYkgZmv2qPQPq_1u9Rqoww-sLImI4KpekmrLdlPRzrFHRISzrKX8TJmCwv-o9bpMH6inNWNDJu7-d-MCViPp4AVepAjZ2eXpzy2C9nu6gVgcU7CM6TZcb6vxOjKkC3XxpcamwrzG7KeQO3NZyr_pFGA.bGO8dhsZSr68ETpcj8kIqQ.yP4ebRLIyuyKWQ5YUQ-l2gFXejWmB0ctKiFLIQRxIIEXoMkmHfbvjGl_-LCQeVWxPnD8LsIJptCUHabCHiVPf6GHsagCag3vTP6C2xQbRe2MtqcJ0Jt3gRh_Nw5xDtou.JBz-6R31-m9K7d_086nDzA" + "discord": "346717564895887360" }, - "record": { + "records": { "CNAME": "razuuu.de" } } diff --git a/domains/rbg.brandgrandreal.json b/domains/rbg.brandgrandreal.json index 4e1414663..033c22cb5 100644 --- a/domains/rbg.brandgrandreal.json +++ b/domains/rbg.brandgrandreal.json @@ -3,7 +3,7 @@ "username": "BrandgrandRealMe", "email": "BrandonTheDev@proton.me" }, - "record": { + "records": { "A": ["69.197.135.205"] } } diff --git a/domains/rbk.json b/domains/rbk.json new file mode 100644 index 000000000..e1db76f79 --- /dev/null +++ b/domains/rbk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "its-me-rbk", + "email": "ceo@greendwarftech.com" + }, + "records": { + "CNAME": "rubhak.greendwarftech.com" + } +} diff --git a/domains/rblx.json b/domains/rblx.json index fd934b900..39477c82a 100644 --- a/domains/rblx.json +++ b/domains/rblx.json @@ -1,9 +1,8 @@ { "owner": { - "username": "r-b-l-x", - "email": "178317246+r-b-l-x@users.noreply.github.com" + "username": "r-b-l-x" }, - "record": { + "records": { "CNAME": "r-b-l-x.github.io" } } diff --git a/domains/rdap.json b/domains/rdap.json deleted file mode 100644 index f2b45dc76..000000000 --- a/domains/rdap.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "rdaphq", - "email": "rdapshii@gmail.com" - }, - "record": { - "A": ["156.67.73.46"] - } -} diff --git a/domains/rdc.json b/domains/rdc.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/rdc.json +++ b/domains/rdc.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/reading.json b/domains/reading.json index 7cece106f..6a719709e 100644 --- a/domains/reading.json +++ b/domains/reading.json @@ -7,7 +7,7 @@ "discord": "readandprogress", "cohost": "readandprogress" }, - "record": { + "records": { "CNAME": "thereadingdimension.pages.dev" } } diff --git a/domains/real.json b/domains/real.json index 5769d71b3..22eb20b77 100644 --- a/domains/real.json +++ b/domains/real.json @@ -3,7 +3,7 @@ "username": "Xyront", "email": "abalabalscratch@gmail.com" }, - "record": { + "records": { "URL": "https://www.youtube.com/watch?v=69tzp7vkg_m" } } diff --git a/domains/realfara.json b/domains/realfara.json index 71d688c8c..d8e8c638b 100644 --- a/domains/realfara.json +++ b/domains/realfara.json @@ -3,7 +3,13 @@ "username": "furyashnyy", "email": "faradey.iskra@mail.ru" }, - "record": { - "A": ["185.199.111.153"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/realityleaks.json b/domains/realityleaks.json index 14820ec43..3371e217d 100644 --- a/domains/realityleaks.json +++ b/domains/realityleaks.json @@ -4,7 +4,7 @@ "email": "getnukedbycreiloZ@proton.me", "discord": "1186392267511042149" }, - "record": { + "records": { "CNAME": "realityleaks.rf.gd" } } diff --git a/domains/really.json b/domains/really.json index 00ab0224a..f790320b1 100644 --- a/domains/really.json +++ b/domains/really.json @@ -3,7 +3,7 @@ "username": "ukriu", "email": "isadev@ukriu.com" }, - "record": { + "records": { "CNAME": "ukriu.pages.dev" } } diff --git a/domains/realmzersdomain.json b/domains/realmzersdomain.json index 41956e605..414d8a2e5 100644 --- a/domains/realmzersdomain.json +++ b/domains/realmzersdomain.json @@ -1,11 +1,11 @@ { - "description": "Realmzers Page", - "repo": "https://github.com/Realmzer/realmzer.github.io", - "owner": { - "username": "Realmzer", - "email": "therealm4mc@gmail.com" - }, - "record": { - "URL": "https://realmzer.github.io" - } + "description": "Realmzers Page", + "repo": "https://github.com/Realmzer/realmzer.github.io", + "owner": { + "username": "Realmzer", + "email": "therealm4mc@gmail.com" + }, + "records": { + "URL": "https://realmzer.github.io" + } } diff --git a/domains/realyash.json b/domains/realyash.json index 7bd76a563..8282105fb 100644 --- a/domains/realyash.json +++ b/domains/realyash.json @@ -4,13 +4,8 @@ "username": "Real-Yash", "email": "tempyuva00@gmail.com" }, - "record": { - "A": [ - "185.199.111.153", - "185.199.109.153", - "185.199.108.153", - "185.199.110.153" - ], + "records": { + "A": ["185.199.111.153", "185.199.109.153", "185.199.108.153", "185.199.110.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=yashpatil.pvt@gmail.com" } diff --git a/domains/realzzy.json b/domains/realzzy.json index 210343370..5280a866a 100644 --- a/domains/realzzy.json +++ b/domains/realzzy.json @@ -6,7 +6,7 @@ "twitter": "realzzydev" }, "description": "Used for alternative shortcut to my website (also for easy redirection)", - "record": { + "records": { "URL": "https://realzzy.my.id" } } diff --git a/domains/receipes.json b/domains/receipes.json index 83e1f5653..c49d2219e 100644 --- a/domains/receipes.json +++ b/domains/receipes.json @@ -5,7 +5,7 @@ "username": "receipes", "discord": "receipes#3705" }, - "record": { + "records": { "CNAME": "receipes.github.io" } } diff --git a/domains/receiptify.json b/domains/receiptify.json index 19572b773..cc64a62bb 100644 --- a/domains/receiptify.json +++ b/domains/receiptify.json @@ -1,10 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { + "records": { "CNAME": "proxy.stefdp.lol" } } diff --git a/domains/reda.json b/domains/reda.json index 6add5342b..f350be80d 100644 --- a/domains/reda.json +++ b/domains/reda.json @@ -3,7 +3,7 @@ "username": "redaAssemghor", "discord": "r3dapt" }, - "record": { + "records": { "CNAME": "portfolio-mocha-eta-22.vercel.app" } } diff --git a/domains/redaassemghor.json b/domains/redaassemghor.json index f96cd1d3d..21116cf34 100644 --- a/domains/redaassemghor.json +++ b/domains/redaassemghor.json @@ -3,7 +3,7 @@ "username": "redaassemghor", "discord": "r3dapt" }, - "record": { + "records": { "CNAME": "portfolio-redas-projects-96854a06.vercel.app" } } diff --git a/domains/rededge.json b/domains/rededge.json index 99fc4a0dd..896370eeb 100644 --- a/domains/rededge.json +++ b/domains/rededge.json @@ -5,7 +5,7 @@ "username": "RedEdge967", "email": "janithc967@gmail.com" }, - "record": { + "records": { "CNAME": "rededge967.github.io" } } diff --git a/domains/rediblesky.json b/domains/rediblesky.json index 09e939afa..da87a619f 100644 --- a/domains/rediblesky.json +++ b/domains/rediblesky.json @@ -6,7 +6,7 @@ "email": "user0thenyancat@proton.me", "discord": "1143176245018906697" }, - "record": { + "records": { "CNAME": "rediblesky.github.io" } } diff --git a/domains/redirect.akk1to.json b/domains/redirect.akk1to.json index 2b819373c..b5bfd6138 100644 --- a/domains/redirect.akk1to.json +++ b/domains/redirect.akk1to.json @@ -1,12 +1,12 @@ { - "description": "This website is for redirect server", - "repo": "https://github.com/akk1to/redirect", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "CNAME": "akk1to.github.io" - } + "description": "This website is for redirect server", + "repo": "https://github.com/akk1to/redirect", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "records": { + "CNAME": "akk1to.github.io" + } } diff --git a/domains/redirect.lumix.json b/domains/redirect.lumix.json index fdd6fed21..6f2462d43 100644 --- a/domains/redirect.lumix.json +++ b/domains/redirect.lumix.json @@ -3,7 +3,7 @@ "username": "o-lumix", "email": "lumixfr@outlook.com" }, - "record": { + "records": { "CNAME": "redirect-8qp.pages.dev" } } diff --git a/domains/redirect.nziie.json b/domains/redirect.nziie.json index c4d7d12b2..5c263651c 100644 --- a/domains/redirect.nziie.json +++ b/domains/redirect.nziie.json @@ -3,7 +3,7 @@ "username": "Nzii3", "email": "exeyst@gmail.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/rednek46.json b/domains/rednek46.json index 13d997131..f9d9df2ac 100644 --- a/domains/rednek46.json +++ b/domains/rednek46.json @@ -5,7 +5,7 @@ "username": "rednek46", "email": "nuzer501@gmail.com" }, - "record": { + "records": { "CNAME": "rednek46.github.io" } } diff --git a/domains/rednotsus.json b/domains/rednotsus.json index 4bf677852..343d3c6f2 100644 --- a/domains/rednotsus.json +++ b/domains/rednotsus.json @@ -3,7 +3,7 @@ "username": "RedNotSus", "email": "Jiayangc1@gmail.com" }, - "record": { + "records": { "A": ["15.204.232.110"] } } diff --git a/domains/redolent.json b/domains/redolent.json index 009222c74..d1ba27120 100644 --- a/domains/redolent.json +++ b/domains/redolent.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "RedolentHalo", - "discord": "755718159641608202", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.c0d7ul7E-LX1qEJeFPuXgcpGJvLDeqnotDBs20mJdeqQzpzoMFTGzEYQ3QExt5XVjdX9SzRFpdgGaY04gN_c_Nrx7WaG47ZJL1rNAapJYCUGmysp3W6g2Trwi45_cIaWUEwKGnjBIgp3BTLKO6yentnHJXKjMb5AUkDcZVj69Nly4sCpdUTSjj1Xw6hVtmapS-lGaIlm6iaftk1pEJm1q1uIuDSsrufH2oRF3lVwkmjJDIwD_tf7PXuHRUGgxvt0FK_bLZKnoqbFtpTh9nNg_RBf8H1YnzHhOc6dkjf6ikBBzcQDutiKxelMupFmatlU5eAGCBmKkEUwxtSKsp5jQQ.R8WtRKhJLz0P5qUPEEdXZg.oEOJF1FocJn0FqQ1P0RaKVK4G1RoQT6E3oyRUpMg_lv0UXDwn16BlIUcKowUWxiObofg1YKRgB1OM4uIZPjxbAYJwkS-Q4Hf0CTmeZCjCaVpaeNc20Z9dREuphe4He30.jP6ZbMY8WRHngmBV6kRBsg" - }, - - "record": { - "CNAME": "redolent.pages.dev" - } - } - \ No newline at end of file + "owner": { + "username": "RedolentHalo", + "discord": "755718159641608202" + }, + "records": { + "CNAME": "redolent.pages.dev" + } +} diff --git a/domains/redz.json b/domains/redz.json new file mode 100644 index 000000000..7280929b3 --- /dev/null +++ b/domains/redz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "redzgt", + "email": "morgans73072@gmail.com" + }, + "records": { + "CNAME": "redzgt.github.io" + } +} diff --git a/domains/reed.json b/domains/reed.json index 4af0861ca..c044a979e 100644 --- a/domains/reed.json +++ b/domains/reed.json @@ -6,7 +6,7 @@ "email": "reedjones@reedjones.com", "twitter": "rj0nz" }, - "record": { + "records": { "URL": "https://www.reedjones.com" } } diff --git a/domains/reefsalty.json b/domains/reefsalty.json index fcc66f28a..af096e44e 100644 --- a/domains/reefsalty.json +++ b/domains/reefsalty.json @@ -6,7 +6,7 @@ "email": "hi@reefsalty.co.uk", "twitter": "ReefSalty" }, - "record": { + "records": { "CNAME": "reefsalty.github.io" } } diff --git a/domains/reegan.json b/domains/reegan.json index 6ad614e4d..d9ce13a1c 100644 --- a/domains/reegan.json +++ b/domains/reegan.json @@ -3,7 +3,7 @@ "username": "reeganrajasekar", "email": "areeganrajasekar@gmail.com" }, - "record": { + "records": { "A": ["103.191.209.47"] } } diff --git a/domains/reejit.json b/domains/reejit.json new file mode 100644 index 000000000..95bdcdf56 --- /dev/null +++ b/domains/reejit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "reejit", + "email": "guardiansofspartax@gmail.com" + }, + "records": { + "NS": ["gloria.ns.cloudflare.com", "west.ns.cloudflare.com"] + } +} diff --git a/domains/refat.json b/domains/refat.json index c715035aa..440c66d2b 100644 --- a/domains/refat.json +++ b/domains/refat.json @@ -3,7 +3,7 @@ "owner": { "username": "refatc25" }, - "record": { + "records": { "URL": "https://www.refatchowdhury.com" } } diff --git a/domains/refayet.json b/domains/refayet.json index 4d2c70bb9..7640de47f 100644 --- a/domains/refayet.json +++ b/domains/refayet.json @@ -3,9 +3,8 @@ "username": "refayet-dev", "email": "refayet0096@gmail.com" }, - "repo": "https://github.com/refayet-dev.github.io", "description": "refayet's portfolio site", - "record": { + "records": { "CNAME": "refayet-dev.github.io" } } diff --git a/domains/region.json b/domains/region.json index b28fa3c47..cadcd5b32 100644 --- a/domains/region.json +++ b/domains/region.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "regioniosvn", - "discord": "1264096408395317289", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WNRBeRSr5EzISmqLUQ2fxgAxern45vcHBcO0OhY8NGPm-MnxKCTOc6yWhmDfS3Mu28S9xI_WG3uQ46SYdVfIQKKoY8kGvirmXpftzJ3we_IqMgEH-7MyG35R0fnxQm6LMVKY41LncduwA1jh9sKmGk30oYcWU1u410j_ZxNGr2yzE17vZjJVBUxGFpRR2Rz3QyKTkHeBLWdTEfCSAYIv7JgJ0IH-iYN7DtqCjn2GGJPEMJYNVpivfUKPCNEqr29_f7clFJHifnmDKLG1BjQFitpO0YOyVTeqYwK0lcig5klf0QNTbJ7irj5uWokMkgKeTcQ1yYsKV4-Io0lTGW0ACA.FBJGaklyR9Ew9uB3rumREQ.tiWkr-YgRATVbC7ZHY6iAzEkcSPA8xCI4nYgQ9m-4k9JZ0hM8FgM7YpZW3Nuv7fl0S4s-QyHX8bilZQnQuQvTZ0AMMI7swTarwu4mvAXkr4.RAYWmatCs8lPwxLir16DVA" - }, - - "record": { - "CNAME": "regioniosvn.github.io" - } - } - \ No newline at end of file + "owner": { + "username": "regioniosvn", + "discord": "1264096408395317289" + }, + "records": { + "CNAME": "regioniosvn.github.io" + } +} diff --git a/domains/regiondavid.json b/domains/regiondavid.json index 03cb8587c..036e112b3 100644 --- a/domains/regiondavid.json +++ b/domains/regiondavid.json @@ -3,9 +3,8 @@ "username": "regiondavid", "email": "uestczjw@gmail.com" }, - "record": { + "records": { "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 deleted file mode 100644 index c1ee8caa7..000000000 --- a/domains/register-bot.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "wdh.app" - }, - "proxied": true -} diff --git a/domains/register.json b/domains/register.json deleted file mode 100644 index aab28d71a..000000000 --- a/domains/register.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "URL": "https://github.com/is-a-dev/register" - } -} diff --git a/domains/rehanaf.json b/domains/rehanaf.json index 807ad249a..79b25d15a 100644 --- a/domains/rehanaf.json +++ b/domains/rehanaf.json @@ -3,7 +3,7 @@ "username": "rehanaf", "email": "rehanalfaqih287@gmail.com" }, - "record": { + "records": { "CNAME": "rehanaf.github.io" } } diff --git a/domains/reiiv-beta.json b/domains/reiiv-beta.json new file mode 100644 index 000000000..7f4ce7dd7 --- /dev/null +++ b/domains/reiiv-beta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "records": { + "CNAME": "reiiv-beta.vercel.app" + } +} diff --git a/domains/reiiv-dev.json b/domains/reiiv-dev.json new file mode 100644 index 000000000..3b6717ddc --- /dev/null +++ b/domains/reiiv-dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "records": { + "CNAME": "reiiv-dev.vercel.app" + } +} diff --git a/domains/reiiv.json b/domains/reiiv.json new file mode 100644 index 000000000..a92a4d0ce --- /dev/null +++ b/domains/reiiv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "records": { + "CNAME": "reiiv.vercel.app" + } +} diff --git a/domains/reiya.json b/domains/reiya.json new file mode 100644 index 000000000..4a6f751e0 --- /dev/null +++ b/domains/reiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "reiya", + "discord": "atlayer3" + }, + "records": { + "CNAME": "atlayer3.net" + } +} diff --git a/domains/reiyuchan.json b/domains/reiyuchan.json index 8b975f981..77dc256ca 100644 --- a/domains/reiyuchan.json +++ b/domains/reiyuchan.json @@ -3,9 +3,9 @@ "repo": "https://github.com/reiyuchan/reiyuchan.github.io", "owner": { "username": "reiyuchan", - "email":"iwakura.rei.tk@gmail.com" + "email": "iwakura.rei.tk@gmail.com" }, - "record": { + "records": { "CNAME": "reiyuchan.github.io" } } diff --git a/domains/rejectmodders.json b/domains/rejectmodders.json new file mode 100644 index 000000000..2fc3a7edc --- /dev/null +++ b/domains/rejectmodders.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RejectModders", + "discord": "RejectModders", + "email": "rejectmodders@disutils.com" + }, + "records": { + "CNAME": "rejectmoddersis-adev.vercel.app" + } +} diff --git a/domains/rekto.json b/domains/rekto.json index 1a5b9b19a..d4794d5c9 100644 --- a/domains/rekto.json +++ b/domains/rekto.json @@ -5,7 +5,7 @@ "username": "GetRekto", "email": "rekto.personal@outlook.com" }, - "record": { + "records": { "CNAME": "rekto-dev.github.io" } } diff --git a/domains/relicrb.json b/domains/relicrb.json index 1ace4d4fe..20c7393ec 100644 --- a/domains/relicrb.json +++ b/domains/relicrb.json @@ -5,7 +5,7 @@ "username": "RelicRB", "email": "relicrb@gmail.com" }, - "record": { + "records": { "CNAME": "relicrb.github.io" } } diff --git a/domains/remarkable.json b/domains/remarkable.json index b8a47dd8b..acc5f4016 100644 --- a/domains/remarkable.json +++ b/domains/remarkable.json @@ -1,10 +1,9 @@ { "owner": { "username": "re-mark-able", - "discord": "765796161499824148", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fOTIwfMKwClgFwL9HAKXDmSQ0f2lGUAqPC5aoK11pcVa1-2kyFMGaVPAdQT4FxsPz5TvMki5c_FVrrvB2e2z3b0D8CTnqAyt8t-fVMhR3ZQ7c_F9bnoHbrHLEuOxEWMLplzJ0DJK1mWq5LS1a8yiRe7rflpnTz4k-O6xpffJyy4Z0YmwaToQmSnkZVHYHEvW8LsMj-vJH4qoLWL15d3rDIyCoEI90w4e8LK7dnT6Lh_R19IAIjLCnlLEht5EjrJJzd0uZ8zsTx3rIVrsrH1ZWETQOJOSGtce3bRhJU0Oe_4IfTM9urZ-iKzgIsZ-UZ6LXe-YHdwz4WbpjgXyVg3aow.mTeqQiPOIbLifupAwjYlEw.DKuNxopD9OAba76OuG1YbookFbx_f0J03TMVEzGqOIjJMgchQKCpS-7YHfFtzDEOmRtsp0TKDfz-jLha_b3yGqfLCGlv576N5Crix5fLs9L3jCKX-_sDlwfkUa1yU1GZ2m7axkruRvkp89p4dmkMcA.7M_efxmBRwnxs0C7lP-8-g" + "discord": "765796161499824148" }, - "record": { + "records": { "CNAME": "re-mark-able.github.io" } } diff --git a/domains/ren.json b/domains/ren.json index 196e25e11..cdfaf59aa 100644 --- a/domains/ren.json +++ b/domains/ren.json @@ -5,7 +5,7 @@ "username": "rendotpy", "email": "arugh3@gmail.com" }, - "record": { + "records": { "CNAME": "rendotpy.github.io" } } diff --git a/domains/renant.json b/domains/renant.json new file mode 100644 index 000000000..e1337a658 --- /dev/null +++ b/domains/renant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "renant", + "email": "renan_replay@live.com" + }, + "records": { + "CNAME": "renant.vercel.app" + } +} diff --git a/domains/renato-dulog.json b/domains/renato-dulog.json new file mode 100644 index 000000000..0ce5e3a06 --- /dev/null +++ b/domains/renato-dulog.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Web Portfolio", + "owner": { + "username": "renskiedulog", + "email": "renrendulog@gmail.com" + }, + "records": { + "CNAME": "renato-dulog.vercel.app" + } +} diff --git a/domains/renn.json b/domains/renn.json index 88e0606bb..dedc1b107 100644 --- a/domains/renn.json +++ b/domains/renn.json @@ -4,7 +4,7 @@ "email": "ezzbro121@gmail.com", "discord": "1202338769379008515" }, - "record": { + "records": { "CNAME": "lyvoid.github.io" } } diff --git a/domains/renzcole.json b/domains/renzcole.json new file mode 100644 index 000000000..a38ab7507 --- /dev/null +++ b/domains/renzcole.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeBuddySLTNS", + "email": "renz2arjhay@gmail.com" + }, + "records": { + "CNAME": "renzcole.vercel.app" + } +} diff --git a/domains/renzyx.json b/domains/renzyx.json index 46f79f971..b297a48d4 100644 --- a/domains/renzyx.json +++ b/domains/renzyx.json @@ -5,7 +5,7 @@ "username": "xyugen", "email": "alex.arias.jorym@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"], "MX": ["feedback-smtp.us-east-1.amazonses.com"], "TXT": [ diff --git a/domains/rep.json b/domains/rep.json index ce759c0a2..44b96b134 100644 --- a/domains/rep.json +++ b/domains/rep.json @@ -5,7 +5,7 @@ "username": "Reputation", "email": "omen@dashpvp.net" }, - "record": { + "records": { "CNAME": "reputationdev.github.io" } } diff --git a/domains/repo.abdullahcxd.json b/domains/repo.abdullahcxd.json new file mode 100644 index 000000000..6fbd1824b --- /dev/null +++ b/domains/repo.abdullahcxd.json @@ -0,0 +1,11 @@ +{ + "description": "The use of this domain is to host my Java projects for public use", + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "records": { + "CNAME": "abdullahcxd-reposilite-server.fly.dev" + } +} diff --git a/domains/rescenic.json b/domains/rescenic.json new file mode 100644 index 000000000..60ccb48be --- /dev/null +++ b/domains/rescenic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rescenic", + "email": "admin@rescenic.my.id" + }, + "records": { + "CNAME": "rescenic.github.io" + } +} diff --git a/domains/researchingassets.json b/domains/researchingassets.json index 4fb468d10..5bd99488d 100644 --- a/domains/researchingassets.json +++ b/domains/researchingassets.json @@ -4,7 +4,7 @@ "email": "info.soumit@gmail.com", "discord": "882236129389207593" }, - "record": { + "records": { "CNAME": "researchingassets.github.io" } } diff --git a/domains/researcx.json b/domains/researcx.json index eed68c8a6..5b1a49679 100644 --- a/domains/researcx.json +++ b/domains/researcx.json @@ -3,9 +3,12 @@ "username": "researcx", "email": "kei.trei.a52@gmail.com" }, - "record": { + "records": { "A": ["207.127.95.80"], "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": ["v=spf1 include:zoho.eu ~all", "oa1:xmr recipient_address=86PHZTrVFtRMqPvM4F6k5BKYz5EKD1eoTepvqpNGEcktEkQ9xuVt98biL4QzCCsENFKJP58nPTPbyB6CG33gy5FWDxacA1A; recipient_name=researcx;"] + "TXT": [ + "v=spf1 include:zoho.eu ~all", + "oa1:xmr recipient_address=86PHZTrVFtRMqPvM4F6k5BKYz5EKD1eoTepvqpNGEcktEkQ9xuVt98biL4QzCCsENFKJP58nPTPbyB6CG33gy5FWDxacA1A; recipient_name=researcx;" + ] } } diff --git a/domains/resend._domainkey.ante.json b/domains/resend._domainkey.ante.json new file mode 100644 index 000000000..4636ff536 --- /dev/null +++ b/domains/resend._domainkey.ante.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "records": { + "TXT": [ + "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrwZyojtcNVKIEV258MoPimYCFNqQkIfUhvHXnBMuhTchV+NyWO2BKlLktz7eCDxwiLBEqBWqnfFT13Dimq5Xf2gPuc118Zua+2ZyIv2eC/kUo/dKY9EnZdqcvQOPPRs4PzDeXL7cDChrbvfNw9Pct9DG1PYdpe9vHYz+/2gINbwIDAQAB" + ] + } +} diff --git a/domains/resend._domainkey.auth.sign.alvin.json b/domains/resend._domainkey.auth.sign.alvin.json new file mode 100644 index 000000000..1bfe1ec50 --- /dev/null +++ b/domains/resend._domainkey.auth.sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "records": { + "TXT": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJKRhjsqeFCeiJu7RCgTQLle1cBelrRmpLQJoJIc1JHTBSc0RNuLTwMEWzE3Kb/ichQ+9JiOnSAEYXM/HYmdPdBL0e1xj5WJum/kKidmyaSJunNVUmpy85BgbIex3icbnZcTaUOXzTTPdxnJJZy5iJWGt39/hYkHKdOuYtNDeKJwIDAQAB" + } +} diff --git a/domains/resend._domainkey.blogs.akk1to.json b/domains/resend._domainkey.blogs.akk1to.json new file mode 100644 index 000000000..b668efa9f --- /dev/null +++ b/domains/resend._domainkey.blogs.akk1to.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "records": { + "TXT": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCkC3QeDPeGYFp3nDf2GByvCWnS24VLN9lnWJWWnkPNJGiFuoucjxU8CpeD74C1XlZDz6dr/zcNPsOrh5Zi/87XugfwQsDzjfPPosCRIGa1SVqm1S4kdaT2Ms7i6//x5Y0y7uoE+dK2EecDVwLJAqc93Yipp+xihK9HOf4ffO6nxwIDAQAB" + } +} diff --git a/domains/resolved.json b/domains/resolved.json index 0e4a2899f..21a44addd 100644 --- a/domains/resolved.json +++ b/domains/resolved.json @@ -6,7 +6,7 @@ "email": "huukhoa04@gmail.com", "twitter": "huukhoa004" }, - "record": { + "records": { "CNAME": "huukhoa04.github.io" } } diff --git a/domains/respect.json b/domains/respect.json index 7bbb1971d..c63f86a7b 100644 --- a/domains/respect.json +++ b/domains/respect.json @@ -3,7 +3,7 @@ "username": "rq9s", "email": "valdemarbirker@gmail.com" }, - "record": { + "records": { "A": ["198.251.89.164"] } } diff --git a/domains/restaurantmanagementsystem.chiragnahata.json b/domains/restaurantmanagementsystem.chiragnahata.json index 726befd50..4dcdef8bf 100644 --- a/domains/restaurantmanagementsystem.chiragnahata.json +++ b/domains/restaurantmanagementsystem.chiragnahata.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/retr0.json b/domains/retr0.json index 84c08dc42..6de970e3f 100644 --- a/domains/retr0.json +++ b/domains/retr0.json @@ -5,7 +5,7 @@ "username": "u0f", "email": "ice.dev1234@gmail.com" }, - "record": { + "records": { "CNAME": "u0f.github.io" } } diff --git a/domains/retr0xraiden.json b/domains/retr0xraiden.json index 1ad22e87e..58e8c017c 100644 --- a/domains/retr0xraiden.json +++ b/domains/retr0xraiden.json @@ -5,7 +5,7 @@ "username": "Raiden-16F7", "email": "fahad.rizwan07@gmail.com" }, - "record": { + "records": { "CNAME": "raiden-16f7.github.io" } } diff --git a/domains/retro.horibyte.json b/domains/retro.horibyte.json new file mode 100644 index 000000000..cff70fef2 --- /dev/null +++ b/domains/retro.horibyte.json @@ -0,0 +1,11 @@ +{ + "description": "Horibyte's personal website", + "repo": "https://github.com/horibyte/horibyte.github.io", + "owner": { + "username": "horibyte", + "email": "thehoribyte@gmail.com" + }, + "records": { + "CNAME": "horibyte.github.io" + } +} diff --git a/domains/retrouser955.json b/domains/retrouser955.json index b607b6516..a5cfed8dd 100644 --- a/domains/retrouser955.json +++ b/domains/retrouser955.json @@ -3,7 +3,7 @@ "username": "retrouser955", "discord": "691111067807514685" }, - "record": { + "records": { "CNAME": "retrouser955.vercel.app" } } diff --git a/domains/reuben.json b/domains/reuben.json index ab3072264..e908cedea 100644 --- a/domains/reuben.json +++ b/domains/reuben.json @@ -5,7 +5,7 @@ "username": "reuben-x", "email": "reubenthomaspeter@gmail.com" }, - "record": { + "records": { "CNAME": "reuben-x.github.io" } } diff --git a/domains/reuel.json b/domains/reuel.json index 1b11c1258..32433beed 100644 --- a/domains/reuel.json +++ b/domains/reuel.json @@ -5,7 +5,7 @@ "username": "reuel-k", "email": "reuelk@protonmail.com" }, - "record": { + "records": { "CNAME": "reuel-k.github.io" } } diff --git a/domains/revansp.json b/domains/revansp.json new file mode 100644 index 000000000..217e416dd --- /dev/null +++ b/domains/revansp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "records": { + "CNAME": "revansp.pages.dev" + } +} diff --git a/domains/revolux.json b/domains/revolux.json index e1cbb6872..8e3eaf48b 100644 --- a/domains/revolux.json +++ b/domains/revolux.json @@ -6,7 +6,7 @@ "email": "business.itzswift@gmail.com", "twitter": "rxvolux" }, - "record": { + "records": { "CNAME": "rxvolux.github.io" } } diff --git a/domains/revvnik.json b/domains/revvnik.json index 3713638bc..cc06d868b 100644 --- a/domains/revvnik.json +++ b/domains/revvnik.json @@ -3,7 +3,7 @@ "username": "revvnik", "email": "nikitasitter@gmail.com" }, - "record": { + "records": { "CNAME": "revvnik.github.io" } } diff --git a/domains/reyuki.json b/domains/reyuki.json new file mode 100644 index 000000000..fbbd9a620 --- /dev/null +++ b/domains/reyuki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyukii", + "email": "me@reyuki.site" + }, + "records": { + "CNAME": "www.reyuki.site" + } +} diff --git a/domains/rez3x.json b/domains/rez3x.json index 0a80fda34..7fc804d7f 100644 --- a/domains/rez3x.json +++ b/domains/rez3x.json @@ -3,7 +3,7 @@ "username": "REZ3X", "email": "rezex.dev01@gmail.com" }, - "record": { + "records": { "CNAME": "japon-resto.pages.dev" } } diff --git a/domains/rezz.json b/domains/rezz.json index 4103ecc70..034ab3fac 100644 --- a/domains/rezz.json +++ b/domains/rezz.json @@ -1,10 +1,9 @@ { - "repo": "https://github.com/RezzedUp", "owner": { "username": "RezzedUp", "twitter": "RezzedUp" }, - "record": { + "records": { "URL": "https://rezzedup.com" } } diff --git a/domains/rferee.json b/domains/rferee.json index ef5cbddc4..da9586d9f 100644 --- a/domains/rferee.json +++ b/domains/rferee.json @@ -3,7 +3,7 @@ "username": "rferee", "email": "admin@rferee.dev" }, - "record": { + "records": { "URL": "https://rferee.dev" } } diff --git a/domains/rfwn.json b/domains/rfwn.json index 84836cc8d..6d7afc087 100644 --- a/domains/rfwn.json +++ b/domains/rfwn.json @@ -5,7 +5,7 @@ "username": "rfwn", "email": "rfwn.mjd@gmail.com" }, - "record": { + "records": { "CNAME": "rfwn.github.io" } } diff --git a/domains/rhushabhrathod.json b/domains/rhushabhrathod.json new file mode 100644 index 000000000..030c135c9 --- /dev/null +++ b/domains/rhushabhrathod.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rhushabhrathod", + "email": "rhushabhrathodmark9@gmail.com" + }, + "records": { + "CNAME": "rhushabhrathod.github.io" + } +} diff --git a/domains/rhyk.json b/domains/rhyk.json index 595d125f1..e33939617 100644 --- a/domains/rhyk.json +++ b/domains/rhyk.json @@ -3,7 +3,7 @@ "username": "qbkyde6c", "email": "qbkyde6c@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/rhylso.json b/domains/rhylso.json index eac23c78a..cc1ac20f9 100644 --- a/domains/rhylso.json +++ b/domains/rhylso.json @@ -3,7 +3,7 @@ "username": "rhylso", "email": "rhylso@proton.me" }, - "record": { + "records": { "CNAME": "rhylso.pages.dev" } } diff --git a/domains/rhythm.json b/domains/rhythm.json index 7218cb504..c52c9e280 100644 --- a/domains/rhythm.json +++ b/domains/rhythm.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ms7ru", - "email": "rhythm.upa@gmail.com" - }, - "record": { - "CNAME": "ms7ru.github.io" - } + "owner": { + "username": "ms7ru", + "email": "rhythm.upa@gmail.com" + }, + "records": { + "CNAME": "ms7ru.github.io" + } } diff --git a/domains/ri1.json b/domains/ri1.json index a2de2054f..f14665c32 100644 --- a/domains/ri1.json +++ b/domains/ri1.json @@ -6,7 +6,7 @@ "twitter": "ri1ontwitr", "discord": "ri1_#0973" }, - "record": { + "records": { "URL": "https://notri1.fr" } } diff --git a/domains/riann.json b/domains/riann.json index da7be85fb..92d596b61 100644 --- a/domains/riann.json +++ b/domains/riann.json @@ -3,7 +3,7 @@ "username": "afrianluthfan", "email": "afrian.luthfan@gmail.com" }, - "record": { + "records": { "CNAME": "afrianluthfan.github.io" } } diff --git a/domains/rias.json b/domains/rias.json index 17700dcbe..d6a6c2054 100644 --- a/domains/rias.json +++ b/domains/rias.json @@ -1,10 +1,9 @@ { "owner": { "username": "RiasZz", - "discord": "245028766387142656", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Edl4jRGMJSUFF14Y4qub1zHhEj-SrmXcG-eVgF6P_EsOjhgl6e5CDShlDkmMTAkpZBbT5s66KuSrDdmMGAJqgYP4aql0FF5cnj5yX5bM-AZnB_fzi1T1iymqiZvtJEYmKuYO-Djkge0pC5JmgVPFQGQj--AIeFbwuyQts19PrDci_kXquX_dKnXzP7_S61zM1vygbq-YcjnQw8abfRSZ1hoKVeZmDcbFi5KhxDWdgkiToyzOk5gBQ52_IwfzJesWeOtFXwiIJS7NwkIMKS70V9lu5a1C87aab9919ocqWsElrJHCdmQOIwSzmu36TIt51_RvjWsfkPjAtbrBWCiECw.R1diEo6UhieiMS9g_GiqZw.dgoN9oQuZxXM6aanZA9Gkh3Neb-hDbGh_7_vBlf79dvln503TEHDrCN-skUH8r3_uSVMSnSodFQu7rqHJa0z8CV3efig1zj2MZ2YYXMQKlc.I5t1GaMcmY2kqWqAO9yVwg" + "discord": "245028766387142656" }, - "record": { + "records": { "CNAME": "riass.ir" } } diff --git a/domains/ricardo.json b/domains/ricardo.json index 5180f01fe..2fa2b1653 100644 --- a/domains/ricardo.json +++ b/domains/ricardo.json @@ -5,7 +5,7 @@ "username": "RicardoGonzf", "email": "ricardo@ricardogonz.es" }, - "record": { + "records": { "URL": "https://ricardogonz.es" } } diff --git a/domains/riccardo126.json b/domains/riccardo126.json new file mode 100644 index 000000000..066ad3ffc --- /dev/null +++ b/domains/riccardo126.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riccardo126", + "email": "riccardopassacantando@gmail.com" + }, + "records": { + "CNAME": "riccardo126.vercel.app" + } +} diff --git a/domains/rice.json b/domains/rice.json index b9e63fee1..30f479c96 100644 --- a/domains/rice.json +++ b/domains/rice.json @@ -3,7 +3,7 @@ "username": "JoaquinDaBest", "email": "theonlyhehehehaw@gmail.com" }, - "record": { + "records": { "CNAME": "keenwa.x10.mx" } } diff --git a/domains/ricecx.json b/domains/ricecx.json index dce5a1422..ba5486bdd 100644 --- a/domains/ricecx.json +++ b/domains/ricecx.json @@ -5,7 +5,7 @@ "email": "andyl5463@gmail.com" }, "description": "Hosting my website.", - "record": { + "records": { "CNAME": "ricecx.github.io" } } diff --git a/domains/richard.json b/domains/richard.json index 8744f857b..137e9d7aa 100644 --- a/domains/richard.json +++ b/domains/richard.json @@ -6,7 +6,7 @@ "email": "richardshaju66@gmail.com", "twitter": "richard_shaju" }, - "record": { + "records": { "CNAME": "richardshaju.github.io" } } diff --git a/domains/ricky.json b/domains/ricky.json index 4ab502ad1..36d4eb10c 100644 --- a/domains/ricky.json +++ b/domains/ricky.json @@ -3,7 +3,7 @@ "username": "rickynolep", "email": "rickynolepcuy@gmail.com" }, - "record": { + "records": { "CNAME": "rickynolep.github.io" } } diff --git a/domains/riddim-glitch.json b/domains/riddim-glitch.json index bd4db0fe4..c56c04714 100644 --- a/domains/riddim-glitch.json +++ b/domains/riddim-glitch.json @@ -3,7 +3,7 @@ "username": "Riddim-GLiTCH", "email": "Riddim_GLiTCH@proton.me" }, - "record": { + "records": { "CNAME": "riddim-glitch.github.io" } } diff --git a/domains/ridwan.json b/domains/ridwan.json new file mode 100644 index 000000000..d23b90d1c --- /dev/null +++ b/domains/ridwan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ridwanyinus", + "email": "ridwanyinusa15@gmail.com" + }, + "records": { + "CNAME": "ridwanyinus.vercel.app" + } +} diff --git a/domains/ridwanalfarezi.json b/domains/ridwanalfarezi.json index da1dd74b1..3c3858882 100644 --- a/domains/ridwanalfarezi.json +++ b/domains/ridwanalfarezi.json @@ -4,7 +4,7 @@ "username": "ridwanalfarezi", "email": "alfareziridwan@gmail.com" }, - "record": { + "records": { "CNAME": "ridwanalfarezi.github.io" } } diff --git a/domains/ridwanyinus.json b/domains/ridwanyinus.json deleted file mode 100644 index b077d79f5..000000000 --- a/domains/ridwanyinus.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Portfolio", - "repo": "https://github.com/ridwanyinus/pfp-2", - "owner": { - "username": "ridwanyinusa", - "email": "ridwanyinusa15@gmail.com" - }, - "record": { - "CNAME": "ridwanyinusa.netlify.app" - } -} diff --git a/domains/rifai.json b/domains/rifai.json new file mode 100644 index 000000000..ab4c2a2e9 --- /dev/null +++ b/domains/rifai.json @@ -0,0 +1,10 @@ +{ + "description": "Using is-a.dev for my personal portfolio", + "owner": { + "username": "humanwhodebugs", + "email": "humanwhodebugs@gmail.com" + }, + "records": { + "CNAME": "humanwhodebugs.netlify.app" + } +} diff --git a/domains/rifzki.json b/domains/rifzki.json index de8fc9dcd..8cb2972c0 100644 --- a/domains/rifzki.json +++ b/domains/rifzki.json @@ -3,7 +3,7 @@ "username": "rifzkiadiyaksa", "email": "rifzki.adiyaksa18033@student.unsika.ac.id" }, - "record": { + "records": { "URL": "https://rifzki.my.id" } } diff --git a/domains/rihards.json b/domains/rihards.json index d72e2c4e6..160096762 100644 --- a/domains/rihards.json +++ b/domains/rihards.json @@ -3,7 +3,7 @@ "username": "dexit", "email": "dexit@dyc.lv" }, - "record": { + "records": { "CNAME": "dexit.github.io" } } diff --git a/domains/riihime.json b/domains/riihime.json index 196368537..d1403a009 100644 --- a/domains/riihime.json +++ b/domains/riihime.json @@ -3,7 +3,7 @@ "username": "Riihime", "email": "miuly1459@gmail.com" }, - "record": { + "records": { "CNAME": "riihime.github.io" } } diff --git a/domains/riii.json b/domains/riii.json index b3e664d79..4bdc4905e 100644 --- a/domains/riii.json +++ b/domains/riii.json @@ -3,7 +3,7 @@ "username": "riyasachdeva04", "email": "sachdevar919@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/riyasachdeva04" } } diff --git a/domains/riku.json b/domains/riku.json index 592b0bcef..9731eebdb 100644 --- a/domains/riku.json +++ b/domains/riku.json @@ -3,7 +3,7 @@ "username": "Rikuxyz", "email": "rikukagenou@gmail.com" }, - "record": { + "records": { "CNAME": "redirect-1qp.pages.dev" } } diff --git a/domains/rikubot.json b/domains/rikubot.json index c6217a3d8..87691fcf2 100644 --- a/domains/rikubot.json +++ b/domains/rikubot.json @@ -3,7 +3,7 @@ "username": "devops-riku", "email": "egermino.riku@gmail.com" }, - "record": { + "records": { "CNAME": "rikudev.cloud" } } diff --git a/domains/rikuxyz.json b/domains/rikuxyz.json index b867a6509..922f585dc 100644 --- a/domains/rikuxyz.json +++ b/domains/rikuxyz.json @@ -4,7 +4,7 @@ "email": "rikuishigami015@gmail.com", "twitter": "riku_xyzs" }, - "record": { + "records": { "CNAME": "pixel-cci.pages.dev" } } diff --git a/domains/rilecraft.json b/domains/rilecraft.json index de41e9e7c..fb8f7f990 100644 --- a/domains/rilecraft.json +++ b/domains/rilecraft.json @@ -5,7 +5,7 @@ "username": "rilecraft", "email": "rilecraft@gmail.com" }, - "record": { + "records": { "CNAME": "rilecraft.github.io" } } diff --git a/domains/riley.json b/domains/riley.json index 9cd1012c6..62f952ef4 100644 --- a/domains/riley.json +++ b/domains/riley.json @@ -6,7 +6,7 @@ "email": "riley33chou@gmail.com", "twitter": "IceShark_91" }, - "record": { + "records": { "CNAME": "rileychou.github.io" } } diff --git a/domains/rilliat.json b/domains/rilliat.json new file mode 100644 index 000000000..acec2cb68 --- /dev/null +++ b/domains/rilliat.json @@ -0,0 +1,12 @@ +{ + "description": "Rilliat's is-a.dev domain", + "repo": "https://github.com/Rilliat/rilliat.github.io", + "owner": { + "username": "Rilliat", + "email": "rilliatserver@gmail.com", + "telegram": "rilliat.t.me" + }, + "records": { + "URL": "https://www.rilliat.ru" + } +} diff --git a/domains/rimiko.json b/domains/rimiko.json index 08ca11972..3cfa66778 100644 --- a/domains/rimiko.json +++ b/domains/rimiko.json @@ -1,10 +1,9 @@ { "owner": { "username": "79SUBTEAM", - "discord": "857448863891849247", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pIJwTKdfCZRWotu5ZYXOkqkRae5PDRRq74pniHDC-XdIMSYOpn81gpuMZLyFLEkYPDWwo1P6xfZVudT0F0IXHv-HbyAu-4yov8hZoQ56_QAp2AuCTFcGr1qRSW9_jqpg_C4-OyT_3J12GnIvuUlskfYmbtz50ThG9ar8xRF_H3Aa_9TuHE51NWD4YkEpmq6kDgtlxYk_0oqCEteuwpqAu-yFO-dDLfTmbIMlEYdOiWGPJYhuJahfiGx1I2-qTGloJZCiedqycUNyLnDG7yc7YVVMYWt1cJw_bSvuvto1pN5bKMA7dkX1RbJQ4_ZVtDSY84sTvd_ls4hDApNV5rhYjg.E17X2lWbPsX92huScUqJVQ.Ok9CpXBsUYTt5ZowBTp2dPU1ix1NftlMoH0sADvj-Hppt7qNZgewFySOD5Ylbj66ezn2K0TkD6r14Fr4M4VV-2vrB1roq-BAQFyp4boAEL0.NjIA92K2kLVedZLXbD4ZOQ" + "discord": "857448863891849247" }, - "record": { + "records": { "CNAME": "79subteam.github.io" } } diff --git a/domains/ririn.json b/domains/ririn.json index f278d785d..be3e7922c 100644 --- a/domains/ririn.json +++ b/domains/ririn.json @@ -7,7 +7,7 @@ "twitter": "ririnvieux_hq", "discord": "ririn_hq" }, - "record": { + "records": { "CNAME": "ririn-hq.github.io" } } diff --git a/domains/rishabh.json b/domains/rishabh.json new file mode 100644 index 000000000..fd1298e92 --- /dev/null +++ b/domains/rishabh.json @@ -0,0 +1,11 @@ +{ + "description": "Is a dev subdomain for rishabh", + "repo": "https://github.com/rishabhc/rishabhc.github.io", + "owner": { + "username": "rishabhc", + "email": "me@rishabh.ch" + }, + "records": { + "CNAME": "rishabhc.github.io" + } +} diff --git a/domains/rishika.json b/domains/rishika.json new file mode 100644 index 000000000..eefd168ba --- /dev/null +++ b/domains/rishika.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/rishika105/Portfolio-Website-React", + "owner": { + "username": "rishika105", + "email": "rishikaagarwal2316@gmail.com" + }, + "records": { + "URL": "https://portfolio-website-react-vert.vercel.app/" + } +} diff --git a/domains/rishub.json b/domains/rishub.json index 3b584a718..e69c17d5b 100644 --- a/domains/rishub.json +++ b/domains/rishub.json @@ -3,7 +3,7 @@ "username": "itsrishub", "email": "itsrishub@gmail.com" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/riskybotredirect.json b/domains/riskybotredirect.json index 35e65bcda..97ce7c639 100644 --- a/domains/riskybotredirect.json +++ b/domains/riskybotredirect.json @@ -5,7 +5,7 @@ "username": "RiskyMH", "discord": "RiskyMH#0182" }, - "record": { + "records": { "URL": "https://riskymh.github.io/RiskyBOT" } } diff --git a/domains/riskymh.json b/domains/riskymh.json index da084693b..305447e77 100644 --- a/domains/riskymh.json +++ b/domains/riskymh.json @@ -5,7 +5,7 @@ "username": "RiskyMH", "discord": "RiskyMH#0182" }, - "record": { + "records": { "URL": "https://riskymh.github.io", "MX": ["rocky.smtp-in.mailway.app", "peter.smtp-in.mailway.app"] } diff --git a/domains/riskymhredirect.json b/domains/riskymhredirect.json index 127f7c69e..fcb2de540 100644 --- a/domains/riskymhredirect.json +++ b/domains/riskymhredirect.json @@ -5,7 +5,7 @@ "username": "RiskyMH", "discord": "RiskyMH#0182" }, - "record": { + "records": { "URL": "https://riskymh.github.io" } } diff --git a/domains/riskyprsty.json b/domains/riskyprsty.json index a79f3f3e4..0087c820f 100644 --- a/domains/riskyprsty.json +++ b/domains/riskyprsty.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "riskyprsty" - }, - "record": { - "CNAME": "riskyprsty.github.io" - } -} + "owner": { + "username": "riskyprsty" + }, + "records": { + "CNAME": "riskyprsty.github.io" + } +} diff --git a/domains/risqiahmad.json b/domains/risqiahmad.json new file mode 100644 index 000000000..d3cf87536 --- /dev/null +++ b/domains/risqiahmad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "records": { + "CNAME": "nextjs-notion-starter-kit-transitive-bullshit.vercel.app" + } +} diff --git a/domains/risshi.json b/domains/risshi.json index 6866fe692..3b81997d8 100644 --- a/domains/risshi.json +++ b/domains/risshi.json @@ -5,7 +5,7 @@ "username": "codeRisshi25", "email": "risshirajsen@gmail.com" }, - "record": { + "records": { "CNAME": "coderisshi25.github.io" } } diff --git a/domains/ritam.json b/domains/ritam.json index d2875cf07..539e18cad 100644 --- a/domains/ritam.json +++ b/domains/ritam.json @@ -3,7 +3,7 @@ "username": "nxrmqlly", "email": "ritam@duck.com" }, - "record": { + "records": { "CNAME": "ritams-website.vercel.app" } } diff --git a/domains/ritesh.json b/domains/ritesh.json new file mode 100644 index 000000000..0abeff729 --- /dev/null +++ b/domains/ritesh.json @@ -0,0 +1,11 @@ +{ + "description": "For personal portfolio website.", + "repo": "https://github.com/riteshsargam/register", + "owner": { + "username": "riteshsargam", + "email": "ritesh.sargam00@gmail.com" + }, + "records": { + "CNAME": "riteshsargam.github.io" + } +} diff --git a/domains/rith.json b/domains/rith.json new file mode 100644 index 000000000..4b5539fd0 --- /dev/null +++ b/domains/rith.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rithb898", + "email": "rithb2004@gmail.com" + }, + "records": { + "CNAME": "rith-portfolio-next-js.vercel.app" + } +} diff --git a/domains/rithinjose.json b/domains/rithinjose.json index 04cf0f931..3b1121552 100644 --- a/domains/rithinjose.json +++ b/domains/rithinjose.json @@ -5,7 +5,7 @@ "username": "rithin-jose", "twitter": "rithinja" }, - "record": { + "records": { "CNAME": "rithin-jose.github.io" } } diff --git a/domains/ritshu.json b/domains/ritshu.json index 9e300228b..09b7f4eac 100644 --- a/domains/ritshu.json +++ b/domains/ritshu.json @@ -4,7 +4,7 @@ "discord": "216282035503890442", "email": "ritshu.dev@gmail.com" }, - "record": { + "records": { "CNAME": "ritshu.github.io" } } diff --git a/domains/ritwick2006.json b/domains/ritwick2006.json index 5ab1790e8..b7045c6da 100644 --- a/domains/ritwick2006.json +++ b/domains/ritwick2006.json @@ -1,11 +1,10 @@ { "description": "Ritwick's website", - "repo": "https://github.com/BOTDEV123", "owner": { "username": "BOTDEV123", "email": "ritwick2006@hotmail.com" }, - "record": { + "records": { "CNAME": "ritwick2006.freecluster.eu" } } diff --git a/domains/riviox.json b/domains/riviox.json index 50988fba9..abf44ff5a 100644 --- a/domains/riviox.json +++ b/domains/riviox.json @@ -6,7 +6,7 @@ "email": "rivioxyt@hotmail.com", "twitter": "riviox40451" }, - "record": { + "records": { "CNAME": "riviox.github.io" } } diff --git a/domains/rivos.json b/domains/rivos.json index 16975534a..30344055b 100644 --- a/domains/rivos.json +++ b/domains/rivos.json @@ -5,7 +5,7 @@ "username": "rioovs", "email": "riooktaviansyah36@gmail.com" }, - "record": { + "records": { "CNAME": "rioovs.github.io" } } diff --git a/domains/riya.json b/domains/riya.json index 8eb507a88..8d92c94c8 100644 --- a/domains/riya.json +++ b/domains/riya.json @@ -6,7 +6,7 @@ "email": "riyaroy2086@gmal.com", "discord": "ROY#1369" }, - "record": { + "records": { "CNAME": "riyaroy2086.github.io" } } diff --git a/domains/rizky.json b/domains/rizky.json index c133261c9..6bbe48ad0 100644 --- a/domains/rizky.json +++ b/domains/rizky.json @@ -3,7 +3,7 @@ "username": "schummler", "email": "markwilkens102@gmail.com" }, - "record": { + "records": { "CNAME": "schummler.github.io" } } diff --git a/domains/rizkykr.json b/domains/rizkykr.json new file mode 100644 index 000000000..d45089b64 --- /dev/null +++ b/domains/rizkykr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rizkykr", + "email": "me@rizkykr.com" + }, + "description": "Personal Website for Personal Branding", + "records": { + "CNAME": "rizkykr-is-a-dev.rizkykr.workers.dev" + }, + "proxied": false +} diff --git a/domains/rizmyabdulla.json b/domains/rizmyabdulla.json index dfc7c6d6a..204de6fda 100644 --- a/domains/rizmyabdulla.json +++ b/domains/rizmyabdulla.json @@ -6,7 +6,7 @@ "email": "rizmyabdulla@gmail.com", "twitter": "_rizmyabdulla" }, - "record": { + "records": { "CNAME": "rizmyabdulla.github.io" } } diff --git a/domains/rizqi.json b/domains/rizqi.json new file mode 100644 index 000000000..60d6c9139 --- /dev/null +++ b/domains/rizqi.json @@ -0,0 +1,11 @@ +{ + "description": "Portofolio Website.", + "repo": "https://github.com/RizqiSeijuuro/portfolio", + "owner": { + "username": "RizqiSeijuuro", + "email": "rizqiansyah52@gmail.com" + }, + "records": { + "CNAME": "rizqiseijuuro.github.io" + } +} diff --git a/domains/rizvan.json b/domains/rizvan.json index f156e0e1d..1841d7027 100644 --- a/domains/rizvan.json +++ b/domains/rizvan.json @@ -3,7 +3,7 @@ "username": "MRizvank", "email": "rizvankurungattil@gmail.com" }, - "record": { + "records": { "CNAME": "mrizvank.github.io" } } diff --git a/domains/rizz.json b/domains/rizz.json index 8d131c18a..a274080a9 100644 --- a/domains/rizz.json +++ b/domains/rizz.json @@ -3,7 +3,8 @@ "username": "bananaking6", "discord": "skibidibagel" }, - "record": { - "CNAME": "skibidi-2.vercel.app" + + "records": { + "CNAME": "bananaking6.github.io" } } diff --git a/domains/rjk.json b/domains/rjk.json index ed968c532..3d4a82db7 100644 --- a/domains/rjk.json +++ b/domains/rjk.json @@ -6,7 +6,7 @@ "email": "r.khan13245@kgs.edu.pk", "twitter": "Rayyan Jamil Khan" }, - "record": { + "records": { "CNAME": "rayyanjkhan.github.io" } } diff --git a/domains/rk.json b/domains/rk.json new file mode 100644 index 000000000..bac261a67 --- /dev/null +++ b/domains/rk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohankokkula", + "email": "rohankokkula01@gmail.com" + }, + "records": { + "URL": "https://rohankokkula.dev/" + } +} diff --git a/domains/rl.json b/domains/rl.json index 15decbe89..9f4b089e2 100644 --- a/domains/rl.json +++ b/domains/rl.json @@ -3,7 +3,7 @@ "username": "Rylazius", "email": "nodejsenjoyer@gmail.com" }, - "record": { + "records": { "CNAME": "rylazius.github.io" } } diff --git a/domains/rlewsley.json b/domains/rlewsley.json index 2421bccb7..2ebea3813 100644 --- a/domains/rlewsley.json +++ b/domains/rlewsley.json @@ -3,7 +3,7 @@ "username": "lewsley-r", "email": "lewsley-r@ulster.ac.uk" }, - "record": { + "records": { "CNAME": "lewsley-r.github.io" } } diff --git a/domains/rllanonymous.json b/domains/rllanonymous.json index 2cd7809e1..8a3d57c4a 100644 --- a/domains/rllanonymous.json +++ b/domains/rllanonymous.json @@ -5,7 +5,7 @@ "username": "RLLanonymous", "email": "ethanweirich31@gmail.com" }, - "record": { + "records": { "CNAME": "rllanonymous.github.io" } } diff --git a/domains/rlx.json b/domains/rlx.json index 1fa2dbd7f..ef0bb9ba6 100644 --- a/domains/rlx.json +++ b/domains/rlx.json @@ -5,7 +5,7 @@ "username": "RLX-OP", "email": "contactrlxop@gmail.com" }, - "record": { + "records": { "CNAME": "rlx-op.github.io" } } diff --git a/domains/rmd.json b/domains/rmd.json index 487691945..90ab943eb 100644 --- a/domains/rmd.json +++ b/domains/rmd.json @@ -5,7 +5,7 @@ "username": "danknessdra", "email": "danknessdra@gmail.com" }, - "record": { + "records": { "CNAME": "danknessdra.github.io" } } diff --git a/domains/rnv.json b/domains/rnv.json index ebb006b8d..f3a658db1 100644 --- a/domains/rnv.json +++ b/domains/rnv.json @@ -3,7 +3,7 @@ "username": "ZeroDeaths379", "email": "arnavp651@gmail.com" }, - "record": { + "records": { "CNAME": "zerodeaths379-github-io.pages.dev" } } diff --git a/domains/ro.json b/domains/ro.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/ro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/roadblocked.json b/domains/roadblocked.json index a7ec114de..fc339d381 100644 --- a/domains/roadblocked.json +++ b/domains/roadblocked.json @@ -3,7 +3,7 @@ "username": "roadblockeddev", "email": "roadblocked@skiff.com" }, - "record": { + "records": { "CNAME": "roadblocked.github.io" } } diff --git a/domains/rob.json b/domains/rob.json index 18472a335..bb4e39e0c 100644 --- a/domains/rob.json +++ b/domains/rob.json @@ -5,7 +5,7 @@ "username": "melroser", "email": "biz@eml.cc" }, - "record": { + "records": { "CNAME": "melroser.github.io" } } diff --git a/domains/robertvas.json b/domains/robertvas.json index e5896a5b7..14e3033b0 100644 --- a/domains/robertvas.json +++ b/domains/robertvas.json @@ -4,7 +4,7 @@ "username": "robertvas", "email": "robtechtester@gmail.com" }, - "record": { + "records": { "CNAME": "robertvas.serv00.net" }, "proxied": false diff --git a/domains/robin.json b/domains/robin.json new file mode 100644 index 000000000..14ba9d18c --- /dev/null +++ b/domains/robin.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/RobinJesba/robinjesba.github.io", + "owner": { + "username": "RobinJesba", + "email": "jb.robinm@gmail.com" + }, + "records": { + "CNAME": "robinjesba.github.io" + } +} diff --git a/domains/robot.json b/domains/robot.json new file mode 100644 index 000000000..7b9d3f592 --- /dev/null +++ b/domains/robot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ROBOTofficial", + "email": "robot@thunlights.com" + }, + "records": { + "URL": "https://github.com/ROBOTofficial" + } +} diff --git a/domains/robsd.json b/domains/robsd.json index 332cbbae0..362481d7a 100644 --- a/domains/robsd.json +++ b/domains/robsd.json @@ -3,7 +3,7 @@ "username": "robsd", "email": "rob@robertd.co.uk" }, - "record": { + "records": { "CNAME": "robsd.pages.dev" } } diff --git a/domains/robson.json b/domains/robson.json index a0b921412..e085214c7 100644 --- a/domains/robson.json +++ b/domains/robson.json @@ -3,7 +3,7 @@ "username": "imrob-s", "email": "orobsilva@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/imrob-s" } } diff --git a/domains/rocky.json b/domains/rocky.json index 121ad2994..5c6f5a831 100644 --- a/domains/rocky.json +++ b/domains/rocky.json @@ -3,7 +3,7 @@ "username": "PRODEFIX", "email": "prodefix.ytb@gmail.com" }, - "record": { + "records": { "CNAME": "statuspage.betteruptime.com" } } diff --git a/domains/rodolfo.json b/domains/rodolfo.json new file mode 100644 index 000000000..56de0409d --- /dev/null +++ b/domains/rodolfo.json @@ -0,0 +1,11 @@ +{ + "description": "Rodolfo Rodrigues developer page", + "repo": "https://github.com/rudwolf/rudwolf.github.io", + "owner": { + "username": "rudwolf", + "email": "rudwolf@gmail.com" + }, + "records": { + "CNAME": "rudwolf.github.io" + } +} diff --git a/domains/roei.json b/domains/roei.json new file mode 100644 index 000000000..78632b5f4 --- /dev/null +++ b/domains/roei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roei111", + "email": "roeiyaacobi@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/roger.json b/domains/roger.json new file mode 100644 index 000000000..d73527174 --- /dev/null +++ b/domains/roger.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/rogerHuntGauntlet/registerisadev", + "owner": { + "username": "rogerHuntGauntlet", + "email": "regorhunt02052@gmail.com", + "discord": "roger_jgs404040" + }, + "records": { + "CNAME": "rogerbhuntiii.vercel.app" + } +} diff --git a/domains/rogo.json b/domains/rogo.json new file mode 100644 index 000000000..923f9fc8f --- /dev/null +++ b/domains/rogo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BenRogozinski", + "discord": "BenDaBuilder", + "email": "brogodev@gmail.com" + }, + "records": { + "A": ["5.161.233.190"], + "AAAA": ["2a01:4ff:f0:dd7c::1"] + } +} diff --git a/domains/rohan-codes.json b/domains/rohan-codes.json new file mode 100644 index 000000000..721100066 --- /dev/null +++ b/domains/rohan-codes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khuranajordan", + "email": "rohankhurana20@gmail.com" + }, + "records": { + "CNAME": "khuranajordan.github.io" + } +} diff --git a/domains/rohan.json b/domains/rohan.json index 832a60dac..70882e7e8 100644 --- a/domains/rohan.json +++ b/domains/rohan.json @@ -1,11 +1,10 @@ { "description": "Rohan's devlog and portfolio", - "repo": "https://github.com/rohan-bansal", "owner": { "username": "Rohan-Bansal", "email": "rohan@rbansal.dev" }, - "record": { + "records": { "URL": "https://rbansal.dev" } } diff --git a/domains/rohandacoder.json b/domains/rohandacoder.json index 0dd426990..47e29f7b6 100644 --- a/domains/rohandacoder.json +++ b/domains/rohandacoder.json @@ -4,7 +4,7 @@ "email": "RohanBmgo2010@gmail.com", "discord": "922419431508938773" }, - "record": { + "records": { "CNAME": "rohandacoder.github.io" } } diff --git a/domains/rohanjaiswal.json b/domains/rohanjaiswal.json new file mode 100644 index 000000000..408e1969e --- /dev/null +++ b/domains/rohanjaiswal.json @@ -0,0 +1,11 @@ +{ + "description": "Rohan Jaiswal's portfolio", + "repo": "https://github.com/jaiswalrohan8796/jaiswalrohan8796", + "owner": { + "username": "jaiswalrohan8796", + "email": "jaiswalrohan8796@gmail.com" + }, + "records": { + "CNAME": "jaiswalrohan8796.github.io" + } +} diff --git a/domains/rohanpawar.json b/domains/rohanpawar.json index 1cc2d1e35..d7f51d4d0 100644 --- a/domains/rohanpawar.json +++ b/domains/rohanpawar.json @@ -3,7 +3,7 @@ "username": "r04nx", "email": "rohanprakashpawar2005@gmail.com" }, - "record": { + "records": { "CNAME": "r04nx.github.io" } } diff --git a/domains/rohansharma.json b/domains/rohansharma.json index ef886d53b..41240a178 100644 --- a/domains/rohansharma.json +++ b/domains/rohansharma.json @@ -3,7 +3,7 @@ "username": "rohansharma-developer", "email": "rohansharma.developer@gmail.com" }, - "record": { + "records": { "URL": "https://rohansharma.me" } } diff --git a/domains/rohit-sony.json b/domains/rohit-sony.json index 34157977f..89fb6b99e 100644 --- a/domains/rohit-sony.json +++ b/domains/rohit-sony.json @@ -4,7 +4,7 @@ "owner": { "username": "rohit-sony" }, - "record": { + "records": { "CNAME": "rohit-sony.github.io" } } diff --git a/domains/rohit.json b/domains/rohit.json index 01021bfdc..37da425de 100644 --- a/domains/rohit.json +++ b/domains/rohit.json @@ -6,7 +6,7 @@ "email": "rohit9804singh@gmail.com", "twitter": "rohitstwts" }, - "record": { + "records": { "CNAME": "rohit-sama.github.io" } } diff --git a/domains/rohitgunthal.json b/domains/rohitgunthal.json new file mode 100644 index 000000000..8bdc3dffd --- /dev/null +++ b/domains/rohitgunthal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohitgunthal18", + "email": "rohitgunthal1819@gmail.com" + }, + "records": { + "CNAME": "rohitgunthal18.github.io" + } +} diff --git a/domains/rohith-jv.json b/domains/rohith-jv.json index 4ba84944c..08348ea18 100644 --- a/domains/rohith-jv.json +++ b/domains/rohith-jv.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "0mnichan" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "0mnichan" + }, + "records": { + "A": ["75.2.60.5"] + } } diff --git a/domains/rohith.json b/domains/rohith.json index a01a24b8e..34a9e6dbc 100644 --- a/domains/rohith.json +++ b/domains/rohith.json @@ -1,11 +1,10 @@ { "description": "Rohith's personal website", - "repo": "https://github.com/rohithp7777", "owner": { "username": "rohithp7777", "email": "rohithp8899@gmail.com" }, - "record": { + "records": { "CNAME": "rohith-1c974.web.app" } } diff --git a/domains/rohithborana.json b/domains/rohithborana.json new file mode 100644 index 000000000..42745dec0 --- /dev/null +++ b/domains/rohithborana.json @@ -0,0 +1,11 @@ +{ + "description": "Rohith's personal website", + "repo": "https://github.com/therohithborana/portfolio", + "owner": { + "username": "therohithborana", + "email": "boranarohith07@gmail.com" + }, + "records": { + "CNAME": "therohithborana.vercel.app" + } +} diff --git a/domains/rohithill.json b/domains/rohithill.json index cd4fd2418..1b54b2012 100644 --- a/domains/rohithill.json +++ b/domains/rohithill.json @@ -5,7 +5,7 @@ "username": "rohithill", "email": "truezeroxy@gmail.com" }, - "record": { + "records": { "CNAME": "rohithill.github.io" } } diff --git a/domains/rohithkumar.json b/domains/rohithkumar.json index 3c15206b9..cf28758c1 100644 --- a/domains/rohithkumar.json +++ b/domains/rohithkumar.json @@ -1,11 +1,10 @@ { "description": "My Personal Website", - "repo": "https://github.com/killTheDB", "owner": { "username": "killTheDB", "email": "jayanarohith7@gmail.com" }, - "record": { + "records": { "CNAME": "killthedb.github.io" } } diff --git a/domains/rohitkaushal.json b/domains/rohitkaushal.json index d7d05366c..16a2e09c0 100644 --- a/domains/rohitkaushal.json +++ b/domains/rohitkaushal.json @@ -5,7 +5,7 @@ "username": "RohitKaushal7", "email": "rohitkk252550@gmail.com" }, - "record": { + "records": { "CNAME": "rohitkaushal7.github.io" } } diff --git a/domains/roig.json b/domains/roig.json index ae9ecd76e..6076a0134 100644 --- a/domains/roig.json +++ b/domains/roig.json @@ -1,11 +1,10 @@ { "description": "Roig's website", - "repo": "https://github.com/groig", "owner": { "username": "groig", "email": "groig@protonmail.com" }, - "record": { + "records": { "A": ["152.206.177.19"] } } diff --git a/domains/roj.json b/domains/roj.json index 8e7e29e7e..700860bd3 100644 --- a/domains/roj.json +++ b/domains/roj.json @@ -5,7 +5,7 @@ "email": "ez@roj.im", "twitter": "roj1512" }, - "record": { + "records": { "URL": "https://roj.im" } } diff --git a/domains/roki.json b/domains/roki.json new file mode 100644 index 000000000..306d48e14 --- /dev/null +++ b/domains/roki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Roki100", + "discord": "289479495444987904" + }, + "records": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/roktim.json b/domains/roktim.json index 787ed3d21..826ab4782 100644 --- a/domains/roktim.json +++ b/domains/roktim.json @@ -3,7 +3,7 @@ "username": "roktim32", "email": "roktimsenapoty2@gmail.com" }, - "record": { + "records": { "CNAME": "roktim32.github.io" } } diff --git a/domains/rom.json b/domains/rom.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/rom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/roma.json b/domains/roma.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/roma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/roman.json b/domains/roman.json new file mode 100644 index 000000000..17926910b --- /dev/null +++ b/domains/roman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "records": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/romero.json b/domains/romero.json new file mode 100644 index 000000000..0d7dd8433 --- /dev/null +++ b/domains/romero.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "helloromero", + "email": "hello@helloromero.co.uk" + }, + "records": { + "CNAME": "helloromero.co.uk" + } +} diff --git a/domains/romi.json b/domains/romi.json index 03be9e655..05118a442 100644 --- a/domains/romi.json +++ b/domains/romi.json @@ -5,7 +5,7 @@ "username": "leuthra", "email": "romi49610@gmail.com" }, - "record": { + "records": { "CNAME": "leuthra.github.io" } } diff --git a/domains/romidev.json b/domains/romidev.json index 958b38ced..ed797caae 100644 --- a/domains/romidev.json +++ b/domains/romidev.json @@ -3,7 +3,7 @@ "username": "Leuthra", "email": "romidev20@gmail.com" }, - "record": { + "records": { "URL": "https://portfolio-rominaru.vercel.app" } } diff --git a/domains/romzyytv.json b/domains/romzyytv.json index 4c2e01f57..879c4c40e 100644 --- a/domains/romzyytv.json +++ b/domains/romzyytv.json @@ -5,7 +5,7 @@ "username": "RomzyyTV", "email": "jesaisqpaspourquoi@gmail.com" }, - "record": { + "records": { "CNAME": "romzyytv.github.io" } } diff --git a/domains/ron.json b/domains/ron.json index 00d554fcb..745f8b6d4 100644 --- a/domains/ron.json +++ b/domains/ron.json @@ -3,7 +3,7 @@ "username": "itsrn", "email": "shalom@itsron.space" }, - "record": { + "records": { "CNAME": "itsrn.github.io" } } diff --git a/domains/ronak.json b/domains/ronak.json index 5877585fc..a7f0e17d2 100644 --- a/domains/ronak.json +++ b/domains/ronak.json @@ -4,7 +4,7 @@ "email": "ronakdutta100@gmail.com", "discord": "755751261357473803" }, - "record": { + "records": { "CNAME": "ronakdutta.github.io" } } diff --git a/domains/ronaldo.json b/domains/ronaldo.json new file mode 100644 index 000000000..c3107cae1 --- /dev/null +++ b/domains/ronaldo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ronaldoao", + "email": "ronaldoa.ojeda@gmail.com" + }, + "records": { + "CNAME": "vite-react-ronaldos-projects-c3f1d8be.vercel.app" + } +} diff --git a/domains/ronalds1398.json b/domains/ronalds1398.json index 1af5c5f9e..763d880b9 100644 --- a/domains/ronalds1398.json +++ b/domains/ronalds1398.json @@ -4,7 +4,7 @@ "email": "ronalds1398@gmail.com", "discord": "ronaldino1398" }, - "record": { + "records": { "CNAME": "ronalds-website.pages.dev" } } diff --git a/domains/ronan696.json b/domains/ronan696.json index 3e4631b95..a48340ec9 100644 --- a/domains/ronan696.json +++ b/domains/ronan696.json @@ -3,7 +3,7 @@ "username": "ronan696", "email": "ronan696@gmail.com" }, - "record": { + "records": { "CNAME": "ronan696.github.io" } } diff --git a/domains/ronit.json b/domains/ronit.json index a1d74e8eb..243fa9c5c 100644 --- a/domains/ronit.json +++ b/domains/ronit.json @@ -3,7 +3,7 @@ "username": "iamrony777", "email": "iamrony777@pm.me" }, - "record": { + "records": { "CNAME": "iamrony777.github.io" } } diff --git a/domains/ronnie.json b/domains/ronnie.json index 6a75763e1..1f0a87090 100644 --- a/domains/ronnie.json +++ b/domains/ronnie.json @@ -3,7 +3,7 @@ "username": "NukeJS", "email": "me@nukejs.dev" }, - "record": { + "records": { "CNAME": "nukejs.dev" } } diff --git a/domains/ronnieaban.json b/domains/ronnieaban.json new file mode 100644 index 000000000..ec6cc51bf --- /dev/null +++ b/domains/ronnieaban.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ronnieaban", + "email": "ronnieaban@gmail.com" + }, + "records": { + "CNAME": "ronnieaban.pages.dev" + } +} diff --git a/domains/rony.json b/domains/rony.json index 816782e58..e876d63fe 100644 --- a/domains/rony.json +++ b/domains/rony.json @@ -3,14 +3,8 @@ "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": { + "description": "This is going to be my portfolio", + "records": { "CNAME": "ronylee11.github.io" } } diff --git a/domains/roobini-gamer.json b/domains/roobini-gamer.json index 53a7465aa..a3c7706bf 100644 --- a/domains/roobini-gamer.json +++ b/domains/roobini-gamer.json @@ -3,7 +3,7 @@ "username": "roobini-gamer", "email": "roobini.hamza@yandex.com" }, - "record": { + "records": { "URL": "https://roobini-gamer.github.io/Roobini-hamza" } } diff --git a/domains/room.julian.json b/domains/room.julian.json index 9c2c441e2..62ee2f276 100644 --- a/domains/room.julian.json +++ b/domains/room.julian.json @@ -3,7 +3,7 @@ "username": "getSono", "email": "sono.arbeit@gmail.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/rootcircle.json b/domains/rootcircle.json index 52b366972..b43759704 100644 --- a/domains/rootcircle.json +++ b/domains/rootcircle.json @@ -3,7 +3,7 @@ "username": "rootCircle", "email": "dev.frolics@gmail.com" }, - "record": { + "records": { "CNAME": "rootcircle.github.io" } } diff --git a/domains/rooyca.json b/domains/rooyca.json index d1bf237d9..8468fb80f 100644 --- a/domains/rooyca.json +++ b/domains/rooyca.json @@ -3,7 +3,7 @@ "username": "Rooyca", "email": "rooyca@gmail.com" }, - "record": { + "records": { "URL": "https://rooyca.github.io/portfolio/" } } diff --git a/domains/roque.json b/domains/roque.json new file mode 100644 index 000000000..fee4dd204 --- /dev/null +++ b/domains/roque.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "luisfroquez", + "email": "luisfroque@gmail.com", + "discord": "lroque.dev" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/rorosin.json b/domains/rorosin.json index e61a5235a..16c09c75f 100644 --- a/domains/rorosin.json +++ b/domains/rorosin.json @@ -3,7 +3,7 @@ "username": "rorosin", "email": "rosin886@gmail.com" }, - "record": { + "records": { "CNAME": "ru.ardev.tk" } } diff --git a/domains/rose1440.json b/domains/rose1440.json index ddb09df79..2dec7feaf 100644 --- a/domains/rose1440.json +++ b/domains/rose1440.json @@ -4,7 +4,7 @@ "email": "ferkomrkvicka3456@gmail.com", "discord": "832603218223431710" }, - "record": { + "records": { "CNAME": "rocketlauncher21.github.io" } } diff --git a/domains/roshan.json b/domains/roshan.json index 6ca21a0e2..510755e7e 100644 --- a/domains/roshan.json +++ b/domains/roshan.json @@ -1,12 +1,13 @@ { "description": "Personal portfolio", - "repo": "https://github.com/roshan1337d/roshan1337d.github.io", "owner": { - "username": "roshan1337d", - "email": "roshan1337x@gmail.com", - "twitter": "roshan1337d" + "username": "roshan1885", + "discord": "roshan1885" }, - "record": { - "CNAME": "roshan1337d.github.io" - } + "records": { + "CNAME": "roshan1885.github.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + }, + "proxied": true } diff --git a/domains/roshangm.json b/domains/roshangm.json new file mode 100644 index 000000000..62fd2467f --- /dev/null +++ b/domains/roshangm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roshangm1", + "email": "roshan@brainants.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/roshansahani.json b/domains/roshansahani.json new file mode 100644 index 000000000..d91d22302 --- /dev/null +++ b/domains/roshansahani.json @@ -0,0 +1,11 @@ +{ + "description": "Portofolio Website", + "repo": "https://github.com/felixop7/Portfolio", + "owner": { + "username": "felixop7", + "email": "roshansahani226@gmail.com" + }, + "records": { + "CNAME": "felixop7.github.io" + } +} diff --git a/domains/rouf0x.json b/domains/rouf0x.json index 47555a910..d28af25e0 100644 --- a/domains/rouf0x.json +++ b/domains/rouf0x.json @@ -1,10 +1,9 @@ { "owner": { "username": "Rouf0x", - "email": "gabriel.ruf@gmail.com", "discord": "790712104058617876" }, - "record": { + "records": { "CNAME": "rouf0x.github.io" } } diff --git a/domains/roufox.json b/domains/roufox.json index 653875194..78304b8f2 100644 --- a/domains/roufox.json +++ b/domains/roufox.json @@ -1,10 +1,9 @@ { "owner": { "username": "Rouf0x", - "email": "gabriel.ruf@gmail.com", "discord": "790712104058617876" }, - "record": { + "records": { "URL": "https://rouf0x.is-a.dev/" } } diff --git a/domains/rowan.json b/domains/rowan.json index d8f20d1fe..b510d0ca5 100644 --- a/domains/rowan.json +++ b/domains/rowan.json @@ -3,7 +3,7 @@ "username": "Rowaaaaan", "email": "randornam@protonmail.com" }, - "record": { + "records": { "CNAME": "rowaaaaan.github.io" } } diff --git a/domains/roxza.json b/domains/roxza.json index 2e8462185..b02791a12 100644 --- a/domains/roxza.json +++ b/domains/roxza.json @@ -6,7 +6,7 @@ "email": "me@roxza.me", "discord": "Roxza#0002" }, - "record": { + "records": { "URL": "https://roxza.me" } } diff --git a/domains/roy.json b/domains/roy.json index f1cebff9b..e11fdf6b4 100644 --- a/domains/roy.json +++ b/domains/roy.json @@ -5,7 +5,7 @@ "username": "rcrj", "email": "rcrj95@gmail.com" }, - "record": { + "records": { "CNAME": "rcrj.github.io" } } diff --git a/domains/royalty.json b/domains/royalty.json index 8976d0857..1a1f338d9 100644 --- a/domains/royalty.json +++ b/domains/royalty.json @@ -5,7 +5,7 @@ "username": "hisRoyalty", "email": "hisroyal.baguette@gmail.com" }, - "record": { + "records": { "CNAME": "hisroyalty.github.io" } } diff --git a/domains/roydon.json b/domains/roydon.json index b1730c21b..b0aab7820 100644 --- a/domains/roydon.json +++ b/domains/roydon.json @@ -1,11 +1,10 @@ { "description": "URL forwarder", - "repo": "https://github.com/roydondsouza", "owner": { "username": "roydondsouza", "twitter": "roydondsouza" }, - "record": { + "records": { "CNAME": "roydondsouza.github.io" } } diff --git a/domains/roydondsouza.json b/domains/roydondsouza.json index b2a3a0488..3ac571933 100644 --- a/domains/roydondsouza.json +++ b/domains/roydondsouza.json @@ -1,11 +1,10 @@ { "description": "URL forwarder", - "repo": "https://github.com/roydondsouza", "owner": { "username": "roydondsouza", "twitter": "roydondsouza" }, - "record": { + "records": { "URL": "https://www.roydondsouza.com" } } diff --git a/domains/roylee0704.json b/domains/roylee0704.json new file mode 100644 index 000000000..82e360911 --- /dev/null +++ b/domains/roylee0704.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roylee0704", + "email": "roylee0704@gmail.com" + }, + "records": { + "CNAME": "roylee0704.github.io" + } +} diff --git a/domains/rozay.json b/domains/rozay.json index fdf7df567..5ba6417fd 100644 --- a/domains/rozay.json +++ b/domains/rozay.json @@ -3,7 +3,7 @@ "username": "the-decentralizer", "email": "rozayhere@protonmail.com" }, - "record": { + "records": { "URL": "https://buidlguidl.com/build/uf8PWvVh1UAaXevKwoZb" } } diff --git a/domains/rpadrell.json b/domains/rpadrell.json new file mode 100644 index 000000000..36b151a22 --- /dev/null +++ b/domains/rpadrell.json @@ -0,0 +1,11 @@ +{ + "description": "Roger Padrell's portfolio website", + "repo": "https://github.com/roger-padrell/me", + "owner": { + "username": "roger-padrell", + "email": "padrell.roger@gmail.com" + }, + "records": { + "CNAME": "roger-padrell.github.io" + } +} diff --git a/domains/rpi.crazymax.json b/domains/rpi.crazymax.json index 05ad07555..71faac62b 100644 --- a/domains/rpi.crazymax.json +++ b/domains/rpi.crazymax.json @@ -3,7 +3,7 @@ "username": "Crazy-Max-Blog", "email": "Crazy-Max-2011@yandex.ru" }, - "record": { + "records": { "URL": "https://Crazy-Max-Blog.github.io/rpi/" } } diff --git a/domains/rpj.json b/domains/rpj.json index fbca836bd..d66451835 100644 --- a/domains/rpj.json +++ b/domains/rpj.json @@ -6,7 +6,7 @@ "email": "singhripunjay09@gmail.com", "twitter": "rpj09" }, - "record": { + "records": { "CNAME": "rpj09.github.io" } } diff --git a/domains/rqtl.json b/domains/rqtl.json index aea3b79a1..5847a73d5 100644 --- a/domains/rqtl.json +++ b/domains/rqtl.json @@ -3,7 +3,7 @@ "username": "ItsRqtl", "email": "itsrqtl@gmail.com" }, - "record": { + "records": { "URL": "https://www.youtube.com/itsrqtl" } } diff --git a/domains/rrcoder0167.json b/domains/rrcoder0167.json index e0845d7b8..210aeadaa 100644 --- a/domains/rrcoder0167.json +++ b/domains/rrcoder0167.json @@ -4,7 +4,7 @@ "email": "riddhiman.rana@gmail.com", "discord": "870936028108705803" }, - "record": { + "records": { "CNAME": "website-f4e.pages.dev" } } diff --git a/domains/rrrokhtar.json b/domains/rrrokhtar.json index 290628eb0..dd408627a 100644 --- a/domains/rrrokhtar.json +++ b/domains/rrrokhtar.json @@ -6,7 +6,7 @@ "email": "rrrokhtar@gmail.com", "twitter": "rrrokhtar" }, - "record": { + "records": { "CNAME": "rrrokhtar.github.io" } } diff --git a/domains/rt10.json b/domains/rt10.json index c7bc0496d..ce4ef7dc1 100644 --- a/domains/rt10.json +++ b/domains/rt10.json @@ -4,11 +4,12 @@ "username": "QuinceTart10", "discord": "862644161156218891" }, - "record": { + "records": { "MX": [ "6a43ddd802fc27e4.mx1.emailprofi.seznam.cz", "6a43ddd802fc27e4.mx2.emailprofi.seznam.cz" ], - "TXT": "v=spf1 include:spf.seznam.cz ~all" + "TXT": "v=spf1 include:spf.seznam.cz ~all", + "URL": "https://quincetart10.is-a.dev" } } diff --git a/domains/ruben.json b/domains/ruben.json index bf0d80a2f..6c582d4c6 100644 --- a/domains/ruben.json +++ b/domains/ruben.json @@ -3,7 +3,7 @@ "username": "RubenFilipe07", "email": "rubenfilipe.net@gmail.com" }, - "record": { + "records": { "URL": "https://ruben-filipe.web.app" } } diff --git a/domains/rubensalinas.json b/domains/rubensalinas.json index c3fbe54c4..de611f239 100644 --- a/domains/rubensalinas.json +++ b/domains/rubensalinas.json @@ -3,7 +3,7 @@ "username": "rubensalinas", "email": "ruben.asg@gmail.com" }, - "record": { + "records": { "A": ["154.53.55.74"] } } diff --git a/domains/rubenvilchez.json b/domains/rubenvilchez.json new file mode 100644 index 000000000..746360491 --- /dev/null +++ b/domains/rubenvilchez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "whiteThor", + "email": "rd.vilchez@gmail.com" + }, + "description": "Portfolio website for Ruben Vilchez showcasing projects and professional information.", + "records": { + "CNAME": "whitethor.github.io" + } +} diff --git a/domains/rubiin.json b/domains/rubiin.json index 839bab0b9..04efb21a4 100644 --- a/domains/rubiin.json +++ b/domains/rubiin.json @@ -5,7 +5,7 @@ "username": "rubiin", "email": "roobin.bhandari@gmail.com" }, - "record": { + "records": { "CNAME": "rubiin.github.io" } } diff --git a/domains/ruby.json b/domains/ruby.json index 0f00f2683..c9358d06b 100644 --- a/domains/ruby.json +++ b/domains/ruby.json @@ -6,7 +6,7 @@ "email": "rubii.is.cool@outlook.com", "discord": "669710912806060046" }, - "record": { + "records": { "CNAME": "hopefulruby.github.io" } } diff --git a/domains/ruchitawagh.json b/domains/ruchitawagh.json index ff42332a7..3b4155462 100644 --- a/domains/ruchitawagh.json +++ b/domains/ruchitawagh.json @@ -5,7 +5,7 @@ "username": "Roxie2003", "email": "ruchita03wagh@gmail.com" }, - "record": { + "records": { "CNAME": "roxie2003.github.io" } } diff --git a/domains/rudeus.json b/domains/rudeus.json new file mode 100644 index 000000000..f0df34739 --- /dev/null +++ b/domains/rudeus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dmquang", + "email": "mq.rudyy.08@gmai.com" + }, + "records": { + "CNAME": "dmquang.github.io" + } +} diff --git a/domains/rudra.json b/domains/rudra.json index c3b14d16e..57bfd089d 100644 --- a/domains/rudra.json +++ b/domains/rudra.json @@ -6,7 +6,7 @@ }, "description": "Domain for my personal portfolio written w/ Django & TailwindCSS", "repo": "https://github.com/FireHead90544/rudra-django", - "record": { + "records": { "A": ["20.219.132.8"] } } diff --git a/domains/rudy.json b/domains/rudy.json new file mode 100644 index 000000000..915732dba --- /dev/null +++ b/domains/rudy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lungustefan", + "email": "hi@lungustefan.ro", + "phone": "(+40) 0770618625", + "discord": "753179409682399332" + }, + "records": { + "NS": ["hattie.ns.cloudflare.com", "margo.ns.cloudflare.com"] + } +} diff --git a/domains/rufistofeles.json b/domains/rufistofeles.json new file mode 100644 index 000000000..ab94fed5d --- /dev/null +++ b/domains/rufistofeles.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rufistofeles", + "email": "rufistofeles@outlook.com" + }, + "records": { + "CNAME": "rufistofeles.github.io" + } +} diff --git a/domains/ruhailmir.json b/domains/ruhailmir.json index 7b951754f..45c59dd77 100644 --- a/domains/ruhailmir.json +++ b/domains/ruhailmir.json @@ -1,10 +1,9 @@ { "owner": { "username": "theksa11", - "discord": "698903860194050059", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZQKlwYrnAWRK7sAuLR4Cd44kqqztU6IFvNUPWwjx7hW0ULb_IanU4wDzZvhffu2CyYPqC-W1D-gXb74KYoQymH7f4KyaHy4lIJpFWfCvPzZbQkWXGIMb8MVqQa99C-V7gNRB9HD1celLW2YnR7t_RApLwAOYXS9Ff-K70a7Aw19ObVa1mlGuJfe9pqbIffiPSXDEjLY64kV1xA7Myg4BPuG_4knEWAhxn_rN5sYik7vlmyBhwkB1PN5PgXVEZU2DaqkZDW-mDvqmF8DMk1Or7EqwiHLWcyEuGEg0IWiyw9JXqovgf5B1Q6fboA8xElxoMKHZFtDt_ixSdqJaFmCg0g.hcw9SrmHCi-MJtKM0jewgg.xLnaKDh5UKD8po0HkZr4JJisQfWUOcDKLpjnzbEHDm3WhzxYAty9DGvzTTqmdJkNZtPnr3bFhsAdM5h7cbe2qYaS_OsVZwI4xh5kKGL95Mk.iKQYMmmX99baBPjAbW-9xw" + "discord": "698903860194050059" }, - "record": { + "records": { "CNAME": "ruhailmir.netlify.app" } } diff --git a/domains/ruixey.json b/domains/ruixey.json index 94162a7d8..0e7f82dc8 100644 --- a/domains/ruixey.json +++ b/domains/ruixey.json @@ -4,7 +4,7 @@ "email": "ruixey@gmail.com", "discord": "715464173617676369" }, - "record": { + "records": { "CNAME": "ruixey.github.io" } } diff --git a/domains/ruizo.json b/domains/ruizo.json index c6c111333..98d4dea8a 100644 --- a/domains/ruizo.json +++ b/domains/ruizo.json @@ -6,7 +6,7 @@ "email": "jermpro0@gmail.com", "twitter": "Mezeru" }, - "record": { + "records": { "CNAME": "mezeru.github.io" } } diff --git a/domains/rumesh.json b/domains/rumesh.json index ef2648bad..02d8d85c4 100644 --- a/domains/rumesh.json +++ b/domains/rumesh.json @@ -5,7 +5,7 @@ "username": "irumesh", "email": "irumesh.work@gmail.com" }, - "record": { + "records": { "CNAME": "irumesh.github.io" } } diff --git a/domains/rupankar.json b/domains/rupankar.json new file mode 100644 index 000000000..afdcd5db1 --- /dev/null +++ b/domains/rupankar.json @@ -0,0 +1,11 @@ +{ + "description": "A portfolio website", + "repo": "https://github.com/InvictusRex/InvictusRex.github.io", + "owner": { + "username": "InvictusRex", + "email": "rupankar.majumdar2023@vitstudent.ac.in" + }, + "records": { + "CNAME": "invictusrex.github.io" + } +} diff --git a/domains/rushabh.json b/domains/rushabh.json new file mode 100644 index 000000000..18c420dd8 --- /dev/null +++ b/domains/rushabh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rushabhcodes", + "email": "rushabhpatil.dev@gmail.com", + "discord": "_rushabh" + }, + "records": { + "CNAME": "rushabhpatil.vercel.app" + } +} diff --git a/domains/rushi.json b/domains/rushi.json index 22e7ed28c..e90ef66ab 100644 --- a/domains/rushi.json +++ b/domains/rushi.json @@ -3,10 +3,9 @@ "repo": "https://github.com/rushi0n/rushi0n.github.io", "owner": { "username": "rushi0n", - "email": "rushikushare99@gmail.com", - "twitter": "" + "email": "rushikushare99@gmail.com" }, - "record": { + "records": { "CNAME": "rushi0n.github.io" } } diff --git a/domains/rushil-patel.json b/domains/rushil-patel.json index 81e7e1448..a9fa6fd92 100644 --- a/domains/rushil-patel.json +++ b/domains/rushil-patel.json @@ -5,7 +5,7 @@ "username": "rushilp1", "email": "rushil.p1@ahduni.edu.in" }, - "record": { + "records": { "CNAME": "rushilp1.github.io" } } diff --git a/domains/rushil.json b/domains/rushil.json index 81e7e1448..a9fa6fd92 100644 --- a/domains/rushil.json +++ b/domains/rushil.json @@ -5,7 +5,7 @@ "username": "rushilp1", "email": "rushil.p1@ahduni.edu.in" }, - "record": { + "records": { "CNAME": "rushilp1.github.io" } } diff --git a/domains/rusiru.json b/domains/rusiru.json index 3f7d85882..96dc0fe81 100644 --- a/domains/rusiru.json +++ b/domains/rusiru.json @@ -5,7 +5,7 @@ "username": "sparkstark03", "email": "rusirurasanjana@gmail.com" }, - "record": { + "records": { "CNAME": "sparkstark03.github.io" } } diff --git a/domains/rusky.json b/domains/rusky.json index 71461d7b8..15af33750 100644 --- a/domains/rusky.json +++ b/domains/rusky.json @@ -4,7 +4,7 @@ "email": "iamayaanalee@gmail.com", "discord": "969507085316399154" }, - "record": { + "records": { "CNAME": "ruskydev.github.io" } } diff --git a/domains/rust.json b/domains/rust.json index 3c4996686..0b3c4464a 100644 --- a/domains/rust.json +++ b/domains/rust.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "URL": "https://rustroid.is-a.dev" } } diff --git a/domains/rustemb.json b/domains/rustemb.json index 136685f3c..a808a7328 100644 --- a/domains/rustemb.json +++ b/domains/rustemb.json @@ -5,7 +5,7 @@ "username": "rustemb", "email": "rustemb@systemli.org" }, - "record": { + "records": { "CNAME": "rustemb.github.io" } } diff --git a/domains/rustroid.json b/domains/rustroid.json index 8c13884f5..6cc1f9d97 100644 --- a/domains/rustroid.json +++ b/domains/rustroid.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "CNAME": "rustroid.pages.dev" } } diff --git a/domains/ruthless.json b/domains/ruthless.json index 9af329b2d..fc5821047 100644 --- a/domains/ruthless.json +++ b/domains/ruthless.json @@ -3,7 +3,7 @@ "username": "Ruthleeess", "email": "semikk.eu@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/rutkuli.json b/domains/rutkuli.json index c8bf0e089..ee368398f 100644 --- a/domains/rutkuli.json +++ b/domains/rutkuli.json @@ -5,7 +5,7 @@ "username": "Rutkuli", "email": "rutkuliofficial@gmail.com" }, - "record": { + "records": { "CNAME": "rutkuli.github.io" } } diff --git a/domains/ruu3f.json b/domains/ruu3f.json index 617168b42..f63c54506 100644 --- a/domains/ruu3f.json +++ b/domains/ruu3f.json @@ -3,7 +3,7 @@ "username": "Ruu3f", "discord": "Ruu3f#7942" }, - "record": { + "records": { "CNAME": "ruu3f.github.io" } } diff --git a/domains/rv178.json b/domains/rv178.json index cd0208a33..eef737362 100644 --- a/domains/rv178.json +++ b/domains/rv178.json @@ -5,7 +5,7 @@ "username": "rv178", "email": "idliyout@gmail.com" }, - "record": { + "records": { "CNAME": "rv178.github.io" } } diff --git a/domains/rvc11.json b/domains/rvc11.json index 1059afc61..4653e53bd 100644 --- a/domains/rvc11.json +++ b/domains/rvc11.json @@ -1,11 +1,11 @@ { - "description": "RedVelvetCake11's website", - "repo": "https://github.com/redvelvetcake11/redvelvetcake11.github.io", - "owner": { - "username": "redvelvetcake11", - "email": "membermadde.insiddev25120@hotmail.com" - }, - "record": { - "CNAME": "redvelvetcake11.github.io" - } + "description": "RedVelvetCake11's website", + "repo": "https://github.com/redvelvetcake11/redvelvetcake11.github.io", + "owner": { + "username": "redvelvetcake11", + "email": "membermadde.insiddev25120@hotmail.com" + }, + "records": { + "CNAME": "redvelvetcake11.github.io" + } } diff --git a/domains/rvsp.json b/domains/rvsp.json index 2a1b00c62..a35a47860 100644 --- a/domains/rvsp.json +++ b/domains/rvsp.json @@ -3,7 +3,7 @@ "username": "rvsp", "email": "pvenkat.rv@gmail.com" }, - "record": { + "records": { "CNAME": "rvsp.github.io" } } diff --git a/domains/rwithik.json b/domains/rwithik.json index d273a95f2..de14d747c 100644 --- a/domains/rwithik.json +++ b/domains/rwithik.json @@ -5,7 +5,7 @@ "username": "rwithik", "email": "rwithik@gmail.com" }, - "record": { + "records": { "CNAME": "rwithik.github.io" } } diff --git a/domains/rxyhn.json b/domains/rxyhn.json index 9cd4a91bc..d21c1198d 100644 --- a/domains/rxyhn.json +++ b/domains/rxyhn.json @@ -6,7 +6,7 @@ "email": "rayhankafipratama333@gmail.com", "discord": "rxyhn#1154" }, - "record": { + "records": { "CNAME": "rxyhn.github.io" } } diff --git a/domains/rya.json b/domains/rya.json index 3e0ac26da..176b0f3c5 100644 --- a/domains/rya.json +++ b/domains/rya.json @@ -3,7 +3,7 @@ "username": "Jecket22", "email": "lez.vezzica@gmail.com" }, - "record": { + "records": { "URL": "https://jecket.xyz" } } diff --git a/domains/ryan.json b/domains/ryan.json index e0ad0775a..903ef7893 100644 --- a/domains/ryan.json +++ b/domains/ryan.json @@ -5,7 +5,7 @@ "username": "epic-person-on", "discord": "epic.person" }, - "record": { + "records": { "CNAME": "ec2-3-12-165-61.us-east-2.compute.amazonaws.com" } } diff --git a/domains/ryanbaig.json b/domains/ryanbaig.json index 1fa8545be..0bfdc2910 100644 --- a/domains/ryanbaig.json +++ b/domains/ryanbaig.json @@ -1,8 +1,9 @@ { "owner": { - "username": "RyanBaig" + "username": "RyanBaig", + "discord": "757475933170040893" }, - "record": { + "records": { "CNAME": "ryanthedev.vercel.app" } } diff --git a/domains/ryanisyyds.json b/domains/ryanisyyds.json index 6bf6bd89b..a31bdcefe 100644 --- a/domains/ryanisyyds.json +++ b/domains/ryanisyyds.json @@ -3,7 +3,7 @@ "username": "RyanisyydsTT", "email": "ryantseng123@mail.edu.tw" }, - "record": { + "records": { "A": ["170.39.76.35"] } } diff --git a/domains/ryannkim327.json b/domains/ryannkim327.json index 7b5591605..98a215409 100644 --- a/domains/ryannkim327.json +++ b/domains/ryannkim327.json @@ -5,7 +5,7 @@ "username": "RyannKim327", "email": "weryses19@gmail.com" }, - "record": { + "records": { "CNAME": "ryannkim327.github.io" } } diff --git a/domains/ryanzam.json b/domains/ryanzam.json index 3c79f866c..201d38911 100644 --- a/domains/ryanzam.json +++ b/domains/ryanzam.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ryanzam", - "email": "ryanzam2005@yahoo.com" - }, - "record": { - "CNAME": "orange-island-07b3bb803.5.azurestaticapps.net" - } + "owner": { + "username": "ryanzam", + "email": "ryanzam2005@yahoo.com" + }, + "records": { + "CNAME": "orange-island-07b3bb803.5.azurestaticapps.net" + } } diff --git a/domains/ryn.json b/domains/ryn.json index 639d077e5..8faf1f931 100644 --- a/domains/ryn.json +++ b/domains/ryn.json @@ -3,7 +3,7 @@ "username": "lazylamps", "email": "lampslazy@gmail.com" }, - "record": { + "records": { "A": ["132.145.25.232"] } } diff --git a/domains/ryo.json b/domains/ryo.json index 6fda8e551..2c57a5d79 100644 --- a/domains/ryo.json +++ b/domains/ryo.json @@ -3,7 +3,7 @@ "username": "FrosGaming", "email": "dgfrosdgfros@gmail.com" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/ryz.json b/domains/ryz.json index 709827766..f86d37108 100644 --- a/domains/ryz.json +++ b/domains/ryz.json @@ -1,11 +1,12 @@ { "description": "This subdomain is for my personal projects and mail forwarding.", "owner": { - "username": "0ryz", + "username": "Iron9699", "email": "j6qt9x5sj@mozmail.com", "discord": "4ryz" }, - "record": { - "NS": ["betty.ns.cloudflare.com", "cody.ns.cloudflare.com"] + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/rzkyfhrzi21.json b/domains/rzkyfhrzi21.json index 4b2157782..f554098f0 100644 --- a/domains/rzkyfhrzi21.json +++ b/domains/rzkyfhrzi21.json @@ -5,7 +5,7 @@ "username": "rzkyfhrzi21", "email": "rzkyfhrz21@gmail.com" }, - "record": { + "records": { "CNAME": "rzkyfhrzi21.github.io" } } diff --git a/domains/s-kunjan.json b/domains/s-kunjan.json index 013d07412..b0f761f0b 100644 --- a/domains/s-kunjan.json +++ b/domains/s-kunjan.json @@ -4,7 +4,7 @@ "owner": { "username": "s-kunjan" }, - "record": { + "records": { "CNAME": "s-kunjan.github.io" } } diff --git a/domains/s-nishit.json b/domains/s-nishit.json index 14457dac2..bcd74db2e 100644 --- a/domains/s-nishit.json +++ b/domains/s-nishit.json @@ -4,7 +4,7 @@ "owner": { "username": "s-nishit" }, - "record": { + "records": { "CNAME": "s-nishit.github.io" } } diff --git a/domains/s.json b/domains/s.json index e079a7e08..fcaf25162 100644 --- a/domains/s.json +++ b/domains/s.json @@ -1,10 +1,9 @@ { "owner": { - "username": "Smartlinuxcoder", - "email": "smartcoder@linuxmail.org", - "discord": "987972818341888021" + "username": "Stef-00012", + "discord": "694986201739952229" }, - "record": { - "CNAME": "proxy.smart.is-a.dev" + "records": { + "URL": "https://stefdp.com" } } diff --git a/domains/s1d.json b/domains/s1d.json index e7a9563ed..a52df1efa 100644 --- a/domains/s1d.json +++ b/domains/s1d.json @@ -4,7 +4,7 @@ "email": "siddhant.rai.5686@gmail.com", "discord": "783600606451204176" }, - "record": { + "records": { "CNAME": "siddhant-rai.web.app" } } diff --git a/domains/s1dd.json b/domains/s1dd.json new file mode 100644 index 000000000..b6e7d9304 --- /dev/null +++ b/domains/s1dd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nots1dd", + "email": "sid9.karanam@gmail.com" + }, + "records": { + "CNAME": "webpage-seven-puce.vercel.app" + } +} diff --git a/domains/s1ow.json b/domains/s1ow.json index e26a5106b..27d4dd383 100644 --- a/domains/s1ow.json +++ b/domains/s1ow.json @@ -1,22 +1,14 @@ { - "description": "! s1owmotion.0 profile page", - "repository": "https://github.com/H4iPh0ngM1enB4c/Web", - "owner": { - "username": "H4iPh0ngM1enB4c", - "email": "noobdownload2@gmail.com", - "discord": "1027559943462727740" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.110.153", - "185.199.109.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "! s1owmotion.0 profile page", + "repository": "https://github.com/H4iPh0ngM1enB4c/Web", + "owner": { + "username": "H4iPh0ngM1enB4c", + "email": "noobdownload2@gmail.com", + "discord": "1027559943462727740" + }, + "records": { + "A": ["185.199.108.153", "185.199.110.153", "185.199.109.153", "185.199.111.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/s409.json b/domains/s409.json index 8c2ec4d55..10be01183 100644 --- a/domains/s409.json +++ b/domains/s409.json @@ -4,7 +4,7 @@ "email": "hitlerwinning2301@gmail.com", "discord": "851827069284778054" }, - "record": { + "records": { "CNAME": "s409.pages.dev" } } diff --git a/domains/s4ib0t.json b/domains/s4ib0t.json index 3234b30f2..9668a1719 100644 --- a/domains/s4ib0t.json +++ b/domains/s4ib0t.json @@ -4,7 +4,7 @@ "email": "Hilm4nsyah@gmail.com", "discord": "830349326785314846" }, - "record": { + "records": { "MX": ["mx1.forwardemail.net"] } } diff --git a/domains/s4il.json b/domains/s4il.json index e4788bcf6..26794001b 100644 --- a/domains/s4il.json +++ b/domains/s4il.json @@ -3,7 +3,7 @@ "username": "S4IL21", "email": "s4il.is.a.dev@gmail.com" }, - "record": { + "records": { "CNAME": "s4il21.github.io" } } diff --git a/domains/s697376._domainkey.yxz.json b/domains/s697376._domainkey.yxz.json index ce2fbe673..ff62d52da 100644 --- a/domains/s697376._domainkey.yxz.json +++ b/domains/s697376._domainkey.yxz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yz9551", - "discord": "yz9551" - }, - "record": { - "CNAME": "dkim.smtp2go.net" - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "records": { + "CNAME": "dkim.smtp2go.net" + } } diff --git a/domains/s97.json b/domains/s97.json index 4025f3758..47db5d3a6 100644 --- a/domains/s97.json +++ b/domains/s97.json @@ -2,10 +2,9 @@ "owner": { "username": "Saud-97", "email": "saud.aljaffer@gmail.com", - "repo": "https://github.com/Saud-97", "discord": "S97#6758" }, - "record": { + "records": { "URL": "https://github.com/Saud-97" } } diff --git a/domains/saahil.json b/domains/saahil.json index 078261903..6a84b65da 100644 --- a/domains/saahil.json +++ b/domains/saahil.json @@ -3,7 +3,7 @@ "username": "NeonGamerBot-QK", "email": "neon+domain@saahild.com" }, - "record": { + "records": { "A": ["185.250.37.86"] } } diff --git a/domains/saatvik.json b/domains/saatvik.json index 843f7b6f3..6a71818a4 100644 --- a/domains/saatvik.json +++ b/domains/saatvik.json @@ -3,7 +3,7 @@ "username": "atharvalt", "email": "beast.gaming1099@gmail.com" }, - "record": { + "records": { "CNAME": "atharvaupadhyay.github.io" } } diff --git a/domains/saba.json b/domains/saba.json index 2166126df..c2a387b86 100644 --- a/domains/saba.json +++ b/domains/saba.json @@ -5,7 +5,7 @@ "username": "itsaba", "email": "saba.s@mail.com" }, - "record": { + "records": { "CNAME": "itsaba.github.io" } } diff --git a/domains/sabarivasan.json b/domains/sabarivasan.json index 9958b50db..b7bf797bf 100644 --- a/domains/sabarivasan.json +++ b/domains/sabarivasan.json @@ -4,7 +4,7 @@ "email": "sabarivasan738@gmail.com", "discord": "535487185055383562" }, - "record": { + "records": { "CNAME": "sabarivasan-ramasamy.github.io" } } diff --git a/domains/sabbir.json b/domains/sabbir.json index 2c4dd5094..788e34d24 100644 --- a/domains/sabbir.json +++ b/domains/sabbir.json @@ -3,7 +3,7 @@ "username": "sabbir", "email": "sabbir.apbn.edu@gmail.com" }, - "record": { + "records": { "NS": ["clarissa.ns.cloudflare.com", "harley.ns.cloudflare.com"] } } diff --git a/domains/sabelgames.json b/domains/sabelgames.json index 016234dab..86a2de88e 100644 --- a/domains/sabelgames.json +++ b/domains/sabelgames.json @@ -3,7 +3,7 @@ "username": "SabelGames", "email": "contact@sabelgames.is-a.dev" }, - "record": { + "records": { "URL": "https://sabelgames.itch.io", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/sabidzpro.json b/domains/sabidzpro.json new file mode 100644 index 000000000..816e43c07 --- /dev/null +++ b/domains/sabidzpro.json @@ -0,0 +1,19 @@ +{ + "description": "Portfolio saya yang di-deploy di Vercel", + "repo": "https://github.com/saifulabidin/saifulabidin.github.io", + "owner": { + "username": "saifulabidin", + "email": "syaiful.osd@yahoo.com" + }, + "proxied": true, + "records": { + "CNAME": "sabidzpro.vercel.app", + "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 index 915f78bcd..f348f5bd7 100644 --- a/domains/sabil.json +++ b/domains/sabil.json @@ -5,7 +5,7 @@ "email": "kongbill6363@gmail.com", "twitter": "kongbill62" }, - "record": { + "records": { "CNAME": "sabil62.github.io" } } diff --git a/domains/sachin.json b/domains/sachin.json index bffa70ddb..924bd80d7 100644 --- a/domains/sachin.json +++ b/domains/sachin.json @@ -1,11 +1,10 @@ { "description": "Sachin's portfolio", - "repo": "https://github.com/sachin-in1", "owner": { "username": "sachin-in1", "email": "sachin.here01@gmail.com" }, - "record": { + "records": { "CNAME": "sachin-in1.github.io" } } diff --git a/domains/sacul-6.json b/domains/sacul-6.json index a24e0a92e..2bd961b2c 100644 --- a/domains/sacul-6.json +++ b/domains/sacul-6.json @@ -3,7 +3,7 @@ "username": "SACUL-6", "email": "contact.me.here.naw@gmail.com" }, - "record": { + "records": { "CNAME": "sacul-6.github.io" } } diff --git a/domains/sad-devmatei.json b/domains/sad-devmatei.json new file mode 100644 index 000000000..dd679bfed --- /dev/null +++ b/domains/sad-devmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "records": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/sadgabi.json b/domains/sadgabi.json index f3e5cdca5..3af31bc23 100644 --- a/domains/sadgabi.json +++ b/domains/sadgabi.json @@ -3,7 +3,7 @@ "username": "sad-gabi", "email": "sadgabi20@gmail.com" }, - "record": { + "records": { "URL": "https://sad-gabi.github.io/sad-gabi/index.html" } } diff --git a/domains/sadie.json b/domains/sadie.json index da10491fb..c90cd81cf 100644 --- a/domains/sadie.json +++ b/domains/sadie.json @@ -6,7 +6,7 @@ "email": "sadiebk@fluorine.me", "twitter": "_nightlake" }, - "record": { + "records": { "CNAME": "night-lake.github.io" } } diff --git a/domains/sadik.json b/domains/sadik.json new file mode 100644 index 000000000..c29aefe39 --- /dev/null +++ b/domains/sadik.json @@ -0,0 +1,11 @@ +{ + "description": "For Portfolio", + "repo": "https://github.com/square-story/portfolio-next.js", + "owner": { + "username": "square-story", + "email": "gibmepreo@gmail.com" + }, + "records": { + "CNAME": "sadik-mu.vercel.app" + } +} diff --git a/domains/sadiq.json b/domains/sadiq.json index 22d2e04bb..5b7d44425 100644 --- a/domains/sadiq.json +++ b/domains/sadiq.json @@ -4,7 +4,7 @@ "username": "sadiq334", "discord": "! sadiq#1152" }, - "record": { + "records": { "CNAME": "sadiq334.github.io" } } diff --git a/domains/sadkon.json b/domains/sadkon.json index a2af24afd..591541099 100644 --- a/domains/sadkon.json +++ b/domains/sadkon.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhc@outlook.com" }, - "record": { + "records": { "CNAME": "sadkon.gitlab.io" } } diff --git a/domains/saeed.json b/domains/saeed.json index b5abfbb54..656dfd560 100644 --- a/domains/saeed.json +++ b/domains/saeed.json @@ -3,7 +3,7 @@ "username": "MohammedKHC0", "email": "mohammedkhcool@gmail.com" }, - "record": { + "records": { "CNAME": "sheikh-saeed.pages.dev" } } diff --git a/domains/saeedmfarahani.json b/domains/saeedmfarahani.json new file mode 100644 index 000000000..482bc1090 --- /dev/null +++ b/domains/saeedmfarahani.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Silitonix" + }, + "records": { + "CNAME": "silitonix.github.io" + } +} diff --git a/domains/saeef.json b/domains/saeef.json index 0ac15e600..6e016f873 100644 --- a/domains/saeef.json +++ b/domains/saeef.json @@ -5,7 +5,7 @@ "username": "saeef", "email": "saeef@outlook.com" }, - "record": { + "records": { "CNAME": "saeef.github.io" } } diff --git a/domains/saert.json b/domains/saert.json new file mode 100644 index 000000000..315f425a9 --- /dev/null +++ b/domains/saert.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "saert3311", + "email": "jose.duarte@trinum.xyz" + }, + "records": { + "CNAME": "trinum.xyz" + } +} diff --git a/domains/safety.json b/domains/safety.json index 2973f4f65..bb8d44502 100644 --- a/domains/safety.json +++ b/domains/safety.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "HackingYZ", - "email": "sifed@qq.com" - }, - - "record": { - "CNAME": "safety22w413a.github.io" - } - } \ No newline at end of file + "owner": { + "username": "HackingYZ", + "email": "sifed@qq.com" + }, + "records": { + "CNAME": "safety22w413a.github.io" + } +} diff --git a/domains/safone.json b/domains/safone.json index e52365089..73995feaf 100644 --- a/domains/safone.json +++ b/domains/safone.json @@ -3,7 +3,7 @@ "username": "AsmSafone", "email": "asmsafone@gmail.com" }, - "record": { + "records": { "CNAME": "safone.pages.dev" } } diff --git a/domains/saftec.json b/domains/saftec.json index 1b5d366c3..b81ef421f 100644 --- a/domains/saftec.json +++ b/domains/saftec.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } + "owner": { + "username": "Samuraiflamesf", + "email": "Samuraiflamesf@gmail.com" + }, + "records": { + "A": ["152.67.45.142"] + } } diff --git a/domains/sag.json b/domains/sag.json index dc25900a6..14737fa5f 100644 --- a/domains/sag.json +++ b/domains/sag.json @@ -3,7 +3,7 @@ "username": "Sag", "email": "sagxd@protonmail.com" }, - "record": { + "records": { "CNAME": "sag.codeberg.page" } } diff --git a/domains/sageofluke.json b/domains/sageofluke.json new file mode 100644 index 000000000..9b6eabf06 --- /dev/null +++ b/domains/sageofluke.json @@ -0,0 +1,11 @@ +{ + "description": "SageofLuke.is-a.dev", + "repo": "https://github.com/sageofluke/sageofluke.github.io", + "owner": { + "username": "SageOfLuke", + "email": "rj05tilak@hotmail.com" + }, + "records": { + "CNAME": "sageofluke.github.io" + } +} diff --git a/domains/saharsh.json b/domains/saharsh.json index 652fa8bda..b06e61b7c 100644 --- a/domains/saharsh.json +++ b/domains/saharsh.json @@ -6,7 +6,7 @@ "email": "psaharsh2@gmail.com", "twitter": "saharsh1223" }, - "record": { + "records": { "CNAME": "saharsh1223.github.io" } } diff --git a/domains/sahil.json b/domains/sahil.json index 724b9c4a9..f4ef6c7bd 100644 --- a/domains/sahil.json +++ b/domains/sahil.json @@ -5,7 +5,7 @@ "username": "SahilShidruk", "discord": "1095900069095555133" }, - "record": { + "records": { "CNAME": "sahilshidruk.github.io" } } diff --git a/domains/sahilchoudhary.json b/domains/sahilchoudhary.json index 0061fe7c2..befecdd33 100644 --- a/domains/sahilchoudhary.json +++ b/domains/sahilchoudhary.json @@ -6,7 +6,7 @@ "email": "sahil844101@gmail.com", "instagram": "io.sahil" }, - "record": { + "records": { "CNAME": "iosahil.github.io" } } diff --git a/domains/saif.json b/domains/saif.json new file mode 100644 index 000000000..ca5c24e00 --- /dev/null +++ b/domains/saif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saifkhanz", + "email": "saif137.khan@gmail.com" + }, + "records": { + "CNAME": "saif-two.vercel.app" + } +} diff --git a/domains/saikat.json b/domains/saikat.json index a1126676b..ea9b5cee0 100644 --- a/domains/saikat.json +++ b/domains/saikat.json @@ -3,7 +3,7 @@ "username": "saikatislamhadis", "email": "saikatislamhadis@gmail.com" }, - "record": { + "records": { "CNAME": "saikatislam.pages.dev" } } diff --git a/domains/sailesh.json b/domains/sailesh.json index 641f1d263..c9ca89712 100644 --- a/domains/sailesh.json +++ b/domains/sailesh.json @@ -4,7 +4,7 @@ "username": "saileshbro", "email": "saileshbro@gmail.com" }, - "record": { + "records": { "CNAME": "saileshbro.github.io" } } diff --git a/domains/sailohitaksh-cryptic.json b/domains/sailohitaksh-cryptic.json index 4bc0dbc98..5cfde4c53 100644 --- a/domains/sailohitaksh-cryptic.json +++ b/domains/sailohitaksh-cryptic.json @@ -5,7 +5,7 @@ "username": "sailohitaksh-cryptic", "email": "rainasai603@gmail.com" }, - "record": { + "records": { "CNAME": "sailohitaksh-cryptic.github.io" } } diff --git a/domains/sairaj.json b/domains/sairaj.json new file mode 100644 index 000000000..8aa693f53 --- /dev/null +++ b/domains/sairaj.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/gegendepressed/gegendepressed.github.io", + "owner": { + "username": "gegendepressed", + "email": "sairaj09pai@gmail.com" + }, + "records": { + "CNAME": "gegendepressed.github.io" + } +} diff --git a/domains/saisandeepvaddi.json b/domains/saisandeepvaddi.json index 584f761ae..3b3e67452 100644 --- a/domains/saisandeepvaddi.json +++ b/domains/saisandeepvaddi.json @@ -4,7 +4,7 @@ "username": "saisandeepvaddi", "email": "saisandeepvaddi@gmail.com" }, - "record": { + "records": { "A": ["104.198.14.52"] } } diff --git a/domains/saisrujanreddyp.json b/domains/saisrujanreddyp.json new file mode 100644 index 000000000..2d1a76d90 --- /dev/null +++ b/domains/saisrujanreddyp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SaiSrujanReddyP", + "email": "srujansaireddy.p@gmai.com", + "discord": "1092467372201361488" + }, + "records": { + "CNAME": "saisrujanreddyp.pages.dev" + } +} diff --git a/domains/saivikram.json b/domains/saivikram.json index f21cd2aa1..bf2212bf4 100644 --- a/domains/saivikram.json +++ b/domains/saivikram.json @@ -4,7 +4,7 @@ "username": "SaiVikramTechy", "email": "vikramkomma08@gmail.com" }, - "record": { + "records": { "CNAME": "saivikramtechy.github.io" } } diff --git a/domains/saizuo.json b/domains/saizuo.json index b9f099d8a..e73ca3ecd 100644 --- a/domains/saizuo.json +++ b/domains/saizuo.json @@ -6,7 +6,7 @@ "email": "jhaakash177@gmail.com", "twitter": "SaizyWaizy" }, - "record": { + "records": { "CNAME": "saizuo.github.io" } } diff --git a/domains/sajansaji.json b/domains/sajansaji.json index d0b52d1bd..00b18923a 100644 --- a/domains/sajansaji.json +++ b/domains/sajansaji.json @@ -4,7 +4,7 @@ "email": "sajansaji2050@gmail.com", "discord": "875589371590500425" }, - "record": { + "records": { "CNAME": "portfolio-me-0bt.pages.dev" } } diff --git a/domains/sajid.json b/domains/sajid.json new file mode 100644 index 000000000..d820d644a --- /dev/null +++ b/domains/sajid.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/sajidshahriar72543/sajidshahriar72543.github.io", + "owner": { + "username": "sajidshahriar72543", + "email": "sazidshahriar39@gmail.com" + }, + "records": { + "CNAME": "sajidshahriar72543.github.io" + } +} diff --git a/domains/sajiddev.json b/domains/sajiddev.json index 63ee163d4..783b4b5a2 100644 --- a/domains/sajiddev.json +++ b/domains/sajiddev.json @@ -3,7 +3,7 @@ "username": "Sajid-tech", "email": "s.khan9430319425@gmail.com" }, - "record": { + "records": { "CNAME": "sajid-tech.github.io" } } diff --git a/domains/sajidhussain.json b/domains/sajidhussain.json index 2e276cebf..59a1bd8d6 100644 --- a/domains/sajidhussain.json +++ b/domains/sajidhussain.json @@ -3,7 +3,7 @@ "username": "sajidhussaindev", "email": "sajidhussain189057@gmail.com" }, - "record": { + "records": { "CNAME": "sajidhussaindev.github.io" } } diff --git a/domains/sakis.json b/domains/sakis.json new file mode 100644 index 000000000..e54ea121f --- /dev/null +++ b/domains/sakis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syakhisk", + "email": "syakhisks@gmail.com" + }, + "records": { + "URL": "https://al-az.me" + } +} diff --git a/domains/sakko.json b/domains/sakko.json index 2e4037cfa..636f14917 100644 --- a/domains/sakko.json +++ b/domains/sakko.json @@ -6,7 +6,7 @@ "email": "saklism@gmail.com", "twitter": "sakkosama" }, - "record": { + "records": { "CNAME": "sakko.github.io" } } diff --git a/domains/sakshi.json b/domains/sakshi.json new file mode 100644 index 000000000..67587f5bc --- /dev/null +++ b/domains/sakshi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "git-sakshii", + "email": "sakshiii@outlook.com" + }, + "records": { + "URL": "https://github.com/git-sakshii/" + } +} diff --git a/domains/salar.json b/domains/salar.json index d1425182f..5ce980b9e 100644 --- a/domains/salar.json +++ b/domains/salar.json @@ -3,7 +3,7 @@ "username": "ooralas", "email": "ooralas@outlook.com" }, - "record": { + "records": { "URL": "https://salaralali.com" } } diff --git a/domains/saleh.json b/domains/saleh.json new file mode 100644 index 000000000..ec5ece947 --- /dev/null +++ b/domains/saleh.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/saleh-rahimzadeh/saleh-rahimzadeh.github.io", + "owner": { + "username": "saleh-rahimzadeh", + "email": "saleh-rz@outlook.com" + }, + "records": { + "CNAME": "saleh-rahimzadeh.github.io" + } +} diff --git a/domains/salman.json b/domains/salman.json new file mode 100644 index 000000000..453fe7642 --- /dev/null +++ b/domains/salman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "salmaniyad", + "email": "eng.salmaniyad@gmail.com" + }, + "records": { + "CNAME": "salmans-digital-space-pro.vercel.app" + } +} diff --git a/domains/salsa.json b/domains/salsa.json index f9d31db6d..79d5ae9f1 100644 --- a/domains/salsa.json +++ b/domains/salsa.json @@ -3,7 +3,7 @@ "username": "salsabilaananditaputri", "email": "salsabilaananditaputri.5@gmail.com" }, - "record": { + "records": { "CNAME": "salsabilaananditaputri.github.io" } } diff --git a/domains/salsabila.json b/domains/salsabila.json new file mode 100644 index 000000000..aa65af457 --- /dev/null +++ b/domains/salsabila.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "salsabilarhdsy", + "email": "salsabiladsy@gmail.com" + }, + "records": { + "A": ["216.239.32.21", "216.239.34.21", "216.239.36.21", "216.239.38.21"], + "TXT": "google-site-verification=wa09XM-Var9ELqseOfjGhhz19slF_29d7M5h76mhdQE" + } +} diff --git a/domains/sam-jspn.json b/domains/sam-jspn.json index 8d05ebe1d..d8706d851 100644 --- a/domains/sam-jspn.json +++ b/domains/sam-jspn.json @@ -6,7 +6,7 @@ "email": "sam.josephine@outlook.fr", "discord": "R3dL1ghty#2904" }, - "record": { + "records": { "CNAME": "samuel-jspn.github.io" } } diff --git a/domains/sam.json b/domains/sam.json index d3a0fc31a..37b8304fb 100644 --- a/domains/sam.json +++ b/domains/sam.json @@ -5,7 +5,7 @@ "username": "sampoder", "email": "sam@sampoder.com" }, - "record": { + "records": { "URL": "https://sampoder.com" } } diff --git a/domains/sama.json b/domains/sama.json index fde9532fa..856de48a5 100644 --- a/domains/sama.json +++ b/domains/sama.json @@ -3,7 +3,7 @@ "username": "Sama-004", "email": "samanyuroy@gmail.com" }, - "record": { + "records": { "URL": "https://Sama-004.github.io" } } diff --git a/domains/samadhi.json b/domains/samadhi.json new file mode 100644 index 000000000..a16d6c4f4 --- /dev/null +++ b/domains/samadhi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samadhi1311", + "email": "samadhilakmina.sl@gmail.com" + }, + "records": { + "CNAME": "samadhi-gunasinghe.pages.dev" + } +} diff --git a/domains/samanyu.json b/domains/samanyu.json index 3f955a21a..c8a6cece1 100644 --- a/domains/samanyu.json +++ b/domains/samanyu.json @@ -1,11 +1,10 @@ { "description": "They call me Soman", - "repo": "https://github.com/Samanyu13", "owner": { "username": "Samanyu13", "email": "samanyusaji18@gmail.com" }, - "record": { + "records": { "CNAME": "samanyu13.github.io" } } diff --git a/domains/samara.json b/domains/samara.json index d22e07e08..29f720708 100644 --- a/domains/samara.json +++ b/domains/samara.json @@ -3,7 +3,7 @@ "username": "ssalggnikool", "email": "sam4r16@gmail.com" }, - "record": { + "records": { "CNAME": "ssalggnikool.github.io" } } diff --git a/domains/samarth-asthana.json b/domains/samarth-asthana.json index 5450c8b43..0b80f9b8d 100644 --- a/domains/samarth-asthana.json +++ b/domains/samarth-asthana.json @@ -5,7 +5,7 @@ "username": "samarth-asthana", "email": "samarthasthana110@gmail.com" }, - "record": { + "records": { "CNAME": "samarth-asthana.github.io" } } diff --git a/domains/samarth.json b/domains/samarth.json index 34f9f032d..43be007ff 100644 --- a/domains/samarth.json +++ b/domains/samarth.json @@ -3,7 +3,7 @@ "username": "samarthkulshrestha", "email": "samarthkulshrestha@protonmail.com" }, - "record": { + "records": { "CNAME": "samarthkulshrestha.github.io" } } diff --git a/domains/samatbk.json b/domains/samatbk.json index 7a4f9cbf6..06eccebb0 100644 --- a/domains/samatbk.json +++ b/domains/samatbk.json @@ -5,7 +5,7 @@ "username": "samatbk", "email": "samatbk@proton.me" }, - "record": { + "records": { "CNAME": "samatbk.github.io" } } diff --git a/domains/sambhrama.json b/domains/sambhrama.json index 42ea19919..5f8288115 100644 --- a/domains/sambhrama.json +++ b/domains/sambhrama.json @@ -3,7 +3,7 @@ "username": "Sambhrama754", "email": "sambhramakhushi@hotmail.com" }, - "record": { + "records": { "CNAME": "website-production-d557.up.railway.app" } } diff --git a/domains/sameera.json b/domains/sameera.json index 0c46ae898..f1de8e870 100644 --- a/domains/sameera.json +++ b/domains/sameera.json @@ -6,7 +6,7 @@ "email": "sameera.whoami@gmail.com", "twitter": "sameera_s_w" }, - "record": { + "records": { "CNAME": "sameerasw.github.io" } } diff --git a/domains/sameerk.json b/domains/sameerk.json index 7e99695e9..fb3e4471a 100644 --- a/domains/sameerk.json +++ b/domains/sameerk.json @@ -4,12 +4,7 @@ "email": "sameermalikst6@gmail.com", "discord": "937701712293163118" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/samenal.json b/domains/samenal.json new file mode 100644 index 000000000..c7a42f45d --- /dev/null +++ b/domains/samenal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Samenal-sys", + "email": "samenaal@proton.me" + }, + "records": { + "CNAME": "samenal.pages.dev" + } +} diff --git a/domains/samet.json b/domains/samet.json index 784646127..0ebc520bb 100644 --- a/domains/samet.json +++ b/domains/samet.json @@ -7,7 +7,7 @@ "discord": "Samett#8519", "discord-id": "894594782897262635" }, - "record": { + "records": { "CNAME": "sa-met.github.io" } } diff --git a/domains/samfareez.json b/domains/samfareez.json new file mode 100644 index 000000000..ad99dee1c --- /dev/null +++ b/domains/samfareez.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site", + "repo": "https://github.com/zeerafle/zeerafle.github.io", + "owner": { + "username": "zeerafle", + "email": "vsefareez@gmail.com" + }, + "records": { + "CNAME": "zeerafle.github.io" + } +} diff --git a/domains/samia-islam-sua.json b/domains/samia-islam-sua.json index cc0e5c76f..f034fe630 100644 --- a/domains/samia-islam-sua.json +++ b/domains/samia-islam-sua.json @@ -5,7 +5,7 @@ "username": "SamiaIslamSua", "email": "SamiaIslamSua@gmail.com" }, - "record": { + "records": { "CNAME": "samiaislamsua.github.io" } } diff --git a/domains/samihatasnim.json b/domains/samihatasnim.json index 0bc3dec24..743ec60b3 100644 --- a/domains/samihatasnim.json +++ b/domains/samihatasnim.json @@ -7,7 +7,7 @@ "email": "samxtasnim@gmail.com", "twitter": "SamihaTasnimm" }, - "record": { + "records": { "CNAME": "website-69g.pages.dev" } } diff --git a/domains/samir-vaghela.json b/domains/samir-vaghela.json index 1dd4fdffa..4ed4410e2 100644 --- a/domains/samir-vaghela.json +++ b/domains/samir-vaghela.json @@ -5,7 +5,7 @@ "username": "samir-vaghela", "email": "samir.vaghela@truestaz.com" }, - "record": { + "records": { "CNAME": "samir-vaghela.github.io" } } diff --git a/domains/samir.json b/domains/samir.json index 55f56e20e..6b249ad88 100644 --- a/domains/samir.json +++ b/domains/samir.json @@ -6,7 +6,7 @@ "email": "samirpaulb@gmail.com", "twitter": "SamirPaulb" }, - "record": { + "records": { "CNAME": "samirpaulb.github.io" } } diff --git a/domains/samirkhanal.json b/domains/samirkhanal.json new file mode 100644 index 000000000..c21a08f93 --- /dev/null +++ b/domains/samirkhanal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khanal-samir", + "email": "gdssamir@gmail.com" + }, + "records": { + "CNAME": "samir-khanal-portfolio.vercel.app" + } +} diff --git a/domains/samirp.json b/domains/samirp.json index b0444d937..ff36efe69 100644 --- a/domains/samirp.json +++ b/domains/samirp.json @@ -6,7 +6,7 @@ "email": "samirpaulb@gmail.com", "twitter": "SamirPaulb" }, - "record": { + "records": { "CNAME": "samirpaul1.github.io" } } diff --git a/domains/samirpaul.json b/domains/samirpaul.json deleted file mode 100644 index 8b1ee4b58..000000000 --- a/domains/samirpaul.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "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/samishoukat.json b/domains/samishoukat.json new file mode 100644 index 000000000..2938a9a1f --- /dev/null +++ b/domains/samishoukat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samishoukat12", + "email": "samishoukat12@gmail.com" + }, + "records": { + "CNAME": "dev-samishoukat.vercel.app" + } +} diff --git a/domains/saml.json b/domains/saml.json index 4e4c51505..f3cdac8b2 100644 --- a/domains/saml.json +++ b/domains/saml.json @@ -5,7 +5,7 @@ "username": "SamDev-7", "email": "hello@samliu.dev" }, - "record": { + "records": { "URL": "https://samliu.dev" } } diff --git a/domains/samo.json b/domains/samo.json index ba1f05dc2..a0ac71e5a 100644 --- a/domains/samo.json +++ b/domains/samo.json @@ -6,7 +6,7 @@ "email": "godsamomen@protonmail.com", "twitter": "godsamomen" }, - "record": { + "records": { "CNAME": "godsamomen.github.io" } } diff --git a/domains/samp.alora.json b/domains/samp.alora.json index 15249cb6d..6aa617a67 100644 --- a/domains/samp.alora.json +++ b/domains/samp.alora.json @@ -5,7 +5,7 @@ "username": "aloramiaa", "email": "xaloramia@gmail.com" }, - "record": { + "records": { "A": ["46.183.184.33"] } } diff --git a/domains/sampath.json b/domains/sampath.json index b09496a44..ad525c8b6 100644 --- a/domains/sampath.json +++ b/domains/sampath.json @@ -1,10 +1,9 @@ { "owner": { "username": "gujarathisampath", - "discord": "984015688807100419", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pl6QsQtuSeTxI4qW8VNCuAxSYrmPySIp-thnTbJzhdXyYrejfz3ypbCWqYX02RusfAkil6PMI_Y59cKhi_-EqWsEPNywQOqS1YWOQdRcH3XBIbZOXolGYyOUsCzCJDt52bn3RMbU0v1C7nw7bBElgOq6oQNYmUtQBPSG3BrEDJnwtyaIWAQmrI19mdG2lgMITPtB6bc9lkyDphg5CN44VON-dflwPzajVLcLKd7UFn-aupC8_k0SQ2Ls-9ldRFe45yrS2I1rK5NA5CdXahVn0HqOR4hjYBAcZ9n9TDWOdIw2KNKVy9uiKeS5omruwDaJlUX_rV6dZ0IYL4TFmRFqRQ.sdhuYH6WZA070TY-hK14_w.oNx0grctR0mFrgxZsrG_6alCz2x_XmYCWpot7ZEDP7HPaBu4WMLzUXAOX1e6yOE4UJX2Fuu3woZGmE9LHibD6KGw5fM6EHG0TFFzGbHdqh1S5P1OcGRVT46wEFMx8vh7.R4PT633lIs8sA7pkAaS8mg" + "discord": "984015688807100419" }, - "record": { + "records": { "CNAME": "cname.vercel-dns.com" } } diff --git a/domains/samrat.json b/domains/samrat.json index c9c453bd4..263e85eae 100644 --- a/domains/samrat.json +++ b/domains/samrat.json @@ -2,7 +2,7 @@ "owner": { "username": "ogsamrat" }, - "record": { + "records": { "CNAME": "ogsamrat.github.io" } } diff --git a/domains/samriddha.json b/domains/samriddha.json index b374e822d..dbe68a542 100644 --- a/domains/samriddha.json +++ b/domains/samriddha.json @@ -6,7 +6,7 @@ "email": "sb2899@srmist.edu.in", "twitter": "BasuSamriddha" }, - "record": { + "records": { "CNAME": "samriddha-basu-cloud.github.io" } } diff --git a/domains/samson.json b/domains/samson.json new file mode 100644 index 000000000..552c8fd78 --- /dev/null +++ b/domains/samson.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/MarsCapone/marscapone.github.io", + "owner": { + "username": "MarsCapone", + "email": "samson@danziger.uk" + }, + "records": { + "CNAME": "marscapone.github.io" + } +} diff --git a/domains/samuel.json b/domains/samuel.json index 0ae3a7969..62847229c 100644 --- a/domains/samuel.json +++ b/domains/samuel.json @@ -5,7 +5,7 @@ "username": "SISBEST", "email": "samuel@samuelsharp.com" }, - "record": { + "records": { "CNAME": "sisbest.github.io" } } diff --git a/domains/samuelnihbos.json b/domains/samuelnihbos.json index 462780986..16ffed2a1 100644 --- a/domains/samuelnihbos.json +++ b/domains/samuelnihbos.json @@ -6,7 +6,7 @@ "email": "samuelnihbos@gnuweeb.org", "twitter": "Samueeeeel6" }, - "record": { + "records": { "CNAME": "samuelnihbos.github.io" } } diff --git a/domains/sana.json b/domains/sana.json index e78a9c374..efab5319f 100644 --- a/domains/sana.json +++ b/domains/sana.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sana-afk", - "email": "srijita3010@gmail.com" - }, - "record": { - "CNAME": "sana-afk.github.io" - } + "owner": { + "username": "sana-afk", + "email": "srijita3010@gmail.com" + }, + "records": { + "CNAME": "sana-afk.github.io" + } } diff --git a/domains/sanana.json b/domains/sanana.json index 238069e9c..28773f80e 100644 --- a/domains/sanana.json +++ b/domains/sanana.json @@ -6,7 +6,7 @@ "email": "umutinanerdogan@pm.me", "discord": "sanana the skenana#4025" }, - "record": { + "records": { "CNAME": "theoddgarlic.github.io" } } diff --git a/domains/sanchay.json b/domains/sanchay.json index 148f6fd05..61909ce7b 100644 --- a/domains/sanchay.json +++ b/domains/sanchay.json @@ -3,7 +3,7 @@ "username": "sanchay9", "email": "sanchaykumar9@gmail.com" }, - "record": { + "records": { "CNAME": "sanchay9.github.io" } } diff --git a/domains/sanchit.json b/domains/sanchit.json new file mode 100644 index 000000000..80e8b8006 --- /dev/null +++ b/domains/sanchit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sanchitbajaj02", + "email": "sanchit02@outlook.com", + "discord": "704721578029744299" + }, + "records": { + "CNAME": "portfolio-delta-lemon-14.vercel.app" + } +} diff --git a/domains/sandeepv.json b/domains/sandeepv.json index 479d5cdc4..f4b9e96cc 100644 --- a/domains/sandeepv.json +++ b/domains/sandeepv.json @@ -4,7 +4,7 @@ "username": "SandeepVattapparambil", "email": "sandeepv68@gmail.com" }, - "record": { + "records": { "CNAME": "sandeepvattapparambil.github.io" } } diff --git a/domains/sandepten.json b/domains/sandepten.json new file mode 100644 index 000000000..d76d26e14 --- /dev/null +++ b/domains/sandepten.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sandepten", + "email": "sandepten@gmail.com", + "discord": "sandepten" + }, + "records": { + "CNAME": "sandepten.vercel.app" + } +} diff --git a/domains/sandira.json b/domains/sandira.json index a9a9052a1..67c885728 100644 --- a/domains/sandira.json +++ b/domains/sandira.json @@ -5,7 +5,7 @@ "username": "axolotlextnd", "discord": "Sandira#0781" }, - "record": { + "records": { "CNAME": "axolotlextnd.github.io" } } diff --git a/domains/sandro.json b/domains/sandro.json index 91129c159..fd2210f2d 100644 --- a/domains/sandro.json +++ b/domains/sandro.json @@ -5,7 +5,7 @@ }, "description": "Personal site, as well as hosting a few tools", "repo": "https://github.com/diordnas/diordnas.github.io", - "record": { + "records": { "CNAME": "diordnas.github.io" } } diff --git a/domains/sandun.json b/domains/sandun.json new file mode 100644 index 000000000..11d82123c --- /dev/null +++ b/domains/sandun.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website of Sandun Madhushan", + "repo": "https://github.com/sandunMadhushan/sandunMadhushan.github.io", + "owner": { + "username": "sandunMadhushan", + "email": "sandunhmadushan9330@gmail.com" + }, + "records": { + "CNAME": "sandunmadhushan.github.io" + } +} diff --git a/domains/sang.json b/domains/sang.json new file mode 100644 index 000000000..becdfd9f0 --- /dev/null +++ b/domains/sang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chauvansang", + "email": "cvansang94@gmail.com" + }, + "records": { + "CNAME": "chauvansang.github.io" + } +} diff --git a/domains/sangeeth.json b/domains/sangeeth.json new file mode 100644 index 000000000..3077a10ae --- /dev/null +++ b/domains/sangeeth.json @@ -0,0 +1,11 @@ +{ + "description": "PORTFOLIO", + "owner": { + "username": "sangeeth-606", + "email": "sangeeth999123@gmail.com" + }, + "repo": "https://github.com/sangeeth-606/meh", + "records": { + "CNAME": "github-sangeeth-606.github.io" + } +} diff --git a/domains/sangelo.json b/domains/sangelo.json index aa398a0c4..ce2e9dfac 100644 --- a/domains/sangelo.json +++ b/domains/sangelo.json @@ -4,8 +4,7 @@ "username": "SangeloDev", "email": "contact@sangelo.space" }, - "repo": "https://github.com/SangeloDev", - "record": { + "records": { "URL": "https://sangelo.space" } } diff --git a/domains/sanish.json b/domains/sanish.json new file mode 100644 index 000000000..e9d5a3e46 --- /dev/null +++ b/domains/sanish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sanishkr", + "email": "sanishkr@gmail.com" + }, + "records": { + "URL": "https://sanish.me/" + } +} diff --git a/domains/sanjay-makasana.json b/domains/sanjay-makasana.json index 679b91be3..ea7504151 100644 --- a/domains/sanjay-makasana.json +++ b/domains/sanjay-makasana.json @@ -5,7 +5,7 @@ "username": "sanjay-makasana", "email": "sanjay.makasana@truestaz.com" }, - "record": { + "records": { "CNAME": "sanjay-makasana.github.io" } } diff --git a/domains/sanjay-suryavanshi.json b/domains/sanjay-suryavanshi.json index bdafc95b4..e2ea86afb 100644 --- a/domains/sanjay-suryavanshi.json +++ b/domains/sanjay-suryavanshi.json @@ -4,7 +4,7 @@ "owner": { "username": "Sanjay-Suryavanshi" }, - "record": { + "records": { "CNAME": "sanjay-suryavanshi.github.io" } } diff --git a/domains/sanjay.json b/domains/sanjay.json index d8a9e9b83..04594d460 100644 --- a/domains/sanjay.json +++ b/domains/sanjay.json @@ -5,8 +5,7 @@ "twitter": "megasanjay" }, "description": "Personal website", - "repo": "https://github.com/megasanjay", - "record": { + "records": { "URL": "https://sanjaysoundarajan.dev" } } diff --git a/domains/sanjay123.json b/domains/sanjay123.json index 324ff0fe0..84d4bb85e 100644 --- a/domains/sanjay123.json +++ b/domains/sanjay123.json @@ -1,10 +1,9 @@ { "owner": { "username": "sanjay7178", - "discord": "783593841529585665", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZBJQypIAJWa4IlL4QvRyoy0qLCRirh8jErK3tND1SPDtz1YOeiK7R8X2ibAHvEBwzQKDw7oJrD6U2y7YjfRkmS0UtOjauJ0-3qs_AUv4w6zDWpR7oHyTdxtmeO4WC98ff58b3BxcMA7jvIVCH7mSKpnYaQMdfYY9WlbOoMnipMiRZOqxRPp2nswW3M4AGOJgbzKyMPs-X8w78PSpD1eozCKkDpL0iWR6y-eYSQb1PtxEe0SifI3RwxSNGecBCRvikwt2WKe6b1EuPNucHgeTxMDzjGAcTAtaMTZ1q69EbTKZzOBL3miCtpq-dbsuSqqAfkQrxxnrM-6E2Xo6o93SCw.VNkxpGV8lOJq5_oWRa9Vcg.wcrYJnaSccXjrwRFLnakmE7O77GbEpnAWVL9uIJUKxUBMdTScxWHDQ5zC9-hGZrkEVD6KAtPTBdB2NtV9GgdFa2CpxNDgaxdBO3N8GKRlDp5NEKlNITQDgQbZnM0ckf_.9kha8tMGZqgQJaUx0MA3WQ" + "discord": "783593841529585665" }, - "record": { + "records": { "CNAME": "sanjay7178.github.io" } } diff --git a/domains/sanjaykumar.json b/domains/sanjaykumar.json new file mode 100644 index 000000000..0c85287be --- /dev/null +++ b/domains/sanjaykumar.json @@ -0,0 +1,11 @@ +{ + "description": "Vannila Portfolio", + "repo": "https://github.com/Ethi19/vanillajs-portfolio", + "owner": { + "username": "ethi19", + "email": "sanjaykumardec98@gmail.com" + }, + "records": { + "CNAME": "ethi19.github.io" + } +} diff --git a/domains/sanni.json b/domains/sanni.json index 7975abb87..8721706dd 100644 --- a/domains/sanni.json +++ b/domains/sanni.json @@ -3,7 +3,7 @@ "username": "sannidhyaroy", "email": "roysannidhya@gmail.com" }, - "record": { + "records": { "CNAME": "sannidhya.pages.dev" } } diff --git a/domains/sannidhya.json b/domains/sannidhya.json index a32483db1..37f8bc668 100644 --- a/domains/sannidhya.json +++ b/domains/sannidhya.json @@ -3,7 +3,7 @@ "username": "sannidhyaroy", "email": "roysannidhya@gmail.com" }, - "record": { + "records": { "URL": "https://sanni.is-a.dev" } } diff --git a/domains/sanooj.json b/domains/sanooj.json index bbf3697a6..060250c84 100644 --- a/domains/sanooj.json +++ b/domains/sanooj.json @@ -4,7 +4,7 @@ "username": "sanoojes", "email": "Sanoojes6371@gmail.com" }, - "record": { + "records": { "CNAME": "sanoojes.github.io" } } diff --git a/domains/santa.json b/domains/santa.json index 9c9bf9bf8..3dc9e7bc0 100644 --- a/domains/santa.json +++ b/domains/santa.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "StefanoMantero", - "email": "eldrazichiodo@gmail.com" - }, - "description": "Fun project for santa", - "record": { - "CNAME": "seal-app-up9wg.ondigitalocean.app" - } + "owner": { + "username": "StefanoMantero", + "email": "eldrazichiodo@gmail.com" + }, + "description": "Fun project for santa", + "records": { + "CNAME": "seal-app-up9wg.ondigitalocean.app" + } } diff --git a/domains/santhosh.json b/domains/santhosh.json index a59d2ea01..d3175e162 100644 --- a/domains/santhosh.json +++ b/domains/santhosh.json @@ -3,7 +3,7 @@ "username": "ABSanthosh", "email": "a.b.santhosh02@gmail.com" }, - "record": { + "records": { "CNAME": "absanthosh.github.io" } } diff --git a/domains/santhoshkani.json b/domains/santhoshkani.json new file mode 100644 index 000000000..36f73bd8f --- /dev/null +++ b/domains/santhoshkani.json @@ -0,0 +1,10 @@ +{ + "description": "Santhosh Kani - Personal Github Page", + "owner": { + "username": "santhoshkani", + "email": "santhosh.kani@gmail.com" + }, + "records": { + "CNAME": "santhoshkani.github.io" + } +} diff --git a/domains/santiago.json b/domains/santiago.json new file mode 100644 index 000000000..6d75b0723 --- /dev/null +++ b/domains/santiago.json @@ -0,0 +1,11 @@ +{ + "description": "Portafolio personal", + "repo": "https://github.com/smpineda129/portfolio", + "owner": { + "username": "smpineda129", + "email": "smpineda129@gmail.com" + }, + "records": { + "CNAME": "smpineda129.github.io" + } +} diff --git a/domains/santito.json b/domains/santito.json index 147dfffc7..6810909ac 100644 --- a/domains/santito.json +++ b/domains/santito.json @@ -5,7 +5,7 @@ "username": "San-tito", "email": "devsantito@gmail.com" }, - "record": { + "records": { "CNAME": "san-tito.github.io" } } diff --git a/domains/santosh.json b/domains/santosh.json index 46f1abb01..e987faba3 100644 --- a/domains/santosh.json +++ b/domains/santosh.json @@ -5,7 +5,7 @@ "username": "santoshvandari", "email": "info@bhandari-santosh.com.np" }, - "record": { + "records": { "URL": "https://bhandari-santosh.com.np/" } } diff --git a/domains/santoshgiri.json b/domains/santoshgiri.json new file mode 100644 index 000000000..d9d33d9a3 --- /dev/null +++ b/domains/santoshgiri.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/santosh2345/santosh2345.github.io", + "owner": { + "username": "santosh2345", + "email": "hi@santoshgiri.com.np" + }, + "records": { + "URL": "https://santoshgiri.com.np/" + } +} diff --git a/domains/santty.json b/domains/santty.json new file mode 100644 index 000000000..f422a1802 --- /dev/null +++ b/domains/santty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "santiagogr05", + "email": "san7iagogr.05@gmail.com" + }, + "records": { + "CNAME": "portfolio-santtys-projects.vercel.app" + } +} diff --git a/domains/sappy.json b/domains/sappy.json index 029d19cbe..3f64be8c0 100644 --- a/domains/sappy.json +++ b/domains/sappy.json @@ -3,7 +3,7 @@ "username": "Slddev", "email": "admin@sapinc.ga" }, - "record": { + "records": { "CNAME": "slddev.github.io" } } diff --git a/domains/sarang.json b/domains/sarang.json index 4828492e2..2a408bab6 100644 --- a/domains/sarang.json +++ b/domains/sarang.json @@ -3,7 +3,7 @@ "username": "i-supermario", "email": "sarang1699@gmail.com" }, - "record": { + "records": { "URL": "https://main--sarang-portfolio-site.netlify.app" } } diff --git a/domains/saras008.json b/domains/saras008.json new file mode 100644 index 000000000..b4ff92c6a --- /dev/null +++ b/domains/saras008.json @@ -0,0 +1,11 @@ +{ + "description": "Iyus Dedi Putra Github Profile", + "repo": "https://github.com/saras008/saras008.github.io", + "owner": { + "username": "saras008", + "email": "simatupang2000@gmail.com" + }, + "records": { + "CNAME": "saras008.github.io" + } +} diff --git a/domains/sarath.json b/domains/sarath.json index 9eea584b2..e1c9ff609 100644 --- a/domains/sarath.json +++ b/domains/sarath.json @@ -5,7 +5,7 @@ "username": "Sharkaboi", "email": "sarathsedu@gmail.com" }, - "record": { + "records": { "CNAME": "sharkaboi.github.io" } } diff --git a/domains/saraxa.json b/domains/saraxa.json deleted file mode 100644 index b6ffa9638..000000000 --- a/domains/saraxa.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "saraxa personal website", - "repo": "https://github.com/reef1447/reef1447.github.io", - "owner": { - "username": "reef1447", - "email": "spray123kira@gmail.com", - "discord": "saraxa#8899" - }, - "record": { - "CNAME": "reef1447.github.io" - } -} diff --git a/domains/sarcaster.json b/domains/sarcaster.json index a8c19e256..65dfe7386 100644 --- a/domains/sarcaster.json +++ b/domains/sarcaster.json @@ -7,7 +7,7 @@ "twitter": "sarcasterXO", "discord": "sarcasterxo" }, - "record": { + "records": { "CNAME": "sarcasterxo.github.io" } } diff --git a/domains/sarfaraz.json b/domains/sarfaraz.json index 29ca0df9f..7dffd11d6 100644 --- a/domains/sarfaraz.json +++ b/domains/sarfaraz.json @@ -4,7 +4,7 @@ "email": "sarfarazstark@gmail.com", "twitter": "sarfarazstark" }, - "record": { + "records": { "CNAME": "sarfarazstark.github.io" } } diff --git a/domains/sarthak-malhotra.json b/domains/sarthak-malhotra.json new file mode 100644 index 000000000..5d46767d3 --- /dev/null +++ b/domains/sarthak-malhotra.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website for Sarthak Malhotra", + "repo": "https://github.com/SaM13997/portfolio-simple", + "owner": { + "username": "Sam13997", + "email": "sarthakmalhotra251@gmail.com" + }, + "records": { + "CNAME": "www.webdevsam.pro" + } +} diff --git a/domains/sarthak.json b/domains/sarthak.json index 51d38e166..097563c65 100644 --- a/domains/sarthak.json +++ b/domains/sarthak.json @@ -4,7 +4,7 @@ "email": "dubey.sarthak0613@gmail.com", "discord": "877525618525364295" }, - "record": { + "records": { "CNAME": "dubey0613.github.io" } } diff --git a/domains/sashank.json b/domains/sashank.json index 8d9d68c38..3bcd6804b 100644 --- a/domains/sashank.json +++ b/domains/sashank.json @@ -3,7 +3,7 @@ "username": "shankypedia", "email": "sashankbhamidi@gmail.com" }, - "record": { + "records": { "URL": "https://sashank.wiki" } } diff --git a/domains/sashankp.json b/domains/sashankp.json new file mode 100644 index 000000000..123775f32 --- /dev/null +++ b/domains/sashankp.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio website", + "repo": "https://github.com/Sashankps/portfolio-2023-react", + "owner": { + "username": "Sashankps", + "email": "sashank.pilli@gmail.com" + }, + "records": { + "CNAME": "sashankps.vercel.app" + } +} diff --git a/domains/sasial.json b/domains/sasial.json index 1078092f3..2feec2024 100644 --- a/domains/sasial.json +++ b/domains/sasial.json @@ -5,7 +5,7 @@ "username": "sasial-dev", "discord": "Sasial#9375" }, - "record": { + "records": { "URL": "https://sasial.dev" } } diff --git a/domains/saswatsamal.json b/domains/saswatsamal.json index c4061581d..d5db1a622 100644 --- a/domains/saswatsamal.json +++ b/domains/saswatsamal.json @@ -6,7 +6,7 @@ "email": "samalsaswat0@gmail.com", "twitter": "TweetSaswat" }, - "record": { + "records": { "CNAME": "saswatsamal.github.io" } } diff --git a/domains/sathish.json b/domains/sathish.json index 804567dd4..a15890c3f 100644 --- a/domains/sathish.json +++ b/domains/sathish.json @@ -5,7 +5,7 @@ "username": "Muppidathi-sys", "email": "muppidathi00@gmail.com" }, - "record": { + "records": { "CNAME": "muppidathi-sys.github.io" } } diff --git a/domains/satindar.json b/domains/satindar.json index cb46edd97..fedf6c853 100644 --- a/domains/satindar.json +++ b/domains/satindar.json @@ -6,7 +6,15 @@ "email": "satindar@satindar-is.me", "twitter": "satindar31" }, - "record": { - "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"] + "records": { + "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"], + "DS": [ + { + "key_tag": 2371, + "algorithm": 13, + "digest_type": 2, + "digest": "C2074462471B81206F792AEC23469EF33DDC53538E8580DCCC92FD130C9A6096" + } + ] } } diff --git a/domains/satoshi.json b/domains/satoshi.json index 3e84ebfd5..e9e3ec134 100644 --- a/domains/satoshi.json +++ b/domains/satoshi.json @@ -4,7 +4,7 @@ "username": "marcossatoshi", "email": "marcos.satoshi@gmail.com" }, - "record": { + "records": { "CNAME": "marcossatoshi.github.io" } } diff --git a/domains/satr14.json b/domains/satr14.json index 85a4759ee..38698d70e 100644 --- a/domains/satr14.json +++ b/domains/satr14.json @@ -3,7 +3,7 @@ "username": "SX-9", "discord": "882595027132493864" }, - "record": { + "records": { "URL": "https://satr14.my.id/" } } diff --git a/domains/saturn.json b/domains/saturn.json index f85c1ab6a..feb783a10 100644 --- a/domains/saturn.json +++ b/domains/saturn.json @@ -5,7 +5,7 @@ "username": "neopromic", "email": "cusaowesley1@gmail.com" }, - "record": { + "records": { "URL": "https://saturn-project.vercel.app/" } } diff --git a/domains/satvikg7.json b/domains/satvikg7.json index 48eed03ad..9cf62c992 100644 --- a/domains/satvikg7.json +++ b/domains/satvikg7.json @@ -3,7 +3,7 @@ "username": "satvikg7", "email": "satvikg7@pm.me" }, - "record": { + "records": { "CNAME": "satvikg7.github.io" } } diff --git a/domains/satyam.json b/domains/satyam.json index 205dcec52..7ae8cc28d 100644 --- a/domains/satyam.json +++ b/domains/satyam.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lostboysatyam", - "email": "lostboysatyam54@gmail.com" - }, - "record": { - "NS": ["braden.ns.cloudflare.com","diana.ns.cloudflare.com"] - } + "owner": { + "username": "lostboysatyam", + "email": "lostboysatyam54@gmail.com" + }, + "records": { + "NS": ["braden.ns.cloudflare.com", "diana.ns.cloudflare.com"] + } } diff --git a/domains/satyamjha.json b/domains/satyamjha.json new file mode 100644 index 000000000..723418aad --- /dev/null +++ b/domains/satyamjha.json @@ -0,0 +1,11 @@ +{ + "description": "Pool full of Diamonds", + "repo": "https://github.com/dev-satyamjha", + "owner": { + "username": "dev-satyamjha", + "email": "realsatyam02@gmail.com" + }, + "records": { + "CNAME": "dev-satyamjha.github.io" + } +} diff --git a/domains/satyamv7.json b/domains/satyamv7.json index 4fb2c2b47..eaf369328 100644 --- a/domains/satyamv7.json +++ b/domains/satyamv7.json @@ -5,7 +5,7 @@ "username": "SatyamV7", "email": "satyamverma46@outlook.com" }, - "record": { + "records": { "CNAME": "satyamv7.github.io" } } diff --git a/domains/saumon.json b/domains/saumon.json index 2982bfea6..eaabe9821 100644 --- a/domains/saumon.json +++ b/domains/saumon.json @@ -4,7 +4,7 @@ "email": "saumon@duck.com", "discord": "823623660743950416" }, - "record": { + "records": { "A": ["109.234.166.168"] } } diff --git a/domains/saunak.json b/domains/saunak.json new file mode 100644 index 000000000..fb50567e2 --- /dev/null +++ b/domains/saunak.json @@ -0,0 +1,12 @@ +{ + "description": "my portfolio website", + "repo": "https://github.com/Saunakghosh10/dfolio.git", + "owner": { + "username": "Saunakghosh10", + "email": "saunakghosh710@gmail.com", + "discord": "695672697270829116" + }, + "records": { + "CNAME": "sgfolio-nu.vercel.app" + } +} diff --git a/domains/saurabh.json b/domains/saurabh.json index d967cdc68..ce79cd967 100644 --- a/domains/saurabh.json +++ b/domains/saurabh.json @@ -3,7 +3,7 @@ "username": "sohrubh", "email": "saurabhyadav5931@gmail.com" }, - "record": { + "records": { "CNAME": "sohrubh.github.io" } } diff --git a/domains/saurabhkirve.json b/domains/saurabhkirve.json index e54cd907e..21723d163 100644 --- a/domains/saurabhkirve.json +++ b/domains/saurabhkirve.json @@ -3,7 +3,7 @@ "username": "Sxurabh", "email": "saurabhkirve@gmail.com" }, - "record": { + "records": { "CNAME": "sxurabh.github.io" } } diff --git a/domains/saurabhnemade.json b/domains/saurabhnemade.json index 9463356ad..c9dfe193b 100644 --- a/domains/saurabhnemade.json +++ b/domains/saurabhnemade.json @@ -3,7 +3,7 @@ "username": "saurabhnemade", "email": "harsh0707051mail@gmail.com" }, - "record": { + "records": { "CNAME": "d1uwx91euvkosf.cloudfront.net" } } diff --git a/domains/savan-makawana.json b/domains/savan-makawana.json index a60cef5ff..4b86cccdd 100644 --- a/domains/savan-makawana.json +++ b/domains/savan-makawana.json @@ -4,7 +4,7 @@ "owner": { "username": "savan-makawana" }, - "record": { + "records": { "CNAME": "savan-makawana.github.io" } } diff --git a/domains/savar.json b/domains/savar.json index 8559bd0a3..4e62869c0 100644 --- a/domains/savar.json +++ b/domains/savar.json @@ -3,7 +3,7 @@ "username": "savar95x", "email": "skaar513@gmail.com" }, - "record": { + "records": { "CNAME": "savar95x.github.io" } } diff --git a/domains/savinov.json b/domains/savinov.json index f7eb56c4a..5a64b49cf 100644 --- a/domains/savinov.json +++ b/domains/savinov.json @@ -5,7 +5,7 @@ "username": "SavinTop", "email": "savindeath@gmail.com" }, - "record": { + "records": { "CNAME": "savintop.github.io" } } diff --git a/domains/savio.json b/domains/savio.json index 2d8173d2d..2b188de24 100644 --- a/domains/savio.json +++ b/domains/savio.json @@ -5,7 +5,7 @@ "username": "saviomartin", "email": "saviomartin2020@gmail.com" }, - "record": { + "records": { "CNAME": "saviomartin.github.io" } } diff --git a/domains/saviomartin.json b/domains/saviomartin.json index 52c6c2409..3b966b3ed 100644 --- a/domains/saviomartin.json +++ b/domains/saviomartin.json @@ -5,7 +5,7 @@ "username": "martinthampi", "email": "martinthampi@gmail.com" }, - "record": { + "records": { "CNAME": "martinthampi.github.io" } } diff --git a/domains/saxon.json b/domains/saxon.json index b670bf5f1..477b57d94 100644 --- a/domains/saxon.json +++ b/domains/saxon.json @@ -3,7 +3,7 @@ "username": "tensura-is-good", "email": "sands.is.undertable@gmail.com" }, - "record": { + "records": { "A": ["129.213.65.72"] } } diff --git a/domains/saxophone.json b/domains/saxophone.json index 09300ddff..e86ca42c5 100644 --- a/domains/saxophone.json +++ b/domains/saxophone.json @@ -1,12 +1,15 @@ { - "description": "my website", + "description": "my personal site where i do random stuff i guess", "owner": { - "username": "saxophone-guy", + "username": "saxophone-dev", "email": "itsarchit@keemail.me" }, - "record": { + "records": { "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], - "TXT": "forward-email=itsarchit@keemail.me", - "A": ["216.24.57.1"] + "TXT": [ + "forward-email=itsarchit@keemail.me", + "google-site-verification=xWSXW0sDedf6aw6w8tJnySqXZYExIAViuKmTEiuJZpU" + ], + "A": ["76.76.21.21"] } } diff --git a/domains/saya.json b/domains/saya.json index 11363cc07..3972548e2 100644 --- a/domains/saya.json +++ b/domains/saya.json @@ -6,7 +6,7 @@ "email": "aayantde@hotmail.com", "twitter": "AayanTDE" }, - "record": { + "records": { "CNAME": "yannotdev.github.io" } } diff --git a/domains/sayantan.json b/domains/sayantan.json index 04a233b7a..d93b33c80 100644 --- a/domains/sayantan.json +++ b/domains/sayantan.json @@ -6,7 +6,7 @@ "email": "legendsayantan@gmail.com", "twitter": "legendsayantan" }, - "record": { + "records": { "CNAME": "legendsayantan.github.io" } } diff --git a/domains/sayolight.json b/domains/sayolight.json index ccd00b154..cf7d31a17 100644 --- a/domains/sayolight.json +++ b/domains/sayolight.json @@ -3,7 +3,7 @@ "username": "Sayolight", "email": "kagerouls016@gmail.com" }, - "record": { + "records": { "CNAME": "sayolight.github.io" } } diff --git a/domains/sc.json b/domains/sc.json index 954a35471..dfacbc5df 100644 --- a/domains/sc.json +++ b/domains/sc.json @@ -5,13 +5,8 @@ "username": "SC136", "email": "swarchuri06@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/scan.json b/domains/scan.json index 53080ebe7..bfe7638e8 100644 --- a/domains/scan.json +++ b/domains/scan.json @@ -1,10 +1,9 @@ { "owner": { "username": "scanash00", - "email": "103391616+scanash00@users.noreply.github.com", "discord": "827389583342698536" }, - "record": { + "records": { "CNAME": "scanash.pages.dev" } } diff --git a/domains/scfp.json b/domains/scfp.json index 0d4ce0416..c4ab7b73f 100644 --- a/domains/scfp.json +++ b/domains/scfp.json @@ -4,7 +4,7 @@ "username": "cfpwastaken", "discord": "cfp (318394797822050315)" }, - "record": { + "records": { "CNAME": "dyn.picoscratch.de" } } diff --git a/domains/school.klent.json b/domains/school.klent.json index 4f18da243..d36c06f3e 100644 --- a/domains/school.klent.json +++ b/domains/school.klent.json @@ -4,7 +4,7 @@ "email": "kleeinlmao@gmail.com", "discord": "763581985410121769" }, - "record": { + "records": { "CNAME": "ghs.google.com" } } diff --git a/domains/schuh.json b/domains/schuh.json new file mode 100644 index 000000000..f3d78c0a5 --- /dev/null +++ b/domains/schuh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vqpe", + "email": "theschuhofyou@gmail.com" + }, + "records": { + "CNAME": "vqpe.github.io" + } +} diff --git a/domains/schumerism.json b/domains/schumerism.json index 90c4b59f9..29a363eab 100644 --- a/domains/schumerism.json +++ b/domains/schumerism.json @@ -3,7 +3,7 @@ "username": "homosapiensapien", "email": "nathanielswoo@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/scientific-dev.json b/domains/scientific-dev.json index 1721832d9..95ecdd8da 100644 --- a/domains/scientific-dev.json +++ b/domains/scientific-dev.json @@ -6,7 +6,7 @@ "email": "scientificguy007@gmail.com", "twitter": "ScientificDev" }, - "record": { + "records": { "URL": "https://thesudarsandev.xyz" } } diff --git a/domains/scoobies.json b/domains/scoobies.json index faf0e6f0b..f49a873f9 100644 --- a/domains/scoobies.json +++ b/domains/scoobies.json @@ -5,7 +5,7 @@ "username": "turtletown73", "email": "wetturtle45@gmail.com" }, - "record": { + "records": { "CNAME": "turtletown73.github.io" } } diff --git a/domains/scoobis.json b/domains/scoobis.json index d07c18469..08523df49 100644 --- a/domains/scoobis.json +++ b/domains/scoobis.json @@ -5,7 +5,7 @@ "username": "turtletown73", "email": "wetturtle45@gmail.com" }, - "record": { + "records": { "A": ["174.182.75.57"] } } diff --git a/domains/scor32k.json b/domains/scor32k.json index 89af0f533..0fbb04030 100644 --- a/domains/scor32k.json +++ b/domains/scor32k.json @@ -3,7 +3,7 @@ "username": "scorcism", "email": "abhishekpathak1720@gmail.com" }, - "record": { + "records": { "URL": "https://scor32k.vercel.app/" } } diff --git a/domains/scorcism.json b/domains/scorcism.json index d19f32a3a..66ca36783 100644 --- a/domains/scorcism.json +++ b/domains/scorcism.json @@ -3,7 +3,7 @@ "username": "scorcism", "email": "abhishekpathak1720@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/scorcism" } } diff --git a/domains/scythemedia.json b/domains/scythemedia.json index faa8f56e5..a7e2aa815 100644 --- a/domains/scythemedia.json +++ b/domains/scythemedia.json @@ -3,13 +3,8 @@ "username": "ScytheMediaTheDev", "email": "tswartz22@aol.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/sdheeraj.json b/domains/sdheeraj.json index 73e3dfcb2..b2ae50c5c 100644 --- a/domains/sdheeraj.json +++ b/domains/sdheeraj.json @@ -1,9 +1,8 @@ { "owner": { - "username": "17sdheeraj", - "OWL": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InVzZXJfaWQiOiIxMzE4NDk3NjUiLCJ1c2VybmFtZSI6IjE3c2RoZWVyYWoiLCJlbWFpbCI6IjE3c2RoZWVyYWpAd2luZ2Fyci5ldS5vcmcifSwiZXhwaXJlc0luIjoiOTk5OXkiLCJpYXQiOjE3MjE1MzM2ODJ9.7wMG7oM75_RVLS7uWP0b0gqJOP_v9jsfxRq-UcqPlgM" + "username": "17sdheeraj" }, - "record": { + "records": { "CNAME": "17sdheeraj.github.io" } } diff --git a/domains/sdizdarevic.json b/domains/sdizdarevic.json index 9fbbc862c..048a05a45 100644 --- a/domains/sdizdarevic.json +++ b/domains/sdizdarevic.json @@ -5,7 +5,7 @@ "username": "sdizdarevic", "email": "saudin.dizdarevic@gmail.com" }, - "record": { + "records": { "CNAME": "sdizdarevic.github.io" } } diff --git a/domains/sdp.json b/domains/sdp.json index 48ad79422..680c6af09 100644 --- a/domains/sdp.json +++ b/domains/sdp.json @@ -2,10 +2,9 @@ "owner": { "username": "Stef-00012", "discord": "694986201739952229", - "github_id": 81536172, - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "github_id": 81536172 }, - "record": { + "records": { "CNAME": "proxy.stefdp.lol" } } diff --git a/domains/sdxqw.json b/domains/sdxqw.json index 46c540625..6b55bad1d 100644 --- a/domains/sdxqw.json +++ b/domains/sdxqw.json @@ -5,7 +5,7 @@ "username": "sdxqw", "email": "xntrowdev@gmail.com" }, - "record": { + "records": { "CNAME": "sdxqw.github.io" } } diff --git a/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json b/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json index e0fb239cf..ea80291f0 100644 --- a/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json +++ b/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "sea-horse-with-really-long-neck-and-fabulous-legs.pages.dev" } } diff --git a/domains/seanconroy.json b/domains/seanconroy.json index e2e95f014..fbcb093a1 100644 --- a/domains/seanconroy.json +++ b/domains/seanconroy.json @@ -3,7 +3,7 @@ "username": "seanconroy2021", "email": "github@seanconroy.link" }, - "record": { + "records": { "URL": "https://seanconroy.link" } } diff --git a/domains/seba.json b/domains/seba.json index d2c400be7..1541c2c6d 100644 --- a/domains/seba.json +++ b/domains/seba.json @@ -3,7 +3,7 @@ "username": "ssxbaa", "email": "ssxbaa@proton.me" }, - "record": { + "records": { "CNAME": "ssxbaa.github.io" } } diff --git a/domains/sebaslv.json b/domains/sebaslv.json index 819018324..3228c5926 100644 --- a/domains/sebaslv.json +++ b/domains/sebaslv.json @@ -3,7 +3,7 @@ "username": "AfterLehxuz", "email": "juans.lopez2004@gmail.com" }, - "record": { + "records": { "CNAME": "sebaslv.vercel.app" } } diff --git a/domains/sebastian.json b/domains/sebastian.json index dc11746eb..9b9c4c3a7 100644 --- a/domains/sebastian.json +++ b/domains/sebastian.json @@ -3,13 +3,8 @@ "username": "bsnts", "email": "wwpoqpua@anonaddy.me" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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/sebastiand.json b/domains/sebastiand.json index 862a2bdf1..f77ec3519 100644 --- a/domains/sebastiand.json +++ b/domains/sebastiand.json @@ -1,10 +1,9 @@ { "owner": { "username": "sebastiandg7", - "discord": "208368273086087170", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.TSHkwx0z2f7tKPzuS6eYo2gfqbD8VG1tfvr34qhGK-SB78GxVj0PXm_kT-ITkOx_h680FZf1__BzFHrEVPoSpFgv2aVOc4QYbk7i0qXPnVxZA9h6AgXMSwVTng-c7xd4vd3qsfZm7re-UBvxGPfYtwSbKPXWs_DxxB-P2Ci1Xzv07A6haVyyqectB_jctnWUq0h3E8r3LfbdnqUut1eQzGPZhbHQj-WPm3XaODu1BF5iiV18dKUNO-Pnv2OXc2AnYXIQPbRYuWo4mXCnOJlNItzhgHJnCKyzihiCJ_ppx6dOzrVtNMDd3D1WrrhK3mkZLnk2wsQnpNtENnez3i8CfQ._Pb9BHSmR48rQv8Wtb-DuQ.miPhqty--2dTp9YtR6eMxGT_YWhIc1Wn6W-zPy-o7luz6VpAii4KYpTt5NQ5rDw8krzrRevGjv2UEw4PAJJ5wp3Kgnz0EQQQx-xMu-64Hyo.05u2HUx_NgIxZ8YRPPEuqQ" + "discord": "208368273086087170" }, - "record": { + "records": { "CNAME": "sebastiandg7.github.io" } } diff --git a/domains/sebastianguz.json b/domains/sebastianguz.json new file mode 100644 index 000000000..560b6ae48 --- /dev/null +++ b/domains/sebastianguz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sebaguse", + "email": "sebaguse@gmail.com" + }, + "records": { + "CNAME": "friendly-churros-e20592.netlify.app" + } +} diff --git a/domains/sebastianriveros.json b/domains/sebastianriveros.json new file mode 100644 index 000000000..147b848e2 --- /dev/null +++ b/domains/sebastianriveros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Wisauw", + "email": "riveross92@gmail.com" + }, + "records": { + "CNAME": "sebastian-riveros.vercel.app" + } +} diff --git a/domains/sebaz.json b/domains/sebaz.json index b96fe5d04..b619d6f86 100644 --- a/domains/sebaz.json +++ b/domains/sebaz.json @@ -4,7 +4,7 @@ "username": "iSebazz", "email": "iSebazz@outlook.es" }, - "record": { + "records": { "CNAME": "usebazz.github.io" } } diff --git a/domains/sebb.json b/domains/sebb.json index 91b134988..8e7a053bc 100644 --- a/domains/sebb.json +++ b/domains/sebb.json @@ -3,7 +3,7 @@ "username": "WiseFrederick", "email": "plen.plan.plane.plene@gmail.com" }, - "record": { + "records": { "CNAME": "sebb.pages.dev" } } diff --git a/domains/sebdev.json b/domains/sebdev.json new file mode 100644 index 000000000..b8cfaf80e --- /dev/null +++ b/domains/sebdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sebdeveloper6952", + "email": "seb@sebdev.io" + }, + "records": { + "CNAME": "blog.sebdev.io" + } +} diff --git a/domains/secredasho.json b/domains/secredasho.json index 9061c611f..35db580c7 100644 --- a/domains/secredasho.json +++ b/domains/secredasho.json @@ -3,7 +3,7 @@ "username": "secredasho", "email": "dtran072712@outlook.com" }, - "record": { + "records": { "CNAME": "secredasho.github.io" } } diff --git a/domains/secsum.json b/domains/secsum.json new file mode 100644 index 000000000..5ec2ccbc4 --- /dev/null +++ b/domains/secsum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NgoQuangThien", + "email": "quangthien18032000@gmail.com" + }, + "records": { + "A": ["3.24.49.246"] + } +} diff --git a/domains/secure.furqan.json b/domains/secure.furqan.json index 4391efa0b..1ed0ffc8b 100644 --- a/domains/secure.furqan.json +++ b/domains/secure.furqan.json @@ -3,7 +3,7 @@ "username": "rediffurqan", "email": "frqnlove8765@gmail.com" }, - "record": { + "records": { "CNAME": "phonesme.onrender.com" } } diff --git a/domains/securesandbox.json b/domains/securesandbox.json new file mode 100644 index 000000000..16a8aee12 --- /dev/null +++ b/domains/securesandbox.json @@ -0,0 +1,16 @@ +{ + "description": "Dominio para pruebas de cyberseguridad con dominio is-a.dev", + "owner": { + "username": "CrowleyCrowd", + "email": "ealba.platforms@outlook.com", + "discord": "crowleycrowd" + }, + "records": { + "MX": ["feedback-smtp.us-east-1.amazonses.com"], + "TXT": [ + "v=spf1 include:amazonses.com ~all", + "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqstJSWbINtFx1fSomoSdFnVgLNt9dQgSrwrBQKyWqVd/FCUJxSKftjXAUthTCddxGwggtlrm3nbj8/fwNUpTDJ0znmG3JnuSmZ3Ac/HBrnySZjyQw152/A9eW+wMYMsk4DjACYfkGubdIx12i5LS4YFeBbYjtAVHkf4Oy7Xj2EQIDAQAB", + "v=DMARC1; p=none;" + ] + } +} diff --git a/domains/seekhue.json b/domains/seekhue.json new file mode 100644 index 000000000..b4ea45487 --- /dev/null +++ b/domains/seekhue.json @@ -0,0 +1,10 @@ +{ + "description": "牙慧 (Blog)", + "owner": { + "username": "hu3rror", + "email": "hu3rror@proton.me" + }, + "records": { + "A": ["75.2.60.5"] + } +} \ No newline at end of file diff --git a/domains/seen.json b/domains/seen.json index 4d2ce4432..83ea33441 100644 --- a/domains/seen.json +++ b/domains/seen.json @@ -4,11 +4,9 @@ "email": "seendator@outlook.com", "discord": "852477599476482048" }, - "record": { + "records": { "URL": "https://github.com/Seendator", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": [ - "v=spf1 include:spf.improvmx.com include:_spf.elasticemail.com ~all" - ] + "TXT": ["v=spf1 include:spf.improvmx.com include:_spf.elasticemail.com ~all"] } } diff --git a/domains/seiko.json b/domains/seiko.json index 97b55377e..2c328da3a 100644 --- a/domains/seiko.json +++ b/domains/seiko.json @@ -4,7 +4,7 @@ "email": "seikoo.dev@gmail.com", "discord": "1293641904860172389" }, - "record": { + "records": { "CNAME": "seiko-7oa.pages.dev" } } diff --git a/domains/seka.json b/domains/seka.json index 17e89e94b..3000ac92b 100644 --- a/domains/seka.json +++ b/domains/seka.json @@ -6,7 +6,7 @@ "email": "sekausername@gmail.com", "twitter": "sekateur_" }, - "record": { + "records": { "CNAME": "lutherantz.github.io" } } diff --git a/domains/sekuji.json b/domains/sekuji.json index 0d44a00b2..11d3d9574 100644 --- a/domains/sekuji.json +++ b/domains/sekuji.json @@ -4,7 +4,7 @@ "username": "sekuji", "discord": "sekuji#9595" }, - "record": { + "records": { "CNAME": "sekuji.github.io" } } diff --git a/domains/selinjodhani.json b/domains/selinjodhani.json index b4c9136fd..470c16b26 100644 --- a/domains/selinjodhani.json +++ b/domains/selinjodhani.json @@ -3,7 +3,7 @@ "username": "SelinJodhani", "email": "jodhaniselin.sj@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/selinjodhani" } } diff --git a/domains/selvakumaran.json b/domains/selvakumaran.json index 36e03f883..0e25227c3 100644 --- a/domains/selvakumaran.json +++ b/domains/selvakumaran.json @@ -3,7 +3,7 @@ "username": "selvaklnc", "email": "selvakumaran301@gmail.com" }, - "record": { + "records": { "CNAME": "selvaklnc.github.io" } } diff --git a/domains/semant.json b/domains/semant.json index a5e64f98c..ac195029a 100644 --- a/domains/semant.json +++ b/domains/semant.json @@ -5,7 +5,7 @@ "email": "contact@semant.is-a.dev", "discord": "semant" }, - "record": { + "records": { "A": ["69.30.249.53"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/semanteo.json b/domains/semanteo.json index 6a1a80b12..d43533d91 100644 --- a/domains/semanteo.json +++ b/domains/semanteo.json @@ -5,7 +5,7 @@ "username": "Semanteo", "email": "simsim3374@gmail.com" }, - "record": { + "records": { "CNAME": "semanteo.github.io" } } diff --git a/domains/sembiland.json b/domains/sembiland.json index fafe88295..ed2e24b97 100644 --- a/domains/sembiland.json +++ b/domains/sembiland.json @@ -3,7 +3,7 @@ "username": "TTGGHHgjkG", "email": "tgfeghfcrxctchvvhv@gmail.com" }, - "record": { + "records": { "URL": "https://sembiland.my.canva.site" } } diff --git a/domains/sen.json b/domains/sen.json index 5a3db3432..2ed8a9d4c 100644 --- a/domains/sen.json +++ b/domains/sen.json @@ -3,7 +3,7 @@ "username": "Leclu", "email": "minsnow1889@gmail.com" }, - "record": { + "records": { "CNAME": "leclu.github.io" } } diff --git a/domains/senaditya.json b/domains/senaditya.json index 79b96750f..cef65f721 100644 --- a/domains/senaditya.json +++ b/domains/senaditya.json @@ -3,7 +3,7 @@ "username": "senaditya", "email": "aditya.sen1hl@gmail.com" }, - "record": { + "records": { "CNAME": "senaditya.pages.dev" } } diff --git a/domains/send.ante.json b/domains/send.ante.json new file mode 100644 index 000000000..694259862 --- /dev/null +++ b/domains/send.ante.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "records": { + "MX": [ + { + "target": "feedback-smtp.eu-west-1.amazonses.com", + "priority": 10 + } + ], + "TXT": ["v=spf1 include:amazonses.com ~all"] + } +} diff --git a/domains/send.auth.sign.alvin.json b/domains/send.auth.sign.alvin.json new file mode 100644 index 000000000..5139f10fe --- /dev/null +++ b/domains/send.auth.sign.alvin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "records": { + "MX": ["feedback-smtp.ap-northeast-1.amazonses.com"], + "TXT": ["v=spf1 include:amazonses.com ~all"] + } +} diff --git a/domains/send.blogs.akk1to.json b/domains/send.blogs.akk1to.json new file mode 100644 index 000000000..bcd0da6fe --- /dev/null +++ b/domains/send.blogs.akk1to.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@outlook.com" + }, + "records": { + "MX": ["feedback-smtp.us-east-1.amazonses.com"], + "TXT": "v=spf1 include:amazonses.com ~all" + } +} diff --git a/domains/senninseyi.json b/domains/senninseyi.json index f04333ca3..37b89df13 100644 --- a/domains/senninseyi.json +++ b/domains/senninseyi.json @@ -4,7 +4,7 @@ "username": "Senninseyi", "email": "seyi.oyebamiji@gmail.com" }, - "record": { + "records": { "URL": "https://beyondata.co" } } diff --git a/domains/senthil.json b/domains/senthil.json new file mode 100644 index 000000000..e4bd409ac --- /dev/null +++ b/domains/senthil.json @@ -0,0 +1,11 @@ +{ + "description": "Senthil's personal tech blog and portfolio", + "repo": "https://github.com/gptechland/senthil-portfolio", + "owner": { + "username": "gptechland", + "email": "skn.hills@gmail.com" + }, + "records": { + "CNAME": "gptechland.github.io" + } +} diff --git a/domains/senzore.json b/domains/senzore.json index e838eab9b..039e93648 100644 --- a/domains/senzore.json +++ b/domains/senzore.json @@ -3,7 +3,7 @@ "username": "SanUwU", "email": "sanjayakunz@gmail.com" }, - "record": { + "records": { "URL": "https://senzore.carrd.co" } } diff --git a/domains/sep.json b/domains/sep.json new file mode 100644 index 000000000..9ebc7fd3a --- /dev/null +++ b/domains/sep.json @@ -0,0 +1,11 @@ +{ + "description": "personel-website", + "repo": "https://github.com/sepultrex/sepultrex.github.io", + "owner": { + "username": "sepultrex", + "email": "sepultrex@gmail.com" + }, + "records": { + "CNAME": "sepultrex.github.io" + } +} diff --git a/domains/seppegeuens.json b/domains/seppegeuens.json index 292bf9279..77339613d 100644 --- a/domains/seppegeuens.json +++ b/domains/seppegeuens.json @@ -3,7 +3,7 @@ "username": "SeppeG", "email": "geuensseppe@gmail.com" }, - "record": { + "records": { "CNAME": "seppeg.github.io" } } diff --git a/domains/seqyu.json b/domains/seqyu.json index 1276538d5..1265365c0 100644 --- a/domains/seqyu.json +++ b/domains/seqyu.json @@ -1,12 +1,11 @@ { - "description": "I'm just some guy who enjoys Linux a bit too much", - "repo": "https://github.com/nvct-website/nvct-website.github.io", - "owner": { - "username": "nvct-website", - "email": "", - "discord": "@seqyu." - }, - "record": { - "CNAME": "nvct-website.github.io" - } + "description": "I'm just some guy who enjoys Linux a bit too much", + "repo": "https://github.com/nvct-website/nvct-website.github.io", + "owner": { + "username": "nvct-website", + "discord": "@seqyu." + }, + "records": { + "CNAME": "nvct-website.github.io" + } } diff --git a/domains/serena.json b/domains/serena.json index f7145b71e..8b367d3e3 100644 --- a/domains/serena.json +++ b/domains/serena.json @@ -4,7 +4,7 @@ "username": "Serena-io", "discord": "Serena#1165" }, - "record": { + "records": { "CNAME": "serena-io.github.io" } } diff --git a/domains/sergarsilla.json b/domains/sergarsilla.json new file mode 100644 index 000000000..28805a97f --- /dev/null +++ b/domains/sergarsilla.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sergarsilla", + "email": "sergarsilla@gmail.com" + }, + "records": { + "CNAME": "sergarsilla.github.io" + } +} diff --git a/domains/sergio.json b/domains/sergio.json new file mode 100644 index 000000000..bce3848a5 --- /dev/null +++ b/domains/sergio.json @@ -0,0 +1,10 @@ +{ + "description": "Mi sitio web personal", + "owner": { + "username": "sgm1018", + "email": "sgm1018@proton.me" + }, + "records": { + "URL": "https://www.linkedin.com/in/sergiogm1999/" + } +} diff --git a/domains/sergioperea.json b/domains/sergioperea.json new file mode 100644 index 000000000..c98721823 --- /dev/null +++ b/domains/sergioperea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sperea", + "email": "perea@mailfence.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/serhii-koba.json b/domains/serhii-koba.json index 4027c1e6b..469ed8ad1 100644 --- a/domains/serhii-koba.json +++ b/domains/serhii-koba.json @@ -1,11 +1,11 @@ { - "description": "A personal blog website", - "repo": "https://github.com/sergey-koba-mobidev/static_blog", - "owner": { - "username": "sergey-koba-mobidev", - "email": "desgnkiss@gmail.com" - }, - "record": { - "CNAME": "static-blog-o3omu.ondigitalocean.app" - } + "description": "A personal blog website", + "repo": "https://github.com/sergey-koba-mobidev/static_blog", + "owner": { + "username": "sergey-koba-mobidev", + "email": "desgnkiss@gmail.com" + }, + "records": { + "CNAME": "static-blog-o3omu.ondigitalocean.app" + } } diff --git a/domains/seria.json b/domains/seria.json index 67c217e8b..93a930972 100644 --- a/domains/seria.json +++ b/domains/seria.json @@ -6,7 +6,7 @@ "email": "seria.ati@gmail.com", "twitter": "seria_ati" }, - "record": { + "records": { "CNAME": "seriaati.github.io" } } diff --git a/domains/seriesreminder.json b/domains/seriesreminder.json index 13d1ee770..eafc19f3c 100644 --- a/domains/seriesreminder.json +++ b/domains/seriesreminder.json @@ -3,7 +3,7 @@ "username": "Series-Reminder", "email": "eric@seriesreminder.com" }, - "record": { + "records": { "URL": "https://seriesreminder.com" } } diff --git a/domains/serignembaye.json b/domains/serignembaye.json index df386209c..6a1824bb2 100644 --- a/domains/serignembaye.json +++ b/domains/serignembaye.json @@ -5,7 +5,7 @@ "email": "serigne.mby@gmail.com", "twitter": "djieggo" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/serjan-nasredin.json b/domains/serjan-nasredin.json index b52187ac6..c83ed9b04 100644 --- a/domains/serjan-nasredin.json +++ b/domains/serjan-nasredin.json @@ -4,7 +4,7 @@ "username": "serjan-nasredin", "email": "snxx.lppxx@gmail.com" }, - "record": { + "records": { "CNAME": "serjan-nasredin.github.io" } } diff --git a/domains/serstars.json b/domains/serstars.json index 360e5f446..dfa66c26c 100644 --- a/domains/serstars.json +++ b/domains/serstars.json @@ -4,7 +4,7 @@ "username": "SerStars", "twitter": "SerStars_lol" }, - "record": { + "records": { "CNAME": "serstars.github.io" } } diff --git a/domains/server.chiragnahata.json b/domains/server.chiragnahata.json index 726befd50..4dcdef8bf 100644 --- a/domains/server.chiragnahata.json +++ b/domains/server.chiragnahata.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/server.mrdiamond.json b/domains/server.mrdiamond.json index 5fafbf9d2..e285b01f3 100644 --- a/domains/server.mrdiamond.json +++ b/domains/server.mrdiamond.json @@ -3,7 +3,7 @@ "username": "MrDiamondDog", "email": "drewratner27@gmail.com" }, - "record": { + "records": { "A": ["129.146.51.207"] }, "proxied": false diff --git a/domains/serverpanel.json b/domains/serverpanel.json index 0436a3d08..875ad906d 100644 --- a/domains/serverpanel.json +++ b/domains/serverpanel.json @@ -3,7 +3,7 @@ "username": "Neeedrose", "email": "bobbyaneville@gmail.com" }, - "record": { + "records": { "A": ["34.75.192.79"] } } diff --git a/domains/service.rachancheet.json b/domains/service.rachancheet.json new file mode 100644 index 000000000..b72500285 --- /dev/null +++ b/domains/service.rachancheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rachancheet", + "email": "raxxsngh37@gmail.com" + }, + "records": { + "A": ["152.67.163.7"] + } +} diff --git a/domains/services.defective.json b/domains/services.defective.json new file mode 100644 index 000000000..60c141684 --- /dev/null +++ b/domains/services.defective.json @@ -0,0 +1,10 @@ +{ + "description": "A sub-domain for my services", + "owner": { + "username": "Defective4", + "email": "def3ctive4@gmail.com" + }, + "records": { + "A": ["130.61.27.34"] + } +} diff --git a/domains/services.not-ethan.json b/domains/services.not-ethan.json index f513c458c..5fcec56b0 100644 --- a/domains/services.not-ethan.json +++ b/domains/services.not-ethan.json @@ -3,7 +3,7 @@ "username": "not-a-ethan", "discord": "not_ethan." }, - "record": { + "records": { "CNAME": "not-a-ethan.github.io" } } diff --git a/domains/sesasan.json b/domains/sesasan.json new file mode 100644 index 000000000..98b86bcd9 --- /dev/null +++ b/domains/sesasan.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio de SESASAN - Desarrollador y programador full stack", + "owner": { + "username": "SESASAN", + "email": "sebastian.perezaraujo@outlook.com" + }, + "records": { + "CNAME": "sesasan.netlify.app" + } +} diff --git a/domains/seui.json b/domains/seui.json index bf2218e7c..51f861d8d 100644 --- a/domains/seui.json +++ b/domains/seui.json @@ -1,10 +1,9 @@ { "owner": { "username": "mjy9088", - "discord": "252323012282548224", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.HwnzkKIzKgvD6v84UwqiOXgJRtgaG1JdD3BmON5Y839lJqVRfJkC21zJDQSNkvadwB0tY-51hbUeBzhd-B339WZlugRos3Apdez9Yk_8_DpMUbvbhvp4EgarIlXLU36mKxFRE0TpO1jYbyCiyYoZjpVEl332qMOUnxKmjpAPbzZJRg9O10JJdAYWcIdTg0B9GTxXdW4ZXu9nbV1EXEW0IBmNLLOnHhhfnb4zySlspptQmasv1TMjeZ7dSXdArpLXj3fXJjr8eqSiY2r2Zjm0pkatbi4DD0_dWBpbcrX6Lehz-8gVvznVBBSBkQk3GE3BFrbXy32aOJuic7fFYmBUYg.A9o-pDxvlpb1UHE2GiiQpQ.dr0Rjsh8_CGyNUc1nFkk2kpPT8AkPNdlo-N0D9M1jpjMrAe1Xp7_hHcgx13FprS2M4pUO9mrb70EBDKZFlOPrA.DEBRHXvbC9bOBrOC-056Cw" + "discord": "252323012282548224" }, - "record": { + "records": { "A": ["140.245.70.146"] } } diff --git a/domains/sev.json b/domains/sev.json index be4a9e4ce..b46a0c139 100644 --- a/domains/sev.json +++ b/domains/sev.json @@ -3,7 +3,7 @@ "username": "Mai1ii", "email": "micomacabali14@gmail.com" }, - "record": { + "records": { "URL": "https://bio.link/sevi" } } diff --git a/domains/seven.json b/domains/seven.json index 5762d7f61..61414c16f 100644 --- a/domains/seven.json +++ b/domains/seven.json @@ -1,20 +1,11 @@ { "owner": { "username": "7op3", - "email": "134126156+7op3@users.noreply.github.com", "discord": "882124409945587773" }, - "record": { - "A": [ - "185.199.110.153", - "185.199.108.153", - "185.199.111.153", - "185.199.109.153" - ], + "records": { + "A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"], "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"], - "TXT": [ - "sl-verification=ivfyrhmrpfrkrgrkywcghobxqkhynw", - "v=spf1 include:simplelogin.co ~all" - ] + "TXT": ["sl-verification=ivfyrhmrpfrkrgrkywcghobxqkhynw", "v=spf1 include:simplelogin.co ~all"] } } diff --git a/domains/sevinda-herath._domainkey.sevinda-herath.json b/domains/sevinda-herath._domainkey.sevinda-herath.json new file mode 100644 index 000000000..fa4e201ab --- /dev/null +++ b/domains/sevinda-herath._domainkey.sevinda-herath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "records": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCAhBt3btz/Lvou5WOJo+eF4YYWNZHxX0h5vPCfcP0IVtxOcicEhpvuY8DZ86ooVAptJeXKeuXVOz0J3SkAeGu2OAPZdHwKmBXTxvIx040Qhb3plS3T1iQXj3gu8SjkZk2w6X/07iQB+KkUYD8wvAT6UUIyNugQPd74LRYpOV1pRQIDAQAB" + } +} diff --git a/domains/sevinda-herath.json b/domains/sevinda-herath.json index b5202b92c..0a97db2b5 100644 --- a/domains/sevinda-herath.json +++ b/domains/sevinda-herath.json @@ -1,10 +1,19 @@ { - "owner": { - "username": "Sevinda-Herath", - "email": "sevindaherath@gmail.com" - }, - "record": { - "CNAME": "sevinda-herath.github.io" - }, - "proxied": true + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "records": { + "CNAME": "sevinda-herath.github.io", + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"], + "TXT": "v=spf1 include:zohomail.com ~all" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/Sevinda-Herath", + "/linkedin": "https://www.linkedin.com/in/sevindaherath", + "/youtube": "https://www.youtube.com/channel/UCz3Xgf25_heOC86kxdqunkA" + } + }, + "proxied": true } diff --git a/domains/sewt.json b/domains/sewt.json index 1823b48d7..4d9c3669e 100644 --- a/domains/sewt.json +++ b/domains/sewt.json @@ -3,13 +3,15 @@ "username": "SkyExploreWasTaken", "discord": "1049263707177353247" }, - "record": { + "records": { "A": ["37.27.51.34"], "AAAA": ["2a01:4f9:3081:399c::4"], - "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], + "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"], "TXT": [ - "v=spf1 include:zohomail.eu ~all", - "domain-verification=skyexplorewastaken" + "sl-verification=sibwuwbmtopnrrdmfxvdabidjzvcow", + "v=spf1 include:simplelogin.co ~all", + "domain-verification=skyexplorewastaken", + "vyntr-verify=1745336503391-httpssewtisadev-89il2frr4s7" ] }, "proxied": false diff --git a/domains/seyioo.json b/domains/seyioo.json deleted file mode 100644 index d8b5b46cd..000000000 --- a/domains/seyioo.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "For a personnal portfolio", - "repo": "https://github.com/seyiooo/seyiooo.github.io", - "owner": { - "username": "seyiooo", - "discord": "sey.ioo", - "instagram": "sey.ioo" - }, - "record": { - "CNAME": "seyiooo.github.io" - } -} diff --git a/domains/sezersinanoglu.json b/domains/sezersinanoglu.json index 0988b7c01..a0a198b21 100644 --- a/domains/sezersinanoglu.json +++ b/domains/sezersinanoglu.json @@ -3,7 +3,7 @@ "username": "sezersinanoglu", "email": "sezersinanoglu@gmail.com" }, - "record": { + "records": { "CNAME": "sezersinanoglu.github.io" } } diff --git a/domains/sf.json b/domains/sf.json index 08eb0192a..f437d93ca 100644 --- a/domains/sf.json +++ b/domains/sf.json @@ -1,10 +1,9 @@ { "owner": { "username": "XikiZxGS", - "discord": "1015654462334971925", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Zh0wnCQid9C4pOjptUVh6ESkNEKZxjJadK8auOvitr7Rx67nfqb_orGsPr9hXGdfOGzLcR1sB3v5KrB-nbqUQUUgGjs9zaKjwi99S_pwZgU3oi9cY2TePWNxM1ZvdCKptiR3C1CMtDbyPOpvsvRSEGyHZtOzdcrTV4OpnR2Hi7X7nD37wR8ZjCS60YhyPPlb8HUr6_Aq2o2RItJUYwZVB1t7BRWdHL-tYwbtZXWiOER6D1nCSj86AT3rKILr5DMbEvh1SOQIJ3pf5D9HtgIW3DgkyrutOEhxn4A8xzytPi-1api0AJJvpGv3Xaj63IttB5meuivJqqrtmL86dZxABA.hh7QLO4KsuZ7-zTiHi8GaA.6EDptXq34bfUr-OXUGTWkq1LTaLq-NNgU2EXgd-4GngxX1QzrxvUenF4wsn6DmQ1yPnmnIGdczioMxdsYk0JyUYbpHaCvOsW-xyH4a_EiMk.YYLgMoT8Z_FUJtmf9ImfRw" + "discord": "1015654462334971925" }, - "record": { + "records": { "CNAME": "xikizxgs.github.io" } } diff --git a/domains/sfe.json b/domains/sfe.json index 67bbef4e1..092ae494e 100644 --- a/domains/sfe.json +++ b/domains/sfe.json @@ -5,7 +5,7 @@ "username": "leecheeyong", "email": "tribejoe.gg@gmail.com" }, - "record": { + "records": { "CNAME": "hosting.gitbook.io" } } diff --git a/domains/sfinxv.json b/domains/sfinxv.json index 5c29889b4..897fb2c7c 100644 --- a/domains/sfinxv.json +++ b/domains/sfinxv.json @@ -4,7 +4,7 @@ "discord": "sfinxv" }, "repo": "https://github.com/SFINXVC/sfinxvc.github.io", - "record": { + "records": { "CNAME": "sfinxvc.github.io" } } diff --git a/domains/sfsef.json b/domains/sfsef.json index 30a534330..a2a0e85d9 100644 --- a/domains/sfsef.json +++ b/domains/sfsef.json @@ -4,7 +4,7 @@ "username": "sfsef", "email": "sfsef.official@yandex.ru" }, - "record": { + "records": { "URL": "https://sfsef.me" } } diff --git a/domains/sfx.json b/domains/sfx.json index c4fb88616..b78dbf9e7 100644 --- a/domains/sfx.json +++ b/domains/sfx.json @@ -6,7 +6,7 @@ "email": "sfx@fbi.ac", "twitter": "therealsfx" }, - "record": { + "records": { "CNAME": "iamsfx.github.io" } } diff --git a/domains/sg.mcstatus.json b/domains/sg.mcstatus.json index 756b0a608..2bd3b2b7f 100644 --- a/domains/sg.mcstatus.json +++ b/domains/sg.mcstatus.json @@ -4,7 +4,7 @@ "discord": "1167825360151380032", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" }, - "record": { + "records": { "CNAME": "37sdfgrml49gl.ahost.marscode.site" } } diff --git a/domains/sh-crm.json b/domains/sh-crm.json index 2ffcd1bf4..6f560c26d 100644 --- a/domains/sh-crm.json +++ b/domains/sh-crm.json @@ -3,7 +3,7 @@ "username": "ruben-as", "email": "ruben.aja.85@gmail.com" }, - "record": { + "records": { "A": ["212.227.32.105"] } } diff --git a/domains/sh13y.json b/domains/sh13y.json new file mode 100644 index 000000000..94f97bb2c --- /dev/null +++ b/domains/sh13y.json @@ -0,0 +1,11 @@ +{ + "description": "For My Blog", + "repo": "https://github.com/sh13y/register", + "owner": { + "username": "sh13y", + "email": "lucky10isuru@gmail.com" + }, + "records": { + "CNAME": "sh13y.github.io" + } +} diff --git a/domains/sh770.json b/domains/sh770.json new file mode 100644 index 000000000..dbf41b8df --- /dev/null +++ b/domains/sh770.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sh770", + "email": "sh770h@gmail.com" + }, + "records": { + "CNAME": "sh770.github.io" + } +} diff --git a/domains/sh9351.json b/domains/sh9351.json index 07e2c0ea5..f628d930f 100644 --- a/domains/sh9351.json +++ b/domains/sh9351.json @@ -3,7 +3,7 @@ "username": "sh9351", "email": "perfect2315shlim@gmail.com" }, - "record": { + "records": { "CNAME": "sh9351.github.io" } } diff --git a/domains/shad.json b/domains/shad.json index 885288694..85cf2e0f0 100644 --- a/domains/shad.json +++ b/domains/shad.json @@ -3,12 +3,7 @@ "username": "Maverick00001", "email": "saksham.access@yahoo.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/shadow.json b/domains/shadow.json index db9ac44b6..d026e3d20 100644 --- a/domains/shadow.json +++ b/domains/shadow.json @@ -3,7 +3,7 @@ "username": "callme-Shadow", "email": "shadowstriker169@gmail.com" }, - "record": { + "records": { "CNAME": "callme-shadow.github.io" } } diff --git a/domains/shadowalker.json b/domains/shadowalker.json index b76605f86..45d5f1933 100644 --- a/domains/shadowalker.json +++ b/domains/shadowalker.json @@ -5,7 +5,7 @@ "username": "shadowisdev", "email": "shadowisdev@gmail.com" }, - "record": { + "records": { "CNAME": "shadowisdev.github.io" } } diff --git a/domains/shadowjobs.json b/domains/shadowjobs.json new file mode 100644 index 000000000..afc8eb064 --- /dev/null +++ b/domains/shadowjobs.json @@ -0,0 +1,10 @@ +{ + "description": "shadowjobs self website", + "owner": { + "username": "shadowjobs", + "email": "shadowjobs@qq.com" + }, + "records": { + "A": ["114.116.231.183"] + } +} diff --git a/domains/shafi.json b/domains/shafi.json index 05d921dbb..7b8169afe 100644 --- a/domains/shafi.json +++ b/domains/shafi.json @@ -3,7 +3,7 @@ "username": "Xshafi", "email": "AkramSanghar10@gmail.com" }, - "record": { + "records": { "CNAME": "xshafi.github.io" } } diff --git a/domains/shafi100.json b/domains/shafi100.json index 4404f8582..fd5a7e537 100644 --- a/domains/shafi100.json +++ b/domains/shafi100.json @@ -6,7 +6,7 @@ "email": "pro.shafi.12@gmail.com", "twitter": "bd_shafi" }, - "record": { + "records": { "CNAME": "shafi100.github.io" } } diff --git a/domains/shahab.json b/domains/shahab.json new file mode 100644 index 000000000..9afdca181 --- /dev/null +++ b/domains/shahab.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shahab-xd", + "email": "0xshahab@proton.me" + }, + "records": { + "CNAME": "shahab-xd.github.io" + } +} diff --git a/domains/shahjada.json b/domains/shahjada.json index 3d5cf3e79..6a8f11bb6 100644 --- a/domains/shahjada.json +++ b/domains/shahjada.json @@ -3,7 +3,7 @@ "username": "shahjada0", "email": "muhammedalif2004@gmail.com" }, - "record": { + "records": { "A": ["31.186.83.254"] } } diff --git a/domains/shahjenish.json b/domains/shahjenish.json index 5f8335df6..9dfb8b9e6 100644 --- a/domains/shahjenish.json +++ b/domains/shahjenish.json @@ -4,7 +4,7 @@ "owner": { "username": "shahjenish" }, - "record": { + "records": { "CNAME": "shahjenish.github.io" } } diff --git a/domains/shajanjp.json b/domains/shajanjp.json index 4274eddb5..0f3ac04bf 100644 --- a/domains/shajanjp.json +++ b/domains/shajanjp.json @@ -5,7 +5,7 @@ "username": "shajanjp", "email": "shajanjp@gmail.com" }, - "record": { + "records": { "CNAME": "shajanjp.github.io" } } diff --git a/domains/shake.json b/domains/shake.json index 2c1c1ba53..c4f4cbf3a 100644 --- a/domains/shake.json +++ b/domains/shake.json @@ -3,7 +3,7 @@ "username": "wansies", "email": "taio6@duck.com" }, - "record": { + "records": { "URL": "https://shake-1.gitbook.io/shake-documentation" } } diff --git a/domains/shakeel-ahamad.json b/domains/shakeel-ahamad.json index 7286b3c3d..7975ab0d9 100644 --- a/domains/shakeel-ahamad.json +++ b/domains/shakeel-ahamad.json @@ -4,7 +4,7 @@ "owner": { "username": "shakeel-ahamad" }, - "record": { + "records": { "CNAME": "shakeel-ahamad.github.io" } } diff --git a/domains/shakera-vora.json b/domains/shakera-vora.json index 845a8cbff..156360fa6 100644 --- a/domains/shakera-vora.json +++ b/domains/shakera-vora.json @@ -4,7 +4,7 @@ "owner": { "username": "shakera-vora" }, - "record": { + "records": { "CNAME": "shakera-vora.github.io" } } diff --git a/domains/shambhavi.json b/domains/shambhavi.json index d55b56f53..5b494faed 100644 --- a/domains/shambhavi.json +++ b/domains/shambhavi.json @@ -5,7 +5,7 @@ "username": "ShambhaviCodes", "email": "shambhavimishra26@gmail.com" }, - "record": { + "records": { "CNAME": "shambhavicodes.github.io" } } diff --git a/domains/shambhavisinha.json b/domains/shambhavisinha.json index 8a0c338fc..e554f3783 100644 --- a/domains/shambhavisinha.json +++ b/domains/shambhavisinha.json @@ -1,10 +1,9 @@ { "owner": { "username": "shim-sham", - "discord": "731861620833386506", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.aqb7neHU6pfFXd-SzlAwE9p1H8Eln9vmyvfn3Q0tjEsPEJrF_tJGcyl1q54Y5W6mSGupod8K90YGXBaAoQmQJHgUMuEnBqXV-p9OVetnJgzuNJCIOzXcDj9RnfgbprtoiTb8yAnoikeXUg5OuJ6c0cYOc_iP-H_oqblDwEW3Cdk2-u2_umDOj0zCvRo-NDSknn38fRkdHwK4SYyOGKTW2n9NnCJnXZe0ZiSIoSCIprRS9F2VySXfndXdcCi56HfxbIv6uWp4h4lbLAFizZ-YcolEHpwHVsRNn5twuTxoIgV8VrJR8i1uTH5shOy2Z9Kh9HA3CWB_aGtWGOcN8RPsBA.O6W5Y1nwLfl16bPtMuNvcw.3X4Pk71XSjhqmMiIAvDd51oARntiRqi9Fd1LF9VG5dKanAN8B5EvWMJWQBB9yXG9ULGwh_7xsO8ZD4V26E2LLcG1rejELJDmXAMm3PJgi1U.ACU2mORwwDBN8txmBf5FpA" + "discord": "731861620833386506" }, - "record": { + "records": { "CNAME": "shim-sham.github.io" } } diff --git a/domains/shamil.json b/domains/shamil.json index eb45c55f2..c7a22fb2d 100644 --- a/domains/shamil.json +++ b/domains/shamil.json @@ -4,7 +4,7 @@ "email": "im.shamxl@gmail.com", "discord": "967681574080507944" }, - "record": { + "records": { "CNAME": "shamxl.github.io" } } diff --git a/domains/shamit.json b/domains/shamit.json index 89437dfcb..bcccb4ea1 100644 --- a/domains/shamit.json +++ b/domains/shamit.json @@ -4,7 +4,7 @@ "email": "shamitmishra22@gmail.com", "discord": "769189484155371520" }, - "record": { + "records": { "CNAME": "portfolio-react-qpv8.onrender.com" } } diff --git a/domains/shan.json b/domains/shan.json index 7d003ab99..c5335c9f3 100644 --- a/domains/shan.json +++ b/domains/shan.json @@ -1,20 +1,14 @@ { - "description": "My Personal Website ", - "repo": "https://github.com/Adwaith-Shan-Pk/Adwaith-Shan-Pk.github.io", - "owner": { - "username": "Adwaith-Shan-Pk", - "email": "mail@adwaithshan.rf.gd", - "twitter": "lordlinux69" - }, - "record": { - "A": [ - "45.90.12.31", - "37.114.46.37" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "My Personal Website ", + "repo": "https://github.com/Adwaith-Shan-Pk/Adwaith-Shan-Pk.github.io", + "owner": { + "username": "Adwaith-Shan-Pk", + "email": "mail@adwaithshan.rf.gd", + "twitter": "lordlinux69" + }, + "records": { + "A": ["45.90.12.31", "37.114.46.37"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/shane.json b/domains/shane.json index bc80a5220..cb0ae5e7d 100644 --- a/domains/shane.json +++ b/domains/shane.json @@ -5,7 +5,7 @@ "username": "Vandesm14", "email": "vandesm14@gmail.com" }, - "record": { + "records": { "CNAME": "vandesm14.github.io" } } diff --git a/domains/shanise.json b/domains/shanise.json index efb646a25..ef413d6d1 100644 --- a/domains/shanise.json +++ b/domains/shanise.json @@ -5,7 +5,7 @@ "username": "shanise02", "email": "shanise.smith2001@gmail.com" }, - "record": { + "records": { "URL": "https://shanisesmith.vercel.app" } } diff --git a/domains/sharad-rajyaguru.json b/domains/sharad-rajyaguru.json index 985501e8f..6c297c765 100644 --- a/domains/sharad-rajyaguru.json +++ b/domains/sharad-rajyaguru.json @@ -4,7 +4,7 @@ "owner": { "username": "sharad-rajyaguru" }, - "record": { + "records": { "CNAME": "sharad-rajyaguru.github.io" } } diff --git a/domains/sharad.json b/domains/sharad.json new file mode 100644 index 000000000..37750d090 --- /dev/null +++ b/domains/sharad.json @@ -0,0 +1,11 @@ +{ + "description": "Personal developer portfolio hosted on Render", + "repo": "https://github.com/SharadJ19/portfolio", + "owner": { + "username": "SharadJ19", + "email": "sharadchandel2005@gmail.com" + }, + "records": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/sharafat.json b/domains/sharafat.json index fe63b3ec0..cfdbc617a 100644 --- a/domains/sharafat.json +++ b/domains/sharafat.json @@ -5,7 +5,7 @@ "username": "SharafatKarim", "email": "sharafat2004@gmail.com" }, - "record": { + "records": { "CNAME": "sharafatkarim.github.io" } } diff --git a/domains/sharan.json b/domains/sharan.json index fac845479..feb0256db 100644 --- a/domains/sharan.json +++ b/domains/sharan.json @@ -5,7 +5,7 @@ "username": "Vasoyasharan", "email": "sharanvasoya@gmail.com" }, - "record": { + "records": { "CNAME": "vasoyasharan.github.io" } } diff --git a/domains/sharanvasoya.json b/domains/sharanvasoya.json index d6cc75261..a265a8c5e 100644 --- a/domains/sharanvasoya.json +++ b/domains/sharanvasoya.json @@ -5,7 +5,7 @@ "username": "Vasoyasharan", "email": "sharanvasoya@gmail.com" }, - "record": { + "records": { "CNAME": "vasoyasharan.github.io" } } diff --git a/domains/sharath.json b/domains/sharath.json index 93badde2b..52b2a59f5 100644 --- a/domains/sharath.json +++ b/domains/sharath.json @@ -1,11 +1,10 @@ { "description": "Social media website project.", - "repo": "https://github.com/thesct22", "owner": { "username": "thesct22", "email": "sharathct22@gmail.com" }, - "record": { + "records": { "CNAME": "thesct22.github.io" } } diff --git a/domains/sharath3.json b/domains/sharath3.json index d3e7653ed..67e76d591 100644 --- a/domains/sharath3.json +++ b/domains/sharath3.json @@ -3,7 +3,7 @@ "username": "Sharathchandra345", "email": "csharathchandra3@gmail.com" }, - "record": { + "records": { "URL": "https://sharathweb.netlify.app/" } } diff --git a/domains/sharathchandra.json b/domains/sharathchandra.json index d82f1dc6c..48af6bc56 100644 --- a/domains/sharathchandra.json +++ b/domains/sharathchandra.json @@ -3,7 +3,7 @@ "username": "Sharathchandra345", "email": "csharathchandra3@gmail.com" }, - "record": { + "records": { "URL": "https://csharath.netlify.app/" } } diff --git a/domains/share.alora.json b/domains/share.alora.json new file mode 100644 index 000000000..7f40fa9ee --- /dev/null +++ b/domains/share.alora.json @@ -0,0 +1,11 @@ +{ + "description": "An open-source file sharing application with a cyberpunk dystopian interface. Built with Next.js, Supabase, and Tailwind CSS.", + "repo": "https://github.com/aloramiaa/fileshare", + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com" + }, + "records": { + "CNAME": "fileshare-snowy.vercel.app" + } +} diff --git a/domains/sharifclick.json b/domains/sharifclick.json index b6bae0f46..b0dc82a71 100644 --- a/domains/sharifclick.json +++ b/domains/sharifclick.json @@ -5,7 +5,7 @@ "username": "sharifclick", "email": "me.sharifahmed@gmail.com" }, - "record": { + "records": { "CNAME": "sharifclick.github.io" } } diff --git a/domains/sharma.json b/domains/sharma.json index 40fb7a7cb..25db0db06 100644 --- a/domains/sharma.json +++ b/domains/sharma.json @@ -3,7 +3,7 @@ "username": "adityash4rma", "email": "gaming.boy.fhx@gmail.com" }, - "record": { + "records": { "CNAME": "blog-9bb.pages.dev" } } diff --git a/domains/shashank.json b/domains/shashank.json index f94cb264c..00ff33c67 100644 --- a/domains/shashank.json +++ b/domains/shashank.json @@ -6,7 +6,7 @@ "email": "shekhar2906@outlook.com", "twitter": "shashankxdev" }, - "record": { + "records": { "CNAME": "ss-29.github.io" } } diff --git a/domains/shashankag.json b/domains/shashankag.json index 4fe799e53..44c20c7be 100644 --- a/domains/shashankag.json +++ b/domains/shashankag.json @@ -5,7 +5,7 @@ "username": "ershashankgit", "email": "contact@shashank.my.id" }, - "record": { + "records": { "CNAME": "ershashankgit.github.io" } } diff --git a/domains/shashankreddy.json b/domains/shashankreddy.json index 7a8b03095..52dc72fc0 100644 --- a/domains/shashankreddy.json +++ b/domains/shashankreddy.json @@ -1,10 +1,9 @@ { "owner": { "username": "shashank-amireddy", - "discord": "758375198662590515", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.l-otd7mTmOFl0h0OTgf0G1R-qmTqFjlOKz7-1lzqCQoKPjfiQdTUjiWZH0O4_fBLskItih8GqoT2jgG1uCE5yIonjKPNy3c4HsRf200q5SDCiyxXItr8o6-o2KJh7RHnJxi_Kp9qrpYz0hNGsIesoq2sPlYfWmxYKQ1TCCK4gvubhywvmZcyTouz08TgakWzYHkn-4nisz-DH-ctNLGo0z6Esicv4C0Tcn0wOJ9LjO7urt9p51I5sN7IQm-20JnUqSOaja1ukv5HpIY1ILHBL3Sb13QVlpUIlaoby8EpAzmviXd0JWzfOQfVcdL1EnbUmQu86toSj-BbuweKPPeNOg.VPY-mZFRHfr91A38FwfjSQ.mmD2chI82Yzyv1Lz-pwvJ4-v3LgO28mHrsPce_8sRgrIRfnrykrLosARHwbsp32iKX2Syl36SSl4aFNLZe-ij7-sekB7G3nAmCfhgnDHw4BiAhut0BHOeg4BhlFvpCDG.f0GCirdTkqfAfW63jykwqw" + "discord": "758375198662590515" }, - "record": { + "records": { "CNAME": "thequantumloom.pages.dev" } } diff --git a/domains/shatanik.json b/domains/shatanik.json index ffb4985f1..2b6a4bd35 100644 --- a/domains/shatanik.json +++ b/domains/shatanik.json @@ -4,7 +4,7 @@ "username": "shatanikmahanty", "email": "shatanikmahanty@gmail.com" }, - "record": { + "records": { "CNAME": "shatanikmahanty.github.io" } } diff --git a/domains/shaunak.json b/domains/shaunak.json index 7fe7ba1fb..12f9ff260 100644 --- a/domains/shaunak.json +++ b/domains/shaunak.json @@ -1,11 +1,10 @@ { "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": { + "records": { "CNAME": "shaunak-pandya.github.io" } } diff --git a/domains/shaunfurtado.json b/domains/shaunfurtado.json index 6596db83d..42aac7ee1 100644 --- a/domains/shaunfurtado.json +++ b/domains/shaunfurtado.json @@ -5,7 +5,7 @@ "username": "Shaunfurtado", "email": "shaunf1801@gmail.com" }, - "record": { + "records": { "CNAME": "shaunfurtado.github.io" } } diff --git a/domains/shaurya.json b/domains/shaurya.json index b591f4bfe..248fc343c 100644 --- a/domains/shaurya.json +++ b/domains/shaurya.json @@ -3,7 +3,7 @@ "username": "shauryagupta3", "discord": "757499975922876446" }, - "record": { + "records": { "CNAME": "shauryagupta3.github.io" } } diff --git a/domains/shauryagupta.json b/domains/shauryagupta.json new file mode 100644 index 000000000..d74db3fc7 --- /dev/null +++ b/domains/shauryagupta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "codebyShaurya", + "email": "shauryagupta118@gmail.com" + }, + "records": { + "CNAME": "codebyShaurya.github.io" + } +} diff --git a/domains/shayokh.json b/domains/shayokh.json index 0bad10091..476d0fcf9 100644 --- a/domains/shayokh.json +++ b/domains/shayokh.json @@ -3,7 +3,7 @@ "username": "ShayokhShorfuddin", "email": "shayokhshuvro14@gmail.com" }, - "record": { + "records": { "CNAME": "shayokhshorfuddin.github.io" } } diff --git a/domains/shays.json b/domains/shays.json index c744131a4..d99418952 100644 --- a/domains/shays.json +++ b/domains/shays.json @@ -5,7 +5,7 @@ "username": "SHays24", "discord": "munchkin2309" }, - "record": { + "records": { "CNAME": "shays24.github.io" } } diff --git a/domains/she.json b/domains/she.json index 9fe4cf6af..1abd867cd 100644 --- a/domains/she.json +++ b/domains/she.json @@ -5,7 +5,7 @@ "username": "yuzhigang33", "email": "yuzhigang33@gmail.com" }, - "record": { + "records": { "CNAME": "yuzhigang33.github.io" } } diff --git a/domains/sheldon.json b/domains/sheldon.json index 279552149..4eca181b1 100644 --- a/domains/sheldon.json +++ b/domains/sheldon.json @@ -5,7 +5,7 @@ "username": "0x5h31d0n", "email": "samymenezes33@gmail.com" }, - "record": { + "records": { "CNAME": "0x5h31d0n.github.io" } } diff --git a/domains/shenjunru.json b/domains/shenjunru.json index d3b55d2c0..6a8aaf97f 100644 --- a/domains/shenjunru.json +++ b/domains/shenjunru.json @@ -5,7 +5,7 @@ "username": "shenjunru", "email": "shenjunru@gmail.com" }, - "record": { + "records": { "CNAME": "shenjunru.github.io" } } diff --git a/domains/shept.json b/domains/shept.json index 67b494909..1346f3d10 100644 --- a/domains/shept.json +++ b/domains/shept.json @@ -3,13 +3,8 @@ "username": "mcshept", "email": "maxiheinrich007@yahoo.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/shevon.json b/domains/shevon.json index ecba599c5..928d6f97a 100644 --- a/domains/shevon.json +++ b/domains/shevon.json @@ -3,7 +3,7 @@ "username": "ShevonKuan", "email": "331749486@qq.com" }, - "record": { + "records": { "A": ["47.236.182.59"] } } diff --git a/domains/shibiliya.json b/domains/shibiliya.json index 25a7b5efa..a8c758568 100644 --- a/domains/shibiliya.json +++ b/domains/shibiliya.json @@ -1,11 +1,10 @@ { "description": "Shibiliya's personal developer website", - "repo": "https://github.com/duaboola", "owner": { "username": "duaboola", "email": "ismailshibiliya@gmail.com" }, - "record": { + "records": { "CNAME": "duaboola.github.io" } } diff --git a/domains/shift.json b/domains/shift.json index 9efd05f6e..00a2bb66b 100644 --- a/domains/shift.json +++ b/domains/shift.json @@ -3,7 +3,7 @@ "username": "mkshift", "email": "mkshift@tuta.io" }, - "record": { + "records": { "CNAME": "mkshift.github.io" } } diff --git a/domains/shijaz.json b/domains/shijaz.json index 1f0f4fae4..65dee263a 100644 --- a/domains/shijaz.json +++ b/domains/shijaz.json @@ -3,7 +3,7 @@ "username": "ShijazKS", "email": "hafizshijaz@gmail.com" }, - "record": { + "records": { "URL": "https://shijazks.github.io/" } } diff --git a/domains/shikhar.json b/domains/shikhar.json new file mode 100644 index 000000000..308c4d45f --- /dev/null +++ b/domains/shikhar.json @@ -0,0 +1,11 @@ +{ + "description": "YOUR DESCRIPTION GOES HERE", + "repo": "https://github.com/adityasriv2317/portfolioAditya", + "owner": { + "username": "adityasriv2317", + "email": "adityaxia9237@gmail.com" + }, + "records": { + "URL": "https://adityasrivastava.vercel.app/" + } +} diff --git a/domains/shikharreyya.json b/domains/shikharreyya.json index a7bca1b08..22ae3658b 100644 --- a/domains/shikharreyya.json +++ b/domains/shikharreyya.json @@ -6,7 +6,7 @@ "email": "criticalxsynergy@gmail.com", "twitter": "Voldemort_7585" }, - "record": { + "records": { "CNAME": "poseidon0070.github.io" } } diff --git a/domains/shilinlee.json b/domains/shilinlee.json index 1ab0a88d4..5535bd3bc 100644 --- a/domains/shilinlee.json +++ b/domains/shilinlee.json @@ -3,7 +3,7 @@ "username": "shilinlee", "email": "shilinlee.ghost@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/shilinlee" } } diff --git a/domains/shimizu.json b/domains/shimizu.json new file mode 100644 index 000000000..aeedb4977 --- /dev/null +++ b/domains/shimizu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "records": { + "CNAME": "shimizulinks.vercel.app" + } +} diff --git a/domains/shin.json b/domains/shin.json new file mode 100644 index 000000000..c3926cfb9 --- /dev/null +++ b/domains/shin.json @@ -0,0 +1,12 @@ +{ + "description": "Email forward Tachibana Shin (@tachib_shin)", + "owner": { + "username": "tachibana-shin", + "email": "", + "twitter": "tachib_shin" + }, + "records": { + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "TXT": "forward-email=tachibshin@duck.com" + } +} diff --git a/domains/shinobi9.json b/domains/shinobi9.json new file mode 100644 index 000000000..f624ab1fa --- /dev/null +++ b/domains/shinobi9.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shinobi9", + "email": "shinobi9c@outlook.com" + }, + "records": { + "CNAME": "shinobi9.github.io" + } +} diff --git a/domains/shirishshinde.json b/domains/shirishshinde.json index ab94f963f..8cb3cf7be 100644 --- a/domains/shirishshinde.json +++ b/domains/shirishshinde.json @@ -5,7 +5,7 @@ "username": "MasterShirishShinde", "email": "shirishshinde2605@gmail.com" }, - "record": { + "records": { "CNAME": "mastershirishshinde.github.io" } } diff --git a/domains/shirsak.json b/domains/shirsak.json index 6a81370fd..6398bffc2 100644 --- a/domains/shirsak.json +++ b/domains/shirsak.json @@ -5,7 +5,7 @@ }, "description": "Hosts my personal website", "repo": "https://github.com/shirsakm/website", - "record": { + "records": { "CNAME": "website-ndp.pages.dev" } } diff --git a/domains/shirshen.json b/domains/shirshen.json new file mode 100644 index 000000000..f60721e6b --- /dev/null +++ b/domains/shirshen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shu-vro", + "email": "official.shirshen@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/shiv.json b/domains/shiv.json index 7aa28978b..f22d4229f 100644 --- a/domains/shiv.json +++ b/domains/shiv.json @@ -3,7 +3,7 @@ "username": "shivasharanappaBiradar", "email": "youcanbethemaster@gmail.com" }, - "record": { + "records": { "CNAME": "railway-production-5fc6.up.railway.app" } } diff --git a/domains/shiva-vijai.json b/domains/shiva-vijai.json index e37786cab..ff78d9b9f 100644 --- a/domains/shiva-vijai.json +++ b/domains/shiva-vijai.json @@ -3,7 +3,7 @@ "username": "Shiva-Vijai", "email": "shivavijai2008@gmail.com" }, - "record": { + "records": { "CNAME": "shiva-vijai.github.io" } } diff --git a/domains/shivabajpai.json b/domains/shivabajpai.json new file mode 100644 index 000000000..6edeb948d --- /dev/null +++ b/domains/shivabajpai.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio website for Shiva Bajpai", + "repo": "https://github.com/Shiva-Bajpai/", + "owner": { + "username": "Shiva-Bajpai", + "email": "shivabajpai2006@gmail.com" + }, + "records": { + "CNAME": "shivacodes.vercel.app" + }, + "proxied": false +} diff --git a/domains/shivam.json b/domains/shivam.json new file mode 100644 index 000000000..e2ac66eef --- /dev/null +++ b/domains/shivam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shivamkumar177", + "email": "shivamk1717@gmail.com" + }, + "records": { + "CNAME": "shivam-kumar.netlify.app" + } +} diff --git a/domains/shivamtrivedi.json b/domains/shivamtrivedi.json new file mode 100644 index 000000000..f91241cf9 --- /dev/null +++ b/domains/shivamtrivedi.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/Shivam1303/portfolio.git", + "owner": { + "username": "Shivam1303", + "email": "shivamtrivedi1434@gmail.com" + }, + "records": { + "CNAME": "portfolio-three-lake-77.vercel.app" + }, + "proxied": true +} diff --git a/domains/shivananda.json b/domains/shivananda.json new file mode 100644 index 000000000..77203fdd3 --- /dev/null +++ b/domains/shivananda.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/ssk090/portfolio-2024", + "owner": { + "username": "ssk090", + "email": "shivanandasai.38@gmail.com" + }, + "records": { + "URL": "https://www.shivanandasai.xyz/" + } +} diff --git a/domains/shivang.json b/domains/shivang.json index fc69e5f55..40fe6ffd5 100644 --- a/domains/shivang.json +++ b/domains/shivang.json @@ -6,7 +6,7 @@ "email": "shivangkakkar88@gmail.com", "telegram": "ShivangKakkar88" }, - "record": { + "records": { "CNAME": "shivangkakkar.github.io" } } diff --git a/domains/shivansh.json b/domains/shivansh.json new file mode 100644 index 000000000..8c23fc503 --- /dev/null +++ b/domains/shivansh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shivansh722", + "email": "shivanshcha722@gmail.com", + "discord": "839163183141748807" + }, + "records": { + "CNAME": "portfolio-theta-one-19.vercel.app" + } +} diff --git a/domains/shiyaf.json b/domains/shiyaf.json index a8b7f5d59..15034daee 100644 --- a/domains/shiyaf.json +++ b/domains/shiyaf.json @@ -3,7 +3,7 @@ "username": "mshiyaf", "email": "shiyafc@gmail.com" }, - "record": { + "records": { "URL": "https://texolgulf.com" } } diff --git a/domains/shoaib-shaikhh.json b/domains/shoaib-shaikhh.json index a4563a344..84dd2020f 100644 --- a/domains/shoaib-shaikhh.json +++ b/domains/shoaib-shaikhh.json @@ -5,7 +5,7 @@ "username": "shoaib-shaikhh", "email": "shoaib-shaikhh@acquaintsoft.com" }, - "record": { + "records": { "CNAME": "shoaib-shaikhh.github.io" } } diff --git a/domains/shoaib.json b/domains/shoaib.json new file mode 100644 index 000000000..1ca80b464 --- /dev/null +++ b/domains/shoaib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "d3vshoaib", + "email": "d3vshoaib@gmail.com" + }, + "records": { + "CNAME": "d3vshoaib.netlify.app" + } +} diff --git a/domains/shobhitb.json b/domains/shobhitb.json index 4ded99fb3..5cb043244 100644 --- a/domains/shobhitb.json +++ b/domains/shobhitb.json @@ -3,7 +3,7 @@ "username": "Shobhit9945", "email": "shobhitbaijal5@gmail.com" }, - "record": { + "records": { "CNAME": "shobhit9945.github.io" } } diff --git a/domains/shock.json b/domains/shock.json index ed67791e5..d575e9a37 100644 --- a/domains/shock.json +++ b/domains/shock.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "CNAME": "shockbs.github.io" }, "proxied": true diff --git a/domains/shockbs.json b/domains/shockbs.json index dea16071f..9ebde290a 100644 --- a/domains/shockbs.json +++ b/domains/shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/shomy.json b/domains/shomy.json index cd117b45d..b0e30f882 100644 --- a/domains/shomy.json +++ b/domains/shomy.json @@ -4,17 +4,12 @@ "username": "shomykohai", "twitter": "shomykohai" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "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=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA==", - "google-site-verification=86zZ55mR4x8nTO3sV5iWvq92pg8sikARK7f1Q_Gw7pI" - ] + "forward-email=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA==", + "google-site-verification=86zZ55mR4x8nTO3sV5iWvq92pg8sikARK7f1Q_Gw7pI" + ] } } diff --git a/domains/shoppavpn.json b/domains/shoppavpn.json new file mode 100644 index 000000000..065cb2e15 --- /dev/null +++ b/domains/shoppavpn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mfshoppa", + "email": "metalist.haha@gmail.com" + }, + "records": { + "A": ["5.187.7.200"] + } +} diff --git a/domains/shork.json b/domains/shork.json index 47fc31021..cf46c933d 100644 --- a/domains/shork.json +++ b/domains/shork.json @@ -4,7 +4,7 @@ "email": "shork_d3v@proton.me", "telegram": "shorko_owo" }, - "record": { + "records": { "URL": "https://shork.one" } } diff --git a/domains/shorko.json b/domains/shorko.json index 4e0ba711c..a0dfdcda8 100644 --- a/domains/shorko.json +++ b/domains/shorko.json @@ -3,7 +3,7 @@ "username": "shorkdev", "email": "shork_d3v@proton.me" }, - "record": { + "records": { "URL": "https://shork.one" } } diff --git a/domains/short.crischutu07.json b/domains/short.crischutu07.json index e9df16672..16a5882c8 100644 --- a/domains/short.crischutu07.json +++ b/domains/short.crischutu07.json @@ -3,7 +3,7 @@ "username": "crischutu07", "email": "crischutu07owo@gmail.com" }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/shoumik.json b/domains/shoumik.json index df4605c03..dd152bd46 100644 --- a/domains/shoumik.json +++ b/domains/shoumik.json @@ -6,7 +6,7 @@ "email": "shoumikskdev@gmail.com", "twitter": "almost_shoumik" }, - "record": { + "records": { "CNAME": "mixmaker.github.io" } } diff --git a/domains/shoyeb.json b/domains/shoyeb.json index 24a65eced..55be8b555 100644 --- a/domains/shoyeb.json +++ b/domains/shoyeb.json @@ -3,7 +3,7 @@ "username": "mrtemp70", "email": "mrtemp70@gmail.com" }, - "record": { + "records": { "CNAME": "msashoyeb.github.io" } } diff --git a/domains/shravan.json b/domains/shravan.json index ee8fd9af4..b22b08291 100644 --- a/domains/shravan.json +++ b/domains/shravan.json @@ -6,7 +6,7 @@ "email": "shravanparadigm@gmail.com", "discord": "cannonboys" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/shree.json b/domains/shree.json index 2f02f1bab..a5d3f9af5 100644 --- a/domains/shree.json +++ b/domains/shree.json @@ -3,7 +3,7 @@ "username": "shreekrishnalamichhane", "email": "uniksk123@gmail.com" }, - "record": { + "records": { "CNAME": "shreekrishnalamichhane.com.np" } } diff --git a/domains/shresth.json b/domains/shresth.json index ec4242022..d8a301139 100644 --- a/domains/shresth.json +++ b/domains/shresth.json @@ -6,7 +6,7 @@ "email": "shresthgupta106@gmail.com", "twitter": "Shresthology" }, - "record": { + "records": { "CNAME": "shhresth.github.io" } } diff --git a/domains/shrey.json b/domains/shrey.json new file mode 100644 index 000000000..222ec67bb --- /dev/null +++ b/domains/shrey.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/shreyzeous21/portfolio_fullstack", + "owner": { + "username": "shreyzeous21", + "email": "shrey.sadhukhan21@gmail.com" + }, + "records": { + "URL": "https://shreysadhukhan-portfolio.vercel.app/" + } +} diff --git a/domains/shreyas.json b/domains/shreyas.json index af8d0fbeb..c1cbff48b 100644 --- a/domains/shreyas.json +++ b/domains/shreyas.json @@ -3,7 +3,7 @@ "username": "shrysjain", "email": "2027sjain@tjhsst.edu" }, - "record": { + "records": { "URL": "https://shrysjain.me/" } } diff --git a/domains/shreyasitb.json b/domains/shreyasitb.json index c27ac8dae..7f0494f3d 100644 --- a/domains/shreyasitb.json +++ b/domains/shreyasitb.json @@ -3,7 +3,7 @@ "username": "Shreyas-ITB", "email": "rstechbros@gmail.com" }, - "record": { + "records": { "CNAME": "shreyas-itb.github.io" } } diff --git a/domains/shri.json b/domains/shri.json new file mode 100644 index 000000000..54dd5870c --- /dev/null +++ b/domains/shri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shari003", + "email": "shri.harii@hotmail.com", + "discord": "744620219976253481" + }, + "records": { + "CNAME": "shriharidev.vercel.app" + } +} diff --git a/domains/shrivatsav.json b/domains/shrivatsav.json new file mode 100644 index 000000000..da9c7f876 --- /dev/null +++ b/domains/shrivatsav.json @@ -0,0 +1,11 @@ +{ + "description": "nothing much here...", + "repo": "https://github.com/Millosaurs/portfolio", + "owner": { + "username": "Millosaurs", + "email": "sharanshrivatsav0@gmail.com" + }, + "records": { + "URL": "https://shrivatsav.vercel.app" + } +} diff --git a/domains/shrpp.json b/domains/shrpp.json new file mode 100644 index 000000000..e7c686a36 --- /dev/null +++ b/domains/shrpp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shrpp", + "email": "lucius.2906@gmail.com" + }, + "records": { + "URL": "https://github.com/Shrpp" + } +} diff --git a/domains/shuawe.json b/domains/shuawe.json index d28fb4aad..a3259bc24 100644 --- a/domains/shuawe.json +++ b/domains/shuawe.json @@ -3,7 +3,7 @@ "username": "shuawe", "email": "shuaweee@gmail.com" }, - "record": { + "records": { "CNAME": "shuawe.railway.app" } } diff --git a/domains/shubh.json b/domains/shubh.json index b4321f5ef..d2ae3f4d8 100644 --- a/domains/shubh.json +++ b/domains/shubh.json @@ -2,7 +2,7 @@ "owner": { "username": "R3tr0LastKnight" }, - "record": { + "records": { "CNAME": "portfoio-v2.vercel.app" } } diff --git a/domains/shubham.json b/domains/shubham.json index b0a1e5eac..dfecd8cf5 100644 --- a/domains/shubham.json +++ b/domains/shubham.json @@ -5,7 +5,7 @@ "username": "noobshubham", "email": "noobshubham65@gmail.com" }, - "record": { + "records": { "CNAME": "noobshubham.github.io" } } diff --git a/domains/shubham1806.json b/domains/shubham1806.json index d61978237..2f3cdce14 100644 --- a/domains/shubham1806.json +++ b/domains/shubham1806.json @@ -3,7 +3,7 @@ "username": "shubham-1806", "email": "shub.agarwal2003@gmail.com" }, - "record": { + "records": { "A": ["20.207.73.82"] } } diff --git a/domains/shubhambattoo.json b/domains/shubhambattoo.json index f3e0be9c8..dfbca8e07 100644 --- a/domains/shubhambattoo.json +++ b/domains/shubhambattoo.json @@ -5,8 +5,7 @@ "twitter": "Shubham_batt" }, "description": "My personal website", - "repo": "https://github.com/shubhambattoo", - "record": { + "records": { "URL": "https://shubhambattoo.in" } } diff --git a/domains/shubhamlal.json b/domains/shubhamlal.json index 841e8bd0d..f77b0a412 100644 --- a/domains/shubhamlal.json +++ b/domains/shubhamlal.json @@ -6,7 +6,7 @@ "email": "im.shubhamlal@gmail.com", "linkedin": "https://www.linkedin.com/in/shubham-lal" }, - "record": { + "records": { "URL": "https://ubuntuos.pages.dev" } } diff --git a/domains/shubhamprajapati.json b/domains/shubhamprajapati.json new file mode 100644 index 000000000..af7821081 --- /dev/null +++ b/domains/shubhamprajapati.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShubhamP528", + "email": "shubham528prajapati@gmail.com" + }, + "records": { + "CNAME": "portfolio-kappa-orpin-32.vercel.app" + } +} diff --git a/domains/shubhamsharma.json b/domains/shubhamsharma.json new file mode 100644 index 000000000..8858164b1 --- /dev/null +++ b/domains/shubhamsharma.json @@ -0,0 +1,11 @@ +{ + "description": "Self-made Linktree clone for myself.", + "repo": "https://github.com/Sharma-IT/linktree-clone", + "owner": { + "username": "Sharma-IT", + "email": "shubhamsharma.emails@gmail.com" + }, + "records": { + "CNAME": "shubs-links.netlify.app" + } +} diff --git a/domains/shubhamverma.json b/domains/shubhamverma.json new file mode 100644 index 000000000..443096802 --- /dev/null +++ b/domains/shubhamverma.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Stroller15" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/shubhhh.json b/domains/shubhhh.json new file mode 100644 index 000000000..9cebf8c88 --- /dev/null +++ b/domains/shubhhh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shubhhhwarrior", + "email": "shubhammvaghela999@gmail.com" + }, + "records": { + "CNAME": "shubhhh-96.netlify.app" + } +} diff --git a/domains/shuchirjain.json b/domains/shuchirjain.json index 4264b6091..a8da39bee 100644 --- a/domains/shuchirjain.json +++ b/domains/shuchirjain.json @@ -3,7 +3,7 @@ "username": "CoolCoderSJ", "email": "coolcodersj@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/shuhaab.json b/domains/shuhaab.json index 6db00e090..878a867a3 100644 --- a/domains/shuhaab.json +++ b/domains/shuhaab.json @@ -1,9 +1,8 @@ { - "owner": { - "username": "Shuhaab-coder" - }, - "record": { - "CNAME": "shuhaab.vercel.app" - } + "owner": { + "username": "Shuhaab-coder" + }, + "records": { + "CNAME": "shuhaab.vercel.app" } - +} diff --git a/domains/shukraditya.json b/domains/shukraditya.json new file mode 100644 index 000000000..916371322 --- /dev/null +++ b/domains/shukraditya.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Blog and portfolio", + "repo": "https://github.com/shukraditya/shukraditya", + "owner": { + "username": "shukraditya", + "email": "shukra12bose@gmail.com" + }, + "records": { + "CNAME": "shukraditya.github.io" + } +} diff --git a/domains/shuvam.json b/domains/shuvam.json index ac511c348..65e478697 100644 --- a/domains/shuvam.json +++ b/domains/shuvam.json @@ -4,7 +4,7 @@ "username": "GeekBoySupreme", "email": "shuvam.manna@gmail.com" }, - "record": { + "records": { "CNAME": "shuvam.xyz" } } diff --git a/domains/shuvo.json b/domains/shuvo.json index 2be651fe3..77c9992d2 100644 --- a/domains/shuvo.json +++ b/domains/shuvo.json @@ -4,7 +4,7 @@ "username": "devshahoriar", "email": "shuvo1556@gmail.com" }, - "record": { + "records": { "MX": ["dns1.alwaysdata.com", "dns2.alwaysdata.com"] } } diff --git a/domains/shweta-gotecha.json b/domains/shweta-gotecha.json index ddde7523c..35bd4f064 100644 --- a/domains/shweta-gotecha.json +++ b/domains/shweta-gotecha.json @@ -4,7 +4,7 @@ "owner": { "username": "shweta-gotecha" }, - "record": { + "records": { "CNAME": "shweta-gotecha.github.io" } } diff --git a/domains/shwetarajput.json b/domains/shwetarajput.json new file mode 100644 index 000000000..92c48ac58 --- /dev/null +++ b/domains/shwetarajput.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "shwetarajputsk" + }, + "records": { + "CNAME": "shwetarajput.netlify.app" + } +} diff --git a/domains/shy.json b/domains/shy.json index 81874f097..d8ac52861 100644 --- a/domains/shy.json +++ b/domains/shy.json @@ -3,7 +3,7 @@ "username": "ImShyMike", "discord": "582648583635992622" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/shyam.json b/domains/shyam.json new file mode 100644 index 000000000..9020a377d --- /dev/null +++ b/domains/shyam.json @@ -0,0 +1,11 @@ +{ + "description": "Making a .is-a.dev domain as an alt url for my site.", + "repo": "https://github.com/shyam0118/portfolio", + "owner": { + "username": "shyam0118", + "email": "shyamalendunayak0118@gmail.com" + }, + "records": { + "CNAME": "shyam.dev" + } +} diff --git a/domains/shymega.json b/domains/shymega.json index 9c2f87eec..ddf1b07b2 100644 --- a/domains/shymega.json +++ b/domains/shymega.json @@ -3,7 +3,7 @@ "username": "shymega", "email": "shymega@shymega.org.uk" }, - "record": { + "records": { "CNAME": "dom-rodriguez-org-uk.pages.dev" } } diff --git a/domains/shymike.json b/domains/shymike.json index 867651f57..84d590977 100644 --- a/domains/shymike.json +++ b/domains/shymike.json @@ -3,7 +3,7 @@ "username": "ImShyMike", "discord": "582648583635992622" }, - "record": { + "records": { "CNAME": "imshymike.github.io" } } diff --git a/domains/shyran.json b/domains/shyran.json index 358584cbb..04e98c842 100644 --- a/domains/shyran.json +++ b/domains/shyran.json @@ -5,7 +5,7 @@ "username": "sshyran", "email": "s.shyran@gmail.com" }, - "record": { + "records": { "CNAME": "shyran.github.io" } } diff --git a/domains/si458.json b/domains/si458.json new file mode 100644 index 000000000..093279c53 --- /dev/null +++ b/domains/si458.json @@ -0,0 +1,11 @@ +{ + "description": "an open source software developer supporting opensource applications", + "repo": "https://github.com/si458", + "owner": { + "username": "si458", + "email": "simonsmith5521@gmail.com" + }, + "records": { + "NS": ["jake.ns.cloudflare.com", "jill.ns.cloudflare.com"] + } +} diff --git a/domains/sid.json b/domains/sid.json index 923cd8355..4fe86880a 100644 --- a/domains/sid.json +++ b/domains/sid.json @@ -1,11 +1,10 @@ { "description": "Siddhartha Patki's development portfolio", - "repo": "https://github.com/SiddPatki", "owner": { "username": "SiddPatki", "email": "siddharthapatki@gmail.com" }, - "record": { + "records": { "CNAME": "siddpatki.github.io" } } diff --git a/domains/sid385.json b/domains/sid385.json new file mode 100644 index 000000000..6af7f903f --- /dev/null +++ b/domains/sid385.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio ", + "repo": "https://github.com/siddhant385/siddhant385.github.io", + "owner": { + "username": "siddhant385", + "email": "ssiddhant.ssharma@gmail.com" + }, + "records": { + "CNAME": "siddhant385.github.io" + } +} diff --git a/domains/sidd.json b/domains/sidd.json index fa3b6e974..94c0d8ec1 100644 --- a/domains/sidd.json +++ b/domains/sidd.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/sidx04/sidx04.github.io", - "owner": { - "username": "sidx04", - "email": "siddpal04@gmail.com" - }, - "record": { - "CNAME": "sidx04.github.io" - } + "repo": "https://github.com/sidx04/sidx04.github.io", + "owner": { + "username": "sidx04", + "email": "siddpal04@gmail.com" + }, + "records": { + "CNAME": "sidx04.github.io" + } } diff --git a/domains/siddhant.json b/domains/siddhant.json index a8b6f41b6..8c8469c4a 100644 --- a/domains/siddhant.json +++ b/domains/siddhant.json @@ -1,11 +1,10 @@ { "description": "Siddhant's personal site", - "repo": "https://github.com/siddhant094", "owner": { "username": "siddhant094", "email": "pandeysiddhant21@gmail.com" }, - "record": { + "records": { "URL": "https://siddhantt.vercel.app/" } } diff --git a/domains/siddharth.json b/domains/siddharth.json index 725b8fbca..ba75c1e7c 100644 --- a/domains/siddharth.json +++ b/domains/siddharth.json @@ -4,7 +4,7 @@ "email": "siddharthjainj25@gmail.com", "discord": "804397662467915777" }, - "record": { + "records": { "CNAME": "siddharthjain25.github.io" } } diff --git a/domains/siddharth03.json b/domains/siddharth03.json new file mode 100644 index 000000000..2c8aeab71 --- /dev/null +++ b/domains/siddharth03.json @@ -0,0 +1,11 @@ +{ + "description": "To deploy portfolio website", + "repo": "https://github.com/sidshasane03/portfolio-website", + "owner": { + "username": "sidshasane03", + "email": "siddharthshasane03@gmail.com" + }, + "records": { + "CNAME": "sidshasane03.github.io" + } +} diff --git a/domains/siddharthjain.json b/domains/siddharthjain.json new file mode 100644 index 000000000..eb0e219f2 --- /dev/null +++ b/domains/siddharthjain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siddharth9300", + "discord": "sidd9300" + }, + "records": { + "CNAME": "next-js-portfolio-siddharth9300s-projects.vercel.app" + } +} diff --git a/domains/siddhu.json b/domains/siddhu.json index 0471b0a48..5f61028f6 100644 --- a/domains/siddhu.json +++ b/domains/siddhu.json @@ -5,7 +5,7 @@ "twitter": "TheSidK_", "discord": "SiddhyaOP#0596" }, - "record": { + "records": { "URL": "https://siddheshkukade.netlify.app" } } diff --git a/domains/sidhant.json b/domains/sidhant.json new file mode 100644 index 000000000..d1ed46e6d --- /dev/null +++ b/domains/sidhant.json @@ -0,0 +1,11 @@ +{ + "description": "This is for my personal portfolio", + "repo": "https://github.com/sidhant947/sidhant947.github.io", + "owner": { + "username": "sidhant947", + "email": "khatkarsidhant@gmail.com" + }, + "records": { + "CNAME": "sidhant947.github.io" + } +} diff --git a/domains/sidmaji.json b/domains/sidmaji.json index c26b46296..75aaba72a 100644 --- a/domains/sidmaji.json +++ b/domains/sidmaji.json @@ -6,7 +6,7 @@ "email": "somebodyimportant0@gmail.com", "twitter": "SomebodyImport5" }, - "record": { + "records": { "CNAME": "sidmaji.github.io" } } diff --git a/domains/sidou.json b/domains/sidou.json index 36db4939c..ee347eea9 100644 --- a/domains/sidou.json +++ b/domains/sidou.json @@ -3,7 +3,7 @@ "username": "SidAhmedSahraoui", "email": "s.sahraoui@esi-sba.dz" }, - "record": { + "records": { "CNAME": "sidou.codes" } } diff --git a/domains/sifat.json b/domains/sifat.json new file mode 100644 index 000000000..c74f4efe4 --- /dev/null +++ b/domains/sifat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mahi160", + "email": "omarsifat288@gmail.com" + }, + "records": { + "CNAME": "mahi160.vercel.app" + } +} diff --git a/domains/sife.json b/domains/sife.json index e3e5f1c87..6c34f4067 100644 --- a/domains/sife.json +++ b/domains/sife.json @@ -3,13 +3,8 @@ "username": "Sife-shuo", "email": "sifed@qq.com" }, - "record": { - "A": [ - "185.199.110.153", - "185.199.109.153", - "185.199.108.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.110.153", "185.199.109.153", "185.199.108.153", "185.199.111.153"], "TXT": "v=spf1 include:spf.improvmx.com ~all", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } diff --git a/domains/siful.json b/domains/siful.json index 24162675a..4e4ac28de 100644 --- a/domains/siful.json +++ b/domains/siful.json @@ -5,7 +5,7 @@ "username": "sifulbd", "email": "sifulweb@gmail.com" }, - "record": { + "records": { "CNAME": "sifulbd.github.io" } } diff --git a/domains/sig1._domainkey.ft.json b/domains/sig1._domainkey.ft.json new file mode 100644 index 000000000..037d34860 --- /dev/null +++ b/domains/sig1._domainkey.ft.json @@ -0,0 +1,11 @@ +{ + "description": "For the email address h@ft.is-a.dev", + "repo": "https://github.com/HaftIsntHere/is-a.dev/", + "owner": { + "username": "HaftIsntHere", + "email": "haftthedev@gmail.com" + }, + "records": { + "CNAME": "sig1.dkim.ft.is-a.dev.at.icloudmailadmin.com" + } +} diff --git a/domains/sigma.json b/domains/sigma.json index 62621ffb1..9577edfe5 100644 --- a/domains/sigma.json +++ b/domains/sigma.json @@ -1,10 +1,9 @@ { "owner": { "username": "trollm8", - "discord": "1266754182082461751", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J_IcRG3Pk5dPVC7P2pLhs3tj8GTx9BwAJwc1GJfp6MkLpNA2aNwkSCuC9AeDcggizrZkPnTe0iVCeyWP1HxgMfnoNu76WHG-mKUr4dl_CAroTyD_e2XqJKsyfyPZy7zmFnaxB6QHj_VKg_f3L-YM2uRrIgyo-kWddoRkmEW2THVGVR_Vfvg2dX922bTkaAlgnXY7m2oBnSTWtisXuDQquAXWndj2GYoT9C5dA_9Dfczy7MuDAbweb939g6PhUJ4wxTjErSYdvmS99JIQ9Fpt2UDBM2c00wKlfohZuwIHospR19NY3wKfgXhmQyMY0xpcaFkDusQfktiq7tzhamVxrw.9n5xP0MzlLOiQZVDawXl0g.jLs5EC-yuzhl20fNT5KzN_F-inPJMXgXrY-JAyY-KziorsZnWcK0zu8eSSduX4j8isT2CW9iKwN4FLBPgBCHDg.SVZOTtVEniuOM5V4O8c50g" + "discord": "1266754182082461751" }, - "record": { + "records": { "CNAME": "trollmeight.pages.dev" } } diff --git a/domains/sign.alvin.json b/domains/sign.alvin.json new file mode 100644 index 000000000..19f6673c5 --- /dev/null +++ b/domains/sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/sija.json b/domains/sija.json new file mode 100644 index 000000000..a2ebbbcdd --- /dev/null +++ b/domains/sija.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sija", + "email": "sija@sija.pl", + "twitter": "sijawusz" + }, + "records": { + "CNAME": "sija.pl" + } +} diff --git a/domains/silent0070.json b/domains/silent0070.json new file mode 100644 index 000000000..25e5bf9b3 --- /dev/null +++ b/domains/silent0070.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "silent0070", + "email": "niranjanbrahma007@gmail.com" + }, + "records": { + "CNAME": "silent0070.github.io" + } +} diff --git a/domains/silicoflare.json b/domains/silicoflare.json index fb03f9f1d..8332d278a 100644 --- a/domains/silicoflare.json +++ b/domains/silicoflare.json @@ -4,7 +4,7 @@ "email": "silicoflare@gmail.com", "discord": "832485162847305728" }, - "record": { + "records": { "CNAME": "silicoflare.pages.dev" } } diff --git a/domains/silva.json b/domains/silva.json new file mode 100644 index 000000000..ee94567b0 --- /dev/null +++ b/domains/silva.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SilvaTechB", + "email": "momanyi.2913@gmail.com" + }, + "records": { + "CNAME": "silvatechb.github.io" + } +} diff --git a/domains/silver.json b/domains/silver.json index c7e290d3a..f895f12c7 100644 --- a/domains/silver.json +++ b/domains/silver.json @@ -3,7 +3,7 @@ "username": "hishamhitte", "email": "hitte@post.com" }, - "record": { + "records": { "CNAME": "silver-29u.pages.dev" } } diff --git a/domains/simo.json b/domains/simo.json index 798ba5f65..21da24449 100644 --- a/domains/simo.json +++ b/domains/simo.json @@ -1,11 +1,10 @@ { "description": "A redirect to simo.sh", - "repo": "https://github.com/fr3fou", "owner": { "username": "fr3fou", "twitter": "fr3fou" }, - "record": { + "records": { "URL": "https://simo.sh" } } diff --git a/domains/simon.json b/domains/simon.json index 0781931ae..9107042e0 100644 --- a/domains/simon.json +++ b/domains/simon.json @@ -5,7 +5,7 @@ "username": "ssimondev", "email": "simi.simecek@seznam.cz" }, - "record": { + "records": { "CNAME": "ssimondev.github.io" } } diff --git a/domains/simone.json b/domains/simone.json new file mode 100644 index 000000000..76054226b --- /dev/null +++ b/domains/simone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cimasim89", + "email": "cimasim89@gmail.com" + }, + "records": { + "CNAME": "cimasim-portfolio.vercel.app" + } +} diff --git a/domains/simonknowsstuff.json b/domains/simonknowsstuff.json index 6558c6eab..72b0f3c5f 100644 --- a/domains/simonknowsstuff.json +++ b/domains/simonknowsstuff.json @@ -4,7 +4,7 @@ "email": "simonknowsstuff@gmail.com", "twitter": "simonknowsstuff" }, - "record": { + "records": { "CNAME": "blog-7vq.pages.dev" } } diff --git a/domains/simontran.json b/domains/simontran.json new file mode 100644 index 000000000..987215209 --- /dev/null +++ b/domains/simontran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tvkorsimon02", + "email": "tntgaming2016@gmail.com" + }, + "records": { + "CNAME": "tvkorsimon02.github.io" + } +} diff --git a/domains/simonwong.json b/domains/simonwong.json index 3f7a3e98c..820ebae68 100644 --- a/domains/simonwong.json +++ b/domains/simonwong.json @@ -5,7 +5,7 @@ "twitter": "wsj_simonwong", "discord": "Simon Wong#6040" }, - "record": { + "records": { "URL": "https://github.com/simonwong" } } diff --git a/domains/simplyleon.json b/domains/simplyleon.json index 58ac5851e..9e9b6821a 100644 --- a/domains/simplyleon.json +++ b/domains/simplyleon.json @@ -3,7 +3,7 @@ "username": "simply-leon", "email": "saishashaz@gmail.com" }, - "record": { + "records": { "CNAME": "1aumop7g.up.railway.app" } } diff --git a/domains/sincererflame71.json b/domains/sincererflame71.json index c6e93e287..d4d4c44f4 100644 --- a/domains/sincererflame71.json +++ b/domains/sincererflame71.json @@ -3,7 +3,13 @@ "username": "DarkNightcore8", "email": "DarkNightcore8@outlook.com" }, - "record": { - "A": ["185.199.108.153"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/singh-jitendar.json b/domains/singh-jitendar.json index a48f23d6f..2052d7de5 100644 --- a/domains/singh-jitendar.json +++ b/domains/singh-jitendar.json @@ -4,7 +4,7 @@ "owner": { "username": "singh-jitendar" }, - "record": { + "records": { "CNAME": "singh-jitendar.github.io" } } diff --git a/domains/siow-kai-yang.json b/domains/siow-kai-yang.json index 023489975..af0c93a46 100644 --- a/domains/siow-kai-yang.json +++ b/domains/siow-kai-yang.json @@ -5,7 +5,7 @@ "username": "yeetus-maximus", "email": "siowkaiyang@protonmail.com" }, - "record": { + "records": { "CNAME": "yeetus-maximus.github.io" } } diff --git a/domains/siris.json b/domains/siris.json index 1870137f7..b1be3253b 100644 --- a/domains/siris.json +++ b/domains/siris.json @@ -5,7 +5,7 @@ "email": "contact@siris.me", "discord": "Siris#1337" }, - "record": { + "records": { "URL": "https://siris.me" } } diff --git a/domains/siritas.json b/domains/siritas.json new file mode 100644 index 000000000..2941775bb --- /dev/null +++ b/domains/siritas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dahoba", + "email": "dahoba+github@gmail.com" + }, + "records": { + "URL": "https://siritas.gitlab.io" + } +} diff --git a/domains/sirmacr0.json b/domains/sirmacr0.json index 8ebb66f94..d5a249559 100644 --- a/domains/sirmacr0.json +++ b/domains/sirmacr0.json @@ -5,7 +5,7 @@ "username": "SirMacr0", "email": "tunagunduz03@gmail.com" }, - "record": { + "records": { "CNAME": "sirmacr0.github.io" } } diff --git a/domains/sirsimonson.json b/domains/sirsimonson.json index 5b8107352..d23cb9f17 100644 --- a/domains/sirsimonson.json +++ b/domains/sirsimonson.json @@ -4,7 +4,7 @@ "username": "sirsimonson", "email": "srsmnsn@gmail.com" }, - "record": { + "records": { "CNAME": "sirsimonson.github.io" } } diff --git a/domains/sitaram.json b/domains/sitaram.json new file mode 100644 index 000000000..30374e8c7 --- /dev/null +++ b/domains/sitaram.json @@ -0,0 +1,10 @@ +{ + "description": "Maka Sitaram's Portfolio", + "owner": { + "username": "satyaram413", + "email": "maka.sitaram@gmail.com" + }, + "records": { + "URL": "https://sitaram-portfolio.vercel.app/" + } +} diff --git a/domains/sitetransform.json b/domains/sitetransform.json index 4e876f9c5..5dca97ef2 100644 --- a/domains/sitetransform.json +++ b/domains/sitetransform.json @@ -3,7 +3,7 @@ "username": "sitetransform", "email": "quentavers@gmail.com" }, - "record": { + "records": { "CNAME": "zmverify.zoho.com" } } diff --git a/domains/sitov.json b/domains/sitov.json new file mode 100644 index 000000000..27a46e708 --- /dev/null +++ b/domains/sitov.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sitov", + "email": "cristian.sitov@gmail.com" + }, + "records": { + "CNAME": "sitov.ro" + } +} diff --git a/domains/sivaraj.json b/domains/sivaraj.json index d00a09ee7..10b4660d7 100644 --- a/domains/sivaraj.json +++ b/domains/sivaraj.json @@ -4,7 +4,13 @@ "email": "sivarajkailas@gmail.com", "discord": "1057144035812327524" }, - "record": { - "A": ["185.199.108.153"] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ] } } diff --git a/domains/siwon.json b/domains/siwon.json index 07e898543..c6ab62f11 100644 --- a/domains/siwon.json +++ b/domains/siwon.json @@ -3,7 +3,7 @@ "username": "siwonpada", "email": "psw041115@gmail.com" }, - "record": { + "records": { "A": ["43.201.138.247"] } } diff --git a/domains/siya.json b/domains/siya.json new file mode 100644 index 000000000..70f10288b --- /dev/null +++ b/domains/siya.json @@ -0,0 +1,11 @@ +{ + "description": "Siya's portfolio", + "repo": "https://github.com/rajputsiya/portfolio", + "owner": { + "username": "rajputsiya", + "email": "siyarajput9258@gmail.com" + }, + "records": { + "CNAME": "siyarajput.vercel.app" + } +} diff --git a/domains/siyamex.json b/domains/siyamex.json index 96faa8e98..7b0cfbc7c 100644 --- a/domains/siyamex.json +++ b/domains/siyamex.json @@ -3,7 +3,7 @@ "username": "siyamex", "email": "siyamex2012@gmail.com" }, - "record": { + "records": { "URL": "https://siyamex.com" } } diff --git a/domains/skar.json b/domains/skar.json index 0d9456b9c..5d65d3eeb 100644 --- a/domains/skar.json +++ b/domains/skar.json @@ -6,12 +6,7 @@ "email": "samirkarki504@gmail.com", "discord": "_sameermalik" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/skarwuuu.json b/domains/skarwuuu.json index e7035720e..5be9e8ad3 100644 --- a/domains/skarwuuu.json +++ b/domains/skarwuuu.json @@ -1,10 +1,10 @@ { - "description": "skarwuuu.is-a.dev", - "owner": { - "username": "skarwuuu", - "email": "sakshrwt@gmail.com" - }, - "record": { - "CNAME": "skarwuuu.vercel.app" - } + "description": "skarwuuu.is-a.dev", + "owner": { + "username": "skarwuuu", + "email": "sakshrwt@gmail.com" + }, + "records": { + "CNAME": "skarwuuu.vercel.app" + } } diff --git a/domains/skduck.json b/domains/skduck.json index 5c62d25cc..10ca767c6 100644 --- a/domains/skduck.json +++ b/domains/skduck.json @@ -7,7 +7,7 @@ "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": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/skibidi.json b/domains/skibidi.json index e8446824e..922473e06 100644 --- a/domains/skibidi.json +++ b/domains/skibidi.json @@ -1,9 +1,10 @@ { "owner": { "username": "bananaking6", + "email": "", "discord": "skibidibagel" }, - "record": { - "CNAME": "bananaking6.github.io" + "records": { + "CNAME": "skibidi-3.vercel.app" } } diff --git a/domains/skid.json b/domains/skid.json index 8a97aef4e..657a235da 100644 --- a/domains/skid.json +++ b/domains/skid.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "PlOszukiwaczDEV" - }, - "record": { - "CNAME": "website-4ej.pages.dev" - } + "owner": { + "username": "PlOszukiwaczDEV" + }, + "records": { + "CNAME": "website-4ej.pages.dev" + } } diff --git a/domains/skierka.json b/domains/skierka.json new file mode 100644 index 000000000..0f8ca6348 --- /dev/null +++ b/domains/skierka.json @@ -0,0 +1,11 @@ +{ + "description": "Landing page to host EdTech projects", + "repo": "https://github.com/skierkcity/skierkcity.github.io", + "owner": { + "username": "skierkcity", + "email": "jacobskierka@outlook.com" + }, + "records": { + "CNAME": "skierkcity.github.io" + } +} diff --git a/domains/skittles.json b/domains/skittles.json index 7fb9ff7a2..05599c048 100644 --- a/domains/skittles.json +++ b/domains/skittles.json @@ -3,7 +3,7 @@ "username": "BlenderDuck", "email": "blenderduck@duck.com" }, - "record": { + "records": { "CNAME": "blenderduck.github.io" } } diff --git a/domains/skmojid.json b/domains/skmojid.json index 5778d07d4..6e6545042 100644 --- a/domains/skmojid.json +++ b/domains/skmojid.json @@ -7,7 +7,7 @@ "twitter": "SkMojid66927", "preview": "skmojid.netlify.app" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/skulix.json b/domains/skulix.json index 5f70429a9..2635778a2 100644 --- a/domains/skulix.json +++ b/domains/skulix.json @@ -5,7 +5,7 @@ "username": "SkuliX01", "email": "bartosz.krawczyk34@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-9ga.pages.dev" } } diff --git a/domains/skullfiredevil.json b/domains/skullfiredevil.json index 6dca5a5c0..98af0b9d8 100644 --- a/domains/skullfiredevil.json +++ b/domains/skullfiredevil.json @@ -3,7 +3,7 @@ "username": "Skullfiredevil", "email": "jotipinto@gmail.com" }, - "record": { + "records": { "CNAME": "skullfiredevil.github.io" } } diff --git a/domains/sky-bridge.json b/domains/sky-bridge.json index 331ebc563..67480139e 100644 --- a/domains/sky-bridge.json +++ b/domains/sky-bridge.json @@ -3,7 +3,7 @@ "username": "levisurely", "email": "jr1264464@gmail.com" }, - "record": { + "records": { "CNAME": "levisurely.github.io" } } diff --git a/domains/sky-development.json b/domains/sky-development.json index 20b413a1e..258716274 100644 --- a/domains/sky-development.json +++ b/domains/sky-development.json @@ -3,7 +3,7 @@ "username": "Skyy-Development", "email": "strikefn143@gmail.com" }, - "record": { + "records": { "CNAME": "statuspage.betteruptime.com" } } diff --git a/domains/sky.json b/domains/sky.json index e7c431c1c..d4c28cdd6 100644 --- a/domains/sky.json +++ b/domains/sky.json @@ -1,11 +1,10 @@ { "description": "Sky's personal website", - "repo": "https://github.com/SkyLeite", "owner": { "username": "skyleite", "email": "sky@leite.dev" }, - "record": { + "records": { "CNAME": "leite.dev" } } diff --git a/domains/skycloudd.json b/domains/skycloudd.json index ba7d8a830..373adcf35 100644 --- a/domains/skycloudd.json +++ b/domains/skycloudd.json @@ -3,7 +3,7 @@ "username": "skycloudd", "email": "benkrassenburg@gmail.com" }, - "record": { + "records": { "CNAME": "skycloudd.github.io" } } diff --git a/domains/skydonald.json b/domains/skydonald.json index 45aa08691..8910839d3 100644 --- a/domains/skydonald.json +++ b/domains/skydonald.json @@ -5,7 +5,7 @@ "username": "SkyDonald", "email": "skydonald.dev@gmail.com" }, - "record": { + "records": { "CNAME": "skydonald.github.io" } } diff --git a/domains/slainbot.json b/domains/slainbot.json index dda436cf8..9f8b660bd 100644 --- a/domains/slainbot.json +++ b/domains/slainbot.json @@ -4,7 +4,7 @@ "email": "khongphaihoangquanghuy@gmail.com", "discord": "181064730075463680" }, - "record": { + "records": { "CNAME": "khongphaihoangquanghuy.github.io" } } diff --git a/domains/slavicman.json b/domains/slavicman.json index 1d0297ee2..1a8170c58 100644 --- a/domains/slavicman.json +++ b/domains/slavicman.json @@ -5,7 +5,7 @@ "username": "SlavicMan", "email": "kizz4114@yahoo.com" }, - "record": { + "records": { "CNAME": "slavicman.github.io" } } diff --git a/domains/slovaks.json b/domains/slovaks.json new file mode 100644 index 000000000..e827d1d1e --- /dev/null +++ b/domains/slovaks.json @@ -0,0 +1,12 @@ +{ + "description": "a website for my personal things", + "repo": "https://github.com/slovakians/crvt", + "owner": { + "username": "slovakians", + "email": "vipmodzteam@gmail.com" + }, + "records": { + "CNAME": "slovakians.github.io" + }, + "proxied": true +} diff --git a/domains/slow.json b/domains/slow.json index 31191a39a..0a1f1875b 100644 --- a/domains/slow.json +++ b/domains/slow.json @@ -5,7 +5,7 @@ "username": "slowwdev", "email": "slowdev14@gmail.com" }, - "record": { + "records": { "CNAME": "slowwdev.github.io" } } diff --git a/domains/sly.json b/domains/sly.json index 80a3024ed..53f0a6b20 100644 --- a/domains/sly.json +++ b/domains/sly.json @@ -5,7 +5,7 @@ "username": "SlyBouhafs", "email": "khmedj+github@gmail.com" }, - "record": { + "records": { "A": ["164.92.183.234"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/smaltin.json b/domains/smaltin.json index 326bc89f5..af41a5cc8 100644 --- a/domains/smaltin.json +++ b/domains/smaltin.json @@ -3,7 +3,7 @@ "username": "Smaltin", "email": "sterling.maltin@gmail.com" }, - "record": { + "records": { "URL": "https://smaltin.dev" } } diff --git a/domains/smart.json b/domains/smart.json index 3935fc0e3..69f972ec7 100644 --- a/domains/smart.json +++ b/domains/smart.json @@ -4,7 +4,7 @@ "email": "smartcoder@linuxmail.org", "discord": "694986201739952229" }, - "record": { + "records": { "NS": ["ignacio.ns.cloudflare.com", "nicole.ns.cloudflare.com"] } } diff --git a/domains/smartlinuxcoder.json b/domains/smartlinuxcoder.json index 8034acf7f..8442f50f7 100644 --- a/domains/smartlinuxcoder.json +++ b/domains/smartlinuxcoder.json @@ -3,7 +3,7 @@ "username": "Smartlinuxcoder", "email": "smartcoder@linuxmail.org" }, - "record": { + "records": { "CNAME": "smartlinuxcoder.github.io" } } diff --git a/domains/smeagol.json b/domains/smeagol.json index c3779955f..d9f94f84d 100644 --- a/domains/smeagol.json +++ b/domains/smeagol.json @@ -5,7 +5,7 @@ "username": "IamSmeagol", "discord": "iamsmeagol" }, - "record": { + "records": { "CNAME": "iamsmeagol.github.io" } } diff --git a/domains/smhemel.json b/domains/smhemel.json new file mode 100644 index 000000000..d3c4aa3e3 --- /dev/null +++ b/domains/smhemel.json @@ -0,0 +1,10 @@ +{ + "description": "A Full-Stack Developer", + "owner": { + "username": "smhemel", + "email": "smhemel.eu@gmail.com" + }, + "records": { + "URL": "https://github.com/smhemel" + } +} diff --git a/domains/smilos.json b/domains/smilos.json index 0a4f8dffa..3547ae7df 100644 --- a/domains/smilos.json +++ b/domains/smilos.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "smilos71" - }, - "record": { - "CNAME": "smilos71.github.io" - } + "owner": { + "username": "smilos71" + }, + "records": { + "CNAME": "smilos71.github.io" + } } diff --git a/domains/smitty119.json b/domains/smitty119.json index 7fc864a02..00964d215 100644 --- a/domains/smitty119.json +++ b/domains/smitty119.json @@ -3,7 +3,7 @@ "username": "smitty119", "email": "smittykjohnson@gmail.com" }, - "record": { + "records": { "CNAME": "smitty119.github.io" } } diff --git a/domains/smittykjohnson.json b/domains/smittykjohnson.json index 7fc864a02..00964d215 100644 --- a/domains/smittykjohnson.json +++ b/domains/smittykjohnson.json @@ -3,7 +3,7 @@ "username": "smitty119", "email": "smittykjohnson@gmail.com" }, - "record": { + "records": { "CNAME": "smitty119.github.io" } } diff --git a/domains/smlxdesign.json b/domains/smlxdesign.json new file mode 100644 index 000000000..435b113af --- /dev/null +++ b/domains/smlxdesign.json @@ -0,0 +1,11 @@ +{ + "description": "SMLX Design's personal blog site", + "repo": "https://github.com/smlxdesign/astro-newsite", + "owner": { + "username": "smlxdesign", + "email": "samuel.smlxdesign@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/smp.json b/domains/smp.json index 193cbd798..3d8bd0e43 100644 --- a/domains/smp.json +++ b/domains/smp.json @@ -3,7 +3,7 @@ "username": "zzph", "email": "johnbrettc@gmail.com" }, - "record": { + "records": { "CNAME": "clear-skies.onrender.com" } } diff --git a/domains/smtp.zerow.json b/domains/smtp.zerow.json index dc6cd582c..2c0080bda 100644 --- a/domains/smtp.zerow.json +++ b/domains/smtp.zerow.json @@ -3,7 +3,7 @@ "username": "DevZerow", "email": "zerow.pro@protonmail.com" }, - "record": { + "records": { "CNAME": "zerow.is-a.dev" } } diff --git a/domains/smug.json b/domains/smug.json index 577d8e52c..34ce3f412 100644 --- a/domains/smug.json +++ b/domains/smug.json @@ -3,7 +3,7 @@ "username": "itsf1ckingsmugg", "email": "smugwhy420p@outlook.com" }, - "record": { + "records": { "CNAME": "itsf1ckingsmugg.github.io" } } diff --git a/domains/smutex.json b/domains/smutex.json index cb475dd77..d51e19d51 100644 --- a/domains/smutex.json +++ b/domains/smutex.json @@ -3,7 +3,7 @@ "username": "Smalorek", "discord": "286178186645995522" }, - "record": { + "records": { "CNAME": "smalorek.github.io" } } diff --git a/domains/snake.json b/domains/snake.json index e2c8dec17..86c455159 100644 --- a/domains/snake.json +++ b/domains/snake.json @@ -3,7 +3,7 @@ "username": "zarqizoubir", "email": "zarqi.ezzoubair@etu.uae.ac.ma" }, - "record": { + "records": { "CNAME": "zarqizoubir.github.io" } } diff --git a/domains/snazzah.json b/domains/snazzah.json index 66123aac3..631d5a465 100644 --- a/domains/snazzah.json +++ b/domains/snazzah.json @@ -1,12 +1,11 @@ { "description": "Where the wild ones are.", - "repo": "https://github.com/Snazzah", "owner": { "username": "Snazzah", "email": "me@snazzah.com", "twitter": "Snazzah" }, - "record": { + "records": { "URL": "https://snazzah.com" } } diff --git a/domains/snbhowmik.json b/domains/snbhowmik.json index 93da31b96..8bca1e5e4 100644 --- a/domains/snbhowmik.json +++ b/domains/snbhowmik.json @@ -7,7 +7,7 @@ "reddit": "https://www.reddit.com/user/snbhowmik/", "email": "snbhowmikac@proton.me" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/sneazy25.json b/domains/sneazy25.json new file mode 100644 index 000000000..332cd19b4 --- /dev/null +++ b/domains/sneazy25.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/sneh.json b/domains/sneh.json index 37979668e..42373b7bf 100644 --- a/domains/sneh.json +++ b/domains/sneh.json @@ -3,7 +3,7 @@ "username": "snehasishlol", "email": "snehasishcodes@gmail.com" }, - "record": { + "records": { "CNAME": "sneh-is-a-dev.pages.dev" } } diff --git a/domains/snehajain.json b/domains/snehajain.json new file mode 100644 index 000000000..4d90c0c9d --- /dev/null +++ b/domains/snehajain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "snehajain16", + "email": "snehajain161104@gmail.com" + }, + "records": { + "CNAME": "snehajain16.github.io" + } +} diff --git a/domains/snehal.json b/domains/snehal.json new file mode 100644 index 000000000..d4043d85e --- /dev/null +++ b/domains/snehal.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/sneh-al/sneh-al.github.io", + "owner": { + "username": "sneh-al", + "email": "snehal1380@gmail.com" + }, + "records": { + "CNAME": "sneh-al.github.io" + } +} diff --git a/domains/snek.json b/domains/snek.json index 8dd9f599f..89a9b6e34 100644 --- a/domains/snek.json +++ b/domains/snek.json @@ -3,7 +3,7 @@ "username": "sn3kdev", "email": "snektg@gmail.com" }, - "record": { + "records": { "URL": "https://odnako_zmeyka.t.me" } } diff --git a/domains/snelusha.json b/domains/snelusha.json index 72a00c681..0159cecd1 100644 --- a/domains/snelusha.json +++ b/domains/snelusha.json @@ -4,7 +4,7 @@ "email": "nelusha2003@gmail.com", "discord": "454880214904864776" }, - "record": { + "records": { "URL": "https://snelusha.dev" } } diff --git a/domains/snip.json b/domains/snip.json index 98d15d762..3040e419c 100644 --- a/domains/snip.json +++ b/domains/snip.json @@ -3,7 +3,7 @@ "username": "realsnipc", "email": "snipc.mail@proton.me" }, - "record": { + "records": { "URL": "https://snipc.me" } } diff --git a/domains/snowcatridge10.json b/domains/snowcatridge10.json index 94fabad6a..e3805be79 100644 --- a/domains/snowcatridge10.json +++ b/domains/snowcatridge10.json @@ -5,7 +5,7 @@ "username": "snowcatridge10", "email": "akreamer@pm.me" }, - "record": { + "records": { "CNAME": "snowcatridge10.github.io" } } diff --git a/domains/snowsuno.json b/domains/snowsuno.json index 28acd8c07..ad67867ee 100644 --- a/domains/snowsuno.json +++ b/domains/snowsuno.json @@ -3,7 +3,7 @@ "username": "SnowSuno", "email": "percy3368@gmail.com" }, - "record": { + "records": { "A": ["89.106.200.1"] } } diff --git a/domains/snowy.json b/domains/snowy.json index bbe363e7c..980d47e63 100644 --- a/domains/snowy.json +++ b/domains/snowy.json @@ -2,7 +2,7 @@ "owner": { "username": "HayBael" }, - "record": { + "records": { "CNAME": "homepage-revisitrus.vercel.app" } } diff --git a/domains/snowyid.json b/domains/snowyid.json index eed2dbf2e..e85ec0b40 100644 --- a/domains/snowyid.json +++ b/domains/snowyid.json @@ -5,7 +5,7 @@ "username": "HayBael", "email": "botaklicin590@gmail.com" }, - "record": { + "records": { "URL": "https://homepage-revisiakhir.vercel.app" } } diff --git a/domains/snozxyx.json b/domains/snozxyx.json index e9b87a942..43650d0de 100644 --- a/domains/snozxyx.json +++ b/domains/snozxyx.json @@ -3,7 +3,7 @@ "username": "Snozxyx", "email": "gabhastikumar@gmail.com" }, - "record": { + "records": { "CNAME": "snozxyx.github.io" } } diff --git a/domains/snupai.json b/domains/snupai.json index 8f571b0cf..9560a4b0e 100644 --- a/domains/snupai.json +++ b/domains/snupai.json @@ -3,7 +3,7 @@ "username": "Snupai", "email": "yannluca@naeher.eu" }, - "record": { + "records": { "URL": "https://snupai.me" } } diff --git a/domains/soamtripathy.json b/domains/soamtripathy.json index c8d575b52..af9289a21 100644 --- a/domains/soamtripathy.json +++ b/domains/soamtripathy.json @@ -3,7 +3,7 @@ "username": "soamtripathy", "email": "soumyaranjantripathy44@outlook.com" }, - "record": { + "records": { "URL": "https://portfolio-tawny-omega-13.vercel.app/" } } diff --git a/domains/soap.json b/domains/soap.json index d01c00e18..339cd5be8 100644 --- a/domains/soap.json +++ b/domains/soap.json @@ -5,7 +5,7 @@ "username": "HmonsterG", "email": "Plzdontgethacked@outlook.com" }, - "record": { + "records": { "CNAME": "hmonsterg.github.io" } } diff --git a/domains/soccer.json b/domains/soccer.json new file mode 100644 index 000000000..babfdceec --- /dev/null +++ b/domains/soccer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minecradt", + "email": "soccer1992.is.a.dev@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/socordia.json b/domains/socordia.json new file mode 100644 index 000000000..03385a569 --- /dev/null +++ b/domains/socordia.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation site for the socordia programming language", + "repo": "https://github.com/Socordia-Org/Socordia", + "owner": { + "username": "furesoft", + "email": "chris.anders@outlook.de" + }, + "records": { + "URL": "https://furesoft.gitbook.io/socordia" + }, + "proxied": false +} diff --git a/domains/soestin.json b/domains/soestin.json index da74cbb27..58b329d23 100644 --- a/domains/soestin.json +++ b/domains/soestin.json @@ -1,10 +1,9 @@ { "owner": { "username": "soestin", - "discord": "769813729599553567", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Eq_I4GOjlOB5tFdw0gihpb-s5mNrdbVcGGgjqD9T08EXuXhaCt9w-dzK8H12VZdP_PRzdgJe_nMkm5B6qfUrfcr9D1VdfCr_AsxPw39fH3hxmopIRJojj_t0irp-yw6rXC9wTMqdhaqQ1sEs_38sZV5Hnr4UMsuo3QIPimuDFecrVIreelu8yQzf2c0JmOEST4os6iwlK0Xx4HN_sSa2BxA_xddtLsn1LROSeqlba6r4CXfJxVmFEfqcXuW510-yVhg1O6wIVPz5la9FTgK12HYvx3qDnYnC3cJ5V1few5rJP4OeIby6dte7vtx7zuo3vbKkClFojc1Q9j1UmMReDQ.3I8N4rDWvBuPjEWKvognUA.OrICUOylQgkjUUekVYAQpHdJ5v4L68eAC6X69zwPUEZqRe33Xrjsk0OtCWfm-JDleiEIhUxsAuP_R3IMxTRwQA.cguBkKWaJpafBZkI9uKbOg" + "discord": "769813729599553567" }, - "record": { + "records": { "CNAME": "soestin.github.io" } } diff --git a/domains/sofa.json b/domains/sofa.json index d2ab9cb47..8895b3c04 100644 --- a/domains/sofa.json +++ b/domains/sofa.json @@ -6,7 +6,7 @@ "email": "contact.dev.teda@gmail.com", "twitter": "SlumberDemon" }, - "record": { + "records": { "CNAME": "slumberdemon.github.io" } } diff --git a/domains/sohag.json b/domains/sohag.json new file mode 100644 index 000000000..3ac2771f8 --- /dev/null +++ b/domains/sohag.json @@ -0,0 +1,10 @@ +{ + "description": "For my portfolio", + "owner": { + "username": "sohag02", + "discord": "sohagjabed" + }, + "records": { + "CNAME": "sohagj.vercel.app" + } +} diff --git a/domains/soham.json b/domains/soham.json index 51a2e3e43..87915454d 100644 --- a/domains/soham.json +++ b/domains/soham.json @@ -5,7 +5,7 @@ "username": "sohamdoescode", "email": "soham.b630@gmail.com" }, - "record": { + "records": { "CNAME": "sohamdoescode.github.io" } } diff --git a/domains/sohil876.json b/domains/sohil876.json index b42d30394..29d6896ea 100644 --- a/domains/sohil876.json +++ b/domains/sohil876.json @@ -3,7 +3,7 @@ "username": "Sohil876", "email": "sohil876@gmail.com" }, - "record": { + "records": { "CNAME": "sohil876.github.io" } } diff --git a/domains/solareclipse995.json b/domains/solareclipse995.json index 1f13d4fc2..bf1df99a4 100644 --- a/domains/solareclipse995.json +++ b/domains/solareclipse995.json @@ -5,7 +5,7 @@ "username": "solareclipse995", "email": "solareclipse995@outlook.com" }, - "record": { + "records": { "CNAME": "solareclipse995.github.io" } } diff --git a/domains/solarskripts.json b/domains/solarskripts.json index bf4bcc296..1dda3fe30 100644 --- a/domains/solarskripts.json +++ b/domains/solarskripts.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "SolarSkripts", - "email": "0hexius0@gmail.com" - }, - "record": { - "CNAME": "solarskripts.net" - } + "owner": { + "username": "SolarSkripts", + "email": "0hexius0@gmail.com" + }, + "records": { + "CNAME": "solarskripts.net" + } } diff --git a/domains/soldierp.json b/domains/soldierp.json index baef014e4..ed1fc3023 100644 --- a/domains/soldierp.json +++ b/domains/soldierp.json @@ -3,7 +3,7 @@ "username": "Soldierplayz6867", "email": "soldierplayz.tw@gmail.com" }, - "record": { + "records": { "CNAME": "da-1.us.hostns.io" } } diff --git a/domains/solfeggio-training.json b/domains/solfeggio-training.json new file mode 100644 index 000000000..a9eb7f378 --- /dev/null +++ b/domains/solfeggio-training.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/henrique-coder/solfeggio-training", + "owner": { + "username": "henrique-coder", + "email": "hjyz6rqyb@mozmail.com" + }, + "records": { + "CNAME": "solfeggio-training.vercel.app" + } +} diff --git a/domains/somaiyalbakhet.json b/domains/somaiyalbakhet.json index 2e4f4b519..92f8bc748 100644 --- a/domains/somaiyalbakhet.json +++ b/domains/somaiyalbakhet.json @@ -4,7 +4,7 @@ "username": "Somaiya-XI", "discord": "Sen!#0577" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/sombochea.json b/domains/sombochea.json new file mode 100644 index 000000000..a7576edf9 --- /dev/null +++ b/domains/sombochea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sombochea", + "email": "sombochea100@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/somenicetables.json b/domains/somenicetables.json index 0824f2025..65644d540 100644 --- a/domains/somenicetables.json +++ b/domains/somenicetables.json @@ -6,7 +6,7 @@ "email": "themadman2215@gmail.com", "twitter": "15usernamelimit" }, - "record": { + "records": { "CNAME": "somenicetables.github.io" } } diff --git a/domains/someone.json b/domains/someone.json index 182d02c88..80f9a08df 100644 --- a/domains/someone.json +++ b/domains/someone.json @@ -5,7 +5,7 @@ "username": "ow0x", "email": "studiouifxdesignersandcoders@gmail.com" }, - "record": { + "records": { "CNAME": "ow0x.github.io" } } diff --git a/domains/somesh.json b/domains/somesh.json index e150da26e..acf7cff16 100644 --- a/domains/somesh.json +++ b/domains/somesh.json @@ -5,7 +5,7 @@ "username": "someshportfoliohome", "email": "yeahitspace@gmail.com" }, - "record": { + "records": { "CNAME": "someshportfoliohome.github.io" } } diff --git a/domains/someshtiwari.json b/domains/someshtiwari.json index d29ff4857..32a24930f 100644 --- a/domains/someshtiwari.json +++ b/domains/someshtiwari.json @@ -5,7 +5,7 @@ "username": "someshportfolio", "email": "yeahitspace@gmail.com" }, - "record": { + "records": { "CNAME": "someshportfolio.github.io" } } diff --git a/domains/somyadipghosh.json b/domains/somyadipghosh.json index 726befd50..4dcdef8bf 100644 --- a/domains/somyadipghosh.json +++ b/domains/somyadipghosh.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/son.json b/domains/son.json index ca79663c4..538501b93 100644 --- a/domains/son.json +++ b/domains/son.json @@ -3,7 +3,7 @@ "username": "sonphantrung", "email": "phantrungson17@gmail.com" }, - "record": { + "records": { "CNAME": "sonphantrung.github.io" } } diff --git a/domains/soni-aakas.json b/domains/soni-aakas.json index 31afaa92b..dbfec26b0 100644 --- a/domains/soni-aakas.json +++ b/domains/soni-aakas.json @@ -5,7 +5,7 @@ "username": "soni-aakas", "email": "soni.aakas@truestaz.com" }, - "record": { + "records": { "URL": "https://soni-aakas.github.io" } } diff --git a/domains/sono.json b/domains/sono.json index 18f3e021d..754de760a 100644 --- a/domains/sono.json +++ b/domains/sono.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "getSono", - "email": "sono.arbeit@gmail.com" - }, - "record": { - "NS": [ - "jasmine.ns.cloudflare.com", - "trace.ns.cloudflare.com" - ] - } + "owner": { + "username": "getSono", + "email": "sono.arbeit@gmail.com" + }, + "records": { + "NS": ["jasmine.ns.cloudflare.com", "trace.ns.cloudflare.com"] + } } diff --git a/domains/sonu.json b/domains/sonu.json index 84005e61f..d1dcb9450 100644 --- a/domains/sonu.json +++ b/domains/sonu.json @@ -5,7 +5,7 @@ "username": "bad-boy-codes", "email": "mail@semant.is-a.dev" }, - "record": { + "records": { "CNAME": "bad-boy-codes.github.io" } } diff --git a/domains/soothe.json b/domains/soothe.json index dfb34e483..a6f167883 100644 --- a/domains/soothe.json +++ b/domains/soothe.json @@ -6,7 +6,7 @@ "email": "lrmn.dev@gmail.com", "discord": "romanromannya" }, - "record": { + "records": { "CNAME": "soothe-bot.github.io" } } diff --git a/domains/sophie.json b/domains/sophie.json index 15cbe9666..d339bfe73 100644 --- a/domains/sophie.json +++ b/domains/sophie.json @@ -3,7 +3,7 @@ "username": "awne8886", "email": "sophie@awne.xyz" }, - "record": { + "records": { "CNAME": "sophie-github-io.pages.dev" } } diff --git a/domains/sopi.json b/domains/sopi.json new file mode 100644 index 000000000..3e2a0d3a3 --- /dev/null +++ b/domains/sopi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sopiseptiansyah", + "email": "sopiseptiansyah@gmail.com" + }, + "records": { + "CNAME": "sopiseptiansyah.vercel.app" + } +} diff --git a/domains/sora-os.json b/domains/sora-os.json index 4ca1b2332..5b1e69d29 100644 --- a/domains/sora-os.json +++ b/domains/sora-os.json @@ -1,12 +1,11 @@ -{ - "description": "Cloud operating system", - "repo": "https://github.com/qloha/Sora-OS", - "owner": { - "username": "qloha", - "email": "", - "youtube": "https://youtube.com/@qloha" - }, - "record": { - "CNAME": "sora-os.up.railway.app" - } -} +{ + "description": "Cloud operating system", + "repo": "https://github.com/qloha/Sora-OS", + "owner": { + "username": "qloha", + "youtube": "https://youtube.com/@qloha" + }, + "records": { + "CNAME": "sora-os.up.railway.app" + } +} diff --git a/domains/soraishiro.json b/domains/soraishiro.json index 6c9db0df6..0a82422ee 100644 --- a/domains/soraishiro.json +++ b/domains/soraishiro.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Soraishiro" - }, - "record": { - "CNAME": "soraishiro.github.io" - } -} + "owner": { + "username": "Soraishiro" + }, + "records": { + "CNAME": "soraishiro.github.io" + } +} diff --git a/domains/sortalost.json b/domains/sortalost.json new file mode 100644 index 000000000..c8051bf2f --- /dev/null +++ b/domains/sortalost.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sortalost", + "email": "sortalost@cock.li" + }, + "records": { + "CNAME": "sortalost.vercel.app" + } +} diff --git a/domains/sosaian.json b/domains/sosaian.json new file mode 100644 index 000000000..88708c972 --- /dev/null +++ b/domains/sosaian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sosaian", + "email": "is-a.dev.unworthy202@passinbox.com" + }, + "records": { + "CNAME": "sosaian.github.io" + } +} diff --git a/domains/sotoyer.json b/domains/sotoyer.json index 40101d476..68d9ebd6f 100644 --- a/domains/sotoyer.json +++ b/domains/sotoyer.json @@ -3,7 +3,7 @@ "username": "carlos-perez-16003", "email": "cvalle2soto@gmail.com" }, - "record": { + "records": { "URL": "https://sotoyer.dcms.site/" } } diff --git a/domains/sotto.json b/domains/sotto.json index 8d8cf68c3..32c002d7c 100644 --- a/domains/sotto.json +++ b/domains/sotto.json @@ -3,7 +3,7 @@ "username": "RaydanOMGr", "email": "andreykelbler@outlook.de" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/soul.json b/domains/soul.json new file mode 100644 index 000000000..564b42d1b --- /dev/null +++ b/domains/soul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SoulDevs", + "email": "soulcosmic1406@proton.me" + }, + "records": { + "CNAME": "main-protfolio-seven.vercel.app" + } +} diff --git a/domains/soulfulkrishna.json b/domains/soulfulkrishna.json index d268d9fa3..f9736f201 100644 --- a/domains/soulfulkrishna.json +++ b/domains/soulfulkrishna.json @@ -3,7 +3,7 @@ "username": "ecstaticsoul", "email": "soulfulkrishna@gmail.com" }, - "record": { + "records": { "CNAME": "ecstaticsoul.github.io" } } diff --git a/domains/soulis.json b/domains/soulis.json index 9f2bab768..61379abbb 100644 --- a/domains/soulis.json +++ b/domains/soulis.json @@ -3,7 +3,7 @@ "username": "anselal", "email": "t.selalmasidis@gmail.com" }, - "record": { + "records": { "URL": "https://soulis.tech" } } diff --git a/domains/soumo.json b/domains/soumo.json index 4e35b2fdd..fb697d211 100644 --- a/domains/soumo.json +++ b/domains/soumo.json @@ -3,7 +3,7 @@ "username": "Sourayen", "email": "soumodas4536@gmail.com" }, - "record": { + "records": { "URL": "https://sourayen.github.io" } } diff --git a/domains/soumya-das.json b/domains/soumya-das.json index 77d7f34c7..5844b50f6 100644 --- a/domains/soumya-das.json +++ b/domains/soumya-das.json @@ -4,7 +4,7 @@ "owner": { "username": "soumyah-das" }, - "record": { + "records": { "CNAME": "soumyah-das.github.io" } } diff --git a/domains/sourabh.json b/domains/sourabh.json new file mode 100644 index 000000000..e16c15ee1 --- /dev/null +++ b/domains/sourabh.json @@ -0,0 +1,11 @@ +{ + "description": "Sourabh Yadav's Portfolio", + "repo": "https://github.com/YadavSourabhGH/YadavSourabhGH.github.io", + "owner": { + "username": "YadavSourabhGH", + "email": "yadav.sourabh9012@gmail.com" + }, + "records": { + "CNAME": "yadavsourabhgh.github.io" + } +} diff --git a/domains/sourav-parida.json b/domains/sourav-parida.json index 94766d715..24c53e655 100644 --- a/domains/sourav-parida.json +++ b/domains/sourav-parida.json @@ -5,7 +5,7 @@ "username": "Sourav-Parida", "email": "souravparida170@gmail.com" }, - "record": { + "records": { "CNAME": "sourav-parida.github.io" } } diff --git a/domains/sourav.json b/domains/sourav.json index a37eacc31..babc3c7e6 100644 --- a/domains/sourav.json +++ b/domains/sourav.json @@ -3,10 +3,9 @@ "repo": "https://github.com/itzsouravkumar/itzsouravkumar.github.io", "owner": { "username": "itzsouravkumar", - "email": "", "discord": "itz_sour4v" }, - "record": { + "records": { "CNAME": "itzsouravkumar.github.io" } } diff --git a/domains/sourov-khan-nahid.json b/domains/sourov-khan-nahid.json index d1b707373..be0d657b6 100644 --- a/domains/sourov-khan-nahid.json +++ b/domains/sourov-khan-nahid.json @@ -3,7 +3,7 @@ "username": "SOUROVKHANNAHID", "email": "SourovKhanNahid@gmail.com" }, - "record": { + "records": { "CNAME": "sourovkhannahid.github.io" } } diff --git a/domains/sow.json b/domains/sow.json index f59aa47ab..2d5c8a3cd 100644 --- a/domains/sow.json +++ b/domains/sow.json @@ -3,7 +3,7 @@ "username": "sowisgone", "email": "therealsnowmercy@gmail.com" }, - "record": { + "records": { "URL": "https://sow.lol" } } diff --git a/domains/sowmik.json b/domains/sowmik.json index 0a0159f46..09acab239 100644 --- a/domains/sowmik.json +++ b/domains/sowmik.json @@ -3,7 +3,7 @@ "username": "sowmiksudo", "email": "Xowmik@gmail.com" }, - "record": { + "records": { "CNAME": "sowmiksudo.github.io" } } diff --git a/domains/soymadip.json b/domains/soymadip.json new file mode 100644 index 000000000..5a5aa1ab1 --- /dev/null +++ b/domains/soymadip.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Site", + "repo": "https://github.com/soymadip/soymadip.github.io", + "owner": { + "username": "soymadip", + "email": "soumadip@zohomail.in" + }, + "records": { + "CNAME": "soymadip.github.io" + } +} diff --git a/domains/soyuj.json b/domains/soyuj.json index f5e86f57b..02956027f 100644 --- a/domains/soyuj.json +++ b/domains/soyuj.json @@ -4,7 +4,7 @@ "username": "basnetsoyuj", "email": "bsoyuj@gmail.com" }, - "record": { + "records": { "URL": "http://soyuj.com.np" } } diff --git a/domains/spark.json b/domains/spark.json index baba7f665..83fb75639 100644 --- a/domains/spark.json +++ b/domains/spark.json @@ -1,10 +1,9 @@ { "owner": { "username": "ChiliDain1010", - "discord": "1109163497750802462", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a1DqPTklDs-2Pu4OOKzLfBPbHfoilro77qUPjY57bewAt0gd6S5QMW9ZM88ueP7Hvs7vWsEpHhKD6WV71cJxOGUbukp3cpQ7RBngs6SqIqqx70JM7WCxrkqMBnDBSOTFc85pvLkUA1LrPNXSs0dO7eZjg1y_xEarEYc5YRg9FvNqVYSJplCHrzIsMM4vbKFfEuu6k2iH1Rc7DC7JwcL7CGJz7mBfXwFI3AzJLPFXQK_2UTrxsmEGB01zaiGUFhLADTZowYQr-7bMV3zHFPGjB4T2p3kA0rkPCdLMu2-HU9sEe4LFBwoVvNq3ScYXUGkYlogqgA4cpPyCcgfWhI-EVw.0jfJ04_4N43xpTDFxcPEOw.PlLGeBJMh_exOEGKjCTaIQxrm2KwBfgchUgGgPirNwdeD80LzKr06oNPPqPL-jDzqllqGmC2u4fZzXfelHhwJ0w39vy3NkfcmKX6HsrLsYo.1KjSvNP6uVPg_60QLX4swQ" + "discord": "1109163497750802462" }, - "record": { + "records": { "CNAME": "spark-bypass.pages.dev" } } diff --git a/domains/spaxly.json b/domains/spaxly.json index e78e6d9eb..bca13bc1e 100644 --- a/domains/spaxly.json +++ b/domains/spaxly.json @@ -4,13 +4,8 @@ "email": "ohmrc2545@gmail.com", "discord": "569920282546929694" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=ohmrc2545@gmail.com" } diff --git a/domains/spechide.json b/domains/spechide.json index 0e09c60f0..1c1675fe8 100644 --- a/domains/spechide.json +++ b/domains/spechide.json @@ -5,7 +5,7 @@ "username": "SpEcHiDe", "twitter": "SpEcHiDe" }, - "record": { + "records": { "CNAME": "spechide.github.io" } } diff --git a/domains/specteado.json b/domains/specteado.json index 7dcf6f3c9..e91da0315 100644 --- a/domains/specteado.json +++ b/domains/specteado.json @@ -5,7 +5,7 @@ "username": "Specteado", "email": "jusefmasabanda10@gmail.com" }, - "record": { + "records": { "CNAME": "specteado.github.io" } } diff --git a/domains/spectra.json b/domains/spectra.json index 0caadc8fe..d7cb1894c 100644 --- a/domains/spectra.json +++ b/domains/spectra.json @@ -3,7 +3,7 @@ "username": "SpectraTheFox", "email": "spectra@spectrathefox.xyz" }, - "record": { + "records": { "URL": "https://spectrathefox.xyz" } } diff --git a/domains/spectranow.json b/domains/spectranow.json index f12583b66..65b92aca4 100644 --- a/domains/spectranow.json +++ b/domains/spectranow.json @@ -3,7 +3,7 @@ "username": "booktastic1", "email": "booktastic-library@outlook.com" }, - "record": { + "records": { "URL": "https://btastic.wixsite.com/spectra" } } diff --git a/domains/speedie.json b/domains/speedie.json index b8d56af7c..9225d6eb7 100644 --- a/domains/speedie.json +++ b/domains/speedie.json @@ -3,7 +3,7 @@ "username": "speediegq", "email": "speedie.alt@gmail.com" }, - "record": { + "records": { "URL": "https://speedie.gq" } } diff --git a/domains/speedindeed1.json b/domains/speedindeed1.json new file mode 100644 index 000000000..1c0ce6166 --- /dev/null +++ b/domains/speedindeed1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rohan-ingle", + "email": "rohaningle911@gmail.com" + }, + "records": { + "CNAME": "rohan-ingle.github.io" + } +} diff --git a/domains/spencer.json b/domains/spencer.json new file mode 100644 index 000000000..7cfa0ca5f --- /dev/null +++ b/domains/spencer.json @@ -0,0 +1,11 @@ +{ + "description": "Spencer's website", + "repo": "https://github.com/LeeSpencer/leespencer.github.io", + "owner": { + "username": "LeeSpencer", + "email": "mr.lee.spencer@gmail.com" + }, + "records": { + "CNAME": "leespencer.github.io" + } +} diff --git a/domains/spicyaxolotl.json b/domains/spicyaxolotl.json index 9305546e5..30bf016af 100644 --- a/domains/spicyaxolotl.json +++ b/domains/spicyaxolotl.json @@ -5,7 +5,7 @@ "username": "Spicy-Axolotl", "discord": "Axolotl (mycoolface256)#4736" }, - "record": { + "records": { "CNAME": "spicy-axolotl.github.io" } } diff --git a/domains/spicydevs.json b/domains/spicydevs.json index 5a57cd717..3963ea2fa 100644 --- a/domains/spicydevs.json +++ b/domains/spicydevs.json @@ -4,7 +4,7 @@ "email": "aayushmagrawal@gmail.com", "twitter": "DevAayu5h" }, - "record": { + "records": { "CNAME": "spicydevs.pages.dev" } } diff --git a/domains/spider-development.json b/domains/spider-development.json index 21dde4001..db695ad0e 100644 --- a/domains/spider-development.json +++ b/domains/spider-development.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "spider-development01" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "spider-development01" + }, + "records": { + "A": ["75.2.60.5"] + } } diff --git a/domains/spidey.json b/domains/spidey.json index 2fb24fc6e..2bd8776b7 100644 --- a/domains/spidey.json +++ b/domains/spidey.json @@ -3,7 +3,7 @@ "username": "zepip", "email": "zigzaglm13@proton.me" }, - "record": { + "records": { "CNAME": "zepip.github.io" } } diff --git a/domains/spidy.json b/domains/spidy.json index 734974457..dd08e9df7 100644 --- a/domains/spidy.json +++ b/domains/spidy.json @@ -3,7 +3,7 @@ "username": "SpidyWeeb", "email": "mrspidy32@outlook.in" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/spitkov.json b/domains/spitkov.json index 89b51958c..e99803c66 100644 --- a/domains/spitkov.json +++ b/domains/spitkov.json @@ -1,10 +1,9 @@ { "owner": { "username": "spitkov", - "discord": "1092100801478004816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LPkO2Au5DPC2ARd6OZbf5NT8jhecHb9TBEz1L-1qCjLdM62qEY5OBrilld7d5weC0Zw5t0vYg-wNC55N2EJ7XEnugcMneWuolfppFmWTKAppu5xYXKYrjbERuwr3xXjaAFyCFrSjG1ZiBXPnv8wBxTj4VtQhgOxPxxBcIsgFUV_gWu4ZMva2wiN95cNfcQu2m0ssBfrk_jTC8uYqGlJARedRi64zg5HBWBCM_3ULAUykEga2nTfGxMtUYOs8cqDyTo4O0tkIYtJYt1cS0PvqbmyirX-M0TBpsevln9xioJLABNDz593Fehf35DOjqwtA-G25RAE8BS41CgNInxxx8A.7ZPjLovvSkfQJ9bhr1_Qzw.MVqq1FsnW1tPdPQJzkqt-tG-lXgycqD8ajR26ePfsnV_fazYWjaOorve7gkmHT8hp2H2wGkmgaiTz58SoGdCzZLZWBwPOS5zAnJXwmchdxD9Ncd_nQWI56SaKOA_a9YK.mapoe8bzfTsxcbvyTPiyyA" + "discord": "1092100801478004816" }, - "record": { + "records": { "A": ["144.91.67.20"] } } diff --git a/domains/spixed.json b/domains/spixed.json index 7ec4e62f4..d9e3f6a0b 100644 --- a/domains/spixed.json +++ b/domains/spixed.json @@ -3,7 +3,7 @@ "username": "Spixed", "email": "Space369X@163.com" }, - "record": { + "records": { "CNAME": "spixed.github.io" } } diff --git a/domains/splack.json b/domains/splack.json index 9f0eb49b3..789be73d5 100644 --- a/domains/splack.json +++ b/domains/splack.json @@ -3,7 +3,7 @@ "username": "splack01", "email": "splack1@protonmail.com" }, - "record": { + "records": { "CNAME": "splack01.github.io" } } diff --git a/domains/splatboy-dev.json b/domains/splatboy-dev.json index 0fcd5d5fa..0ba70c2ee 100644 --- a/domains/splatboy-dev.json +++ b/domains/splatboy-dev.json @@ -6,7 +6,7 @@ "email": "nu@ll.com", "twitter": "null" }, - "record": { + "records": { "CNAME": "splatboy20081.github.io" } } diff --git a/domains/spongly.json b/domains/spongly.json index 663a40a44..3070f4617 100644 --- a/domains/spongly.json +++ b/domains/spongly.json @@ -5,7 +5,7 @@ "username": "spongly", "email": "mail.spongly@gmail.com" }, - "record": { + "records": { "CNAME": "spongly.github.io" } } diff --git a/domains/spoozy.json b/domains/spoozy.json index d1f16fd34..bc38bcd83 100644 --- a/domains/spoozy.json +++ b/domains/spoozy.json @@ -5,7 +5,7 @@ "username": "Spoozy", "email": "gaspardlebreton@outlook.com" }, - "record": { + "records": { "CNAME": "spoozy.github.io" } } diff --git a/domains/spotify.trung.json b/domains/spotify.trung.json index b99730c4e..488318c9f 100644 --- a/domains/spotify.trung.json +++ b/domains/spotify.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/spotify.vornexx.json b/domains/spotify.vornexx.json index d8566e12d..bcc7611b8 100644 --- a/domains/spotify.vornexx.json +++ b/domains/spotify.vornexx.json @@ -4,7 +4,7 @@ "discord": "1149438819834269856", "twitter": "vornexx_" }, - "record": { + "records": { "CNAME": "spotify-vornexx.pages.dev" } } diff --git a/domains/sppidy.json b/domains/sppidy.json index e11b56e10..ed211a7a4 100644 --- a/domains/sppidy.json +++ b/domains/sppidy.json @@ -3,7 +3,7 @@ "username": "sppidy", "email": "ramshourieshr@gmail.com" }, - "record": { + "records": { "CNAME": "sppidy.github.io" } } diff --git a/domains/spreadsheets600.json b/domains/spreadsheets600.json new file mode 100644 index 000000000..4249a5fec --- /dev/null +++ b/domains/spreadsheets600.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/SpreadSheets600/SpreadSheets600", + "owner": { + "username": "SpreadSheets600", + "email": "sohammaity006@gmail.com" + }, + "records": { + "CNAME": "spreadsheets600.github.io" + } +} diff --git a/domains/sprit.json b/domains/sprit.json index e81d2aec3..fa8550be4 100644 --- a/domains/sprit.json +++ b/domains/sprit.json @@ -4,7 +4,7 @@ "username": "codedsprit", "email": "roshan0x01@gmail.com" }, - "record": { + "records": { "CNAME": "codedsprit.netlify.app" } } diff --git a/domains/spud.json b/domains/spud.json index 2eb45d05a..fb0a6214e 100644 --- a/domains/spud.json +++ b/domains/spud.json @@ -5,7 +5,7 @@ "username": "mrpotato30", "email": "fahrelrizal08@gmail.com" }, - "record": { + "records": { "CNAME": "mrpotato30.github.io" } } diff --git a/domains/sputnick567.json b/domains/sputnick567.json index 087ca5403..fbf742c0a 100644 --- a/domains/sputnick567.json +++ b/domains/sputnick567.json @@ -4,7 +4,7 @@ "username": "sputnick567", "email": "567sputnick@gmail.com" }, - "record": { + "records": { "CNAME": "sputnick567.github.io" } } diff --git a/domains/spydea.json b/domains/spydea.json index 66ee242dd..3a13b1c4c 100644 --- a/domains/spydea.json +++ b/domains/spydea.json @@ -3,7 +3,7 @@ "username": "spydea", "email": "ymkose5534@gmail.com" }, - "record": { + "records": { "URL": "https://spydea.blogspot.com" } } diff --git a/domains/spyrisk.json b/domains/spyrisk.json index 9ccaf0316..e96028cac 100644 --- a/domains/spyrisk.json +++ b/domains/spyrisk.json @@ -3,7 +3,7 @@ "username": "SpauriRosso", "email": "spy456@zoho.com" }, - "record": { + "records": { "URL": "https://spyrisk.fr" } } diff --git a/domains/sq.json b/domains/sq.json index 5f34dd820..cd82483d4 100644 --- a/domains/sq.json +++ b/domains/sq.json @@ -2,10 +2,9 @@ "description": "sqec's website", "owner": { "username": "SquareScreamYT", - "repo": "https://github.com/SquareScreamYT", "discord": "918475812884344852" }, - "record": { + "records": { "CNAME": "squarescreamyt.github.io" } } diff --git a/domains/sqlmerr.json b/domains/sqlmerr.json index b46721a49..f626d7b0b 100644 --- a/domains/sqlmerr.json +++ b/domains/sqlmerr.json @@ -3,7 +3,7 @@ "username": "sqlmerr", "email": "sqlmerr@ya.ru" }, - "record": { + "records": { "URL": "https://sqlmerr.vercel.app" } } diff --git a/domains/squair.json b/domains/squair.json new file mode 100644 index 000000000..075f3aaf0 --- /dev/null +++ b/domains/squair.json @@ -0,0 +1,11 @@ +{ + "description": "Dev Home Page", + "repo": "https://github.com/squairdev/squairdev.github.io", + "owner": { + "username": "squairdev", + "email": "squairyt@gmail.com" + }, + "records": { + "CNAME": "squairdev.github.io" + } +} diff --git a/domains/sr1kanth.json b/domains/sr1kanth.json index 27deda89c..a40a3d701 100644 --- a/domains/sr1kanth.json +++ b/domains/sr1kanth.json @@ -1,10 +1,9 @@ { "owner": { "username": "sr1kanth-dev", - "discord": "1280109808694984775", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.hjW7xnc_x_NlMZEIpOWYRGSpw07LyaN81z6nlJzWY61qa7xL_IhBum2zgVIQelmsioSdcNVZFNRRFQsekHHDI8ZJstW8u0_ztT-HNDIx85CAjiteIwZIs2Uqkmt57LOhJBTd_72wBTB08tCrhDn2qUcl-yWbM3gG87LgWIL5FBxzu2XmvJwa-96-Iqm_NAr8zkeQPcbQ6_3mybU1s2o_bGGAONYojyIEc2E2IfJi025wKV8vvISrAo5wsL6WUAeXrMzpiGKkII64p1CyMU2PxJVWx9zKbCYjOu96wdx0H-3gzncEMSeLJuOENwN_BhSYgyh4iEEiRKHhXfbIn79rYA.28g8KI618s4Frpmf5WQcFw.nQ-mYLSUO17tk_zubLYdMG3E3tTL_KS3K2qlvJNYaovez8MlcqKLHUT6ji2BPsg34vAfvhUyC0B_5aRYq86lc2oVtGr6ubwiey6ulK5NLwc.7QmfIFZE_u2vD5a5uGx60A" + "discord": "1280109808694984775" }, - "record": { + "records": { "CNAME": "sr1kanth-dev.github.io" } } diff --git a/domains/sree.json b/domains/sree.json new file mode 100644 index 000000000..546cf881f --- /dev/null +++ b/domains/sree.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sreekanthputta", + "email": "srikanthp12896@gmail.com" + }, + "records": { + "TXT": "google-site-verification=nXX-abxPPSr9hSqhiakyIHcXYGcuPpIBYVXtPnnxf00", + "A": ["35.209.162.51"] + } +} diff --git a/domains/sreehari.json b/domains/sreehari.json new file mode 100644 index 000000000..c86d02c20 --- /dev/null +++ b/domains/sreehari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SreehariTS", + "email": "sreeharisudarshan@gmail.com" + }, + "records": { + "CNAME": "sreeharits.github.io" + } +} diff --git a/domains/sri.json b/domains/sri.json new file mode 100644 index 000000000..5474a98d4 --- /dev/null +++ b/domains/sri.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/srikrishna180/portfolio", + "owner": { + "username": "srikrishna180", + "email": "srikrishnak.dev@gmail.com" + }, + "records": { + "CNAME": "irs.dev" + } +} diff --git a/domains/srihari.json b/domains/srihari.json index 165496e98..94260d66e 100644 --- a/domains/srihari.json +++ b/domains/srihari.json @@ -5,7 +5,7 @@ "username": "srhr17", "email": "srhr1999@gmail.com" }, - "record": { + "records": { "CNAME": "srhr17.github.io" } } diff --git a/domains/srlbel.json b/domains/srlbel.json index f1c3e46ea..0ce840bc1 100644 --- a/domains/srlbel.json +++ b/domains/srlbel.json @@ -3,7 +3,7 @@ "username": "srlbel", "email": "dev.juansimancas@proton.me" }, - "record": { + "records": { "CNAME": "srlbel.netlify.app" } } diff --git a/domains/srm.json b/domains/srm.json index f53eaf6f4..9d01c6f1f 100644 --- a/domains/srm.json +++ b/domains/srm.json @@ -3,7 +3,7 @@ "username": "srmlab002", "email": "8zaqibue@duck.com" }, - "record": { + "records": { "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=lyen8rxu@duck.com,8zaqibue@duck.com" } diff --git a/domains/srn.json b/domains/srn.json index 4dc0e863d..c81b9abdd 100644 --- a/domains/srn.json +++ b/domains/srn.json @@ -3,7 +3,7 @@ "username": "ilz5753", "email": "mehdi.abdollahi3578@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/ilz5753/ilz5753.github.io" } } diff --git a/domains/srp.json b/domains/srp.json index 4c1cc4882..5cd36cf7d 100644 --- a/domains/srp.json +++ b/domains/srp.json @@ -5,7 +5,7 @@ "email": "srp31.swaroop@gmail.com" }, "repo": "https://github.com/SwaroopSRP/portfolio-site", - "record": { + "records": { "CNAME": "swaroopsrp.github.io" } } diff --git a/domains/srujan.json b/domains/srujan.json index 9433376f5..4e60ebeba 100644 --- a/domains/srujan.json +++ b/domains/srujan.json @@ -1,11 +1,10 @@ { "description": "Personal Website", - "repo": "https://github.com/bqwerr", "owner": { "username": "bqwerr", "email": "srujan.t@outlook.com" }, - "record": { + "records": { "CNAME": "bqwerr.github.io" } } diff --git a/domains/ss.almaz.json b/domains/ss.almaz.json index cc9550154..036cf052b 100644 --- a/domains/ss.almaz.json +++ b/domains/ss.almaz.json @@ -3,7 +3,7 @@ "username": "AlmaziikDev", "email": "admin@almaz.is-a.dev" }, - "record": { + "records": { "CNAME": "proxy.weissx.net" } } diff --git a/domains/ss.json b/domains/ss.json index dd71e190f..e1145b338 100644 --- a/domains/ss.json +++ b/domains/ss.json @@ -4,7 +4,7 @@ "email": "aayush.agrawalm@gmail.com" }, "description": "mail domain", - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/ssapp.json b/domains/ssapp.json index 2ba3469ea..ee50bec9b 100644 --- a/domains/ssapp.json +++ b/domains/ssapp.json @@ -3,7 +3,7 @@ "username": "ssapp", "email": "v.naydenov@icloud.com" }, - "record": { + "records": { "CNAME": "tarkov-time.com" } } diff --git a/domains/sstudiosdev.json b/domains/sstudiosdev.json index 893f05cf9..3ce6323c4 100644 --- a/domains/sstudiosdev.json +++ b/domains/sstudiosdev.json @@ -3,7 +3,7 @@ "username": "Sstudiosdev", "email": "sstudiosdev@gmail.com" }, - "record": { + "records": { "CNAME": "sstudiosdev.github.io" } } diff --git a/domains/stacksyz.json b/domains/stacksyz.json index da0a83773..a6772ab2a 100644 --- a/domains/stacksyz.json +++ b/domains/stacksyz.json @@ -3,7 +3,7 @@ "username": "Stacksyz", "email": "thedevmonke@gmail.com" }, - "record": { + "records": { "CNAME": "stacksyz.github.io" } } diff --git a/domains/stan.json b/domains/stan.json index 29a1e6bc4..bce15d998 100644 --- a/domains/stan.json +++ b/domains/stan.json @@ -3,7 +3,7 @@ "username": "stansters", "email": "stanleygeorgebond@gmail.com" }, - "record": { + "records": { "A": ["132.145.22.92"] } } diff --git a/domains/star.json b/domains/star.json index 73c57e958..064212e3c 100644 --- a/domains/star.json +++ b/domains/star.json @@ -5,7 +5,7 @@ "username": "stardust-kyun", "email": "stardust-kyun@proton.me" }, - "record": { + "records": { "CNAME": "stardust-kyun.github.io" } } diff --git a/domains/stardust.json b/domains/stardust.json index 97be8fadf..bd7c71895 100644 --- a/domains/stardust.json +++ b/domains/stardust.json @@ -3,7 +3,7 @@ "username": "Hanzla-Double3", "email": "Hanzla.mughal3284@gmail.com" }, - "record": { + "records": { "A": ["139.135.52.143"] } } diff --git a/domains/stargate.json b/domains/stargate.json index 0e1638ab1..c281b722b 100644 --- a/domains/stargate.json +++ b/domains/stargate.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "r0ckmix", - "email": "mix155@yandex.ru" - }, - "record": { - "A": [ - "193.178.210.179" - ] - } + "owner": { + "username": "r0ckmix", + "email": "mix155@yandex.ru" + }, + "records": { + "A": ["193.178.210.179"] + } } diff --git a/domains/stark.json b/domains/stark.json new file mode 100644 index 000000000..178064a11 --- /dev/null +++ b/domains/stark.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nguyentruongton", + "email": "tonstark.dev@gmail.com" + }, + "records": { + "CNAME": "truongton.vercel.app" + } +} diff --git a/domains/starkblaze01.json b/domains/starkblaze01.json index d4efd9ace..cee175a99 100644 --- a/domains/starkblaze01.json +++ b/domains/starkblaze01.json @@ -5,7 +5,7 @@ "username": "starkblaze01", "email": "mp.pathela@gmail.com" }, - "record": { + "records": { "URL": "https://starkblaze01.netlify.app" } } diff --git a/domains/starnumber.json b/domains/starnumber.json index 523cf2832..620d31913 100644 --- a/domains/starnumber.json +++ b/domains/starnumber.json @@ -1,11 +1,10 @@ { "description": "StarNumber's blog", - "repo": "https://github.com/starnumber12046", "owner": { "username": "starnumber12046", "email": "starnumber.official12046@gmail.com" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/starry.json b/domains/starry.json index b0aba69d1..8a154ab91 100644 --- a/domains/starry.json +++ b/domains/starry.json @@ -5,7 +5,7 @@ "username": "starry-shivam", "email": "krshivam24@proton.me" }, - "record": { + "records": { "URL": "https://starry-shivam.github.io" } } diff --git a/domains/starshine.json b/domains/starshine.json index b0329ce9c..66dfec3c5 100644 --- a/domains/starshine.json +++ b/domains/starshine.json @@ -1,10 +1,9 @@ { "owner": { "username": "thaddeuskkr", - "discord": "275830234262142978", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lLFfIW3EiPjgK-i-I5E56ERBvjl-ueM91PRyYM6wRClZzuoAj4nQyqL57dSZjhO_4Hbu4ZubbM1I_NI8Vt4_SlsFmxgL-hrvH9tf7rv-hX-TZtBWT_LQQUmhd1ZViGwELTly797M8VXZ39ER2gDmzruxjh8eQEHBCeJujWuUNicigehUgfk-Pk9rSchVlR3TUcwL-wylY58KvBLQwIeMmqUW2qs_E_iKCwk_8FQH-IUb_4W58r6wBHh6MqiP72Py9ssDbxrV59e1eGrQZXYJJM1rUZHoHzW1KX84FgT0QCGc1cSiV-Sdc3p6WceRY6Tf1akfTNjuga61kpgzluoTxg.QwFk8iYMpzefwXgErTr9cQ.kwMwAIrFDxCKfvSxx3Jpvb6ZkiFcp56BFoBg7KQMsYw4PBK60JNzjpMpgMqZ7jymnYJFTz5img3xLlxBF7UuUy_Z9MgHCHaVR3W7970smoQ.aBJoeQFaHiIyXkpQa1Gx7g" + "discord": "275830234262142978" }, - "record": { + "records": { "A": ["138.2.70.1"] } } diff --git a/domains/stats.trung.json b/domains/stats.trung.json index b99730c4e..488318c9f 100644 --- a/domains/stats.trung.json +++ b/domains/stats.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/status-ryo.json b/domains/status-ryo.json index c43440b7b..892c9407c 100644 --- a/domains/status-ryo.json +++ b/domains/status-ryo.json @@ -3,7 +3,7 @@ "username": "FrosGaming", "email": "dgfrosdgfros@gmail.com" }, - "record": { + "records": { "A": ["69.197.135.203"] } } diff --git a/domains/status.6.json b/domains/status.6.json index 947bf4219..90cb34601 100644 --- a/domains/status.6.json +++ b/domains/status.6.json @@ -3,7 +3,7 @@ "username": "shockbs", "email": "apipherng@gmail.com" }, - "record": { + "records": { "URL": "https://status.shockbs.is-a.dev/" } } diff --git a/domains/status.akshtt.json b/domains/status.akshtt.json new file mode 100644 index 000000000..246ebefbd --- /dev/null +++ b/domains/status.akshtt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218" + }, + "records": { + "A": ["69.62.118.156"] + } +} diff --git a/domains/status.alora.json b/domains/status.alora.json index 52c1db3de..77a426b89 100644 --- a/domains/status.alora.json +++ b/domains/status.alora.json @@ -4,7 +4,7 @@ "email": "xaloramia@gmail.com", "discord": "1236292707371057216" }, - "record": { + "records": { "CNAME": "uptimeflare-918.pages.dev" } } diff --git a/domains/status.cfp.json b/domains/status.cfp.json index be4cc5e3b..fa8fd1739 100644 --- a/domains/status.cfp.json +++ b/domains/status.cfp.json @@ -4,7 +4,7 @@ "username": "cfpwastaken", "discord": "cfp (318394797822050315)" }, - "record": { + "records": { "CNAME": "dyn.picoscratch.de" } } diff --git a/domains/status.chriscoding.json b/domains/status.chriscoding.json index c44f57c99..bde900c57 100644 --- a/domains/status.chriscoding.json +++ b/domains/status.chriscoding.json @@ -4,7 +4,7 @@ "email": "githubuserlol333@gmail.com", "discord": "735578614476570726" }, - "record": { + "records": { "CNAME": "statuspage.betteruptime.com" } } diff --git a/domains/status.ciaobot.json b/domains/status.ciaobot.json deleted file mode 100644 index 6e1582f7e..000000000 --- a/domains/status.ciaobot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ciao287", - "discord": "687333016921440317" - }, - "record": { - "A": ["144.91.115.195"] - } -} diff --git a/domains/status.gattinhosbot.json b/domains/status.gattinhosbot.json index 19572b773..cc64a62bb 100644 --- a/domains/status.gattinhosbot.json +++ b/domains/status.gattinhosbot.json @@ -1,10 +1,9 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { + "records": { "CNAME": "proxy.stefdp.lol" } } diff --git a/domains/status.jes.json b/domains/status.jes.json new file mode 100644 index 000000000..0b824d621 --- /dev/null +++ b/domains/status.jes.json @@ -0,0 +1,11 @@ +{ + "description": "status page for my bot hosted on db hosting", + "repo": "https://github.com/BMO-Bots/CentroAssistenzaPoldhub", + "owner": { + "username": "jesgran", + "email": "calzdani20@libero.it" + }, + "records": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/status.killuazoldyck.json b/domains/status.killuazoldyck.json new file mode 100644 index 000000000..eaabc61fd --- /dev/null +++ b/domains/status.killuazoldyck.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "killuazoldyckreal", + "email": "bk1030798@gmail.com" + }, + "records": { + "CNAME": "statuspage.betteruptime.com" + } +} diff --git a/domains/status.shan.json b/domains/status.shan.json index 0721bc1fd..55e97442d 100644 --- a/domains/status.shan.json +++ b/domains/status.shan.json @@ -5,7 +5,7 @@ "email": "mail@shan.is-a.dev", "twitter": "lordlinux69" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/status.shockbs.json b/domains/status.shockbs.json index 112f7f2ae..e7d8793a8 100644 --- a/domains/status.shockbs.json +++ b/domains/status.shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "discord": "880084860327313459" }, - "record": { + "records": { "URL": "https://status.shockbs.pro/" } } diff --git a/domains/status.trung.json b/domains/status.trung.json index b99730c4e..488318c9f 100644 --- a/domains/status.trung.json +++ b/domains/status.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/status.vulcanocraft.json b/domains/status.vulcanocraft.json index d22f89082..1b5de0be4 100644 --- a/domains/status.vulcanocraft.json +++ b/domains/status.vulcanocraft.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mpPL9XXteeODNSJOnZAXl9g5kus0xQEGYMYgUHCkJGr5nRcIN1KNwQYV_wxyGiWdT1bo5Yy-HyK3vMh50g2ECLKdltfbJbOsSJkyOJewtKmvwkSVuZNl2rQ8KMNZ46se3LLHrOjEpRB-1ijmSnuXYuiYZ1AeEqaUfQSCRMY_yTlvMm_OdUj9VK97bjHliB6NHffuX93AtVSK5-OwxZyJsEpICevJd6YHbJiFzKTmUXEUtVM90LBI-BqlblawDq8cLyB1D1eXzNiTFT9JdEmTqalPusePWT8RO2knz9wkb2f4BeGJSGCCai7n9f-hO8X41pWS9UzP2qfutkinveBX4g.qPPdM2OBmIURG_QSgCiZvA.IVp2jGQA6Y0ZEcAuBeyKntWmnF2Y_1jCMJnJ8f-PQ6ceVooVM2r-ZzVnIN7khw5gou4Sc--VGnARlJRaXV5ma-vPZqr_4x1qQs-eYiPq_y5TcD_7qoDjmK3g5MwOMXbS.r-gr82Miw4q6KqKxSdZQDg" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "vulcanostatus.pages.dev" } } diff --git a/domains/status.xrap1dx.json b/domains/status.xrap1dx.json index 475702775..3d8ff4fa8 100644 --- a/domains/status.xrap1dx.json +++ b/domains/status.xrap1dx.json @@ -1,11 +1,10 @@ { "description": "making my status page!!!", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "email": "sirrapid155@gmail.com" }, - "record": { + "records": { "CNAME": "statuspage.betteruptime.com" } } diff --git a/domains/status.yunexiz.json b/domains/status.yunexiz.json new file mode 100644 index 000000000..633c53195 --- /dev/null +++ b/domains/status.yunexiz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "yunexiz" + }, + "records": { + "CNAME": "uptime-kuma-yunexiz.ladeapp.com" + } +} diff --git a/domains/stavkv.json b/domains/stavkv.json deleted file mode 100644 index 89d5833b2..000000000 --- a/domains/stavkv.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "stavkv", - "email": "singhvikal891@gmail.com" - }, - "record": { - "CNAME": "stavkv.github.io" - } -} diff --git a/domains/steake.json b/domains/steake.json index fb19248c3..03c79230a 100644 --- a/domains/steake.json +++ b/domains/steake.json @@ -6,7 +6,7 @@ "email": "ollie.steake@gmail.com", "twitter": "officialELTCOIN" }, - "record": { + "records": { "CNAME": "steake.github.io" } } diff --git a/domains/stebanportfolio.json b/domains/stebanportfolio.json new file mode 100644 index 000000000..ed0bbef44 --- /dev/null +++ b/domains/stebanportfolio.json @@ -0,0 +1,11 @@ +{ + "description": "Give a profesional domain to my portfolio", + "repo": "https://github.com/fergone03/Portfolio-Desarrollador-Web", + "owner": { + "username": "fergone03", + "email": "fergonesteban03@gmail.com" + }, + "records": { + "CNAME": "devsteban-portfolio.netlify.app" + } +} diff --git a/domains/stef.json b/domains/stef.json index 2793ff3e3..c9d061af6 100644 --- a/domains/stef.json +++ b/domains/stef.json @@ -5,7 +5,7 @@ "username": "stefcoders", "email": "stefan@stefcodes.co.uk" }, - "record": { + "records": { "A": ["45.84.57.2"] } } diff --git a/domains/stefan.json b/domains/stefan.json index 733c73d0c..64d4c22d9 100644 --- a/domains/stefan.json +++ b/domains/stefan.json @@ -4,7 +4,7 @@ "email": "naffets0@gmail.com", "discord": "455608238335983617" }, - "record": { + "records": { "URL": "https://dyno.is-a.dev", "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": [ diff --git a/domains/stefdp.json b/domains/stefdp.json index 408345e9e..346160efb 100644 --- a/domains/stefdp.json +++ b/domains/stefdp.json @@ -1,10 +1,15 @@ { "owner": { "username": "Stef-00012", - "discord": "694986201739952229", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + "discord": "694986201739952229" }, - "record": { - "NS": ["jonah.ns.cloudflare.com", "mary.ns.cloudflare.com"] + "records": { + "URL": "https://stefdp.com", + "MX": [ + "mail.stefdp.com" + ], + "TXT": [ + "v=spf1 mx ~all" + ] } } diff --git a/domains/steffen.json b/domains/steffen.json index 6c102fa77..3887d6767 100644 --- a/domains/steffen.json +++ b/domains/steffen.json @@ -4,7 +4,7 @@ "username": "N0r1uno", "email": "noriunomakusui@gmail.com" }, - "record": { + "records": { "CNAME": "n0r1uno.github.io" } } diff --git a/domains/stephan.json b/domains/stephan.json index 82fae9d9e..ed2df6b38 100644 --- a/domains/stephan.json +++ b/domains/stephan.json @@ -3,7 +3,7 @@ "username": "stephan-strate", "email": "hello@stephan.codes" }, - "record": { + "records": { "URL": "https://stephan.codes" } } diff --git a/domains/stephen-adeniji.json b/domains/stephen-adeniji.json index b8285e8bf..121789fb8 100644 --- a/domains/stephen-adeniji.json +++ b/domains/stephen-adeniji.json @@ -3,7 +3,7 @@ "username": "Praizee", "email": "praiseadeniji2017@gmail.com" }, - "record": { + "records": { "CNAME": "nextjs-portfolio-4jp.pages.dev" } } diff --git a/domains/stev.json b/domains/stev.json index 3c8079e11..d5ee81576 100644 --- a/domains/stev.json +++ b/domains/stev.json @@ -4,7 +4,7 @@ "email": "i@miraaaa.my.id", "discord": "834618584331190343" }, - "record": { + "records": { "CNAME": "stev.surge.sh" } } diff --git a/domains/steven.json b/domains/steven.json index daefda47f..5d9bfcad0 100644 --- a/domains/steven.json +++ b/domains/steven.json @@ -5,7 +5,7 @@ "username": "StevenRonnyFrohlich", "email": "steve.r.frohlich@gmail.com" }, - "record": { + "records": { "CNAME": "stevenronnyfrohlich.github.io" } } diff --git a/domains/stevenle.json b/domains/stevenle.json index b47469abe..1717b594b 100644 --- a/domains/stevenle.json +++ b/domains/stevenle.json @@ -4,7 +4,7 @@ "email": "stevenleusa79@yahoo.com", "discord": "237307564419842050" }, - "record": { + "records": { "CNAME": "sle-portfolio.vercel.app" } } diff --git a/domains/stevesajeev.json b/domains/stevesajeev.json new file mode 100644 index 000000000..fb2b71ab9 --- /dev/null +++ b/domains/stevesajeev.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio webpage", + "repo": "https://github.com/SteveSajeev/SteveSajeev", + "owner": { + "username": "SteveSajeev", + "email": "stevepsajeev2008@gmail.com" + }, + "records": { + "CNAME": "SteveSajeev.github.io" + } +} diff --git a/domains/sticknologic.json b/domains/sticknologic.json new file mode 100644 index 000000000..402a042ae --- /dev/null +++ b/domains/sticknologic.json @@ -0,0 +1,12 @@ +{ + "description": "Simple Portfolio and Blog Website", + "owner": { + "username": "sticknologic", + "x": "STICKnoLOGIC", + "facebook": "STICKnoLOGIC", + "bsky": "STICKnoLOGIC" + }, + "records": { + "NS": ["ns1.heliohost.org", "ns2.heliohost.org"] + } +} diff --git a/domains/stkong.json b/domains/stkong.json new file mode 100644 index 000000000..2191643a2 --- /dev/null +++ b/domains/stkong.json @@ -0,0 +1,12 @@ +{ + "description": "hosting personal / portfolio website for myself. Also this website is a link to my personal blog.", + "repo": "https://github.com/congltk1234/congltk1234.github.io", + "owner": { + "username": "congltk1234", + "email": "suwuanxan@gmail.com", + "linkedin": "https://www.linkedin.com/in/suthanhcong" + }, + "records": { + "CNAME": "congltk1234.github.io" + } +} diff --git a/domains/stoltz.json b/domains/stoltz.json index df6feaa57..2123a89d3 100644 --- a/domains/stoltz.json +++ b/domains/stoltz.json @@ -4,7 +4,7 @@ "email": "rafaelbraun5@hotmail.com" }, "repo": "https://github.com/stoltz-dev/stoltz-dev.github.io", - "record": { + "records": { "CNAME": "stoltz-dev.github.io" } } diff --git a/domains/stoneleaf-dh.json b/domains/stoneleaf-dh.json index 30f3b430e..ed3a7ed42 100644 --- a/domains/stoneleaf-dh.json +++ b/domains/stoneleaf-dh.json @@ -3,7 +3,7 @@ "username": "NazerMohamed", "email": "NazerMohamed@gmail.com" }, - "record": { + "records": { "A": ["51.89.94.232"] } } diff --git a/domains/stovonson.json b/domains/stovonson.json new file mode 100644 index 000000000..5998c1541 --- /dev/null +++ b/domains/stovonson.json @@ -0,0 +1,13 @@ +{ + "description": "It's in the URL.", + "repo": "https://github.com/stovonson/t89", + "owner": { + "username": "stovonson", + "email": "me@stovonson.in", + "bsky": "stovonson.in", + "discord": "stovonson" + }, + "records": { + "URL": "https://stovonson.in" + } +} diff --git a/domains/strafe.json b/domains/strafe.json index 31caeecd5..aec8cd4d6 100644 --- a/domains/strafe.json +++ b/domains/strafe.json @@ -4,7 +4,7 @@ "email": "strafecode@gmail.com", "discord": "931243168630972516" }, - "record": { + "records": { "CNAME": "strafecode.github.io" } } diff --git a/domains/stremioaddonlt.json b/domains/stremioaddonlt.json index 91a9e9129..32c0d4f6c 100644 --- a/domains/stremioaddonlt.json +++ b/domains/stremioaddonlt.json @@ -3,7 +3,7 @@ "username": "makufelis", "email": "coinbasedeivuxo@gmail.com" }, - "record": { + "records": { "A": ["185.192.97.1"] } } diff --git a/domains/strider-studios.json b/domains/strider-studios.json index 0044efd11..fae30c37e 100644 --- a/domains/strider-studios.json +++ b/domains/strider-studios.json @@ -3,7 +3,7 @@ "username": "TheRealStrider", "email": "starwars3805@gmail.com" }, - "record": { + "records": { "CNAME": "therealstrider.github.io" } } diff --git a/domains/string-null.json b/domains/string-null.json index 0490030a9..2b442375c 100644 --- a/domains/string-null.json +++ b/domains/string-null.json @@ -6,7 +6,7 @@ "email": "biel.f.r.bfr@gmail.com", "twitter": "HdNenu" }, - "record": { + "records": { "CNAME": "string-null.github.io" } } diff --git a/domains/stringent.json b/domains/stringent.json index 6f3b7e537..b66ddf267 100644 --- a/domains/stringent.json +++ b/domains/stringent.json @@ -5,7 +5,7 @@ "username": "StringentDev", "email": "stringentdev@hotmail.com" }, - "record": { + "records": { "CNAME": "stringentdev-production.up.railway.app" } } diff --git a/domains/studio.json b/domains/studio.json new file mode 100644 index 000000000..a3039721f --- /dev/null +++ b/domains/studio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "records": { + "URL": "https://juststudio.is-a.dev/" + } +} diff --git a/domains/stvn.json b/domains/stvn.json index b556b0182..b78fd3046 100644 --- a/domains/stvn.json +++ b/domains/stvn.json @@ -5,7 +5,7 @@ "username": "sconaway", "email": "steven@stevenconaway.me" }, - "record": { + "records": { "URL": "https://stevenconaway.me" } } diff --git a/domains/sty.json b/domains/sty.json index 02541256c..0f97067ef 100644 --- a/domains/sty.json +++ b/domains/sty.json @@ -3,12 +3,7 @@ "username": "Sty928", "email": "satyam99jha@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/styy.json b/domains/styy.json index 444d9d76e..1c4ff1628 100644 --- a/domains/styy.json +++ b/domains/styy.json @@ -3,7 +3,7 @@ "username": "Sty928", "email": "satyam99jha@gmail.com" }, - "record": { + "records": { "A": ["161.97.137.17"] } } diff --git a/domains/sua.json b/domains/sua.json index 2b34ee5b3..3708b6b14 100644 --- a/domains/sua.json +++ b/domains/sua.json @@ -3,7 +3,7 @@ "username": "SamiaIslamSua", "email": "SamiaIslamSua@gmail.com" }, - "record": { + "records": { "CNAME": "samiaislamsua.github.io" } } diff --git a/domains/sub.any.json b/domains/sub.any.json index 2b07d877c..df60b89fc 100644 --- a/domains/sub.any.json +++ b/domains/sub.any.json @@ -3,7 +3,7 @@ "username": "IRDMctorl", "email": "fun64646969@gmail.com" }, - "record": { + "records": { "CNAME": "sub.any-w1a3.onrender.com" } } diff --git a/domains/subasi.json b/domains/subasi.json index ee1bcad6f..e618ef8aa 100644 --- a/domains/subasi.json +++ b/domains/subasi.json @@ -8,7 +8,7 @@ "twitter": "mhmmdlsubasi", "instagram": "mhmmdlsubasi" }, - "record": { + "records": { "CNAME": "mhmmdlsubasi.github.io" } } diff --git a/domains/subhadeepzilong.json b/domains/subhadeepzilong.json index a741e079c..26ab60636 100644 --- a/domains/subhadeepzilong.json +++ b/domains/subhadeepzilong.json @@ -6,7 +6,7 @@ "email": "subhadeepchakraborty555@gmail.com", "twitter": "subhadeepzilong" }, - "record": { + "records": { "CNAME": "subhadeepzilong.github.io" } } diff --git a/domains/subhajit.json b/domains/subhajit.json new file mode 100644 index 000000000..6e33c0082 --- /dev/null +++ b/domains/subhajit.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website hosted on GitHub Pages", + "repo": "https://github.com/HappySR/Subhajit-portfolio", + "owner": { + "username": "HappySR", + "email": "darrang48@gmail.com" + }, + "records": { + "CNAME": "happysr.github.io" + } +} diff --git a/domains/subham.json b/domains/subham.json index 5ca270949..6b26ae46d 100644 --- a/domains/subham.json +++ b/domains/subham.json @@ -5,7 +5,7 @@ "username": "skuma251", "email": "skuma251@asu.edu" }, - "record": { + "records": { "CNAME": "skuma251.github.io" } } diff --git a/domains/subhan.json b/domains/subhan.json new file mode 100644 index 000000000..40bf5525b --- /dev/null +++ b/domains/subhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MS1034", + "email": "muhammadsubhan5701@gmail.com" + }, + "records": { + "CNAME": "muhammad-subhan.vercel.app" + } +} diff --git a/domains/subhayu.json b/domains/subhayu.json index ac8b2f2ae..c98b0179f 100644 --- a/domains/subhayu.json +++ b/domains/subhayu.json @@ -3,7 +3,7 @@ "username": "subhayu99", "email": "balasubhayu99@gmail.com" }, - "record": { + "records": { "CNAME": "subhayu99.github.io" } } diff --git a/domains/subyyal.json b/domains/subyyal.json index 676759a3e..e6d938af5 100644 --- a/domains/subyyal.json +++ b/domains/subyyal.json @@ -3,7 +3,7 @@ "username": "Subyyalx", "email": "subyyal@xavor.com" }, - "record": { + "records": { "CNAME": "cdblxrp8.up.railway.app" } } diff --git a/domains/suctrebinhthuan.json b/domains/suctrebinhthuan.json index 5c36bc453..b86b7c787 100644 --- a/domains/suctrebinhthuan.json +++ b/domains/suctrebinhthuan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "suctrebth", - "email": "web.insuctre@gmail.com" - }, - "record": { - "CNAME": "suctrebinhthuan.com" - } + "owner": { + "username": "suctrebth", + "email": "web.insuctre@gmail.com" + }, + "records": { + "CNAME": "suctrebinhthuan.com" + } } diff --git a/domains/sudania-ajay.json b/domains/sudania-ajay.json index 994c99ac4..ab0a2c4b3 100644 --- a/domains/sudania-ajay.json +++ b/domains/sudania-ajay.json @@ -5,7 +5,7 @@ "username": "sanjay-makasana", "email": "ajay.sudani@truestaz.com" }, - "record": { + "records": { "URL": "https://sudania-ajay.github.io" } } diff --git a/domains/sudev.json b/domains/sudev.json index 33022c303..a81d5e3ab 100644 --- a/domains/sudev.json +++ b/domains/sudev.json @@ -5,7 +5,7 @@ "username": "gamegods3", "email": "sudevssuresh@gmail.com" }, - "record": { + "records": { "CNAME": "gamegods3.github.io" } } diff --git a/domains/sudhanparajuli.json b/domains/sudhanparajuli.json index 5d954d149..87c746e03 100644 --- a/domains/sudhanparajuli.json +++ b/domains/sudhanparajuli.json @@ -5,7 +5,7 @@ "username": "SudhanParajuli", "email": "dond38480@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/sudip.json b/domains/sudip.json index fb0c91cd8..a4eeb05dc 100644 --- a/domains/sudip.json +++ b/domains/sudip.json @@ -6,7 +6,7 @@ "email": "sudipkundu999@gmail.com", "twitter": "sudipkundu999" }, - "record": { + "records": { "CNAME": "sudipkundu999.github.io" } } diff --git a/domains/suhailahmed.json b/domains/suhailahmed.json index 85265dd2a..27dcd07cb 100644 --- a/domains/suhailahmed.json +++ b/domains/suhailahmed.json @@ -3,7 +3,7 @@ "username": "SuhailAhmed2627", "email": "suhailahmed2001sam@gmail.com" }, - "record": { + "records": { "URL": "https://suhailahmed2627.vercel.app/" } } diff --git a/domains/suhasdissa.json b/domains/suhasdissa.json index 1eb0f5f9b..54e0f21f4 100644 --- a/domains/suhasdissa.json +++ b/domains/suhasdissa.json @@ -3,7 +3,7 @@ "username": "SuhasDissa", "email": "suhasdissa@protonmail.com" }, - "record": { + "records": { "CNAME": "suhasdissa.github.io" } } diff --git a/domains/sujal.json b/domains/sujal.json new file mode 100644 index 000000000..f4cb1d55d --- /dev/null +++ b/domains/sujal.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/SuzalShrestha/register", + "owner": { + "username": "suzalshrestha", + "email": "sujalshresthawork@gmail.com" + }, + "records": { + "CNAME": "sujalshrestha.vercel.app" + } +} diff --git a/domains/sukhdevr898.json b/domains/sukhdevr898.json new file mode 100644 index 000000000..d098740a0 --- /dev/null +++ b/domains/sukhdevr898.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SUKHDEVR898", + "email": "sukhdevr898@gmail.com" + }, + "records": { + "CNAME": "ai898.free.nf" + } +} diff --git a/domains/suki.json b/domains/suki.json index 1669d49a0..ae3a9f583 100644 --- a/domains/suki.json +++ b/domains/suki.json @@ -3,7 +3,8 @@ "username": "SukiPlayz", "email": "sukimayoo@outlook.com" }, - "record": { - "CNAME": "portfolio-b8o.pages.dev" + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/sulabh.json b/domains/sulabh.json new file mode 100644 index 000000000..f3c1b7fb0 --- /dev/null +++ b/domains/sulabh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sulabh-npl", + "email": "sulabh.work19@gmail.com" + }, + "records": { + "CNAME": "sulabh.info.np" + } +} diff --git a/domains/sulaiman.json b/domains/sulaiman.json new file mode 100644 index 000000000..206756ba0 --- /dev/null +++ b/domains/sulaiman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "natsu90", + "email": "github@s.ss.my" + }, + "records": { + "URL": "https://sulai.mn" + } +} diff --git a/domains/suman.json b/domains/suman.json index 5378f2cb8..08b4ad780 100644 --- a/domains/suman.json +++ b/domains/suman.json @@ -6,7 +6,7 @@ "email": "suman.multiverse@gmail.com", "twitter": "thatsumann" }, - "record": { + "records": { "CNAME": "thatsuman.github.io" } } diff --git a/domains/sumanjay.json b/domains/sumanjay.json index 215a04f69..616085f3a 100644 --- a/domains/sumanjay.json +++ b/domains/sumanjay.json @@ -4,7 +4,7 @@ "username": "cyberboysumanjay", "email": "sumanjay@duck.com" }, - "record": { + "records": { "CNAME": "cyberboysumanjay.github.io" } } diff --git a/domains/sumedhaa.json b/domains/sumedhaa.json index 61ff4935f..e31722f9a 100644 --- a/domains/sumedhaa.json +++ b/domains/sumedhaa.json @@ -5,7 +5,7 @@ "username": "misticorion", "email": "mistic.orion@gmail.com" }, - "record": { + "records": { "CNAME": "misticorion.github.io" } } diff --git a/domains/sumit.json b/domains/sumit.json index 18f530e39..c2a704d2d 100644 --- a/domains/sumit.json +++ b/domains/sumit.json @@ -3,7 +3,7 @@ "username": "isumitjha", "email": "7sumitjha@gmail.com" }, - "record": { + "records": { "CNAME": "isumitjha.github.io" } } diff --git a/domains/sumit404.json b/domains/sumit404.json index b8457528b..fd74ad534 100644 --- a/domains/sumit404.json +++ b/domains/sumit404.json @@ -3,7 +3,7 @@ "username": "SumitRajak404", "email": "rajaksummit9@gmail.com" }, - "record": { + "records": { "CNAME": "sumitrajak404.github.io" } } diff --git a/domains/sumitrajak.json b/domains/sumitrajak.json index e8b9fed90..d1125523d 100644 --- a/domains/sumitrajak.json +++ b/domains/sumitrajak.json @@ -3,7 +3,7 @@ "username": "SumitRajak404", "email": "rajaksummit9@gmail.com" }, - "record": { + "records": { "CNAME": "sumitrajak.pages.dev" } } diff --git a/domains/summon-the-coder.json b/domains/summon-the-coder.json new file mode 100644 index 000000000..09e5aa282 --- /dev/null +++ b/domains/summon-the-coder.json @@ -0,0 +1,11 @@ +{ + "description": "Site about me", + "repo": "https://github.com/banana6boom/banana6boom.github.io", + "owner": { + "username": "banana6boom", + "email": "themadhouse@mail.ru" + }, + "records": { + "CNAME": "banana6boom.github.io" + } +} diff --git a/domains/sun.json b/domains/sun.json new file mode 100644 index 000000000..4e510292f --- /dev/null +++ b/domains/sun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sxn4y", + "discord": "5unn7n" + }, + "records": { + "CNAME": "supern0va.vercel.app" + } +} diff --git a/domains/sunglass.json b/domains/sunglass.json index 37618a383..b0e574d81 100644 --- a/domains/sunglass.json +++ b/domains/sunglass.json @@ -3,7 +3,7 @@ "username": "sunglassdev", "email": "g1asstech@outlook.com" }, - "record": { + "records": { "URL": "https://sunglassdev.github.io/" } } diff --git a/domains/sunil.json b/domains/sunil.json index 2e00d97cc..f895ac9e3 100644 --- a/domains/sunil.json +++ b/domains/sunil.json @@ -3,7 +3,7 @@ "username": "skgupta507", "email": "sunilk98850@gmail.com" }, - "record": { + "records": { "URL": "https://sunil-gupta.netlify.app/" } } diff --git a/domains/sunn4github.json b/domains/sunn4github.json index b26735896..e6e08f717 100644 --- a/domains/sunn4github.json +++ b/domains/sunn4github.json @@ -3,7 +3,7 @@ "username": "sunn4room", "email": "sunn4room@163.com" }, - "record": { + "records": { "CNAME": "ghproxy.sunn4room.workers.dev" } } diff --git a/domains/sunn4room.json b/domains/sunn4room.json index bb2f4f1f4..45df24654 100644 --- a/domains/sunn4room.json +++ b/domains/sunn4room.json @@ -3,7 +3,7 @@ "username": "sunn4room", "email": "sunn4room@163.com" }, - "record": { + "records": { "CNAME": "blog-4ke.pages.dev" } } diff --git a/domains/sunny.json b/domains/sunny.json index 0d18a9400..27562a2e8 100644 --- a/domains/sunny.json +++ b/domains/sunny.json @@ -3,7 +3,7 @@ "username": "Sunny-unik", "email": "sunnygandhwani027@gmail.com" }, - "record": { + "records": { "CNAME": "sunny-unik.github.io" } } diff --git a/domains/sunnydsouza.json b/domains/sunnydsouza.json new file mode 100644 index 000000000..4fdb7cdc8 --- /dev/null +++ b/domains/sunnydsouza.json @@ -0,0 +1,10 @@ +{ + "description": "Sunny Dsouza's GitHub page", + "owner": { + "username": "sunnydsouza", + "email": "dsouzasunny1436@gmail.com" + }, + "records": { + "URL": "https://github.com/sunnydsouza" + } +} diff --git a/domains/sunnyychi.json b/domains/sunnyychi.json index a313e75b1..5c42ceabb 100644 --- a/domains/sunnyychi.json +++ b/domains/sunnyychi.json @@ -5,7 +5,7 @@ "username": "sunnyychi", "email": "sunnyychi@lona-development.org" }, - "record": { + "records": { "CNAME": "sunnyychi.github.io" } } diff --git a/domains/sunpodder.json b/domains/sunpodder.json index 9fe0b55e0..089e37373 100644 --- a/domains/sunpodder.json +++ b/domains/sunpodder.json @@ -3,7 +3,7 @@ "username": "SunPodder", "discord": "sunpodder" }, - "record": { + "records": { "CNAME": "sunpodder.github.io" } } diff --git a/domains/sunshine.json b/domains/sunshine.json index ec26e7f44..f35885629 100644 --- a/domains/sunshine.json +++ b/domains/sunshine.json @@ -3,7 +3,7 @@ "username": "Hanyaku-Chan", "email": "collinbuchkamer@gmail.com" }, - "record": { + "records": { "URL": "https://hanyaku.glitch.me" } } diff --git a/domains/sunzizhuo.json b/domains/sunzizhuo.json new file mode 100644 index 000000000..f12d0b266 --- /dev/null +++ b/domains/sunzizhuo.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/UnidentifiedX/unidentifiedx.github.io", + "owner": { + "username": "UnidentifiedX", + "email": "sunzizhuo33@gmail.com" + }, + "records": { + "CNAME": "unidentifiedx.github.io" + } +} diff --git a/domains/superharmony910.json b/domains/superharmony910.json index 29a6534cf..8548ab9a6 100644 --- a/domains/superharmony910.json +++ b/domains/superharmony910.json @@ -6,7 +6,7 @@ "email": "superharmony910@gmail.com", "twitter": "s_harmony910" }, - "record": { + "records": { "CNAME": "superharmony910.github.io" } } diff --git a/domains/supers0n1k.json b/domains/supers0n1k.json new file mode 100644 index 000000000..7e146b307 --- /dev/null +++ b/domains/supers0n1k.json @@ -0,0 +1,11 @@ +{ + "description": "supers0n1k's website. private email not disclosed. discord contact given", + "repo": "https://github.com/supers0n1k/supers0n1k.github.io", + "owner": { + "username": "supers0n1k", + "discord": "46mil" + }, + "records": { + "CNAME": "supers0n1k.github.io" + } +} diff --git a/domains/supperfreddo.json b/domains/supperfreddo.json new file mode 100644 index 000000000..7a41a962b --- /dev/null +++ b/domains/supperfreddo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "supperfreddo", + "email": "supperfreddoio@gmail.com", + "discord": "supperfreddo" + }, + "records": { + "CNAME": "supperfreddo.vercel.app" + } +} diff --git a/domains/suraez.json b/domains/suraez.json new file mode 100644 index 000000000..a94a3780a --- /dev/null +++ b/domains/suraez.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/Suraez/portfolio-2080", + "owner": { + "username": "suraez", + "email": "oberais50@gmail.com" + }, + "records": { + "URL": "https://www.sko.com.np/" + } +} diff --git a/domains/suraj.json b/domains/suraj.json index 4bc1f3c32..96de17f36 100644 --- a/domains/suraj.json +++ b/domains/suraj.json @@ -5,7 +5,7 @@ "username": "Clay990", "email": "asuraj991m@gmail.com" }, - "record": { + "records": { "CNAME": "clay990.github.io" } } diff --git a/domains/surajh-patel.json b/domains/surajh-patel.json index e8cf877f4..86d0f0f9c 100644 --- a/domains/surajh-patel.json +++ b/domains/surajh-patel.json @@ -4,7 +4,7 @@ "owner": { "username": "surajh-patel" }, - "record": { + "records": { "CNAME": "surajh-patel.github.io" } } diff --git a/domains/surendran-soumya.json b/domains/surendran-soumya.json index 770959983..c410718a1 100644 --- a/domains/surendran-soumya.json +++ b/domains/surendran-soumya.json @@ -4,7 +4,7 @@ "owner": { "username": "surendran-soumya" }, - "record": { + "records": { "CNAME": "surendran-soumya.github.io" } } diff --git a/domains/surge.json b/domains/surge.json index 7fee11d4a..704c9d287 100644 --- a/domains/surge.json +++ b/domains/surge.json @@ -5,7 +5,7 @@ "username": "teamjoelee", "email": "tojoeleeofficial@gmail.com" }, - "record": { + "records": { "URL": "https://i-am.surge.sh" } } diff --git a/domains/surv.json b/domains/surv.json index 20673649c..aa07239f7 100644 --- a/domains/surv.json +++ b/domains/surv.json @@ -3,7 +3,7 @@ "username": "yuri-kiss", "email": "a_2oo@outlook.com" }, - "record": { + "records": { "CNAME": "surv-is-a-dev.github.io" } } diff --git a/domains/surya.json b/domains/surya.json index 3b1603d41..4faee80c4 100644 --- a/domains/surya.json +++ b/domains/surya.json @@ -6,7 +6,7 @@ "email": "suryanarayanrenjith@outlook.com", "twitter": "_suryanarayanr" }, - "record": { + "records": { "CNAME": "suryanarayanrenjith.github.io" } } diff --git a/domains/surya0.json b/domains/surya0.json index 19e8a5beb..25ce3d245 100644 --- a/domains/surya0.json +++ b/domains/surya0.json @@ -1,10 +1,9 @@ { "owner": { "username": "suryapratapsinghsuryavanshi", - "discord": "858030091106517042", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DS_lQ-rkLkv0VFei9VOKq8YDnykOlXX8Rvlzzp8KSlTpDqnRY8e3X1_J4iVfI9t6KJdEfFjnR1r3xhXC9I2A2khHqZMlQTgdhyi72OLHDIQPur3lC16oZlz1T3d5BrVUdKd8ueNky_OLyIZDW9bYY_uR-8vy7ahqasWUW-EEdBspfeMDzWlUon7NKqZaR79maAArOCnoSjDg4Ul5vVei5w-EarI99nylk2tsk8Nx2KyjzEPxx_l7WLUWtZ8LOBRsV83KjJTKRtGZd0eD4jolAW6OQDnD9JEoR8g2XKVEylaYQlHJNgWLdHNdCdJcwhG6Ge2IRkvtlvhwQDu5230Mbg.4c2jfDHUTjsiJZZD2GNNWA.c7WmV_BgqxX8VhuhOyFxZJurynqJ4skcvPWenpEsKXrLG5j93rzAlh-kjG6A6ZIQpEu2NHwKEzvRu_S_PwijC-Ctq5GxiM8rCQfyvuAif4F-kroGiCPD0092yKmBa2kn.Ljp9qlE0JjM35gTNNQQPRQ" + "discord": "858030091106517042" }, - "record": { + "records": { "CNAME": "suryapratap.netlify.app" } } diff --git a/domains/suryaansh.json b/domains/suryaansh.json index 1ca18f4fc..edc2bd8ce 100644 --- a/domains/suryaansh.json +++ b/domains/suryaansh.json @@ -5,7 +5,7 @@ "username": "suryaanshah", "email": "suryaanshchawla@gmail.com" }, - "record": { + "records": { "CNAME": "suryaanshah.github.io" } } diff --git a/domains/suryaaprakassh.json b/domains/suryaaprakassh.json index 317accfae..de7677370 100644 --- a/domains/suryaaprakassh.json +++ b/domains/suryaaprakassh.json @@ -3,7 +3,7 @@ "username": "suryaaprakassh", "email": "surya0prakash@proton.me" }, - "record": { + "records": { "CNAME": "suryaaprakassh.github.io" } } diff --git a/domains/suryababu.json b/domains/suryababu.json new file mode 100644 index 000000000..e8fe7b870 --- /dev/null +++ b/domains/suryababu.json @@ -0,0 +1,10 @@ +{ + "description": "Landing page for suryababu.is-a.dev", + "owner": { + "username": "suryababu", + "email": "suryababu.k.s@gmail.com" + }, + "records": { + "CNAME": "suryababus.github.io" + } +} diff --git a/domains/suryajith.json b/domains/suryajith.json index 9681ff359..b9d6c1adc 100644 --- a/domains/suryajith.json +++ b/domains/suryajith.json @@ -5,7 +5,7 @@ "username": "suryajith", "discord": "SuryJithr#5011" }, - "record": { + "records": { "CNAME": "suryajith.github.io" } } diff --git a/domains/suryansh.json b/domains/suryansh.json index 06abcd537..f984618bf 100644 --- a/domains/suryansh.json +++ b/domains/suryansh.json @@ -3,7 +3,7 @@ "username": "iamsuryanshxd", "email": "legitsuryansh@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/iamsuryanshxd" } } diff --git a/domains/sushankghimire.json b/domains/sushankghimire.json new file mode 100644 index 000000000..784e33898 --- /dev/null +++ b/domains/sushankghimire.json @@ -0,0 +1,11 @@ +{ + "description": "Sushank Ghimire", + "repo": "https://github.com/Sushank-ghimire/ghimiresushank.com.np", + "owner": { + "username": "Sushank-ghimire", + "email": "ghimiresushank08@gmail.com" + }, + "records": { + "URL": "https://www.ghimiresushank.com.np" + } +} diff --git a/domains/sushi.json b/domains/sushi.json index e8928cc56..3157399db 100644 --- a/domains/sushi.json +++ b/domains/sushi.json @@ -3,7 +3,7 @@ "username": "sushi-ae", "email": "frapdotpng@gmail.com" }, - "record": { + "records": { "CNAME": "sushi-ae.github.io" } } diff --git a/domains/suspense.json b/domains/suspense.json index 70d03ea7f..223bda10e 100644 --- a/domains/suspense.json +++ b/domains/suspense.json @@ -3,7 +3,7 @@ "username": "Suspense4615", "twitter": "Suspense4615" }, - "record": { + "records": { "CNAME": "suspense4615.github.io" } } diff --git a/domains/sussypranav.json b/domains/sussypranav.json index 23ee5db0e..2244f7b93 100644 --- a/domains/sussypranav.json +++ b/domains/sussypranav.json @@ -3,7 +3,7 @@ "username": "SussyPranav", "email": "singhgreatpranav@gmail.com" }, - "record": { + "records": { "CNAME": "sussypranav.github.io" } } diff --git a/domains/sussyrayan.json b/domains/sussyrayan.json index 0fe3af89b..d99febe75 100644 --- a/domains/sussyrayan.json +++ b/domains/sussyrayan.json @@ -5,7 +5,7 @@ "username": "syedrayangames", "email": "syedyaseeralirayan5@gmail.com" }, - "record": { + "records": { "CNAME": "syedrayangames.github.io" } } diff --git a/domains/sutirth.json b/domains/sutirth.json index 5d9cfe65f..ed6ebcab6 100644 --- a/domains/sutirth.json +++ b/domains/sutirth.json @@ -5,7 +5,7 @@ "username": "ricksr", "email": "sutirtharej@gmail.com" }, - "record": { + "records": { "CNAME": "ricksr.github.io" } } diff --git a/domains/suu.json b/domains/suu.json index f023ff1dd..5e468de9b 100644 --- a/domains/suu.json +++ b/domains/suu.json @@ -5,7 +5,7 @@ "username": "OKBOTS", "email": "okbots1+2@gmail.com" }, - "record": { + "records": { "CNAME": "minolink.onrender.com" } } diff --git a/domains/svg.json b/domains/svg.json index 939dc9c3d..4f3feab60 100644 --- a/domains/svg.json +++ b/domains/svg.json @@ -5,7 +5,7 @@ "username": "svg-rs", "email": "kimmkayy8@proton.me" }, - "record": { + "records": { "CNAME": "svg-rs.github.io" } } diff --git a/domains/svijithprasad.json b/domains/svijithprasad.json index 6bc6c4d11..ff079c491 100644 --- a/domains/svijithprasad.json +++ b/domains/svijithprasad.json @@ -1,10 +1,9 @@ { "owner": { "username": "svijithprasad", - "discord": "694159447790059521", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G8V5ukgXfL16Z-fwAN4qDS4faEwK0WzXS60MuWwHYTgKolW4HjwT8hUBpK99JvKyNqB78bmrvbX_cKiq1yEop-907F_OYWaXFkFlM9FaLi4zb_gu_aRJ_ABmW4SD2hlUs5Lkq516cYhL-anGcsbW8jIharxrcCouPSUw0PwYZnc11E8NzhIRIN8m5sxQqj1TWP5L_Vc_Cr5yyvrRaWsN1p3-wep6gsIkAawchDXKDWfM9wjs2orrfOP0JQFLzKVKIM0e-nBlvqUdhFxqy473HucoMBAWi1fXsNZbD7SIUb2EMb8hOwX9YQT0fuB__IOMNMITDFxlyxNjqdf7lcJw7g.6EZGczxBeascAxNZhgbMrQ.YvwD-vK9j5FRIFSOKgvt0cBj0iOBVyJwMmQTDM-gjt6JYXzejxv_umlOkG7PfhrXgbcPfbPwH4VjK0M94wqlr1kVmgB3BQyLWPow9iwoGNM.DNOmvK0vCjtZQFhI3q9fDA" + "discord": "694159447790059521" }, - "record": { + "records": { "CNAME": "svijithprasad.github.io" } } diff --git a/domains/svloog.json b/domains/svloog.json index ce357d37f..ff4e08c9f 100644 --- a/domains/svloog.json +++ b/domains/svloog.json @@ -6,7 +6,7 @@ "email": "svloogz@gmail.com", "twitter": "svloogz" }, - "record": { + "records": { "CNAME": "slvoog.github.io" } } diff --git a/domains/swami.json b/domains/swami.json index 8c60a7970..8b83ecac3 100644 --- a/domains/swami.json +++ b/domains/swami.json @@ -1,11 +1,11 @@ { - "description": "Portfolio Website", - "repo": "https://github.com/aadltya/portfolio-website", - "owner": { - "username": "aadltya", - "email": "adityaedu22@gmail.com" - }, - "record": { - "CNAME": "adityasworld.vercel.app" - } - } \ No newline at end of file + "description": "Portfolio Website", + "repo": "https://github.com/aadltya/portfolio-website", + "owner": { + "username": "aadltya", + "email": "adityaedu22@gmail.com" + }, + "records": { + "CNAME": "adityasworld.vercel.app" + } +} diff --git a/domains/swapnil.json b/domains/swapnil.json index 692bfc0ce..e94487244 100644 --- a/domains/swapnil.json +++ b/domains/swapnil.json @@ -5,7 +5,7 @@ "username": "SwapnilChand", "email": "swapnilchand51@gmail.com" }, - "record": { + "records": { "CNAME": "swapnilchand.github.io" } } diff --git a/domains/swargarajbhowmik.json b/domains/swargarajbhowmik.json index 6609ff4f6..cc1148289 100644 --- a/domains/swargarajbhowmik.json +++ b/domains/swargarajbhowmik.json @@ -3,7 +3,7 @@ "username": "swargarajbhowmik", "email": "swargaraj66@gmail.com" }, - "record": { + "records": { "CNAME": "swargarajbhowmik.github.io" } } diff --git a/domains/swastik.json b/domains/swastik.json index d0cf946f9..c422c2600 100644 --- a/domains/swastik.json +++ b/domains/swastik.json @@ -6,7 +6,7 @@ "email": "swstkbaranwal@gmail.com", "twitter": "delta2315" }, - "record": { + "records": { "CNAME": "delta456.github.io" } } diff --git a/domains/swenet.json b/domains/swenet.json index 38b2f90bc..7f0b7ce0f 100644 --- a/domains/swenet.json +++ b/domains/swenet.json @@ -6,7 +6,7 @@ "email": "swenetbabapro@gmail.com", "twitter": "tiltedswenet" }, - "record": { + "records": { "CNAME": "sweneet.github.io" } } diff --git a/domains/sweta-solanki.json b/domains/sweta-solanki.json index 09c3778af..b1aa61f7b 100644 --- a/domains/sweta-solanki.json +++ b/domains/sweta-solanki.json @@ -5,7 +5,7 @@ "username": "sweta-solanki", "email": "sweta.solank@truestaz.com" }, - "record": { + "records": { "CNAME": "sweta-solanki.github.io" } } diff --git a/domains/sx9.json b/domains/sx9.json index 47a272ce9..80f1c30de 100644 --- a/domains/sx9.json +++ b/domains/sx9.json @@ -4,7 +4,7 @@ "username": "SX-9", "email": "sx-91@outlook.com" }, - "record": { + "records": { "CNAME": "cname.short.io" } } diff --git a/domains/sxi.json b/domains/sxi.json index c87b4f43a..ac7e0e3ce 100644 --- a/domains/sxi.json +++ b/domains/sxi.json @@ -4,7 +4,7 @@ "email": "oshidev@proton.me", "discord": "1247896918957490198" }, - "record": { + "records": { "URL": "https://sxi.com.tr" } } diff --git a/domains/sxtxnzester.json b/domains/sxtxnzester.json index fce7b2234..bbb89609a 100644 --- a/domains/sxtxnzester.json +++ b/domains/sxtxnzester.json @@ -4,7 +4,7 @@ "email": "lollo11020210@gmail.com", "discord": "1133362142461050980" }, - "record": { + "records": { "CNAME": "sxtxnzester.github.io" } } diff --git a/domains/sxurxbh.json b/domains/sxurxbh.json index e54cd907e..21723d163 100644 --- a/domains/sxurxbh.json +++ b/domains/sxurxbh.json @@ -3,7 +3,7 @@ "username": "Sxurabh", "email": "saurabhkirve@gmail.com" }, - "record": { + "records": { "CNAME": "sxurabh.github.io" } } diff --git a/domains/sxvr.json b/domains/sxvr.json index 4c05e0b74..20bb9a87d 100644 --- a/domains/sxvr.json +++ b/domains/sxvr.json @@ -3,7 +3,7 @@ "username": "skaar513", "email": "skaar513@gmail.com" }, - "record": { + "records": { "CNAME": "skaar513.github.io" } } diff --git a/domains/syahiramali.json b/domains/syahiramali.json index 0d51bce4c..6cc27a893 100644 --- a/domains/syahiramali.json +++ b/domains/syahiramali.json @@ -5,7 +5,7 @@ "username": "syahirAmali", "email": "syahiramali@gmail.com" }, - "record": { + "records": { "CNAME": "syahiramali.github.io" } } diff --git a/domains/syd.json b/domains/syd.json index d9e07a923..277db037d 100644 --- a/domains/syd.json +++ b/domains/syd.json @@ -3,7 +3,7 @@ "username": "bububa", "email": "prof.syd.xu@gmail.com" }, - "record": { + "records": { "CNAME": "bububa.github.io" } } diff --git a/domains/syed.json b/domains/syed.json index 19051c22d..f45c57751 100644 --- a/domains/syed.json +++ b/domains/syed.json @@ -3,7 +3,7 @@ "username": "SyedAhkam", "email": "smahkam57@gmail.com" }, - "record": { + "records": { "CNAME": "syedahkam.github.io" } } diff --git a/domains/syedrayan.json b/domains/syedrayan.json index 46a47ddcc..5b58ac86e 100644 --- a/domains/syedrayan.json +++ b/domains/syedrayan.json @@ -3,7 +3,7 @@ "username": "syedrayangames", "email": "syedyaseeralirayan@gmail.com" }, - "record": { + "records": { "URL": "https://rxhggamingnews.blogspot.com/" } } diff --git a/domains/sylestic.json b/domains/sylestic.json index e3451dc32..e4923ffca 100644 --- a/domains/sylestic.json +++ b/domains/sylestic.json @@ -3,7 +3,7 @@ "username": "Sylestic", "discord": "Sylestic#4231" }, - "record": { + "records": { "CNAME": "sylestic.github.io" } } diff --git a/domains/sylphin3107.json b/domains/sylphin3107.json new file mode 100644 index 000000000..5a6152653 --- /dev/null +++ b/domains/sylphin3107.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sylphin3107", + "email": "tqvcontacts@gmail.com" + }, + "records": { + "URL": "https://sylphin3107.uwu.ai/" + } +} diff --git a/domains/synacktra.json b/domains/synacktra.json index 30c9992a6..7931107b4 100644 --- a/domains/synacktra.json +++ b/domains/synacktra.json @@ -5,7 +5,7 @@ "username": "synacktraa", "email": "synacktra.work@gmail.com" }, - "record": { + "records": { "CNAME": "synacktraa.github.io" } } diff --git a/domains/syntaxsavior.json b/domains/syntaxsavior.json index 55f1528bc..1e074fece 100644 --- a/domains/syntaxsavior.json +++ b/domains/syntaxsavior.json @@ -3,7 +3,7 @@ "username": "ItzYoVishal", "email": "rockstarelitecoc@gmail.com" }, - "record": { + "records": { "CNAME": "blue-sand-021f23e10.4.azurestaticapps.net" } } diff --git a/domains/synthara.json b/domains/synthara.json new file mode 100644 index 000000000..970f86b19 --- /dev/null +++ b/domains/synthara.json @@ -0,0 +1,13 @@ +{ + "description": "🚀 Synthara – Your Smart AI Assistant Synthara is an advanced AI-powered virtual assistant designed to enhance productivity, answer queries, and automate tasks efficiently. Built with cutting-edge AI technology, Synthara delivers seamless interactions and intelligent responses.", + "repo": "https://github.com/ArhanAnsari/Synthara", + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com", + "x": "https://x.com/codewitharhan", + "discord": "@codewitharhan" + }, + "records": { + "CNAME": "synthara.vercel.app" + } +} diff --git a/domains/syntz.json b/domains/syntz.json index 5b7e8a38d..2a89bc373 100644 --- a/domains/syntz.json +++ b/domains/syntz.json @@ -4,7 +4,7 @@ "email": "rafaelbraun5@hotmail.com" }, "repo": "https://github.com/syntz-dev/syntz-dev.github.io", - "record": { + "records": { "CNAME": "syntz-dev.github.io" } } diff --git a/domains/syofyanzuhad.json b/domains/syofyanzuhad.json index eeafbc6a6..f48bfd5a2 100644 --- a/domains/syofyanzuhad.json +++ b/domains/syofyanzuhad.json @@ -5,7 +5,7 @@ "username": "syofyanzuhad", "email": "sofyanzuhad2@gmail.com" }, - "record": { + "records": { "CNAME": "syofyanzuhad.my.id" } } diff --git a/domains/sys32.json b/domains/sys32.json index 4f7714b91..9b55e36a4 100644 --- a/domains/sys32.json +++ b/domains/sys32.json @@ -3,7 +3,7 @@ "username": "sys-32Dev", "email": "sys32real@gmail.com" }, - "record": { + "records": { "URL": "https://www.sys64.dev" } } diff --git a/domains/szbcs.json b/domains/szbcs.json index f559706f7..6b98e5956 100644 --- a/domains/szbcs.json +++ b/domains/szbcs.json @@ -3,7 +3,7 @@ "username": "szilvesztercsab", "email": "szilvesztercsab@gmail.com" }, - "record": { + "records": { "CNAME": "szbcs.duckdns.org" } } diff --git a/domains/szczota.json b/domains/szczota.json index e9c4b18be..9cb4ab011 100644 --- a/domains/szczota.json +++ b/domains/szczota.json @@ -3,7 +3,7 @@ "username": "szczotapl", "discord": ".szczotapl" }, - "record": { + "records": { "CNAME": "szczotapl.github.io" } } diff --git a/domains/szisza.vamtic.json b/domains/szisza.vamtic.json index 45f0d23d7..ce7c17eb4 100644 --- a/domains/szisza.vamtic.json +++ b/domains/szisza.vamtic.json @@ -3,7 +3,7 @@ "username": "vamtic", "email": "vamtic@yahoo.com" }, - "record": { + "records": { "CNAME": "szisza.pages.dev" } } diff --git a/domains/szn20221014._domainkey.104.json b/domains/szn20221014._domainkey.104.json new file mode 100644 index 000000000..cafbbf508 --- /dev/null +++ b/domains/szn20221014._domainkey.104.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "records": { + "CNAME": "szn20221014._domainkey.seznam.cz" + } +} diff --git a/domains/szn20221014._domainkey.quincetart10.json b/domains/szn20221014._domainkey.quincetart10.json new file mode 100644 index 000000000..cafbbf508 --- /dev/null +++ b/domains/szn20221014._domainkey.quincetart10.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "records": { + "CNAME": "szn20221014._domainkey.seznam.cz" + } +} diff --git a/domains/szn20221014._domainkey.rt10.json b/domains/szn20221014._domainkey.rt10.json new file mode 100644 index 000000000..cafbbf508 --- /dev/null +++ b/domains/szn20221014._domainkey.rt10.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "records": { + "CNAME": "szn20221014._domainkey.seznam.cz" + } +} diff --git a/domains/t.json b/domains/t.json index abf147dda..d7718fcf0 100644 --- a/domains/t.json +++ b/domains/t.json @@ -1,10 +1,9 @@ { "owner": { "username": "trollm8", - "discord": "1266754182082461751", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.N8Vf7tNsfTIJKNaXAqD1t4qLzIqx8ZlybnLmVGjKs6dv3uxFMpKQhznKohFUEtOQlvURIZsKDGUOyFFpo6tzJEFt9Aaocse4xF2P7ud1ZBGLaPBSM7HF7IemNsczePYM-BjzMHvfTu7ryOGlCLvRe7z7M0KzRtImIcpm_ZQf-1aGlAFljd9Gy82Jc2mE9U-gMNU5GgRteegXGeNRHb10oYXWYV4lmLTP_YhvbiCavwTRyTS3SrwzQn78eTcXgwTeGhELj9eEfwTCsGJJfsbZPWAh1QNpm6-Y7HktDiNELbw2QfK3R0gvczybCfXGzj4d7z4Qhchea5X_uXxalGGNfA.VE-Mh6fPXbz7m456qKlh5w.gg7ta9FXClk001IBFL1UiwrYTks-hWzmecKfz9XdA1js4kBarT9MdlAb4UJTyoeyVqQ1uZSe3QLt25A1Kk7pTg.ZEXUDiLNEpaUwlvsx_xiEQ" + "discord": "1266754182082461751" }, - "record": { + "records": { "CNAME": "trollm8-redirect.pages.dev" } } diff --git a/domains/t3vada.json b/domains/t3vada.json index 512bcff16..39541419c 100644 --- a/domains/t3vada.json +++ b/domains/t3vada.json @@ -2,7 +2,7 @@ "owner": { "username": "wythh24" }, - "record": { + "records": { "CNAME": "devada.vercel.app" } -} \ No newline at end of file +} diff --git a/domains/tabby.json b/domains/tabby.json index e20b17287..9a755cea8 100644 --- a/domains/tabby.json +++ b/domains/tabby.json @@ -1,10 +1,9 @@ { "owner": { "username": "sobakintech", - "discord": "745203026335236178", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LMYVJwDQMyo-1kl7uU8odmW6nRUsDL-7Hv4eCtfbgmOersfsy5_yUP0Tj19zMmnEMZFRcACJyKirBUl6FiDBWZuR5JAqFlwk6mkCa5q3y6euD0r2C1EblSV2FwdAuZeIYzUAtK1AW_zylt-NmdSKcV7WVpXo41LL13OkHlzqKhr9VWLKMkTKabUNUfixbjZE7mhKSaUySXsZuxZrsbw30Md4dKNiWM6U5ULeVLTzpbsc52V0VogGbbDsYp-uNz6EdRpc29Q8f-FUBYT9J80RNlojxKwpSvNThGhRK9xTefB62cxzccMuBLsY8NCuH4nYEBR6FWzXlhLmFYfRri3j6A.Ul0cgJ2u8JEhbqj8DqGxlw.Q2x8c2d_AX89g3zwNFlIbZdjktKzErELsyNUe5KpmUhuwIWQD7Vz800xKXDtGiJU0c-73A2lxUsKZpqmWpiV3u9crsiev-zCgrMPE-eoU5017fWEeu6RI2tfP1Njeeja._ss7y_5vGuQZShwGAFTD-g" + "discord": "745203026335236178" }, - "record": { + "records": { "A": ["144.24.184.141"] } } diff --git a/domains/taha.json b/domains/taha.json index 0ec9a5076..42cb3952b 100644 --- a/domains/taha.json +++ b/domains/taha.json @@ -5,7 +5,7 @@ "username": "taha2002", "email": "bouras1920@gmail.com" }, - "record": { + "records": { "CNAME": "taha2002.github.io" } } diff --git a/domains/taha2002.json b/domains/taha2002.json index 3108579db..806fcce54 100644 --- a/domains/taha2002.json +++ b/domains/taha2002.json @@ -3,7 +3,7 @@ "username": "taha2002", "email": "bouras1920@gmail.com" }, - "record": { + "records": { "CNAME": "taha2002.github.io" } } diff --git a/domains/tahaadnan.json b/domains/tahaadnan.json index 97d4b3fd1..38df0afbd 100644 --- a/domains/tahaadnan.json +++ b/domains/tahaadnan.json @@ -3,7 +3,7 @@ "username": "LRxDarkDevil", "email": "tahaadnanawan@gmail.com" }, - "record": { + "records": { "CNAME": "lrxdarkdevil.github.io" } } diff --git a/domains/tahakocabuga.json b/domains/tahakocabuga.json index 1e9d8019c..e06b1f7dc 100644 --- a/domains/tahakocabuga.json +++ b/domains/tahakocabuga.json @@ -6,7 +6,7 @@ "email": "tahakocabuga@gmail.com", "twitter": "tahakocabuga" }, - "record": { + "records": { "CNAME": "tahakocabuga.github.io" } } diff --git a/domains/tahir.json b/domains/tahir.json index b0180daf8..89d4e343f 100644 --- a/domains/tahir.json +++ b/domains/tahir.json @@ -1,10 +1,9 @@ { "owner": { "username": "syedraihanali", - "discord": "630920899952115712", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.aU2pNjWT_gok4yMFuWsXL8apN3XNbnx2GPr-wIKACKn3Ii-VvP9z-Y1_XsteCulsZroTutm5klnCPLKvEwHQtNO-rXtJ2ZLhBVy73b5F8OKopsTtutHOvJiA9KmSnUr3xfN8J4Xi27LDMXST7cnGKfnoe6D285_9dbtW6FZ-dMNiqPbqdHYZICzLUQnd4ls3lP_YPme5GeAJSfc0ZLJNbeVMj-f2Tp9EFNz8n9V6lWbOufJEt3D3_TpEYqqctVzkfFHPpHKAGmN0hSQEeVwRrmaYNispb9r9613MFt22IIaSvlWEVvzOLL1s_iHDGmCxlAe9ig7Xh_3OxXLLIDmKkg.UQS3jET5qqZVuWT0-p6zeQ.K4qfkcxCKrBJCXfr8kgt3-brJbx4PXonJYBqW0nA9nIT5cwvJ-vn8kTP9s0Irpxg6WTMZOalzsb3HNgKaYaHca3J9tSXNXZ1x99A-L_A5fM.snQpd1z0kofYC1dJO_O8SA" + "discord": "630920899952115712" }, - "record": { + "records": { "A": ["103.213.38.188"] } } diff --git a/domains/tahmidrayat.json b/domains/tahmidrayat.json index 245bd2600..ee372e2e2 100644 --- a/domains/tahmidrayat.json +++ b/domains/tahmidrayat.json @@ -5,7 +5,7 @@ "username": "htr-tech", "email": "tahmidrayat@gmail.com" }, - "record": { + "records": { "CNAME": "htr-tech.github.io" } } diff --git a/domains/tahseen.json b/domains/tahseen.json index 7d65647be..66cb442a4 100644 --- a/domains/tahseen.json +++ b/domains/tahseen.json @@ -3,7 +3,7 @@ "username": "tahseen", "email": "itxtahseen@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/tainguyen.json b/domains/tainguyen.json new file mode 100644 index 000000000..e3e20d8db --- /dev/null +++ b/domains/tainguyen.json @@ -0,0 +1,11 @@ +{ + "description": "this is my profile", + "repo": "https://github.com/taitai2107/web_cv", + "owner": { + "username": "taitai2107", + "email": "nguyencongkhanhtai21072001@gmail.com" + }, + "records": { + "CNAME": "taitai2107.github.io" + } +} diff --git a/domains/tajul.json b/domains/tajul.json index 9bc121211..ddfd5a012 100644 --- a/domains/tajul.json +++ b/domains/tajul.json @@ -3,7 +3,7 @@ "username": "arifintajul4", "email": "arifintajul4@gmail.com" }, - "record": { + "records": { "CNAME": "portofolio-khaki.vercel.app" } } diff --git a/domains/tak.json b/domains/tak.json index 8a647b45f..5c0ccafa9 100644 --- a/domains/tak.json +++ b/domains/tak.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "tak-gamingYT", - "email": "tak@tak.io.vn" - }, - "record": { - "CNAME": "tak-gamingyt.github.io" - }, - "proxied": true + "owner": { + "username": "tak-gamingYT", + "email": "tak@tak.io.vn" + }, + "records": { + "A": ["103.221.223.52"] + }, + "proxied": true } diff --git a/domains/takase.json b/domains/takase.json index 53833394b..96bec004a 100644 --- a/domains/takase.json +++ b/domains/takase.json @@ -5,7 +5,7 @@ "username": "takase1121", "email": "takase1121@proton.me" }, - "record": { + "records": { "CNAME": "takase1121.github.io" } } diff --git a/domains/tal7aouy.json b/domains/tal7aouy.json index 2726d480c..f2dcc6156 100644 --- a/domains/tal7aouy.json +++ b/domains/tal7aouy.json @@ -3,7 +3,7 @@ "username": "tal7aouy", "email": "tal7aouy.dev@gmail.com" }, - "record": { + "records": { "URL": "https://tal7aouy.netlify.app" } } diff --git a/domains/talinsharma.json b/domains/talinsharma.json index 35128e40d..51c76aa65 100644 --- a/domains/talinsharma.json +++ b/domains/talinsharma.json @@ -3,7 +3,7 @@ "username": "TalinTheDev", "email": "talinsharma.dev@gmail.com" }, - "record": { + "records": { "CNAME": "talinthedev.github.io" } } diff --git a/domains/tallerthanshort.json b/domains/tallerthanshort.json index 41e7f061a..990352c60 100644 --- a/domains/tallerthanshort.json +++ b/domains/tallerthanshort.json @@ -1,11 +1,10 @@ { "description": "TallerThanShort made site", - "repo": "https://github.com/TallerThanShort", "owner": { "username": "TallerThanShort", "email": "TallerThanShort@duck.com" }, - "record": { + "records": { "CNAME": "tallerthanshort.github.io" } } diff --git a/domains/tamim.json b/domains/tamim.json index 0bdd7dd69..2e4cfe6c0 100644 --- a/domains/tamim.json +++ b/domains/tamim.json @@ -5,7 +5,7 @@ "username": "dev7amim", "email": "dev7amim@yahoo.com" }, - "record": { + "records": { "CNAME": "dev7amim.github.io" } } diff --git a/domains/tamton-aquib.json b/domains/tamton-aquib.json index db0769328..7f3fd2d34 100644 --- a/domains/tamton-aquib.json +++ b/domains/tamton-aquib.json @@ -3,7 +3,7 @@ "username": "tamton-aquib", "email": "aquibjavedt007@gmail.com" }, - "record": { + "records": { "CNAME": "tamton-aquib.github.io" } } diff --git a/domains/tan.json b/domains/tan.json index 85ecae11e..cd25a8f36 100644 --- a/domains/tan.json +++ b/domains/tan.json @@ -4,7 +4,7 @@ "username": "cuno92", "email": "hoangvannhattan@gmail.com" }, - "record": { + "records": { "CNAME": "white-hill-030c00b00.4.azurestaticapps.net" } } diff --git a/domains/tanbaycu.json b/domains/tanbaycu.json new file mode 100644 index 000000000..d21ac0752 --- /dev/null +++ b/domains/tanbaycu.json @@ -0,0 +1,12 @@ +{ + "description": "Trang portfolio cá nhân của tôi.", + "repo": "https://github.com/tanbaycu/tanbaycu.github.io", + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "records": { + "CNAME": "tanbaycu.vercel.app" + }, + "proxied": true +} diff --git a/domains/tandevhtml.json b/domains/tandevhtml.json new file mode 100644 index 000000000..2b69909a5 --- /dev/null +++ b/domains/tandevhtml.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation website for tanbaycu Dev Website AI", + "repo": "https://github.com/tanbaycu", + "owner": { + "username": "tanbaycu", + "email": "mnew20128@gmail.com" + }, + "records": { + "CNAME": "aiview.vercel.app" + }, + "proxied": true +} diff --git a/domains/tanish-chahal.json b/domains/tanish-chahal.json new file mode 100644 index 000000000..3410f41c1 --- /dev/null +++ b/domains/tanish-chahal.json @@ -0,0 +1,11 @@ +{ + "description": "Tanish's Portfolio", + "repo": "https://github.com/TanishChahal/register", + "owner": { + "username": "TanishChahal", + "email": "TanishChahal5705@gmail.com" + }, + "records": { + "URL": "https://tanishchahal.netlify.app" + } +} diff --git a/domains/tanish-poddar.json b/domains/tanish-poddar.json index 4c64749fe..66cd48cc1 100644 --- a/domains/tanish-poddar.json +++ b/domains/tanish-poddar.json @@ -1,11 +1,11 @@ { - "description": "Documentation website for is-a.dev", - "repo": "https://github.com/tanishpoddar/tanishpoddar.github.io", - "owner": { - "username": "tanishpoddar", - "email": "tanishpoddar.18@gmail.com" - }, - "record": { - "CNAME": "tanishpoddar.github.io" - } + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/tanishpoddar/tanishpoddar.github.io", + "owner": { + "username": "tanishpoddar", + "email": "tanishpoddar.18@gmail.com" + }, + "records": { + "CNAME": "tanishpoddar.github.io" + } } diff --git a/domains/tanish.json b/domains/tanish.json index c0891a006..fb20c116d 100644 --- a/domains/tanish.json +++ b/domains/tanish.json @@ -3,7 +3,7 @@ "username": "hirakotm", "email": "hirakoo@proton.me" }, - "record": { + "records": { "CNAME": "hirako-is-really-cool.pages.dev" } } diff --git a/domains/tanish2002.json b/domains/tanish2002.json index c07b0ebfd..ed7ee78af 100644 --- a/domains/tanish2002.json +++ b/domains/tanish2002.json @@ -5,7 +5,7 @@ "username": "Tanish2002", "email": "tanishkhare@gmail.com" }, - "record": { + "records": { "CNAME": "tanish2002.github.io" } } diff --git a/domains/tanishq.json b/domains/tanishq.json new file mode 100644 index 000000000..506ab127a --- /dev/null +++ b/domains/tanishq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanishqmanuja", + "email": "tanishqmanuja@gmail.com" + }, + "records": { + "CNAME": "tqman.pages.dev" + } +} diff --git a/domains/tanmay.json b/domains/tanmay.json index 8b3a2cfcd..cb3f784ab 100644 --- a/domains/tanmay.json +++ b/domains/tanmay.json @@ -3,7 +3,7 @@ "username": "tanmayagrwl", "email": "tanmayhp78@gmail.com" }, - "record": { + "records": { "URL": "https://portfolio-site-nine-silk.vercel.app" } } diff --git a/domains/tanos.json b/domains/tanos.json index 8fbfaeb3c..b3a721f16 100644 --- a/domains/tanos.json +++ b/domains/tanos.json @@ -5,7 +5,7 @@ "username": "TacoGit", "email": "opmijloly@gmail.com" }, - "record": { + "records": { "CNAME": "tacogit.github.io" } } diff --git a/domains/tanquang.json b/domains/tanquang.json index 778eff53f..3b8621cf8 100644 --- a/domains/tanquang.json +++ b/domains/tanquang.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "quangnlt", - "email": "tanquang2k3@gmail.com" - }, - "record": { - "CNAME": "quangnlt.github.io" - } + "owner": { + "username": "quangnlt", + "email": "tanquang2k3@gmail.com" + }, + "records": { + "CNAME": "quangnlt.github.io" + } } diff --git a/domains/tanuj-nagpal.json b/domains/tanuj-nagpal.json new file mode 100644 index 000000000..446ea3f95 --- /dev/null +++ b/domains/tanuj-nagpal.json @@ -0,0 +1,11 @@ +{ + "description": "personal website", + "repo": "https://github.com/tanuj101/personal-web-space", + "owner": { + "username": "tanuj101", + "email": "tanujnagpal999@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/tanveer.json b/domains/tanveer.json new file mode 100644 index 000000000..55ccac128 --- /dev/null +++ b/domains/tanveer.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website of Tanveer Husyn", + "repo": "https://github.com/Tanveerhusyn/new_portfolio", + "owner": { + "username": "tanveerhusyn", + "email": "tanveerhussain465@gmail.com" + }, + "records": { + "CNAME": "portfolio-tanveer.netlify.app" + } +} diff --git a/domains/tanvir.json b/domains/tanvir.json new file mode 100644 index 000000000..cc449dddd --- /dev/null +++ b/domains/tanvir.json @@ -0,0 +1,12 @@ +{ + "description": "Tanvir's personal website", + "owner": { + "username": "tnv1r", + "email": "dev@tanvir.io" + }, + "records": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/tanviyeole.json b/domains/tanviyeole.json new file mode 100644 index 000000000..3b3019b9c --- /dev/null +++ b/domains/tanviyeole.json @@ -0,0 +1,10 @@ +{ + "description": "Hello! I am Tanvi, a Full Stack Web Developer based in Nashik", + "owner": { + "username": "tanvi-yeole", + "email": "tanvi.yeole3@gmail.com" + }, + "records": { + "CNAME": "portfolio-nu-eight-80.vercel.app" + } +} diff --git a/domains/tanx-009.json b/domains/tanx-009.json index d3473ffde..7c87f0304 100644 --- a/domains/tanx-009.json +++ b/domains/tanx-009.json @@ -3,7 +3,7 @@ "username": "TanX-009", "email": "tanmaymuley009@gmail.com" }, - "record": { + "records": { "CNAME": "tanx-009.gitlab.io" } } diff --git a/domains/tanyalai.json b/domains/tanyalai.json index fb766e7aa..d9e822b27 100644 --- a/domains/tanyalai.json +++ b/domains/tanyalai.json @@ -6,7 +6,7 @@ "email": "tanyalai@outlook.com", "twitter": "TanyaLai23" }, - "record": { + "records": { "CNAME": "tanyalai.github.io" } } diff --git a/domains/taquanminhlong.json b/domains/taquanminhlong.json index 82e5712c8..16f5dbddc 100644 --- a/domains/taquanminhlong.json +++ b/domains/taquanminhlong.json @@ -3,7 +3,7 @@ "username": "taquanminhlong", "email": "taquanminhlong@gmail.com" }, - "record": { + "records": { "URL": "https://tqml.vercel.app/" } } diff --git a/domains/tarifsadman.json b/domains/tarifsadman.json index 9ab46f133..8e4e89672 100644 --- a/domains/tarifsadman.json +++ b/domains/tarifsadman.json @@ -3,7 +3,7 @@ "username": "TarifSadman", "email": "sadmantaha17@gmail.com" }, - "record": { + "records": { "URL": "https://tarif-sadman.netlify.app/" } } diff --git a/domains/tarik.json b/domains/tarik.json index 229555f73..7f930b851 100644 --- a/domains/tarik.json +++ b/domains/tarik.json @@ -5,7 +5,7 @@ "username": "tarikcoskun", "email": "tarikcskun@gmail.com" }, - "record": { + "records": { "CNAME": "tarikcoskun.up.railway.app" } } diff --git a/domains/tartej.json b/domains/tartej.json index c4a034fbd..e07234072 100644 --- a/domains/tartej.json +++ b/domains/tartej.json @@ -5,7 +5,7 @@ "username": "tartejbrothers", "email": "taranjeetsinghbedi2@gmail.com" }, - "record": { + "records": { "CNAME": "tarloic.web.app" } } diff --git a/domains/tarun57.json b/domains/tarun57.json index 51f7a92b4..dcee389fd 100644 --- a/domains/tarun57.json +++ b/domains/tarun57.json @@ -3,7 +3,7 @@ "username": "H-57", "email": "tarunkumar8059@gmail.com" }, - "record": { + "records": { "URL": "https://pokemonin-hindi.blogspot.com" } } diff --git a/domains/tarun577.json b/domains/tarun577.json index 51f7a92b4..dcee389fd 100644 --- a/domains/tarun577.json +++ b/domains/tarun577.json @@ -3,7 +3,7 @@ "username": "H-57", "email": "tarunkumar8059@gmail.com" }, - "record": { + "records": { "URL": "https://pokemonin-hindi.blogspot.com" } } diff --git a/domains/tas33n.json b/domains/tas33n.json index 6419580a0..e382d5575 100644 --- a/domains/tas33n.json +++ b/domains/tas33n.json @@ -3,10 +3,9 @@ "repo": "https://github.com/tas33n/tas33n.github.io", "owner": { "username": "tas33n", - "email": "tasu.legend@gmail.com", - "twitter": "" + "email": "tasu.legend@gmail.com" }, - "record": { + "records": { "CNAME": "tas33n.pages.dev" } } diff --git a/domains/tasawar-hussain.json b/domains/tasawar-hussain.json new file mode 100644 index 000000000..48d7e90b5 --- /dev/null +++ b/domains/tasawar-hussain.json @@ -0,0 +1,11 @@ +{ + "description": "tasawar-hussain.is-a.dev", + "repo": "https://github.com/tasawar-hussain/tasawar-hussain.github.io", + "owner": { + "username": "tasawar-hussain", + "email": "me.tasawarhussain@gmail.com" + }, + "records": { + "CNAME": "tasawar-hussain.github.io" + } +} diff --git a/domains/tasory.json b/domains/tasory.json index 656423749..b9024a1b6 100644 --- a/domains/tasory.json +++ b/domains/tasory.json @@ -3,7 +3,7 @@ "username": "tasory", "email": "andr3393399@gmail.com" }, - "record": { + "records": { "CNAME": "tasory.github.io" } } diff --git a/domains/tassio.json b/domains/tassio.json new file mode 100644 index 000000000..c452ed6a0 --- /dev/null +++ b/domains/tassio.json @@ -0,0 +1,11 @@ +{ + "description": "tassiovirginio", + "repo": "https://github.com/tassiovirginio/tassiovirginio.github.io", + "owner": { + "username": "tassiovirginio", + "email": "tassiovirginio@gmail.com" + }, + "records": { + "CNAME": "tassiovirginio.github.io" + } +} diff --git a/domains/tat2008.json b/domains/tat2008.json index e3611d3bf..bd4a6eef6 100644 --- a/domains/tat2008.json +++ b/domains/tat2008.json @@ -3,7 +3,7 @@ "username": "tat2008", "email": "tuan.trananh2008@gmail.com" }, - "record": { + "records": { "CNAME": "profile-card-1ug.pages.dev" } } diff --git a/domains/tavignesh.json b/domains/tavignesh.json index b892faa4b..7fa8fe100 100644 --- a/domains/tavignesh.json +++ b/domains/tavignesh.json @@ -4,7 +4,7 @@ "username": "tavignesh", "email": "vigneshta004@gmail.com" }, - "record": { + "records": { "CNAME": "vignesh-is-a-dev.pages.dev" } } diff --git a/domains/tawhid.json b/domains/tawhid.json index 4a7ab0430..f6b288ffe 100644 --- a/domains/tawhid.json +++ b/domains/tawhid.json @@ -1,9 +1,11 @@ { + "description": "Personal hobby site", + "repo": "https://github.com/Dumbo-programmer/Dumbo-programmer.github.io", "owner": { "username": "Dumbo-programmer", "email": "rony.120285d2k@gmail.com" }, - "record": { - "CNAME": "dumbo-programmer.github.io" + "records": { + "A": ["52.74.232.59"] } } diff --git a/domains/tawhidislam.json b/domains/tawhidislam.json new file mode 100644 index 000000000..ed4022046 --- /dev/null +++ b/domains/tawhidislam.json @@ -0,0 +1,10 @@ +{ + "description": "For my personal portfolio website", + "owner": { + "username": "tawhid404Err", + "email": "xcode.dev@yahoo.com" + }, + "records": { + "A": ["103.62.149.9"] + } +} diff --git a/domains/tawiah.json b/domains/tawiah.json new file mode 100644 index 000000000..4008caa0b --- /dev/null +++ b/domains/tawiah.json @@ -0,0 +1,11 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/tawiahnyt/tawiah", + "owner": { + "username": "tawiahnyt", + "email": "tawiahin4k@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/tawqeer.json b/domains/tawqeer.json index ae3c8ad0a..848a4832d 100644 --- a/domains/tawqeer.json +++ b/domains/tawqeer.json @@ -5,7 +5,7 @@ "username": "1k24bytes.github.io", "email": "tawqeer21@gmail.com" }, - "record": { + "records": { "CNAME": "1k24bytes.github.io" } } diff --git a/domains/taxen.json b/domains/taxen.json index 2a8ef5743..aed54cc78 100644 --- a/domains/taxen.json +++ b/domains/taxen.json @@ -3,7 +3,7 @@ "username": "taxenlmao", "email": "jayd3ngame@gmail.com" }, - "record": { + "records": { "URL": "https://feds.lol/skittles" } } diff --git a/domains/tay.json b/domains/tay.json index 3e43f2c48..aedcb658d 100644 --- a/domains/tay.json +++ b/domains/tay.json @@ -4,7 +4,7 @@ "email": "mystixmew@gmail.com", "discord": "1050531216589332581" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/tazbot.tienanh109.json b/domains/tazbot.tienanh109.json index f26bb7e90..5a846c9b6 100644 --- a/domains/tazbot.tienanh109.json +++ b/domains/tazbot.tienanh109.json @@ -1,10 +1,9 @@ { "owner": { "username": "tienanh109", - "discord": "835382592198410310", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QywIEyfPB9B0am2WoL1ZmEvdDiRSQdBqnt6t6pLkmTUWrbdvSAabKektBxBavhV9BhqpnoBfBtqIL7IhiIjOpRYn_CH3OfnxHoxlqjYB7f_a_ynv1ywxsg50IogX94roAaLj8clQIhpUrVeQt4bjcFGN39w0w4xViMq2D37npSvIc9FD9jhWPJCoPoRrGESexvvdM9mfkDqbfGXZJR-92rvPi_FQ7u4x0S-s5ZqjeV0O3Ku09vpOeZlFUhNPfRCx1o8V-7uStWMn3nBRJ0uR05Q7gcEWFNaSPuVcgn0ocOREMvPbN1an_RSPpIcA9ctNEfI31RmKaswJh524mYYgUA.WQXvUgTWa4Z48JVlCo6CHA.Rm9uVvt-GVm4Uyylhj_KoKueFOQOT73poOsscsCTQM462TWx-5Fk0WdIwQdJaEuROeG7F5xketD-qUCu0X3r_hucqol6Pyd9RyA27o3EqEw.CVbcGiP8ynYP1NPTqGS2-g" + "discord": "835382592198410310" }, - "record": { + "records": { "CNAME": "tazbot.pages.dev" } } diff --git a/domains/tazer.json b/domains/tazer.json index 16211d977..b48cc4545 100644 --- a/domains/tazer.json +++ b/domains/tazer.json @@ -3,7 +3,7 @@ "username": "ajtazer", "email": "ajcoolx619@gmail.com" }, - "record": { + "records": { "URL": "https://www.snapchat.com/add/ajtazer" } } diff --git a/domains/tca.json b/domains/tca.json index 0129e8212..4a1d92046 100644 --- a/domains/tca.json +++ b/domains/tca.json @@ -5,7 +5,7 @@ "username": "ToastifyDev", "email": "hey@toastify.tk" }, - "record": { + "records": { "URL": "https://toasted.is-a.dev" } } diff --git a/domains/tclement0922.json b/domains/tclement0922.json index 1ac098547..61dae9878 100644 --- a/domains/tclement0922.json +++ b/domains/tclement0922.json @@ -5,7 +5,7 @@ "username": "tclement0922", "email": "dev.tclement0922@gmail.com" }, - "record": { + "records": { "CNAME": "tclement0922.github.io" } } diff --git a/domains/td.json b/domains/td.json index 9ddd060b4..bbc87dad3 100644 --- a/domains/td.json +++ b/domains/td.json @@ -3,7 +3,7 @@ "username": "Hima-Pro", "email": "pnpop01027066161@gmail.com" }, - "record": { + "records": { "CNAME": "hima-pro.github.io" } } diff --git a/domains/tdh.json b/domains/tdh.json index e90ca1a11..520422783 100644 --- a/domains/tdh.json +++ b/domains/tdh.json @@ -3,7 +3,7 @@ "username": "agger34", "email": "hungtd.h3it@gmail.com" }, - "record": { + "records": { "URL": "https://my-blog-orcin-mu-36.vercel.app" } } diff --git a/domains/tdim.json b/domains/tdim.json index 9ddd060b4..bbc87dad3 100644 --- a/domains/tdim.json +++ b/domains/tdim.json @@ -3,7 +3,7 @@ "username": "Hima-Pro", "email": "pnpop01027066161@gmail.com" }, - "record": { + "records": { "CNAME": "hima-pro.github.io" } } diff --git a/domains/tdm.json b/domains/tdm.json index fe7b31da0..4ad8aab5a 100644 --- a/domains/tdm.json +++ b/domains/tdm.json @@ -5,7 +5,7 @@ "username": "LolTDMMMOs", "email": "paymentstdm@gmail.com" }, - "record": { + "records": { "CNAME": "loltdmmmos.github.io" } } diff --git a/domains/team.json b/domains/team.json deleted file mode 100644 index 993cade10..000000000 --- a/domains/team.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/is-a-dev/team-docs", - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "is-a.dev" - }, - "proxied": true -} diff --git a/domains/team.tnt.json b/domains/team.tnt.json index d83cfcfe9..f1613d6ee 100644 --- a/domains/team.tnt.json +++ b/domains/team.tnt.json @@ -3,7 +3,7 @@ "username": "SebTNT", "email": "turquoisetntmultimedia@gmail.com" }, - "record": { + "records": { "CNAME": "sebtnt.github.io" } } diff --git a/domains/teamcodearc.json b/domains/teamcodearc.json index 726befd50..4dcdef8bf 100644 --- a/domains/teamcodearc.json +++ b/domains/teamcodearc.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/tech-geek-united.json b/domains/tech-geek-united.json index c9cad3e34..c723032e1 100644 --- a/domains/tech-geek-united.json +++ b/domains/tech-geek-united.json @@ -4,7 +4,7 @@ "email": "TGUyt.dev@gmail.com", "discord": "TechGeekUnited#4329" }, - "record": { + "records": { "URL": "https://techgeekunited.github.io", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/tech.json b/domains/tech.json index 53a3b34d2..37e87b02a 100644 --- a/domains/tech.json +++ b/domains/tech.json @@ -4,7 +4,7 @@ "username": "techpixel", "email": "yralqfwus@mozmail.com" }, - "record": { + "records": { "CNAME": "techpixel.github.io" } } diff --git a/domains/tech4file.json b/domains/tech4file.json index f0375d83f..3a3379d38 100644 --- a/domains/tech4file.json +++ b/domains/tech4file.json @@ -1,10 +1,9 @@ { "owner": { "username": "kubsai", - "discord": "477781395922485248", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.rjBMItaMqXDR5sgtxH1YnZZ9mYBhx3cbEQzddCZUiMNBR46LhAZ2AhH8wCbD6SG2zvXxFAs_37Lj-kdKpTwqvslDWBwu-USKw744-I9JSYOo5AOp07XOeMBub_hlhDzTs7c71UEp0Zn2aWcNT164tJZ9FtrrGz1cOlA1FrgOY6IiddK6Kpxc9WNfyKrFcvI36qFxp4Tb8S0Ibybm61KJbstlgbjxwB6KggPTHsywFOhw_Qefe9-QptaoPZRiruXHzvfWYoEzDVjlu7sfXbbyTfla9P6KMldZqhzfYLB1urG-iUnbE5lXWHpPUHS3Hg6-_zWzBIMn65gKfmXrp-uV7A.hW8GxTh4cATNDhwiGbFWyg.JoRpaJgGT1hqgC16L__tz931OK9opx5RmAWfsoe3QHUsiqCQM8xLkxUldZUX_UwYQWD0VZHxkk6KXYFfp2NwtQ.Q4d-6jP2DF2q_-6B8o-u5Q" + "discord": "477781395922485248" }, - "record": { + "records": { "A": ["185.27.134.230"] } } diff --git a/domains/techadv.json b/domains/techadv.json index 35f2e64b9..62c2b09ef 100644 --- a/domains/techadv.json +++ b/domains/techadv.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "techadvyt", - "discord": "1250701051812642887", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Vp8rCwhz4V1J-S7XGZRX3yIV-uuvxLHg_j1MB64d-i_xDZdl9mVIrln2zdw8R7Aeh80rTEgAKdJG7ihGxigBUpQvMOFktvm_ronxXv3HGQMSvHqm_YyxbMIO4oMb7eIzV4U6XtC_GJBz6jVDzn1a7o1ZhBwkACtLfkoSWyCFMevXGq2QJLKSCvl1LuM5dgBGfsMC67-qOJ0NKjucTXXvYU4jzC-aGN64QIfBg0Q3S52B6asw8M4oc8NPVSplJwP86n8wlhXRV9hK5gNUp9VhZXgjkcifnw2yTIezz4f8jax3_W7hpvdTdAiiHlAKt5DNESROD4QbSnN1nb6rPqgUhA.DtsV7hiKsdEv3RblcTjgHQ.c38vZ7MeCA5NjcY2jZj7eq7Jdd8HCqFFYNXBzR3LxtJc_zCtQvzWM-Fs2u-UV8mrl7GJTr0A8PpGc6WuFJPVrReyQl6dQllir9HnGiTVNCQ.g5lJmjLEqEq6jfkocwxJ3w" - }, - "record": { - "CNAME": "usest1.netro.host" - } + "owner": { + "username": "techadvyt", + "discord": "1250701051812642887" + }, + "records": { + "CNAME": "usest1.netro.host" + } } diff --git a/domains/techbot.json b/domains/techbot.json index c4cc49d5f..60fd86268 100644 --- a/domains/techbot.json +++ b/domains/techbot.json @@ -3,7 +3,7 @@ "username": "gunter228", "email": "mq.2024@mail.ru" }, - "record": { + "records": { "A": ["45.137.70.68"] } } diff --git a/domains/techgenius.json b/domains/techgenius.json index 59ea36cf2..ba797fb5a 100644 --- a/domains/techgenius.json +++ b/domains/techgenius.json @@ -3,7 +3,7 @@ "username": "TechGenius7777", "email": "supratikmahato7777@gmail.com" }, - "record": { + "records": { "CNAME": "techgenius-portfolio.pages.dev" } } diff --git a/domains/technofusiontech.json b/domains/technofusiontech.json index 7cb395771..6fb0b1ae3 100644 --- a/domains/technofusiontech.json +++ b/domains/technofusiontech.json @@ -3,7 +3,7 @@ "username": "TechnoFusionTech", "email": "technofusiontech@techie.com" }, - "record": { + "records": { "CNAME": "technofusiontech.github.io" } } diff --git a/domains/technohacker.json b/domains/technohacker.json index 0789bb185..a334e5828 100644 --- a/domains/technohacker.json +++ b/domains/technohacker.json @@ -5,7 +5,7 @@ "username": "Technohacker", "email": "technohacker1995@gmail.com" }, - "record": { + "records": { "CNAME": "technohacker.github.io" } } diff --git a/domains/techside.json b/domains/techside.json index 5452ac9d4..cedf71da0 100644 --- a/domains/techside.json +++ b/domains/techside.json @@ -3,7 +3,7 @@ "username": "techsideofficial", "email": "wienerwolf77@gmail.com" }, - "record": { + "records": { "CNAME": "joysteem.web.app" } } diff --git a/domains/techstarmahesh.json b/domains/techstarmahesh.json index 5b12a60f2..fdd3a0925 100644 --- a/domains/techstarmahesh.json +++ b/domains/techstarmahesh.json @@ -5,7 +5,7 @@ "username": "TechstarMahesh", "email": "mistermaheshsharma@gmail.com" }, - "record": { + "records": { "CNAME": "techstarmahesh.github.io" } } diff --git a/domains/techy.json b/domains/techy.json index 6435c39e6..efa998edb 100644 --- a/domains/techy.json +++ b/domains/techy.json @@ -5,7 +5,7 @@ "username": "techy", "twitter": "tech_dude1" }, - "record": { + "records": { "CNAME": "techy.github.io" } } diff --git a/domains/tee.json b/domains/tee.json index 0a423e506..9020d684e 100644 --- a/domains/tee.json +++ b/domains/tee.json @@ -4,7 +4,7 @@ "email": "mystixmew@gmail.com", "discord": "1050531216589332581" }, - "record": { + "records": { "CNAME": "tayrp.github.io" } } diff --git a/domains/teesh.json b/domains/teesh.json index 1f2c740d6..4929110ce 100644 --- a/domains/teesh.json +++ b/domains/teesh.json @@ -5,7 +5,7 @@ }, "description": "Teesh's Site", "repo": "https://github.com/teesh3rt/teesh3rt.github.io", - "record": { + "records": { "CNAME": "teesh3rt.github.io" } } diff --git a/domains/tejaswa.json b/domains/tejaswa.json index 5ccb9253c..899ff92ca 100644 --- a/domains/tejaswa.json +++ b/domains/tejaswa.json @@ -3,7 +3,7 @@ "username": "tejas-wa", "email": "sa.firein@proton.me" }, - "record": { + "records": { "CNAME": "tejas-wa.github.io" } } diff --git a/domains/tekno.json b/domains/tekno.json index 260e6e745..80f11542a 100644 --- a/domains/tekno.json +++ b/domains/tekno.json @@ -6,7 +6,7 @@ "email": "tekno@hiri.dev", "twitter": "TeknoSenpai" }, - "record": { + "records": { "A": ["173.212.245.116"] } } diff --git a/domains/teknoday.json b/domains/teknoday.json index 8e302bb84..5ae176843 100644 --- a/domains/teknoday.json +++ b/domains/teknoday.json @@ -3,7 +3,7 @@ "username": "teknoku32", "email": "tajam24news@gmail.com" }, - "record": { + "records": { "URL": "https://bidayy.com" } } diff --git a/domains/temelkov.json b/domains/temelkov.json index 023a9b850..d7c53df94 100644 --- a/domains/temelkov.json +++ b/domains/temelkov.json @@ -5,7 +5,7 @@ "username": "Temelkov", "email": "stanislav.temelkov@hotmail.com" }, - "record": { + "records": { "CNAME": "temelkov.github.io" } } diff --git a/domains/ten.json b/domains/ten.json index a625b7418..c097e8491 100644 --- a/domains/ten.json +++ b/domains/ten.json @@ -5,7 +5,7 @@ "username": "TenDRILLL", "discord": "Ten#0010" }, - "record": { + "records": { "CNAME": "tendrilll.github.io" } } diff --git a/domains/tentomasne.json b/domains/tentomasne.json index 1e20af687..431fcd668 100644 --- a/domains/tentomasne.json +++ b/domains/tentomasne.json @@ -2,7 +2,7 @@ "owner": { "username": "jasomtubratu" }, - "record": { + "records": { "CNAME": "tomasdavidik.sk" } } diff --git a/domains/tenvy.json b/domains/tenvy.json index fffb55bcc..ebc69f204 100644 --- a/domains/tenvy.json +++ b/domains/tenvy.json @@ -3,7 +3,7 @@ "username": "Tenvy", "email": "riskykusyon.school@gmail.com" }, - "record": { + "records": { "URL": "https://tenvy.vercel.app" } } diff --git a/domains/teobouvard.json b/domains/teobouvard.json index 1b9060b9c..7ca9ea649 100644 --- a/domains/teobouvard.json +++ b/domains/teobouvard.json @@ -4,7 +4,7 @@ "owner": { "username": "teobouvard" }, - "record": { + "records": { "CNAME": "teobouvard.github.io" } } diff --git a/domains/terminalbmr.json b/domains/terminalbmr.json index 336a1fc63..6d011b573 100644 --- a/domains/terminalbmr.json +++ b/domains/terminalbmr.json @@ -5,7 +5,7 @@ "username": "RAYXSTUDIOZ", "email": "dvappsab@gmail.com" }, - "record": { + "records": { "CNAME": "rayxstudioz.github.io" } } diff --git a/domains/termonoid.json b/domains/termonoid.json index aa459c481..e43399949 100644 --- a/domains/termonoid.json +++ b/domains/termonoid.json @@ -1,12 +1,11 @@ { "description": "Domain for personal server", - "repo": "https://github.com/Termonoid", "owner": { "username": "Termonoid", "email": "termonoid@cumallover.me", "telegram": "termonoid" }, - "record": { + "records": { "A": ["135.181.144.44"] } } diff --git a/domains/terroid.json b/domains/terroid.json index d2864ab76..6db7ec3b3 100644 --- a/domains/terroid.json +++ b/domains/terroid.json @@ -5,7 +5,7 @@ "username": "skandabhairava", "email": "skandabhairava@gmail.com" }, - "record": { + "records": { "CNAME": "skandabhairava.github.io" } } diff --git a/domains/terry.json b/domains/terry.json new file mode 100644 index 000000000..12f0dd0a8 --- /dev/null +++ b/domains/terry.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyoterry", + "email": "theterrykim@gmail.com" + }, + "records": { + "CNAME": "realyoterry.vercel.app" + } +} diff --git a/domains/test.chiragnahata.json b/domains/test.chiragnahata.json index 726befd50..4dcdef8bf 100644 --- a/domains/test.chiragnahata.json +++ b/domains/test.chiragnahata.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/test.cutedog5695.json b/domains/test.cutedog5695.json index a7f05a227..d3dcbab4d 100644 --- a/domains/test.cutedog5695.json +++ b/domains/test.cutedog5695.json @@ -4,7 +4,7 @@ "discord": "716306888492318790", "twitter": "iostpa" }, - "record": { + "records": { "CNAME": "glistening-faloodeh-84f4b1.netlify.app" } } diff --git a/domains/test.trung.json b/domains/test.trung.json index b99730c4e..488318c9f 100644 --- a/domains/test.trung.json +++ b/domains/test.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/testluxxy.json b/domains/testluxxy.json index a3c84983f..bc3468121 100644 --- a/domains/testluxxy.json +++ b/domains/testluxxy.json @@ -3,7 +3,7 @@ "username": "Luxxy-GF", "email": "deniedaddicted@gmail.com" }, - "record": { + "records": { "A": ["178.33.110.212"] } } diff --git a/domains/tetris.vi0leta.json b/domains/tetris.vi0leta.json index def51632a..5866567c0 100644 --- a/domains/tetris.vi0leta.json +++ b/domains/tetris.vi0leta.json @@ -3,7 +3,7 @@ "username": "vi0letadev", "email": "vi0leta@riseup.net" }, - "record": { + "records": { "A": ["37.27.4.76"] } } diff --git a/domains/texh.json b/domains/texh.json index b41ddb98b..1b10a4ea4 100644 --- a/domains/texh.json +++ b/domains/texh.json @@ -3,7 +3,7 @@ "username": "Techtonic709", "email": "techtonic709@gmail.com" }, - "record": { - "MX": ["mx1.improvmx.com"] + "records": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/texnogrand-dev.json b/domains/texnogrand-dev.json index 5b8c69bb0..8bcddb1e5 100644 --- a/domains/texnogrand-dev.json +++ b/domains/texnogrand-dev.json @@ -3,7 +3,7 @@ "username": "muhamamdyusuf-kurbonov", "email": "muhammadyusuf.kurbonov2002@gmail.com" }, - "record": { + "records": { "A": ["213.199.33.74"] } } diff --git a/domains/tf.json b/domains/tf.json index c3e6c7971..15ff25291 100644 --- a/domains/tf.json +++ b/domains/tf.json @@ -1,9 +1,8 @@ { "owner": { - "username": "WaspZix", - "email": "160319648+WaspZix@users.noreply.github.com" + "username": "WaspZix" }, - "record": { + "records": { "CNAME": "thefirst.glitch.me" } } diff --git a/domains/th3.json b/domains/th3.json index c5258bdbe..fe1f535a9 100644 --- a/domains/th3.json +++ b/domains/th3.json @@ -5,7 +5,7 @@ "username": "Th3-C0der", "email": "Th3Drag8N@proton.me" }, - "record": { + "records": { "CNAME": "th3-c0der.github.io" } } diff --git a/domains/thabresh.json b/domains/thabresh.json index e5b9a0dcd..4e6ac98bc 100644 --- a/domains/thabresh.json +++ b/domains/thabresh.json @@ -3,7 +3,7 @@ "username": "Thabresh", "email": "thabaresh.syed@gmail.com" }, - "record": { + "records": { "URL": "https://www.thabresh.me" } } diff --git a/domains/thai.json b/domains/thai.json index 05a5f75be..ef8945600 100644 --- a/domains/thai.json +++ b/domains/thai.json @@ -3,7 +3,7 @@ "username": "CallMeIAmTDF", "email": "thai0203966@nuce.edu.vn" }, - "record": { + "records": { "CNAME": "4mhcau20.up.railway.app" } } diff --git a/domains/thaidang.json b/domains/thaidang.json index 55b58bae2..4764ec2ff 100644 --- a/domains/thaidang.json +++ b/domains/thaidang.json @@ -3,7 +3,7 @@ "username": "CallMeIAmTDF", "email": "thai0203966@nuce.edu.vn" }, - "record": { + "records": { "CNAME": "pridysay.up.railway.app" } } diff --git a/domains/thaihung.json b/domains/thaihung.json index 043acd391..45f9f4e9c 100644 --- a/domains/thaihung.json +++ b/domains/thaihung.json @@ -4,13 +4,8 @@ "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" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/thakuraman.json b/domains/thakuraman.json index 89cfff114..467676fdd 100644 --- a/domains/thakuraman.json +++ b/domains/thakuraman.json @@ -4,7 +4,7 @@ "email": "amant8425@gmail.com", "discord": "523813766295715851" }, - "record": { + "records": { "CNAME": "aman7thakurr.github.io" } } diff --git a/domains/thamizh.json b/domains/thamizh.json index cc46ef255..e0095f575 100644 --- a/domains/thamizh.json +++ b/domains/thamizh.json @@ -6,7 +6,7 @@ "email": "venthank88@gmail.com", "twitter": "k_thamizhventhu" }, - "record": { + "records": { "CNAME": "thisisthamizh.github.io" } } diff --git a/domains/thanawat.json b/domains/thanawat.json index f5a7d881c..76d87c2cd 100644 --- a/domains/thanawat.json +++ b/domains/thanawat.json @@ -4,7 +4,7 @@ "email": "tanawattawillha@gmail.com", "discord": "803249368533696512" }, - "record": { + "records": { "CNAME": "thanawatttt.github.io" } } diff --git a/domains/thanbv1510.json b/domains/thanbv1510.json index 5aaf5ff3c..a21fd409c 100644 --- a/domains/thanbv1510.json +++ b/domains/thanbv1510.json @@ -6,7 +6,7 @@ "email": "thanbv1510@gmail.com", "twitter": "thanbv1510" }, - "record": { + "records": { "CNAME": "thanbv1510.github.io" } } diff --git a/domains/thanh-sang.json b/domains/thanh-sang.json new file mode 100644 index 000000000..26956c3fe --- /dev/null +++ b/domains/thanh-sang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sanG-github", + "email": "sanghuynh20000@gmail.com" + }, + "records": { + "CNAME": "portfolio-logan.netlify.app" + } +} diff --git a/domains/tharindu.json b/domains/tharindu.json index 715d21f7c..2a23f4fed 100644 --- a/domains/tharindu.json +++ b/domains/tharindu.json @@ -5,7 +5,7 @@ "username": "tharindusathis", "email": "tharindu.sathis@gmail.com" }, - "record": { + "records": { "CNAME": "tharindusathis.github.io" } } diff --git a/domains/tharindudarshana.json b/domains/tharindudarshana.json index 1f0ae2fef..da85e37f0 100644 --- a/domains/tharindudarshana.json +++ b/domains/tharindudarshana.json @@ -3,7 +3,7 @@ "username": "1234Tharindu", "email": "dehipitiya055@gmail.com" }, - "record": { + "records": { "CNAME": "1234tharindu.github.io" } } diff --git a/domains/tharinduj.json b/domains/tharinduj.json index 3ed541681..5d938945c 100644 --- a/domains/tharinduj.json +++ b/domains/tharinduj.json @@ -3,7 +3,7 @@ "username": "tharindudj", "email": "tharindujayakody21@gmail.com" }, - "record": { + "records": { "URL": "https://tharindujayakody.me" } } diff --git a/domains/tharukrenuja.json b/domains/tharukrenuja.json index 90f9db265..c88e9e71f 100644 --- a/domains/tharukrenuja.json +++ b/domains/tharukrenuja.json @@ -6,7 +6,7 @@ "email": "contact.tharukrenuja@gmail.com", "twitter": "TRenuja" }, - "record": { + "records": { "CNAME": "tharukrenuja.github.io" } } diff --git a/domains/thatkoslz.json b/domains/thatkoslz.json index d1001eed9..487a36bfc 100644 --- a/domains/thatkoslz.json +++ b/domains/thatkoslz.json @@ -3,7 +3,7 @@ "username": "iakzs", "email": "iakzs@protonmail.com" }, - "record": { + "records": { "URL": "https://koslz.com/" } } diff --git a/domains/thatoddshade.json b/domains/thatoddshade.json index 4df230f86..0e5f46760 100644 --- a/domains/thatoddshade.json +++ b/domains/thatoddshade.json @@ -5,7 +5,7 @@ "username": "thatoddshade", "email": "thatoddshade+contact@proton.me" }, - "record": { + "records": { "CNAME": "thatoddshade.github.io" } } diff --git a/domains/thatxiaoheicat.json b/domains/thatxiaoheicat.json new file mode 100644 index 000000000..38f99db5f --- /dev/null +++ b/domains/thatxiaoheicat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xiaoheiCat", + "email": "is-a-dev-domain@thatxiaoheicat.blog" + }, + "records": { + "CNAME": "xiaoheicat-security-blog-frontend.pages.dev" + } +} diff --git a/domains/thavirak.json b/domains/thavirak.json new file mode 100644 index 000000000..6b1efc590 --- /dev/null +++ b/domains/thavirak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thavirak", + "email": "thavirak@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/the-green-light.json b/domains/the-green-light.json deleted file mode 100644 index bec4a9ac0..000000000 --- a/domains/the-green-light.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Senky-Dev", - "email": "agarwala.keshav10@gmail.com" - }, - "record": { - "CNAME": "the-green-light.pages.dev" - } -} diff --git a/domains/theamazing0.json b/domains/theamazing0.json index 73d82c14e..72e862fab 100644 --- a/domains/theamazing0.json +++ b/domains/theamazing0.json @@ -3,7 +3,7 @@ "username": "theamazing0", "email": "ksamvid@gmail.com" }, - "record": { + "records": { "URL": "https://git.projectsegfau.lt/theamazing0" } } diff --git a/domains/theavian.json b/domains/theavian.json index fa2d33050..15c801864 100644 --- a/domains/theavian.json +++ b/domains/theavian.json @@ -6,7 +6,7 @@ "email": "avicrafty8@gmail.com", "twitter": "Avian_studios" }, - "record": { + "records": { "CNAME": "theavian.github.io" } } diff --git a/domains/thecode-breaker.json b/domains/thecode-breaker.json index b174bb63a..6e60ced4f 100644 --- a/domains/thecode-breaker.json +++ b/domains/thecode-breaker.json @@ -5,7 +5,7 @@ "username": "theCode-Breaker", "email": "theCodeBreaker.dev@gmail.com" }, - "record": { + "records": { "CNAME": "thecode-breaker.github.io" } } diff --git a/domains/thecode764.json b/domains/thecode764.json index a7008e580..e2d9ca867 100644 --- a/domains/thecode764.json +++ b/domains/thecode764.json @@ -3,7 +3,7 @@ "username": "Thecode764", "email": "artin962354@proton.me" }, - "record": { + "records": { "URL": "https://thecode764.github.io" } } diff --git a/domains/thecommandcat.json b/domains/thecommandcat.json new file mode 100644 index 000000000..f21b49f91 --- /dev/null +++ b/domains/thecommandcat.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/TheCommandCat/TheCommandCat.github.io", + "owner": { + "username": "TheCommandCat", + "email": "bhrtkhvji@gmail.com" + }, + "records": { + "CNAME": "thecommandcat.github.io" + } +} diff --git a/domains/theconcepteur.json b/domains/theconcepteur.json index 375b2adf3..44a225063 100644 --- a/domains/theconcepteur.json +++ b/domains/theconcepteur.json @@ -3,7 +3,7 @@ "username": "th3conc3pt3ur", "email": "conceptordev@gmail.com" }, - "record": { + "records": { "A": ["37.187.6.109"] } } diff --git a/domains/thedt.json b/domains/thedt.json index ca92d70ce..c426faa94 100644 --- a/domains/thedt.json +++ b/domains/thedt.json @@ -3,7 +3,7 @@ "username": "thedtvn", "email": "duongtuan30306@gmail.com" }, - "record": { - "CNAME": "thedt-portfolio.pages.dev" + "records": { + "CNAME": "thedthomepage.pages.dev" } } diff --git a/domains/thegloriousduck.json b/domains/thegloriousduck.json index 6cb2a9f3b..1e9b0e936 100644 --- a/domains/thegloriousduck.json +++ b/domains/thegloriousduck.json @@ -5,7 +5,7 @@ "username": "TheGloriousDuck", "email": "thegloriousduck@protonmail.com" }, - "record": { + "records": { "CNAME": "thegloriousduck.github.io" } } diff --git a/domains/thegoofy-guy.json b/domains/thegoofy-guy.json new file mode 100644 index 000000000..0503d9a31 --- /dev/null +++ b/domains/thegoofy-guy.json @@ -0,0 +1,10 @@ +{ + "description": "My personal portfolio website", + "owner": { + "username": "thegoofy-dev", + "email": "pankajtyagi1601@gmail.com" + }, + "records": { + "CNAME": "pankajtyagi-portfolio.vercel.app" + } +} diff --git a/domains/thehackerdude1083.json b/domains/thehackerdude1083.json index 02b75fbd7..606e0bfe9 100644 --- a/domains/thehackerdude1083.json +++ b/domains/thehackerdude1083.json @@ -5,7 +5,7 @@ "username": "TheHackerDude1083", "email": "shaheeransari57@gmail.com" }, - "record": { + "records": { "CNAME": "thehackerdude1083.github.io" } } diff --git a/domains/theharry.json b/domains/theharry.json index 1a928ff59..9ccbeb366 100644 --- a/domains/theharry.json +++ b/domains/theharry.json @@ -4,7 +4,7 @@ "email": "aceharry16@gmail.com", "discord": "1229076684066783252" }, - "record": { + "records": { "A": ["69.197.135.202"] } } diff --git a/domains/theheavy.json b/domains/theheavy.json index 5d4eccd22..dda6c9e2e 100644 --- a/domains/theheavy.json +++ b/domains/theheavy.json @@ -1,10 +1,9 @@ { "owner": { "username": "PyNexus-PYPI", - "discord": "1266113644643614803", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q0hi0eXIZoyV_qha54TNehZhpAbeSyzQI1OIT2wjQvArwviwVaqn4AKQj4LWMxDJFDu7KgAL-k336uR2UF26HMQ1h3BhR9t8xq_UdDJLrNv9HOyxBzLrVWZp3yveH__Cli62iKkBzJCu-0q2IbThvnZEhyyELgHBhXMot5eqWpm5vE_MGICc50lcz7vZNDPJTEGiie6bLdbvNPfxiXVugjhm7WW_tNoSheHSSOGr3asBTLFpl_46d-KGH07uKCc_wGgn9rz26qY0dwhaqTRDmq1lWn4_yuknefBHVw51vpk_C-7NA0lMp711CfPeqw0fKQT5n-QCSp4JfyYgXJkQhg.S6gJHj5xinUubawSe5bbEg.HR9U7iv7mJJAXQ1u5U88vuT0W9XbCd74QpxNl9Swn0QZ7DZs4foP8VbwLE7-L1EmEog8VSHnVWnrJO3SY06DZscCELHocxxPrOpe7cTcpomW3Sx4_fItRqIWV4OWl1Lr.qqnRh7IvZACgHMU5bwXM3g" + "discord": "1266113644643614803" }, - "record": { + "records": { "CNAME": "pynexus-pypi.github.io" } } diff --git a/domains/thehuytong.json b/domains/thehuytong.json index 5099d925f..29cab2dff 100644 --- a/domains/thehuytong.json +++ b/domains/thehuytong.json @@ -3,7 +3,7 @@ "username": "thehuytong", "email": "tongnguyen.hahuy@gmail.com" }, - "record": { + "records": { "CNAME": "thehuytong.github.io" } } diff --git a/domains/thejus-m.json b/domains/thejus-m.json index dc98660f8..5b1f6094a 100644 --- a/domains/thejus-m.json +++ b/domains/thejus-m.json @@ -3,7 +3,7 @@ "username": "Thejus-M", "email": "github@tigerraw22.anonaddy.com" }, - "record": { + "records": { "CNAME": "urlit-production.up.railway.app" } } diff --git a/domains/thenoppy12.json b/domains/thenoppy12.json index bca17f9f9..876ba6661 100644 --- a/domains/thenoppy12.json +++ b/domains/thenoppy12.json @@ -6,7 +6,7 @@ "email": "lengochuykiengiang@gmail.com", "discord": ".thenoppy12" }, - "record": { + "records": { "CNAME": "thenoppy12.github.io" } } diff --git a/domains/theo.json b/domains/theo.json index 5efe7f504..15289acb7 100644 --- a/domains/theo.json +++ b/domains/theo.json @@ -6,7 +6,7 @@ "email": "teodor2k8@gmail.com", "discord": "691552610519613440" }, - "record": { + "records": { "CNAME": "drtheodor.github.io" } } diff --git a/domains/thepersonalsite.json b/domains/thepersonalsite.json index 5bb80550d..ddfbd6dc9 100644 --- a/domains/thepersonalsite.json +++ b/domains/thepersonalsite.json @@ -3,7 +3,7 @@ "username": "JesseHoekema", "email": "jessehoekema@icloud.com" }, - "record": { + "records": { "CNAME": "jessehoekema.github.io" } } diff --git a/domains/theprofessionalbinbag.json b/domains/theprofessionalbinbag.json index ba13924a1..bd3acc8d6 100644 --- a/domains/theprofessionalbinbag.json +++ b/domains/theprofessionalbinbag.json @@ -3,7 +3,7 @@ "username": "Soapiexoxoxo", "email": "ellieroberts240506@outlook.com" }, - "record": { + "records": { "URL": "https://free-5118674.webadorsite.com/" } } diff --git a/domains/thequackyduck.json b/domains/thequackyduck.json index d483c0df8..82b66b145 100644 --- a/domains/thequackyduck.json +++ b/domains/thequackyduck.json @@ -5,7 +5,7 @@ "username": "thequackyduck", "email": "zcodezt@gmail.com" }, - "record": { + "records": { "CNAME": "thequackyduck.github.io" } } diff --git a/domains/theresonance.json b/domains/theresonance.json index 3d4d45094..915668dbe 100644 --- a/domains/theresonance.json +++ b/domains/theresonance.json @@ -3,7 +3,7 @@ "username": "Maia313", "email": "medeea@rocketmail.com" }, - "record": { + "records": { "CNAME": "theresonance.com" } } diff --git a/domains/therookiecoder.json b/domains/therookiecoder.json index 3dec24550..4415d81cd 100644 --- a/domains/therookiecoder.json +++ b/domains/therookiecoder.json @@ -1,10 +1,12 @@ { + "description": "My personal website", + "repo": "https://github.com/theRookieCoder/theRookieCoder.github.io", "owner": { "username": "theRookieCoder", "email": "ileshkt@gmail.com", - "discord": "theRookieCoder#1287" + "discord": "therookiecoder" }, - "record": { - "URL": "https://github.com/theRookieCoder" + "records": { + "CNAME": "therookiecoder.github.io" } } diff --git a/domains/thesanju.json b/domains/thesanju.json index eae742e62..52436fbcb 100644 --- a/domains/thesanju.json +++ b/domains/thesanju.json @@ -6,7 +6,7 @@ "email": "sanjayjr1official@gmail.com", "twitter": "Sanjay69__" }, - "record": { + "records": { "CNAME": "thesanju.github.io" } } diff --git a/domains/thesct22.json b/domains/thesct22.json index 0019d7a83..538fd8836 100644 --- a/domains/thesct22.json +++ b/domains/thesct22.json @@ -3,7 +3,7 @@ "username": "thesct22", "email": "sharathct22@gmail.com" }, - "record": { + "records": { "CNAME": "thesct22.github.io" } } diff --git a/domains/thesonofdevilhunter.json b/domains/thesonofdevilhunter.json index 6962f35bc..983880bca 100644 --- a/domains/thesonofdevilhunter.json +++ b/domains/thesonofdevilhunter.json @@ -3,7 +3,7 @@ "username": "NerdsForGaming", "email": "thesonofdevilhunter1@gmail.com" }, - "record": { + "records": { "CNAME": "nerdsforgaming.github.io" } } diff --git a/domains/thesyed.json b/domains/thesyed.json index 7d3cb51d5..691a57390 100644 --- a/domains/thesyed.json +++ b/domains/thesyed.json @@ -5,7 +5,7 @@ "username": "AlephaNull", "email": "ay.syed@pm.me" }, - "record": { + "records": { "CNAME": "alephanull.github.io" } } diff --git a/domains/thet3o.json b/domains/thet3o.json index 63ae1d714..3b7870f2d 100644 --- a/domains/thet3o.json +++ b/domains/thet3o.json @@ -3,7 +3,7 @@ "username": "thet3o", "email": "thet3o@yahoo.com" }, - "record": { + "records": { "MX": ["mx.mailtie.com"] } } diff --git a/domains/thetechnikfreak.json b/domains/thetechnikfreak.json index a3cae969e..a9b32249a 100644 --- a/domains/thetechnikfreak.json +++ b/domains/thetechnikfreak.json @@ -3,7 +3,7 @@ "username": "thetechnikfreak", "discord": "TheTechnikFreak#3314" }, - "record": { + "records": { "A": ["52.21.33.16", "18.184.197.212"], "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"] } diff --git a/domains/thetommylong.json b/domains/thetommylong.json new file mode 100644 index 000000000..49292fc38 --- /dev/null +++ b/domains/thetommylong.json @@ -0,0 +1,10 @@ +{ + "description": "Currently used for portfolio website and SMTP mail server", + "owner": { + "username": "TheTommylongIsHeree", + "discord": "thetommylong" + }, + "records": { + "CNAME": "cool-sorbet-8aff60.netlify.app" + } +} diff --git a/domains/theveryheavy.json b/domains/theveryheavy.json index 17a1cc7e7..86cb91e1c 100644 --- a/domains/theveryheavy.json +++ b/domains/theveryheavy.json @@ -1,24 +1,15 @@ { - "owner": { - "username": "theveryheavy", - "discord": "1266113644643614803", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.suIFFV54UOL9Uwa0noRId59uf3EFtDxH9ExQfDv0RMETAGRUfXgK5h68nPm94oBHBVdTrgqlxB1prBpZsoDRhNJnowBjtJL8NP6i40uChltcaAUMsL76kHFlx9I-HojhoHAg6BY3Kt3iQRkMuwHFmJLFwNBCEgK45IlxiBQQ_Of_LW_C7jfp_kqQhrXggqdZYLwKUvsp-JPXCwPmny7IlYF5T6OIhEmjkj2QWEjyqPj8MhvZOpB5WI5nxsxwXKVDvdQysWDm8UuvKThgoY73yoOsKMV6-8RLSIPzSA--hSz8OOzao-YOXMlropqHx9SSQKF2gbg8Jt0la-0o77OYOw._JRnIF_by82ZehfCV5YDgg.O8_d7esMCv2vadIOAxU3oP2njMeEUmuHn7Ud46KZakXuzA8WBZntj3rYa7PZYYDf4sAFwvVCE3O5sdBJsb27Pfbx4G2NjUd04t2tGVKvI6U.U3UdmUku7uVh1MQkFfHOyg" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.simplelogin.co", - "mx2.simplelogin.co" - ], - "TXT": [ - "sl-verification=annotwbbqjhagomrimwzthorstvzhw", - "v=spf1 include:simplelogin.co ~all", - "v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s" - ] - } + "owner": { + "username": "theveryheavy", + "discord": "1266113644643614803" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"], + "TXT": [ + "sl-verification=annotwbbqjhagomrimwzthorstvzhw", + "v=spf1 include:simplelogin.co ~all", + "v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s" + ] + } } diff --git a/domains/thewickedkarma.json b/domains/thewickedkarma.json index 1ce2d2db2..5edc56025 100644 --- a/domains/thewickedkarma.json +++ b/domains/thewickedkarma.json @@ -5,7 +5,7 @@ "username": "thewickedkarma", "email": "thewickedkarma@gmail.com" }, - "record": { + "records": { "CNAME": "thewickedkarma.github.io" } } diff --git a/domains/thewonglife.json b/domains/thewonglife.json index a223ee952..982e3ad87 100644 --- a/domains/thewonglife.json +++ b/domains/thewonglife.json @@ -6,7 +6,7 @@ "email": "nwong27@illinois.edu", "twitter": "The_Wong_Life" }, - "record": { + "records": { "CNAME": "thewonglife.github.io" } } diff --git a/domains/thiago.json b/domains/thiago.json index 015231128..ae6577abe 100644 --- a/domains/thiago.json +++ b/domains/thiago.json @@ -7,7 +7,7 @@ "twitter": "ThiagoSTeixeir4", "discord": "Thiago S Teixeira#0657" }, - "record": { + "records": { "CNAME": "teixeirazeus.github.io" } } diff --git a/domains/thiagomarsili.json b/domains/thiagomarsili.json index e541d8520..f89d5f73d 100644 --- a/domains/thiagomarsili.json +++ b/domains/thiagomarsili.json @@ -5,7 +5,7 @@ "username": "Thiago-Marsili", "email": "thihoma@gmail.com" }, - "record": { + "records": { "CNAME": "thiago-marsili.github.io" } } diff --git a/domains/thiagotukozaki.json b/domains/thiagotukozaki.json new file mode 100644 index 000000000..452cd622b --- /dev/null +++ b/domains/thiagotukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TukozakiT", + "email": "contato.thiagoeiji@gmail.com" + }, + "records": { + "CNAME": "thiagotukozaki.vercel.app" + } +} diff --git a/domains/thiaguinho.json b/domains/thiaguinho.json index fdd2af922..5178c11a0 100644 --- a/domains/thiaguinho.json +++ b/domains/thiaguinho.json @@ -3,7 +3,7 @@ "username": "HomeamdAfK", "email": "homeamd@hotmail.com" }, - "record": { + "records": { "CNAME": "umbrel.minotaur-enigmatic.ts.net" } } diff --git a/domains/thien.json b/domains/thien.json new file mode 100644 index 000000000..36961e30b --- /dev/null +++ b/domains/thien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thiennguyen93", + "email": "hi@thiennguyen.dev" + }, + "records": { + "CNAME": "thiennguyen93.github.io" + } +} diff --git a/domains/thiennb.json b/domains/thiennb.json index a87185c69..43b282de7 100644 --- a/domains/thiennb.json +++ b/domains/thiennb.json @@ -1,10 +1,9 @@ { "owner": { "username": "win123139", - "discord": "544548892327411734", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pMSTKQk111zQJxPTcuQxQHByoZLjTTgd3kxGT89nNiSzF-s8uXFJ0bVZMqzQ0pn2EQmG7DF9906Ndni5DCObhjm2k8R59B5WYWDwarqOJmjDUwTFRutMOYjwf90E4E7FXodCsVmck2zQejU3MeOrfzuUf_B7glKq9pkdwt7gRUV9KBIkT1a6Q-IkrrvFT8DmIJFq70H4DLdWDW7KjeI9k7XHuEN3WYKcvbUknCZsAPChgpje15CqFxS_bJHjwtv7Vjn3pUyfLZ9Pyt71RCBdSBeQBMuhvF48h6To2pRv1SwBBgD4iutO3n4zb0Q9viprDtYczzGnE3ABhsg2Gyf0GQ.yv2s62qPTuE9h2b91ptGsA.AtdgyIGHNHkQdX93UYf6nuCtacmpwaAee7vm1pm_WyB2SgBUikZPxHt1C9WOqR3_zdK0XdZsJF4QSTNXhsczMybfRSOsRjxD7TtiYBmi5sM.yRvYKeuOqf-szZ5KP7ejXg" + "discord": "544548892327411734" }, - "record": { + "records": { "CNAME": "resume-next.onrender.com" } } diff --git a/domains/thikhathali.json b/domains/thikhathali.json index ee33d6291..2fbda25f6 100644 --- a/domains/thikhathali.json +++ b/domains/thikhathali.json @@ -3,7 +3,7 @@ "username": "Thikhathali", "email": "thikhamataboge@gmail.com" }, - "record": { + "records": { "CNAME": "thikhathali.github.io" } } diff --git a/domains/thinhnguyen.json b/domains/thinhnguyen.json new file mode 100644 index 000000000..b26e6617a --- /dev/null +++ b/domains/thinhnguyen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thinhdnn", + "email": "nguyenvanthinh.dnn@gmail.com" + }, + "records": { + "A": ["152.69.196.244"] + } +} diff --git a/domains/thiomains.json b/domains/thiomains.json index bb367ffec..c09efc30c 100644 --- a/domains/thiomains.json +++ b/domains/thiomains.json @@ -3,7 +3,7 @@ "username": "onem0", "email": "kremersneo0@gmail.com" }, - "record": { + "records": { "URL": "http://bindergamer.de" } } diff --git a/domains/this-guy.json b/domains/this-guy.json index 935395343..a361856a7 100644 --- a/domains/this-guy.json +++ b/domains/this-guy.json @@ -4,7 +4,7 @@ "username": "ochotadariusz", "email": "ochota.dariusz@gmail.com" }, - "record": { + "records": { "CNAME": "ochotadariusz.github.io" } } diff --git a/domains/thisisepicdomain.json b/domains/thisisepicdomain.json index 87287ee16..d84c85813 100644 --- a/domains/thisisepicdomain.json +++ b/domains/thisisepicdomain.json @@ -1,10 +1,9 @@ { "owner": { "username": "Dgegesg", - "discord": "652903829225865247", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.prxghnQMVJHUKOaffwNXwM9EfrhY_-Qa1bjZuOg1z4JcUp9sX5jOecoaQByLe9Yk65_K-AwyJ5tA9-tFnwr9t5Fx31kAA9vjsQ3vVKd_fLvRMLZPlqXa4C3iLsVoB1DfGXt_MCM6gBTVQn4QaFrbcvJfSJDJubYHDgcEG_0pZ0i5DqPwGmmoKnwuWydRB2g36b0ELw1LL_HfAV5GLzwOXguNAK2oVeqqtGp-63a0cbZj2QSvwdmX4OQhZGtQiMEpfikk0Nj8jMyPJ35ZuqTIvyvlDEgcm2ugT6lrwAUbzA_oKy0SYJe5T0ADrH5laPuvrGdFkPgpXSrujwd18yzEJg.jtS76jpOrdsVbnKjkR-ysw.C5zqruZf3gQA7-hUjFd1yLmTpWoOsITcbmJW09JKUDnk-zw6WCLrze1dj6Cf9vdGXcuJoplqRkMNxUcTwfHsa9LsArkYPZtVqwXMoRtzUrA.ltbt1tSvQu7E2L04S0zMUw" + "discord": "652903829225865247" }, - "record": { + "records": { "CNAME": "dwqdwqd.serv00.net" } } diff --git a/domains/thisiskeanyvy.json b/domains/thisiskeanyvy.json index 99bd248eb..b9b9187e5 100644 --- a/domains/thisiskeanyvy.json +++ b/domains/thisiskeanyvy.json @@ -3,7 +3,7 @@ "username": "thisiskeanyvy", "email": "notifkeanyvy@gmail.com" }, - "record": { + "records": { "CNAME": "thisiskeanyvy.pages.dev" } } diff --git a/domains/thomas-shelby.json b/domains/thomas-shelby.json index d27c39eea..902bbce3c 100644 --- a/domains/thomas-shelby.json +++ b/domains/thomas-shelby.json @@ -6,7 +6,7 @@ "email": "prbhanu1718@gmil.com", "twitter": "prreddy05413731" }, - "record": { + "records": { "CNAME": "prbhanu.github.io" } } diff --git a/domains/thomas.json b/domains/thomas.json index 28cefa250..a5cce2d0b 100644 --- a/domains/thomas.json +++ b/domains/thomas.json @@ -6,7 +6,7 @@ "email": "thomas.vergne.contact@gmail.com", "twitter": "thomasvergne_" }, - "record": { + "records": { "CNAME": "thomasvergne.github.io" } } diff --git a/domains/thomash.json b/domains/thomash.json index 32771ebf6..7938c11ad 100644 --- a/domains/thomash.json +++ b/domains/thomash.json @@ -4,7 +4,7 @@ "username": "Tomax47", "email": "tammam744@gmail.com" }, - "record": { + "records": { "URL": "https://portfolio-rzb0.onrender.com" } } diff --git a/domains/thorgathis.json b/domains/thorgathis.json index 4680880de..2c0534571 100644 --- a/domains/thorgathis.json +++ b/domains/thorgathis.json @@ -5,7 +5,7 @@ "username": "Thorgathis", "email": "thorgathis.dev@gmail.com" }, - "record": { + "records": { "CNAME": "thorgathis.github.io" } } diff --git a/domains/thorito.json b/domains/thorito.json new file mode 100644 index 000000000..7f4f3fb23 --- /dev/null +++ b/domains/thorito.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/thorito/thorito.github.io", + "owner": { + "username": "thorito", + "email": "victor.villar.misa@gmail.com" + }, + "records": { + "CNAME": "thorito.github.io" + } +} diff --git a/domains/thuc.json b/domains/thuc.json new file mode 100644 index 000000000..0375e2328 --- /dev/null +++ b/domains/thuc.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "thucngyyen" + }, + "records": { + "CNAME": "thucngyyen.github.io" + } +} diff --git a/domains/thund3r.json b/domains/thund3r.json index 87d348127..fbf0f609c 100644 --- a/domains/thund3r.json +++ b/domains/thund3r.json @@ -3,7 +3,7 @@ "username": "Harsh06-afk", "email": "hvs8380@gmail.com" }, - "record": { + "records": { "CNAME": "harsh06-afk.github.io" } } diff --git a/domains/ti3r.json b/domains/ti3r.json new file mode 100644 index 000000000..43edf669c --- /dev/null +++ b/domains/ti3r.json @@ -0,0 +1,10 @@ +{ + "description": "Ti3r's Dev Portfolio", + "owner": { + "username": "ti3r", + "email": "ti3r.bubblenet@gmail.com" + }, + "records": { + "CNAME": "ti3r.github.io" + } +} diff --git a/domains/tibor.json b/domains/tibor.json index 6b30c27e7..c52ae527c 100644 --- a/domains/tibor.json +++ b/domains/tibor.json @@ -5,7 +5,7 @@ "username": "tibor309", "email": "haxite@proton.me" }, - "record": { + "records": { "CNAME": "tibor309.github.io" } } diff --git a/domains/ticketkit.json b/domains/ticketkit.json index 4a5f37e33..75a61e36d 100644 --- a/domains/ticketkit.json +++ b/domains/ticketkit.json @@ -3,7 +3,7 @@ "username": "blaze-099", "discord": "1186691290759434350" }, - "record": { + "records": { "CNAME": "ticketsx.netlify.app" } } diff --git a/domains/tictactoe.amaankazi.json b/domains/tictactoe.amaankazi.json index d36508eb4..153873879 100644 --- a/domains/tictactoe.amaankazi.json +++ b/domains/tictactoe.amaankazi.json @@ -5,7 +5,7 @@ "username": "Amaan-Kazi", "email": "amaankazi1793@gmail.com" }, - "record": { + "records": { "CNAME": "tictactoe-amaankazi.pages.dev" } } diff --git a/domains/tien.json b/domains/tien.json index 30d5db640..e15820fe3 100644 --- a/domains/tien.json +++ b/domains/tien.json @@ -5,7 +5,7 @@ "username": "TonyN678", "email": "tientonybest2006@gmail.com" }, - "record": { + "records": { "CNAME": "tonyn678.github.io" } } diff --git a/domains/tienanh109.json b/domains/tienanh109.json index f305607c0..fa70f6b94 100644 --- a/domains/tienanh109.json +++ b/domains/tienanh109.json @@ -1,10 +1,9 @@ { "owner": { "username": "tienanh109", - "discord": "835382592198410310", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Lqj0olJGqYoV1vIhbjVwI6zkakO-MvyGqGDhftRohIILV6wLUd_rOI_UdMQuwkS_XX_iE3YW8y1mh7ft0S3C7kBHL_nHI_wJp8tsiWTZXYyUtjPCaMCm5Qtgf73_u9DW2GAhhcLSIWVmoA8vz5n58XIDA6a7hLI4O8vVmoGIjLy1wFx1qLdqM_Ln8T-o3OUTw5KxPZTCzlurbkd7cO-LsI4DyM3Hpo4YvEi7WwEHqFlGyUJ70OtjGlHQzm-gKG6BtT4EQmQZ_e27IKYnY3HLQBEIY0nAmy1B_syEgeu5s8JmoYwpbP3hnl79LzPebzTRFrwAA2i5s9FdG5aehW9zPQ.GkoYvRKA5lYLM7CVh4-vmg.jCVfsa6h3D0JuOtipDBpSq_2YyqyQytyfCsNnvbzvYQRW8H-wCsX6thhfFtba4bhfF8lsRsaqamuExTfFkFOIcHjPQqydxObv3Hd9VkRizo.Sge_zUOtqkDe7vBOcaJdLA" + "discord": "835382592198410310" }, - "record": { + "records": { "CNAME": "tienanh109.pages.dev" } } diff --git a/domains/miti.json b/domains/tiennm99.json similarity index 66% rename from domains/miti.json rename to domains/tiennm99.json index f09c62708..de93ca6f6 100644 --- a/domains/miti.json +++ b/domains/tiennm99.json @@ -3,7 +3,7 @@ "username": "tiennm99", "email": "minhtienit99@gmail.com" }, - "record": { - "CNAME": "miti.eu.org" + "records": { + "CNAME": "miti99.pages.dev" } } diff --git a/domains/tientiny.json b/domains/tientiny.json index 115fad113..9e70bd4ef 100644 --- a/domains/tientiny.json +++ b/domains/tientiny.json @@ -3,7 +3,7 @@ "username": "Pdmthong05", "email": "pdmthong05@protonmail.com" }, - "record": { + "records": { "A": ["198.91.81.11"] } } diff --git a/domains/tiep-dv.json b/domains/tiep-dv.json new file mode 100644 index 000000000..f54cd5a0f --- /dev/null +++ b/domains/tiep-dv.json @@ -0,0 +1,11 @@ +{ + "description": "tiep-dv.is-a.dev : This is my personal notebook", + "repo": "https://github.com/tiep-dv/github-repository", + "owner": { + "username": "tiep-dv", + "email": "tiepduongv@gmail.com" + }, + "records": { + "URL": "https://github.com/tiep-dv" + } +} diff --git a/domains/tih.json b/domains/tih.json index 5c3385aaa..ce03fef2f 100644 --- a/domains/tih.json +++ b/domains/tih.json @@ -3,7 +3,7 @@ "username": "FatihArridho", "email": "m.fatiharridho@gmail.com" }, - "record": { + "records": { "CNAME": "tih-9t0.pages.dev" } } diff --git a/domains/tilak.json b/domains/tilak.json index fd0ed1d11..9ac4aaa99 100644 --- a/domains/tilak.json +++ b/domains/tilak.json @@ -3,7 +3,7 @@ "username": "YourTilak", "email": "rj05tilak@gmail.com" }, - "record": { + "records": { "CNAME": "yourtilak.github.io" } } diff --git a/domains/tim-vdb.json b/domains/tim-vdb.json new file mode 100644 index 000000000..a949b32a9 --- /dev/null +++ b/domains/tim-vdb.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio", + "repo": "https://github.com/tim-vdb/tim-vdb.github.io", + "owner": { + "username": "tim-vdb", + "email": "timotheevdbosch@gmail.com" + }, + "records": { + "CNAME": "tim-vdb.github.io" + } +} diff --git a/domains/tim.json b/domains/tim.json index 3c170dbad..1d4d295d7 100644 --- a/domains/tim.json +++ b/domains/tim.json @@ -4,7 +4,7 @@ "username": "xorob0" }, "repo": "https://github.com/xorob0/register", - "record": { + "records": { "CNAME": "toum.me" } } diff --git a/domains/tim232.json b/domains/tim232.json index fc72b8840..9bcb361f6 100644 --- a/domains/tim232.json +++ b/domains/tim232.json @@ -6,7 +6,7 @@ "email": "endbot4023@gmail.com", "twitter": "joonseongi" }, - "record": { + "records": { "CNAME": "endbot4023.github.io" } } diff --git a/domains/timi2506.json b/domains/timi2506.json new file mode 100644 index 000000000..4190d20d5 --- /dev/null +++ b/domains/timi2506.json @@ -0,0 +1,11 @@ +{ + "description": "A Custom Domain for my Personal Website", + "repo": "https://github.com/timi2506/register", + "owner": { + "username": "timi2506", + "email": "tim@glos-omu.uk" + }, + "records": { + "CNAME": "timi2506.github.io" + } +} diff --git a/domains/timo.json b/domains/timo.json index 5c0954751..c510d3630 100644 --- a/domains/timo.json +++ b/domains/timo.json @@ -3,7 +3,7 @@ "username": "sartimo", "email": "sartimo10@gmail.com" }, - "record": { + "records": { "URL": "https://sartimo.surge.sh" } } diff --git a/domains/timoelrichs.json b/domains/timoelrichs.json index 1bb1e9cac..3533ca517 100644 --- a/domains/timoelrichs.json +++ b/domains/timoelrichs.json @@ -3,7 +3,7 @@ "username": "TimOelrichs", "email": "timoelrichs@gmail.com" }, - "record": { + "records": { "URL": "https://peppermint-theater-276.notion.site/double-cherry-emulations-a3fd7ecc2c3144b5973928f3e196ce9e?pvs=4" } } diff --git a/domains/timotheelefebvre.json b/domains/timotheelefebvre.json index 96d552370..d05a5e821 100644 --- a/domains/timotheelefebvre.json +++ b/domains/timotheelefebvre.json @@ -3,7 +3,7 @@ "username": "zkimi", "email": "timothee.lefebvre@edu.esiee.fr" }, - "record": { + "records": { "URL": "https://timotheelefebvre.fr" } } diff --git a/domains/timothy.json b/domains/timothy.json new file mode 100644 index 000000000..3154c5088 --- /dev/null +++ b/domains/timothy.json @@ -0,0 +1,11 @@ +{ + "description": "Timothy's Personal Website", + "repo": "https://github.com/tabrownies/tabrownies.github.io", + "owner": { + "username": "tabrownies", + "email": "tabrownies@gmail.com" + }, + "records": { + "CNAME": "tabrownies.github.io" + } +} diff --git a/domains/timothynn.json b/domains/timothynn.json index 9d70f9a7a..cd937b5ac 100644 --- a/domains/timothynn.json +++ b/domains/timothynn.json @@ -6,7 +6,7 @@ "email": "timothynn08@gmail.com", "twitter": "timothynn_" }, - "record": { + "records": { "CNAME": "timothynn.github.io" } } diff --git a/domains/tio.json b/domains/tio.json new file mode 100644 index 000000000..aa023489b --- /dev/null +++ b/domains/tio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BOTCAHX", + "email": "tioclkp02@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/titan.json b/domains/titan.json index 916e8a963..a9f871e8a 100644 --- a/domains/titan.json +++ b/domains/titan.json @@ -3,7 +3,7 @@ "username": "bhoopesh369", "email": "bhoopesh459@gmail.com" }, - "record": { + "records": { "A": ["217.174.245.249"] } } diff --git a/domains/tiwknowsall.json b/domains/tiwknowsall.json index 1ae7d1c64..2f5755700 100644 --- a/domains/tiwknowsall.json +++ b/domains/tiwknowsall.json @@ -3,7 +3,7 @@ "username": "tiwlinkskwazeh", "email": "kwazehh@proton.me" }, - "record": { + "records": { "URL": "https://tiw2.pages.dev" } } diff --git a/domains/tiyanof.json b/domains/tiyanof.json index 2213d9cd8..71302f325 100644 --- a/domains/tiyanof.json +++ b/domains/tiyanof.json @@ -6,7 +6,7 @@ "email": "hannasophia1999@gmail.com", "twitter": "s00op_" }, - "record": { + "records": { "CNAME": "tiyanof.github.io" } } diff --git a/domains/tju-emg.json b/domains/tju-emg.json index edeaab1f9..b22ee9a83 100644 --- a/domains/tju-emg.json +++ b/domains/tju-emg.json @@ -5,7 +5,7 @@ "username": "XiaoHuanwise", "email": "1056366209@qq.com" }, - "record": { + "records": { "URL": "https://tju-2021-engineering-mechanics-top-notch.gitlab.io/tju-emg" } } diff --git a/domains/tk.json b/domains/tk.json index 8769cc98e..0092c47b0 100644 --- a/domains/tk.json +++ b/domains/tk.json @@ -1,10 +1,9 @@ { "owner": { "username": "thaddeuskkr", - "discord": "275830234262142978", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lLFfIW3EiPjgK-i-I5E56ERBvjl-ueM91PRyYM6wRClZzuoAj4nQyqL57dSZjhO_4Hbu4ZubbM1I_NI8Vt4_SlsFmxgL-hrvH9tf7rv-hX-TZtBWT_LQQUmhd1ZViGwELTly797M8VXZ39ER2gDmzruxjh8eQEHBCeJujWuUNicigehUgfk-Pk9rSchVlR3TUcwL-wylY58KvBLQwIeMmqUW2qs_E_iKCwk_8FQH-IUb_4W58r6wBHh6MqiP72Py9ssDbxrV59e1eGrQZXYJJM1rUZHoHzW1KX84FgT0QCGc1cSiV-Sdc3p6WceRY6Tf1akfTNjuga61kpgzluoTxg.QwFk8iYMpzefwXgErTr9cQ.kwMwAIrFDxCKfvSxx3Jpvb6ZkiFcp56BFoBg7KQMsYw4PBK60JNzjpMpgMqZ7jymnYJFTz5img3xLlxBF7UuUy_Z9MgHCHaVR3W7970smoQ.aBJoeQFaHiIyXkpQa1Gx7g" + "discord": "275830234262142978" }, - "record": { + "records": { "CNAME": "tkkr.tplinkdns.com" } } diff --git a/domains/tlowng.json b/domains/tlowng.json index 043584104..bdd4a4142 100644 --- a/domains/tlowng.json +++ b/domains/tlowng.json @@ -3,7 +3,7 @@ "username": "longathelstan", "email": "longaluminium10@gmail.com" }, - "record": { + "records": { "URL": "https://guns.lol/longathelstan" } } diff --git a/domains/tlwbr.json b/domains/tlwbr.json new file mode 100644 index 000000000..1a447a416 --- /dev/null +++ b/domains/tlwbr.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio website", + "repo": "https://github.com/tolubori07/portfolio", + "owner": { + "username": "tolubori07", + "email": "Tolubori07@gmail.com" + }, + "records": { + "CNAME": "tlwbr.netlify.app" + } +} diff --git a/domains/tmasikt.json b/domains/tmasikt.json index 1fe9f2e93..03bf49a67 100644 --- a/domains/tmasikt.json +++ b/domains/tmasikt.json @@ -6,7 +6,7 @@ "telegram": "tmasikt", "discord": "tmasikt" }, - "record": { + "records": { "A": ["194.190.169.59"] } } diff --git a/domains/tmozki.json b/domains/tmozki.json index 72066f074..44f8d7704 100644 --- a/domains/tmozki.json +++ b/domains/tmozki.json @@ -3,7 +3,7 @@ "username": "Tomozki", "email": "Tomozki@animekun.in" }, - "record": { + "records": { "URL": "https://github.com/Tomozki" } } diff --git a/domains/tnt.json b/domains/tnt.json index f0aba5f9c..9af182789 100644 --- a/domains/tnt.json +++ b/domains/tnt.json @@ -3,7 +3,7 @@ "username": "SebTNT", "email": "turquoisetntmultimedia@gmail.com" }, - "record": { + "records": { "CNAME": "turquoisetnt.github.io" } } diff --git a/domains/to-zeeshan.json b/domains/to-zeeshan.json index fa9dfff32..9cae1a252 100644 --- a/domains/to-zeeshan.json +++ b/domains/to-zeeshan.json @@ -5,7 +5,7 @@ "username": "m-zeeshan42", "email": "zeeshanashraf424@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/toadvillebay.json b/domains/toadvillebay.json index 73ced7ffd..b534f238f 100644 --- a/domains/toadvillebay.json +++ b/domains/toadvillebay.json @@ -1,10 +1,9 @@ { "owner": { "username": "notghostvista", - "discord": "907846380486291486", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LcONtw79KouZ5CHwdUE19aYS3OPqr4tc-zYo1vI4hiyk_-q2ZWUnLchzwdBxILOFYfDPGPk9u7xrwmH4RsgNNNQlNUj5XYTeKPDE9EiSzf1vgWnJ-oQC9W75U_p0lxhf2gjlK1_6a7V8DLL8eYt_yEN65VM5z_oLxLDuGJycd-QfN9KB4M5GCnrDmaft36Izs8cF4fGy5PgI2Tg0xIg5UlPMK-q6UtQk16nFbMXMat8UxQ7Wha30qS5HNlI2iuCLQb8iwTcKnG4rpkWFS1UGQeBa2ZBRAJTDxdbaSfJqTb8b1zroVhhRc-txA1OBeLTuVaVzPvFAEwSsstGZXvEkmA.8Zfqqt1TD7xwGlYlsf5D0g.0IacuKDmXmhPtSrYzZAJj_gTPTwPNa1v7HRN0tOUoQMqwfj5avpIR4eCv7_tXPwpfk9hbjvXw3_AvVhlANGfOgO1GHhhIHltcDc2WWktd1c.WoQIyHoD15gcTvKBRhuM0w" + "discord": "907846380486291486" }, - "record": { + "records": { "CNAME": "notghostvista.github.io" } } diff --git a/domains/toan.json b/domains/toan.json index 3e85250f2..4a3f3be24 100644 --- a/domains/toan.json +++ b/domains/toan.json @@ -3,7 +3,7 @@ "username": "toanducvo", "email": "toan.ducvo@icloud.com" }, - "record": { + "records": { "CNAME": "hashnode.network" } } diff --git a/domains/toanbe.json b/domains/toanbe.json index f30e21d11..8bbade869 100644 --- a/domains/toanbe.json +++ b/domains/toanbe.json @@ -1,10 +1,9 @@ { "owner": { "username": "toanbe-fx", - "discord": "1087967418355298354", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.CBr3aBDorHmB0nLGXD36N8XrnF9YK1gDSL76CagExlL8dzLG0utH_v7RImqmijomCQyMqw9XnKx4l--TpTU_KR6VRSe2ThLbRNtVPDdqOJQ8NSU2uJakZRQ7uxgwwmwaWGzCnBKro3ErOHdxCxUBn0cXaWKxOrExcgIthOEMIRyZAp2lbNXtcPkCucQSJOPzf6LnQx4SrIQzAM5j9e29Re6M4uydSkFk_DiTbm1G8rdWO2SQvU6RoGCiwucP4gyKhyguzI2OlJNAzHuk_AhZQ1qC9cCe_6U3-r0BENgnOYK2gdya74UQO935b8DtBZSUMn1OPhI0S6JNQQ93V53hVA.1w2pShM2hooR-SMIitylhg.AQxZBPVk2W6Ng_2D-NMM_we3ofyruZiKUFNx6vdOKRpm_YL_OUlSm2yUnmV4QZREhcg2juab9g4mv3GFn2QhBwVT7gB5YJbzuLD7BmxpGtw.tv0XItK7pqpXqrgeVLYLyA" + "discord": "1087967418355298354" }, - "record": { + "records": { "CNAME": "toanbe-fx.github.io" } } diff --git a/domains/toantran.json b/domains/toantran.json index 77cb243d7..82cf856e7 100644 --- a/domains/toantran.json +++ b/domains/toantran.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/toantranct94/toantran.github.io", - "owner": { - "username": "toantranct94", - "email": "toantranct94@gmail.com" - }, - "record": { - "CNAME": "toantran.github.io" - } + "repo": "https://github.com/toantranct94/toantran.github.io", + "owner": { + "username": "toantranct94", + "email": "toantranct94@gmail.com" + }, + "records": { + "CNAME": "toantran.github.io" + } } diff --git a/domains/toast.json b/domains/toast.json index 46a7ea8c1..6ceecbd7c 100644 --- a/domains/toast.json +++ b/domains/toast.json @@ -5,7 +5,7 @@ "username": "lightly-toasted", "email": "tooast@duck.com" }, - "record": { + "records": { "CNAME": "lightly-toasted.github.io" } } diff --git a/domains/toasted.json b/domains/toasted.json index 035cac414..fda1e5d9b 100644 --- a/domains/toasted.json +++ b/domains/toasted.json @@ -7,7 +7,7 @@ "twitter": "toasteddev", "discord": "nottca" }, - "record": { + "records": { "URL": "https://toasted.dev" } } diff --git a/domains/toastedstuff.json b/domains/toastedstuff.json new file mode 100644 index 000000000..ef66acedc --- /dev/null +++ b/domains/toastedstuff.json @@ -0,0 +1,11 @@ +{ + "description": "toast's site lol", + "repo": "https://github.com/bpr1ch3/bpr1ch3.github.io", + "owner": { + "username": "bpr1ch3", + "email": "toastedstufff@gmail.com" + }, + "records": { + "CNAME": "bpr1ch3.github.io" + } +} diff --git a/domains/tobez.json b/domains/tobez.json index 9baf67051..caa8cddcd 100644 --- a/domains/tobez.json +++ b/domains/tobez.json @@ -3,7 +3,7 @@ "username": "tobezdev", "email": "therealtobes28@gmail.com" }, - "record": { + "records": { "URL": "https://discord.gg/c2UhTFyRBw" } } diff --git a/domains/tobi.json b/domains/tobi.json new file mode 100644 index 000000000..be24f33a3 --- /dev/null +++ b/domains/tobi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tobikli", + "email": "tobikli@pm.me" + }, + "records": { + "URL": "https://tobia.sh" + } +} diff --git a/domains/tobias.json b/domains/tobias.json new file mode 100644 index 000000000..87637ece9 --- /dev/null +++ b/domains/tobias.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smarterToby", + "discord": "724712767080235049" + }, + "records": { + "CNAME": "tobiasreuss.vercel.app" + } +} diff --git a/domains/toby.json b/domains/toby.json index 8b0d79f2f..2ae4dc2d0 100644 --- a/domains/toby.json +++ b/domains/toby.json @@ -3,7 +3,7 @@ "username": "toby7002", "email": "minhthoj27@icloud.com" }, - "record": { + "records": { "URL": "https://toby7002.github.io" } } diff --git a/domains/todo.alvin.json b/domains/todo.alvin.json index 810c13865..19f6673c5 100644 --- a/domains/todo.alvin.json +++ b/domains/todo.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/tofu.json b/domains/tofu.json new file mode 100644 index 000000000..d2d07e5eb --- /dev/null +++ b/domains/tofu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yychen1201", + "discord": "1009412927754866728" + }, + "records": { + "CNAME": "yychen1201.github.io" + } +} diff --git a/domains/tokito.json b/domains/tokito.json index 1af49b526..9fc5c5e61 100644 --- a/domains/tokito.json +++ b/domains/tokito.json @@ -1,10 +1,9 @@ { "owner": { "username": "EnderHacker0", - "discord": "688203075533537281", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mx2HGCzfupu6IYLjnCroqa1FGZBkTG0bGMBEiEXKXl4HaW7g-kd3jayBZAUgG_0sIQDYMm8UA2lDuv3seLS1NaDUhj2X3Ty1y8V923cwSACAbjJYfy6lhYdXoY1lmkFJ_kbcTv285fRLepjkjdoh6M1nHp6SHNsTu0fsuMeXEPFAGI3gWFhikL-1umWb4TbGvhIphQvajL__95PLe7CR1l8CylCsTQFadCJAmbRgPMWp0whkHA7brrw2I0-lwQa9teGYD--qbkyfbKMxJrxZjw-J3kV14b4zzd79Lv4nCxS3QU4u6xfAoAe7zno4k6b_D2-fOhCQyApDYKh0n2bmPw.0hxV_wnpQIH3Ly0XDsqZfQ.VTB8EBq15AQ_WipnhdFhfv6PIFCdOdVOnsAKDBJGieXXF81yANegE0NgrCSTS8RELRSxSE9X-mw2SDBXXHbsjfotBB1JT4UEC3piiIUoodM.2FQ6NTngevYqGIFQy09_cA" + "discord": "688203075533537281" }, - "record": { + "records": { "CNAME": "www.mihoyo.gay" } } diff --git a/domains/tokyo.json b/domains/tokyo.json index 08c5b8be1..c0199e800 100644 --- a/domains/tokyo.json +++ b/domains/tokyo.json @@ -5,7 +5,7 @@ "username": "a-tokyo", "email": "ahmed.tokyo1@gmail.com" }, - "record": { + "records": { "CNAME": "a-tokyo.github.io" } } diff --git a/domains/tom.json b/domains/tom.json index f97d865bb..d3140955f 100644 --- a/domains/tom.json +++ b/domains/tom.json @@ -3,8 +3,7 @@ "username": "tommitchelmore", "email": "tommitchelmore@outlook.com" }, - "repo": "https://github.com/tommitchelmore", - "record": { + "records": { "URL": "https://github.com/tommitchelmore" } } diff --git a/domains/tomas.json b/domains/tomas.json index 372f57267..4d93b5d05 100644 --- a/domains/tomas.json +++ b/domains/tomas.json @@ -4,7 +4,7 @@ "username": "Tomaas0", "email": "tomas@ukrinas.eu" }, - "record": { + "records": { "CNAME": "ukrinas.eu" } } diff --git a/domains/tomascornelles.json b/domains/tomascornelles.json new file mode 100644 index 000000000..0f4c3822f --- /dev/null +++ b/domains/tomascornelles.json @@ -0,0 +1,11 @@ +{ + "description": "Personal blog of Tomas Cornelles, Frontend developer", + "repo": "https://github.com/tomascornelles/tomascornelles", + "owner": { + "username": "tomascornelles", + "email": "tomascornelles@gmail.com" + }, + "records": { + "CNAME": "tomascornelles.github.io" + } +} diff --git a/domains/tomcollis.json b/domains/tomcollis.json index 40e97c44b..e8c99db7a 100644 --- a/domains/tomcollis.json +++ b/domains/tomcollis.json @@ -3,7 +3,7 @@ "username": "tomcollis", "email": "tomuky2k@msn.com" }, - "record": { + "records": { "URL": "https://github.com/tomcollis" } } diff --git a/domains/tomek.json b/domains/tomek.json new file mode 100644 index 000000000..feab9015a --- /dev/null +++ b/domains/tomek.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "tomek-i" + }, + "records": { + "CNAME": "tomek-i.github.io" + } +} diff --git a/domains/tomgxz.json b/domains/tomgxz.json index 8cb257965..3c3c67e83 100644 --- a/domains/tomgxz.json +++ b/domains/tomgxz.json @@ -3,7 +3,7 @@ "username": "Tomgxz", "email": "tomgxz138@gmail.com" }, - "record": { + "records": { "URL": "https://tomlx.co.uk" } } diff --git a/domains/tomiszivacs.json b/domains/tomiszivacs.json index 36ec39746..d68f36486 100644 --- a/domains/tomiszivacs.json +++ b/domains/tomiszivacs.json @@ -6,7 +6,7 @@ "email": "tomiyt999@gmail.com", "discord": "1133680871879229440" }, - "record": { + "records": { "CNAME": "tomiszivacs.github.io" } } diff --git a/domains/tomlh.json b/domains/tomlh.json index 870920b0b..1149b240c 100644 --- a/domains/tomlh.json +++ b/domains/tomlh.json @@ -1,10 +1,9 @@ { "owner": { "username": "tomlonghorn", - "discord": "555437155829153793", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fLYf5SQZcFwBqFk53_ChiGVQHkDDx6q5VBT_uVb1qPmiv8kUiP6drwPejnGfg8_WskhWBXw8VeBxZhuozUKm-81Ti1Jj8lEMDuO-npQYsXnNyP1pPmmn9PbWw5Miyn1nYmzvIwlD0vTvl2SaOmdDkSIdG6B-ZbF-fR7Xt--8zrmB-_ZGsRnY5Xz69qzzKeE4FW0JIgypkeqwXXrcJ3Xql9yrlq7ei-NTtyFnSryH3-bD2cnM-_2PcaAm0yhLWCIeVukgWaHpQM7f4tyIkWP_ZmN7_GGI9ofEzwou0ky2S6tz1gsbWRIj0yc5LKiU27jSSI7Xilbuf__1Yz_H3pcjUA.rG-9RsGnGA-PMeJ_I7sChw.U6RQsO8SPjsrt7kmydNYZq-AqaQiifoJ-zHDUMB7tYlhT0UELkKk4-OCd-Eg6bbZd3iRYjndwG-Co3kRrUJzhc4_JzvW3wfF-fS4QNTVsM0.2QRCf2qldh-pSDZ745U6oA" + "discord": "555437155829153793" }, - "record": { + "records": { "CNAME": "tomlonghorn.github.io" } } diff --git a/domains/tomokat.json b/domains/tomokat.json index 304777406..36bff134b 100644 --- a/domains/tomokat.json +++ b/domains/tomokat.json @@ -3,7 +3,7 @@ "username": "tomokat", "email": "wataru2007@gmail.com" }, - "record": { + "records": { "CNAME": "tomokat.github.io" } } diff --git a/domains/tomsystems.json b/domains/tomsystems.json index 927f49550..4cc57d797 100644 --- a/domains/tomsystems.json +++ b/domains/tomsystems.json @@ -3,7 +3,7 @@ "username": "thesillycat", "email": "tomnetwork@duck.com" }, - "record": { + "records": { "CNAME": "tomsystems.pages.dev" } } diff --git a/domains/tomteck.json b/domains/tomteck.json index 9f1937dce..1997afcc1 100644 --- a/domains/tomteck.json +++ b/domains/tomteck.json @@ -3,7 +3,7 @@ "username": "shandralor", "email": "tom.teck@gmail.com" }, - "record": { + "records": { "CNAME": "shandralor.github.io" } } diff --git a/domains/tong.json b/domains/tong.json index c651828da..2f952700a 100644 --- a/domains/tong.json +++ b/domains/tong.json @@ -5,7 +5,7 @@ "username": "tongwu", "email": "away0x@gmail.com" }, - "record": { + "records": { "CNAME": "away0x.github.io" } } diff --git a/domains/tong09.json b/domains/tong09.json index dd9bcb161..43a60f69a 100644 --- a/domains/tong09.json +++ b/domains/tong09.json @@ -3,7 +3,7 @@ "username": "tong09", "email": "mdrochana93@gmail.com" }, - "record": { + "records": { "CNAME": "383zyrozcr38d.ahost.marscode.site" } } diff --git a/domains/tonywu.json b/domains/tonywu.json index 3e8b6eafe..e4493b6cc 100644 --- a/domains/tonywu.json +++ b/domains/tonywu.json @@ -3,7 +3,7 @@ "username": "vuquangthinh", "email": "quangthinh.dev@gmail.com" }, - "record": { + "records": { "CNAME": "vuquangthinh.github.io" } } diff --git a/domains/tools.json b/domains/tools.json index af13fd29d..ee0252251 100644 --- a/domains/tools.json +++ b/domains/tools.json @@ -3,7 +3,7 @@ "username": "asma019", "email": "asmaparvin019@gmail.com" }, - "record": { + "records": { "CNAME": "asma019.github.io" } } diff --git a/domains/tornfoolery.json b/domains/tornfoolery.json index eaadc528a..2a38b9a98 100644 --- a/domains/tornfoolery.json +++ b/domains/tornfoolery.json @@ -1,10 +1,9 @@ { "owner": { "username": "Tornfoolery", - "discord": "936800884254441574", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.jaVhF-RvIy4ZAibRKflChFU5cRFBiomamrILFIW3p_KDaE6TVnRRa0DZMfK2SFVpVxqhPPGKu8MGPADxYEEIOKHuN2EQ-dG7FH9YSOd59a_J_UdE8LQ2_Bl7oxUkQPLzx-WTJdPSlYTrYbLlPNYo_iAdpEq7Hb-Ybm5UsZE_c7MOm6u3r-g8Z5t9drsuejZUIQ6HZMVumuvyKTCfrAoWZb8PEDirjPi6xQba8cVbAbPxA_Bvd4o29Izbu7h07K7ZjX-viPhV9Yukl12-onVFz3WpGLzBOKOVNAhr55Se0onEwvtdgYEfVsTyO-rxoIvz4ZAfDDE49haH49lxXW3aoQ.5TuUfagGprB6sPmqejocbg.xe0xJMCU35UdmO-bK9a2DONhSQD2G067t0NV7Ew9f8KzYbWlC7afzTruIiic2atElKyijPjVi62vKGO7VDsUw9LLmkKJo_Rh1oJlxHnkLcY.GML679gseynzgx0C_AlIFg" + "discord": "936800884254441574" }, - "record": { + "records": { "CNAME": "tornfoolery.github.io" } } diff --git a/domains/tortilla.json b/domains/tortilla.json index 977c39694..1bd10e553 100644 --- a/domains/tortilla.json +++ b/domains/tortilla.json @@ -1,11 +1,11 @@ { - "description": "tortilla.is-a.dev", - "owner": { - "username": "Colbster937", - "email": "colbster937@colbster937.dev" - }, - "record": { - "CNAME": "dns.tortillagames.org" - }, - "proxied": true + "description": "tortilla.is-a.dev", + "owner": { + "username": "Colbster937", + "email": "colbster937@colbster937.dev" + }, + "records": { + "CNAME": "dns.tortillagames.org" + }, + "proxied": true } diff --git a/domains/toster.json b/domains/toster.json index 5bb5b5341..c75d4abe2 100644 --- a/domains/toster.json +++ b/domains/toster.json @@ -3,7 +3,7 @@ "username": "Rafau04", "email": "matiz.rafal@gmail.com" }, - "record": { + "records": { "CNAME": "rafau04.github.io" } } diff --git a/domains/totallynotmwa.json b/domains/totallynotmwa.json index 0fe23b8c2..ee1444e24 100644 --- a/domains/totallynotmwa.json +++ b/domains/totallynotmwa.json @@ -3,7 +3,7 @@ "username": "Totallynotmwa", "email": "totallynot@mwa.lol" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/toxocious.json b/domains/toxocious.json index e18748c91..9eabcd462 100644 --- a/domains/toxocious.json +++ b/domains/toxocious.json @@ -6,7 +6,7 @@ "email": "toxocious@gmail.com", "discord": "Jess#5596" }, - "record": { + "records": { "CNAME": "toxocious.github.io" } } diff --git a/domains/tr1n.json b/domains/tr1n.json index fb216032f..810709381 100644 --- a/domains/tr1n.json +++ b/domains/tr1n.json @@ -3,7 +3,7 @@ "username": "tr1n", "email": "djpatrio@gmail.com" }, - "record": { + "records": { "URL": "https://tr1n.me" } } diff --git a/domains/tracking.seen.json b/domains/tracking.seen.json index d67b225e3..6ec19a77f 100644 --- a/domains/tracking.seen.json +++ b/domains/tracking.seen.json @@ -4,7 +4,7 @@ "email": "seendator@outlook.com", "discord": "852477599476482048" }, - "record": { + "records": { "CNAME": "api.elasticemail.com" } } diff --git a/domains/trackstore.json b/domains/trackstore.json index eb92f2038..eff6e515f 100644 --- a/domains/trackstore.json +++ b/domains/trackstore.json @@ -5,7 +5,7 @@ "username": "TrackStore", "email": "imaginary_macaw058@simplelogin.com" }, - "record": { + "records": { "CNAME": "trackstore.github.io" } } diff --git a/domains/trademark.json b/domains/trademark.json new file mode 100644 index 000000000..d87db8b09 --- /dev/null +++ b/domains/trademark.json @@ -0,0 +1,11 @@ +{ + "description": "nice subdomain for my personal website.", + "repo": "https://github.com/trmrk/trademark", + "owner": { + "username": "trmrk", + "email": "augmooney@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/tranduytoan.json b/domains/tranduytoan.json new file mode 100644 index 000000000..3a3bb1dc3 --- /dev/null +++ b/domains/tranduytoan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tranduytoan", + "email": "toandeptraibodoiqua.10a4@gmail.com" + }, + "records": { + "CNAME": "tranduytoan.github.io" + } +} diff --git a/domains/tranminhtan.json b/domains/tranminhtan.json new file mode 100644 index 000000000..e31799a5a --- /dev/null +++ b/domains/tranminhtan.json @@ -0,0 +1,12 @@ +{ + "description": "Documents AI website for tanbaycu", + "repo": "https://github.com/tanbaycu", + "owner": { + "username": "tanbaycu", + "email": "mnew20128@gmail.com" + }, + "records": { + "CNAME": "trituenhantao.vercel.app" + }, + "proxied": true +} diff --git a/domains/tranthanhlong.json b/domains/tranthanhlong.json index 9347a4404..e6d1ecb5f 100644 --- a/domains/tranthanhlong.json +++ b/domains/tranthanhlong.json @@ -5,7 +5,7 @@ "username": "iamthanhlong", "email": "uxymqfzglvtqno@proton.me" }, - "record": { + "records": { "CNAME": "iamthanhlong.github.io" } } diff --git a/domains/trauma.json b/domains/trauma.json index a9eeb9282..a6c5b6e7c 100644 --- a/domains/trauma.json +++ b/domains/trauma.json @@ -6,7 +6,7 @@ "email": "ignacio@asia.com", "twitter": "q1a67" }, - "record": { + "records": { "CNAME": "iitrauma.github.io" } } diff --git a/domains/triach-rold.json b/domains/triach-rold.json index 46443e71c..1bf702e92 100644 --- a/domains/triach-rold.json +++ b/domains/triach-rold.json @@ -3,7 +3,7 @@ "username": "triach-rold", "email": "roldtriach@gmail.com" }, - "record": { + "records": { "URL": "https://triach-rold.github.io/" } } diff --git a/domains/triachrold.json b/domains/triachrold.json index 46443e71c..1bf702e92 100644 --- a/domains/triachrold.json +++ b/domains/triachrold.json @@ -3,7 +3,7 @@ "username": "triach-rold", "email": "roldtriach@gmail.com" }, - "record": { + "records": { "URL": "https://triach-rold.github.io/" } } diff --git a/domains/tricked.json b/domains/tricked.json index 4197bb309..c99b5e1b3 100644 --- a/domains/tricked.json +++ b/domains/tricked.json @@ -5,7 +5,7 @@ "username": "skyblockdev", "email": "trickedcodes@tutanota.com" }, - "record": { + "records": { "URL": "https://tricked.netlify.app" } } diff --git a/domains/trio.json b/domains/trio.json index af1099406..9a9be9f7d 100644 --- a/domains/trio.json +++ b/domains/trio.json @@ -4,7 +4,7 @@ "username": "trio745", "email": "triofran6@gmail.com" }, - "record": { + "records": { "MX": ["smtp.internal.xhyrom.dev"] } } diff --git a/domains/tristan.json b/domains/tristan.json index 44416c51b..d2e4b09fb 100644 --- a/domains/tristan.json +++ b/domains/tristan.json @@ -1,11 +1,10 @@ { "description": "Tristans personal Website", - "repo": "https://github.com/holymarcell", "owner": { "username": "holymarcell", "email": "is-a.dev@holy-mail.de" }, - "record": { + "records": { "URL": "https://holy-mail.de" } } diff --git a/domains/trix.json b/domains/trix.json index 13a85cc35..c05104337 100644 --- a/domains/trix.json +++ b/domains/trix.json @@ -1,18 +1,10 @@ { - "owner": { - "username": "tr1xem", - "email": "admin@trixsly.xyz" - }, - "record": { - "A": [ - "185.199.110.153", - "185.199.109.153", - "185.199.111.153", - "185.199.108.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } + "owner": { + "username": "tr1xem", + "email": "admin@trixsly.xyz" + }, + "records": { + "A": ["185.199.110.153", "185.199.109.153", "185.199.111.153", "185.199.108.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] + } } diff --git a/domains/triyatna.json b/domains/triyatna.json index 6687190b6..4d05dc90a 100644 --- a/domains/triyatna.json +++ b/domains/triyatna.json @@ -5,7 +5,7 @@ "username": "triyatna", "email": "triyatna.com@gmail.com" }, - "record": { + "records": { "CNAME": "triyatna.github.io" } } diff --git a/domains/trollm8.json b/domains/trollm8.json index f5d7e17e5..0e8bcd93c 100644 --- a/domains/trollm8.json +++ b/domains/trollm8.json @@ -1,10 +1,9 @@ { "owner": { "username": "trollm8", - "discord": "1266754182082461751", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Tmidf0-ostr7SwvsJgEdvwL8GNzBRuA7akFPycL23OBl4RxlOctbY2tZJhm9AFmd1GW_2cbZs735Lc4fbPYYOqYSg5PuCmPLA1LHrDdAffwQT2nwBZkKstxOWgR9_l0DvStxpyMd86jVgRUujXL0nChFeDA2-us7I0FaQsM4ojDFI2_yovADFT5MoukCYW1GEfu5-gsETTomrovCg2dKOGem8EH1bUhe9DFa0fzkVA9WNpleK5nW-53JC4LYNAttdNTLkzk8J04JMesCpKFNsuuqWJwIyJMhatge0PzKEQr2VQ-_oR9Mf-PJs5Wfrh64HLsV4WmCEgGJfY88vmOISQ.BP-dCaDVgXkrR30NuwAsag.vkx4F6n9o6tw0EQhk_eKzK4Q3PhxZfuoUf2_8sTjakA-vlRC04qXZ9STXkZzDl6XwG8uZbM1FCob-_AhY5ASPQ.fkMZOYZWqGef_gddA379eA" + "discord": "1266754182082461751" }, - "record": { + "records": { "CNAME": "trollm8.xyz" } } diff --git a/domains/trucpham.json b/domains/trucpham.json new file mode 100644 index 000000000..30414d776 --- /dev/null +++ b/domains/trucpham.json @@ -0,0 +1,12 @@ +{ + "description": "My portfolio website.", + "repo": "https://github.com/trucpham04", + "owner": { + "username": "trucpham04", + "email": "trucpham04@proton.me" + }, + "records": { + "CNAME": "trucpham.pages.dev" + }, + "proxied": true +} diff --git a/domains/trueuser.json b/domains/trueuser.json index 28c4e8676..26fbd80da 100644 --- a/domains/trueuser.json +++ b/domains/trueuser.json @@ -3,7 +3,7 @@ "username": "istrueuser", "email": "thisistrueemail@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/trug.json b/domains/trug.json index 3b308c600..387fec186 100644 --- a/domains/trug.json +++ b/domains/trug.json @@ -5,7 +5,7 @@ "username": "vietrux", "email": "leviettrung.social@gmail.com" }, - "record": { + "records": { "CNAME": "vietrux.github.io" } } diff --git a/domains/trung.json b/domains/trung.json index b99730c4e..488318c9f 100644 --- a/domains/trung.json +++ b/domains/trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/trungz.json b/domains/trungz.json index 911383c15..522df7b26 100644 --- a/domains/trungz.json +++ b/domains/trungz.json @@ -3,7 +3,7 @@ "username": "lehuutrung1412", "email": "me@lehuutrung.dev" }, - "record": { + "records": { "URL": "https://lehuutrung.dev" } } diff --git a/domains/truongvanthong.json b/domains/truongvanthong.json new file mode 100644 index 000000000..561f25d16 --- /dev/null +++ b/domains/truongvanthong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "truongvanthong", + "email": "thongvanpro2002@gmail.com" + }, + "records": { + "CNAME": "truongvanthong.github.io" + } +} diff --git a/domains/tsania.json b/domains/tsania.json new file mode 100644 index 000000000..5e97afd4f --- /dev/null +++ b/domains/tsania.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tsnzzhr", + "email": "tsnzzhr102@gmail.com" + }, + "records": { + "CNAME": "tsanias.vercel.app" + } +} diff --git a/domains/tshonq.json b/domains/tshonq.json index ba9443808..c085202a5 100644 --- a/domains/tshonq.json +++ b/domains/tshonq.json @@ -3,7 +3,7 @@ "username": "shubhamakshit", "email": "akshitshubhammas@gmail.com" }, - "record": { + "records": { "CNAME": "tshonqkhan.onrender.com" } } diff --git a/domains/tsognyam.json b/domains/tsognyam.json index 9d4ae66bf..c1a193aa1 100644 --- a/domains/tsognyam.json +++ b/domains/tsognyam.json @@ -6,7 +6,7 @@ "email": "tsognyamt@gmail.com", "twitter": "b_tsognyam" }, - "record": { + "records": { "CNAME": "tsognyam.github.io" } } diff --git a/domains/tstark.json b/domains/tstark.json new file mode 100644 index 000000000..f7953b523 --- /dev/null +++ b/domains/tstark.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "t-starks", + "email": "sr.shelby.lp@gmail.com" + }, + "records": { + "CNAME": "t-stark.netlify.app" + }, + "proxied": false +} diff --git a/domains/tsu.json b/domains/tsu.json index 29c62defb..4fce743bc 100644 --- a/domains/tsu.json +++ b/domains/tsu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dot-tsu", - "email": "lucanahtsu@gmail.com" - }, - "record": { - "CNAME": "dot-tsu.github.io" - } + "owner": { + "username": "dot-tsu", + "email": "lucanahtsu@gmail.com" + }, + "records": { + "CNAME": "dot-tsu.github.io" + } } diff --git a/domains/tsull360.json b/domains/tsull360.json index 8504bda7a..875da9641 100644 --- a/domains/tsull360.json +++ b/domains/tsull360.json @@ -5,7 +5,7 @@ "username": "tsull360", "email": "tsull360@outlook.com" }, - "record": { + "records": { "CNAME": "tsull360.github.io" } } diff --git a/domains/ttkt.json b/domains/ttkt.json index a71f767a9..48c20bedc 100644 --- a/domains/ttkt.json +++ b/domains/ttkt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/ttt.talinsharma.json b/domains/ttt.talinsharma.json index cf04b9d09..865cd60a2 100644 --- a/domains/ttt.talinsharma.json +++ b/domains/ttt.talinsharma.json @@ -4,7 +4,7 @@ "email": "talinsharma.dev@gmail.com", "discord": "1010508154481676329" }, - "record": { + "records": { "CNAME": "tic-tac-toe-175c5.web.app" } } diff --git a/domains/tuankiet.json b/domains/tuankiet.json index 17a92e331..39b6ea383 100644 --- a/domains/tuankiet.json +++ b/domains/tuankiet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "harrytien107", - "email": "sigmatien@duck.com" - }, - "record": { - "CNAME": "harrytien107.github.io" - } + "owner": { + "username": "harrytien107", + "email": "sigmatien@duck.com" + }, + "records": { + "CNAME": "harrytien107.github.io" + } } diff --git a/domains/tuanpham.json b/domains/tuanpham.json index 82449f1ac..d8579fcae 100644 --- a/domains/tuanpham.json +++ b/domains/tuanpham.json @@ -1,10 +1,9 @@ { "owner": { "username": "Tun52299", - "discord": "699291160157618226", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NO4Prmw4__zqB_JFqETf5p4zidLyqmBWvdQdtXTZ1AkyrCUUXRzqJX_Ls4rVWgkO_L-7tJgwLqo1Kd_bLWXm9KgI28TiqxqtAyuHBvQ2k_Ljy5AKzv1e7f_0SsJYGdONyz8JcRwE7lnzm9fkjbGwtLmmbY79vX4z0WckcIQXJZXsToT2cp33M_11wb1F9JpTDBq4SKvBcu11jeTSv3J_gyeL8JMFQQ87F16U30QGY98mtMJq7x0LWWqS2FevqPRyuiFwPOVuiir0qLVfCN9rOj3hnjsQh5ZDXaLCW-KoIBxJtAouQx7gOWsvAgEw9QUH4Z8NRKuklsIpk1ZbSSRgHw.VdDmy0RUUAIVXJfbm8FO3Q.nxTc-dx3PdfwHgGdk3yXfbsJj2Kdr6UrWSvlF9_yecVQH1eOETVxL6iwBdiNdLxfKKrP76gTS-9GK6j-cL1Ix-W5CaeyX4l2Jz_0nDgRVE8.zGKqhWqeyusy1PwiiMxnJA" + "discord": "699291160157618226" }, - "record": { + "records": { "CNAME": "tun52299.github.io" } } diff --git a/domains/tuantestdashboard.json b/domains/tuantestdashboard.json index d0254f2bf..22c8b77f4 100644 --- a/domains/tuantestdashboard.json +++ b/domains/tuantestdashboard.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "latuan2710", - "email": "tuan.la.cit19@eiu.edu.vn" - }, - "record": { - "CNAME": "admin-dashboard-latuan.vercel.app" - } + "owner": { + "username": "latuan2710", + "email": "tuan.la.cit19@eiu.edu.vn" + }, + "records": { + "CNAME": "admin-dashboard-latuan.vercel.app" + } } diff --git a/domains/tuanthu1.json b/domains/tuanthu1.json new file mode 100644 index 000000000..19639c5df --- /dev/null +++ b/domains/tuanthu1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuanthu1", + "email": "hoangtuanthu981@gmail.com" + }, + "records": { + "CNAME": "tuanthu1.github.io" + } +} diff --git a/domains/tudbut.json b/domains/tudbut.json index 0761f064e..ccc2a9fe7 100644 --- a/domains/tudbut.json +++ b/domains/tudbut.json @@ -4,7 +4,7 @@ "email": "is-a-dev-public@mail.tudbut.de", "discord": "TudbuT#2624" }, - "record": { + "records": { "CNAME": "tudbut.de" } } diff --git a/domains/tukimi.json b/domains/tukimi.json index 559f00626..d62b62c5d 100644 --- a/domains/tukimi.json +++ b/domains/tukimi.json @@ -3,7 +3,7 @@ "username": "kr-tukimi", "twitter": "kr_tukimi" }, - "record": { + "records": { "URL": "https://tuki.dev" } } diff --git a/domains/tulasidhar.json b/domains/tulasidhar.json new file mode 100644 index 000000000..da466d645 --- /dev/null +++ b/domains/tulasidhar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tulasidharm", + "email": "tulasidharmulakaluri@gmail.com" + }, + "records": { + "CNAME": "tulasidharm.github.io" + } +} diff --git a/domains/tullio.json b/domains/tullio.json new file mode 100644 index 000000000..7add8f753 --- /dev/null +++ b/domains/tullio.json @@ -0,0 +1,10 @@ +{ + "description": "Tullio Sebastiani's Home Page", + "owner": { + "username": "tsebastiani", + "email": "github.sensitize723@passinbox.com" + }, + "records": { + "CNAME": "tsebastiani.github.io" + } +} diff --git a/domains/tungbt.json b/domains/tungbt.json new file mode 100644 index 000000000..ac94e9788 --- /dev/null +++ b/domains/tungbt.json @@ -0,0 +1,20 @@ +{ + "description": "tungbt.is-a.dev : This is my personal blog", + "owner": { + "username": "bthanhtung", + "email": "bthanhtung.se@gmail.com" + }, + "records": { + "URL": "https://tungbt.vercel.app/" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/bthanhtung", + "/x": "https://x.com/_bthanhtung", + "/fb": "https://facebook.com/TungDaDev", + "/linkedin": "https://linkedin.com/in/TungDaDev", + "/viblo": "https://viblo.asia/u/bthanhtung" + }, + "redirect_paths": true + } +} diff --git a/domains/tungtran.json b/domains/tungtran.json index c5eaf28f1..919ae5c8d 100644 --- a/domains/tungtran.json +++ b/domains/tungtran.json @@ -5,7 +5,7 @@ "username": "tunganhtran", "email": "tunganhtran94@gmail.com" }, - "record": { + "records": { "CNAME": "tunganhtran.github.io" } } diff --git a/domains/tunnel.vulcanocraft.json b/domains/tunnel.vulcanocraft.json index e038d3c7d..8105ad8aa 100644 --- a/domains/tunnel.vulcanocraft.json +++ b/domains/tunnel.vulcanocraft.json @@ -1,11 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "email": "", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JPhn4mFGL270NVjNvcLw1eYMU_-BAJ7GiIPBlijkSzPPJsByxT2CJErVgHV3K_QjLQRPMGeQE0jjYHOWFLhlZc2mjav7vcAYrcWjnSa-QKbQho_ppnebX1E8OfLtsKWtvqxfGm3O-ii7Eh4XYo7ozm49gTKed_Ypc1svCFp7SePt5DXzhuDoeJ7Ob-vd8zkmhuIoIBXBERWWnfQgaDDfUwCtkmziOmKGYECzpxK6y1z_jhHcjcftLSXn0S7730nODGhidOB9x-YSCkG-O3e72ECu0KH3SRg-HwJz4pQlmeYXGDZClDe9YG1GSHiW4xa9iT36PE8Q0zBLMvS8UWQh4g.LL602nYC1Zm6b1Rjv_5OGQ.QJymDzTupny-bEtQy-G8hZI1Ey49IDr3ZzhhBwE3Qtg7XQnsDf63q3nAGVX3zEHtK8GWQ-dnDg2FStiBRSihFczry1fYk1BOEbtwDQ-PYnphLeLhZuDz3BzVshnqVavw.1I4mHnmNjPVv4AwJvcUPKA" + "discord": "814891541205876767" }, - "record": { + "records": { "A": ["147.185.221.23"] }, "proxied": true diff --git a/domains/tunzankies.json b/domains/tunzankies.json index 519c87449..156f702ae 100644 --- a/domains/tunzankies.json +++ b/domains/tunzankies.json @@ -1,10 +1,10 @@ { - "owner": { - "description": "tunzankies.is-a.dev", - "username": "Tuan-Dang05", - "discord": "703136026595426305" - }, - "record": { - "CNAME": "portfolio-3-d-nu.vercel.app" - } + "owner": { + "description": "tunzankies.is-a.dev", + "username": "Tuan-Dang05", + "discord": "703136026595426305" + }, + "records": { + "CNAME": "portfolio-3-d-nu.vercel.app" + } } diff --git a/domains/turvenuija.json b/domains/turvenuija.json index d6a1d0483..9bb3835c5 100644 --- a/domains/turvenuija.json +++ b/domains/turvenuija.json @@ -3,7 +3,7 @@ "username": "turvenuija1", "email": "turvenuija@skidd.xyz" }, - "record": { + "records": { "CNAME": "turvenuija1.github.io" } } diff --git a/domains/tushar.json b/domains/tushar.json index d485dbf53..5c5e75da6 100644 --- a/domains/tushar.json +++ b/domains/tushar.json @@ -3,7 +3,7 @@ "username": "tusharvikky", "email": "tusharvikky@gmail.com" }, - "record": { + "records": { "URL": "https://blog.tushardeo.com" } } diff --git a/domains/tushardeo.json b/domains/tushardeo.json index d485dbf53..5c5e75da6 100644 --- a/domains/tushardeo.json +++ b/domains/tushardeo.json @@ -3,7 +3,7 @@ "username": "tusharvikky", "email": "tusharvikky@gmail.com" }, - "record": { + "records": { "URL": "https://blog.tushardeo.com" } } diff --git a/domains/tweets.clyron.json b/domains/tweets.clyron.json index 284409427..e8c23972b 100644 --- a/domains/tweets.clyron.json +++ b/domains/tweets.clyron.json @@ -5,7 +5,7 @@ "username": "theclyron", "email": "onenonlyclyron@gmail.com" }, - "record": { + "records": { "CNAME": "theclyron.github.io" } } diff --git a/domains/twiska.json b/domains/twiska.json index 1e03c0913..e83ee8c58 100644 --- a/domains/twiska.json +++ b/domains/twiska.json @@ -5,7 +5,7 @@ "username": "ttwisstterr", "email": "twiskanadilaa.a@gmail.com" }, - "record": { + "records": { "CNAME": "ttwisstterr.github.io" } } diff --git a/domains/twistedtransistor.json b/domains/twistedtransistor.json new file mode 100644 index 000000000..b67ffc2aa --- /dev/null +++ b/domains/twistedtransistor.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio website", + "repo": "https://github.com/mikeisfree/webzone404", + "owner": { + "username": "mikeisfree", + "email": "mzaperty@gmail.com" + }, + "records": { + "CNAME": "mikeisfree.github.io" + } +} diff --git a/domains/twitchiger.json b/domains/twitchiger.json index 678746aa7..2f35619f7 100644 --- a/domains/twitchiger.json +++ b/domains/twitchiger.json @@ -1,10 +1,9 @@ { "owner": { "username": "devTwitchiger", - "discord": "1057600396991926332", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VXrDR3dafppqxEL5tA4Ynhioq-6_C2maDvX29RFSMg-5F_TzcYa4bFF4wEE1xNVJoBDrUx0mayz0S7evW8BPj4NccUm0DoZTYIkeeoB-luxGmpFXE8K-DkSe76_2l6Sn64HP39MBuCc5B9HM5CCRK-7T0F23mOpIsflqJ-Kd1NqWQtTr45mOv7iW9XS-wgnTAk-Uqmmte4dQHYCHZO4-m3AkDpANzOVjQfjsxFEFeaewP_tvoqrtoQcO4nKsre5GsOAWnwFgn_AkgFSQkkHLqu8sNX7m5SO4n0ywxJx_zDWbqL9N302Hfr_i40mDKbJTjZsztpW1AmLUyOYW9sZvHw.NMlEMswtLXrfcUdkxN6-Yg.ShUu7Zlcnq4mPryzvjzWQ4SU0P0oOsRgOqKvvym2TvJRDTg_L_orP5TrQDOa3HvQ-i--zEJ0eL96bmTHf_zq2HDn6h_gBoIFVaG1uYM36rI.TlBJjdWrnRvs_mGMus306A" + "discord": "1057600396991926332" }, - "record": { + "records": { "CNAME": "devtwitchiger.github.io" } } diff --git a/domains/tycho10101.json b/domains/tycho10101.json index 6395ed621..826c71360 100644 --- a/domains/tycho10101.json +++ b/domains/tycho10101.json @@ -1,10 +1,9 @@ { "owner": { "username": "Tycho10101", - "discord": "914245831748632636", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.dzRWhccSL2217JXqqmZt9m_O4ll58iu-XcmyPaN-Zvqh7DnK4eebxpcMknh7bK4rhm7jdqmcFtKmmnGWaVO7n2mjvFD16Hvl0kQkQB9ZL3p2Z5mBSiOQdAgweS-iFhNSPHoAZhELYah8i4sI7x4AOZOsLoeQ5rUPdpx4raUv0bX9YyklmplyP8P__Iy13sQ0tczfj0o-Imbpeh7XnksgZfGdWMCf5Ez-ZO-hFvA60oTd9VumCAy02wCW7SJjAY8JmVy54O7yE3TdKLzMmJrQxVNZ-wdkZ4wzyAGdOHP2-dphmNDBHhOQ7asdnie7E65oaaxQUk3L43VATc4wJqLJSg.wYyNvIo2UkCm_eoYjsNgng.UsVB_ZdgSeht4eb5VZpHbT4c2-Ej8WSyFp3hMoWdPkcvTbv634WqqsYMyJ7qltpucTMPWZIzT0EL_5C22ImpLiOVCek2BBoYU-MsBKRkg1A.QSeOSDmyPG6VbNxDG0dpSg" + "discord": "914245831748632636" }, - "record": { + "records": { "CNAME": "tycho10101.github.io" } } diff --git a/domains/tykea.json b/domains/tykea.json new file mode 100644 index 000000000..5f7e41f96 --- /dev/null +++ b/domains/tykea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tykealy", + "email": "tykeaboyloy@gmail.com" + }, + "records": { + "CNAME": "tykea.dev" + } +} diff --git a/domains/tylermwise.json b/domains/tylermwise.json index be3714c3f..94f325645 100644 --- a/domains/tylermwise.json +++ b/domains/tylermwise.json @@ -4,7 +4,7 @@ "username": "tylermwise", "email": "contact@teamtbm.org" }, - "record": { + "records": { "CNAME": "tylermwise.github.io" } } diff --git a/domains/typed.json b/domains/typed.json index 4059c4f72..9deabee1c 100644 --- a/domains/typed.json +++ b/domains/typed.json @@ -3,7 +3,7 @@ "username": "TYP3D", "email": "typedmod2@gmail.com" }, - "record": { + "records": { "CNAME": "typedonline.github.io" } } diff --git a/domains/typeling1578.json b/domains/typeling1578.json index c71a007b9..7d2ba9d2d 100644 --- a/domains/typeling1578.json +++ b/domains/typeling1578.json @@ -3,7 +3,7 @@ "username": "typeling1578", "email": "pub@typeling1578.dev" }, - "record": { + "records": { "URL": "https://typeling1578.dev" } } diff --git a/domains/tyrkinn.json b/domains/tyrkinn.json index 7e79ff49e..c26c19d89 100644 --- a/domains/tyrkinn.json +++ b/domains/tyrkinn.json @@ -3,7 +3,7 @@ "username": "tyrkinn", "email": "tyrkinn@pm.me" }, - "record": { + "records": { "CNAME": "tyrkinn.github.io" } } diff --git a/domains/u.json b/domains/u.json index 411c702f2..3a3681e3d 100644 --- a/domains/u.json +++ b/domains/u.json @@ -1,10 +1,9 @@ { "owner": { "username": "ImShyMike", - "discord": "582648583635992622", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Bq0mgKU9dwmp1prf5QSITAVYicrNBYDY6nfK-8pCYPczMD1eFn6HZgpSCJ44STcfKBx9RPHBPpoPd3hJORgmFaS0yZUPyXC4PKTP4nD7I1g7C2hxH4Gtr2eYx9E6JRIDt3ZerfaCo8ysT_7iUwvD-vMPbzxRFVneGKh4gWLnnnIrGgHpl1Y1TkAH6SEPuYXWQuw927ty03K5QW-ebiBR3GB-u7dsbaRrtKv_LmPC-tHecjEwiBpM4FnLDLhul85HfeDPvZMHD1rqhNhjWbGpSdQHSr6XaaZIN4TJev2G8ufV2DIHcrz41Vi5utLZpNb9olWLZMr4HYxqW9k15IF6wA.CbsTKnKnOwj27Wd73bzLMw.lKVruFz7yGBWreBjiXXHmrl3dSREBOMMmzVAD3yUXyHID1TswgBZyQvO4NwxDxLaEcybp-_duJe7lJePnrfeVjui4amjo-KWUhFIcKnrrUc.9OT8WDOrcBmaQmyigxpuCg" + "discord": "582648583635992622" }, - "record": { + "records": { "URL": "https://shymike.is-a.dev" } } diff --git a/domains/uberkey.json b/domains/uberkey.json index 8abb9598e..d63295321 100644 --- a/domains/uberkey.json +++ b/domains/uberkey.json @@ -3,7 +3,7 @@ "username": "uberkey", "email": "postmordial@gmail.com" }, - "record": { + "records": { "CNAME": "uberkey.github.io" } } diff --git a/domains/ud.json b/domains/ud.json new file mode 100644 index 000000000..70c040be5 --- /dev/null +++ b/domains/ud.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "umanga907", + "email": "umanga.907@gmail.com", + "discord": "ud907" + }, + "records": { + "CNAME": "umanga-portfolio.vercel.app" + } +} diff --git a/domains/udaya.json b/domains/udaya.json index 1d53090c8..68b0e6233 100644 --- a/domains/udaya.json +++ b/domains/udaya.json @@ -3,7 +3,7 @@ "username": "udaya28", "email": "udaya28vivek31@gmail.com" }, - "record": { + "records": { "URL": "https://mudaya.web.app" } } diff --git a/domains/udhaya.json b/domains/udhaya.json index 8c66f9b7a..18598869d 100644 --- a/domains/udhaya.json +++ b/domains/udhaya.json @@ -4,7 +4,7 @@ "username": "xaceduke", "email": "kinghtth0@gmail.com" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/udit.json b/domains/udit.json new file mode 100644 index 000000000..1fdb4d4cc --- /dev/null +++ b/domains/udit.json @@ -0,0 +1,11 @@ +{ + "description": "Udit's portfolio", + "repo": "https://github.com/uditdev1/details", + "owner": { + "username": "uditdev", + "email": "uditdev0008@gmail.com" + }, + "records": { + "CNAME": "details-five.vercel.app" + } +} diff --git a/domains/uditha.json b/domains/uditha.json new file mode 100644 index 000000000..3a4511694 --- /dev/null +++ b/domains/uditha.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "udithamanohara" + }, + "records": { + "CNAME": "udithamanohara.github.io" + } +} diff --git a/domains/udyanupal.json b/domains/udyanupal.json new file mode 100644 index 000000000..9f3c2b2d3 --- /dev/null +++ b/domains/udyanupal.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "udyanupal" + }, + "records": { + "CNAME": "usupal.vercel.app" + } +} diff --git a/domains/ugdev.json b/domains/ugdev.json index 4cd799e44..139912863 100644 --- a/domains/ugdev.json +++ b/domains/ugdev.json @@ -3,7 +3,7 @@ "username": "UrgingOfc", "email": "diogo.lopes.silva.ch@gmail.com" }, - "record": { + "records": { "A": ["82.165.193.230"] } } diff --git a/domains/uiopler.json b/domains/uiopler.json index ab928c0a0..684eea5fa 100644 --- a/domains/uiopler.json +++ b/domains/uiopler.json @@ -6,7 +6,7 @@ "email": "uiopler.dev@gmail.com", "discord": "uiopler#6948" }, - "record": { + "records": { "CNAME": "uiopler.github.io" } } diff --git a/domains/ujalakhasiya.json b/domains/ujalakhasiya.json index c1abafdcf..605d12a86 100644 --- a/domains/ujalakhasiya.json +++ b/domains/ujalakhasiya.json @@ -4,7 +4,7 @@ "owner": { "username": "ujalakhasiya" }, - "record": { + "records": { "CNAME": "ujalakhasiya.github.io" } } diff --git a/domains/ujjvaljoshi.json b/domains/ujjvaljoshi.json new file mode 100644 index 000000000..21a606e43 --- /dev/null +++ b/domains/ujjvaljoshi.json @@ -0,0 +1,10 @@ +{ + "description": "Main Page", + "owner": { + "username": "ujjvaljoshi45", + "email": "ujjvaljoshi45@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ujjwal.json b/domains/ujjwal.json index f041d840f..1a3533321 100644 --- a/domains/ujjwal.json +++ b/domains/ujjwal.json @@ -3,7 +3,7 @@ "username": "ujjwalshriwal", "email": "ujjwalshrivastav16@gmail.com" }, - "record": { + "records": { "CNAME": "ujjwalshriwal.github.io" } } diff --git a/domains/uk.json b/domains/uk.json index 9703d5bfb..e893bbaa6 100644 --- a/domains/uk.json +++ b/domains/uk.json @@ -3,7 +3,7 @@ "username": "ukriu", "email": "isadev@ukriu.com" }, - "record": { + "records": { "URL": "https://ukriu.com/", "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=forwardemailnet@ukriu.com" diff --git a/domains/ukasimov.json b/domains/ukasimov.json index 8e310b7eb..e38c3dc35 100644 --- a/domains/ukasimov.json +++ b/domains/ukasimov.json @@ -5,7 +5,7 @@ "telegram": "t.me/ukasimov_dev" }, "description": "Uktambek Kasimov Portfolio", - "record": { + "records": { "A": ["89.232.184.198"] } } diff --git a/domains/ukino.json b/domains/ukino.json index cf8775b36..1d120c059 100644 --- a/domains/ukino.json +++ b/domains/ukino.json @@ -2,7 +2,7 @@ "owner": { "username": "ukinon" }, - "record": { + "records": { "CNAME": "ukino.vercel.app" } } diff --git a/domains/ukrio.json b/domains/ukrio.json index a10085b1a..51384053c 100644 --- a/domains/ukrio.json +++ b/domains/ukrio.json @@ -4,7 +4,7 @@ "email": "isadev@ukriu.com", "discord": "ukriu" }, - "record": { + "records": { "URL": "https://ukriu.com", "TXT": "v=spf1 include:spf.improvmx.com ~all", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] diff --git a/domains/ukriu.json b/domains/ukriu.json index bd405f6e5..6bb86a62a 100644 --- a/domains/ukriu.json +++ b/domains/ukriu.json @@ -3,7 +3,7 @@ "username": "ukriu", "email": "isadev@ukriu.com" }, - "record": { + "records": { "NS": ["love.ns.cloudflare.com", "pete.ns.cloudflare.com"] } } diff --git a/domains/uldoge.json b/domains/uldoge.json index 520010a26..06cd22142 100644 --- a/domains/uldoge.json +++ b/domains/uldoge.json @@ -4,7 +4,7 @@ "username": "Kawrrq", "email": "kawrrq@gmail.com" }, - "record": { + "records": { "A": ["104.243.38.142"] } } diff --git a/domains/ultimatemedia.json b/domains/ultimatemedia.json index b5c8f7c0a..03ae8cdb3 100644 --- a/domains/ultimatemedia.json +++ b/domains/ultimatemedia.json @@ -5,13 +5,8 @@ "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" - ], + "records": { + "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/umar.json b/domains/umar.json new file mode 100644 index 000000000..998663ca8 --- /dev/null +++ b/domains/umar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "umarsidiki", + "email": "siddiquiumar0007@gmail.com" + }, + "records": { + "CNAME": "umarsidiki.github.io" + } +} diff --git a/domains/umarahsan.json b/domains/umarahsan.json index 139682c06..a6d20c682 100644 --- a/domains/umarahsan.json +++ b/domains/umarahsan.json @@ -3,7 +3,7 @@ "username": "umarxz559", "email": "umarxz559@gmail.com" }, - "record": { + "records": { "A": ["141.147.52.210"] } } diff --git a/domains/umer936.json b/domains/umer936.json index b28482e75..0c2039a7a 100644 --- a/domains/umer936.json +++ b/domains/umer936.json @@ -3,7 +3,7 @@ "username": "umer936", "email": "umer936@gmail.com" }, - "record": { + "records": { "URL": "https://umer936.com" } } diff --git a/domains/umerislam.json b/domains/umerislam.json new file mode 100644 index 000000000..94b305bbb --- /dev/null +++ b/domains/umerislam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "umer-islam", + "email": "umer.islam474@gmail.com" + }, + "records": { + "CNAME": "umerislam.netlify.app" + } +} diff --git a/domains/umesh.json b/domains/umesh.json index f3868f619..f7c306269 100644 --- a/domains/umesh.json +++ b/domains/umesh.json @@ -3,7 +3,7 @@ "username": "compCoder007", "email": "competentcoder007@gmail.com" }, - "record": { + "records": { "CNAME": "compcoder007.github.io" } } diff --git a/domains/undeadevs.json b/domains/undeadevs.json index 8c051acf9..dcc4dbd72 100644 --- a/domains/undeadevs.json +++ b/domains/undeadevs.json @@ -3,7 +3,7 @@ "username": "undeadevs", "email": "jangantanyaaku14@gmail.com" }, - "record": { + "records": { "CNAME": "undeadevs.github.io" } } diff --git a/domains/undefined.json b/domains/undefined.json index d860e36c3..e0618fe4a 100644 --- a/domains/undefined.json +++ b/domains/undefined.json @@ -1,12 +1,11 @@ { "description": "This subdomain is for my personal portfolio website.", - "repo": "https://github.com/baokhang4930/baokhang4930.github.io", "owner": { - "username": "baokhang4930", + "username": "actuallyundefined", "email": "baokhang4930@gmail.com", "twitter": "undefiined__" }, - "record": { + "records": { "NS": ["elijah.ns.cloudflare.com", "jo.ns.cloudflare.com"] } } diff --git a/domains/unicatevn.json b/domains/unicatevn.json index 918e28ed4..18d24e054 100644 --- a/domains/unicatevn.json +++ b/domains/unicatevn.json @@ -3,7 +3,7 @@ "username": "unicatevn", "email": "tuananh.vga@gmail.com" }, - "record": { + "records": { "CNAME": "unicatevn.com" } } diff --git a/domains/unichord.json b/domains/unichord.json index b1c380622..aa96ca596 100644 --- a/domains/unichord.json +++ b/domains/unichord.json @@ -5,7 +5,7 @@ "username": "unichord-apps", "email": "unichord@pm.me" }, - "record": { + "records": { "CNAME": "unichord-apps.github.io" } } diff --git a/domains/unicorn.json b/domains/unicorn.json new file mode 100644 index 000000000..cf058358e --- /dev/null +++ b/domains/unicorn.json @@ -0,0 +1,11 @@ +{ + "description": "Domain for dynamic DNS updates and Cloudflare Tunnel setup for demo purposes.", + "owner": { + "username": "bnfone", + "email": "is-a-dev-registration.zbden@simplelogin.com" + }, + "records": { + "NS": ["adelaide.ns.cloudflare.com", "arnold.ns.cloudflare.com"] + }, + "proxied": false +} diff --git a/domains/unidentifiedx.json b/domains/unidentifiedx.json index a0fa9e633..3eb18ec47 100644 --- a/domains/unidentifiedx.json +++ b/domains/unidentifiedx.json @@ -3,7 +3,7 @@ "username": "UnidentifiedX", "email": "sunzizhuo33@gmail.com" }, - "record": { + "records": { "CNAME": "unidentifiedx.github.io" } } diff --git a/domains/unlux.json b/domains/unlux.json new file mode 100644 index 000000000..fb7a4f31e --- /dev/null +++ b/domains/unlux.json @@ -0,0 +1,10 @@ +{ + "description": "Porfolio website link for lux", + "owner": { + "username": "unlux", + "email": "support@unlux.dev" + }, + "records": { + "URL": "https://unlux.dev" + } +} diff --git a/domains/unnst.json b/domains/unnst.json index 9e96de052..578a62d52 100644 --- a/domains/unnst.json +++ b/domains/unnst.json @@ -3,7 +3,7 @@ "username": "482migs", "email": "amberisamab@gmail.com" }, - "record": { + "records": { "CNAME": "unnst.github.io" } } diff --git a/domains/unseen.json b/domains/unseen.json index 7e5520386..8a91e39c4 100644 --- a/domains/unseen.json +++ b/domains/unseen.json @@ -5,7 +5,7 @@ "username": "UnseenAcoustics", "email": "edwir122@gmail.com" }, - "record": { + "records": { "CNAME": "unseenacoustics.github.io" } } diff --git a/domains/untitled.json b/domains/untitled.json deleted file mode 100644 index d5342d887..000000000 --- a/domains/untitled.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hosting my website", - "repo": "https://github.com/VihaanAnand/VihaanAnand.github.io", - "owner": { - "username": "VihaanAnand", - "email": "macos14sonoma@gmail.com" - }, - "record": { - "CNAME": "vihaananand.github.io" - } -} diff --git a/domains/up.json b/domains/up.json index f8391a293..0441fe009 100644 --- a/domains/up.json +++ b/domains/up.json @@ -4,7 +4,7 @@ "username": "alputv", "email": "rekortmenstars@gmail.com" }, - "record": { + "records": { "CNAME": "up-devs.github.io" } } diff --git a/domains/upcraft.json b/domains/upcraft.json index 2e44a14fc..0c38b8513 100644 --- a/domains/upcraft.json +++ b/domains/upcraft.json @@ -3,7 +3,7 @@ "username": "upcraftlp", "twitter": "upcraftlp" }, - "record": { + "records": { "URL": "https://upcraft.dev" } } diff --git a/domains/upd.oxmc.json b/domains/upd.oxmc.json index 28a3a3fb7..bb175cb4a 100644 --- a/domains/upd.oxmc.json +++ b/domains/upd.oxmc.json @@ -4,13 +4,8 @@ "email": "oxmc7769.mail@gmail.com", "discord": "oxmc7769" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=contact:oxmc7769.mail@gmail.com" } diff --git a/domains/upload.cdn.akk1to.json b/domains/upload.cdn.akk1to.json index ea77451e4..e5b7d05df 100644 --- a/domains/upload.cdn.akk1to.json +++ b/domains/upload.cdn.akk1to.json @@ -1,12 +1,12 @@ { - "description": "file uploader of akk1to.dev", - "repo": "https://github.com/akk1to/upload.cdn", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "CNAME": "akk1to.github.io" - } + "description": "file uploader of akk1to.dev", + "repo": "https://github.com/akk1to/upload.cdn", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "records": { + "CNAME": "akk1to.github.io" + } } diff --git a/domains/uptime-ryo.json b/domains/uptime-ryo.json index c43440b7b..892c9407c 100644 --- a/domains/uptime-ryo.json +++ b/domains/uptime-ryo.json @@ -3,7 +3,7 @@ "username": "FrosGaming", "email": "dgfrosdgfros@gmail.com" }, - "record": { + "records": { "A": ["69.197.135.203"] } } diff --git a/domains/uptime.acronical.json b/domains/uptime.acronical.json index fa8380b23..7dc9d2ef3 100644 --- a/domains/uptime.acronical.json +++ b/domains/uptime.acronical.json @@ -3,7 +3,7 @@ "username": "AcronicalYT", "email": "acronicalbusiness@gmail.com" }, - "record": { + "records": { "A": ["138.68.133.84"] } } diff --git a/domains/uptime.trung.json b/domains/uptime.trung.json index b99730c4e..488318c9f 100644 --- a/domains/uptime.trung.json +++ b/domains/uptime.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/uralamin.json b/domains/uralamin.json index 5b665c11f..18f2acb39 100644 --- a/domains/uralamin.json +++ b/domains/uralamin.json @@ -3,7 +3,7 @@ "username": "MrAlaminH", "discord": "440574272856129547" }, - "record": { + "records": { "CNAME": "retro-folio.vercel.app" } } diff --git a/domains/urging.json b/domains/urging.json index 4cd799e44..139912863 100644 --- a/domains/urging.json +++ b/domains/urging.json @@ -3,7 +3,7 @@ "username": "UrgingOfc", "email": "diogo.lopes.silva.ch@gmail.com" }, - "record": { + "records": { "A": ["82.165.193.230"] } } diff --git a/domains/url.aditya.json b/domains/url.aditya.json deleted file mode 100644 index 18dab9f28..000000000 --- a/domains/url.aditya.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "subdomain for link redirection", - "repo": "https://github.com/dedomil", - "owner": { - "username": "dedomil", - "email": "ishqaddy@gmail.com", - "twitter": "aadixl", - "discord": "dedomil" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/us.mcstatus.json b/domains/us.mcstatus.json index 64dce2b97..f9e5a3f93 100644 --- a/domains/us.mcstatus.json +++ b/domains/us.mcstatus.json @@ -3,7 +3,7 @@ "username": "EducatedSuddenBucket", "email": "educatedsuddenbucket@gmail.com" }, - "record": { + "records": { "A": ["34.120.54.55"], "AAAA": ["2600:1901:0:6d85::"] } diff --git a/domains/usakhil.json b/domains/usakhil.json index 2e262a266..23ca8cc4a 100644 --- a/domains/usakhil.json +++ b/domains/usakhil.json @@ -3,7 +3,7 @@ "username": "usakhil121", "email": "usakhil121@gmail.com" }, - "record": { + "records": { "CNAME": "usakhil121.github.io" } } diff --git a/domains/usamakhalid.json b/domains/usamakhalid.json new file mode 100644 index 000000000..0326cfc9b --- /dev/null +++ b/domains/usamakhalid.json @@ -0,0 +1,11 @@ +{ + "description": "THIS IS MY PORTFOLIO WEBSITE, But I am still working on it. I will update it soon.", + "repo": "https://github.com/usama0155/portfolio", + "owner": { + "username": "usama0155", + "email": "usamak5453@gmail.com" + }, + "records": { + "CNAME": "usama0155.github.io" + } +} diff --git a/domains/use-ho2.json b/domains/use-ho2.json index 5366d809e..0423e76c7 100644 --- a/domains/use-ho2.json +++ b/domains/use-ho2.json @@ -3,7 +3,7 @@ "username": "hussain22g", "email": "hussainaltahoo944@gmail.com" }, - "record": { + "records": { "CNAME": "ho2.pages.dev" } } diff --git a/domains/usekyber.json b/domains/usekyber.json new file mode 100644 index 000000000..3c5c10ca5 --- /dev/null +++ b/domains/usekyber.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roger-padrell", + "discord": "1335907071287230527" + }, + "records": { + "CNAME": "0fd7817ec6-hosting.gitbook.io" + } +} diff --git a/domains/user-exe.json b/domains/user-exe.json index e61e47475..a3486b48d 100644 --- a/domains/user-exe.json +++ b/domains/user-exe.json @@ -5,7 +5,7 @@ "username": "mrhappyma", "email": "is-a-dev@a.userexe.me" }, - "record": { + "records": { "CNAME": "mrhappyma.github.io" } } diff --git a/domains/user0.json b/domains/user0.json index f20cd0911..88f35a7c2 100644 --- a/domains/user0.json +++ b/domains/user0.json @@ -3,10 +3,9 @@ "repo": "https://github.com/user0-07161/user0-07161.github.io", "owner": { "username": "user0-07161", - "email": "user0thenyancat@proton.me", - "discord": "1213799919920484364" + "email": "user0thenyancat@proton.me" }, - "record": { - "CNAME": "user0-07161.github.io" + "records": { + "CNAME": "user0-07161.codeberg.page" } } diff --git a/domains/ushnish.json b/domains/ushnish.json new file mode 100644 index 000000000..4899deb14 --- /dev/null +++ b/domains/ushnish.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "UshnishG", + "email": "ghosalushnish@gmail.com" + }, + "records": { + "URL": "https://ushnish.vercel.app" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/UshnishG", + "/linkedin": "https://www.linkedin.com/in/ushnishghosal" + }, + "redirect_paths": true + } +} diff --git a/domains/usingh.json b/domains/usingh.json index 669dc4a20..88368e795 100644 --- a/domains/usingh.json +++ b/domains/usingh.json @@ -3,7 +3,7 @@ "username": "dr-hofstadter", "email": "utsav.raj.338@gmail.com" }, - "record": { + "records": { "CNAME": "dr-hofstadter.github.io" } } diff --git a/domains/usmanbaig.json b/domains/usmanbaig.json new file mode 100644 index 000000000..c5b75a66b --- /dev/null +++ b/domains/usmanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UsmanBaig001", + "email": "usmanbaig1572@gmail.com" + }, + "records": { + "CNAME": "usmanbaig-dev.vercel.app" + } +} diff --git a/domains/utils.json b/domains/utils.json index 61cd102b9..133c003fc 100644 --- a/domains/utils.json +++ b/domains/utils.json @@ -3,7 +3,7 @@ "username": "Blob2763", "email": "blob2763@gmail.com" }, - "record": { + "records": { "CNAME": "blob2763.github.io" } } diff --git a/domains/utkarsh-singhal.json b/domains/utkarsh-singhal.json new file mode 100644 index 000000000..1fadfd38f --- /dev/null +++ b/domains/utkarsh-singhal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Utkarsh-Singhal-26", + "email": "singhalutkarsh26@gmail.com" + }, + "records": { + "CNAME": "utkarsh-singhal.vercel.app" + } +} diff --git a/domains/utkarsh.json b/domains/utkarsh.json index 27aa394c1..c7ccccafa 100644 --- a/domains/utkarsh.json +++ b/domains/utkarsh.json @@ -2,9 +2,9 @@ "repo": "https://github.com/utkarshkrsingh/website", "owner": { "username": "Utkarshkrsingh", - "email": "utkarshkrsingh@proton.me" + "email": "utkarsh.isa.dev@gmail.com" }, - "record": { + "records": { "CNAME": "utkarshkrsingh.github.io" } } diff --git a/domains/uto.json b/domains/uto.json index 2f31574a5..64f757717 100644 --- a/domains/uto.json +++ b/domains/uto.json @@ -3,7 +3,7 @@ "username": "utoshu", "discord": "537265937200709672" }, - "record": { + "records": { "CNAME": "uto.pages.dev" } } diff --git a/domains/utsabadhikari.json b/domains/utsabadhikari.json index 136a2dd1f..d10cf84fa 100644 --- a/domains/utsabadhikari.json +++ b/domains/utsabadhikari.json @@ -1,11 +1,9 @@ { "owner": { "username": "utsab1231", - "email": "", - "discord": "573163740309094413", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J8Zs7sfsirMCXNl8iuUK7xdq5hrLgPvMdrbhp1XfqXBrego8HGcVBEaKNzqZu16DXgMlcJUFJylKY6C7TUPYheXfPDP0Wh66NT6o7wFUsWFuQ6g5NSiU8ctXlI1K7f1_PXwO0iLw5rQOmgh4iw7NCOYti3rF1RXuae3OtNWWQnxgVEv9jieBwtsDhmhjgY2LZxPNJmqvoYCsR9-ytJoNgKYnjxwFqd_bCOKsBBRUAFGKMY031aNZRQTO5EoLOilDOfpznb_DtVmQCZZ_FI56mkKgJhupqIOxJ_bJgKNF6GbvAjSElMdWoVq_YsLU1ivao7sFdXjecje9yOzcBkOuPA.papQF2Ih2vL7uZ8R2B0Dug.2QknjUZW3VXKfWNhnEG5x7GBXEMg1cowfgNMQYmdyPZ64cc5hq6xtB_ENmlpEu7_QzddxpAqxqeKUGTgxwP2ksbAsDFoV02SUMjyiGlYADE.ljIgAJ8-syYcHV1cKeLziA" + "discord": "573163740309094413" }, - "record": { + "records": { "CNAME": "personportfolio-e25d4.web.app" } } diff --git a/domains/utsav.json b/domains/utsav.json index 669dc4a20..88368e795 100644 --- a/domains/utsav.json +++ b/domains/utsav.json @@ -3,7 +3,7 @@ "username": "dr-hofstadter", "email": "utsav.raj.338@gmail.com" }, - "record": { + "records": { "CNAME": "dr-hofstadter.github.io" } } diff --git a/domains/uukelele.json b/domains/uukelele.json new file mode 100644 index 000000000..6d37e88d3 --- /dev/null +++ b/domains/uukelele.json @@ -0,0 +1,12 @@ +{ + "repo": "https://github.com/uukelele-scratch/uukelele-scratch.github.io", + "owner": { + "username": "uukelele-scratch", + "email": "robustrobot11@gmail.com", + "discord": "robustrobot11" + }, + "records": { + "CNAME": "uukelele-scratch.github.io" + }, + "proxied": true +} diff --git a/domains/uuphoria2.json b/domains/uuphoria2.json deleted file mode 100644 index f429aa66c..000000000 --- a/domains/uuphoria2.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This is to be used on my blog.", - "repo": "https://github.com/uuphoria2/uuphoria2.github.io", - "owner": { - "username": "uuphoria2", - "email": "gman36147@gmail.com" - }, - "record": { - "CNAME": "uuphoria2.github.io" - } -} diff --git a/domains/uwu.json b/domains/uwu.json index cef1c4605..78c1b0b2c 100644 --- a/domains/uwu.json +++ b/domains/uwu.json @@ -3,7 +3,7 @@ "username": "orangci", "discord": "orangc" }, - "record": { - "URL": "https://orangc.xyz" + "records": { + "URL": "https://orangc.net" } } diff --git a/domains/uwunotislove.json b/domains/uwunotislove.json index abccaf63c..78de884d1 100644 --- a/domains/uwunotislove.json +++ b/domains/uwunotislove.json @@ -3,7 +3,7 @@ "username": "uwunotislove", "email": "moody761@hotmail.com" }, - "record": { + "records": { "CNAME": "uwunotislove.github.io" } } diff --git a/domains/uynilo9.json b/domains/uynilo9.json index 1d45c6b28..b606e5a30 100644 --- a/domains/uynilo9.json +++ b/domains/uynilo9.json @@ -4,7 +4,7 @@ "email": "uynilo9@outlook.com", "twitter": "uynilo9" }, - "record": { + "records": { "CNAME": "uynilo9.pages.dev" } } diff --git a/domains/uzi.json b/domains/uzi.json index e644c518b..3a429d4db 100644 --- a/domains/uzi.json +++ b/domains/uzi.json @@ -3,7 +3,7 @@ "username": "crischutu07", "discord": "1001747794954039368" }, - "record": { + "records": { "CNAME": "crischutu07.github.io" } } diff --git a/domains/v.json b/domains/v.json index e3cb8bea1..6b2845b95 100644 --- a/domains/v.json +++ b/domains/v.json @@ -1,9 +1,8 @@ { "owner": { - "username": "leofelix908", - "email": "" + "username": "leofelix908" }, - "record": { + "records": { "CNAME": "xproject-xi.vercel.app" } } diff --git a/domains/v0.json b/domains/v0.json index 9a2269538..7886e8895 100644 --- a/domains/v0.json +++ b/domains/v0.json @@ -3,7 +3,7 @@ "username": "YoruAkio", "email": "yoruakio@proton.me" }, - "record": { + "records": { "CNAME": "vo-kio.pages.dev" } } diff --git a/domains/v1.neon.json b/domains/v1.neon.json index 4ba1f40e7..17e418cb4 100644 --- a/domains/v1.neon.json +++ b/domains/v1.neon.json @@ -7,7 +7,7 @@ "twitter": "NeonTheNerd", "email": "goodboyneon03@gmail.com" }, - "record": { + "records": { "CNAME": "goodboyneon.github.io" } } diff --git a/domains/v205.json b/domains/v205.json index 3853b88fe..35a1843ed 100644 --- a/domains/v205.json +++ b/domains/v205.json @@ -4,7 +4,7 @@ "email": "s@v205.obl.ong", "discord": "1159944006587924490" }, - "record": { + "records": { "CNAME": "v205.hackclub.app" } } diff --git a/domains/v3x.json b/domains/v3x.json index 0ab34cda2..3482a167c 100644 --- a/domains/v3x.json +++ b/domains/v3x.json @@ -3,7 +3,7 @@ "username": "v3vishal", "discord": "v3xg" }, - "record": { + "records": { "CNAME": "v3vishal.github.io" } } diff --git a/domains/vacer.json b/domains/vacer.json index 7d40b2385..b9de98e5c 100644 --- a/domains/vacer.json +++ b/domains/vacer.json @@ -3,7 +3,7 @@ "username": "Strongboost", "email": "gigantenjaeger.junior@gmail.com" }, - "record": { + "records": { "A": ["5.253.246.227"] } } diff --git a/domains/vachanmn.json b/domains/vachanmn.json index ae385acda..ee4abc5b2 100644 --- a/domains/vachanmn.json +++ b/domains/vachanmn.json @@ -3,7 +3,7 @@ "username": "vachanmn123", "email": "vachanmn123@gmail.com" }, - "record": { + "records": { "CNAME": "edge.redirect.pizza" } } diff --git a/domains/vaibhav.json b/domains/vaibhav.json index fe5db90c2..3c6a72702 100644 --- a/domains/vaibhav.json +++ b/domains/vaibhav.json @@ -3,7 +3,7 @@ "username": "VaibhavSys", "email": "vaibhavsys@protonmail.com" }, - "record": { + "records": { "NS": ["daphne.ns.cloudflare.com", "venkat.ns.cloudflare.com"] } } diff --git a/domains/vaishnavi.json b/domains/vaishnavi.json new file mode 100644 index 000000000..95d2de04a --- /dev/null +++ b/domains/vaishnavi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vaishnavid07", + "email": "vaishnavi.deshmukh201@gmail.com" + }, + "records": { + "CNAME": "vaishnavid07.github.io" + } +} diff --git a/domains/val.json b/domains/val.json index 4ddc0ed19..342fbf8f9 100644 --- a/domains/val.json +++ b/domains/val.json @@ -5,7 +5,7 @@ "username": "Btwonu", "email": "btwonu@gmail.com" }, - "record": { + "records": { "CNAME": "btwonu.github.io" } } diff --git a/domains/valdoyking.json b/domains/valdoyking.json new file mode 100644 index 000000000..ff5db6a03 --- /dev/null +++ b/domains/valdoyking.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "valdoyking", + "email": "osvaldovillalba-02@hotmail.com" + }, + "records": { + "CNAME": "valdoyking.github.io" + } +} diff --git a/domains/valentin-nicheglod.json b/domains/valentin-nicheglod.json new file mode 100644 index 000000000..c3d070c05 --- /dev/null +++ b/domains/valentin-nicheglod.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "valentinnicheglod", + "email": "nicheglod69@gmail.com" + }, + "records": { + "CNAME": "valentinnicheglod.github.io" + } +} diff --git a/domains/valenvivaldi.json b/domains/valenvivaldi.json new file mode 100644 index 000000000..cbb5bc994 --- /dev/null +++ b/domains/valenvivaldi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "valenvivaldi" + }, + "records": { + "URL": "https://github.com/valenvivaldi" + } +} diff --git a/domains/valerius.json b/domains/valerius.json new file mode 100644 index 000000000..55e79fed0 --- /dev/null +++ b/domains/valerius.json @@ -0,0 +1,11 @@ +{ + "description": "valerius.is-a.dev", + "repo": "https://github.com/valerius21/register", + "owner": { + "username": "valerius21", + "email": "dev@voidcode.net" + }, + "records": { + "CNAME": "valerius.me" + } +} diff --git a/domains/valeron.json b/domains/valeron.json index 67530b01c..2be8eb8fe 100644 --- a/domains/valeron.json +++ b/domains/valeron.json @@ -3,7 +3,7 @@ "username": "Valeron-T", "email": "valeron.toscano@xaviers.edu.in" }, - "record": { + "records": { "URL": "https://valwebsitedata.z29.web.core.windows.net/" } } diff --git a/domains/valo-io.json b/domains/valo-io.json index 3451aed67..97c160052 100644 --- a/domains/valo-io.json +++ b/domains/valo-io.json @@ -7,7 +7,7 @@ "twitter": "Valo_iO", "discord": "valo_io" }, - "record": { + "records": { "CNAME": "valo-io.github.io" } } diff --git a/domains/vampirepapi.json b/domains/vampirepapi.json new file mode 100644 index 000000000..ecd1d19cd --- /dev/null +++ b/domains/vampirepapi.json @@ -0,0 +1,11 @@ +{ + "description": "vampirepapi's portfolio website", + "repo": "https://github.com/vampirepapi/vampirepapi.github.io", + "owner": { + "username": "vampirepapi", + "email": "shubhamsourabh8@gmail.com" + }, + "records": { + "CNAME": "vampirepapi.github.io" + } +} diff --git a/domains/vamtic.json b/domains/vamtic.json index a4cdc40f6..3aff585cd 100644 --- a/domains/vamtic.json +++ b/domains/vamtic.json @@ -3,7 +3,7 @@ "username": "vamtic", "email": "vamtic@yahoo.com" }, - "record": { + "records": { "A": ["89.106.200.1"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": [ diff --git a/domains/vanhzxje.json b/domains/vanhzxje.json index 29b609e1d..4e8b779d9 100644 --- a/domains/vanhzxje.json +++ b/domains/vanhzxje.json @@ -6,7 +6,7 @@ "email": "suzunesokawaiii@gmail.com", "discord": "912968921148186624" }, - "record": { + "records": { "CNAME": "vanhzxje.github.io" } } diff --git a/domains/vanillia.json b/domains/vanillia.json index a10d14844..ab76feb18 100644 --- a/domains/vanillia.json +++ b/domains/vanillia.json @@ -4,7 +4,7 @@ "email": "sketched@disroot.org", "discord": "sketched#1613" }, - "record": { + "records": { "MX": ["mail.postale.io"], "TXT": "v=spf1 mx ~all" } diff --git a/domains/vanmanh.json b/domains/vanmanh.json index 84c017a28..670cf7b66 100644 --- a/domains/vanmanh.json +++ b/domains/vanmanh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vanmanhdev", - "email": "vanmanh2763@gmail.com" - }, - "record": { - "CNAME": "vanmanhdev.github.io" - } + "owner": { + "username": "vanmanhdev", + "email": "vanmanh2763@gmail.com" + }, + "records": { + "CNAME": "vanmanhdev.github.io" + } } diff --git a/domains/vansh.json b/domains/vansh.json index 233743bc4..13f00e202 100644 --- a/domains/vansh.json +++ b/domains/vansh.json @@ -3,7 +3,7 @@ "username": "vansh-goel", "email": "goelvansh2@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-mu-three-49.vercel.app" }, "description": "Personal Portfolio" diff --git a/domains/vanshaggarwal.json b/domains/vanshaggarwal.json new file mode 100644 index 000000000..4fa0238f3 --- /dev/null +++ b/domains/vanshaggarwal.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aggarwalvansh", + "email": "aggvans@gmail.com" + }, + "records": { + "CNAME": "portfolio-rho-one-46.vercel.app" + }, + "proxied": true +} diff --git a/domains/vantage.json b/domains/vantage.json index 78848c6a7..56c7bd2af 100644 --- a/domains/vantage.json +++ b/domains/vantage.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "blaze-099", - "email": "", - "discord": "1186691290759434350", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QLo89mhM4fE7MyI0fwTOoE1gwfqgTROR4XPtssSWrCFKdjAMxwFLRxSVKfTTk47ZdvtFcNQ-9i6zANMmvnKWqb4lk-A_IYDgCTI-rzfl7lIAsff092nh30jydQF4TCaaPwer3yrDZs-cHqnPJe1M9tVGLROeCpH5ndmRFCFCTp0SF5fIlyed9zElmsvmVm1In-pKSTFghIOm7W5A0Y_TGgGRz1GnCd7rUL0y_2Pww__W_JmiPYaqnIaas5YfHZSeSv68f4u6TicVOUFMCmRCAeF17ajRHB8NJJmAZ_5o0pvPs-YTFttOGRRp0MV7AMObacFMFpYufgvFM6amMBuKFA.nFT85dthPK_PLwebqK3zVw.w_dE_O8xeNrfXjtiPx_VM3hBR_p0i8huGEZfvGafCIBBtWm42cuIYAZ_kNh_qai31o3i7oRRi7UXOBGeShlvXW7znEXB9nx6Xy81QrbL878.l30yta1ym3dOqtn8MC7dZA" - }, - "record": { - "CNAME": "valorant-overlay-phi.vercel.app" - } + "owner": { + "username": "blaze-099", + "discord": "1186691290759434350" + }, + "records": { + "CNAME": "valorant-overlay-phi.vercel.app" + } } diff --git a/domains/vapedevv.json b/domains/vapedevv.json index 10bbaa733..537bddd38 100644 --- a/domains/vapedevv.json +++ b/domains/vapedevv.json @@ -6,7 +6,7 @@ "email": "vapedev2@gmail.com", "discord": "vapedevv#5640" }, - "record": { + "records": { "CNAME": "jadjasjafsafasfasfsa.github.io" } } diff --git a/domains/vapr.json b/domains/vapr.json new file mode 100644 index 000000000..011930dc3 --- /dev/null +++ b/domains/vapr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bitsamedida", + "email": "bitsamedida@gmail.com" + }, + "records": { + "CNAME": "vapr.vercel.app" + } +} diff --git a/domains/varad.json b/domains/varad.json new file mode 100644 index 000000000..3da5e3ea0 --- /dev/null +++ b/domains/varad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Qvme", + "email": "varad.pi@proton.me" + }, + "records": { + "CNAME": "qvme.github.io" + } +} diff --git a/domains/varexity.json b/domains/varexity.json index 49a7ce293..f72c21563 100644 --- a/domains/varexity.json +++ b/domains/varexity.json @@ -3,7 +3,7 @@ "username": "varexity", "email": "varexity@gmail.com" }, - "record": { + "records": { "CNAME": "varexity.github.io" } } diff --git a/domains/varun-kumar.json b/domains/varun-kumar.json new file mode 100644 index 000000000..86485cd55 --- /dev/null +++ b/domains/varun-kumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "varun-kumar-code", + "email": "varunkumar1329@gmail.com" + }, + "records": { + "CNAME": "varun-kumar-code.github.io" + } +} diff --git a/domains/varun.json b/domains/varun.json new file mode 100644 index 000000000..f9eeeed00 --- /dev/null +++ b/domains/varun.json @@ -0,0 +1,11 @@ +{ + "description": "Devloper Portfolio", + "repo": "https://github.com/varun-chaudhary/portfolio.github.io", + "owner": { + "username": "varun-chaudhary", + "email": "varunc105@gmail.com" + }, + "records": { + "CNAME": "varun-chaudhary.github.io" + } +} diff --git a/domains/varunkumarbilwal.json b/domains/varunkumarbilwal.json index 9ed78f251..30c5d4d42 100644 --- a/domains/varunkumarbilwal.json +++ b/domains/varunkumarbilwal.json @@ -3,7 +3,7 @@ "username": "varunkumarbilwal", "email": "varunkumarbilwal@gmail.com" }, - "record": { + "records": { "CNAME": "varunkumarbilwal.github.io" } } diff --git a/domains/vasanth.json b/domains/vasanth.json index 07f5aa342..2c416101e 100644 --- a/domains/vasanth.json +++ b/domains/vasanth.json @@ -1,13 +1,12 @@ { "description": "Vasanth personal Blog", - "repo": "https://github.com/itsparser", "owner": { "username": "62d2", "email": "itsparser@gmail.com", "twitter": "itsparser", "discord": "itsparser" }, - "record": { + "records": { "CNAME": "itsparser.github.io" } } diff --git a/domains/vasharma05.json b/domains/vasharma05.json index 99ba05d92..2a3481170 100644 --- a/domains/vasharma05.json +++ b/domains/vasharma05.json @@ -5,7 +5,7 @@ "username": "vasharma05", "email": "sharmava05@gmail.com" }, - "record": { + "records": { "CNAME": "vasharma05.github.io" } } diff --git a/domains/vasu-xd.json b/domains/vasu-xd.json new file mode 100644 index 000000000..7ce345879 --- /dev/null +++ b/domains/vasu-xd.json @@ -0,0 +1,13 @@ +{ + "description": "Vasu's personal developer website", + "repo": "https://github.com/Vasu-XD/Vasu-XD", + "owner": { + "username": "VasuXD", + "email": "mr.v4su@gmail.com", + "telegram": "VasuXD", + "github": "Vasu-XD" + }, + "records": { + "CNAME": "vasu-xd.github.io" + } +} diff --git a/domains/vasu.json b/domains/vasu.json index d49d85e3e..48d82abad 100644 --- a/domains/vasu.json +++ b/domains/vasu.json @@ -7,7 +7,7 @@ "telegram": "VasuXD", "github": "Vasu-xD" }, - "record": { + "records": { "CNAME": "vasu-xd.github.io" } } diff --git a/domains/vasuxd.json b/domains/vasuxd.json new file mode 100644 index 000000000..b7e219dfd --- /dev/null +++ b/domains/vasuxd.json @@ -0,0 +1,13 @@ +{ + "description": "Vasu's personal developer website", + "repo": "https://github.com/VasuXD/VasuXD", + "owner": { + "username": "VasuXD", + "email": "mr.v4su@gmail.com", + "telegram": "VasuXD", + "github": "VasuXD" + }, + "records": { + "CNAME": "vasuxd.github.io" + } +} diff --git a/domains/vaxad.json b/domains/vaxad.json index 5972927fe..d97d2c347 100644 --- a/domains/vaxad.json +++ b/domains/vaxad.json @@ -5,7 +5,7 @@ "username": "vaxad", "email": "varadprabhu111@gmail.com" }, - "record": { + "records": { "URL": "https://varadprabhu.vercel.app" } } diff --git a/domains/vbc6.json b/domains/vbc6.json index c21e76daf..8867ea795 100644 --- a/domains/vbc6.json +++ b/domains/vbc6.json @@ -3,7 +3,7 @@ "username": "tsb3-a2", "email": "tsb3.a2@proton.me" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/vbkg.json b/domains/vbkg.json index 246e78a47..31ddba076 100644 --- a/domains/vbkg.json +++ b/domains/vbkg.json @@ -3,7 +3,7 @@ "username": "qekbd7c6", "email": "qekbd7c6@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/vdevanarayan.json b/domains/vdevanarayan.json index 91adbc61a..a71b4d290 100644 --- a/domains/vdevanarayan.json +++ b/domains/vdevanarayan.json @@ -3,7 +3,8 @@ "username": "CodeTitan7", "email": "octavius1983bc@gmail.com" }, - "record": { - "URL": "https://vdevanarayan.vercel.app" + "records": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=NcQI-OpciiCC6SO5bs1ws-ptlIZ9AEZskMszLGwFcOY" } } diff --git a/domains/ved.json b/domains/ved.json index b3265de53..bc5e843bf 100644 --- a/domains/ved.json +++ b/domains/ved.json @@ -3,7 +3,7 @@ "username": "ved-patel226", "email": "talk2ved11@gmail.com" }, - "record": { + "records": { "CNAME": "ved-patel226.github.io" } } diff --git a/domains/vedant.json b/domains/vedant.json new file mode 100644 index 000000000..8694badbe --- /dev/null +++ b/domains/vedant.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "theonlyvedu" + }, + "records": { + "CNAME": "theonlyvedu.github.io" + } +} diff --git a/domains/veeju.json b/domains/veeju.json index 8fd6431c9..404ffffc3 100644 --- a/domains/veeju.json +++ b/domains/veeju.json @@ -3,7 +3,7 @@ "username": "pocopepe", "email": "avijusanjai@gmail.com" }, - "record": { + "records": { "CNAME": "portfolio-4m8.pages.dev" } } diff --git a/domains/veen.json b/domains/veen.json index c7826462d..b22eaf3ac 100644 --- a/domains/veen.json +++ b/domains/veen.json @@ -3,7 +3,7 @@ "username": "Vihaan7207", "email": "vmikki7207@gmail.com" }, - "record": { + "records": { "CNAME": "vihaan7207.github.io" } } diff --git a/domains/veirt.json b/domains/veirt.json index b808da15b..3617303d2 100644 --- a/domains/veirt.json +++ b/domains/veirt.json @@ -3,7 +3,7 @@ "username": "Veirt", "email": "wetrau8zs@mozmail.com" }, - "record": { + "records": { "CNAME": "veirt.github.io" } } diff --git a/domains/vela.json b/domains/vela.json index c46c8660c..6c4779572 100644 --- a/domains/vela.json +++ b/domains/vela.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "v3laDev", - "email": "27khero@proton.me" - }, - "record": { - "CNAME": "v3laDev.github.io" - } + "owner": { + "username": "v3laDev", + "email": "27khero@proton.me" + }, + "records": { + "CNAME": "v3laDev.github.io" + } } diff --git a/domains/venarimusic.json b/domains/venarimusic.json index c11bc1fff..f78078c3b 100644 --- a/domains/venarimusic.json +++ b/domains/venarimusic.json @@ -3,7 +3,7 @@ "username": "Zirmith", "email": "f2v74yt@gmail.com" }, - "record": { + "records": { "CNAME": "vens-music-cove.onrender.com" } } diff --git a/domains/venkat.json b/domains/venkat.json new file mode 100644 index 000000000..683893442 --- /dev/null +++ b/domains/venkat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "venkatk-git", + "email": "venkatkumar.profiles@gmail.com" + }, + "records": { + "CNAME": "v3nkat.vercel.app" + } +} diff --git a/domains/venquidev.json b/domains/venquidev.json index 80f8dfdc0..8378cf1a1 100644 --- a/domains/venquidev.json +++ b/domains/venquidev.json @@ -3,7 +3,7 @@ "username": "venquidev", "email": "edwinrey5211@gmail.com" }, - "record": { + "records": { "CNAME": "venquidev.pages.dev" } } diff --git a/domains/vercel.cutedog5695.json b/domains/vercel.cutedog5695.json index 2b34a2843..20d0e4578 100644 --- a/domains/vercel.cutedog5695.json +++ b/domains/vercel.cutedog5695.json @@ -4,7 +4,7 @@ "discord": "716306888492318790", "twitter": "iostpa" }, - "record": { + "records": { "CNAME": "cutedog5695test.vercel.app" } } diff --git a/domains/vercel.uwu.json b/domains/vercel.uwu.json index c76f22995..d1978c5ab 100644 --- a/domains/vercel.uwu.json +++ b/domains/vercel.uwu.json @@ -4,7 +4,7 @@ "discord": "orangc", "email": "orangc@proton.me" }, - "record": { + "records": { "CNAME": "orxngc-github-io.vercel.app" } } diff --git a/domains/vercelstats.json b/domains/vercelstats.json index ef4c3a88b..237a80f2f 100644 --- a/domains/vercelstats.json +++ b/domains/vercelstats.json @@ -1,10 +1,9 @@ { "owner": { "username": "urasdbwd", - "discord": "291889282032074752", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Rk-tjtU1eVZHHNI82WkQoEiO7wtfqi_6oY-9xBg7tg1mIJpxyKGdsiwV_TAp3mX-iG_U9htCCFHbJLhGfX4RqVkdUiHmyawfIjohS0VRBqRLOJd3-9ReuVtGUpQ_DOaRiRAk-2Hlhk_ezQL4AiuhXHD28mmIYeKUStsdzBlbRmpQlwoYM-2yFIKMEMkh-CRc-icSqg4qfGW5L-a9b4ZWpJyjueT-Im_zFuSOlxxNw2973ReDrufBlH9aDP5Jaf182kkLC_3Tqal06AFP3E9_fDDop6I9LHgGSxDgdGxsk6sk_JqNiCuEPj5FPrtyzT8w8d2wrgPbT6JAm2TbATwPpg.is8KsKYKveS3VWScvBcJcw.jR2xMNvc4N8daMiq4nI4_XWM0DHse1UNfSoArKF9udkm5-8e9LDupPjzNeA-gLaSXE_bLOxbq3ofTUqFWrckSdQodJfJzqCaU_fhrYxGmX8.T8FA4E_QlW4nmGGOhNUFAg" + "discord": "291889282032074752" }, - "record": { + "records": { "A": ["193.149.164.209"] } } diff --git a/domains/verify.alora.json b/domains/verify.alora.json new file mode 100644 index 000000000..b696a037d --- /dev/null +++ b/domains/verify.alora.json @@ -0,0 +1,10 @@ +{ + "description": "Verification Site For my Roleplay Server", + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com" + }, + "records": { + "CNAME": "europaverification.vercel.app" + } +} diff --git a/domains/verkyana.json b/domains/verkyana.json index 46398569d..077f59320 100644 --- a/domains/verkyana.json +++ b/domains/verkyana.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Keiyanas", - "email": "katzswax@gmail.com" - }, - "record": { - "CNAME": "keiyanas.github.io" - } + "owner": { + "username": "Keiyanas", + "email": "katzswax@gmail.com" + }, + "records": { + "CNAME": "keiyanas.github.io" + } } diff --git a/domains/verma-sanjeet.json b/domains/verma-sanjeet.json index 9a14a09a4..f6f72976c 100644 --- a/domains/verma-sanjeet.json +++ b/domains/verma-sanjeet.json @@ -4,7 +4,7 @@ "owner": { "username": "verma-sanjeet" }, - "record": { + "records": { "CNAME": "verma-sanjeet.github.io" } } diff --git a/domains/veronicacamarzana.json b/domains/veronicacamarzana.json new file mode 100644 index 000000000..1f181c156 --- /dev/null +++ b/domains/veronicacamarzana.json @@ -0,0 +1,11 @@ +{ + "description": "Veronica Camarzana Website", + "repo": "https://github.com/vcamarzana/web", + "owner": { + "username": "vcamarzana", + "email": "veronicacamarzana@outlook.es" + }, + "records": { + "CNAME": "vcamarzana.github.io" + } +} diff --git a/domains/versions.johna.json b/domains/versions.johna.json index cd82b41ad..1b55a97db 100644 --- a/domains/versions.johna.json +++ b/domains/versions.johna.json @@ -5,7 +5,7 @@ "username": "Johna-123", "email": "j-verstraaten@hotmail.com" }, - "record": { + "records": { "CNAME": "version-johna.pages.dev" } } diff --git a/domains/verstandlxs.json b/domains/verstandlxs.json index e67dedc0c..b9351a18d 100644 --- a/domains/verstandlxs.json +++ b/domains/verstandlxs.json @@ -3,7 +3,7 @@ "username": "byKeksYT", "email": "community@verstandlxs.de" }, - "record": { + "records": { "CNAME": "verstandlxs.eu" } } diff --git a/domains/vesly.json b/domains/vesly.json index 8147fd31d..28f814c2e 100644 --- a/domains/vesly.json +++ b/domains/vesly.json @@ -3,7 +3,7 @@ "username": "Veslydev", "email": "theflashtrdublaj@gmail.com" }, - "record": { + "records": { "A": ["88.209.248.121"] } } diff --git a/domains/veygax.json b/domains/veygax.json new file mode 100644 index 000000000..259c76456 --- /dev/null +++ b/domains/veygax.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "veygax", + "email": "veyga@checkpoint.llc", + "discord": "1119938236245094521" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/vgwarden.json b/domains/vgwarden.json index cb2b3886e..3153e1817 100644 --- a/domains/vgwarden.json +++ b/domains/vgwarden.json @@ -2,7 +2,7 @@ "owner": { "username": "VGWARDEN" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/vhardik.json b/domains/vhardik.json index edc213e29..bc483486c 100644 --- a/domains/vhardik.json +++ b/domains/vhardik.json @@ -5,7 +5,7 @@ "username": "Hardik-Vanani", "email": "vananihardik8553@gmail.com" }, - "record": { + "records": { "CNAME": "hardik-vanani.github.io" } } diff --git a/domains/vi0leta.json b/domains/vi0leta.json index def51632a..5866567c0 100644 --- a/domains/vi0leta.json +++ b/domains/vi0leta.json @@ -3,7 +3,7 @@ "username": "vi0letadev", "email": "vi0leta@riseup.net" }, - "record": { + "records": { "A": ["37.27.4.76"] } } diff --git a/domains/vibez.json b/domains/vibez.json index 39114e3b1..72a71e26d 100644 --- a/domains/vibez.json +++ b/domains/vibez.json @@ -3,7 +3,7 @@ "username": "PayDash", "email": "Theoneand200@gmail.com" }, - "record": { + "records": { "CNAME": "paydash.github.io" } } diff --git a/domains/vic.json b/domains/vic.json index a939602f6..48f707063 100644 --- a/domains/vic.json +++ b/domains/vic.json @@ -6,7 +6,7 @@ "email": "vicxd@pm.me", "twitter": "vicjajsalu2" }, - "record": { + "records": { "CNAME": "v1ctorio.github.io" } } diff --git a/domains/vicentelopez.json b/domains/vicentelopez.json new file mode 100644 index 000000000..00f3ae105 --- /dev/null +++ b/domains/vicentelopez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lopezvcnt", + "email": "lopezvcnt@gmail.com" + }, + "description": "Vicente López portfolio showcasing skills and projects for profesional purpose.", + "records": { + "CNAME": "lopezvcnt.github.io" + } +} diff --git a/domains/victoneux.json b/domains/victoneux.json index c2ae7a87e..530d7c0dc 100644 --- a/domains/victoneux.json +++ b/domains/victoneux.json @@ -5,7 +5,7 @@ "username": "Victoneux", "email": "victoneux@protonmail.com" }, - "record": { + "records": { "CNAME": "victoneux.github.io" } } diff --git a/domains/victor.json b/domains/victor.json index e1890bc10..be23419b9 100644 --- a/domains/victor.json +++ b/domains/victor.json @@ -3,7 +3,7 @@ "username": "victoroliveira", "email": "victoroliveira.eng@gmail.com" }, - "record": { + "records": { "CNAME": "victoroliveira.github.io" } } diff --git a/domains/victordev.json b/domains/victordev.json new file mode 100644 index 000000000..4538bd050 --- /dev/null +++ b/domains/victordev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VictorHumberto01", + "email": "victor.humberto.dev@gmail.com" + }, + "records": { + "CNAME": "victor-humberto.vercel.app" + } +} diff --git a/domains/victoria.json b/domains/victoria.json index 42888f702..e9e7bb600 100644 --- a/domains/victoria.json +++ b/domains/victoria.json @@ -1,9 +1,8 @@ { "owner": { - "username": "itahseen", - "email": "" + "username": "itahseen" }, - "record": { + "records": { "CNAME": "viktoriaa.vercel.app" } } diff --git a/domains/victormak.json b/domains/victormak.json index bcff28194..7e28d5f45 100644 --- a/domains/victormak.json +++ b/domains/victormak.json @@ -3,7 +3,7 @@ "username": "DreamerChaserHAH", "email": "ehekunhah@gmail.com" }, - "record": { + "records": { "CNAME": "dreamerchaserhah.github.io" } } diff --git a/domains/victoroliveira.json b/domains/victoroliveira.json index e1890bc10..be23419b9 100644 --- a/domains/victoroliveira.json +++ b/domains/victoroliveira.json @@ -3,7 +3,7 @@ "username": "victoroliveira", "email": "victoroliveira.eng@gmail.com" }, - "record": { + "records": { "CNAME": "victoroliveira.github.io" } } diff --git a/domains/victorvickie.json b/domains/victorvickie.json index b4faaf6fd..a0bd05780 100644 --- a/domains/victorvickie.json +++ b/domains/victorvickie.json @@ -4,7 +4,7 @@ "email": "s.vickie14@gmail.com", "discord": "448131424655114250" }, - "record": { + "records": { "URL": "https://vk.is-a.dev" } } diff --git a/domains/vien.json b/domains/vien.json index e5bfbe783..f220d151f 100644 --- a/domains/vien.json +++ b/domains/vien.json @@ -3,7 +3,7 @@ "username": "VienDeveloper", "email": "vien@courvix.com" }, - "record": { + "records": { "CNAME": "viendeveloper.github.io" } } diff --git a/domains/viernes.json b/domains/viernes.json new file mode 100644 index 000000000..dec56679f --- /dev/null +++ b/domains/viernes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "br0k3r", + "email": "br0k3r@protonmail.com" + }, + "records": { + "CNAME": "viernes.surge.sh" + } +} diff --git a/domains/viet.json b/domains/viet.json new file mode 100644 index 000000000..a104d3723 --- /dev/null +++ b/domains/viet.json @@ -0,0 +1,12 @@ +{ + "description": "Secondary domain for vietthe.dev", + "repo": "https://github.com/vietthedev/vietthe.dev", + "owner": { + "username": "vietthedev", + "email": "vietthedev@gmail.com", + "discord": "vietthedev" + }, + "records": { + "NS": ["evangeline.ns.cloudflare.com", "salvador.ns.cloudflare.com"] + } +} diff --git a/domains/viggo.json b/domains/viggo.json index f26ac6f26..13034cb4d 100644 --- a/domains/viggo.json +++ b/domains/viggo.json @@ -4,7 +4,7 @@ "email": "ViggAlm@gmail.com", "discord": "930932488040226876" }, - "record": { + "records": { "CNAME": "viggalm.github.io" } } diff --git a/domains/vighnesh.json b/domains/vighnesh.json new file mode 100644 index 000000000..f084dca62 --- /dev/null +++ b/domains/vighnesh.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "thevighneshpawar", + "email": "vighneshpawar004@gmail.com" + }, + "records": { + "CNAME": "thevighneshpawar.github.io", + "MX": [ + { + "priority": 10, + "target": "mx1.improvmx.com" + }, + { + "priority": 20, + "target": "mx2.improvmx.com" + } + ], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + }, + "proxied": true +} diff --git a/domains/vighnesh153.json b/domains/vighnesh153.json new file mode 100644 index 000000000..8be6b101f --- /dev/null +++ b/domains/vighnesh153.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vighnesh153", + "email": "pikachu@vighnesh153.dev" + }, + "records": { + "CNAME": "vighnesh153-app.web.app" + } +} diff --git a/domains/vigikaran.json b/domains/vigikaran.json new file mode 100644 index 000000000..cb146dfe8 --- /dev/null +++ b/domains/vigikaran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vigikaran", + "email": "vigikaran.php@gmail.com" + }, + "records": { + "URL": "https://www.linkedin.com/in/vigikaran/" + } +} diff --git a/domains/vigkrishna.json b/domains/vigkrishna.json index d95b228b0..6cb7103fb 100644 --- a/domains/vigkrishna.json +++ b/domains/vigkrishna.json @@ -5,7 +5,7 @@ "username": "vigkrishna", "email": "vigkrishna@yahoo.com" }, - "record": { + "records": { "CNAME": "vigkrishna.github.io" } } diff --git a/domains/vignesh.json b/domains/vignesh.json new file mode 100644 index 000000000..41330643e --- /dev/null +++ b/domains/vignesh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Vignesh025", + "email": "vigneshjayakumar9221@gmail.com", + "discord": "vignesh025" + }, + "records": { + "CNAME": "vigneshportfolio1.vercel.app" + } +} diff --git a/domains/vihanga.json b/domains/vihanga.json index 22a3cde82..b22ca8f1d 100644 --- a/domains/vihanga.json +++ b/domains/vihanga.json @@ -6,7 +6,7 @@ "email": "vihangapubg44@gmail.com", "twitter": "vihangayt" }, - "record": { + "records": { "CNAME": "vihangaashin.github.io" } } diff --git a/domains/vihangayt.json b/domains/vihangayt.json index 6fc71b507..b74d52901 100644 --- a/domains/vihangayt.json +++ b/domains/vihangayt.json @@ -4,7 +4,7 @@ "email": "vihangapubg44@gmail.com", "discord": "1088099426570092594" }, - "record": { + "records": { "CNAME": "vihangapi.vercel.app" } } diff --git a/domains/vik.json b/domains/vik.json index 2de2f59c2..236bcf2e9 100644 --- a/domains/vik.json +++ b/domains/vik.json @@ -5,7 +5,7 @@ "username": "xd-vik", "email": "vivekcodzz@gmail.com" }, - "record": { + "records": { "CNAME": "imvik.vercel.app" } } diff --git a/domains/vikas.json b/domains/vikas.json new file mode 100644 index 000000000..32e863b9b --- /dev/null +++ b/domains/vikas.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kvikas063", + "email": "vikas_063@hotmail.com" + }, + "description": "portofolio website.", + "records": { + "CNAME": "kvikas063.github.io" + } +} diff --git a/domains/vikipranata.json b/domains/vikipranata.json new file mode 100644 index 000000000..1da7db1d7 --- /dev/null +++ b/domains/vikipranata.json @@ -0,0 +1,12 @@ +{ + "description": "Domain for personal web pages", + "owner": { + "username": "vikipranata", + "email": "helovikipranata@gmail.com" + }, + "records": { + "CNAME": "vikipranata.github.io", + "TXT": "google-site-verification=P0NDXXGrIMQIApUCl70HKX0nLphXZtzeW2B4qckwuLE" + }, + "proxied": true +} diff --git a/domains/vikram.json b/domains/vikram.json index 99fdaff36..f53b483c4 100644 --- a/domains/vikram.json +++ b/domains/vikram.json @@ -6,7 +6,7 @@ "email": "vs423502@gmail.com", "twitter": "vikramisdev" }, - "record": { + "records": { "CNAME": "vikramisdev.netlify.app" } } diff --git a/domains/vikrant.json b/domains/vikrant.json index bddc18231..bdea45dc9 100644 --- a/domains/vikrant.json +++ b/domains/vikrant.json @@ -3,7 +3,7 @@ "username": "diluteoxygen", "email": "diluteoxygen@gmail.com" }, - "record": { + "records": { "CNAME": "diluteoxygen.github.io" } } diff --git a/domains/vikyaiyer.json b/domains/vikyaiyer.json index a1231b169..1b2b2eb29 100644 --- a/domains/vikyaiyer.json +++ b/domains/vikyaiyer.json @@ -5,7 +5,7 @@ "username": "vikyaiyer", "email": "vikyaiyer1997@gmail.com" }, - "record": { + "records": { "CNAME": "vikyaiyer.github.io" } } diff --git a/domains/vilari.json b/domains/vilari.json index 51bf8a171..62cc74dea 100644 --- a/domains/vilari.json +++ b/domains/vilari.json @@ -3,7 +3,7 @@ "username": "VilariStorms", "email": "vilari@anonymail.nl" }, - "record": { + "records": { "A": ["24.199.103.194"] } } diff --git a/domains/vimalsaraswat.json b/domains/vimalsaraswat.json index 677ca4ac5..09af4391f 100644 --- a/domains/vimalsaraswat.json +++ b/domains/vimalsaraswat.json @@ -6,7 +6,7 @@ "email": "saraswatvimal1@gmail.com", "twitter": "vimalsaraswat00" }, - "record": { + "records": { "CNAME": "vimalsaraswat.github.io" } } diff --git a/domains/vinay.json b/domains/vinay.json new file mode 100644 index 000000000..80e2296e4 --- /dev/null +++ b/domains/vinay.json @@ -0,0 +1,13 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/vinugawade/vinux.in", + "owner": { + "username": "vinugawade", + "email": "vinulike11@gmail.com", + "linkedin": "https://www.linkedin.com/in/vinu-gawade", + "discord": "830872854677422150" + }, + "records": { + "CNAME": "vinux.in" + } +} diff --git a/domains/vinayak.json b/domains/vinayak.json index 1e62273c0..a11952909 100644 --- a/domains/vinayak.json +++ b/domains/vinayak.json @@ -6,7 +6,7 @@ "email": "inbox.vinayak@gmail.com", "twitter": "_vinayak_k" }, - "record": { + "records": { "CNAME": "vinayakkulkarni.dev" } } diff --git a/domains/vinayaka.json b/domains/vinayaka.json new file mode 100644 index 000000000..846d1b69c --- /dev/null +++ b/domains/vinayaka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinayaka-iyer", + "email": "vinayakaiyer999@gmail.com" + }, + "records": { + "CNAME": "vinayaka-portfolio.vercel.app" + } +} diff --git a/domains/vinceale7082.json b/domains/vinceale7082.json index 4d7391ffa..8b9b8f498 100644 --- a/domains/vinceale7082.json +++ b/domains/vinceale7082.json @@ -2,10 +2,9 @@ "owner": { "username": "VinceAle7082", "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + "discord": "1078447459900063816" }, - "record": { + "records": { "URL": "https://vinceale7082.com" } } diff --git a/domains/vincent.json b/domains/vincent.json new file mode 100644 index 000000000..e34821dad --- /dev/null +++ b/domains/vincent.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinvin27", + "email": "simsichepac+is-a@gmail.com" + }, + "records": { + "CNAME": "vincent-homepage.pages.dev" + } +} diff --git a/domains/vincyxir.json b/domains/vincyxir.json index 10c26981d..2c63e5bec 100644 --- a/domains/vincyxir.json +++ b/domains/vincyxir.json @@ -3,7 +3,7 @@ "username": "vincyxiroff", "email": "vincyxir@gmail.com" }, - "record": { + "records": { "CNAME": "vincyxiroff.github.io" } } diff --git a/domains/vineet.json b/domains/vineet.json index a3c3a0a18..265844df6 100644 --- a/domains/vineet.json +++ b/domains/vineet.json @@ -6,7 +6,7 @@ "email": "vind3v17@gmail.com", "twitter": "vineetstwt" }, - "record": { + "records": { "URL": "https://iamv1n.github.io" } } diff --git a/domains/vineeth.json b/domains/vineeth.json new file mode 100644 index 000000000..bb3ab3cb3 --- /dev/null +++ b/domains/vineeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vineeth-motati", + "email": "vineethmotati@duck.com" + }, + "records": { + "CNAME": "vineeth-reddy-motati.vercel.app" + } +} diff --git a/domains/vineetkhemnani.json b/domains/vineetkhemnani.json index 673371587..c22dadd9e 100644 --- a/domains/vineetkhemnani.json +++ b/domains/vineetkhemnani.json @@ -5,7 +5,7 @@ "username": "vineetkhemnani", "email": "vineetkhemnani09@gmail.com" }, - "record": { + "records": { "CNAME": "vineetkhemnani.github.io" } } diff --git a/domains/vinicius.json b/domains/vinicius.json index 5f4e477f5..0e7868c00 100644 --- a/domains/vinicius.json +++ b/domains/vinicius.json @@ -1,12 +1,11 @@ { "description": "My personal website", - "repo": "https://github.com/vncsmnl", "owner": { "username": "vncsmnl", "twitter": "vncsmnl", "discord": "vncsmnl#7835" }, - "record": { + "records": { "CNAME": "vncsmnl.github.io" } } diff --git a/domains/vinitshah.json b/domains/vinitshah.json new file mode 100644 index 000000000..630f74795 --- /dev/null +++ b/domains/vinitshah.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Webisite", + "repo": "https://github.com/vinitshah101/portfolio-website", + "owner": { + "username": "vinitshah101", + "email": "vinitshahofficial@gmail.com" + }, + "records": { + "CNAME": "vinitshah101.github.io" + } +} diff --git a/domains/vinn.json b/domains/vinn.json index e4ee201d5..61297c4c6 100644 --- a/domains/vinn.json +++ b/domains/vinn.json @@ -3,7 +3,7 @@ "username": "VinnDev", "email": "vinndeveloper@gmail.com" }, - "record": { + "records": { "CNAME": "vinndev.github.io" } } diff --git a/domains/vintheweirdass.json b/domains/vintheweirdass.json index f1fffe798..c3fc2a9c2 100644 --- a/domains/vintheweirdass.json +++ b/domains/vintheweirdass.json @@ -6,7 +6,9 @@ "twitter": "vintheweirdass", "discord": "vintheweirdass" }, - "record": { - "URL": "https://vtwa.is-a.dev" + "records": { + "URL": "https://vtwa.is-a.dev", + "TXT": ["zoho-verification=zb23163854.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], + "MX": ["mx.zoho.com"] } } diff --git a/domains/vinvin.json b/domains/vinvin.json new file mode 100644 index 000000000..17c012a93 --- /dev/null +++ b/domains/vinvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinvin27", + "email": "simsichepac@gmail.com" + }, + "records": { + "CNAME": "vincent-homepage.pages.dev" + } +} diff --git a/domains/violet.json b/domains/violet.json new file mode 100644 index 000000000..464fa68d6 --- /dev/null +++ b/domains/violet.json @@ -0,0 +1,10 @@ +{ + "description": "My Main Portfolio Page", + "owner": { + "username": "violetlaire", + "email": "violetlaire@proton.me" + }, + "records": { + "CNAME": "violetmainpage.vercel.app" + } +} diff --git a/domains/vip.json b/domains/vip.json new file mode 100644 index 000000000..d43e5e29e --- /dev/null +++ b/domains/vip.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amir-khazaee", + "email": "amir.khazaee@optiop.org" + }, + "records": { + "A": ["95.217.160.242"] + } +} diff --git a/domains/viperadnan.json b/domains/viperadnan.json index 70e61f044..96d0a6153 100644 --- a/domains/viperadnan.json +++ b/domains/viperadnan.json @@ -5,7 +5,7 @@ "username": "viperadnan-git", "email": "viperadnan@gmail.com" }, - "record": { + "records": { "CNAME": "viperadnan-git.github.io" } } diff --git a/domains/viplav-mistry.json b/domains/viplav-mistry.json index df3269860..9cebfb29f 100644 --- a/domains/viplav-mistry.json +++ b/domains/viplav-mistry.json @@ -4,7 +4,7 @@ "owner": { "username": "viplav-mistry" }, - "record": { + "records": { "CNAME": "viplav-mistry.github.io" } } diff --git a/domains/vipul.json b/domains/vipul.json index b6e147d96..d54382b46 100644 --- a/domains/vipul.json +++ b/domains/vipul.json @@ -4,7 +4,7 @@ "username": "VipulOG", "email": "vipultyagi386+github@gmail.com" }, - "record": { + "records": { "CNAME": "vipulog.github.io" } } diff --git a/domains/viral-gadhiya.json b/domains/viral-gadhiya.json index f491c65cf..f38d79430 100644 --- a/domains/viral-gadhiya.json +++ b/domains/viral-gadhiya.json @@ -4,7 +4,7 @@ "owner": { "username": "viral-gadhiya" }, - "record": { + "records": { "CNAME": "viral-gadhiya.github.io" } } diff --git a/domains/viral-soni.json b/domains/viral-soni.json new file mode 100644 index 000000000..4ed9158d2 --- /dev/null +++ b/domains/viral-soni.json @@ -0,0 +1,11 @@ +{ + "description": "My personal developer profile", + "repo": "https://github.com/R-Okje/my-wasm-website", + "owner": { + "username": "R-Okje", + "email": "vssviral@gmail.com" + }, + "records": { + "CNAME": "r-okje.github.io" + } +} diff --git a/domains/viren-trivedi.json b/domains/viren-trivedi.json index d04c634ed..35f236020 100644 --- a/domains/viren-trivedi.json +++ b/domains/viren-trivedi.json @@ -4,7 +4,7 @@ "owner": { "username": "viren-trivedi" }, - "record": { + "records": { "CNAME": "viren-trivedi.github.io" } } diff --git a/domains/virtual.json b/domains/virtual.json new file mode 100644 index 000000000..6fc5a17cc --- /dev/null +++ b/domains/virtual.json @@ -0,0 +1,11 @@ +{ + "description": "Virtual is a Dev", + "repo": "https://github.com/MarkAguirre26/virtual", + "owner": { + "username": "MarkAguirre26", + "email": "markaguirre26@gmail.com" + }, + "records": { + "URL": "https://virtual-dev.netlify.app/" + } +} diff --git a/domains/vishal.json b/domains/vishal.json index 91946b3e8..5928c7749 100644 --- a/domains/vishal.json +++ b/domains/vishal.json @@ -1,11 +1,10 @@ { "description": "Welcome to Vishal Sharma's Space on Web", - "repo": "https://github.com/makeavish", "owner": { "username": "makeavish", "email": "hi@vishalsharma.dev" }, - "record": { + "records": { "URL": "https://vishalsharma.dev" } } diff --git a/domains/vishalanarase.json b/domains/vishalanarase.json new file mode 100644 index 000000000..b739fcd3c --- /dev/null +++ b/domains/vishalanarase.json @@ -0,0 +1,12 @@ +{ + "description": "Subdomain for my personal portfolio", + "repo": "https://github.com/vishalanarase/vishalanarase.github.io", + "owner": { + "username": "vishalanarase", + "email": "iamvishalanarase@gmail.com", + "twitter": "vishalanarase" + }, + "records": { + "CNAME": "vishalanarase.github.io" + } +} diff --git a/domains/vishalg.json b/domains/vishalg.json index abd51eac0..f59cb7044 100644 --- a/domains/vishalg.json +++ b/domains/vishalg.json @@ -5,7 +5,7 @@ "username": "vishalpx", "twitter": "vishal26x" }, - "record": { + "records": { "CNAME": "vishalpx.github.io" } } diff --git a/domains/vishalkrsharma.json b/domains/vishalkrsharma.json index 244451508..1710a90d7 100644 --- a/domains/vishalkrsharma.json +++ b/domains/vishalkrsharma.json @@ -5,7 +5,7 @@ }, "description": "Vishal Kumar Sharma - Portfolio", "repo": "https://github.com/vishalkrsharma/portfolio", - "record": { + "records": { "URL": "https://vishalkrsharma.vercel.app" } } diff --git a/domains/vishalxd.json b/domains/vishalxd.json index 2bad1d40e..912041438 100644 --- a/domains/vishalxd.json +++ b/domains/vishalxd.json @@ -3,7 +3,7 @@ "username": "Vishal-1756", "email": "vishalborse2885@gmail.com" }, - "record": { + "records": { "URL": "https://my-portfolio-vishal-1756.vercel.app/" } } diff --git a/domains/vishnu.json b/domains/vishnu.json index 8013950b7..133d0be8b 100644 --- a/domains/vishnu.json +++ b/domains/vishnu.json @@ -5,7 +5,7 @@ "username": "vishnu012", "email": "vishnu012@pm.me" }, - "record": { + "records": { "CNAME": "vishnu012.github.io" } } diff --git a/domains/vishok.json b/domains/vishok.json index b14343e4e..9edc029cb 100644 --- a/domains/vishok.json +++ b/domains/vishok.json @@ -3,7 +3,7 @@ "username": "mvishok", "email": "mvishok2005@gmail.com" }, - "record": { + "records": { "CNAME": "mvishok.github.io" } } diff --git a/domains/vishwapinnawala.json b/domains/vishwapinnawala.json index 4e28c4418..1b796a49e 100644 --- a/domains/vishwapinnawala.json +++ b/domains/vishwapinnawala.json @@ -3,7 +3,7 @@ "username": "vishwapinnawala", "email": "vishwaspinnawala@gmail.com" }, - "record": { + "records": { "A": ["198.91.81.12"] } } diff --git a/domains/visionmate.akshit-jain.json b/domains/visionmate.akshit-jain.json new file mode 100644 index 000000000..1b774d829 --- /dev/null +++ b/domains/visionmate.akshit-jain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshitjain16", + "email": "gang.akshitjain@gmail.com" + }, + "records": { + "URL": "https://vision-mate.netlify.app/" + } +} diff --git a/domains/vismbs.json b/domains/vismbs.json index 3fc62a53b..f354cbbca 100644 --- a/domains/vismbs.json +++ b/domains/vismbs.json @@ -3,7 +3,7 @@ "username": "gzfs", "email": "vismbs@pm.me" }, - "record": { + "records": { "A": ["150.230.141.111"] } } diff --git a/domains/visualdot.json b/domains/visualdot.json index a334503f5..ea5dc928b 100644 --- a/domains/visualdot.json +++ b/domains/visualdot.json @@ -3,7 +3,7 @@ "username": "raidopaizer", "email": "raidotp7@proton.me" }, - "record": { + "records": { "CNAME": "dns.nekoweb.org" } } diff --git a/domains/vitalik.json b/domains/vitalik.json index 372c2886b..c041c6f55 100644 --- a/domains/vitalik.json +++ b/domains/vitalik.json @@ -3,7 +3,7 @@ "username": "satoshi-prefers-monero", "email": "satoshinakamoto@tuta.com" }, - "record": { + "records": { "URL": "https://www.stephencastelphoto.com" } } diff --git a/domains/vivek.json b/domains/vivek.json index 4ca812941..60402be76 100644 --- a/domains/vivek.json +++ b/domains/vivek.json @@ -5,13 +5,8 @@ "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" - ], + "records": { + "A": ["185.199.109.153", "185.199.108.153", "185.199.111.153", "185.199.110.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/vivekkumar.json b/domains/vivekkumar.json index 55ee2bb09..96e479c37 100644 --- a/domains/vivekkumar.json +++ b/domains/vivekkumar.json @@ -5,7 +5,7 @@ "username": "vivekkumarneu", "email": "vivek-kumar@live.in" }, - "record": { + "records": { "CNAME": "vivekkumarneu.github.io" } } diff --git a/domains/vivekpratapsingh.json b/domains/vivekpratapsingh.json index b91daf6ec..2a5b8e297 100644 --- a/domains/vivekpratapsingh.json +++ b/domains/vivekpratapsingh.json @@ -3,7 +3,7 @@ "username": "vpsone", "email": "onenewfacts@gmail.com" }, - "record": { + "records": { "URL": "https://vivek-pratap-singh.vercel.app/" } } diff --git a/domains/vk.json b/domains/vk.json index aaef37b76..ce6169cb9 100644 --- a/domains/vk.json +++ b/domains/vk.json @@ -4,7 +4,7 @@ "email": "s.vickie14@gmail.com", "discord": "448131424655114250" }, - "record": { + "records": { "CNAME": "victorvickie.github.io" } } diff --git a/domains/vlad.json b/domains/vlad.json new file mode 100644 index 000000000..ce6710004 --- /dev/null +++ b/domains/vlad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "uladkaminski", + "email": "i@uladkaminski.com" + }, + "records": { + "CNAME": "uladkaminski.com" + } +} diff --git a/domains/vldm.json b/domains/vldm.json new file mode 100644 index 000000000..2a962ad33 --- /dev/null +++ b/domains/vldm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VLDeMenezes", + "email": "victorleandrodemenezes@gmail.com" + }, + "records": { + "CNAME": "vldm-portafolio.vercel.app" + } +} diff --git a/domains/vlppz.json b/domains/vlppz.json index ea6db3d32..adc892e5c 100644 --- a/domains/vlppz.json +++ b/domains/vlppz.json @@ -3,7 +3,7 @@ "username": "VladimirPapazov88", "email": "vfr.123.op@gmail.com" }, - "record": { + "records": { "CNAME": "main-website-2q4.pages.dev" } } diff --git a/domains/vm.sevinda-herath.json b/domains/vm.sevinda-herath.json deleted file mode 100644 index f827aefb3..000000000 --- a/domains/vm.sevinda-herath.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "sevinda-herath", - "email": "sevindaherath@gmail.com" - }, - "record": { - "A": ["170.64.240.215"] - }, - "proxied": true -} diff --git a/domains/vma.json b/domains/vma.json index aebf97aeb..e9369b3d0 100644 --- a/domains/vma.json +++ b/domains/vma.json @@ -5,7 +5,7 @@ "username": "vmadev-ru", "email": "vmadev.ru@gmail.com" }, - "record": { + "records": { "CNAME": "vmadev-ru.github.io" } } diff --git a/domains/vo.json b/domains/vo.json index 9a2269538..7886e8895 100644 --- a/domains/vo.json +++ b/domains/vo.json @@ -3,7 +3,7 @@ "username": "YoruAkio", "email": "yoruakio@proton.me" }, - "record": { + "records": { "CNAME": "vo-kio.pages.dev" } } diff --git a/domains/voh.json b/domains/voh.json index 3fe1dabaa..41b4fc2d6 100644 --- a/domains/voh.json +++ b/domains/voh.json @@ -3,7 +3,7 @@ "username": "TotallyVoh", "email": "vohonganhPE@gmail.com" }, - "record": { + "records": { "CNAME": "totallyvoh.github.io" } } diff --git a/domains/void.json b/domains/void.json index cb493ef4d..92a5599ef 100644 --- a/domains/void.json +++ b/domains/void.json @@ -3,7 +3,7 @@ "username": "tomgx", "email": "deliveryservice01q@gmail.com" }, - "record": { + "records": { "CNAME": "tomgx.github.io" } } diff --git a/domains/voided.json b/domains/voided.json index 5473e25b8..3e4170929 100644 --- a/domains/voided.json +++ b/domains/voided.json @@ -3,7 +3,7 @@ "username": "VoidedGorilla", "discord": "999697070288027800" }, - "record": { + "records": { "CNAME": "voidedgorilla.github.io" } } diff --git a/domains/voidvault.json b/domains/voidvault.json new file mode 100644 index 000000000..f61c21be9 --- /dev/null +++ b/domains/voidvault.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354586@gmail.com" + }, + "records": { + "CNAME": "nova-blog-tech.vercel.app" + } +} diff --git a/domains/voidz.json b/domains/voidz.json index e2f55ad23..20789f4a8 100644 --- a/domains/voidz.json +++ b/domains/voidz.json @@ -5,7 +5,7 @@ "email": "atharvask2005@gmail.com", "twitter": "gg_voidz" }, - "record": { + "records": { "CNAME": "voidz7.github.io" } } diff --git a/domains/vollow.json b/domains/vollow.json index 8fa708882..6c6a27333 100644 --- a/domains/vollow.json +++ b/domains/vollow.json @@ -3,7 +3,7 @@ "username": "vollowx", "email": "muffinslog@proton.me" }, - "record": { + "records": { "CNAME": "vollowx.github.io" } } diff --git a/domains/vontey.json b/domains/vontey.json new file mode 100644 index 000000000..c1dc32076 --- /dev/null +++ b/domains/vontey.json @@ -0,0 +1,11 @@ +{ + "description": "Im gonna use this website for my personal use", + "repo": "https://github.com/vontey/vontey.github.io", + "owner": { + "username": "vontey", + "email": "ash2vee@outlook.com" + }, + "records": { + "CNAME": "vontey.github.io" + } +} diff --git a/domains/vornexx.json b/domains/vornexx.json index 4a7f7f58a..1098866b9 100644 --- a/domains/vornexx.json +++ b/domains/vornexx.json @@ -4,7 +4,7 @@ "discord": "1149438819834269856", "twitter": "vornexx_" }, - "record": { + "records": { "CNAME": "vornexx.pages.dev" } } diff --git a/domains/votiendung.json b/domains/votiendung.json index 03111a07b..9359ac8c1 100644 --- a/domains/votiendung.json +++ b/domains/votiendung.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dungxibo123", - "email": "votiendung0805@gmail.com" - }, - "record": { - "CNAME": "dungxibo123.github.io" - } + "owner": { + "username": "dungxibo123", + "email": "votiendung0805@gmail.com" + }, + "records": { + "CNAME": "dungxibo123.github.io" + } } diff --git a/domains/voucan.json b/domains/voucan.json new file mode 100644 index 000000000..39a3f62a5 --- /dev/null +++ b/domains/voucan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voucan", + "email": "vcn4313@gmail.com" + }, + "records": { + "CNAME": "voucan.pages.dev" + } +} diff --git a/domains/voxel.json b/domains/voxel.json index 0b48e18ff..2da94f716 100644 --- a/domains/voxel.json +++ b/domains/voxel.json @@ -6,7 +6,7 @@ "email": "voxelcool@gmail.com", "twitter": "voxelhaha" }, - "record": { + "records": { "CNAME": "voxel79.github.io" } } diff --git a/domains/voxj.json b/domains/voxj.json index 12695c40b..56955ad7b 100644 --- a/domains/voxj.json +++ b/domains/voxj.json @@ -3,7 +3,7 @@ "username": "voxj", "discord": "1108039808649015336" }, - "record": { + "records": { "CNAME": "rawintosh.github.io" } } diff --git a/domains/voxxdevv.json b/domains/voxxdevv.json index 6e783b671..812a1ee2d 100644 --- a/domains/voxxdevv.json +++ b/domains/voxxdevv.json @@ -3,9 +3,9 @@ "repo": "https://github.com/voxxdevv/voxxdevv.github.io/lmdesigns", "owner": { "username": "voxxdevv", - "email": "aminrh@icloud.com" + "email": "nft@itis.top" }, - "record": { + "records": { "CNAME": "voxxdevv.github.io" } } diff --git a/domains/vra.json b/domains/vra.json index 144d40066..fa4430724 100644 --- a/domains/vra.json +++ b/domains/vra.json @@ -1,18 +1,10 @@ { - "owner": { - "username": "vra-thenix", - "email": "rawatsiddhant25@gmail.com" - }, - "record": { - "A": [ - "185.199.110.153", - "185.199.109.153", - "185.199.111.153", - "185.199.108.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } + "owner": { + "username": "vra-thenix", + "email": "rawatsiddhant25@gmail.com" + }, + "records": { + "A": ["185.199.110.153", "185.199.109.153", "185.199.111.153", "185.199.108.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] + } } diff --git a/domains/vrachit.json b/domains/vrachit.json new file mode 100644 index 000000000..edc288e8d --- /dev/null +++ b/domains/vrachit.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "Rachitverma2006", + "email": "vrachit@proton.me" + }, + "records": { + "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"], + "TXT": [ + "zoho-verification=zb12977056.zmverify.zoho.in", + "v=spf1 include:zoho.in ~all", + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCs5J8ZRWmki8My0UKBtCjrcEycHYkYsoclcXXTzLSZtXe6KqOS3M/l1nufedCVNcdrdqse1NYYAOx6otp9l0IkiUfKql6gyRKWbQJp+zAmaBGgXC0wKAiNPKJhHf4wiqIJfJgH5bB3I7fdN7Np+mVrDzso23LlQnpHdXMRtZ0iwwIDAQAB" + ], + "CNAME": "vrachit.pages.dev" + }, + "proxied": true +} diff --git a/domains/vrbz.json b/domains/vrbz.json index a7c54de98..a26976d90 100644 --- a/domains/vrbz.json +++ b/domains/vrbz.json @@ -3,7 +3,7 @@ "username": "vrbz", "email": "vrbzzz@proton.me" }, - "record": { + "records": { "CNAME": "vrbz.rf.gd" } } diff --git a/domains/vrivera.json b/domains/vrivera.json new file mode 100644 index 000000000..4e7b65956 --- /dev/null +++ b/domains/vrivera.json @@ -0,0 +1,11 @@ +{ + "description": "personal portfolio", + "repo": "https://github.com/vcntttt/portfolio", + "owner": { + "username": "vcntttt", + "email": "vrivera.dev@gmail.com" + }, + "records": { + "CNAME": "vcntttt.github.io" + } +} diff --git a/domains/vrxxdev.json b/domains/vrxxdev.json index febee3fa1..ca09df0ea 100644 --- a/domains/vrxxdev.json +++ b/domains/vrxxdev.json @@ -3,7 +3,7 @@ "username": "Its-VrxxDev", "email": "vrxxdev@gmail.com" }, - "record": { + "records": { "CNAME": "5c89de66-4d03-4838-842d-4745a6da887d-00-mv6wfn8khxkg.pike.replit.dev" } } diff --git a/domains/vs206.json b/domains/vs206.json new file mode 100644 index 000000000..35be83783 --- /dev/null +++ b/domains/vs206.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev subdomain for my portfolio", + "repo": "https://github.com/vs206/vs206.github.io", + "owner": { + "username": "vs206", + "email": "singhvikal891@gmail.com" + }, + "records": { + "CNAME": "vs206.github.io" + } +} diff --git a/domains/vsecoder.json b/domains/vsecoder.json index 6e50c8520..454b1ec13 100644 --- a/domains/vsecoder.json +++ b/domains/vsecoder.json @@ -6,7 +6,7 @@ "email": "kreepmeister@gmail.com", "twitter": "vsecoder" }, - "record": { + "records": { "CNAME": "vsecoder.github.io" } } diff --git a/domains/vsh.json b/domains/vsh.json index e4fec6333..aa1b53bc1 100644 --- a/domains/vsh.json +++ b/domains/vsh.json @@ -3,7 +3,7 @@ "username": "vshell-vxj", "email": "mark.chexari@gmail.com" }, - "record": { + "records": { "CNAME": "vshell-vxj.github.io" } } diff --git a/domains/vsnu.json b/domains/vsnu.json new file mode 100644 index 000000000..423e2a5c8 --- /dev/null +++ b/domains/vsnu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VishnuKMi", + "email": "vsnuoffc@gmail.com" + }, + "records": { + "CNAME": "portfolio-ten-gamma-18.vercel.app" + } +} diff --git a/domains/vtwa.json b/domains/vtwa.json index c9d554823..50e913192 100644 --- a/domains/vtwa.json +++ b/domains/vtwa.json @@ -6,7 +6,7 @@ "twitter": "vintheweirdass", "discord": "vintheweirdass" }, - "record": { + "records": { "NS": ["christina.ns.cloudflare.com", "mustafa.ns.cloudflare.com"] } } diff --git a/domains/vtx.json b/domains/vtx.json new file mode 100644 index 000000000..893e39110 --- /dev/null +++ b/domains/vtx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jOaawd", + "email": "theyneverfwme@gmail.com" + }, + "records": { + "CNAME": "9bc1w8wq.up.railway.app" + } +} diff --git a/domains/vu.json b/domains/vu.json index d0f09eab0..b115cb2d4 100644 --- a/domains/vu.json +++ b/domains/vu.json @@ -5,7 +5,7 @@ "username": "vuisme", "email": "me@vutn.net" }, - "record": { + "records": { "A": ["140.245.62.158"] } } diff --git a/domains/vugx.json b/domains/vugx.json new file mode 100644 index 000000000..5f24b3eb7 --- /dev/null +++ b/domains/vugx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheVugx", + "email": "thevugx@gmail.com" + }, + "records": { + "CNAME": "thevugx.github.io" + } +} diff --git a/domains/vukhoi.json b/domains/vukhoi.json new file mode 100644 index 000000000..ad9ab8541 --- /dev/null +++ b/domains/vukhoi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khoivt", + "email": "khoidragonslayer+is-a-dev@gmail.com" + }, + "records": { + "CNAME": "vukhoidev.vercel.app" + }, + "proxied": false +} diff --git a/domains/vulcanocraft.json b/domains/vulcanocraft.json index ccd85e431..4f887746d 100644 --- a/domains/vulcanocraft.json +++ b/domains/vulcanocraft.json @@ -1,10 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LFE4hdd7T8k_kGv3iE8p5w1dHdG5P6bV0tWDLkePBkHeQytXDnnlDdlmdKFwEjt_eB1SbPjhAi1Q7Mej6jgJKoP8V5PH6uoAMef0CgBiRz9EQXH9fbzDy5LNYkmu76PZONduIejnPhxohKFIaSkbTZJqnz7962HCUwSNEDptIgumL3-l30iEZ6ytQDzMuwJc4eSrfFh0qIMxvanz4pD2X67uLP-OjEMcEVl9JT4MtsfMFql1e9be3pym-Gi_VSilIFTkZrBOkmyShzkK2YG44z2-iRDPh-p920OxTxpIkytub38_qJ8OMuWrB5uaQ_UhX-YZan4TbMQHXwDY0oRxZg.34fTFW_4uMTgOrh4prtEMA.NoIOnyezwNIixQEnzbBpT0P4Z7ny0WdRBpC87tNeeWSQ-3HFGekyeSht37N8iSYPJW9rShlfpglzqLRQXr0_jOCBQClLWWTWVYnsFWYtfNbKt4ziAJHzs1a-IXZLNi0Y.zVvP0gJYcOXQdhqXuK8XOQ" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "vulcanocraft.pages.dev" } } diff --git a/domains/vulcanwm.json b/domains/vulcanwm.json index 8413352b6..0302d6894 100644 --- a/domains/vulcanwm.json +++ b/domains/vulcanwm.json @@ -5,7 +5,7 @@ "username": "VulcanWM", "email": "vulcanwmemail@gmail.com" }, - "record": { + "records": { "URL": "https://vulcanwm.vercel.app" } } diff --git a/domains/vulehuan.json b/domains/vulehuan.json new file mode 100644 index 000000000..9ec2a8f15 --- /dev/null +++ b/domains/vulehuan.json @@ -0,0 +1,10 @@ +{ + "description": "vulehuan.is-a.dev : This is my personal notebook", + "owner": { + "username": "vulehuan", + "email": "vulehuan@gmail.com" + }, + "records": { + "URL": "https://vulehuan.com" + } +} diff --git a/domains/vulpine.json b/domains/vulpine.json index 396534891..de9a6e304 100644 --- a/domains/vulpine.json +++ b/domains/vulpine.json @@ -3,7 +3,7 @@ "username": "VulpineFriend87", "discord": "911268706112397392" }, - "record": { + "records": { "A": ["69.30.249.53"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] diff --git a/domains/vumacc.json b/domains/vumacc.json index 5df07453a..9076c9509 100644 --- a/domains/vumacc.json +++ b/domains/vumacc.json @@ -5,7 +5,7 @@ "username": "Vumacc", "email": "ays7.vumacc@gmail.com" }, - "record": { + "records": { "URL": "https://vumack.web.app/" } } diff --git a/domains/vuri.json b/domains/vuri.json index fc7d3838f..2d4e56d34 100644 --- a/domains/vuri.json +++ b/domains/vuri.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "CNAME": "vurihuang.github.io" - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "records": { + "CNAME": "vurihuang.github.io" + } } diff --git a/domains/vurihuang.json b/domains/vurihuang.json index fc7d3838f..2d4e56d34 100644 --- a/domains/vurihuang.json +++ b/domains/vurihuang.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "CNAME": "vurihuang.github.io" - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "records": { + "CNAME": "vurihuang.github.io" + } } diff --git a/domains/vvp.json b/domains/vvp.json index 22761e781..fe74956ac 100644 --- a/domains/vvp.json +++ b/domains/vvp.json @@ -1,11 +1,10 @@ { "description": "VVP's Website", - "repo": "https://github.com/VVP3215", "owner": { "username": "VVP", "email": "jamesmentes.management@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/VVP3215" } } diff --git a/domains/vvxrtues.json b/domains/vvxrtues.json index 4788c867b..747c03109 100644 --- a/domains/vvxrtues.json +++ b/domains/vvxrtues.json @@ -3,7 +3,7 @@ "username": "vvirtues", "email": "ezi2468@icloud.com" }, - "record": { + "records": { "CNAME": "vvirtues.github.io" } } diff --git a/domains/vxj.json b/domains/vxj.json index 68372da4a..1c509c212 100644 --- a/domains/vxj.json +++ b/domains/vxj.json @@ -3,7 +3,7 @@ "username": "voxj", "email": "aglinkoyurjevich@gmail.com" }, - "record": { + "records": { "CNAME": "voxj.github.io" } } diff --git a/domains/vxsualized.json b/domains/vxsualized.json index bb5e85530..0216590dd 100644 --- a/domains/vxsualized.json +++ b/domains/vxsualized.json @@ -3,7 +3,7 @@ "username": "vxsualized", "email": "vncntwbr0207@gmail.com" }, - "record": { + "records": { "URL": "https://www.youtube.com/watch?v=dqw4w9wgxcq" } } diff --git a/domains/vyas-rahul.json b/domains/vyas-rahul.json index 6e21a1f28..ddfe85f16 100644 --- a/domains/vyas-rahul.json +++ b/domains/vyas-rahul.json @@ -5,7 +5,7 @@ "username": "vyas-rahul", "email": "vyas-rahul@acquaintsoft.com" }, - "record": { + "records": { "CNAME": "vyas-rahul.github.io" } } diff --git a/domains/vyductan.json b/domains/vyductan.json new file mode 100644 index 000000000..b4b0ab4f0 --- /dev/null +++ b/domains/vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/vyfor.json b/domains/vyfor.json new file mode 100644 index 000000000..2f67920d6 --- /dev/null +++ b/domains/vyfor.json @@ -0,0 +1,11 @@ +{ + "description": "minimal portfolio", + "repo": "https://github.com/vyfor/page", + "owner": { + "username": "vyfor", + "discord": "vyfor" + }, + "records": { + "CNAME": "vyfor.pages.dev" + } +} diff --git a/domains/vysakh.json b/domains/vysakh.json index b85ce80f0..326e11e6f 100644 --- a/domains/vysakh.json +++ b/domains/vysakh.json @@ -5,7 +5,7 @@ "username": "vyshuks", "email": "vyshuks@gmail.com" }, - "record": { + "records": { "CNAME": "vyshuks.github.io" } } diff --git a/domains/w.json b/domains/w.json index 159f1b048..ce4d2048d 100644 --- a/domains/w.json +++ b/domains/w.json @@ -1,9 +1,10 @@ { "owner": { - "username": "wdhdev", - "email": "william@is-a.dev" + "username": "virtualwinter", + "discord": "vwinter", + "email": "me@vwinter.moe" }, - "record": { - "URL": "https://william.is-a.dev" + "records": { + "NS": ["blakely.ns.cloudflare.com", "rocco.ns.cloudflare.com"] } } diff --git a/domains/w0l1d.json b/domains/w0l1d.json new file mode 100644 index 000000000..ec245756b --- /dev/null +++ b/domains/w0l1d.json @@ -0,0 +1,13 @@ +{ + "description": "Personal Software engineer portfolio", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "w0l1d", + "email": "w0l1d.dev@gmail.com", + "linkedin": "linkedin.com/in/w0l1d" + }, + "records": { + "CNAME": "www.w0l1d.me" + }, + "proxied": true +} diff --git a/domains/w3teal.json b/domains/w3teal.json new file mode 100644 index 000000000..a5f62b2c8 --- /dev/null +++ b/domains/w3teal.json @@ -0,0 +1,13 @@ +{ + "description": "Used for my W3Teal's blog website, Keyoxide verification and ImprovMX.", + "repo": "https://github.com/w3teal/w3teal.github.io", + "owner": { + "username": "w3teal", + "email": "w3teal@gmail.com" + }, + "records": { + "A": ["76.76.21.21"], + "TXT": ["aspe:keyoxide.org:YM7J2J5UIVYRWSHRSOTYFYJ2HQ", "v=spf1 include:spf.improvmx.com ~all"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] + } +} diff --git a/domains/wacky.json b/domains/wacky.json index c90e42ef1..9ed62634f 100644 --- a/domains/wacky.json +++ b/domains/wacky.json @@ -4,7 +4,7 @@ "email": "turtles127855@gmail.com", "discord": "838934801972723713" }, - "record": { + "records": { "CNAME": "wacky.pages.dev" } } diff --git a/domains/wade-cheng.json b/domains/wade-cheng.json index a5791cd45..56e68826d 100644 --- a/domains/wade-cheng.json +++ b/domains/wade-cheng.json @@ -3,7 +3,7 @@ "username": "wade-cheng", "email": "wadecheng3301@gmail.com" }, - "record": { + "records": { "CNAME": "wade-cheng.github.io" } } diff --git a/domains/waffle.json b/domains/waffle.json index e0ac261a7..14c2d1931 100644 --- a/domains/waffle.json +++ b/domains/waffle.json @@ -1,10 +1,9 @@ { "owner": { "username": "thunderbrown", - "discord": "1136724508963786853", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IOt6Fe7HwzPWLgMCnhEWxnQ5iIO_7N-JQQxbASxBod0HEN6leTAkKtT12vE4eQ8LQl-KyngOrCV3DXqMsm0TBQ-i50SATi0ulBUm0Y4DK5BE1ImiiI5r1k9wTNcIkscbjoPx-9UCXHJu4YSCCBO2ue1qabXS_qZBMoca9YoBhIRkm4TQdTHtQpBgPdEhQxpUTMLufSthViymi0gLtfrvN370LB5Ifn6uKEwqELbPgCguPrdgfRZ2IoDMmqIAjPammrzY38o4su-V11VHfaP2zmLbNirp68G1K5CM_4-vR_asABGGaZKL4UDeWSkXjWJ8vEPWtgDSWn9DdVvhALmpww.Twlxj_UzjVXZAApZdWop-w.iXs53ZGTHNcvbSqnMr8I7NMo9Uqc0snEg1Fwt148F9rGVw-WQnLrIJn3TiRHQE5t4yailES23tKfkjcyBzAM2ZQ794d8QZflOFRNmLatJe0.0oCcRtNlsAJPcsbek9kM3w" + "discord": "1136724508963786853" }, - "record": { + "records": { "CNAME": "thunderbrown.github.io" } } diff --git a/domains/wahid.json b/domains/wahid.json index f955df9bd..0e9624196 100644 --- a/domains/wahid.json +++ b/domains/wahid.json @@ -3,7 +3,7 @@ "username": "SimplyVoid", "email": "wahidislamlinad@pm.me" }, - "record": { + "records": { "CNAME": "simplyvoid.github.io" } } diff --git a/domains/wahid7852.json b/domains/wahid7852.json index 9e204221e..f30053586 100644 --- a/domains/wahid7852.json +++ b/domains/wahid7852.json @@ -1,11 +1,11 @@ { "description": "portfolio site for Abdul Wahid Khan", - "repo": "https://github.com/Wahid7852/Wahid7852.github.io", + "repo": "https://github.com/Wahid7852/wahid-portfolio", "owner": { "username": "Wahid7852", "email": "wahidzk0091@gmail.com" }, - "record": { - "URL": "https://wahid-wahid7852.vercel.app" + "records": { + "URL": "https://wahid-portfolio-tczb-wahid-khans-projects.vercel.app/" } } diff --git a/domains/waiyanmt.json b/domains/waiyanmt.json index 7d2c29e6e..6bf6845fb 100644 --- a/domains/waiyanmt.json +++ b/domains/waiyanmt.json @@ -3,7 +3,7 @@ "username": "WillowMT", "email": "waiyanmt@yahoo.com" }, - "record": { + "records": { "URL": "https://waiyanmt.netlify.app" } } diff --git a/domains/waki.json b/domains/waki.json index b0c864305..cf9bc3704 100644 --- a/domains/waki.json +++ b/domains/waki.json @@ -3,7 +3,7 @@ "username": "aiwaki", "discord": "351012170839883776" }, - "record": { + "records": { "CNAME": "aiwaki.vercel.app" } } diff --git a/domains/walkercito.json b/domains/walkercito.json new file mode 100644 index 000000000..caa36b89c --- /dev/null +++ b/domains/walkercito.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Walkercito" + }, + "records": { + "CNAME": "walkercitodev.vercel.app" + } +} diff --git a/domains/wallsified.json b/domains/wallsified.json new file mode 100644 index 000000000..1a1855a17 --- /dev/null +++ b/domains/wallsified.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wallsified", + "email": "danielparedes@ciencias.unam.mx" + }, + "records": { + "CNAME": "portafolio-gamma-mauve.vercel.app" + } +} diff --git a/domains/waltersonna.json b/domains/waltersonna.json new file mode 100644 index 000000000..9fc423b72 --- /dev/null +++ b/domains/waltersonna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RichestHumanAlive", + "email": "walter.n.sonna@gmail.com" + }, + "records": { + "CNAME": "diagram-portfolio.vercel.app" + } +} diff --git a/domains/wan.json b/domains/wan.json index bb33e8864..261159de4 100644 --- a/domains/wan.json +++ b/domains/wan.json @@ -3,7 +3,7 @@ "username": "wansies", "email": "taio6@duck.com" }, - "record": { + "records": { "CNAME": "wansies.github.io" } } diff --git a/domains/wansc.json b/domains/wansc.json index b1b5575ce..eebeaf26b 100644 --- a/domains/wansc.json +++ b/domains/wansc.json @@ -3,7 +3,7 @@ "username": "661111", "email": "3227988255@qq.com" }, - "record": { + "records": { "CNAME": "661111.github.io" } } diff --git a/domains/wansies.json b/domains/wansies.json index c7d9bd3de..5ef927647 100644 --- a/domains/wansies.json +++ b/domains/wansies.json @@ -3,7 +3,7 @@ "username": "wansiie", "email": "Janeiscool4ever@web.de" }, - "record": { + "records": { "URL": "https://helix-pullover-d4c.notion.site/wansie-3655baf5f6de40cc8be7aa8cbf67f095" } } diff --git a/domains/waradu.json b/domains/waradu.json new file mode 100644 index 000000000..519276627 --- /dev/null +++ b/domains/waradu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "waradu", + "email": "me@waradu.dev", + "discord": "waradu" + }, + "records": { + "CNAME": "portfolio-dee.pages.dev" + } +} diff --git a/domains/warofzen.json b/domains/warofzen.json deleted file mode 100644 index e10a19eff..000000000 --- a/domains/warofzen.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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/warren.json b/domains/warren.json new file mode 100644 index 000000000..68a381553 --- /dev/null +++ b/domains/warren.json @@ -0,0 +1,11 @@ +{ + "description": "GitHub profile of Warren", + "repo": "https://github.com/somethingwentwell/somethingwentwell.github.io", + "owner": { + "username": "somethingwentwell", + "email": "wwwc@outlook.com" + }, + "records": { + "CNAME": "somethingwentwell.github.io" + } +} diff --git a/domains/wasd228.json b/domains/wasd228.json new file mode 100644 index 000000000..007f74be7 --- /dev/null +++ b/domains/wasd228.json @@ -0,0 +1,11 @@ +{ + "description": "To get a cool looking subdomain for my portfolio hosted on netlify", + "repo": "https://github.com/ericafk0001/Portfolio.git", + "owner": { + "username": "ericafk0001", + "email": "dxslyofficial@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/wasi.json b/domains/wasi.json index f46f7e635..7f886ff2f 100644 --- a/domains/wasi.json +++ b/domains/wasi.json @@ -1,11 +1,9 @@ { "owner": { "username": "WasiTC", - "email": "", - "discord": "802128241280286761", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VfdMN3KkHv14UEuHSosP1YXOQh38Re1VEsdiCZFNaOYSQNgJrEVseI4eaY5gIUbR8tyN6IUDDjxYBe8JtgvTYVABOJfEYtNN-IWfErm5kSm_AhBXrqorhc5wIIuC1iBjlJX86x2iZPy0QUMUWvMcommb_enf4V8IfPkU4ByMqWmjgpLD26gKdoBcWbWprsI-_J_TdZIAeksbnaW0fhu_dqVD8H0Jc-o_DdMkdGOqIZBw49ThqiOTn9_ykXcFS7E5FPOcaPawNgH74ztkuMQEiuO2gLp-ibiILiNTniLoMRGJBB9YppR3o1dIWbg1AaPaUU4q0Hd8WBhIHgCbvQBlmw.FPAyefTCWSW9Cn4Re6vGBQ.xfrpDjbf0Gb63fo5C5zJTA5pM5aur7a-Ue6sEaEhskpEdMHWzOJETtyjSnyl6n9APyhOudlvWwFIXRmp7CNvx_hGMtMXNDj8XhRE5W1YXXU.3tdoXncw4wvTz5QDGvN4FA" + "discord": "802128241280286761" }, - "record": { + "records": { "A": ["59.152.96.163"] } } diff --git a/domains/wasim.json b/domains/wasim.json new file mode 100644 index 000000000..e1bb1cd55 --- /dev/null +++ b/domains/wasim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simbaig", + "email": "wasimbaig000@gmail.com" + }, + "records": { + "CNAME": "wasimb.vercel.app" + } +} diff --git a/domains/wassim.json b/domains/wassim.json index 73e182235..d3fbe7652 100644 --- a/domains/wassim.json +++ b/domains/wassim.json @@ -1,11 +1,10 @@ { "description": "Github profile of wassimbenzarti", - "repo": "https://github.com/wassimbenzarti", "owner": { "username": "wassimbenzarti", "email": "wass11121996@gmail.com" }, - "record": { + "records": { "CNAME": "wassimbenzarti.github.io" } } diff --git a/domains/watercat.json b/domains/watercat.json index 437bf48fd..9179299ce 100644 --- a/domains/watercat.json +++ b/domains/watercat.json @@ -5,7 +5,7 @@ "username": "watercatuwu", "email": "watercat0330@gmail.com" }, - "record": { + "records": { "CNAME": "watercatuwu.github.io" } } diff --git a/domains/wave.json b/domains/wave.json index 45e65c2d9..57883e21d 100644 --- a/domains/wave.json +++ b/domains/wave.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "mulchs", - "discord": "1273579466936815717", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VQbRFqL4oyeBRF7H8wmvWeQR00tQnJnL2c0Yc--s4fbY_z_gr-LC7j6Ep_s-mStGfFpmnGZxPAz89WkApt6__tftZ8oClYEbRQJyN7jtoOHO86GNYMxcvQJ2ngNqxjADWrWROLR2uI9c0VZryiZFLfDXkfl0WbtTl2UvndEnjCVwNyIuv8L67P1p9p0ODDyKIcztIkDEROfD46mWthqIcElcWxNuCXMsPYgtBXYn6O6SrQWHhilzEsvLHe8BEMESAfpxvOH7clAWLVLIAmEmNNnoecLwse_z3k8pZHJQDOifr8k5t8FoRNhPH5QYFAXGfk4Mi_jCFUPZV9cwjJa0gA.EkJAMMF4R2XX-bBYIFnfQg.K1R0AqjrIzfN5_rcJit1g8JFU4DxBqL9Wq8nGU3Rhka93TEfxiRYSi5C0RFtt3i-OH_FxwePHkLCDDMDLE4fFFl8bQplvGRoXw-_QY5Czqf2bH6GtsIpt0viog_2l4h5.khbF7ESzWSSPeYTADVcsyg" - }, - - "record": { - "CNAME": "wave.fwh.is" - } - } - \ No newline at end of file + "owner": { + "username": "mulchs", + "discord": "1273579466936815717" + }, + "records": { + "CNAME": "wave.fwh.is" + } +} diff --git a/domains/wavingcat.json b/domains/wavingcat.json index 40fef2a7b..9ab85eef8 100644 --- a/domains/wavingcat.json +++ b/domains/wavingcat.json @@ -5,7 +5,7 @@ "username": "wavingcatdevs", "email": "wavingcatdevs@gmail.com" }, - "record": { + "records": { "CNAME": "wavingcatdevs.github.io" } } diff --git a/domains/wb.json b/domains/wb.json index 28ba19b35..cd2b2ba0f 100644 --- a/domains/wb.json +++ b/domains/wb.json @@ -3,7 +3,7 @@ "username": "davidctinescu", "discord": "908591344379899944" }, - "record": { + "records": { "A": ["156.67.25.171"] } } diff --git a/domains/wbalaile.json b/domains/wbalaile.json index 03facff59..904d37b80 100644 --- a/domains/wbalaile.json +++ b/domains/wbalaile.json @@ -5,7 +5,7 @@ "username": "wilby-mj", "twitter": "wilby_mj" }, - "record": { + "records": { "CNAME": "wilby-mj.github.io" } } diff --git a/domains/wcaleniekubaa.json b/domains/wcaleniekubaa.json index aa801cd1d..5710fb168 100644 --- a/domains/wcaleniekubaa.json +++ b/domains/wcaleniekubaa.json @@ -3,7 +3,7 @@ "username": "wcaleniekubaa", "email": "to.nie.kubafn@gmail.com" }, - "record": { + "records": { "CNAME": "wcaleniekubaa.github.io" } } diff --git a/domains/wdh.json b/domains/wdh.json deleted file mode 100644 index 5c6fade85..000000000 --- a/domains/wdh.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "MaskDuck", - "discord": "716134528409665586", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.hrR-hCSQVXgc9HR5dgQtzdudsQw4N2SwhMOi2wgv3EVMuqZScgijTFAVAANjFynfR-w87WZ6uYNGdl7STDcxsCVf4aTb3bBgvIYrxdn94sjUhvjr9QwfQ_FByjGbcUcdYFqD80Gkzm9j-ywB4gB3plRZ_W8j7cFR0arXrtnbCUjWEvdT5C20zPnlNcgpIOgQT0sd3R_ByX8aKyoo0U66CbWBgfyVTofOBRXFDhOmdbg5-R2_tLVbj0_2keVKaw0rh6H7Vw8ASbRyfgyg4ZTpXYxqlUlnSIpuDvSUutQRaNCCRZJzi49GuDnHT9_c7vEyd16YhIDTjYf4FkQWr_uVZA.6kXO1_LRrVcp1rz5s8Ubzg.LGclXJMQDX3Bri0DVIldYYdRbrrU4maBGcFUYDObHVFKntkmigw_6xCbQZR8JbXDSkfctECmVEsQoG_iOVnXKLDiUyyDevOGZMn3rwY4MQ5374p82B6l1LDFBbuyFX4o.wty6s6UmUNnx3WcrJAljkw" - }, - "record": { - "CNAME": "maskduck.pages.dev" - } -} diff --git a/domains/web.vulcanocraft.json b/domains/web.vulcanocraft.json index 75126b879..117af3676 100644 --- a/domains/web.vulcanocraft.json +++ b/domains/web.vulcanocraft.json @@ -1,11 +1,9 @@ { "owner": { "username": "VulcanoSoftware", - "email": "", - "discord": "814891541205876767", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OSN3PUPj-tyBSww7jRiLu3F9KJHZLnuunCHNQKcFiZF_qRsPd9uVTMBljFhRUAAzBM9lfFsRtBQnEUYqEyuWUq8e_fYYopTTJ2eoMj4tjkBAYbwRJG4FiT1LFDpDR0YtuSk-XgUFSi4HVBHAMnaAJ92Ez3_APNRBfspLSeSWRrr-aVYej5z_GusGjujgt1RnGX13HZTy7sQZSdGB6fztcxJEwMtAdAvc_GPA7t6oY1GJaVkl9JP0_s7VYkUDkA_msvFfPO2bT_aRi3CL1LwjRMzsS3hzhOK-qBc2mRD8Ea0F64wNaLYcYQINexXnxgF6toTHl9ZXiyKbOGVPuH1Ufw.2NmlL0bO_wxEmb-6eWlCyQ._ewSj4Dp8XIIfDqlriYtXKqrlYv70uhnEX0_pvFNsZ_L3AM4yGHw1aCFiAZkgOB3rCEEKEX2m4sMmApEhvmgh7rm2Y615R1QuJdwiDU332Z7NTtoTSb8LfYKN8Z-sX66.nQYEU4bu7Mrtfg4u57iRcQ" + "discord": "814891541205876767" }, - "record": { + "records": { "CNAME": "vulcanoweb.pages.dev" } } diff --git a/domains/webber.json b/domains/webber.json index c35792666..1e0d0fa21 100644 --- a/domains/webber.json +++ b/domains/webber.json @@ -3,7 +3,7 @@ "username": "webbertakken", "email": "webber.nl@gmail.com" }, - "record": { + "records": { "URL": "https://takken.io" } } diff --git a/domains/webcubed.json b/domains/webcubed.json index 1bc3caa49..f2e7e3333 100644 --- a/domains/webcubed.json +++ b/domains/webcubed.json @@ -1,9 +1,10 @@ { - "owner": { - "username": "webcubed", - "email": "lainathannlaiv2@gmail.com" - }, - "record": { - "CNAME": "webcubed.github.io" - } -} + "owner": { + "username": "webcubed", + "email": "lainathannlaiv2@gmail.com" + }, + "records": { + "CNAME": "webcubed.pages.dev" + }, + "proxied": true +} diff --git a/domains/webmail.mrjunkyz.json b/domains/webmail.mrjunkyz.json index 726befd50..4dcdef8bf 100644 --- a/domains/webmail.mrjunkyz.json +++ b/domains/webmail.mrjunkyz.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/webmail.noteswallah.json b/domains/webmail.noteswallah.json index 726befd50..4dcdef8bf 100644 --- a/domains/webmail.noteswallah.json +++ b/domains/webmail.noteswallah.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/webmail.somyadipghosh.json b/domains/webmail.somyadipghosh.json index 726befd50..4dcdef8bf 100644 --- a/domains/webmail.somyadipghosh.json +++ b/domains/webmail.somyadipghosh.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/webmail.teamcodearc.json b/domains/webmail.teamcodearc.json index 726befd50..4dcdef8bf 100644 --- a/domains/webmail.teamcodearc.json +++ b/domains/webmail.teamcodearc.json @@ -3,7 +3,7 @@ "username": "chiragnahata", "email": "chiragnahata05@gmail.com" }, - "record": { + "records": { "A": ["129.213.151.29"] } } diff --git a/domains/webouille.json b/domains/webouille.json index 0dd5101df..60614161e 100644 --- a/domains/webouille.json +++ b/domains/webouille.json @@ -3,7 +3,7 @@ "username": "MrPidouille", "email": "valentinrobin7500@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"] } } diff --git a/domains/webraku.json b/domains/webraku.json index 4bf18ae95..93469ce96 100644 --- a/domains/webraku.json +++ b/domains/webraku.json @@ -3,7 +3,7 @@ "username": "Nathan", "email": "nathanaelhananta09@gmail.com" }, - "record": { + "records": { "CNAME": "storage-production.up.railway.app" } } diff --git a/domains/webster.json b/domains/webster.json index dfe244bed..786bf0c14 100644 --- a/domains/webster.json +++ b/domains/webster.json @@ -4,7 +4,7 @@ "email": "itzwebster@oliverbot.xyz", "discord": "481068576363773972" }, - "record": { + "records": { "CNAME": "itzwebster.xyz" } } diff --git a/domains/weeebdev.json b/domains/weeebdev.json index cd312035b..ae19ca4ad 100644 --- a/domains/weeebdev.json +++ b/domains/weeebdev.json @@ -3,7 +3,7 @@ "username": "weeebdev", "email": "mr.adil777@gmail.com" }, - "record": { + "records": { "CNAME": "weeebdev.github.io" } } diff --git a/domains/weissx.json b/domains/weissx.json index d442f3731..262f1efe6 100644 --- a/domains/weissx.json +++ b/domains/weissx.json @@ -3,7 +3,7 @@ "username": "alfari24", "email": "ari@alfari.id" }, - "record": { + "records": { "A": ["194.15.36.220"] } } diff --git a/domains/werz.json b/domains/werz.json index 8ace144dd..64135d755 100644 --- a/domains/werz.json +++ b/domains/werz.json @@ -6,7 +6,7 @@ "email": "moussarabie40@gmail.com", "twitter": "cyberwerz" }, - "record": { + "records": { "CNAME": "0xwerz.github.io" } } diff --git a/domains/wes.json b/domains/wes.json index b426463ec..3c0e24537 100644 --- a/domains/wes.json +++ b/domains/wes.json @@ -3,7 +3,7 @@ "username": "westhecool", "email": "wesley@westhedev.xyz" }, - "record": { + "records": { "CNAME": "wesley-is-a-dev.pages.dev" } } diff --git a/domains/wesley.json b/domains/wesley.json index b426463ec..3c0e24537 100644 --- a/domains/wesley.json +++ b/domains/wesley.json @@ -3,7 +3,7 @@ "username": "westhecool", "email": "wesley@westhedev.xyz" }, - "record": { + "records": { "CNAME": "wesley-is-a-dev.pages.dev" } } diff --git a/domains/west.json b/domains/west.json index 10af75107..e20e6c53e 100644 --- a/domains/west.json +++ b/domains/west.json @@ -3,7 +3,7 @@ "username": "arslandoesdev", "email": "239@duck.com" }, - "record": { + "records": { "CNAME": "arslandoesdev.github.io" } } diff --git a/domains/what.json b/domains/what.json index 706e2b55a..7a8976164 100644 --- a/domains/what.json +++ b/domains/what.json @@ -7,7 +7,7 @@ "twitter": "whatqm", "discord": "discord-username-and-discriminator" }, - "record": { + "records": { "CNAME": "what-question-mark.github.io" } } diff --git a/domains/whitekj.json b/domains/whitekj.json index 6471cd07f..458f7c202 100644 --- a/domains/whitekj.json +++ b/domains/whitekj.json @@ -5,7 +5,7 @@ "username": "CwhiteKJ", "email": "whitekj1221@gmail.com" }, - "record": { + "records": { "CNAME": "cwhitekj.github.io" } } diff --git a/domains/who.json b/domains/who.json index 52c7e7f39..7850fddd5 100644 --- a/domains/who.json +++ b/domains/who.json @@ -1,11 +1,10 @@ { "description": "references for my npm packages", - "repo": "https://github.com/teamjoelee", "owner": { "username": "teamjoelee", "email": "tojoeleeofficial@gmail.com" }, - "record": { + "records": { "CNAME": "hosting.gitbook.io" } } diff --git a/domains/whoami.json b/domains/whoami.json index 731dc5778..14996a7c0 100644 --- a/domains/whoami.json +++ b/domains/whoami.json @@ -1,10 +1,9 @@ { "owner": { "username": "samir717le", - "discord": "1079245055845474354", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.phbb5LtneePR_tIQ8EBNXc5KTf5grZOsS7VJw7GabZ90PkCimdUUWaTI4pBCKn3Zb0s0u2AiylLUTNW_U1jJjqCJoxMijgk9auLvGSEnz9JSghEAnki9XpkqtqzeGquCffwJ7gfNHQaeVcdeBA6NwnJRSSGBfod9-7NROzCuZbQWsyVx84EMQ7_QRP3S4Cl-3clvrmSweUiRTwCnRYiGkcthLnBp9jpFmztk_qO3bS_Xog_rYd2IuPI_Ow468R4rx4X7AH855UEltcqD0tCynNKGsS_OIZZ9xt1jgZ-1LNgEN9FFpma0NnjsOi_nu2GJ9arw-tZvsluafHkIGDzGKw.ZPEBx6oboRurws0dAy2P9Q.E1BFAx54_k6QrBC3Lna9IVx6Oj0X6YwZ8DLU4UksCrROf-6RS1qtiCFjpfs9p0UKBUnHt6rh7rfVBikNNBAuJZwcIWGLALU9z46_Ptik3k4.KZefJpPD6kjihdewn-bhoQ" + "discord": "1079245055845474354" }, - "record": { + "records": { "CNAME": "letsedit.cloudns.be" } } diff --git a/domains/whos.json b/domains/whos.json index b7696af5a..3c4b16ac1 100644 --- a/domains/whos.json +++ b/domains/whos.json @@ -1,10 +1,9 @@ { "owner": { "username": "IYSTREEM", - "discord": "774642006173286432", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h6b_Eqh-4chXFRqgLbGncVUloea43QbUVWWJ7lwq0Hjm91jmKsLP7FcpKX92p-MDKt9QStG5Sg8uu50Np4_Yq3jK8fQiBWjcWLC2ZCu5Yg7iem15euU8XHFF4biPuOVUtnLXQ-XkLqecnqASjsho8g4kTs27lhJljzgT12yTdLD9xA1bLX2rbMoLJ5OrH3T2ddRHdHJqPgKHLVTKmdi051tzYHH2nVJwKMPkhadXEayUIaFHX_WloTmyG9EFKdriGHQiInTdNwFMrj_raaCfhVJpsZJ3BHbi4GEN5BwW8balZYtJWJnbAwCAlPkUH9IPOCHVU6OEKlwwq_83fazLqA.RSWwLjsEdiZ_PGIQ-PdyJg.1_ILivbXeWRBeoS1hGJER3idxSBewkTUaAXCHrDN40mGs6S5CIq7bL23zTdy7U7MvmnkCm9bB-XSqv5yrDkys2Vl-_VdIWP8s_1zS01-XUg.oRmvR5xgtXQQ05ajizcLwA" + "discord": "774642006173286432" }, - "record": { + "records": { "CNAME": "iystreem.free.nf" } } diff --git a/domains/whothree.json b/domains/whothree.json new file mode 100644 index 000000000..8fb145ede --- /dev/null +++ b/domains/whothree.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gottaegbert", + "email": "gottaegbert@gmail.com" + }, + "records": { + "CNAME": "whothreecollection.vercel.app" + } +} diff --git a/domains/whxyu.json b/domains/whxyu.json index 0876c328b..4ecdc2007 100644 --- a/domains/whxyu.json +++ b/domains/whxyu.json @@ -2,7 +2,7 @@ "owner": { "username": "yxu6fingers" }, - "record": { + "records": { "CNAME": "yxu6fingers.github.io" } } diff --git a/domains/whyme.json b/domains/whyme.json index 670078bd9..c1dee0f67 100644 --- a/domains/whyme.json +++ b/domains/whyme.json @@ -3,7 +3,7 @@ "username": "unqxl", "email": "andreyzero123@gmail.com" }, - "record": { + "records": { "A": ["181.215.68.159"] } } diff --git a/domains/wiener234.json b/domains/wiener234.json index 3e02d61c1..61cb659f0 100644 --- a/domains/wiener234.json +++ b/domains/wiener234.json @@ -3,7 +3,7 @@ "username": "Wiener234", "email": "wiemernils@gmail.com" }, - "record": { + "records": { "A": ["130.61.152.39"] } } diff --git a/domains/wiggly.json b/domains/wiggly.json index bc94c9e3d..3ab3e53f8 100644 --- a/domains/wiggly.json +++ b/domains/wiggly.json @@ -6,7 +6,7 @@ "email": "dedica0123@gmail.com", "twitter": "CornetWiggly" }, - "record": { + "records": { "CNAME": "artsui.github.io" } } diff --git a/domains/wiicreation.json b/domains/wiicreation.json index 0dd0196d8..6e3a1e677 100644 --- a/domains/wiicreation.json +++ b/domains/wiicreation.json @@ -5,7 +5,7 @@ "username": "C1200", "email": "coreyw.ultimatemedia@gmail.com" }, - "record": { + "records": { "URL": "https://c1200.js.org/blog/faqs/2022/07/29/wiicreation-faq.html?from=" } } diff --git a/domains/wiki.chuyentinorz.json b/domains/wiki.chuyentinorz.json new file mode 100644 index 000000000..fdf47929c --- /dev/null +++ b/domains/wiki.chuyentinorz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "records": { + "CNAME": "akk1to.github.io" + } +} diff --git a/domains/wilbur.json b/domains/wilbur.json deleted file mode 100644 index a1a4c3575..000000000 --- a/domains/wilbur.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ThisCatLikesCrypto", - "email": "contact@wilburwilliams.uk" - }, - "record": { - "CNAME": "ww-projects.pages.dev" - } -} diff --git a/domains/wildchamo.json b/domains/wildchamo.json new file mode 100644 index 000000000..4ab0a2e7b --- /dev/null +++ b/domains/wildchamo.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/wildchamo/Jose-Luis-Bedoya", + "owner": { + "username": "wildchamo", + "email": "wildchamo@gmail.com" + }, + "records": { + "CNAME": "wildchamo.github.io" + } +} diff --git a/domains/will.json b/domains/will.json index a83acccfb..18d16ff7b 100644 --- a/domains/will.json +++ b/domains/will.json @@ -5,7 +5,7 @@ "username": "websterwh16", "email": "websterwh16@gmail.com" }, - "record": { + "records": { "CNAME": "websterwh16.github.io" } } diff --git a/domains/william.json b/domains/william.json index 6f3d1268b..76ebc8e5a 100644 --- a/domains/william.json +++ b/domains/william.json @@ -3,7 +3,13 @@ "username": "wdhdev", "email": "william@is-a.dev" }, - "record": { - "URL": "https://github.com/wdhdev" + "records": { + "URL": "https://wharrison.com.au" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/wdhdev" + }, + "redirect_paths": true } } diff --git a/domains/william2sober.json b/domains/william2sober.json new file mode 100644 index 000000000..7c163052f --- /dev/null +++ b/domains/william2sober.json @@ -0,0 +1,12 @@ +{ + "description": "The Website is to show off all my links and Dev Discord server", + "repo": "https://github.com/william2sober/is-a-dev", + "owner": { + "username": "william2sober", + "email": "willliam2sober@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + }, + "proxied": false +} diff --git a/domains/williamwei.json b/domains/williamwei.json new file mode 100644 index 000000000..69409870d --- /dev/null +++ b/domains/williamwei.json @@ -0,0 +1,11 @@ +{ + "description": "William Wei's Blog", + "repo": "https://github.com/WiIIiamWei", + "owner": { + "username": "WiIIiamWei", + "email": "me@williamwei.top" + }, + "records": { + "CNAME": "willwell.netlify.app" + } +} diff --git a/domains/willian.json b/domains/willian.json index 453e16f9b..22181d7e3 100644 --- a/domains/willian.json +++ b/domains/willian.json @@ -5,7 +5,7 @@ "username": "waveiro", "twitter": "waveiro" }, - "record": { + "records": { "CNAME": "waveiro.github.io" } } diff --git a/domains/willo.json b/domains/willo.json index adc39a9a6..9c10e1b27 100644 --- a/domains/willo.json +++ b/domains/willo.json @@ -5,13 +5,8 @@ "username": "WilloIzCitron", "twitter": "willoizcitron" }, - "record": { - "A": [ - "185.199.109.153", - "185.199.108.153", - "185.199.111.153", - "185.199.110.153" - ], + "records": { + "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/willymateo.json b/domains/willymateo.json new file mode 100644 index 000000000..ed3140229 --- /dev/null +++ b/domains/willymateo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "willymateo", + "email": "matheoowilly@gmail.com", + "discord": "willycocolon" + }, + "records": { + "CNAME": "willymateo.vercel.app" + } +} diff --git a/domains/wilson-cordova.json b/domains/wilson-cordova.json new file mode 100644 index 000000000..0b70be0da --- /dev/null +++ b/domains/wilson-cordova.json @@ -0,0 +1,11 @@ +{ + "description": "Subdominio para el portafolio de Wilson Córdova", + "repo": "https://github.com/WSteeven/wilson-steeven.github.io", + "owner": { + "username": "WSteeven", + "email": "wilson972906@gmail.com" + }, + "records": { + "CNAME": "wsteeven.github.io" + } +} diff --git a/domains/wilson.json b/domains/wilson.json new file mode 100644 index 000000000..888034dae --- /dev/null +++ b/domains/wilson.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio", + "repo": "https://github.com/wmoralesl/wmoralesl.github.io", + "owner": { + "username": "wmoralesl", + "email": "wilsonm57wm@gmail.com" + }, + "records": { + "CNAME": "wmoralesl.github.io" + } +} diff --git a/domains/win10sunvalley.json b/domains/win10sunvalley.json index 41ecc6f36..047965fc5 100644 --- a/domains/win10sunvalley.json +++ b/domains/win10sunvalley.json @@ -3,7 +3,7 @@ "username": "winbo-yml-exe", "email": "winbo-yml-exe@outlook.com" }, - "record": { + "records": { "CNAME": "win10sunvalley.github.io" } } diff --git a/domains/win11-tutorial.notaperson535.json b/domains/win11-tutorial.notaperson535.json index a50968197..c530ae34b 100644 --- a/domains/win11-tutorial.notaperson535.json +++ b/domains/win11-tutorial.notaperson535.json @@ -5,7 +5,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "CNAME": "notaperson535.github.io" } } diff --git a/domains/win11.notaperson535.json b/domains/win11.notaperson535.json index 573710bc3..db1952cfb 100644 --- a/domains/win11.notaperson535.json +++ b/domains/win11.notaperson535.json @@ -5,7 +5,7 @@ "username": "notAperson535", "email": "notAperson939@gmail.com" }, - "record": { + "records": { "CNAME": "notaperson535.github.io" } } diff --git a/domains/win64.json b/domains/win64.json index 4048dd9a1..f3fa238eb 100644 --- a/domains/win64.json +++ b/domains/win64.json @@ -3,7 +3,7 @@ "username": "userwin64", "email": "win64inquiries@gmail.com" }, - "record": { + "records": { "CNAME": "userwin64.github.io" } } diff --git a/domains/winbo.json b/domains/winbo.json deleted file mode 100644 index dc28d5dc9..000000000 --- a/domains/winbo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "winbo-yml-exe", - "email": "winbo-yml-exe@outlook.com" - }, - "record": { - "CNAME": "winbo-yml-exe.github.io" - } -} diff --git a/domains/windfarms.json b/domains/windfarms.json index f0efa6d87..d940ae779 100644 --- a/domains/windfarms.json +++ b/domains/windfarms.json @@ -5,7 +5,7 @@ "username": "windfarms", "email": "windfarms@andrealicheri.anonaddy.com" }, - "record": { + "records": { "CNAME": "windfarms.github.io" } } diff --git a/domains/windol.json b/domains/windol.json new file mode 100644 index 000000000..84877b9fb --- /dev/null +++ b/domains/windol.json @@ -0,0 +1,13 @@ +{ + "description": "Windol Is a Dev", + "repo": "https://github.com/Windol/windol", + "owner": { + "username": "Windol", + "email": "windol.dev@legytma.com.br", + "LinkedIn": "Windol" + }, + "records": { + "CNAME": "windol.github.io" + }, + "proxied": true +} diff --git a/domains/window5.json b/domains/window5.json index f0eff3f4f..b62ac4a7f 100644 --- a/domains/window5.json +++ b/domains/window5.json @@ -3,7 +3,7 @@ "username": "Window5000", "email": "spam.window5.spam@gmail.com" }, - "record": { + "records": { "CNAME": "window5000.github.io" } } diff --git a/domains/windows10sunvalley.json b/domains/windows10sunvalley.json index 74af18d75..b19118e6c 100644 --- a/domains/windows10sunvalley.json +++ b/domains/windows10sunvalley.json @@ -3,7 +3,7 @@ "username": "winbo-yml-exe", "email": "winbo.yml@proton.me" }, - "record": { + "records": { "CNAME": "windows10sunvalley.github.io" } } diff --git a/domains/windowsed.json b/domains/windowsed.json index 8ac0e28ca..a686b9e4c 100644 --- a/domains/windowsed.json +++ b/domains/windowsed.json @@ -1,10 +1,9 @@ { "owner": { "username": "windowsed1225", - "discord": "906415095473655810", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.b4wkSB9hzfyZzAOO50m5Lmffz5ZpdPkeT6RBILTZckY94cbRa7BxRCVOAevnxu4zqonBcx017nf0Kgu1qP58hQV8rbPZM7bEeJwIuPh-gY_l1y_IkzE5Slq1CWvmFCBZvheUKYHFvPRcGGIqtxyKKaT6jcrJXv7xo_F2fldqbJ2NiJ88_u4WTXcfQ9CrPrPevocKfdesIrDwXnV2n2I0SpDV_QqycbmCcleRy3QzOpZMTHQyzAV_WA0B8OEkMftVSbiTr-S4WPRMpoZTRX7Er-l-ccC5HIs1c7P-twpXd4bphTsUBmWJL55dD0xq7vDQ2ouWq-o4ooqqZ3wmme-KvA.R7TKz12p_AeXBaX-7nEu9g.tjS2Ho_9HJkfxTIoz2MFeX34ptUfBAIh6vPSR_lMepN4Nz03-n_JxdpZW-5iEmDqBUUU82h7WteWeRKhyBkvi1syxFOnMRTBT4EveG-Ij9-skVlWjzeAQw-6WWRaGtDPfBSyZsTKyIb9iI2tVP7Kvw.jJ5K9-F9Rh-7DMlxCJ8yQA" + "discord": "906415095473655810" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/winter.json b/domains/winter.json new file mode 100644 index 000000000..ce4d2048d --- /dev/null +++ b/domains/winter.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "virtualwinter", + "discord": "vwinter", + "email": "me@vwinter.moe" + }, + "records": { + "NS": ["blakely.ns.cloudflare.com", "rocco.ns.cloudflare.com"] + } +} diff --git a/domains/winters.json b/domains/winters.json index 5e7f7007a..bffedae9b 100644 --- a/domains/winters.json +++ b/domains/winters.json @@ -6,7 +6,7 @@ "email": "arun0x168codes@gmail.com", "twitter": "ArunKr1shnan" }, - "record": { + "records": { "CNAME": "winters0x64.github.io" } } diff --git a/domains/wintkhantlin.json b/domains/wintkhantlin.json new file mode 100644 index 000000000..72fea3329 --- /dev/null +++ b/domains/wintkhantlin.json @@ -0,0 +1,10 @@ +{ + "description": "Wint Khant Lin's Portfolio", + "owner": { + "username": "happer64bit", + "email": "wintkhantlin@gmail.com" + }, + "records": { + "CNAME": "wintkhantlin.vercel.app" + } +} diff --git a/domains/wipad.json b/domains/wipad.json index a63a5a642..8fe7c538d 100644 --- a/domains/wipad.json +++ b/domains/wipad.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "wipad0310", - "email": "nguyenlab2007@gmail.com" - }, - "record": { - "CNAME": "wipad0310.github.io" - } + "owner": { + "username": "wipad0310", + "email": "nguyenlab2007@gmail.com" + }, + "records": { + "CNAME": "wipad0310.github.io" + } } diff --git a/domains/wired.json b/domains/wired.json index 9fc9df298..c3520eaca 100644 --- a/domains/wired.json +++ b/domains/wired.json @@ -6,7 +6,7 @@ "email": "wireddesign@outlook.com", "twitter": "Wired__Design" }, - "record": { + "records": { "CNAME": "wired-design.github.io" } } diff --git a/domains/wiredmind.json b/domains/wiredmind.json index b3fb028f1..cebc51222 100644 --- a/domains/wiredmind.json +++ b/domains/wiredmind.json @@ -3,7 +3,7 @@ "username": "WiredMind2", "email": "admin@tetrazero.com" }, - "record": { + "records": { "URL": "https://tetrazero.com" } } diff --git a/domains/wirisungs.json b/domains/wirisungs.json index 0bd4f92cf..105fda5b0 100644 --- a/domains/wirisungs.json +++ b/domains/wirisungs.json @@ -1,8 +1,8 @@ { "owner": { - "username": "wirisungs" + "username": "wirisungs" }, - "record": { - "CNAME": "wirisungs.github.io" + "records": { + "CNAME": "wirisungs.github.io" } } diff --git a/domains/wisit.json b/domains/wisit.json new file mode 100644 index 000000000..6b53d8b4b --- /dev/null +++ b/domains/wisit.json @@ -0,0 +1,12 @@ +{ + "description": "wisit moondet", + "repo": "https://github.com/Wisitt/wisit", + "owner": { + "username": "Wisitt", + "email": "wisitmoondet@gmail.com" + }, + "records": { + "CNAME": "wisit.vercel.app" + }, + "proxied": true +} diff --git a/domains/witchboo.json b/domains/witchboo.json index 965a7c682..e2461377b 100644 --- a/domains/witchboo.json +++ b/domains/witchboo.json @@ -3,7 +3,7 @@ "username": "WitchBoo", "email": "soconfirmo@hotmail.com" }, - "record": { - "CNAME": "witchboo.github.io" + "records": { + "URL": "https://witchboo.me" } } diff --git a/domains/withercubes.json b/domains/withercubes.json index f52a26a79..eb8885dba 100644 --- a/domains/withercubes.json +++ b/domains/withercubes.json @@ -6,7 +6,7 @@ "email": "withercubes@protonmail.com", "discord": "WitherCubes#2513" }, - "record": { + "records": { "CNAME": "withercubes.codeberg.page" } } diff --git a/domains/withsang.json b/domains/withsang.json index a77fd6b64..14db05753 100644 --- a/domains/withsang.json +++ b/domains/withsang.json @@ -3,7 +3,7 @@ "username": "withSang", "email": "jsa5115@naver.com" }, - "record": { + "records": { "URL": "https://github.com/withsang" } } diff --git a/domains/wizardsword.json b/domains/wizardsword.json index a8bf76bee..d7c1a4925 100644 --- a/domains/wizardsword.json +++ b/domains/wizardsword.json @@ -3,7 +3,7 @@ "username": "MukuJhansi", "discord": "1115658967012626542" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/wizcann.json b/domains/wizcann.json index cc4df51b5..f847f8e54 100644 --- a/domains/wizcann.json +++ b/domains/wizcann.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "wizcann" - }, - "record": { - "CNAME": "wizcann.github.io" - } -} + "owner": { + "username": "wizcann" + }, + "records": { + "CNAME": "wizcann.github.io" + } +} diff --git a/domains/wizq.json b/domains/wizq.json index bea27cddc..0fc0a2f2f 100644 --- a/domains/wizq.json +++ b/domains/wizq.json @@ -4,7 +4,7 @@ "email": "prajwal2079@gmail.com", "discord": "778254181303451658" }, - "record": { + "records": { "CNAME": "proxy.private.danbot.host" } } diff --git a/domains/wizzybot.joe50097.json b/domains/wizzybot.joe50097.json new file mode 100644 index 000000000..3fc2793d7 --- /dev/null +++ b/domains/wizzybot.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "CNAME": "wizzybot.netlify.app" + } +} diff --git a/domains/wkrzywiec.json b/domains/wkrzywiec.json index 6b03fd675..5431ec89f 100644 --- a/domains/wkrzywiec.json +++ b/domains/wkrzywiec.json @@ -5,7 +5,7 @@ "username": "wkrzywiec", "twitter": "wkrzywiec" }, - "record": { + "records": { "CNAME": "wkrzywiec.github.io" } } diff --git a/domains/wlodekm.json b/domains/wlodekm.json index 37c301a0a..f559e3174 100644 --- a/domains/wlodekm.json +++ b/domains/wlodekm.json @@ -4,7 +4,7 @@ "username": "WlodekM", "email": "wlodekm.work@gmail.com" }, - "record": { + "records": { "A": ["159.224.173.169"] } } diff --git a/domains/wojciechzieciak.json b/domains/wojciechzieciak.json index 971ff20c6..ac1930236 100644 --- a/domains/wojciechzieciak.json +++ b/domains/wojciechzieciak.json @@ -3,7 +3,7 @@ "username": "xYundy", "email": "wojciech.zieciak@gmail.com" }, - "record": { + "records": { "URL": "https://xyundy.pl/" } } diff --git a/domains/wojtekgame.json b/domains/wojtekgame.json index 13fb051b7..a3948d863 100644 --- a/domains/wojtekgame.json +++ b/domains/wojtekgame.json @@ -4,7 +4,7 @@ "email": "wojtek.game.private@gmail.com", "discord": "1178278261516685393" }, - "record": { + "records": { "CNAME": "wojtekcodestoday.github.io" } } diff --git a/domains/wolf.json b/domains/wolf.json new file mode 100644 index 000000000..fd346160b --- /dev/null +++ b/domains/wolf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wolf-yuan-6115", + "email": "me@wolf-yuan.dev" + }, + "records": { + "URL": "https://wolf-yuan.dev/" + } +} diff --git a/domains/woofer.json b/domains/woofer.json index 877eb9f25..80a952b2b 100644 --- a/domains/woofer.json +++ b/domains/woofer.json @@ -4,12 +4,7 @@ "email": "ivceball@gmail.com", "discord": "wooferthywoof" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/woogi.json b/domains/woogi.json new file mode 100644 index 000000000..c95caa82a --- /dev/null +++ b/domains/woogi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "woogi-kang", + "email": "woogi.dev@gmail.com" + }, + "records": { + "CNAME": "portfolio-whbd.vercel.app" + } +} diff --git a/domains/woosh.json b/domains/woosh.json index 9123c1bb7..a22cee5dc 100644 --- a/domains/woosh.json +++ b/domains/woosh.json @@ -1,11 +1,10 @@ { "description": "idk just a domain i guess", - "repo": "https://github.com/LetMeWoosh", "owner": { "username": "LetMeWoosh", "email": "me@letmewoosh.xyz" }, - "record": { + "records": { "MX": ["mail.letmewoosh.me"] } } diff --git a/domains/wopian.json b/domains/wopian.json index 869980647..c827df8dd 100644 --- a/domains/wopian.json +++ b/domains/wopian.json @@ -5,7 +5,7 @@ "username": "wopian", "twitter": "wopian_" }, - "record": { + "records": { "URL": "https://wopian.me" } } diff --git a/domains/works.arnxv.json b/domains/works.arnxv.json index 2e23bf9fd..2514e264d 100644 --- a/domains/works.arnxv.json +++ b/domains/works.arnxv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "records": { + "CNAME": "cname.vercel-dns.com" + } } diff --git a/domains/workspace.trung.json b/domains/workspace.trung.json index b99730c4e..488318c9f 100644 --- a/domains/workspace.trung.json +++ b/domains/workspace.trung.json @@ -3,7 +3,7 @@ "username": "vuthanhtrung2010", "email": "vuthanhtrungsuper@gmail.com" }, - "record": { + "records": { "A": ["35.185.84.140"] } } diff --git a/domains/worlarusham.json b/domains/worlarusham.json new file mode 100644 index 000000000..ccca7c9de --- /dev/null +++ b/domains/worlarusham.json @@ -0,0 +1,11 @@ +{ + "description": "my portfolio", + "repo": "https://github.com/worlarusham/my_portfolio", + "owner": { + "username": "worlarusham", + "email": "worlariscoooool@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/worldsavior.json b/domains/worldsavior.json new file mode 100644 index 000000000..69855009c --- /dev/null +++ b/domains/worldsavior.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Worldsavior", + "email": "kajuki27@gmail.com" + }, + "records": { + "CNAME": "worldsavior.me" + } +} diff --git a/domains/worm.json b/domains/worm.json index 80db41904..c5d231f7b 100644 --- a/domains/worm.json +++ b/domains/worm.json @@ -3,7 +3,7 @@ "username": "arq091", "email": "poonyapat.thane@gmail.com" }, - "record": { + "records": { "CNAME": "arq091.github.io" } } diff --git a/domains/woundrite.json b/domains/woundrite.json index 8fcb0a604..f54d71604 100644 --- a/domains/woundrite.json +++ b/domains/woundrite.json @@ -3,12 +3,7 @@ "username": "Woundrite", "email": "ndbendale2004@gmail.com" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] } } diff --git a/domains/wouter.json b/domains/wouter.json new file mode 100644 index 000000000..23a3fa80a --- /dev/null +++ b/domains/wouter.json @@ -0,0 +1,10 @@ +{ + "description": "Wouter's personal website", + "owner": { + "username": "wouter173", + "email": "wouter@debruijn.dev" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/wrothmir.json b/domains/wrothmir.json new file mode 100644 index 000000000..d1301760c --- /dev/null +++ b/domains/wrothmir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wrothmir", + "discord": "459219626484826113" + }, + "records": { + "CNAME": "wrothmir.github.io" + } +} diff --git a/domains/wrtks.json b/domains/wrtks.json index 58c70cdcf..ef8d0c919 100644 --- a/domains/wrtks.json +++ b/domains/wrtks.json @@ -1,10 +1,9 @@ { "owner": { "username": "ali-valiev", - "discord": "722403528705966080", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qzWTS5IwVj5Xj8VbbYJFmPx-sqIIloyZCVEDxxC1d2gK0LK90b13vyGNLCHyzKroGUApUrYdIR36k1Kku58aIsf-8nthxZzHxLOf61SjOqcYAwhwc3S4TRauhnMH2JCiruEUsxeks4Bb9ZK-7M9v1hskwTB7jClvhSLaERWCwUEkDGXWJAlbKENVclL65-crJiV43oulWUp78DrLgR6knVsiS3JHsuCmC3-__OwznqYuRS5fmBFyTEwjA6QlJ33-Ndl74r2OBZTRdpTaZuZIplJjZ9gp7uweQkSxAg_ZnuKgLcpQQQYGrb9Ihz5KkTcYMgh_huFDEzwvf5sDD1c-RQ.ZtvRe7jdQLRGWaWZtnWr8w.pJJPlLk-aB7aXktqHxB4EIYj8NL-ibozzoMfQA8YJcPwIhfK1blJogw4m1qFyBm32U2WIi4qZhFnZZyUg4KtaKVtXfQwq9j_3JkyI9RCbDwRseLpbwVqA5W35goTHrF3.q2iUWtIQmwI1azAbxn5kUw" + "discord": "722403528705966080" }, - "record": { + "records": { "CNAME": "wrrtks.github.io" } } diff --git a/domains/ws.json b/domains/ws.json index 6b3edc504..3d67931f5 100644 --- a/domains/ws.json +++ b/domains/ws.json @@ -3,7 +3,7 @@ "username": "ais1175", "email": "wutau179@gmail.com" }, - "record": { + "records": { "A": ["43.229.135.123"] } } diff --git a/domains/wtfchirag.json b/domains/wtfchirag.json index 802feb6b1..2e6d271dd 100644 --- a/domains/wtfchirag.json +++ b/domains/wtfchirag.json @@ -3,7 +3,7 @@ "username": "chiragksharma", "email": "chiragksharma15@gmail.com" }, - "record": { + "records": { "URL": "https://www.github.com/chiragksharma" } } diff --git a/domains/wtfdrshn.json b/domains/wtfdrshn.json index abeb6309d..c9648d763 100644 --- a/domains/wtfdrshn.json +++ b/domains/wtfdrshn.json @@ -3,7 +3,7 @@ "username": "wtfdrshn", "email": "itsmedarshan8@gmail.com" }, - "record": { + "records": { "CNAME": "wtfdrshn-portfolio.web.app" } } diff --git a/domains/wu.json b/domains/wu.json index 83cf32431..ad600392f 100644 --- a/domains/wu.json +++ b/domains/wu.json @@ -3,7 +3,7 @@ "username": "SunWuyuan", "email": "1847261658@qq.com" }, - "record": { + "records": { "CNAME": "wuyuan.dev" } } diff --git a/domains/wumpus.json b/domains/wumpus.json index 5987a1510..5826bb234 100644 --- a/domains/wumpus.json +++ b/domains/wumpus.json @@ -5,7 +5,7 @@ "username": "Wumpus2000", "email": "wumpusing@gmail.com" }, - "record": { + "records": { "CNAME": "wumpus2000.github.io" } } diff --git a/domains/wusong.json b/domains/wusong.json index a95e68a11..ba1e59e9d 100644 --- a/domains/wusong.json +++ b/domains/wusong.json @@ -3,7 +3,7 @@ "username": "bayunjiang", "email": "master@bayun.org" }, - "record": { + "records": { "CNAME": "bayunjiang.github.io" } } diff --git a/domains/wuspico.json b/domains/wuspico.json index 693e635a1..81cf0e1ff 100644 --- a/domains/wuspico.json +++ b/domains/wuspico.json @@ -3,7 +3,7 @@ "username": "wuspicodev", "email": "wuspico@gmail.com" }, - "record": { + "records": { "URL": "https://wus.dragox.id.vn/" } } diff --git a/domains/wuyuan.json b/domains/wuyuan.json index bf1a0f844..7ad768306 100644 --- a/domains/wuyuan.json +++ b/domains/wuyuan.json @@ -3,7 +3,7 @@ "username": "SunWuyuan", "email": "1847261658@qq.com" }, - "record": { + "records": { "CNAME": "sunwuyuan.github.io" } } diff --git a/domains/wwei.json b/domains/wwei.json index 7c320bd5f..7682e57a0 100644 --- a/domains/wwei.json +++ b/domains/wwei.json @@ -4,7 +4,7 @@ "username": "wwei-github", "email": "ww418047394@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/wwei-github" } } diff --git a/domains/wwr.json b/domains/wwr.json new file mode 100644 index 000000000..1bcb00b30 --- /dev/null +++ b/domains/wwr.json @@ -0,0 +1,11 @@ +{ + "description": "wwr.icu", + "owner": { + "username": "wwricu", + "email": "me@wwr.icu" + }, + "records": { + "URL": "https://wwr.icu" + } + } + \ No newline at end of file diff --git a/domains/www.aj.json b/domains/www.aj.json index 810c13865..19f6673c5 100644 --- a/domains/www.aj.json +++ b/domains/www.aj.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/www.all.json b/domains/www.all.json new file mode 100644 index 000000000..54bb14ce4 --- /dev/null +++ b/domains/www.all.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "records": { + "URL": "https://all.is-a.dev/" + } +} diff --git a/domains/www.alvin.json b/domains/www.alvin.json index f5d80d9f2..ef85ead5a 100644 --- a/domains/www.alvin.json +++ b/domains/www.alvin.json @@ -3,10 +3,8 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"], - "TXT": [ - "google-site-verification=OFAPUslqNNZEkB5-UDAC1K1QjXCwDW_e3flhEchoobM" - ] + "TXT": ["google-site-verification=OFAPUslqNNZEkB5-UDAC1K1QjXCwDW_e3flhEchoobM"] } } diff --git a/domains/www.angganix.json b/domains/www.angganix.json new file mode 100644 index 000000000..8a7a991e8 --- /dev/null +++ b/domains/www.angganix.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for redirection to angganix.is-a.dev", + "owner": { + "username": "angganix", + "email": "angganix@gmail.com" + }, + "records": { + "URL": "https://angganix.is-a.dev" + } +} diff --git a/domains/www.aswinmahesh.json b/domains/www.aswinmahesh.json index 6272bc668..3e39f2a5a 100644 --- a/domains/www.aswinmahesh.json +++ b/domains/www.aswinmahesh.json @@ -1,11 +1,10 @@ { "description": "Aswin Mahesh Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/www.aswinmaheshc.json b/domains/www.aswinmaheshc.json index ad48739bf..401fc1519 100644 --- a/domains/www.aswinmaheshc.json +++ b/domains/www.aswinmaheshc.json @@ -1,11 +1,10 @@ { "description": "Aswin Mahesh C Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/www.bao.json b/domains/www.bao.json new file mode 100644 index 000000000..3c1bf1496 --- /dev/null +++ b/domains/www.bao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bphamict", + "email": "bphamict@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/www.bteamapp.json b/domains/www.bteamapp.json index a71f767a9..48c20bedc 100644 --- a/domains/www.bteamapp.json +++ b/domains/www.bteamapp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/www.chat.alvin.json b/domains/www.chat.alvin.json index 810c13865..19f6673c5 100644 --- a/domains/www.chat.alvin.json +++ b/domains/www.chat.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/www.dhlcgd.json b/domains/www.dhlcgd.json index 0f61df0fe..5f8ca4e06 100644 --- a/domains/www.dhlcgd.json +++ b/domains/www.dhlcgd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dhlcgd", - "email": "dhlcgdofficial@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/www.encoder.js.json b/domains/www.encoder.js.json new file mode 100644 index 000000000..feeba49ed --- /dev/null +++ b/domains/www.encoder.js.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "records": { + "URL": "https://encoder.js.is-a.dev/" + } +} diff --git a/domains/www.fungaming.joe50097.json b/domains/www.fungaming.joe50097.json new file mode 100644 index 000000000..44036265b --- /dev/null +++ b/domains/www.fungaming.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "CNAME": "fungaming-discord-server.netlify.app" + } +} diff --git a/domains/www.harunabdullah.json b/domains/www.harunabdullah.json new file mode 100644 index 000000000..6af801cca --- /dev/null +++ b/domains/www.harunabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harunabdullahrakin" + }, + + "records": { + "A": ["185.31.40.12"] + } +} diff --git a/domains/www.haseeb.json b/domains/www.haseeb.json index 73ebd758f..e04a74934 100644 --- a/domains/www.haseeb.json +++ b/domains/www.haseeb.json @@ -1,10 +1,9 @@ { "owner": { "username": "Haseebprivate", - "discord": "1207534121052672090", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Ty69vVqW-3J6uW_4-3gCeQ4P0POpxbuAAuYHc8UDbAiUGQLJ63wn4wKcpqV57OCSJHXHtjYXx1pgjJbn0ZXLc8uNvqGH4FmkFRnNIc965Nc084e1tNecccsh8CWec6PyVCWwrnz0XEC6Sa6HaRdfTNWt26LVh7gg8giIo58xBh2iTs-kgi9z4RXcO9UxDjDFu0_59GEoN0H2Zf6T-orhS3Yh05JoJGgAsfJsHi-plKx1YnP1GkA0w9NNty9xSb5rwiwdkRe_f-eDfko6E7xEOe8DC-30-juJNIYySE4tW-OabivqyHKXkoAHODEMLUJBDmOQsafL6CfnhFFiJXM6Vg.4VlFBFqjfMvaC1ZZJtQpuA.xXr9WcHSGqDmzsetkikBztVVlb9XDBvwqdO59GJmVJT_rHhB8fZdJKsAC31y6jVvjaIPeBk0FUKvxLtcNXMqfQzHwAGtjgNINm_93tEQg5c.eW8TVU_U5J80UdQWyxRhAg" + "discord": "1207534121052672090" }, - "record": { + "records": { "CNAME": "haseeb-khalid.netlify.app" } } diff --git a/domains/www.hive.alvin.json b/domains/www.hive.alvin.json index 810c13865..19f6673c5 100644 --- a/domains/www.hive.alvin.json +++ b/domains/www.hive.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/www.joe50097.json b/domains/www.joe50097.json index 544b87710..e4ff246b4 100644 --- a/domains/www.joe50097.json +++ b/domains/www.joe50097.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Joe50097", - "email": "zcell9500@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "CNAME": "joe50097.netlify.app" + } } diff --git a/domains/www.json b/domains/www.json deleted file mode 100644 index 708e00ecc..000000000 --- a/domains/www.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "is-a.dev" - }, - "proxied": true -} diff --git a/domains/www.justdeveloper.json b/domains/www.justdeveloper.json new file mode 100644 index 000000000..68a47ef90 --- /dev/null +++ b/domains/www.justdeveloper.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "records": { + "URL": "https://justdeveloper.is-a.dev/" + } +} diff --git a/domains/www.juststudio.json b/domains/www.juststudio.json new file mode 100644 index 000000000..a3039721f --- /dev/null +++ b/domains/www.juststudio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "records": { + "URL": "https://juststudio.is-a.dev/" + } +} diff --git a/domains/www.lua.json b/domains/www.lua.json index b86e5309c..1b1d5a559 100644 --- a/domains/www.lua.json +++ b/domains/www.lua.json @@ -5,7 +5,7 @@ "email": "notxlua@gmail.com", "discord": "778436572835086366" }, - "record": { + "records": { "A": ["75.119.201.51"] } } diff --git a/domains/www.mohan.json b/domains/www.mohan.json index 7217e6514..8c3f32823 100644 --- a/domains/www.mohan.json +++ b/domains/www.mohan.json @@ -1,10 +1,9 @@ { "owner": { "username": "mohankumarpaluru", - "discord": "272751100237578241", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q2d7CXJ-jVBCv3PUMEStpVqnk0Lc0YyspsLJEHjke1xPuQrHuMNElJxCERMxrkoDBTAJQS7AVwfGQxEASWM7urhwuWXP5ot3R1OE9QVdnQE-VdYZvit7DrbaboHCItT8K9B1ybWNkgd7oxSJArUiTJOQKXLna8BFWNFowN_4Hi833cWzBxRA_ZvwKB-Ve_vk-5ilpmuPVsUdbdRUSoOVdKBVbSYthwJ_bUKRRg6yVA-XG84M4_JaUb23mMcSBlE9dT-wC7n_iD6y06R4b284zAeqkrsBz-mg7CJ08ib8bu6RgGX_MTZpt-895KVQML1AmGDvMgnn8hP-2IbCfrQxIw.sZmo2jtMegZMGGFW7Eztzw.RCZ6ASMEZy18IC_cxR2WIX674_kJOaeRmWC4NETwulSudLLpHNQbm_41YvBsRfc9aUJ_3JyFoP524bukVS95-ztvYCAQk1Y5YLZDkLKbREGmMn1KGVYWsDHgIe9CyzvU.p8fsRd-LTtbJ1LIhd1YC_A" + "discord": "272751100237578241" }, - "record": { + "records": { "CNAME": "mohan.is-a.dev" } } diff --git a/domains/www.myforum.json b/domains/www.myforum.json index 72a2fee0a..81d6de8dc 100644 --- a/domains/www.myforum.json +++ b/domains/www.myforum.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "myforum.mydiscussion.net" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "myforum.mydiscussion.net" + } } diff --git a/domains/www.paylink.joe50097.json b/domains/www.paylink.joe50097.json new file mode 100644 index 000000000..de4492944 --- /dev/null +++ b/domains/www.paylink.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "CNAME": "paylink-comming-soon.netlify.app" + } +} diff --git a/domains/www.schumerism.json b/domains/www.schumerism.json index 90c4b59f9..29a363eab 100644 --- a/domains/www.schumerism.json +++ b/domains/www.schumerism.json @@ -3,7 +3,7 @@ "username": "homosapiensapien", "email": "nathanielswoo@gmail.com" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/www.sign.alvin.json b/domains/www.sign.alvin.json new file mode 100644 index 000000000..19f6673c5 --- /dev/null +++ b/domains/www.sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/www.tanuj-nagpal.json b/domains/www.tanuj-nagpal.json new file mode 100644 index 000000000..15942de1c --- /dev/null +++ b/domains/www.tanuj-nagpal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanuj101", + "email": "tanujnagpal999@gmail.com" + }, + "records": { + "CNAME": "tanuj101.netlify.app" + } +} diff --git a/domains/www.todo.alvin.json b/domains/www.todo.alvin.json index 810c13865..19f6673c5 100644 --- a/domains/www.todo.alvin.json +++ b/domains/www.todo.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/www.ttkt.json b/domains/www.ttkt.json index a71f767a9..48c20bedc 100644 --- a/domains/www.ttkt.json +++ b/domains/www.ttkt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "records": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/www.udhaya.json b/domains/www.udhaya.json index a30fdef28..51ba071de 100644 --- a/domains/www.udhaya.json +++ b/domains/www.udhaya.json @@ -4,7 +4,7 @@ "username": "xaceduke", "email": "kinghtth0@gmail.com" }, - "record": { + "records": { "CNAME": "mainudhaya.netlify.app" } } diff --git a/domains/www.vikipranata.json b/domains/www.vikipranata.json new file mode 100644 index 000000000..57a76624a --- /dev/null +++ b/domains/www.vikipranata.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for redirection to vikipranata.is-a.dev", + "owner": { + "username": "vikipranata", + "email": "helovikipranata@gmail.com" + }, + "records": { + "URL": "https://vikipranata.is-a.dev" + } +} diff --git a/domains/www.wizzybot.joe50097.json b/domains/www.wizzybot.joe50097.json new file mode 100644 index 000000000..3fc2793d7 --- /dev/null +++ b/domains/www.wizzybot.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "CNAME": "wizzybot.netlify.app" + } +} diff --git a/domains/www.yourthoughts.catrin.json b/domains/www.yourthoughts.catrin.json index f761e3ed4..43858c270 100644 --- a/domains/www.yourthoughts.catrin.json +++ b/domains/www.yourthoughts.catrin.json @@ -3,7 +3,7 @@ "username": "catrinlam", "discord": "614054830360494100" }, - "record": { + "records": { "A": ["144.21.62.57"] } } diff --git a/domains/wyatt.json b/domains/wyatt.json new file mode 100644 index 000000000..316b500f6 --- /dev/null +++ b/domains/wyatt.json @@ -0,0 +1,11 @@ +{ + "description": "Blog", + "repo": "https://github.com/ws998116/ws998116.github.io", + "owner": { + "username": "ws998116", + "email": "ws998116@gmail.com" + }, + "records": { + "CNAME": "ws998116.github.io" + } +} diff --git a/domains/wzx.json b/domains/wzx.json index 69b51f547..20f3f15c9 100644 --- a/domains/wzx.json +++ b/domains/wzx.json @@ -5,7 +5,7 @@ "username": "website-pages", "email": "unpu123456@outlook.com" }, - "record": { + "records": { "CNAME": "website-pages.github.io" } } diff --git a/domains/x.json b/domains/x.json index beb04f342..17926910b 100644 --- a/domains/x.json +++ b/domains/x.json @@ -1,9 +1,9 @@ { "owner": { - "username": "jvideo-sk", - "discord": "1030204181207859260" + "username": "GameRoMan", + "email": "gameromandev@gmail.com" }, - "record": { - "CNAME": "jvideo.github.io" + "records": { + "CNAME": "gameroman.pages.dev" } } diff --git a/domains/x0ba.json b/domains/x0ba.json index 8faa5fe42..9e66817d9 100644 --- a/domains/x0ba.json +++ b/domains/x0ba.json @@ -3,7 +3,7 @@ "username": "x0ba", "email": "mkshift@tuta.io" }, - "record": { + "records": { "CNAME": "x0ba.github.io" } } diff --git a/domains/x4b1.json b/domains/x4b1.json index 68355976e..8715e80ca 100644 --- a/domains/x4b1.json +++ b/domains/x4b1.json @@ -3,7 +3,7 @@ "username": "x4b1", "email": "xmartinez1702@gmail.com" }, - "record": { + "records": { "CNAME": "xmartinez.dev" } } diff --git a/domains/x8t.json b/domains/x8t.json index 0ee196af7..3c9db42f6 100644 --- a/domains/x8t.json +++ b/domains/x8t.json @@ -3,7 +3,7 @@ "username": "x8t-code", "email": "x8t@tuta.io" }, - "record": { + "records": { "CNAME": "x8t-code.github.io" } } diff --git a/domains/x93.json b/domains/x93.json index b24332516..5ff446f87 100644 --- a/domains/x93.json +++ b/domains/x93.json @@ -1,10 +1,9 @@ { "owner": { "username": "xavzen", - "discord": "1124747549450977280", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.imphI7TJ5piJal5QDZrae4MZOp5Qng5f9WDAiEKpI142edS-w_kZjSPLi4JGqJpOIB0HL7EZMKb9uzkkVSL263GrEARaCmlCz3be0Llw9CoJGokIoUlhuBMlZeIE0XWWMsVeYAmU3oxIEPblc9JPs11oeTv1xh2x_b2uEZIry3wP3evd9HPRWivyOHjsyoUeEJx9_okuoJ4ULSS0ZPg0D_wq6tVGA-HwMCg-wUmeqk5DWt_GIJx14hGWGzJrVF9e-b0tPt7iqTN_PH74856kmTuu6_P3K1fspLNqiujiiByYkP8H0sRW9gciBhUGZr925h9IdsHKvXyfd9HtDNgGeg.1DfQ7ov9yg7ggUGRZJqhmw.0tTEyez485OFHSzTbhOsySXdCiE6S0IAzOVi69pbmA_qZco42OYArEf3MHhNQM6p3Zl5Dz-NztfMB-z4tY1xqUCaOme8TgTpb-gYWXc2oh4.K1RLSfDaW92wTf2Lz2cnPQ" + "discord": "1124747549450977280" }, - "record": { + "records": { "CNAME": "guns.lol" } } diff --git a/domains/xabdoat.json b/domains/xabdoat.json index 6d862b66e..b58c005cb 100644 --- a/domains/xabdoat.json +++ b/domains/xabdoat.json @@ -5,7 +5,7 @@ "username": "xAbdoAT", "twitter": "xAbdoAT" }, - "record": { + "records": { "CNAME": "xabdoat.github.io" } } diff --git a/domains/xandaah.json b/domains/xandaah.json index 26dff68f8..35a284279 100644 --- a/domains/xandaah.json +++ b/domains/xandaah.json @@ -1,10 +1,9 @@ { "owner": { "username": "xandaaah", - "discord": "726910228289028127", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.oxrqqSqk9XxZnJWHNR5pvh-uugiwuZObvtdKEK13Ukiuv_JoIVoADXbyLKQsWMbmC5RkNae5ynPvf7hCEljvIes9SPv7RAmkBXlJ62dSgF4pv500KKYhw3rYfvLH42f-Q122hxEDqrCEE-ipcfBJKuLw6XZm-RJBRZWOqZ_qcWlMmt1lODds5zPfccXuaUE2_CzN1vEfxm_gFeLRGPAwavy3Iu-03wCoE7GCljIdL4fTWTC5B6CoKYlT8WBtbcTsbIYKPvx6jaZcoVyK9gyAlX4MzUT1bGn9CfsBeJFPsr2fcrVV7WUlTKwGb7m0dE7i0lsVs-IDHIc0Fj75n6lCFA.4RWb42LiXSLOcR862EbpwA.7zo3KErqOjZC9VbtZ6KxQ6DW6M8gAwJCE2Vq8oEulH8TlThXAi0qTEdLLGxJoyJvlR_0ACfcVlJnPsOUx5fDnOJd2rG9SgqTH6uqLS1UUzc.gWnPDXFPz_YGFAnBd5GuIA" + "discord": "726910228289028127" }, - "record": { + "records": { "CNAME": "xandaaah.github.io" } } diff --git a/domains/xanudu.json b/domains/xanudu.json index e1bddef37..f33a392a6 100644 --- a/domains/xanudu.json +++ b/domains/xanudu.json @@ -5,7 +5,7 @@ "username": "XanuduBuster", "email": "xanubuster@proton.me" }, - "record": { + "records": { "CNAME": "xanudubuster.github.io" } } diff --git a/domains/xap3y.json b/domains/xap3y.json index 887e42cca..02ecce913 100644 --- a/domains/xap3y.json +++ b/domains/xap3y.json @@ -3,7 +3,7 @@ "username": "xap3y", "email": "worker@xap3y.space" }, - "record": { + "records": { "URL": "https://xap3y.space" } } diff --git a/domains/xash.json b/domains/xash.json index a38a3426d..c0ad66014 100644 --- a/domains/xash.json +++ b/domains/xash.json @@ -3,7 +3,7 @@ "username": "7xa5h", "email": "xash4492@gmail.com" }, - "record": { + "records": { "CNAME": "7xa5h.github.io" } } diff --git a/domains/xave.json b/domains/xave.json index 548bb5485..c0c403595 100644 --- a/domains/xave.json +++ b/domains/xave.json @@ -5,7 +5,7 @@ "username": "grilledwindow", "email": "xaveang@gmail.com" }, - "record": { + "records": { "CNAME": "grilledwindow.github.io" } } diff --git a/domains/xavier.json b/domains/xavier.json new file mode 100644 index 000000000..400097448 --- /dev/null +++ b/domains/xavier.json @@ -0,0 +1,11 @@ +{ + "description": "Xavier Personal Development Site", + "repo": "https://github.com/MrSiir/mrsiir.github.io", + "owner": { + "username": "MrSiir", + "email": "mrsiir@gmail.com" + }, + "records": { + "CNAME": "mrsiir.github.io" + } +} diff --git a/domains/xaxa.json b/domains/xaxa.json index 294789ef7..6069c797c 100644 --- a/domains/xaxa.json +++ b/domains/xaxa.json @@ -5,7 +5,7 @@ "username": "333xaxa", "email": "xaxa_07x10@gmail.com" }, - "record": { + "records": { "CNAME": "333xaxa.github.io" } } diff --git a/domains/xdevman.json b/domains/xdevman.json new file mode 100644 index 000000000..a9f1691b0 --- /dev/null +++ b/domains/xdevman.json @@ -0,0 +1,11 @@ +{ + "description": "The domain will be used for my portfolio", + "repo": "https://github.com/xdevman1/register", + "owner": { + "username": "xdevman1", + "email": "xdevman9@gmail.com" + }, + "records": { + "CNAME": "xdevman1.github.io" + } +} diff --git a/domains/xdlyy.json b/domains/xdlyy.json index fb8333852..dd117228b 100644 --- a/domains/xdlyy.json +++ b/domains/xdlyy.json @@ -3,7 +3,7 @@ "username": "xdlyy404", "email": "fadlyid7@gmail.com" }, - "record": { + "records": { "URL": "https://xdlyy404.github.io" } } diff --git a/domains/xdoxx123.json b/domains/xdoxx123.json index 8a426286d..4a0c23117 100644 --- a/domains/xdoxx123.json +++ b/domains/xdoxx123.json @@ -5,7 +5,7 @@ "username": "xdoxx123", "email": "xdoxx124@gmail.com" }, - "record": { + "records": { "CNAME": "xdoxx123.github.io" } } diff --git a/domains/xelkomy.json b/domains/xelkomy.json new file mode 100644 index 000000000..3834a5c67 --- /dev/null +++ b/domains/xelkomy.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/xElkomy/xElkomy.github.io", + "owner": { + "username": "xElkomy", + "email": "khaled.mohamed@xelkomy.com", + "discord": "khaledkarimeldin" + }, + "records": { + "URL": "https://blog.xelkomy.com" + } +} diff --git a/domains/xelxen.json b/domains/xelxen.json index 870ca2b9c..efc931650 100644 --- a/domains/xelxen.json +++ b/domains/xelxen.json @@ -1,12 +1,11 @@ { "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": { + "records": { "CNAME": "xelxen.github.io" } } diff --git a/domains/xeno.json b/domains/xeno.json index 7752e3014..664f4c809 100644 --- a/domains/xeno.json +++ b/domains/xeno.json @@ -3,7 +3,7 @@ "username": "lextra", "email": "xenojusbetter@gmail.com" }, - "record": { + "records": { "CNAME": "bloody.bio" } } diff --git a/domains/xeno9118.json b/domains/xeno9118.json index 830ec6510..dfaf3a452 100644 --- a/domains/xeno9118.json +++ b/domains/xeno9118.json @@ -3,7 +3,7 @@ "username": "Aether1777", "email": "bkevin39415@gmail.com" }, - "record": { + "records": { "CNAME": "border.hop.io" } } diff --git a/domains/xenon.json b/domains/xenon.json index c044009d6..cd172f43d 100644 --- a/domains/xenon.json +++ b/domains/xenon.json @@ -4,7 +4,7 @@ "username": "LMGXENON", "email": "lmgxenon9066@gmail.com" }, - "record": { + "records": { "CNAME": "xenon-ao1e.onrender.com" } } diff --git a/domains/xenonrexo.json b/domains/xenonrexo.json new file mode 100644 index 000000000..0e3d4dbd0 --- /dev/null +++ b/domains/xenonrexo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shshams", + "email": "shahadathossenshams@gmail.com" + }, + "records": { + "CNAME": "xenonrexo.vercel.app" + } +} diff --git a/domains/xenside.json b/domains/xenside.json index 41670b384..a96169263 100644 --- a/domains/xenside.json +++ b/domains/xenside.json @@ -3,13 +3,8 @@ "username": "XenSideNBTS", "email": "xenside@xenside.is-a.dev" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/xevion.json b/domains/xevion.json index 5fc9c7534..cca1b9577 100644 --- a/domains/xevion.json +++ b/domains/xevion.json @@ -3,7 +3,7 @@ "username": "Xevion", "email": "xevion@xevion.dev" }, - "record": { + "records": { "URL": "https://xevion.dev/?utm_source=is-a-dev" } } diff --git a/domains/xgarciadevs.json b/domains/xgarciadevs.json index 5f16a24f2..0d55156f7 100644 --- a/domains/xgarciadevs.json +++ b/domains/xgarciadevs.json @@ -1,10 +1,9 @@ { "owner": { "username": "xgarciadevs", - "discord": "528637169544331291", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AEE26UaHZe8_LcuhJr1lzNzgeSkXmln0mE8UcQtMR0hViboJjLWgvqFz-SjvjwIAVojRtThKqDHSrLBDL6o348iAjyq40tkt4lBdXfr99WSaQMpFpHInnZt5oR8sxeudO5qIjUHQcfS-Yc0PjmkRTVAU9Tqux3y5Aq9zDVEuijnPTWZ2K_4jx9m9yl9sBIaWmnF_IsxQ8uyqjdbetOi5SjkKyAbRFWw7oOGFtYLj6TnoX3scmzttZ3KGmWJ0ZNS13Laox2HQcCpHxxK1S7KJ6pL5pMwVUPYky4HyHehxQKFg95i3MRzWuSTkodGtBdh49Pwh69QzrJqQb8att80uBA.TlnYc1bf6FVZiUS70wP29w.xE4-Bc5esGlMAfR9OgfYmSQn-nhzZTYuwyq_CazXX9AfLoNwe_uw322aB7BVJ0Ir9q7OhuxlgHH6p_Dr-eEGcTLSVrsXffpZ59QTVCmZtIo.8O7dpgd0M33X_CoKfigNyQ" + "discord": "528637169544331291" }, - "record": { + "records": { "CNAME": "xgarciadevs.github.io" } } diff --git a/domains/xgeneric.json b/domains/xgeneric.json index 4ffc90339..6962dd983 100644 --- a/domains/xgeneric.json +++ b/domains/xgeneric.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "xgeneric", - "discord": "1194494419064328296", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.D232zLsD29QIoCDQBNjD76jn7VgIPpSOIrRPBMn37VV_JTS_3fJAKK7ADQtFwQu0A-I0TcZTU3UczrEGdwjmkHHAhPu95BuRbFqbWruAnX6ETw0JjSJQvYmlrFjF1xDMM33CJ3GW0R985HyTcB5MbU6-QvWbqPou5bwRShlQ06KKP944EiASahDDNAog2HUwEf7VJjWxdB-hP3Yj_BOvlC_kQBfZBhOTG4OWwbvbAonKjK26oqrVdUKhuDT0VfvI4VsBXlSG3g8P2LnyZZPmh3xJ3UQ4aWYRFhJkC3f0M98NQ4mI7ddwZu4YPVcw9yHiMD9iDnTBnNiSsJVZeMhqQw.6v7QP1iKQEXF2xIliVLoxA.n1gPGIhivHdAaq9enhjewqRKzW2BtPsOt97Ng4x7yp8nv-OzAS4Jev1hp_M3z0XL7l5z1Wc2YrPW7z3trdUlmTZkCLcOziKhwwECaKbQNErOq3yXDxe7K5FvhmQWGNQJ.fZiP_f8z_xpVs5jS0MRQPQ" - }, - - "record": { - "CNAME": "paulswebhelp.com" - } - } - \ No newline at end of file + "owner": { + "username": "xgeneric", + "discord": "1194494419064328296" + }, + "records": { + "CNAME": "paulswebhelp.com" + } +} diff --git a/domains/xgorn.json b/domains/xgorn.json index 330b01ad5..85699cf2c 100644 --- a/domains/xgorn.json +++ b/domains/xgorn.json @@ -3,7 +3,7 @@ "username": "X-Gorn", "email": "xgorntv@gmail.com" }, - "record": { + "records": { "CNAME": "x-gorn.github.io" } } diff --git a/domains/xhide341.json b/domains/xhide341.json new file mode 100644 index 000000000..f5fe74289 --- /dev/null +++ b/domains/xhide341.json @@ -0,0 +1,12 @@ +{ + "description": "Hey, I'm hide and I'm a developer", + "repo": "https://github.com/xhide341/portfolio", + "owner": { + "username": "xhide341", + "email": "shawnehgn10@gmail.com", + "discord": "364749406878171136" + }, + "records": { + "CNAME": "xhide341.netlify.app" + } +} diff --git a/domains/xiaolangkong.json b/domains/xiaolangkong.json index 57b3d7618..2e6945237 100644 --- a/domains/xiaolangkong.json +++ b/domains/xiaolangkong.json @@ -5,7 +5,7 @@ "username": "xiaolangkong", "email": "xiaolangkong@protonmail.com" }, - "record": { + "records": { "CNAME": "xiaolangkong.github.io" } } diff --git a/domains/xiaolei.json b/domains/xiaolei.json index 4031dd79e..d90b90062 100644 --- a/domains/xiaolei.json +++ b/domains/xiaolei.json @@ -3,7 +3,7 @@ "username": "zzzs", "email": "863837949@qq.com" }, - "record": { + "records": { "URL": "https://github.com/zzzs" } } diff --git a/domains/xiaowu.json b/domains/xiaowu.json index c1b50fe0e..05f222363 100644 --- a/domains/xiaowu.json +++ b/domains/xiaowu.json @@ -3,7 +3,7 @@ "username": "w-xuefeng", "email": "xuefeng@wangxuefeng.com.cn" }, - "record": { + "records": { "CNAME": "w-xuefeng.github.io" } } diff --git a/domains/xiaoxi-tw.json b/domains/xiaoxi-tw.json index e84042a04..391be9c41 100644 --- a/domains/xiaoxi-tw.json +++ b/domains/xiaoxi-tw.json @@ -6,7 +6,7 @@ "email": "jimmy20180130@gmail.com", "twitter": "jimmyyo45639462" }, - "record": { + "records": { "CNAME": "jimmy20180130.github.io" } } diff --git a/domains/xinful.json b/domains/xinful.json index 432246c37..9487cad4d 100644 --- a/domains/xinful.json +++ b/domains/xinful.json @@ -3,7 +3,7 @@ "username": "xinfull", "email": "robertkitunda89@gmail.com" }, - "record": { + "records": { "CNAME": "xinfull.github.io" } } diff --git a/domains/xkaper.json b/domains/xkaper.json index 8b131d773..fc4b64ba1 100644 --- a/domains/xkaper.json +++ b/domains/xkaper.json @@ -3,7 +3,7 @@ "username": "xkaper001", "email": "imluckyayan@gmail.com" }, - "record": { + "records": { "CNAME": "xkaper.webflow.io" } } diff --git a/domains/xkhronoz.json b/domains/xkhronoz.json index 5b11b7e66..8d28fe70a 100644 --- a/domains/xkhronoz.json +++ b/domains/xkhronoz.json @@ -5,7 +5,7 @@ "username": "xKhronoz", "email": "yeek3063@gmail.com" }, - "record": { + "records": { "CNAME": "xkhronoz.github.io" } } diff --git a/domains/xkotelek.json b/domains/xkotelek.json index 18dd7be1e..5f8776757 100644 --- a/domains/xkotelek.json +++ b/domains/xkotelek.json @@ -1,10 +1,9 @@ { "owner": { "username": "xKotelek", - "email": "98203141+xKotelek@users.noreply.github.com", "discord": "803159847641284640" }, - "record": { + "records": { "CNAME": "xkotelek.github.io" } } diff --git a/domains/xlr.json b/domains/xlr.json index 64b10fb8c..81ce25aa9 100644 --- a/domains/xlr.json +++ b/domains/xlr.json @@ -5,7 +5,7 @@ "username": "llxlr", "email": "i@xhlr.top" }, - "record": { + "records": { "URL": "https://white-album.top" } } diff --git a/domains/xmars.json b/domains/xmars.json new file mode 100644 index 000000000..bfaa03005 --- /dev/null +++ b/domains/xmars.json @@ -0,0 +1,10 @@ +{ + "description": "My personal info", + "owner": { + "username": "xmars4", + "email": "xtruongptit@gmail.com" + }, + "records": { + "CNAME": "xmars4.github.io" + } +} diff --git a/domains/xmoj-bbs.json b/domains/xmoj-bbs.json index cd33a9f41..d54d1003e 100644 --- a/domains/xmoj-bbs.json +++ b/domains/xmoj-bbs.json @@ -3,7 +3,7 @@ "username": "PythonSmall-Q", "email": "seanoj_noreply@yeah.net" }, - "record": { + "records": { "CNAME": "xmoj-script.pages.dev" } } diff --git a/domains/xn--01a.json b/domains/xn--01a.json deleted file mode 100644 index 803c2d456..000000000 --- a/domains/xn--01a.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "ы.is-a.dev", - "repo": "https://github.com/juststudio7/website", - "owner": { - "username": "JustDeveloper1", - "email": "support@juststudio.is-a.dev" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/xn--mt9h.json b/domains/xn--mt9h.json deleted file mode 100644 index 9a903f2a6..000000000 --- a/domains/xn--mt9h.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DynoW", - "email": "naffets0@gmail.com", - "discord": "455608238335983617" - }, - "record": { - "URL": "https://dyno.is-a.dev" - } -} diff --git a/domains/xperian.json b/domains/xperian.json new file mode 100644 index 000000000..ed461edbf --- /dev/null +++ b/domains/xperian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xperian48", + "discord": "xperian_48" + }, + "records": { + "CNAME": "xperian48.github.io" + } +} diff --git a/domains/xpr.json b/domains/xpr.json index a08732c83..0ad2e51d4 100644 --- a/domains/xpr.json +++ b/domains/xpr.json @@ -6,7 +6,7 @@ "email": "xpr@atl.tools", "discord": "xprsh" }, - "record": { + "records": { "CNAME": "xpr.codeberg.page" } } diff --git a/domains/xpugno.json b/domains/xpugno.json index 19148b752..a49fb87f7 100644 --- a/domains/xpugno.json +++ b/domains/xpugno.json @@ -1,13 +1,11 @@ { - "description": "Personal website for xPugno, hosted on Netlify at https://xpugno.netlify.app", - "repo": "https://github.com/xPugnocode/sillywebsite", - "owner": { - "username": "xPugnocode", - "discord": "567924760370085899" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "description": "Personal website for xPugno, hosted on Netlify at https://xpugno.netlify.app", + "repo": "https://github.com/xPugnocode/sillywebsite", + "owner": { + "username": "xPugnocode", + "discord": "567924760370085899" + }, + "records": { + "A": ["75.2.60.5"] + } } diff --git a/domains/xrap1dx.json b/domains/xrap1dx.json index 3ce54e246..1c54ac0f6 100644 --- a/domains/xrap1dx.json +++ b/domains/xrap1dx.json @@ -1,16 +1,12 @@ { "description": "making a cool portfolio website.", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "email": "sirrapid155@gmail.com" }, - "record": { + "records": { "A": ["69.30.249.53"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all", - "zoho-verification=zb43908801.zmverify.zoho.eu" - ] + "TXT": ["v=spf1 include:spf.improvmx.com ~all", "zoho-verification=zb43908801.zmverify.zoho.eu"] } } diff --git a/domains/xrcs.json b/domains/xrcs.json index 5483fe9fd..6ba994d6c 100644 --- a/domains/xrcs.json +++ b/domains/xrcs.json @@ -5,7 +5,7 @@ "username": "xrcss", "discord": "xrcs#0001" }, - "record": { + "records": { "CNAME": "xrcss.github.io" } } diff --git a/domains/xream.json b/domains/xream.json index 62847df6e..4c9f910f2 100644 --- a/domains/xream.json +++ b/domains/xream.json @@ -3,7 +3,7 @@ "username": "xream", "email": "xreamxu@gmail.com" }, - "record": { + "records": { "A": ["150.230.219.72"] } } diff --git a/domains/xrendani.json b/domains/xrendani.json new file mode 100644 index 000000000..52dce4ce3 --- /dev/null +++ b/domains/xrendani.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "xrendani" + }, + "records": { + "CNAME": "xrendani.github.io" + } +} diff --git a/domains/xrvuloepjriu.sevinda-herath.json b/domains/xrvuloepjriu.sevinda-herath.json new file mode 100644 index 000000000..86eaecb10 --- /dev/null +++ b/domains/xrvuloepjriu.sevinda-herath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "records": { + "CNAME": "gv-alvrz5ytmlhjh6.dv.googlehosted.com" + } +} diff --git a/domains/xsamivs.json b/domains/xsamivs.json index faf0102a8..ab126e20b 100644 --- a/domains/xsamivs.json +++ b/domains/xsamivs.json @@ -1,11 +1,10 @@ { "description": "Development Website of xSamiVS", - "repo": "https://github.com/xSamiVS", "owner": { "username": "xSamiVS", "discord": "xSamiVS - 455335173748162563" }, - "record": { + "records": { "A": ["88.99.5.172"] } } diff --git a/domains/xsec.json b/domains/xsec.json index 395c94116..b021e20cd 100644 --- a/domains/xsec.json +++ b/domains/xsec.json @@ -3,7 +3,7 @@ "username": "mnikrsa21", "email": "igcloud16@gmail.com" }, - "record": { + "records": { "CNAME": "igcloudstore.my.id" } } diff --git a/domains/xshubhamg.json b/domains/xshubhamg.json new file mode 100644 index 000000000..ef9b16bd2 --- /dev/null +++ b/domains/xshubhamg.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio site", + "owner": { + "username": "xshubhamg", + "email": "shubhammgiri3@gmail.com" + }, + "records": { + "URL": "https://nerd-cv.netlify.app/" + } +} diff --git a/domains/xtendera.json b/domains/xtendera.json index e09fe10f3..fcc2106ea 100644 --- a/domains/xtendera.json +++ b/domains/xtendera.json @@ -1,10 +1,9 @@ { "owner": { "username": "Xtendera", - "discord": "738775476604239933", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sq-KmAgGR-ZbJSMLfzyBL3owG_zZlnOxd_sd8s_VAsjDbDKq--kTGCOXfIMA84j1YOrfTdhx58vH3lT4GuXTfPeHIGm48DCoMj-AFFzZ4yZ7BglL2CXaVSXC3IqaVuEsNegoXrukgXOud3_ntJSZ8xUxsPd-scu4pfRAcj4K5Dg6cYxOaPLFHu2oGpMF3wwxmA4PiYJrMzzEQfbzUKIu_-Z3VaKTe0nNRsGj949wYhFA_aWiVmpHpIJmlKw0qir6rSK0v_6bQinsOHggQovs3Aaa6PY91oQSzDFflnaQ7B6DfsOqH2e71BRFn5bY9Lr7krSc2gRA7pPloHcLKtGWkw.AJ7kxDQt59jciByxVnW8Qg.xPNk-rj6MCK2920t9Hc3igwLH6_irc1EP8aanc6bOSVBYnS5LYBDpLJUPc1nSgbMUWpM0twRuVivMCFjrSmHzDpjukrcNG1gzaba8MoCgudw24ow1rLiN1B2JaJjw4Hf.QAoAeekZzCOVpsAzHH9qGg" + "discord": "738775476604239933" }, - "record": { + "records": { "A": ["47.186.121.65"] } } diff --git a/domains/xthe.json b/domains/xthe.json deleted file mode 100644 index 64667b6b1..000000000 --- a/domains/xthe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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/xtoast.json b/domains/xtoast.json index 952d6a87b..cf7cca210 100644 --- a/domains/xtoast.json +++ b/domains/xtoast.json @@ -3,7 +3,7 @@ "username": "Toast0012", "email": "aahansiwakoti1@gmail.com" }, - "record": { + "records": { "CNAME": "toast-about-me.onrender.com" } } diff --git a/domains/xuefeng.json b/domains/xuefeng.json index c1b50fe0e..05f222363 100644 --- a/domains/xuefeng.json +++ b/domains/xuefeng.json @@ -3,7 +3,7 @@ "username": "w-xuefeng", "email": "xuefeng@wangxuefeng.com.cn" }, - "record": { + "records": { "CNAME": "w-xuefeng.github.io" } } diff --git a/domains/xuyife.json b/domains/xuyife.json index f765988e2..ce397c007 100644 --- a/domains/xuyife.json +++ b/domains/xuyife.json @@ -3,7 +3,7 @@ "username": "xuyife", "email": "18916947008@163.com" }, - "record": { + "records": { "CNAME": "xuyife.github.io" } } diff --git a/domains/xuyifei.json b/domains/xuyifei.json index c6dc6532d..2bd41e144 100644 --- a/domains/xuyifei.json +++ b/domains/xuyifei.json @@ -6,7 +6,7 @@ "email": "xuyifeiDev@outlook.com", "twitter": "xuyifei" }, - "record": { + "records": { "CNAME": "xuyife.github.io" } } diff --git a/domains/xvannn07.json b/domains/xvannn07.json index cca8c6571..7f3e5e8d8 100644 --- a/domains/xvannn07.json +++ b/domains/xvannn07.json @@ -3,7 +3,7 @@ "email": "xvannn07@example.com", "username": "Xvannn07" }, - "record": { + "records": { "CNAME": "portfolio-six-alpha-70.vercel.app" } } diff --git a/domains/xvrtech.json b/domains/xvrtech.json index 516612771..98a00ea6a 100644 --- a/domains/xvrtech.json +++ b/domains/xvrtech.json @@ -1,12 +1,11 @@ { - "description": "Toy website xvrtech.is-a.dev", - "repo": "https://github.com/FullStackedRVC/Agency.git", - "owner": { - "username": "FullStackedRVC", - "email": "robertocarov2@gmail.com" - }, - "record": { + "description": "Toy website xvrtech.is-a.dev", + "repo": "https://github.com/FullStackedRVC/Agency.git", + "owner": { + "username": "FullStackedRVC", + "email": "robertocarov2@gmail.com" + }, + "records": { "CNAME": "fullstackedrvc.github.io" - - } - } \ No newline at end of file + } +} diff --git a/domains/xyront.json b/domains/xyront.json index da19de159..487c35ee7 100644 --- a/domains/xyront.json +++ b/domains/xyront.json @@ -3,7 +3,7 @@ "username": "Xyront", "email": "abalabalscratch@gmail.com" }, - "record": { + "records": { "CNAME": "xyront.github.io" } } diff --git a/domains/xyter.json b/domains/xyter.json index 3d3e09505..96c54624d 100644 --- a/domains/xyter.json +++ b/domains/xyter.json @@ -5,7 +5,7 @@ "username": "VermiumSifell", "email": "vermium@zyner.org" }, - "record": { + "records": { "URL": "https://xyter.zyner.org" } } diff --git a/domains/xyz.json b/domains/xyz.json index 66ce08561..43e970ed0 100644 --- a/domains/xyz.json +++ b/domains/xyz.json @@ -3,7 +3,7 @@ "username": "BLCXD", "email": "blctoblc223@gmail.com" }, - "record": { + "records": { "CNAME": "blcpage.github.io" } } diff --git a/domains/xyzjesper.json b/domains/xyzjesper.json index 9d5e23ed4..d2c5d42c2 100644 --- a/domains/xyzjesper.json +++ b/domains/xyzjesper.json @@ -4,7 +4,7 @@ "username": "xyzjesper", "email": "contact@xyzjesper.dev" }, - "record": { + "records": { "CNAME": "proxy.system.nexocrew.space" } } diff --git a/domains/y.json b/domains/y.json index 0ab726729..7ae4b4ac2 100644 --- a/domains/y.json +++ b/domains/y.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "yunexiz.github.io" } } diff --git a/domains/yaakovschlachter.json b/domains/yaakovschlachter.json index a0238bee9..d84a9cd8b 100644 --- a/domains/yaakovschlachter.json +++ b/domains/yaakovschlachter.json @@ -3,7 +3,7 @@ "username": "CompuGenius", "email": "contact@cgprograms.com" }, - "record": { + "records": { "CNAME": "cgprograms.com" } } diff --git a/domains/yacineboussoufa.json b/domains/yacineboussoufa.json index c819933b5..5d41e7ef3 100644 --- a/domains/yacineboussoufa.json +++ b/domains/yacineboussoufa.json @@ -3,7 +3,7 @@ "username": "YacineBoussoufa", "email": "yacine.boussoufa.yb@gmail.com" }, - "record": { + "records": { "URL": "https://yacineboussoufa.it.eu.org" } } diff --git a/domains/yacoreq.json b/domains/yacoreq.json index d9dec1faa..c93ba1ada 100644 --- a/domains/yacoreq.json +++ b/domains/yacoreq.json @@ -6,7 +6,7 @@ "email": "yacoreq@gmail.com", "discord": "685845264417816611" }, - "record": { + "records": { "A": ["136.243.156.120"] } } diff --git a/domains/yaelmassieu.json b/domains/yaelmassieu.json index e65db6531..6eb31e5f5 100644 --- a/domains/yaelmassieu.json +++ b/domains/yaelmassieu.json @@ -3,7 +3,7 @@ "username": "bystrokr", "email": "jamesisajamessx@gmail.com" }, - "record": { + "records": { "A": ["66.45.229.178"] } } diff --git a/domains/yahli.json b/domains/yahli.json new file mode 100644 index 000000000..b7f4331e0 --- /dev/null +++ b/domains/yahli.json @@ -0,0 +1,10 @@ +{ + "description": "Personal dev website", + "owner": { + "username": "yahligitzi", + "email": "yahligitzi2@gmail.com" + }, + "records": { + "CNAME": "yahligitzi.github.io" + } +} diff --git a/domains/yahya-rabii.json b/domains/yahya-rabii.json index 447382535..3b466c7d4 100644 --- a/domains/yahya-rabii.json +++ b/domains/yahya-rabii.json @@ -4,7 +4,7 @@ "username": "Yahya-rabii", "email": "rabiiyahya1@gmail.com" }, - "record": { + "records": { "CNAME": "yahya-rabii.github.io" } } diff --git a/domains/yajtpg.json b/domains/yajtpg.json index c297e9d3f..956a67b94 100644 --- a/domains/yajtpg.json +++ b/domains/yajtpg.json @@ -5,7 +5,7 @@ "username": "YajTPG", "email": "yajtpg@gmail.com" }, - "record": { + "records": { "CNAME": "yajtpg.pages.dev" } } diff --git a/domains/yakate.json b/domains/yakate.json index 941169dd5..c9e572f98 100644 --- a/domains/yakate.json +++ b/domains/yakate.json @@ -6,7 +6,7 @@ "email": "trollekxmusic@gmail.com", "discord": "842070971669544982" }, - "record": { + "records": { "CNAME": "oyakate.github.io" } } diff --git a/domains/yakiyo.json b/domains/yakiyo.json index 0b478d727..beb144120 100644 --- a/domains/yakiyo.json +++ b/domains/yakiyo.json @@ -6,7 +6,7 @@ "twitter": "Yakiyo8", "discord": "Yakiyo#1206" }, - "record": { + "records": { "CNAME": "yakiyo.github.io" } } diff --git a/domains/yaman-malla.json b/domains/yaman-malla.json index 679e1b935..534a193ac 100644 --- a/domains/yaman-malla.json +++ b/domains/yaman-malla.json @@ -3,7 +3,7 @@ "username": "yamanISyaman", "email": "yaman.1423@gmail.com" }, - "record": { + "records": { "CNAME": "yaman-malla.surge.sh" } } diff --git a/domains/yamenher.json b/domains/yamenher.json new file mode 100644 index 000000000..1e1825d4e --- /dev/null +++ b/domains/yamenher.json @@ -0,0 +1,11 @@ +{ + "description": "A Material Website about me", + "repo": "https://github.com/yamenher/info", + "owner": { + "username": "Yamenher", + "email": "hermassiyamen@gmail.com" + }, + "records": { + "CNAME": "yamenher.github.io" + } +} diff --git a/domains/yandao.json b/domains/yandao.json index dc73eb55d..ae8ba5c8e 100644 --- a/domains/yandao.json +++ b/domains/yandao.json @@ -6,7 +6,7 @@ "email": "221202@ydlk.cc", "twitter": "YanDao0313" }, - "record": { + "records": { "CNAME": "yandao0313.github.io" } } diff --git a/domains/yang.json b/domains/yang.json index 496806c00..59a97c43a 100644 --- a/domains/yang.json +++ b/domains/yang.json @@ -5,7 +5,7 @@ "username": "xuchao996", "email": "chao.xu996@gmail.com" }, - "record": { + "records": { "CNAME": "xuchao996.github.io" } } diff --git a/domains/yanmaker.json b/domains/yanmaker.json index 09f2bd9ab..6f143f277 100644 --- a/domains/yanmaker.json +++ b/domains/yanmaker.json @@ -5,7 +5,7 @@ "username": "YanMaker", "email": "whodis2022@outlook.com" }, - "record": { + "records": { "CNAME": "yanmaker.github.io" } } diff --git a/domains/yas.json b/domains/yas.json new file mode 100644 index 000000000..2c7664203 --- /dev/null +++ b/domains/yas.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/yashokuu/yashokuu.github.io", + "owner": { + "username": "yashoukuu", + "email": "yas.studios.en@gmail.com" + }, + "records": { + "CNAME": "yashokuu.github.io" + } +} diff --git a/domains/yash-poojara.json b/domains/yash-poojara.json index 7c5bd7e25..9ad7b3361 100644 --- a/domains/yash-poojara.json +++ b/domains/yash-poojara.json @@ -4,7 +4,7 @@ "owner": { "username": "yash-poojara" }, - "record": { + "records": { "CNAME": "yash-poojara.github.io" } } diff --git a/domains/yash.json b/domains/yash.json index ab155bf9b..3657e4402 100644 --- a/domains/yash.json +++ b/domains/yash.json @@ -5,13 +5,8 @@ "username": "real-yash", "email": "connect@real-yash.is-a.dev" }, - "record": { - "A": [ - "185.199.111.153", - "185.199.109.153", - "185.199.108.153", - "185.199.110.153" - ], + "records": { + "A": ["185.199.111.153", "185.199.109.153", "185.199.108.153", "185.199.110.153"], "MX": ["yash-isa-dev01i.mail.protection.outlook.com"], "TXT": "v=spf1 include:spf.protection.outlook.com -all" } diff --git a/domains/yashas.json b/domains/yashas.json index 0aab88392..c88321fb2 100644 --- a/domains/yashas.json +++ b/domains/yashas.json @@ -1,11 +1,10 @@ { "description": "yashas.is-a.dev.", - "repo": "https://github.com/yashas9492", "owner": { "username": "Yashas9492", "email": "yashas.codes@gmail.com" }, - "record": { + "records": { "CNAME": "yashas9492.github.io" } } diff --git a/domains/yashasviallen.json b/domains/yashasviallen.json index 8932b058f..4ba35c79e 100644 --- a/domains/yashasviallen.json +++ b/domains/yashasviallen.json @@ -3,7 +3,7 @@ "username": "JavaProgswing", "email": "yashasviallen@gmail.com" }, - "record": { + "records": { "NS": ["bethany.ns.cloudflare.com", "miles.ns.cloudflare.com"] } } diff --git a/domains/yashgupta.json b/domains/yashgupta.json index 505710abe..ba079eaf3 100644 --- a/domains/yashgupta.json +++ b/domains/yashgupta.json @@ -3,7 +3,7 @@ "username": "yashhh999", "email": "gupta25yash@gmail.com" }, - "record": { + "records": { "CNAME": "yashhh999.github.io" } } diff --git a/domains/yashh-chauhan.json b/domains/yashh-chauhan.json index dc5b7a0a0..0de144347 100644 --- a/domains/yashh-chauhan.json +++ b/domains/yashh-chauhan.json @@ -4,7 +4,7 @@ "owner": { "username": "yashh-chauhan" }, - "record": { + "records": { "CNAME": "yashh-chauhan.github.io" } } diff --git a/domains/yashita.json b/domains/yashita.json new file mode 100644 index 000000000..0fadf0946 --- /dev/null +++ b/domains/yashita.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashita1512", + "email": "yashita1512939@gmail.com" + }, + "records": { + "CNAME": "yashita1512.github.io" + } +} diff --git a/domains/yashnerkar.json b/domains/yashnerkar.json new file mode 100644 index 000000000..359ed51dd --- /dev/null +++ b/domains/yashnerkar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashnerkar", + "email": "yashnerkar512@gmail.com" + }, + "records": { + "CNAME": "yashnerkar.github.io" + } +} diff --git a/domains/yashraj.json b/domains/yashraj.json index 707c75638..5b4edf859 100644 --- a/domains/yashraj.json +++ b/domains/yashraj.json @@ -6,7 +6,7 @@ "email": "ynnarke52@gmail.com", "twitter": "NarkeYashraj" }, - "record": { + "records": { "CNAME": "yashraj-n.github.io" } } diff --git a/domains/yashrao.json b/domains/yashrao.json index 9295dbae5..4d6a11689 100644 --- a/domains/yashrao.json +++ b/domains/yashrao.json @@ -3,7 +3,7 @@ "username": "py-yash", "email": "cwyash.rao@gmail.com" }, - "record": { + "records": { "CNAME": "py-yash.github.io" } } diff --git a/domains/yashsachdev.json b/domains/yashsachdev.json index a96833d27..71df9144b 100644 --- a/domains/yashsachdev.json +++ b/domains/yashsachdev.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yashsachdev", - "email": "yashsachdev5677@gmail.com" - }, - "record": { - "CNAME": "yashsachdevblog.azureedge.net" - } + "owner": { + "username": "yashsachdev", + "email": "yashsachdev5677@gmail.com" + }, + "records": { + "CNAME": "yashsachdevblog.azureedge.net" + } } diff --git a/domains/yasser.json b/domains/yasser.json index fbaaf4ced..d9e46c11c 100644 --- a/domains/yasser.json +++ b/domains/yasser.json @@ -3,7 +3,7 @@ "username": "yasserfds", "email": "yasserfedsi34@gmail.com" }, - "record": { + "records": { "URL": "https://yasserfedsi.vercel.app" } } diff --git a/domains/yassin.json b/domains/yassin.json index 83b763557..393d501b4 100644 --- a/domains/yassin.json +++ b/domains/yassin.json @@ -5,7 +5,7 @@ "username": "ycssin", "twitter": "ycssin" }, - "record": { + "records": { "CNAME": "ycssin.github.io" } } diff --git a/domains/yassine.json b/domains/yassine.json index 39e63049c..254a89eec 100644 --- a/domains/yassine.json +++ b/domains/yassine.json @@ -3,7 +3,7 @@ "username": "yassine20011", "email": "medalgamer47@gmail.com" }, - "record": { + "records": { "CNAME": "amjad.pages.dev" } } diff --git a/domains/yatharth.json b/domains/yatharth.json new file mode 100644 index 000000000..654554891 --- /dev/null +++ b/domains/yatharth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yatharthbhatia", + "email": "yatharthbhatia2004@gmail.com" + }, + "records": { + "CNAME": "yatharth-bhatia.vercel.app" + } +} diff --git a/domains/yatinmalhotra.json b/domains/yatinmalhotra.json new file mode 100644 index 000000000..ff703a4d6 --- /dev/null +++ b/domains/yatinmalhotra.json @@ -0,0 +1,11 @@ +{ + "description": "Personal-Portfolio", + "repo": "https://github.com/Yatin-Malhotra/TestPortfolio", + "owner": { + "username": "Yatin-Malhotra", + "discord": "foreverinevitable" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/yatsuki.json b/domains/yatsuki.json new file mode 100644 index 000000000..375747647 --- /dev/null +++ b/domains/yatsuki.json @@ -0,0 +1,11 @@ +{ + "description": "Personal dev domain for my portfolio, testing purposes, and self-hosting via Cloudflare Tunnel.", + "owner": { + "username": "Turkitutu", + "email": "turkitututfm@gmail.com", + "discord": "yatsuki." + }, + "records": { + "NS": ["ezra.ns.cloudflare.com", "teagan.ns.cloudflare.com"] + } +} diff --git a/domains/yaxh.json b/domains/yaxh.json new file mode 100644 index 000000000..6c8e03889 --- /dev/null +++ b/domains/yaxh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yaxhcodes", + "email": "meyashjoshi3101@gmail.com", + "discord": "965845932782526495" + }, + "records": { + "CNAME": "yaxhcodes.vercel.app" + } +} diff --git a/domains/yean.json b/domains/yean.json index 902ae8461..df828872f 100644 --- a/domains/yean.json +++ b/domains/yean.json @@ -3,7 +3,7 @@ "username": "joshex150", "email": "joshex150@gmail.com" }, - "record": { + "records": { "CNAME": "yean-tech.vercel.app" } } diff --git a/domains/yeasin.json b/domains/yeasin.json new file mode 100644 index 000000000..a1b322be1 --- /dev/null +++ b/domains/yeasin.json @@ -0,0 +1,11 @@ +{ + "description": "yeasin.is-a.dev", + "owner": { + "username": "yeasiin", + "email": "iamyeasiin@gmail.com" + }, + "records": { + "CNAME": "yeasiin.github.io" + }, + "proxied": true +} diff --git a/domains/yedu.json b/domains/yedu.json index dd7837db0..abdd3f67d 100644 --- a/domains/yedu.json +++ b/domains/yedu.json @@ -5,7 +5,7 @@ "username": "YeduKrishnanTY", "discord": "Chandler._bing__#8780" }, - "record": { + "records": { "CNAME": "yedukrishnanty.github.io" } } diff --git a/domains/yeetedwin.json b/domains/yeetedwin.json index 8caf214e6..32f27b0bd 100644 --- a/domains/yeetedwin.json +++ b/domains/yeetedwin.json @@ -5,7 +5,7 @@ "username": "YEETEDWIN", "email": "yeetedwin@protonmail.com" }, - "record": { + "records": { "CNAME": "yeetedwin.github.io" } } diff --git a/domains/yejun.json b/domains/yejun.json index cc91df80f..ae79dcfee 100644 --- a/domains/yejun.json +++ b/domains/yejun.json @@ -5,7 +5,7 @@ "username": "yejun", "email": "sammffl@gmail.com" }, - "record": { + "records": { "CNAME": "yejun.tech" } } diff --git a/domains/yellososa.json b/domains/yellososa.json new file mode 100644 index 000000000..1783cd9b9 --- /dev/null +++ b/domains/yellososa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dn1w", + "discord": "923208452581511199" + }, + "records": { + "CNAME": "yellososa.github.io" + } +} diff --git a/domains/yemzikk.json b/domains/yemzikk.json index ca239356a..404b844ed 100644 --- a/domains/yemzikk.json +++ b/domains/yemzikk.json @@ -3,7 +3,7 @@ "username": "yemzikk", "email": "muhammedziyad12@gmail.com" }, - "record": { + "records": { "URL": "https://yemzikk.in/" } } diff --git a/domains/yeppiidev.json b/domains/yeppiidev.json index ad9255293..923f421bf 100644 --- a/domains/yeppiidev.json +++ b/domains/yeppiidev.json @@ -6,7 +6,7 @@ "email": "yedoxstudios@gmail.com", "twitter": "yeppiidev" }, - "record": { + "records": { "CNAME": "yeppiidev.github.io" } } diff --git a/domains/yerin.json b/domains/yerin.json index 26a12f334..c336adc4e 100644 --- a/domains/yerin.json +++ b/domains/yerin.json @@ -4,7 +4,7 @@ "username": "wonderlandpark", "email": "wonderlandpark@callisto.team" }, - "record": { + "records": { "CNAME": "wonderlandpark.github.io" } } diff --git a/domains/yescyyt.json b/domains/yescyyt.json index d33c95b24..7ca573a07 100644 --- a/domains/yescyyt.json +++ b/domains/yescyyt.json @@ -5,7 +5,7 @@ "username": "yescyyt", "email": "amberisamab@gmail.com" }, - "record": { + "records": { "CNAME": "yescyyt.github.io" } } diff --git a/domains/yeti.json b/domains/yeti.json index 45ad792af..512504965 100644 --- a/domains/yeti.json +++ b/domains/yeti.json @@ -3,7 +3,7 @@ "username": "yetimeh", "email": "senukabandara2006@gmail.com" }, - "record": { + "records": { "CNAME": "yetimeh.github.io" } } diff --git a/domains/yfa.json b/domains/yfa.json index 97d460533..602fdf4a3 100644 --- a/domains/yfa.json +++ b/domains/yfa.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "URL": "https://github.com/YouFoundAlpha" } } diff --git a/domains/yfadev.json b/domains/yfadev.json index b8fb29fda..b490bcf38 100644 --- a/domains/yfadev.json +++ b/domains/yfadev.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "URL": "https://github.com/yfadev" } } diff --git a/domains/yhkz.json b/domains/yhkz.json new file mode 100644 index 000000000..2dd215fcf --- /dev/null +++ b/domains/yhkz.json @@ -0,0 +1,11 @@ +{ + "description": "yhkz.is-a.dev", + "repo": "https://github.com/yhkz/yhkz.github.io", + "owner": { + "username": "yhkz", + "email": "yhkz@yhkz.us.kg" + }, + "records": { + "CNAME": "yhkz.github.io" + } +} diff --git a/domains/yieldray.json b/domains/yieldray.json index 2e4d2c1e0..a8081f3df 100644 --- a/domains/yieldray.json +++ b/domains/yieldray.json @@ -3,7 +3,7 @@ "username": "YieldRay", "email": "yieldray@outlook.com" }, - "record": { + "records": { "URL": "https://ray.deno.dev/" } } diff --git a/domains/yiff.json b/domains/yiff.json index bb0c315da..95d951c6a 100644 --- a/domains/yiff.json +++ b/domains/yiff.json @@ -5,7 +5,7 @@ "twitter": "Donovan_DMC", "discord": "Donovan_DMC#3621" }, - "record": { + "records": { "URL": "https://furry.cool" } } diff --git a/domains/yigit.json b/domains/yigit.json index 7054ab487..458d72be4 100644 --- a/domains/yigit.json +++ b/domains/yigit.json @@ -6,7 +6,7 @@ "email": "yigitkabak05@hotmail.com", "discord": "yigit.dev" }, - "record": { + "records": { "CNAME": "devyigit.github.io" } } diff --git a/domains/yippymishy.json b/domains/yippymishy.json index 53126985b..36052024a 100644 --- a/domains/yippymishy.json +++ b/domains/yippymishy.json @@ -3,7 +3,7 @@ "username": "yippymishy", "email": "yippymishy@yippymishy.com" }, - "record": { + "records": { "URL": "https://yippymishy.com" } } diff --git a/domains/yiro.json b/domains/yiro.json index aa4225366..e80cdd842 100644 --- a/domains/yiro.json +++ b/domains/yiro.json @@ -5,7 +5,7 @@ "username": "yrmartinez", "email": "yiromartinez91@gmail.com" }, - "record": { + "records": { "CNAME": "yrmartinez.github.io" } } diff --git a/domains/yisraeldov.json b/domains/yisraeldov.json new file mode 100644 index 000000000..d2074d037 --- /dev/null +++ b/domains/yisraeldov.json @@ -0,0 +1,10 @@ +{ + "description": "Yisrael Dov Lebow", + "owner": { + "username": "yisraeldov", + "email": "lebow@lebowtech.com" + }, + "records": { + "URL": "https://yisraeldov.gitlab.io" + } +} diff --git a/domains/yisus82.json b/domains/yisus82.json index 9bf61e251..8f53bbb42 100644 --- a/domains/yisus82.json +++ b/domains/yisus82.json @@ -6,7 +6,7 @@ "email": "djalma8@gmail.com", "twitter": "yisusbauer" }, - "record": { + "records": { "CNAME": "yisus82.github.io" } } diff --git a/domains/ynd.json b/domains/ynd.json new file mode 100644 index 000000000..c5b98b2c0 --- /dev/null +++ b/domains/ynd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yn100194", + "email": "yenngoc100194@gmail.com" + }, + "records": { + "CNAME": "yn1001.wuaze.com" + } +} diff --git a/domains/yoan.json b/domains/yoan.json new file mode 100644 index 000000000..0d1f8e0bd --- /dev/null +++ b/domains/yoan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yoan-gilliand", + "email": "yoangilliand@gmail.com" + }, + "records": { + "CNAME": "yoan-gilliand.vercel.app" + } +} diff --git a/domains/yochietti.json b/domains/yochietti.json index 66e35d95a..b99150ee0 100644 --- a/domains/yochietti.json +++ b/domains/yochietti.json @@ -3,7 +3,7 @@ "username": "yochie", "email": "yoann.ochietti@gmail.com" }, - "record": { + "records": { "URL": "https://yochie.github.io" } } diff --git a/domains/yohanesrioirsan.json b/domains/yohanesrioirsan.json new file mode 100644 index 000000000..4f4a60cd5 --- /dev/null +++ b/domains/yohanesrioirsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yohanesrioirsan", + "email": "rioirsan8@gmail.com" + }, + "records": { + "CNAME": "yohanesrioirsan.vercel.app" + } +} diff --git a/domains/yokaicord.json b/domains/yokaicord.json index 2a24c1a70..8cc334c68 100644 --- a/domains/yokaicord.json +++ b/domains/yokaicord.json @@ -3,7 +3,7 @@ "username": "zxPau", "email": "pauu123123123@gmail.com" }, - "record": { + "records": { "CNAME": "zxpau.github.io" } } diff --git a/domains/yol.json b/domains/yol.json index 74b4f4727..538755828 100644 --- a/domains/yol.json +++ b/domains/yol.json @@ -3,7 +3,7 @@ "username": "YoelNath", "email": "yoelnathanael1@gmail.com" }, - "record": { + "records": { "CNAME": "yoelnath.github.io" } } diff --git a/domains/yolobnb.json b/domains/yolobnb.json index 435fa6403..3b7273453 100644 --- a/domains/yolobnb.json +++ b/domains/yolobnb.json @@ -5,7 +5,7 @@ "username": "yolobnb", "email": "yooloobnb@protonmail.com" }, - "record": { + "records": { "CNAME": "yolobnb.github.io" } } diff --git a/domains/yootou.json b/domains/yootou.json index b4ac67066..412053557 100644 --- a/domains/yootou.json +++ b/domains/yootou.json @@ -5,7 +5,7 @@ "twitter": "0xYootou", "discord": "yootou#7800" }, - "record": { + "records": { "URL": "https://github.com/yu-tou" } } diff --git a/domains/yorodm.json b/domains/yorodm.json index 9e43b1551..d8f58c1f7 100644 --- a/domains/yorodm.json +++ b/domains/yorodm.json @@ -5,7 +5,7 @@ "username": "yorodm", "email": "yoandy.rmartinez@gmail.com" }, - "record": { + "records": { "CNAME": "yorodm.github.io" } } diff --git a/domains/yose.json b/domains/yose.json index 568b8be93..c2acd4aef 100644 --- a/domains/yose.json +++ b/domains/yose.json @@ -6,7 +6,7 @@ "twitter": "jind0sh", "discord": "jind0sh#5330" }, - "record": { + "records": { "CNAME": "yohn-maistre.github.io" } } diff --git a/domains/yosuke.json b/domains/yosuke.json index b39c4b0a1..f9677a551 100644 --- a/domains/yosuke.json +++ b/domains/yosuke.json @@ -3,7 +3,7 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { + "records": { "CNAME": "yunexiz.pages.dev" } } diff --git a/domains/youcef.json b/domains/youcef.json new file mode 100644 index 000000000..30e12a45d --- /dev/null +++ b/domains/youcef.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/youcefaddou/Portfolio", + "owner": { + "username": "youcefaddou", + "email": "youcefaddou@gmail.com" + }, + "records": { + "CNAME": "youcef-addou.netlify.app" + } +} diff --git a/domains/youfoundalpha.json b/domains/youfoundalpha.json index 0d0a81148..35c993122 100644 --- a/domains/youfoundalpha.json +++ b/domains/youfoundalpha.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "URL": "https://github.com/YouFoundAlpha", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": [ diff --git a/domains/youfoundalpha.youfoundalpha.json b/domains/youfoundalpha.youfoundalpha.json index 17b87a959..9a8075bc7 100644 --- a/domains/youfoundalpha.youfoundalpha.json +++ b/domains/youfoundalpha.youfoundalpha.json @@ -5,7 +5,7 @@ "gitlab": "YouFoundAlpha", "mastodon": "@YouFoundAlpha@mastodon.social" }, - "record": { + "records": { "URL": "https://youfoundalpha.is-a.dev" } } diff --git a/domains/youple.json b/domains/youple.json index 2ca9820c4..2604492dd 100644 --- a/domains/youple.json +++ b/domains/youple.json @@ -3,7 +3,7 @@ "username": "nagdongdev-0713", "email": "lyw8459@gmail.com" }, - "record": { + "records": { "MX": ["aspmx.daum.net"] } } diff --git a/domains/your-dad.json b/domains/your-dad.json index 7f288db42..5a17683db 100644 --- a/domains/your-dad.json +++ b/domains/your-dad.json @@ -3,7 +3,7 @@ "username": "Satindar31", "email": "satindar@satindar-is.me" }, - "record": { + "records": { "URL": "https://cloud.satindar-is.me/s/gHJfbiyhVJzy3Vs" } } diff --git a/domains/your-mom.json b/domains/your-mom.json index 3921c95de..ad29a3575 100644 --- a/domains/your-mom.json +++ b/domains/your-mom.json @@ -3,7 +3,7 @@ "username": "satindar31", "email": "satindar@satindar-is.me" }, - "record": { + "records": { "URL": "https://cloud.satindar-is.me/index.php/apps/files_sharing/ajax/publicpreview.php?x=1633&y=642&a=true&file=polymorphism.jpg&t=3DKlVKFewNl3FHw&scalingup=0" } } diff --git a/domains/yourdad.json b/domains/yourdad.json index 787ed3d21..826ab4782 100644 --- a/domains/yourdad.json +++ b/domains/yourdad.json @@ -3,7 +3,7 @@ "username": "roktim32", "email": "roktimsenapoty2@gmail.com" }, - "record": { + "records": { "CNAME": "roktim32.github.io" } } diff --git a/domains/yourthoughts.catrin.json b/domains/yourthoughts.catrin.json index f761e3ed4..43858c270 100644 --- a/domains/yourthoughts.catrin.json +++ b/domains/yourthoughts.catrin.json @@ -3,7 +3,7 @@ "username": "catrinlam", "discord": "614054830360494100" }, - "record": { + "records": { "A": ["144.21.62.57"] } } diff --git a/domains/yourtilak.json b/domains/yourtilak.json deleted file mode 100644 index 23c7fd71e..000000000 --- a/domains/yourtilak.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "YourTilak.is-a.dev", - "repo": "https://github.com/YourTilak/YourTilak.github.io", - "owner": { - "username": "YourTilak", - "email": "rj05tilak@gmail.com" - }, - "record": { - "CNAME": "yourtilak.github.io" - } -} diff --git a/domains/yourz.json b/domains/yourz.json index d8e15e041..0d0ea8028 100644 --- a/domains/yourz.json +++ b/domains/yourz.json @@ -3,7 +3,7 @@ "username": "Yourz", "email": "crazilou@vip.qq.com" }, - "record": { + "records": { "CNAME": "yourz.github.io" } } diff --git a/domains/yousef.json b/domains/yousef.json new file mode 100644 index 000000000..e3cac5a8c --- /dev/null +++ b/domains/yousef.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio for Yousef Yasser", + "repo": "https://github.com/yys-yss/yys-yss.github.io", + "owner": { + "username": "yys-yss", + "email": "yousefyassersalah@gmail.com" + }, + "records": { + "CNAME": "yys-yss.github.io" + } +} diff --git a/domains/youssef-lmouden.json b/domains/youssef-lmouden.json deleted file mode 100644 index 62c8bf2dc..000000000 --- a/domains/youssef-lmouden.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "YoussefDevPro" - }, - "record": { - "CNAME": "youssefdevpro.github.io" - } -} diff --git a/domains/youssef.json b/domains/youssef.json new file mode 100644 index 000000000..f3dc1b27c --- /dev/null +++ b/domains/youssef.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YoussefDevPro", + "email": "youssef.pro.coding@gmail.com" + }, + "records": { + "CNAME": "youssef-portfolio-sigma-youssefdevpros-projects.vercel.app" + } +} diff --git a/domains/yp.shockbs.json b/domains/yp.shockbs.json index c59944439..b1b758f00 100644 --- a/domains/yp.shockbs.json +++ b/domains/yp.shockbs.json @@ -3,7 +3,7 @@ "username": "shockbs", "email": "apipherng@gmail.com" }, - "record": { + "records": { "TXT": "v=spf1 include:mailgun.org ~all", "MX": ["mxa.mailgun.org", "mxb.mailgun.org"] } diff --git a/domains/ypratham.json b/domains/ypratham.json index a615a076f..9b4050262 100644 --- a/domains/ypratham.json +++ b/domains/ypratham.json @@ -5,7 +5,7 @@ "username": "ypratham", "email": "ypratham0014@gmail.com" }, - "record": { + "records": { "CNAME": "ypratham.github.io" } } diff --git a/domains/yrrahbot.acronical.json b/domains/yrrahbot.acronical.json index fa8380b23..7dc9d2ef3 100644 --- a/domains/yrrahbot.acronical.json +++ b/domains/yrrahbot.acronical.json @@ -3,7 +3,7 @@ "username": "AcronicalYT", "email": "acronicalbusiness@gmail.com" }, - "record": { + "records": { "A": ["138.68.133.84"] } } diff --git a/domains/yrrahevents.acronical.json b/domains/yrrahevents.acronical.json index 8635bd042..08b9857c9 100644 --- a/domains/yrrahevents.acronical.json +++ b/domains/yrrahevents.acronical.json @@ -3,7 +3,7 @@ "username": "AcronicalYT", "email": "acronicalbusiness@gmail.com" }, - "record": { + "records": { "CNAME": "yrrahevents.pages.dev" } } diff --git a/domains/ysfchn.json b/domains/ysfchn.json index 4ba9d55af..cdb753548 100644 --- a/domains/ysfchn.json +++ b/domains/ysfchn.json @@ -1,11 +1,10 @@ { "description": "ysfchn's personal website", - "repo": "https://github.com/ysfchn", "owner": { "username": "ysfchn", "email": "hi@ysfchn.com" }, - "record": { + "records": { "URL": "https://ysfchn.com" } } diff --git a/domains/ysoseriouz.json b/domains/ysoseriouz.json new file mode 100644 index 000000000..b05a5fb82 --- /dev/null +++ b/domains/ysoseriouz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ysoseriouz", + "email": "thanh.nguyen.ntt2612@gmail.com" + }, + "records": { + "CNAME": "ysoseriouz.com" + } +} diff --git a/domains/ysyz.json b/domains/ysyz.json new file mode 100644 index 000000000..57036d407 --- /dev/null +++ b/domains/ysyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yishuiyizhong", + "email": "sife@sife.is-a.dev" + }, + "records": { + "CNAME": "yishuiyizhong.github.io" + } +} diff --git a/domains/yt.anw.json b/domains/yt.anw.json new file mode 100644 index 000000000..811ad4d77 --- /dev/null +++ b/domains/yt.anw.json @@ -0,0 +1,10 @@ +{ + "description": "ANW's (Subhrajit Sain) YouTube Channel", + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "records": { + "URL": "https://www.youtube.com/@ANormalWintrovert" + } +} diff --git a/domains/yu.json b/domains/yu.json new file mode 100644 index 000000000..7bf8fe246 --- /dev/null +++ b/domains/yu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729" + }, + "records": { + "CNAME": "redirecting-for-yu.pages.dev" + } +} diff --git a/domains/yug.json b/domains/yug.json index 799dbdc19..7f109f414 100644 --- a/domains/yug.json +++ b/domains/yug.json @@ -6,7 +6,7 @@ "email": "4yugpatel123@gmail.com", "discord": "name_yug" }, - "record": { + "records": { "CNAME": "name-yug.pages.dev" } } diff --git a/domains/yujia.json b/domains/yujia.json index 9eabe930a..0ead157a3 100644 --- a/domains/yujia.json +++ b/domains/yujia.json @@ -1,11 +1,10 @@ { "description": "Yujia's Magic", - "repo": "https://github.com/YujiaY", "owner": { "username": "YujiaY", "email": "aujackyuan@gmail.com" }, - "record": { + "records": { "CNAME": "yujiay.github.io" } } diff --git a/domains/yuk7.json b/domains/yuk7.json index ee1c875ee..e940f2e0f 100644 --- a/domains/yuk7.json +++ b/domains/yuk7.json @@ -5,7 +5,7 @@ "username": "yuk7", "email": "yukx00@gmail.com" }, - "record": { + "records": { "CNAME": "yuk7.github.io" } } diff --git a/domains/yukii.json b/domains/yukii.json index 195895263..59d4575f5 100644 --- a/domains/yukii.json +++ b/domains/yukii.json @@ -5,7 +5,7 @@ "username": "YukiVN", "email": "mejmayfoof@gmail.com" }, - "record": { + "records": { "CNAME": "yukivn.pages.dev" } } diff --git a/domains/yuko.json b/domains/yuko.json index f5ae8fa56..6e23e7d8c 100644 --- a/domains/yuko.json +++ b/domains/yuko.json @@ -1,10 +1,9 @@ { "owner": { "username": "DreamLikeAmonster", - "discord": "918872621892911164", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FyzirrX9msJ22dfqcMb_F476tQ5rUYYmG681OE-Iel2p4ng72GCkf6U1y2jE3W8y8EpmY4SIZLyCQxnfkChRJB3Sf6SHBg54FaZYrhwZL6c42HNf5qbXPo1G8SMafzENqI4NuVFdpy4ctY-kqet3IUdELwb5Ca062tHi0f4ofxygXCvbPeL5Kwr7pttv87nFdrXyQXbONOyBSIEdkV_svZSqoIeN_pvYFwP6Ui5uPXLu1MK_wrhmDkCfsaq9fW1dhxJG9cg70pqTJLt9DsrhQydcG4CWC335MNjy4xPpSWWgIzraJGyf-tGpME8_gsYCSq0KFt7LDw8sDhfyJ-E_jQ.OErg6Z3UQeu0J_ICaJ2fNQ.BwUoHl2d0Hr1OfmCOg_m-LtJ_wwn_K2hSYsx3hiUvbzYzw5JTTM5c9phF5t_EX1ceBnp_-0cTtPOc7525aB8ThlWuEgqfa5yEd2XRy5GFpU._yB2iJ0EFbGg6MwFxU7p0A" + "discord": "918872621892911164" }, - "record": { + "records": { "A": ["76.76.21.21"] } } diff --git a/domains/yuksel.json b/domains/yuksel.json index 8b214e218..155a3f5e3 100644 --- a/domains/yuksel.json +++ b/domains/yuksel.json @@ -5,7 +5,7 @@ "username": "yuks", "email": "admin@yukselbeyti.com" }, - "record": { + "records": { "CNAME": "yuks.github.io" } } diff --git a/domains/yunexiz.json b/domains/yunexiz.json index f7ee5f81c..f4d30f895 100644 --- a/domains/yunexiz.json +++ b/domains/yunexiz.json @@ -3,23 +3,15 @@ "username": "yunexiz", "discord": "1040303561847881729" }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], "AAAA": [ "2606:50c0:8000::153", "2606:50c0:8001::153", "2606:50c0:8002::153", "2606:50c0:8003::153" ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all", - "google-site-verification=JaMCz_HK22wQhiZbF-51XTXAzEEt3qBYCMo2g_86BWo" - ], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/yuphie.json b/domains/yuphie.json index 8dbb16181..0bf256f9c 100644 --- a/domains/yuphie.json +++ b/domains/yuphie.json @@ -3,7 +3,7 @@ "username": "yuphiedev", "email": "mizuto.discord@gmail.com" }, - "record": { + "records": { "URL": "https://yuphie.vercel.app" } } diff --git a/domains/yuphiee.json b/domains/yuphiee.json index 8dbb16181..0bf256f9c 100644 --- a/domains/yuphiee.json +++ b/domains/yuphiee.json @@ -3,7 +3,7 @@ "username": "yuphiedev", "email": "mizuto.discord@gmail.com" }, - "record": { + "records": { "URL": "https://yuphie.vercel.app" } } diff --git a/domains/yurei.json b/domains/yurei.json new file mode 100644 index 000000000..4c6208738 --- /dev/null +++ b/domains/yurei.json @@ -0,0 +1,12 @@ +{ + "description": "I want clound security for my portfolio website", + "repo": "https://github.com/yurehito/yurei.git", + "owner": { + "username": "yurehito", + "discord": "https://discord.com/users/998608551431897170" + }, + "records": { + "A": ["75.2.60.5"] + }, + "proxied": true +} diff --git a/domains/yuri.json b/domains/yuri.json index 64fed4d33..ac7704b7d 100644 --- a/domains/yuri.json +++ b/domains/yuri.json @@ -3,7 +3,7 @@ "username": "MaiYurito", "email": "reachgamers9999@gmail.com" }, - "record": { + "records": { "URL": "https://yuri.only-fans.club/" } } diff --git a/domains/yurihsq.json b/domains/yurihsq.json index c2e0d26ff..a42a2f4b8 100644 --- a/domains/yurihsq.json +++ b/domains/yurihsq.json @@ -3,7 +3,7 @@ "username": "Mai1ii", "email": "micomacabali14@gmail.com" }, - "record": { + "records": { "CNAME": "mai1ii.github.io" } } diff --git a/domains/yurimontero.json b/domains/yurimontero.json new file mode 100644 index 000000000..be04ec232 --- /dev/null +++ b/domains/yurimontero.json @@ -0,0 +1,11 @@ +{ + "description": "Personal webpage", + "repo": "https://github.com/yurimontero/yurimontero.github.io", + "owner": { + "username": "yurimontero", + "email": "yurimontero@gmail.com" + }, + "records": { + "CNAME": "yurimontero.github.io" + } +} diff --git a/domains/yurito.json b/domains/yurito.json index 19d199040..1bb88accd 100644 --- a/domains/yurito.json +++ b/domains/yurito.json @@ -3,7 +3,7 @@ "username": "MaiYurito", "email": "reachgamers9999@gmail.com" }, - "record": { + "records": { "CNAME": "yurito.pages.dev" } } diff --git a/domains/yush.json b/domains/yush.json index dd71e190f..e1145b338 100644 --- a/domains/yush.json +++ b/domains/yush.json @@ -4,7 +4,7 @@ "email": "aayush.agrawalm@gmail.com" }, "description": "mail domain", - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/yusuf-rawat.json b/domains/yusuf-rawat.json index 1cc3c2564..ed1449dc6 100644 --- a/domains/yusuf-rawat.json +++ b/domains/yusuf-rawat.json @@ -4,7 +4,7 @@ "username": "yusuf007r", "email": "yusufmaster7@gmail.com" }, - "record": { + "records": { "URL": "https://github.com/Yusuf007R" } } diff --git a/domains/yusuf.json b/domains/yusuf.json index 4cb37f54e..813cb8faa 100644 --- a/domains/yusuf.json +++ b/domains/yusuf.json @@ -5,7 +5,7 @@ "username": "YAOfficial", "email": "yahumble1@gmail.com" }, - "record": { + "records": { "CNAME": "yaofficial.github.io" } } diff --git a/domains/yuting.json b/domains/yuting.json index be7a831aa..a79c81064 100644 --- a/domains/yuting.json +++ b/domains/yuting.json @@ -5,7 +5,7 @@ "username": "wyuting0", "email": "wyuting2011@gmail.com" }, - "record": { + "records": { "CNAME": "wyuting0.github.io" } } diff --git a/domains/yuto.json b/domains/yuto.json index c29a53d6a..0388089df 100644 --- a/domains/yuto.json +++ b/domains/yuto.json @@ -4,7 +4,7 @@ "email": "yuto@berkeley.edu" }, "description": "Personal website", - "record": { + "records": { "URL": "https://yart.me" } } diff --git a/domains/yuukari.json b/domains/yuukari.json index befe036fc..0859e0d9d 100644 --- a/domains/yuukari.json +++ b/domains/yuukari.json @@ -6,7 +6,7 @@ "email": "yuukarichan@yandex.com", "telegram": "iamyuukari" }, - "record": { + "records": { "CNAME": "yuukari.github.io" } } diff --git a/domains/yuuto.json b/domains/yuuto.json index 9d5762877..5562870b7 100644 --- a/domains/yuuto.json +++ b/domains/yuuto.json @@ -6,7 +6,7 @@ "email": "yuutodiscordlol@gmail.com", "discord": "YUUTO#9199" }, - "record": { + "records": { "CNAME": "user93485.github.io" } } diff --git a/domains/yuwind.json b/domains/yuwind.json index 8eb8b2687..391510c77 100644 --- a/domains/yuwind.json +++ b/domains/yuwind.json @@ -1,10 +1,9 @@ { "owner": { "username": "Dn1w", - "discord": "923208452581511199", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nQF2bwIsViYIuC1FZ48r68zYQXusR7tgmol1Y5mNRhqkWD_x5XQ1F5KRN48xYpq_fIDcUQ-uBxgmradSBDnoiTB96eE_uq4MlQvjzpg2GXbcOgCc6E0usOvjMTMshcVbpGbEmWNOAzuXyIBT12VndaD9gNhU_n33a5_Qrb2FhTzI8XMrBjc8897so97IT3QFC1edNTi33ABhPOaiPo4rK82nb45BIt6RZDQijOwfi1GA05_q8HP1XMRqkxbTGSHKR6CWTOslEEEgaqFz8bxPBJLrzM-Hxq9yQZzF_9hcYhMDgzVapYORnLPhRD6BXB7NHh6TI7FDSLnXNu5fO-N_Yg.bkOu7XBiNIrQusCKH9gfmQ.gCG0QcEarPJlx_edap0C_5adBlpcSToQZTM7PLljXybcM_r8FKeErxGGHXdJVR9SjykisjgdfX33mkzgZm53CiDAQDOS6qdOGvCf9C8REQc.xMycJJl9UiQgpeO7QyfzPw" + "discord": "923208452581511199" }, - "record": { + "records": { "CNAME": "yuwindev.github.io" } } diff --git a/domains/yuzuki.json b/domains/yuzuki.json index b518957aa..0503ec4fe 100644 --- a/domains/yuzuki.json +++ b/domains/yuzuki.json @@ -3,7 +3,7 @@ "username": "SuzukiYuzuki", "email": "hotococoa104@gmail.com" }, - "record": { + "records": { "CNAME": "suzukiyuzuki.github.io" } } diff --git a/domains/yxlr.json b/domains/yxlr.json index eddf02ac0..6ef6aad9e 100644 --- a/domains/yxlr.json +++ b/domains/yxlr.json @@ -3,7 +3,7 @@ "username": "yxlr123", "email": "dbh2858304517@gmail.com" }, - "record": { + "records": { "CNAME": "yxlr123.github.io" } } diff --git a/domains/yxz.json b/domains/yxz.json index 87095b3fe..aadb11151 100644 --- a/domains/yxz.json +++ b/domains/yxz.json @@ -1,28 +1,18 @@ { - "repo": "https://github.com/yz9551/blog", - "owner": { - "username": "yz9551", - "email": "", - "discord": "yz9551" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "AAAA": [ - "2606:50c0:8000::153", - "2606:50c0:8001::153", - "2606:50c0:8002::153", - "2606:50c0:8003::153" - ], - "MX": [ - "tourmaline.uksouth.cloudapp.azure.com" - ], - "TXT": [ - "v=spf1 mx -all" - ] - } + "repo": "https://github.com/yz9551/blog", + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "records": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], + "MX": ["tourmaline.uksouth.cloudapp.azure.com"], + "TXT": ["v=spf1 mx -all"] + } } diff --git a/domains/z.json b/domains/z.json deleted file mode 100644 index 2d0965374..000000000 --- a/domains/z.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "jakeharrison90", - "email": "overtonmarke@gmail.com" - }, - "record": { - "CNAME": "excelcommunity.vercel.app" - } -} diff --git a/domains/z2ftzxm.json b/domains/z2ftzxm.json index 69c002d83..44b7dd80e 100644 --- a/domains/z2ftzxm.json +++ b/domains/z2ftzxm.json @@ -1,10 +1,9 @@ { "owner": { "username": "zigzaglm13", - "discord": "1221383096901828720", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Cirj_NnJqGzTCyDDB1ZQPcvjcYaQIeqFtrXRrIuAi_HeGGkRjMGyJCXQ093JUJzTgCiFLiMiw49j6Aqhmo-NhIof2E4vzK30xAronlDnhDRQZoWSTlWxqJxZAcSb98ZJ0OQgTr24-mpFa0fTKBBtkp9hm-tD62oV20BFyKFK1OOY-c-nW-rym1DXshxwzzHV7I9VXUIlsQdvDV_M-ggJXj2HtmkkOjBgYOUqTBykkd3TgMzKgQ8_e_O0U0ulPnh9_PuHenwSe2MS0rmD3hRsbBJIFhzk1GJxDbBPM7_pJyAl-BUXULwOSpAYgN4w9FB9kRjGuMUcfeTu4mMNZY7dcA.4nC_ZORHozUubbeN0gM1aQ.Dl67xlT2xKuAYnjsoxzeYmggQMpUa6N3K-7sKGHZ-g_I8_4ToENfzpvpKDvIe7dKowfVwpYp56vrp7QI0rxeoVNSd38rigBnSTII6UmLQKY.E3Xv9CXUrXmGOQiH_icE0w" + "discord": "1221383096901828720" }, - "record": { + "records": { "CNAME": "zigzaglm13.github.io" } } diff --git a/domains/z4xi.json b/domains/z4xi.json index 2f7053bff..a38c998b9 100644 --- a/domains/z4xi.json +++ b/domains/z4xi.json @@ -3,7 +3,7 @@ "username": "z4xi", "email": "z4xi@shitposting.expert" }, - "record": { + "records": { "URL": "https://velvety-granita-c85dd5.netlify.app" } } diff --git a/domains/za.json b/domains/za.json index aa71bb05f..19f5d6638 100644 --- a/domains/za.json +++ b/domains/za.json @@ -4,7 +4,7 @@ "email": "itsshanihere42@gmail.com", "username": "m-zeeshan42" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/zahid.json b/domains/zahid.json new file mode 100644 index 000000000..f8da5371a --- /dev/null +++ b/domains/zahid.json @@ -0,0 +1,11 @@ +{ + "description": "Zahid47's personal website", + "repo": "https://github.com/zahid47/pw", + "owner": { + "username": "zahid47", + "email": "epiczahid@gmail.com" + }, + "records": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/zai.json b/domains/zai.json index 8804bddb0..d40227cbc 100644 --- a/domains/zai.json +++ b/domains/zai.json @@ -1,10 +1,9 @@ { "owner": { "username": "Zai-Kun", - "discord": "1100460955390988410", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.m6cKdJTirBBSL5dhwU-39VbjpjyfPP_9mSRhao-tr5TYYAZ2KnkwkYsCWJ9euM2LB4GZyUqNCviMtjOM1AXoxWq_lVH7pHgvC8I3a-HeKX0TNcy819o5nlrINjiM4770f09woEl5GVw3bGajgeJLWTPmj7PTWBvQkQ3Ug9Iuye7HmZ-UAIgh8kEw7LJzhyOKS2UTIgrA4hFF7epgCXSrma27dhHqTOjDPeg30dBO1aF8LNaF9GRnAn_IZE8Lah1ZFB9kqZRta466Zuzz8k5ztk4d-cPZEpuR6s6QIpHnddumx_hIt386nsfyQezQIo6TF5InIMT6fWkXUxDlkTyYqQ.D2xW1pY3dTkoLE7rwujNmw.PAHfsXDfCMvwEnw2-xyEYy1PCsEnfFJrkz9wAUOzUebiQsVvJ8_EjuuRFj9okzrjerIpOt2jVSyc_d9F6JFKR4AD9vbFtsMgQ0ni-6wdH6I.2MpIxeaOipjNwh0uvaaAEw" + "discord": "1100460955390988410" }, - "record": { + "records": { "CNAME": "zai-kun.vercel.app" } } diff --git a/domains/zaid-kadri.json b/domains/zaid-kadri.json index 1fbd94d9e..f35436821 100644 --- a/domains/zaid-kadri.json +++ b/domains/zaid-kadri.json @@ -4,7 +4,7 @@ "owner": { "username": "zaid-kadri" }, - "record": { + "records": { "URL": "https://zaid-kadri.github.io" } } diff --git a/domains/zaid.json b/domains/zaid.json index 728d4240e..2f4d96e1f 100644 --- a/domains/zaid.json +++ b/domains/zaid.json @@ -6,7 +6,7 @@ "email": "zaidlunatic1@gmail.com", "twitter": "Zaid08079154" }, - "record": { + "records": { "CNAME": "zaidmukaddam.github.io" } } diff --git a/domains/zakaria-didah.json b/domains/zakaria-didah.json index 941c1e6bc..cd0253071 100644 --- a/domains/zakaria-didah.json +++ b/domains/zakaria-didah.json @@ -4,7 +4,7 @@ "email": "zakariadidah@gmail.com", "discord": "788397929308225546" }, - "record": { + "records": { "A": ["158.179.209.175"] } } diff --git a/domains/zalex.json b/domains/zalex.json index 1fafd707a..7460befcc 100644 --- a/domains/zalex.json +++ b/domains/zalex.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "Orange-Figure", - "discord": "1212435420776890368", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.N0_TVOrIKQHS-dgU5KDDcREwJDAtW1AfGLARAqAZyT-UjrmJz8IUFHg8zYxe6Spa4faQVR_emyVZKwqwlFvdIZZr4yQrWQSED-2WZJ5Z5DXpti6930sHO4CVgszWKjc5LqPW1764QP39iQrC7VtNSFxEmZTWJnmK0i8X_2AOSgu8BTH45vjMVKU4oBRzHjvoBZ-Z_17DCk0Awy2FxWSscZPDVF1-_1ETfQ60Ahcv8gYcMt3ZVs2vrUZR_sopt8LaPf6AQQ9zSgDtRiwBHogpiYWsAZVN_5EHTKosomGhUcxuHfUjhaHFauscXQjHZM6kDOEAEvY8MryV7jRy_gm7fQ.sZCseMTkxIHnGcrpk7SARA.SHzeybFf2FVb38kuLc62-X3zAK2SMpZiL2FlnaU77-UR5bsGoINyEnbJNdvCRd4nLItafWpWtCqu0NyvjBh8BWCNrCUhYMmmLRzg6sBgolI.kE2nsD9RtiZGMS-KFaXmZw" - }, - - "record": { - "CNAME": "zalex.betteruptime.com" - } - } - \ No newline at end of file + "owner": { + "username": "Orange-Figure", + "discord": "1212435420776890368" + }, + "records": { + "CNAME": "zalex.betteruptime.com" + } +} diff --git a/domains/zalnars.json b/domains/zalnars.json new file mode 100644 index 000000000..fbf282f98 --- /dev/null +++ b/domains/zalnars.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "zalnars", + "email": "zalnars@proton.me", + "discord": "zalnars" + }, + "records": { + "CNAME": "zalnars.vercel.app" + } +} diff --git a/domains/zaman.json b/domains/zaman.json index cbbc86337..7b72141ac 100644 --- a/domains/zaman.json +++ b/domains/zaman.json @@ -3,7 +3,7 @@ "username": "asimuzzaman", "email": "eii8mo9om@mozmail.com" }, - "record": { + "records": { "CNAME": "asimuzzaman.pages.dev" }, "description": "Personal website of @asimuzzaman" diff --git a/domains/zara.json b/domains/zara.json new file mode 100644 index 000000000..94c44b256 --- /dev/null +++ b/domains/zara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tutupharirabu", + "email": "code.zharaurien@gmail.com" + }, + "records": { + "CNAME": "portofolio-pribadi-irfan-zharauri.vercel.app" + } +} diff --git a/domains/zarcorp.json b/domains/zarcorp.json new file mode 100644 index 000000000..78e93ca9d --- /dev/null +++ b/domains/zarcorp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jona27081", + "email": "ojedarosasjaor@gmail.com" + }, + "records": { + "URL": "https://jonathanojeda.vercel.app/" + } +} diff --git a/domains/zarox.json b/domains/zarox.json index 136cdd5d6..de109af96 100644 --- a/domains/zarox.json +++ b/domains/zarox.json @@ -6,7 +6,7 @@ "email": "qzarox@gmail.com", "twitter": "qzarox" }, - "record": { + "records": { "CNAME": "zar0x.github.io" } } diff --git a/domains/zarqi.ezzoubair.json b/domains/zarqi.ezzoubair.json index e2c8dec17..86c455159 100644 --- a/domains/zarqi.ezzoubair.json +++ b/domains/zarqi.ezzoubair.json @@ -3,7 +3,7 @@ "username": "zarqizoubir", "email": "zarqi.ezzoubair@etu.uae.ac.ma" }, - "record": { + "records": { "CNAME": "zarqizoubir.github.io" } } diff --git a/domains/zarqi.json b/domains/zarqi.json index e2c8dec17..86c455159 100644 --- a/domains/zarqi.json +++ b/domains/zarqi.json @@ -3,7 +3,7 @@ "username": "zarqizoubir", "email": "zarqi.ezzoubair@etu.uae.ac.ma" }, - "record": { + "records": { "CNAME": "zarqizoubir.github.io" } } diff --git a/domains/zarwin.json b/domains/zarwin.json index 00a0ec361..e13ff98bd 100644 --- a/domains/zarwin.json +++ b/domains/zarwin.json @@ -4,7 +4,7 @@ "username": "zarwin", "discord": "𝕃𝕠𝕣𝕕 ℤ𝕒𝕣𝕨𝕚𝕟#8600" }, - "record": { + "records": { "CNAME": "zarwin.github.io" } } diff --git a/domains/zax.json b/domains/zax.json index c8bf92092..290d4744e 100644 --- a/domains/zax.json +++ b/domains/zax.json @@ -3,7 +3,7 @@ "username": "zaxerion", "email": "xxunxxunxx@gmail.com" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/zay.json b/domains/zay.json index d1942cfd8..35917009e 100644 --- a/domains/zay.json +++ b/domains/zay.json @@ -4,7 +4,7 @@ "email": "yzerianyoung08@gmail.com", "discord": "352264519235403787" }, - "record": { + "records": { "CNAME": "zayzzay.github.io" } } diff --git a/domains/zayaanar.json b/domains/zayaanar.json index 1c54ca734..bd09c4d79 100644 --- a/domains/zayaanar.json +++ b/domains/zayaanar.json @@ -1,10 +1,9 @@ { "owner": { "username": "userandaname", - "discord": "823939421686071386", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a62ohGnPWnZcxwliAblMFZoEcnjztiOXGJrf3viuLFutyG5cwvSgEFmeYQAiODGndCak3XXgSJwLyFiS-HIsLWG6ViBhu9A48zkUMTv6IHO7OUFE9kNiGIqhp3S8h8lhaaxA3zW_OuOIQBoLFJnL0RqQgOd2QC6P-v1Fm6Aab3HMCGYN5tNwk1Jpl5vwisxnCG-PDUWrrgJ8PbMGRUa2Sa5qvFOJK0LML3yDqKOlFUGs9XmBcbTMc2KVdGjAm0F8l1w0WRDyx15hNFu_ppB7yaIS91o7iJS-g-ViSWf3-Hj0gCyUl1sHPQi3-2IE5GaNtfqVLQGNC2Kh6NBAkRRT7g.09Llm3K10Q7Tl3ceKAy76g.6NdcyRztDAFkqDFs5CWyaShozcshoMQ2qq1p7D8wQTG6O8shr8lbczRgMQZhgvzrq7u1g6HMQnW8bQdDdn2Mb1Jj3_qcHXnCUub6exAZONY.0ZXI8zVi0kGV0Qm7uvJOrA" + "discord": "823939421686071386" }, - "record": { + "records": { "CNAME": "userandaname.github.io" } } diff --git a/domains/zb60458066.klent.json b/domains/zb60458066.klent.json index bf88db7dd..f39c263bc 100644 --- a/domains/zb60458066.klent.json +++ b/domains/zb60458066.klent.json @@ -4,7 +4,7 @@ "email": "kleeinlmao@gmail.com", "discord": "763581985410121769" }, - "record": { + "records": { "CNAME": "zmverify.zoho.com" } } diff --git a/domains/zeaxey.json b/domains/zeaxey.json index 0641f48df..18697fe42 100644 --- a/domains/zeaxey.json +++ b/domains/zeaxey.json @@ -6,7 +6,7 @@ "email": "therealzeaxey123@gmail.com", "discord": "862644161156218891" }, - "record": { + "records": { "CNAME": "pixel556.github.io" } } diff --git a/domains/zedfr.json b/domains/zedfr.json index 0997536b9..dd761ec15 100644 --- a/domains/zedfr.json +++ b/domains/zedfr.json @@ -1,10 +1,9 @@ { "owner": { "username": "Not-oss", - "discord": "1071844093438726239", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iCd7adkhXsDQ8JjsJXo0hr510PjPxN2DcPcJGhFr_33zbF5sHTZBbI5b0S7EXFgglMpHCIltY9aKCQ7GwZehq4DzvQU8BvHtEPvzwx-rscogCljZ6UF_DpOkypzju7gUtWHmQ1H8_UCXxh3Yv03PSsu9_FY59LgZsyGmSvQXQdJL1yEuuLMAN7ICeV-g8VVrptbPkru2F3KlKcpiPOgjJRojs53StmnnnRJbjJ_vhWdyN0bM69hutYKbi5XrOnN2ZfegaYvXrFZba1Dpj6n3nfrQmXBpA7UN08c6-JXvQuY63lGqv0I5mq03VzIitqqpQhMe0R3d40M7mZY7MgNKtQ.RvJhse7ZgSNv1TQ2fpsbxA.t3NwcxEB9GGJgs4GRpwUriu3ztxjwCKa7ARRXHtV5rO-VRVfPyHRGYG2UbnhZ7CQmlgaSrIMXAuystYoBbrszA.AqqWqZUgymarQHujxpm-sA" + "discord": "1071844093438726239" }, - "record": { + "records": { "A": ["89.168.59.222"] } } diff --git a/domains/zedxos.json b/domains/zedxos.json index 3746a533e..bd8a6ef12 100644 --- a/domains/zedxos.json +++ b/domains/zedxos.json @@ -4,7 +4,7 @@ "email": "danpineda12345678910@gmail.com", "discord": "966170177815339008" }, - "record": { + "records": { "CNAME": "cheerful-monstera-e4af4f.netlify.app" } } diff --git a/domains/zeeshan.json b/domains/zeeshan.json index 2fdcd803b..a93e0d8d5 100644 --- a/domains/zeeshan.json +++ b/domains/zeeshan.json @@ -5,7 +5,7 @@ "username": "m-zeeshan42", "email": "zeeshanashraf424@gmail.com" }, - "record": { + "records": { "CNAME": "m-zeeshan42.github.io" } } diff --git a/domains/zehao.json b/domains/zehao.json new file mode 100644 index 000000000..56c1bde18 --- /dev/null +++ b/domains/zehao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "2eha0", + "email": "zehao93@outlook.com" + }, + "records": { + "CNAME": "blog-pi-eight.vercel.app" + } +} diff --git a/domains/zelle.json b/domains/zelle.json index a49e6af01..c336963c5 100644 --- a/domains/zelle.json +++ b/domains/zelle.json @@ -5,7 +5,7 @@ "username": "zelxd", "email": "zeloeee@gmail.com" }, - "record": { + "records": { "CNAME": "zelxd.github.io" } } diff --git a/domains/zelriano36.json b/domains/zelriano36.json index 6d61a6c5d..9c0c5c52b 100644 --- a/domains/zelriano36.json +++ b/domains/zelriano36.json @@ -3,7 +3,7 @@ "username": "zelriano36", "email": "bastien.salvetat@gmail.com" }, - "record": { + "records": { "CNAME": "zelriano36.github.io" } } diff --git a/domains/zemerik.json b/domains/zemerik.json index 40d6b86bc..6364f8861 100644 --- a/domains/zemerik.json +++ b/domains/zemerik.json @@ -3,7 +3,7 @@ "username": "Zemerik", "email": "zemerikY@gmail.com" }, - "record": { + "records": { "CNAME": "zemerik.github.io" } } diff --git a/domains/zen.json b/domains/zen.json index a575e85ce..fea723b29 100644 --- a/domains/zen.json +++ b/domains/zen.json @@ -3,7 +3,7 @@ "username": "zeraAI", "email": "parkzen68@gmail.com" }, - "record": { + "records": { "CNAME": "zeraai.github.io" } } diff --git a/domains/zener.json b/domains/zener.json index e92434834..0393736af 100644 --- a/domains/zener.json +++ b/domains/zener.json @@ -5,7 +5,7 @@ "username": "zenerq", "email": "rokosamje@gmail.com" }, - "record": { + "records": { "CNAME": "zenerq.github.io" } } diff --git a/domains/zenzoya.json b/domains/zenzoya.json index f88311f86..fcfcc1701 100644 --- a/domains/zenzoya.json +++ b/domains/zenzoya.json @@ -3,7 +3,7 @@ "username": "ZenZoyaUDR", "discord": "915228509440454707" }, - "record": { + "records": { "CNAME": "zenzoya.netlify.app" } } diff --git a/domains/zeoz.json b/domains/zeoz.json index 97cbd053a..f3a2037b6 100644 --- a/domains/zeoz.json +++ b/domains/zeoz.json @@ -1,10 +1,9 @@ { "owner": { "username": "nysr-dev", - "discord": "908554139888410635", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DzFKuCJ9aSSXdV5Zva5ADifL9VFv8bwoGWvWEIzfzZHqSPsEFxpnIhQcOPCtuvPDQRkDd11dj2zpqv9gonnte79XPhqg_PqJsW_XH6e8RyK6GBaG0DqQrVhvubLKIUg7B7FwrIdIrVKt4gDInHEUx6IrwvR3qKbWfRbwu4XLB16IBzSQq9Vz96E9SHin7GDqcPviViTouT8KF_GGkWgPvFFysHnaSdXjMPch_zXX5fPgQ58p0P7um6lDVMSykwh4gZm4i6mhgAsUxGQVHY6ifQoIWxVcuMv8_JuIEyVj8X_EUzT5gqn9BWSpOoLHbFQ8nw-ydSDUWqK91zLCahTnlg.coaoSKqOk2tuipR3_ZQaow.RemUOjorEtATO2ekibtnjk3opGgUR9d9PF1IFij9rr1tDLKGe7T_mlHMqP-ma_wf7mBI63bVZOghlj2svObhPyV5Bx1uh9s5JWhpqOiB8ms._qNk5He5L58v1darIO3xGw" + "discord": "908554139888410635" }, - "record": { + "records": { "CNAME": "nysr.host" } } diff --git a/domains/zephyr.json b/domains/zephyr.json index 5b671f245..c44c4b913 100644 --- a/domains/zephyr.json +++ b/domains/zephyr.json @@ -4,7 +4,7 @@ "email": "alvintan159@gmail.com", "discord": "985731141640286258" }, - "record": { + "records": { "A": ["69.197.135.203"] } } diff --git a/domains/zeptar.json b/domains/zeptar.json index 51ea8c6ad..4ed435cdb 100644 --- a/domains/zeptar.json +++ b/domains/zeptar.json @@ -6,7 +6,7 @@ "email": "terryk.onekorea@gmail.com", "discord": "Zeptar#7882" }, - "record": { + "records": { "CNAME": "zeptar1069.github.io" } } diff --git a/domains/zer0.json b/domains/zer0.json index a998a613b..2a3e88586 100644 --- a/domains/zer0.json +++ b/domains/zer0.json @@ -3,7 +3,7 @@ "username": "Zer0Dev-exe", "discord": "817515739711406140" }, - "record": { + "records": { "CNAME": "zer0dev-exe.github.io" } } diff --git a/domains/zeranamu.json b/domains/zeranamu.json index 1332a3249..42693e4ae 100644 --- a/domains/zeranamu.json +++ b/domains/zeranamu.json @@ -3,7 +3,7 @@ "username": "Zeranamu", "email": "zeranamu@gmail.com" }, - "record": { + "records": { "CNAME": "zeranamu.github.io" } } diff --git a/domains/zero.json b/domains/zero.json index c7af9f358..26540191e 100644 --- a/domains/zero.json +++ b/domains/zero.json @@ -5,7 +5,7 @@ "username": "CoderPopCat", "email": "zerotwo@popcat.xyz" }, - "record": { + "records": { "CNAME": "coderpopcat.github.io" } } diff --git a/domains/zerolandcode.json b/domains/zerolandcode.json index 87efeb6c7..aeebc94b2 100644 --- a/domains/zerolandcode.json +++ b/domains/zerolandcode.json @@ -3,7 +3,7 @@ "username": "zerolandcode", "email": "rolteoln@gmail.com" }, - "record": { + "records": { "CNAME": "zerolandcode.github.io" } } diff --git a/domains/zerot69.json b/domains/zerot69.json new file mode 100644 index 000000000..bcf6753cd --- /dev/null +++ b/domains/zerot69.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zerot69", + "email": "ngo.vo.hoang.tuan.69@gmail.com" + }, + "records": { + "CNAME": "zerot69.github.io" + } +} diff --git a/domains/zerotwo.json b/domains/zerotwo.json index d89b36127..8b1aee52c 100644 --- a/domains/zerotwo.json +++ b/domains/zerotwo.json @@ -5,7 +5,7 @@ "username": "ConnorDoesDev", "email": "connordoesdev@gmail.com" }, - "record": { + "records": { "CNAME": "zerotwodiscord.github.io" } } diff --git a/domains/zerow.json b/domains/zerow.json index 2c40bc901..e90ecd5cf 100644 --- a/domains/zerow.json +++ b/domains/zerow.json @@ -3,7 +3,7 @@ "username": "DevZerow", "email": "zerow.pro@protonmail.com" }, - "record": { + "records": { "A": ["45.158.77.64"] } } diff --git a/domains/zester.json b/domains/zester.json index fce7b2234..bbb89609a 100644 --- a/domains/zester.json +++ b/domains/zester.json @@ -4,7 +4,7 @@ "email": "lollo11020210@gmail.com", "discord": "1133362142461050980" }, - "record": { + "records": { "CNAME": "sxtxnzester.github.io" } } diff --git a/domains/zeus.json b/domains/zeus.json index 7234ae4f7..7ceee3f04 100644 --- a/domains/zeus.json +++ b/domains/zeus.json @@ -6,7 +6,7 @@ "email": "dev.caspian.hayashi@gmail.com", "discord": "944959943310737408" }, - "record": { + "records": { "A": ["75.2.60.5"] } } diff --git a/domains/zevobla.json b/domains/zevobla.json index d0896aa96..58d2da1df 100644 --- a/domains/zevobla.json +++ b/domains/zevobla.json @@ -1,10 +1,10 @@ { "owner": { "username": "Zevobla", - "discord": "467539292877750284", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Yl52Rrzzsl6pjhBgVkYA_NfGUZUHIp18-pe5PQVvoVI_7U_nksgv91HNcy56xoSJ9A8WUJCeE8qwfsenu9qwHVyWlAuNuWKfEMdM4vAI0V_AuW_1YaIm-0ObrxQsOPMohv9n7e6b5vSLz3f7EKsbiqtebvwF1ebxxqN85t64ZrfCSEBATl3sCjR-vLAORej4Kj3MpgKe7Le1qsoey3u5SR1FvGezQh3PLljcKlR72g0TKvkn8WnF2JicERNDNFJYnwipt-G0HyvibpTsh7trMrcrSEfDYFxGkDLYhgHo02RvUhXer4mtCCvMUX2MgsGraqxDBdASwfk62Jn2EINU6Q.PxrZtoeRnAFNvkmvd0vAMg.xokePgy944ELwFNV_7CzH4K_ylDYFqd_rC-XnvJAt22K2dYKk5SVjftxmLJhwib-BcZh-Aqx7FkRmR3bytAKic2a_vdnmkV6c_tuDbSsJviXViBKpPDPhDF2DoWRBvTI.b2HHi1Vk1_cUmFDkZOclbw" + "discord": "467539292877750284" }, - "record": { - "A": ["77.238.238.131"] + "records": { + "A": ["46.23.81.157"], + "AAAA": ["2a03:6000:1813:1337::157"] } } diff --git a/domains/zffu.json b/domains/zffu.json index 8ce8a7a6c..482adcd65 100644 --- a/domains/zffu.json +++ b/domains/zffu.json @@ -5,7 +5,7 @@ "email": "zffumc@gmail.com", "discord": "Zffu" }, - "record": { + "records": { "CNAME": "zffu.github.io" } } diff --git a/domains/zhangximufeng.json b/domains/zhangximufeng.json index 9d323e515..ede59a2f9 100644 --- a/domains/zhangximufeng.json +++ b/domains/zhangximufeng.json @@ -1,11 +1,10 @@ { "description": "Link to my github", - "repo": "https://github.com/zhangximufeng", "owner": { "username": "zhangximufeng", "email": "zhangximufeng@gmail.com" }, - "record": { + "records": { "CNAME": "zhangximufeng.github.io" } } diff --git a/domains/zhenchai.json b/domains/zhenchai.json index 67d696439..3630ecb17 100644 --- a/domains/zhenchai.json +++ b/domains/zhenchai.json @@ -3,7 +3,7 @@ "username": "zhenchai00", "email": "zhenchai0000@gmail.com" }, - "record": { + "records": { "CNAME": "zhenchai00.github.io" } } diff --git a/domains/zhiyao.json b/domains/zhiyao.json index 720e26bde..16c08f5eb 100644 --- a/domains/zhiyao.json +++ b/domains/zhiyao.json @@ -5,7 +5,7 @@ "username": "lizhiyao", "email": "dancerlzy@gmail.com" }, - "record": { + "records": { "CNAME": "lizhiyao.github.io" } } diff --git a/domains/zhu.json b/domains/zhu.json index 7e1b5f027..e6372a7e2 100644 --- a/domains/zhu.json +++ b/domains/zhu.json @@ -6,7 +6,7 @@ "email": "pub@azhu.site", "twitter": "azhu021" }, - "record": { + "records": { "CNAME": "azhu021.github.io" } } diff --git a/domains/ziari.json b/domains/ziari.json index 89bf53948..cedb21053 100644 --- a/domains/ziari.json +++ b/domains/ziari.json @@ -6,7 +6,7 @@ "email": "ziariamirparsa@gmail.com", "twitter": "ziariamirparsa" }, - "record": { + "records": { "CNAME": "amirparsaziari.github.io" } } diff --git a/domains/zick.json b/domains/zick.json index dfaff1ee0..22898942c 100644 --- a/domains/zick.json +++ b/domains/zick.json @@ -3,7 +3,7 @@ "username": "LucasZick", "email": "lucasalexandrezick@gmail.com" }, - "record": { + "records": { "A": ["144.22.193.227"], "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"], "TXT": [ diff --git a/domains/zidanify.json b/domains/zidanify.json index 71d508c3d..d21ea0f8f 100644 --- a/domains/zidanify.json +++ b/domains/zidanify.json @@ -6,7 +6,7 @@ "email": "mohzidanhirawan356@gmail.com", "twitter": "Zidanify" }, - "record": { + "records": { "CNAME": "zidanify.github.io" } } diff --git a/domains/ziko.json b/domains/ziko.json index 941c1e6bc..cd0253071 100644 --- a/domains/ziko.json +++ b/domains/ziko.json @@ -4,7 +4,7 @@ "email": "zakariadidah@gmail.com", "discord": "788397929308225546" }, - "record": { + "records": { "A": ["158.179.209.175"] } } diff --git a/domains/zilu.json b/domains/zilu.json new file mode 100644 index 000000000..8e6145e6e --- /dev/null +++ b/domains/zilu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zilurrane", + "email": "zilurrane@gmail.com" + }, + "records": { + "CNAME": "zilu.dev" + } +} diff --git a/domains/zinko.json b/domains/zinko.json new file mode 100644 index 000000000..079951066 --- /dev/null +++ b/domains/zinko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zink0", + "email": "zinko.it@outlook.com" + }, + "records": { + "CNAME": "zink0.github.io" + } +} diff --git a/domains/ziriksi.json b/domains/ziriksi.json index 79afd1e19..cd8f993bb 100644 --- a/domains/ziriksi.json +++ b/domains/ziriksi.json @@ -6,7 +6,7 @@ "email": "cloudskies@perso.be", "twitter": "cloudskies13" }, - "record": { + "records": { "CNAME": "cloudcloudskies.github.io" } } diff --git a/domains/ziue.json b/domains/ziue.json index 43edfb009..ff6d608b1 100644 --- a/domains/ziue.json +++ b/domains/ziue.json @@ -4,7 +4,7 @@ "username": "ziuee", "discord": "ziue#8495" }, - "record": { + "records": { "CNAME": "ziuee.github.io" } } diff --git a/domains/ziyad.json b/domains/ziyad.json index 99dae42c5..ae4d4d7b7 100644 --- a/domains/ziyad.json +++ b/domains/ziyad.json @@ -3,7 +3,7 @@ "username": "o-lumix", "email": "lumixofficiel@gmail.com" }, - "record": { + "records": { "CNAME": "o-lumix.github.io" } } diff --git a/domains/ziyn.json b/domains/ziyn.json index 7851a9219..ca3b3751e 100644 --- a/domains/ziyn.json +++ b/domains/ziyn.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "254thheli", - "email": "is-a-dev@ziyn.us.kg" - }, - "record": { - "CNAME": "ziyn.pages.dev" - } + "owner": { + "username": "chromapher", + "email": "notziyn@gmail.com" + }, + "records": { + "CNAME": "ziyn.pages.dev" + } } diff --git a/domains/zjfc.json b/domains/zjfc.json index 1bbcdc5d8..e7d0fc16e 100644 --- a/domains/zjfc.json +++ b/domains/zjfc.json @@ -5,7 +5,7 @@ "username": "Endermanbugzjfc", "email": "endermanbugzjfc@gmail.com" }, - "record": { + "records": { "CNAME": "endermanbugzjfc.github.io" } } diff --git a/domains/zk.json b/domains/zk.json index dc7c9fa51..c53cd03fa 100644 --- a/domains/zk.json +++ b/domains/zk.json @@ -1,11 +1,10 @@ { "description": "ZK's Website", - "repo": "https://github.com/p55d2k", "owner": { "username": "p55d2k", "email": "peanutandscuffy1@gmail.com" }, - "record": { + "records": { "CNAME": "zk-website-cwo.pages.dev" } } diff --git a/domains/zkwinkle.json b/domains/zkwinkle.json index 524adf7d9..ca85b1e83 100644 --- a/domains/zkwinkle.json +++ b/domains/zkwinkle.json @@ -3,7 +3,7 @@ "username": "zkwinkle", "email": "ignaevc@gmail.com" }, - "record": { + "records": { "A": ["198.74.54.85"] } } diff --git a/domains/zmail._domainkey.alora.json b/domains/zmail._domainkey.alora.json index e96ac6084..84fa659cc 100644 --- a/domains/zmail._domainkey.alora.json +++ b/domains/zmail._domainkey.alora.json @@ -4,7 +4,7 @@ "email": "alora@alora.is-a.dev", "discord": "1236292707371057216" }, - "record": { + "records": { "TXT": [ "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCpDj1YvQ59sHlGFLqD3vweqrGkr8cDp8CT5V+xBirlBb05D4V5YCvkIDgcDSu5O6yB28PXkzfWgvpGGPDIYQr1fW/zmoktXlwKE53cQv8aEfPmF8u9zucBLUqtFhb5WxBDfd4LSBaSbggLILD2/i8yP2TNQQO2F07IeVCoQFY12wIDAQAB" ] diff --git a/domains/zmail._domainkey.alvin.json b/domains/zmail._domainkey.alvin.json index 764252699..43b0dce97 100644 --- a/domains/zmail._domainkey.alvin.json +++ b/domains/zmail._domainkey.alvin.json @@ -3,7 +3,7 @@ "username": "alvinsjoy", "discord": "825382504353234954" }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCTImPOYaxPGWFkA/Xb2u9/8xvjXBVrV3lMm5UWbtXEIwIOlmQhbtLMvQMgBYMJ5o5VKY2fGejoJKU1oiXAgoKfbmaXt/LI+YbegEZGV5j60VeBxZByKAzqqq+QS2Y2FCTm4ylSeNpEXIn5TUF7NxeOTOX663WDQcywVzlMAGjiGwIDAQAB" } } diff --git a/domains/zmail._domainkey.ante.json b/domains/zmail._domainkey.ante.json new file mode 100644 index 000000000..d10a7bc6c --- /dev/null +++ b/domains/zmail._domainkey.ante.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "records": { + "TXT": [ + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDhuQQB2z2hhaKm7tV8iUB5N80n2yRsl8Iiny6S9wlj7s7M+fIZDNS7nUV3nXUFO7J2oqaTvW1sfWHU26xGZNAAz4MRlBss+3YB3gQrvc9xF/Cnuf9RqY1FA9P8pXJJFLVZhTQXup1f3SwcnEgPxm/ekCxHt/5KUOcZL1g4FQaaIQIDAQAB" + ] + } +} diff --git a/domains/zmail._domainkey.aruria.json b/domains/zmail._domainkey.aruria.json new file mode 100644 index 000000000..ba588484c --- /dev/null +++ b/domains/zmail._domainkey.aruria.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cjolivier123", + "discord": "1175481072088268920" + }, + "records": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDKr1YCFtXzTufNgvRlYuDw72rzN8WBF+F8xNRtI5PwvfVyFEAS7saeRf6hqQ28hdqH8FFmJ9479UkP0023gyUyQcpRQnqu01InfoyPCIicCRv/WQBTKyb0YXMtrF3ANZHBDq0p2lcp/naUtPs2oQEuSI5Ih+SfsCs5HnCRTyV2DQIDAQABl" + } +} diff --git a/domains/zmail._domainkey.chandsi.json b/domains/zmail._domainkey.chandsi.json index 32b498d8b..9bd7a2100 100644 --- a/domains/zmail._domainkey.chandsi.json +++ b/domains/zmail._domainkey.chandsi.json @@ -1,10 +1,9 @@ { "owner": { "username": "Gauravisdev", - "discord": "1119494339735867422", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QGI-jdpZpGtm5id_KBQnUjBud23siGGUxNcDIZlIJeFrkn5yoJnwzkEgvIeCMVJHfVc0s9-au_Ys2GaF7ho1BV0VMiZRec_CDLlXJloYACrJao6GZpgniHi7nEM_yo_ppea0qoSbHdkB78OVLFbdiMGXuQHAUgl93lyvQxpYncxmuoB45Lt4PHPeNI13oA_b2cl-4KJdWnIdZROHV70oiz0HeQtdT4-rOho4sXy_POgF-5U4cQPIRCv7Sn4vkwR5yues9ALzlmOxd6y2sq4oiGCnzfmoiPV9nOxs1y7GolnNQ-xEkMv_C2eLhmL7Dz2Ku0xfvHgqJ6D7GNpokYqwyQ.jmNMhGE5MROTfsXre5BEOQ.SKe9K2hsOV3DYE-UJQCaH46_tw41m_CXwao0xScbwgHIO0AWGaPsxhfrnON43gUmcCpEy9x5ZGYL27qiXB2YAGSJoQwWjamxtMDeySxCmvE.WEUQ4x98SHvxgv2HeQz0sw" + "discord": "1119494339735867422" }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCF2Yx1xPXuy5EhlMEsj7hI0WrdcGdljE9U1dpwWaaQBDpPKlqljSUOhynejmAonmOs0XXZI6ULQ8bOMB9NVjX4SNErYgOYYmsTyj0TKZ0+8HsaksqO/8giBbANte1HSa7xQdjhV+pnzr5HbVWT2dJpuvhvyvRXEZNzB85USEuFeQIDAQAB" } } diff --git a/domains/zmail._domainkey.co.ligmatv.json b/domains/zmail._domainkey.co.ligmatv.json deleted file mode 100644 index cd08c7a23..000000000 --- a/domains/zmail._domainkey.co.ligmatv.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "This sub-subdomain will i use for my Zoho email.", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDO+5yaTA58OpZCT1ejrzPxjO4xNvsImCfvA2UigeVQwtFbl5QbwcdZUf6ga0LE6VOIDA3bMzHmVgTSZfYizmYDxNZ3TOobKEiT3TaaMcZj1sM2zWFVCpuYCHZ3WYPJj7rFF/PKZK9gCPPr1eLgao2SFkXnpwL/BWGL+uQ5OHZvlQIDAQAB" - } -} diff --git a/domains/zmail._domainkey.crazo7924.json b/domains/zmail._domainkey.crazo7924.json index 63d87b81b..88c699556 100644 --- a/domains/zmail._domainkey.crazo7924.json +++ b/domains/zmail._domainkey.crazo7924.json @@ -1,10 +1,9 @@ { "owner": { "username": "crazo7924", - "discord": "466605393309859840", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.k9rR1eHnq7uURmU-Gme0lWVuRCgtdsqYuSpLzPv0G68LByI1gx0khH5ox4H2V80xgK3Bj-i4hYIJaS8Cou5ZL8EQaMw9xDush8iTbkbNHN9ATisdhtzmb6qW5nLZnXcWqMCyKn1xfsbacMkgtfLap5CISiVDORL2u3pHIPyZ6bQ27y7AYlZwSZQqaOADn-S1co-kYuiVDLN6jKbqsjJyTK_ZBYICiAPYfKUFTQWmo5jl0rHn06niVoYZSDmmbqc-n-vzfwr0TNibE4tJ30VYlCJsEKFJu7Em7Q9JpfLCfbg9hNdw3rsz0wLptjYMNA3szl2ydMCsFtr3GHna7bvkww.KkiDy_AodaD643bHTbzCmQ.SEHezEze3r6v7trpOsu6dAaoTa595V1whd_eOWS_MNcoUqymmXqSlzxNji3pqALMmcQHjZYu89BBGcIcD6RTPTeHALeFkmf81fZv8PxJJrT2ssh8nmNIRX-kUvcxqQ-J.cJfYl8zbT1DQOyg2OOBorg" + "discord": "466605393309859840" }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCsG1oi5DHp9ytwPT5aMFt28zy4rxWQ39qLPUJT+jFKVR6/eIIgGfrlQn1VbDNuQum0orxkFlPrOi9tzSxxGKRa5BzXawxk56Je8oy5YZ9L28MpbYlsbiQoc3XQwdBwFp1hbhtBJAm7QmpH6nKk8NZqXGCrq9auS6ShDazaq/ipswIDAQAB" } } diff --git a/domains/zmail._domainkey.cyteon.json b/domains/zmail._domainkey.cyteon.json index 1e5443b68..f22887978 100644 --- a/domains/zmail._domainkey.cyteon.json +++ b/domains/zmail._domainkey.cyteon.json @@ -1,10 +1,9 @@ { "owner": { "username": "Cyteon", - "discord": "871722786006138960", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q9RhtbUP-u9Q4KAp7lbLAVHYORrtuE70vWDcr_S9DFFixPK3glDOVM9gUHMBsQcv0W0jfXsURDrcN0orvGrTmpn30_CQUBL0XAoBYcL5zC7wBavaXAP6v8YHXQmThdsZknwCfsrlAHK5bjOQR_Hke7H89XUnvjONABGMGozVLrveJsjsRUDrxuxggPlcnMDbaOGwZNNHqz7npcmSPe_Kpd5D2xTUjknMcVn9TlgBf0IjO8EAI0UhJUISLjQdT61Fttes2LP9L_h8cyrkFCHcvrBBrQgc05ijPsp5Yb4DC_drzsoLG1WnWObLNNffOUtf-f_CjAA_edIo-6ZA-4nWkg.v45Ib0akIwdqLrzLUFLWVw.m8Ski3CnEUcpfG3Z_ZE4QeSMzmezHxmIv_fXV23LHHr6NehYWI6W_ei45EsfAS-T9c8feeFxDlFm4NP-JOna1kxiQDFwUkApRgJJm3TR8ZY.pFZ7T7Kzts1Y1wtOzXTpRQ" + "discord": "871722786006138960" }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCs7X4KSEMP6dXlPwSETCh/il7XAIUiR7qIxgInLFC7+IFYIywbvhZ6eB12CfMc2BRQLYz63Zfkia9O7wbSe0q8A9kfxA9wLT6oaErohOYqqJizVHHyH/BmswsL3z7oYA06OzUeTY9rFXbetoTcoeXl2iSGHgmLIZpFK4mXzbJneQIDAQAB" } } diff --git a/domains/zmail._domainkey.devarnav.json b/domains/zmail._domainkey.devarnav.json deleted file mode 100644 index 336d7eb0e..000000000 --- a/domains/zmail._domainkey.devarnav.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ArnavBarway", - "email": "playnav.yt@gmail.com" - }, - "record": { - "TXT": [ - "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDSshIz5JRWquCDisgpRtbtWwMhzi2asXOamXxO6G80r4cNYll2/7AWSIxEKGV8t/eoGo9xiryfUXi0W5P5jHY6TWcdawPE/xBoBySt58dQtOElHEplukCYxyTotrvdQp1nH9w2jmexZfjXzOS97sGwUXHDWxNZjwT7hYf5Kzif+QIDAQAB" - ] - } -} diff --git a/domains/zmail._domainkey.joe50097.json b/domains/zmail._domainkey.joe50097.json new file mode 100644 index 000000000..40469092c --- /dev/null +++ b/domains/zmail._domainkey.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "records": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCWPXItvPXEQh/zTsZCFkEcBEObetcpbthrO74OK/zYR+wCk9gHurppJw0nTPcqVVW92Iq78R1b85s6bmGQvFCdMXPM/kM4eWlKKrMcs4QMr8muioEtbyCKu1YenXHZYlns7dfpf5JN2PNnC3cXTTW5uu3F2GNSDXcy/IjhnuSJAwIDAQAB" + } +} diff --git a/domains/zmail._domainkey.juststudio.json b/domains/zmail._domainkey.juststudio.json index 404cbe924..4ee5e055c 100644 --- a/domains/zmail._domainkey.juststudio.json +++ b/domains/zmail._domainkey.juststudio.json @@ -5,7 +5,7 @@ "email": "support@juststudio.is-a.dev", "discord": "1117482901353812088" }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCjezgYOcTrOFw6uITe2KXiQ7MTEzCI76YKzGNPCeN7ttYlbZ/+KRg+iNPNcinf96ClHDhw7fooDSkmTnsCwXdK29gidrXFljATKEB3bilriDYTdtesd+kCHVS5XqUWHKfAdhFZpQcV97DwX1mzTb17JOi8R9HJ8KqJ00/+eir+EQIDAQAB" } } diff --git a/domains/zmail._domainkey.lohit.json b/domains/zmail._domainkey.lohit.json index 45759e124..c21475715 100644 --- a/domains/zmail._domainkey.lohit.json +++ b/domains/zmail._domainkey.lohit.json @@ -4,7 +4,9 @@ "email": "lohitkolluri@gmail.com", "discord": "drxven" }, - "record": { - "TXT": ["v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDk3bjKjaUSMk1CmR3dk3zbYxepsBEwSlM5Sz7f0IMEQICvmR4rv3O3dnT+2JmzV9sr/97sqQpucCVDJaJrnLB4XlFCvgJfwUTU8TX4CPSnWOJ4P7cxrfaMRMZARJoj31m81NB/eVArLcCZFZ/wprNeiOMhPGDL4B2lZRZkDts63wIDAQAB"] + "records": { + "TXT": [ + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDk3bjKjaUSMk1CmR3dk3zbYxepsBEwSlM5Sz7f0IMEQICvmR4rv3O3dnT+2JmzV9sr/97sqQpucCVDJaJrnLB4XlFCvgJfwUTU8TX4CPSnWOJ4P7cxrfaMRMZARJoj31m81NB/eVArLcCZFZ/wprNeiOMhPGDL4B2lZRZkDts63wIDAQAB" + ] } } diff --git a/domains/zmail._domainkey.loomeh.json b/domains/zmail._domainkey.loomeh.json new file mode 100644 index 000000000..3d1a466aa --- /dev/null +++ b/domains/zmail._domainkey.loomeh.json @@ -0,0 +1,10 @@ +{ + "description": "zoho mail for loomeh.is-a.dev", + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "records": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrWUZ5Vfigr20ye1jk/A8BprQadj0d0ry2cd64fKfh+8r28UkocwQeIFFQ0CYq6vCzeaKHb1ejJh5PZG+C+8J/q152wkerLLgb6+l0FrDC1e7oN5dvIpy4oDvbzAg4dTyG5h3T5W12zFLp58EagAXLC9FLikxer2VstZYBxcUFCQIDAQAB" + } +} diff --git a/domains/zmail._domainkey.m.ps.json b/domains/zmail._domainkey.m.ps.json index ef878b082..ed9262ebd 100644 --- a/domains/zmail._domainkey.m.ps.json +++ b/domains/zmail._domainkey.m.ps.json @@ -1,10 +1,9 @@ { "owner": { "username": "PrivacySecured", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ", "notes": "I rarely go on my emails. If I do its because I needed a verification code." }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCJ+VFtI0MbKtqwscVOmrqxUWdUDP0e1sMefD/t/AW5YhlGZVkMWGtJ8f/AMx3wIdZXZbvxORpwip1V6wTC45+NbuIToOArp+S4Su9Z0uKF5IyC/3y07XchKFePXpp0gCAjMuLby+gOGlaXp61Uxfcnt1ZyUR7hydVppAwXSoYrrwIDAQAB" } } diff --git a/domains/zmail._domainkey.mail.gs.json b/domains/zmail._domainkey.mail.gs.json index 2356e433b..3554b5e32 100644 --- a/domains/zmail._domainkey.mail.gs.json +++ b/domains/zmail._domainkey.mail.gs.json @@ -2,10 +2,9 @@ "owner": { "username": "Newfies", "twitter": "YeahItsGav", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fraa7gfMOqQqWmbk-4fE5_pNd2zEvQ1K5w53QIHDTtr1C_Wu2Pzw-GfOlhxAtr7Af5ZIj_p7F5OOp6PwDxlKBXGt13e5l3Z9CQlYRclhfnaeYQm_xetYFlf9ucsYXVTfjFAeXxybT-RxbBjRl3Z48tSQaAto3E3Y-SbqwHPhjqh7-4tCpRZu5yc38Bx0_RHt95Ib2Mcg4cWShE-2ggvygSsonBuYBRGFqMIhM60tMA-cbJdQpvfVdZTJv0vHOtUJltv3eVzPpi4q5S5lWz3EKizGXuwAq3HLFycrBVrt5pegWLi1gId-urV9HGV1L3myGfQQSGwDVCEew9YKQFj71A.bxACuA7jrws9Z7z0oTx4wQ.fzzUvSGM_6ODHxUwg6vQvfJeI2kmUx5DW_4tIGVjPOymDplL8iBjzb5HIHhLqo_PlkcmGxeNr5DH4glPZdn1Dq2ywNTV90hWqpjfoHSOsYk.O8IBPKTRGwaH43VBg1rK3A", "notes": "I'm occasionally on Twitter from time to time; hit me up if you need to talk to me. Let me know you're from is-a.dev." }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIBTe8Y/UeDzWD6h6UcnIbE9+hQrVo1V/s4tBlINTsI0uLLqGrdOMjnkXAXljqm5HBx5L+qNOw5s7d+LLUMtUKLY01nttqhaiPsP1KdzJdoCwQR38VwzVDMIHyNVKxd4YY99MIkVCoR7KoWds6pLvYKYOB+EGucZJWs8VjWrK8UQIDAQAB" } } diff --git a/domains/zmail._domainkey.mail.mrstickypiston.json b/domains/zmail._domainkey.mail.mrstickypiston.json new file mode 100644 index 000000000..df65e29e7 --- /dev/null +++ b/domains/zmail._domainkey.mail.mrstickypiston.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrStickyPiston", + "discord": "700766242268774471" + }, + "records": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQzqCyycL/D4W2wxwRFdiQuDNf0ityvD6KD71b67nse9rbSgQ+03F/Yt7F19nPvnmgSElmaf7yUcQajw2Nhr4xAK95NUgBkjuF4ofkXZnqw7fyVz5JdVU504yPXzLCj5SxSU2Rbu5WS+rXr0P86jjUfNWVPs30p3RTgJDJRoQgBQIDAQAB" + } +} diff --git a/domains/zmail._domainkey.neca.json b/domains/zmail._domainkey.neca.json index 438422a6e..c2b40c60e 100644 --- a/domains/zmail._domainkey.neca.json +++ b/domains/zmail._domainkey.neca.json @@ -4,7 +4,7 @@ "email": "dazzerdev@gmail.com", "discord": "797458672225091594" }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIHzsnS94jaMTbcflV4QMBR4P3YCgegw1NoV7t7rkElCnZ7LEJIWLMCMheXN+ipQUclpDZ8Lw6m8B7mm4tm8P79hTuM6rmhsqcQb8w/g3u6kUDhK/eq2QoDhUienbpKTsR4pZesu9yIW0DL5wYxHT2zpxQN7zO8+8b4IzFSPnmHQIDAQAB" } } diff --git a/domains/zmail._domainkey.sewt.json b/domains/zmail._domainkey.sewt.json index 47c7e1811..b276321fb 100644 --- a/domains/zmail._domainkey.sewt.json +++ b/domains/zmail._domainkey.sewt.json @@ -1,10 +1,9 @@ { "owner": { "username": "SkyExploreWasTaken", - "discord": "1049263707177353247", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + "discord": "1049263707177353247" }, - "record": { + "records": { "TXT": [ "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCb62fTLbpIcDigh68ZI+8EZGMV2LzLtIKTxoRwHhpONIg7eyimcOoeIv2uwYuHrNTnlZvQleD+eolnYEvJA6TTogkgkcOKX8FmPQmrh/MKLW0t8GU257DvxPC2MoGJR592tVyAyod+xOweKvWREvD+9JM8cozWnkvH2inTbud4bQIDAQAB" ] diff --git a/domains/zmail._domainkey.zumate.json b/domains/zmail._domainkey.zumate.json index 6ae1648f2..9db662de9 100644 --- a/domains/zmail._domainkey.zumate.json +++ b/domains/zmail._domainkey.zumate.json @@ -1,10 +1,9 @@ { "owner": { "username": "userandaname", - "discord": "823939421686071386", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.reOdbyp6Plxic0IjF6RuL5lNhiMqzBWweBtnJ-Fpqduom7hhoabj7svWmeD5k0QxutV10NOtl_AlZbmxGOnLZGhZzg8p4Pa1uvOnq9iMrJybaxC36vNieiv0tHy5j8NbMkSUlHjaWOOtHaLMKj0gDVzz3A_QLZAkYusb1zbehSq7CamcojGG4_HZvabGE7OJhWjX1jsr1xp5YmGvRUsDEmKkcQmQFqvRwiDT8rqWd56o8OdqDzehXxRdHyBygYJuuHLGN3iTYeEUEAjj88c3tk1aZNrjStPZdVfxtHrMJCZ76Ny5R1NVOucJVlXQziy6P78lrKneqg5Wo26sietPtA.y3_0JbSixF-j9GIwRYdeqw.XkuJbAg67qp0AVL3ti1-ZTV4XHumSSqgRouDhip2qpv60pIy9cv4hBqtAl5V3W3Mjbo6UJjCKQ-j-xsGYic3xmW4_RQu_b7ezL9r9ykqILs.8XLHqBfk0A3VExJarQ8g8g" + "discord": "823939421686071386" }, - "record": { + "records": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCThzWhBz8eg5c4bE11qwCi95FvVOoSVi+8N70lAA3TRwkxAvgiUkiOj39M+9hgIvQ/8v3+VCerHvDmShl+AxatGvM0vrEZ7ZTQx0nT6YGeCYgebmhAQKyhqnGOL6YmDGHr0MkosD5/ApW1yPjwL0PqbXtALG9vMTyaI7dtZLDBHwIDAQAB" } } diff --git a/domains/zoey.json b/domains/zoey.json index 7c84a8835..80c384411 100644 --- a/domains/zoey.json +++ b/domains/zoey.json @@ -3,7 +3,7 @@ "username": "Zoey2936", "email": "zoey@z0ey.de" }, - "record": { + "records": { "CNAME": "ip.z0ey.de" } } diff --git a/domains/zold.json b/domains/zold.json new file mode 100644 index 000000000..e35b7f42d --- /dev/null +++ b/domains/zold.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "records": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/zoldyako.json b/domains/zoldyako.json new file mode 100644 index 000000000..6d76e819f --- /dev/null +++ b/domains/zoldyako.json @@ -0,0 +1,12 @@ +{ + "description": "My personal site hosted on Render", + "repo": "https://github.com/Zoldyako/zoldyako_site", + "owner": { + "username": "Zoldyako", + "email": "jose.vdr.pessoal@gmail.com", + "discord": "Zoldyako" + }, + "records": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/zomb.json b/domains/zomb.json index 604b8a311..99755557f 100644 --- a/domains/zomb.json +++ b/domains/zomb.json @@ -3,7 +3,7 @@ "username": "eyesmad", "email": "eagam0002@mymail.lausd.net" }, - "record": { + "records": { "MX": ["hosts.is-a.dev"] } } diff --git a/domains/zonghao.json b/domains/zonghao.json index 242e4dc46..76261e611 100644 --- a/domains/zonghao.json +++ b/domains/zonghao.json @@ -3,7 +3,7 @@ "username": "ZHTang29", "email": "e0725226@u.nus.edu" }, - "record": { + "records": { "URL": "https://zonghao-portfolio.web.app/" } } diff --git a/domains/zoom.json b/domains/zoom.json index 20fad6138..ce8c95d79 100644 --- a/domains/zoom.json +++ b/domains/zoom.json @@ -7,7 +7,7 @@ "twitter": "theoldzoom", "discord": "theoldzoom" }, - "record": { + "records": { "CNAME": "theoldzoom.github.io" } } diff --git a/domains/zoosio.json b/domains/zoosio.json index c9a1ccd77..944d7473c 100644 --- a/domains/zoosio.json +++ b/domains/zoosio.json @@ -4,7 +4,7 @@ "email": "maz.nos@gmail.com", "discord": "788741120364511242" }, - "record": { + "records": { "A": ["95.216.242.35"] } } diff --git a/domains/zorex.json b/domains/zorex.json index 58628a9de..3961e1c24 100644 --- a/domains/zorex.json +++ b/domains/zorex.json @@ -4,7 +4,7 @@ "email": "realiksm@gmail.com", "twitter": "WaleedthemodYT" }, - "record": { + "records": { "A": ["34.111.179.208"], "TXT": "replit-verify=73d19ce6-ad19-4956-a800-4e647b4b7cd4" } diff --git a/domains/zpleum.json b/domains/zpleum.json new file mode 100644 index 000000000..55c2e85e5 --- /dev/null +++ b/domains/zpleum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zpleum", + "email": "wiraphat.makwong@gmail.com" + }, + "records": { + "CNAME": "zpleum.vercel.app" + } +} diff --git a/domains/zplusfour.json b/domains/zplusfour.json index d3189907c..432570ddb 100644 --- a/domains/zplusfour.json +++ b/domains/zplusfour.json @@ -4,7 +4,7 @@ "email": "zgjoniur@gmail.com", "discord": "zplusfour#0001" }, - "record": { + "records": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/zstg.json b/domains/zstg.json index 000f8d2b0..38f059920 100644 --- a/domains/zstg.json +++ b/domains/zstg.json @@ -6,7 +6,7 @@ "email": "zestig@duck.com", "twitter": "zstg" }, - "record": { + "records": { "CNAME": "zstg.github.io" } } diff --git a/domains/ztrdiamond.json b/domains/ztrdiamond.json index f8c7fd9da..84bcae7eb 100644 --- a/domains/ztrdiamond.json +++ b/domains/ztrdiamond.json @@ -3,7 +3,7 @@ "username": "ZTRdiamond", "email": "rikosimon9@gmail.com" }, - "record": { + "records": { "URL": "https://ztrdiamond.vercel.app/" } } diff --git a/domains/ztzt.json b/domains/ztzt.json index e4bf8b108..7a6617739 100644 --- a/domains/ztzt.json +++ b/domains/ztzt.json @@ -6,7 +6,7 @@ "email": "2timessharp@gmail.com", "discord": "ztzt" }, - "record": { + "records": { "CNAME": "ztztmc.github.io" } } diff --git a/domains/zuhaib.json b/domains/zuhaib.json index 86d334d13..3ed118d4c 100644 --- a/domains/zuhaib.json +++ b/domains/zuhaib.json @@ -5,7 +5,7 @@ "username": "powrhouseofthecell", "email": "theshahzuhaib96@gmail.com" }, - "record": { + "records": { "CNAME": "powrhouseofthecell.github.io" } } diff --git a/domains/zuhair.json b/domains/zuhair.json index 1b1596be4..e4f7aa578 100644 --- a/domains/zuhair.json +++ b/domains/zuhair.json @@ -3,7 +3,7 @@ "username": "ZuhairTarif", "email": "20-42115-1@student.aiub.edu" }, - "record": { + "records": { "CNAME": "zuhairtarif.github.io" } } diff --git a/domains/zumate.json b/domains/zumate.json index b4c4201e4..a6dc7c1f1 100644 --- a/domains/zumate.json +++ b/domains/zumate.json @@ -1,14 +1,10 @@ { "owner": { "username": "userandaname", - "discord": "823939421686071386", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.reOdbyp6Plxic0IjF6RuL5lNhiMqzBWweBtnJ-Fpqduom7hhoabj7svWmeD5k0QxutV10NOtl_AlZbmxGOnLZGhZzg8p4Pa1uvOnq9iMrJybaxC36vNieiv0tHy5j8NbMkSUlHjaWOOtHaLMKj0gDVzz3A_QLZAkYusb1zbehSq7CamcojGG4_HZvabGE7OJhWjX1jsr1xp5YmGvRUsDEmKkcQmQFqvRwiDT8rqWd56o8OdqDzehXxRdHyBygYJuuHLGN3iTYeEUEAjj88c3tk1aZNrjStPZdVfxtHrMJCZ76Ny5R1NVOucJVlXQziy6P78lrKneqg5Wo26sietPtA.y3_0JbSixF-j9GIwRYdeqw.XkuJbAg67qp0AVL3ti1-ZTV4XHumSSqgRouDhip2qpv60pIy9cv4hBqtAl5V3W3Mjbo6UJjCKQ-j-xsGYic3xmW4_RQu_b7ezL9r9ykqILs.8XLHqBfk0A3VExJarQ8g8g" + "discord": "823939421686071386" }, - "record": { - "TXT": [ - "zoho-verification=zb15561523.zmverify.zoho.com", - "v=spf1 include:zohomail.com ~all" - ], + "records": { + "TXT": ["zoho-verification=zb15561523.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] } } diff --git a/domains/zuygui.json b/domains/zuygui.json index 6172d552d..0823e6dcf 100644 --- a/domains/zuygui.json +++ b/domains/zuygui.json @@ -3,7 +3,7 @@ "username": "zuygui", "email": "maxime@halbitte.fr" }, - "record": { + "records": { "CNAME": "zuygui.github.io" } } diff --git a/domains/zvdxc.json b/domains/zvdxc.json index 977b7c3b9..247e8e17d 100644 --- a/domains/zvdxc.json +++ b/domains/zvdxc.json @@ -3,7 +3,7 @@ "username": "zvdxc", "email": "zvdxc11@gmail.com" }, - "record": { + "records": { "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] } } diff --git a/domains/zwei.json b/domains/zwei.json index 02ad53c00..9b116ea50 100644 --- a/domains/zwei.json +++ b/domains/zwei.json @@ -3,7 +3,7 @@ "username": "zwei", "email": "post@zwei.de.eu.org" }, - "record": { + "records": { "CNAME": "bestzwei.github.io" } } diff --git a/domains/zwel.json b/domains/zwel.json new file mode 100644 index 000000000..ca33dfec8 --- /dev/null +++ b/domains/zwel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zwelhtetyan", + "email": "zwelhtetyandev@gmail.com" + }, + "records": { + "CNAME": "zwel.pages.dev" + } +} diff --git a/domains/zwyz.json b/domains/zwyz.json index c1cba54d5..5483196f4 100644 --- a/domains/zwyz.json +++ b/domains/zwyz.json @@ -3,7 +3,7 @@ "username": "madisonwirtanen", "email": "isadev@imkk.uk" }, - "record": { + "records": { "CNAME": "madisonwirtanen.github.io" } } diff --git a/domains/zxlbni.json b/domains/zxlbni.json index 78ad5c23b..14175161e 100644 --- a/domains/zxlbni.json +++ b/domains/zxlbni.json @@ -3,7 +3,7 @@ "username": "ZxLbni", "email": "dolabani46@gmail.com" }, - "record": { + "records": { "CNAME": "zxlbni.github.io" } } diff --git a/domains/zxpau.json b/domains/zxpau.json index 2a24c1a70..8cc334c68 100644 --- a/domains/zxpau.json +++ b/domains/zxpau.json @@ -3,7 +3,7 @@ "username": "zxPau", "email": "pauu123123123@gmail.com" }, - "record": { + "records": { "CNAME": "zxpau.github.io" } } diff --git a/domains/zylo.json b/domains/zylo.json deleted file mode 100644 index b26333371..000000000 --- a/domains/zylo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Zylo23", - "email": "pyyupsk@proton.me" - }, - "description": "👋 Hello! I'm Zylo, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.", - "repo": "https://github.com/Zylo23/personal-website", - "record": { - "CNAME": "zylo23.pages.dev" - } -} diff --git a/domains/zymi.json b/domains/zymi.json index b78dcf38e..b5a2484e9 100644 --- a/domains/zymi.json +++ b/domains/zymi.json @@ -3,7 +3,7 @@ "username": "Zyminotfound", "email": "notzymi0@gmail.com" }, - "record": { + "records": { "CNAME": "zyminotfound.github.io" } } diff --git a/domains/zync.kenny.json b/domains/zync.kenny.json index cb56a8f94..8cb6a15af 100644 --- a/domains/zync.kenny.json +++ b/domains/zync.kenny.json @@ -5,7 +5,7 @@ "discord": "kenny.sb", "github_id": 75525014 }, - "record": { + "records": { "URL": "https://zync.kennysb.xyz" } } diff --git a/domains/zyronixbot.mznking.json b/domains/zyronixbot.mznking.json index 287e887ed..6d33a67d7 100644 --- a/domains/zyronixbot.mznking.json +++ b/domains/zyronixbot.mznking.json @@ -3,7 +3,7 @@ "username": "mznking", "email": "maazinking23@gmail.com" }, - "record": { + "records": { "CNAME": "zyronixbot.onrender.com" } } diff --git a/domains/zyrouge.json b/domains/zyrouge.json index cd4b99e23..a5030a712 100644 --- a/domains/zyrouge.json +++ b/domains/zyrouge.json @@ -4,7 +4,7 @@ "email": "zyrouge@hotmail.com", "twitter": "_zyrouge_" }, - "record": { + "records": { "URL": "https://zyrouge.me/" } } diff --git a/domains/zytre.json b/domains/zytre.json index c687ef2cb..6c78e39fd 100644 --- a/domains/zytre.json +++ b/domains/zytre.json @@ -4,7 +4,7 @@ "email": "gglvmax@gmail.com", "discord": "689774740893859840" }, - "record": { + "records": { "CNAME": "forum.gglvxd.eu.org" } } diff --git a/domains/zyztem.json b/domains/zyztem.json index 51db72c1e..c02a69d17 100644 --- a/domains/zyztem.json +++ b/domains/zyztem.json @@ -6,7 +6,7 @@ "email": "zyztembuisness@gmail.com", "twitter": "zyztem_" }, - "record": { + "records": { "CNAME": "zyztem.github.io" } } diff --git a/package-lock.json b/package-lock.json index b471fdeb1..32b170be4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,25 +9,100 @@ "fs-extra": "^11.2.0" } }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/fs-minipass": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.4" + }, + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", - "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz", + "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { + "consola": "^3.2.3", "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", + "https-proxy-agent": "^7.0.5", "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" + "nopt": "^8.0.0", + "semver": "^7.5.3", + "tar": "^7.4.0" }, "bin": { "node-pre-gyp": "bin/node-pre-gyp" + }, + "engines": { + "node": ">=18" } }, "node_modules/@nodelib/fs.scandir": { @@ -68,31 +143,38 @@ "node": ">= 8" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", + "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", "dev": true, "license": "MIT", "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" }, "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/@rollup/pluginutils/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, "node_modules/@sindresorhus/merge-streams": { @@ -108,15 +190,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, "node_modules/@vercel/nft": { - "version": "0.27.6", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.6.tgz", - "integrity": "sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==", + "version": "0.27.10", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.10.tgz", + "integrity": "sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==", "dev": true, "license": "MIT", "dependencies": { - "@mapbox/node-pre-gyp": "^1.0.11", - "@rollup/pluginutils": "^4.0.0", + "@mapbox/node-pre-gyp": "^2.0.0-rc.0", + "@rollup/pluginutils": "^5.1.3", "acorn": "^8.6.0", "acorn-import-attributes": "^1.9.5", "async-sema": "^3.1.1", @@ -124,8 +213,8 @@ "estree-walker": "2.0.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "micromatch": "^4.0.8", "node-gyp-build": "^4.2.2", + "picomatch": "^4.0.2", "resolve-from": "^5.0.0" }, "bin": { @@ -136,11 +225,14 @@ } }, "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz", + "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==", "dev": true, - "license": "ISC" + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } }, "node_modules/acorn": { "version": "8.14.0", @@ -179,16 +271,13 @@ } }, "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", "dev": true, "license": "MIT", - "dependencies": { - "debug": "4" - }, "engines": { - "node": ">= 6.0.0" + "node": ">= 14" } }, "node_modules/ansi-regex": { @@ -217,28 +306,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "deprecated": "This package is no longer supported.", - "dev": true, - "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -427,9 +494,9 @@ } }, "node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", "dev": true, "license": "MIT", "engines": { @@ -440,13 +507,13 @@ } }, "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/chunkd": { @@ -457,9 +524,9 @@ "license": "MIT" }, "node_modules/ci-info": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", - "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz", + "integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==", "dev": true, "funding": [ { @@ -599,16 +666,6 @@ "dev": true, "license": "MIT" }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "license": "ISC", - "bin": { - "color-support": "bin.js" - } - }, "node_modules/common-path-prefix": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", @@ -643,12 +700,15 @@ "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14" } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "node_modules/consola": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", + "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", "dev": true, - "license": "ISC" + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } }, "node_modules/convert-to-spaces": { "version": "2.0.1", @@ -660,6 +720,21 @@ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/currently-unhandled": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", @@ -687,9 +762,9 @@ } }, "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dev": true, "license": "MIT", "dependencies": { @@ -704,13 +779,6 @@ } } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true, - "license": "MIT" - }, "node_modules/detect-libc": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", @@ -721,10 +789,17 @@ "node": ">=8" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, "node_modules/emittery": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.0.3.tgz", - "integrity": "sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.1.0.tgz", + "integrity": "sha512-rsX7ktqARv/6UQDgMaLfIqUWAEzzbCQiVh7V9rhDXp6c37yoJcks12NVD+XPkgl4AEavmNhVfrhGoqYwIsMYYA==", "dev": true, "license": "MIT", "engines": { @@ -803,9 +878,9 @@ "license": "Apache-2.0" }, "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "license": "MIT", "dependencies": { @@ -813,16 +888,16 @@ "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" } }, "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz", + "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==", "dev": true, "license": "ISC", "dependencies": { @@ -878,10 +953,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", + "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", "dev": true, "license": "MIT", "dependencies": { @@ -893,32 +985,6 @@ "node": ">=14.14" } }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -926,83 +992,6 @@ "dev": true, "license": "ISC" }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "deprecated": "This package is no longer supported.", - "dev": true, - "license": "ISC", - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gauge/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/gauge/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/gauge/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/gauge/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gauge/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -1062,18 +1051,18 @@ } }, "node_modules/globby": { - "version": "14.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", - "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", + "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", "dev": true, "license": "MIT", "dependencies": { "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", + "fast-glob": "^3.3.3", + "ignore": "^7.0.3", + "path-type": "^6.0.0", "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" + "unicorn-magic": "^0.3.0" }, "engines": { "node": ">=18" @@ -1089,31 +1078,24 @@ "dev": true, "license": "ISC" }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true, - "license": "ISC" - }, "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, "license": "MIT", "dependencies": { - "agent-base": "6", + "agent-base": "^7.1.2", "debug": "4" }, "engines": { - "node": ">= 6" + "node": ">= 14" } }, "node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz", + "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==", "dev": true, "license": "MIT", "engines": { @@ -1258,6 +1240,29 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/js-string-escape": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", @@ -1315,31 +1320,12 @@ "dev": true, "license": "MIT" }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } + "license": "ISC" }, "node_modules/matcher": { "version": "5.0.0", @@ -1450,53 +1436,43 @@ } }, "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, "license": "ISC", "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz", + "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==", "dev": true, "license": "MIT", "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "minipass": "^7.0.4", + "rimraf": "^5.0.5" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" + "node": ">= 18" } }, "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", "dev": true, "license": "MIT", "bin": { - "mkdirp": "bin/cmd.js" + "mkdirp": "dist/cjs/src/bin.js" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/ms": { @@ -1528,9 +1504,9 @@ } }, "node_modules/node-gyp-build": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", - "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", + "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "dev": true, "license": "MIT", "bin": { @@ -1550,43 +1526,19 @@ } }, "node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz", + "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==", "dev": true, "license": "ISC", "dependencies": { - "abbrev": "1" + "abbrev": "^3.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { - "node": ">=6" - } - }, - "node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "deprecated": "This package is no longer supported.", - "dev": true, - "license": "ISC", - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || >=20.5.0" } }, "node_modules/once": { @@ -1600,9 +1552,9 @@ } }, "node_modules/p-map": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.2.tgz", - "integrity": "sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", + "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", "dev": true, "license": "MIT", "engines": { @@ -1629,6 +1581,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, "node_modules/parse-ms": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", @@ -1652,14 +1611,41 @@ "node": ">=0.10.0" } }, - "node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", + "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1695,9 +1681,9 @@ } }, "node_modules/pretty-ms": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.1.0.tgz", - "integrity": "sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", + "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", "dev": true, "license": "MIT", "dependencies": { @@ -1731,21 +1717,6 @@ ], "license": "MIT" }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -1791,17 +1762,63 @@ } }, "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", "dev": true, "license": "ISC", "dependencies": { - "glob": "^7.1.3" + "glob": "^10.3.7" }, "bin": { - "rimraf": "bin.js" + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -1831,31 +1848,10 @@ "queue-microtask": "^1.2.2" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", "dev": true, "license": "ISC", "bin": { @@ -1881,19 +1877,41 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/set-blocking": { + "node_modules/shebang-command": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "license": "ISC" + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } }, "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "license": "ISC" + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, "node_modules/slash": { "version": "5.1.0", @@ -1955,16 +1973,6 @@ "node": ">=8" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/string-width": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", @@ -1983,6 +1991,62 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-ansi": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", @@ -1999,6 +2063,30 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/supertap": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz", @@ -2016,21 +2104,21 @@ } }, "node_modules/tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", + "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", "dev": true, "license": "ISC", "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.0.1", + "mkdirp": "^3.0.1", + "yallist": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/temp-dir": { @@ -2087,9 +2175,9 @@ } }, "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", "dev": true, "license": "MIT", "engines": { @@ -2109,13 +2197,6 @@ "node": ">= 10.0.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true, - "license": "MIT" - }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", @@ -2144,69 +2225,20 @@ "webidl-conversions": "^3.0.0" } }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "license": "ISC", "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/wide-align/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/wide-align/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" + "node": ">= 8" } }, "node_modules/wrap-ansi": { @@ -2227,6 +2259,96 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/wrap-ansi/node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -2319,19 +2441,6 @@ "node": "^18.17.0 || >=20.5.0" } }, - "node_modules/write-file-atomic/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -2343,11 +2452,14 @@ } }, "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", "dev": true, - "license": "ISC" + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } }, "node_modules/yargs": { "version": "17.7.2", diff --git a/tests/domains.test.js b/tests/domains.test.js index 4c4dc25d6..7b07e567b 100644 --- a/tests/domains.test.js +++ b/tests/domains.test.js @@ -3,127 +3,105 @@ const fs = require("fs-extra"); const path = require("path"); const domainsPath = path.resolve("domains"); -const files = fs.readdirSync(domainsPath); +const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json")); -function getParentSubdomain(subdomain) { - const parts = subdomain.split("."); - - if (parts.length <= 1) return null; // No parent for top-level subdomains - - // Attempt to find the parent subdomain by removing the last part - for (let i = parts.length - 1; i > 0; i--) { - const potentialParent = parts.slice(i - 1).join("."); - if (files.includes(`${potentialParent}.json`)) { - return potentialParent; // Return the parent subdomain if it exists - } - } - - return null; // Return null if no valid parent is found -} +const domainCache = {}; function getDomainData(subdomain) { + if (domainCache[subdomain]) { + return domainCache[subdomain]; + } + try { - return fs.readJsonSync(path.join(domainsPath, `${subdomain}.json`)); + const data = fs.readJsonSync(path.join(domainsPath, `${subdomain}.json`)); + domainCache[subdomain] = data; // Cache the domain data + return data; } catch (error) { throw new Error(`Failed to read JSON for ${subdomain}: ${error.message}`); } } -function expandReservedDomains() { - const reserved = require("../util/reserved-domains.json"); - const expandedList = [...reserved]; - - for (const item of reserved) { - const rangeMatch = item.match(/\[(\d+)-(\d+)\]/); // Matches [min-max] - - if (rangeMatch) { - const prefix = item.split("[")[0]; - const start = parseInt(rangeMatch[1], 10); - const end = parseInt(rangeMatch[2], 10); - - if (start < end) { - for (let i = start; i <= end; i++) { - expandedList.push(prefix + i); - } - - expandedList.splice(expandedList.indexOf(item), 1); - } else { - throw new Error(`[util/reserved-domains.json] Invalid range [${start}-${end}] in "${item}"`); - } - } - } - - return expandedList; -} - t("Nested subdomains should not exist without a parent subdomain", (t) => { - for (const file of files) { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); + const parts = subdomain.split("."); - if (subdomain.split(".").length > 1) { - const parentSubdomain = getParentSubdomain(subdomain); - t.true(files.includes(`${parentSubdomain}.json`), `${file}: Parent subdomain does not exist`); + for (let i = 1; i < parts.length; i++) { + const parent = parts.slice(i).join("."); + if (parent.startsWith("_")) continue; + + t.true( + files.includes(`${parent}.json`), + `${file}: Parent subdomain "${parent}" does not exist` + ); } - } - - t.pass(); + }); }); -t("Nested subdomains should not exist if the parent subdomain has NS records", (t) => { - for (const file of files) { +t("Nested subdomains should not exist if any parent subdomain has NS records", (t) => { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); + const parts = subdomain.split("."); - if (subdomain.split(".").length > 1) { - const parentSubdomain = getParentSubdomain(subdomain); - const parentDomain = getDomainData(parentSubdomain); + for (let i = 1; i < parts.length; i++) { + const parent = parts.slice(i).join("."); + if (parent.startsWith("_") || !files.includes(`${parent}.json`)) continue; + const parentData = getDomainData(parent); - t.true(!parentDomain.record.NS, `${file}: Parent subdomain has NS records`); + t.true(!parentData.records.NS, `${file}: Parent subdomain "${parent}" has NS records`); } - } - - t.pass(); + }); }); t("Nested subdomains should be owned by the parent subdomain's owner", (t) => { - for (const file of files) { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); + const parentDomain = subdomain.split(".").reverse()[0]; - if (subdomain.split(".").length > 1) { + if (parentDomain !== subdomain) { const data = getDomainData(subdomain); - - const parentSubdomain = getParentSubdomain(subdomain); - const parentDomain = getDomainData(parentSubdomain); + const parentData = getDomainData(parentDomain); t.true( - data.owner.username.toLowerCase() === parentDomain.owner.username.toLowerCase(), + data.owner.username.toLowerCase() === parentData.owner.username.toLowerCase(), `${file}: Owner does not match the parent subdomain` ); } - } + }); }); -const reservedDomains = expandReservedDomains(); +t("Users are limited to one single character subdomain", (t) => { + const results = []; -t("Subdomain names must not be reserved", (t) => { - for (const file of files) { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); + const data = getDomainData(subdomain); - t.true(!reservedDomains.includes(subdomain), `${file}: Subdomain name is reserved`); - } - - t.pass(); -}); - -t("Reserved domains file should be valid", (t) => { - const subdomainRegex = /^_?[a-zA-Z0-9]+([-\.][a-zA-Z0-9]+)*(\[\d+-\d+\])?$/; - - for (const item of reservedDomains) { - t.regex( - item, - subdomainRegex, - `[util/reserved-domains.json] Invalid subdomain name "${item}" at index ${reservedDomains.indexOf(item)}` - ); - } + if (subdomain.length === 1 && data.owner.username.toLowerCase() !== "is-a-dev") { + results.push({ + subdomain, + owner: data.owner.username.toLowerCase() + }); + } + }); + + const duplicates = results.filter((result) => results.filter((r) => r.owner === result.owner).length > 1); + const output = duplicates.reduce((acc, curr) => { + if (!acc[curr.owner]) { + acc[curr.owner] = []; + } + + acc[curr.owner].push(`${curr.subdomain}.is-a.dev`); + return acc; + }, {}); + + t.is( + duplicates.length, + 0, + Object.keys(output) + .map((owner) => `${owner} - ${output[owner].join(", ")}`) + .join("\n") + ); t.pass(); }); diff --git a/tests/json.test.js b/tests/json.test.js index 4dab0ede7..dfe388803 100644 --- a/tests/json.test.js +++ b/tests/json.test.js @@ -2,13 +2,16 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); +const ignoredRootJSONFiles = ["package-lock.json", "package.json"]; + const requiredFields = { owner: "object", - record: "object" + records: "object" }; const optionalFields = { - proxied: "boolean" + proxied: "boolean", + redirect_config: "object" }; const requiredOwnerFields = { @@ -19,92 +22,165 @@ const optionalOwnerFields = { email: "string" }; +const optionalRedirectConfigFields = { + custom_paths: "object", + redirect_paths: "boolean" +}; + +const blockedFields = [ + "domain", + "internal", + "reserved", + "subdomain" +]; + const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; const hostnameRegex = /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/; +const internalDomains = require("../util/internal.json"); +const reservedDomains = require("../util/reserved.json"); + const domainsPath = path.resolve("domains"); const files = fs.readdirSync(domainsPath); -function validateRequiredFields(t, obj, requiredFields, file) { - Object.keys(requiredFields).forEach((key) => { - t.true(obj.hasOwnProperty(key), `${file}: Missing required field: ${key}`); - t.is(typeof obj[key], requiredFields[key], `${file}: Field ${key} should be of type ${requiredFields[key]}`); - }); +function findDuplicateKeys(jsonString) { + const duplicateKeys = new Set(); + const keyStack = []; + + const keyRegex = /"(.*?)"\s*:/g; + + let i = 0; + while (i < jsonString.length) { + const char = jsonString[i]; + + if (char === "{") { + keyStack.push({}); + i++; + continue; + } + + if (char === "}") { + keyStack.pop(); + i++; + continue; + } + + keyRegex.lastIndex = i; + const match = keyRegex.exec(jsonString); + if (match && match.index === i && keyStack.length > 0) { + const key = match[1]; + const currentScope = keyStack[keyStack.length - 1]; + + if (currentScope[key]) { + duplicateKeys.add(key); + } else { + currentScope[key] = true; + } + + i = keyRegex.lastIndex; + } else { + i++; + } + } + + return [...duplicateKeys]; } -function validateOptionalFields(t, obj, optionalFields, file) { - Object.keys(optionalFields).forEach((key) => { +async function validateFields(t, obj, fields, file, prefix = "") { + for (const key of Object.keys(fields)) { + const fieldPath = prefix ? `${prefix}.${key}` : key; + if (obj.hasOwnProperty(key)) { - t.is( - typeof obj[key], - optionalFields[key], - `${file}: Field ${key} should be of type ${optionalFields[key]}` - ); + t.is(typeof obj[key], fields[key], `${file}: Field ${fieldPath} should be of type ${fields[key]}`); + } else if (fields === requiredFields || fields === requiredOwnerFields) { + t.true(false, `${file}: Missing required field: ${fieldPath}`); } - }); + } } -t("All files should be valid JSON", (t) => { - files.forEach((file) => { - t.notThrows(() => fs.readJsonSync(path.join(domainsPath, file)), `${file}: Invalid JSON file`); - }); -}); +async function validateFileName(t, file) { + t.true(file.endsWith(".json"), `${file}: File does not have .json extension`); + t.false(file.includes(".is-a.dev"), `${file}: File name should not contain .is-a.dev`); + t.true(file === file.toLowerCase(), `${file}: File name should be all lowercase`); + t.false(file.includes("--"), `${file}: File name should not contain consecutive hyphens`); -t("All files should have valid file names", (t) => { - files.forEach((file) => { - t.true(file.endsWith(".json"), `${file}: File does not have .json extension`); - t.false(file.includes(".is-a.dev"), `${file}: File name should not contain .is-a.dev`); - t.true(file === file.toLowerCase(), `${file}: File name should be lowercase`); + const subdomain = file.replace(/\.json$/, ""); - // Ignore root domain - if (file !== "@.json") { - const subdomain = file.replace(/\.json$/, ""); - t.regex( - subdomain + ".is-a.dev", - hostnameRegex, - `${file}: FQDN must be 1-253 characters, use letters, numbers, dots, or hyphens, and not start or end with a hyphen.` - ); - } - }); -}); + t.regex( + subdomain + ".is-a.dev", + hostnameRegex, + `${file}: FQDN must be 1-253 characters, can use letters, numbers, dots, and non-consecutive hyphens.` + ); + t.false(internalDomains.includes(subdomain), `${file}: Subdomain name is registered internally`); + t.false(reservedDomains.includes(subdomain), `${file}: Subdomain name is reserved`); + t.true( + !internalDomains.some((i) => subdomain.endsWith(`.${i}`)), + `${file}: Subdomain name is registered internally` + ); + t.true( + !reservedDomains.some((r) => subdomain.endsWith(`.${r}`)), + `${file}: Subdomain name is reserved` + ); -t("All files should have the required fields", (t) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); + const rootSubdomain = subdomain.split(".").pop(); + t.false(rootSubdomain.startsWith("_"), `${file}: Root subdomains should not start with an underscore`); +} - // Validate top-level required fields - validateRequiredFields(t, data, requiredFields, file); +async function processFile(file, t) { + const filePath = path.join(domainsPath, file); + const data = await fs.readJson(filePath); - // Validate owner object fields - validateRequiredFields(t, data.owner, requiredOwnerFields, file); + validateFileName(t, file); - // Ensure 'record' field is not empty - t.true(Object.keys(data.record).length > 0, `${file}: Missing DNS records`); - }); -}); + // Check for duplicate keys + const rawData = await fs.readFile(filePath, "utf8"); + const duplicateKeys = findDuplicateKeys(rawData); + t.true(!duplicateKeys.length, `${file}: Duplicate keys found: ${duplicateKeys.join(", ")}`); -t("All files should have valid optional fields", (t) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); + // Validate fields + validateFields(t, data, requiredFields, file); + validateFields(t, data.owner, requiredOwnerFields, file, "owner"); + validateFields(t, data.owner, optionalOwnerFields, file, "owner"); + validateFields(t, data, optionalFields, file); - // Validate optional fields at top level - validateOptionalFields(t, data, optionalFields, file); + if (data.owner.email) { + t.regex(data.owner.email, emailRegex, `${file}: Owner email should be a valid email address`); + t.false( + data.owner.email.endsWith("@users.noreply.github.com"), + `${file}: Owner email should not be a GitHub no-reply email` + ); + } - // Validate optional fields for owner object - validateOptionalFields(t, data.owner, optionalOwnerFields, file); + t.true(Object.keys(data.records).length > 0, `${file}: Missing DNS records`); - // Email validation (if provided) - if (data.owner.email) { - t.regex(data.owner.email, emailRegex, `${file}: Owner email should be a valid email address`); - } - }); -}); + if (data.redirect_config) { + validateFields(t, data.redirect_config, optionalRedirectConfigFields, file, "redirect_config"); + } -const ignoredJSONFiles = ["package-lock.json", "package.json"]; + for (const field of blockedFields) { + t.true(!data.hasOwnProperty(field), `${file}: Disallowed field: ${field}`); + } +} t("JSON files should not be in the root directory", (t) => { const rootFiles = fs .readdirSync(path.resolve()) - .filter((file) => file.endsWith(".json") && !ignoredJSONFiles.includes(file)); + .filter((file) => file.endsWith(".json") && !ignoredRootJSONFiles.includes(file)); t.is(rootFiles.length, 0, "JSON files should not be in the root directory"); }); + +t("All files should be valid JSON", async (t) => { + await Promise.all( + files.map((file) => { + return t.notThrows(() => fs.readJson(path.join(domainsPath, file)), `${file}: Invalid JSON file`); + }) + ); +}); + +t("All files should have valid file names", async (t) => { + await Promise.all(files.map((file) => validateFileName(t, file))); +}); + +t("All files should have valid required and optional fields", async (t) => { + await Promise.all(files.map((file) => processFile(file, t))); +}); diff --git a/tests/pr.test.js b/tests/pr.test.js new file mode 100644 index 000000000..6afa1ff85 --- /dev/null +++ b/tests/pr.test.js @@ -0,0 +1,63 @@ +const t = require("ava"); +const fs = require("fs-extra"); +const path = require("path"); + +const requiredEnvVars = ["PR_AUTHOR", "PR_AUTHOR_ID"]; +const trustedUsers = require("../util/trusted.json").map((u) => u.id.toString()); + +function getDomainData(subdomain) { + try { + const data = fs.readJsonSync(path.join(path.resolve("domains"), `${subdomain}.json`)); + return data; + } catch (error) { + throw new Error(`Failed to read JSON for ${subdomain}: ${error.message}`); + } +} + +t("Users can only update their own subdomains", (t) => { + if (requiredEnvVars.every((v) => process.env[v])) { + const changedFiles = JSON.parse(process.env.CHANGED_FILES); + const deletedFiles = JSON.parse(process.env.DELETED_FILES); + const prAuthor = process.env.PR_AUTHOR.toLowerCase(); + const prAuthorId = process.env.PR_AUTHOR_ID; + + const changedJSONFiles = changedFiles + .filter((file) => file.startsWith("domains/")) + .map((file) => path.basename(file)); + const deletedJSONFiles = deletedFiles + .filter((file) => file.name.startsWith("domains/")) + .map((file) => path.basename(file.name)); + + if ((!changedJSONFiles && !deletedFiles) || trustedUsers.includes(prAuthorId)) return t.pass(); + if (process.env.PR_LABELS && process.env.PR_LABELS.includes("ci: bypass-owner-check")) return t.pass(); + + changedJSONFiles.forEach((file) => { + const subdomain = file.replace(/\.json$/, ""); + const data = getDomainData(subdomain); + + t.true( + data.owner.username.toLowerCase() === prAuthor, + `${subdomain}: ${prAuthor} is not authorized to update ${subdomain}.is-a.dev` + ); + }); + + deletedJSONFiles.forEach((file) => { + const subdomain = file.replace(/\.json$/, ""); + const data = JSON.parse( + deletedFiles + .find((f) => f.name === `domains/${file}`) + .data.split("\n") + .filter((line) => line.startsWith("-") && !line.startsWith("---")) + .map((line) => line.substring(1)) + .join("\n") + ); + + t.true( + data.owner.username.toLowerCase() === prAuthor, + `${file}: ${prAuthor} is not authorized to delete ${subdomain}.is-a.dev` + ); + }); + } + + t.pass(); +}); diff --git a/tests/proxy.test.js b/tests/proxy.test.js index 2bb64b48c..1c3d98300 100644 --- a/tests/proxy.test.js +++ b/tests/proxy.test.js @@ -3,14 +3,34 @@ const fs = require("fs-extra"); const path = require("path"); const requiredRecordsToProxy = new Set(["A", "AAAA", "CNAME"]); -// URL records are not listed here because they are proxied by default, so they don't need the proxied flag + +const domainCache = {}; + +function getDomainData(file) { + if (domainCache[file]) { + return domainCache[file]; + } + + try { + const data = fs.readJsonSync(path.join(domainsPath, file)); + domainCache[file] = data; + return data; + } catch (error) { + throw new Error(`Failed to read JSON for ${file}: ${error.message}`); + } +} function validateProxiedRecords(t, data, file) { - // Convert the Set to an array for message display const recordTypes = Array.from(requiredRecordsToProxy).join(", "); + // Forcefully stop raw.is-a.dev from being proxied + if (file === "raw.json") { + t.true(!data.proxied, `${file}: raw.is-a.dev cannot be proxied`); + return; + } + if (data.proxied) { - const hasProxiedRecord = Object.keys(data.record).some((key) => requiredRecordsToProxy.has(key)); + const hasProxiedRecord = Object.keys(data.records).some((key) => requiredRecordsToProxy.has(key)); t.true( hasProxiedRecord, @@ -22,10 +42,10 @@ function validateProxiedRecords(t, data, file) { const domainsPath = path.resolve("domains"); const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json")); -t("Domains with proxy enabled should have at least one record that can be proxied", (t) => { +t("Domains with proxy enabled must have at least one proxy-able record", (t) => { files.forEach((file) => { - const domain = fs.readJsonSync(path.join(domainsPath, file)); + const data = getDomainData(file); - validateProxiedRecords(t, domain, file); + validateProxiedRecords(t, data, file); }); }); diff --git a/tests/records.test.js b/tests/records.test.js index de5ecbadc..cf2d56197 100644 --- a/tests/records.test.js +++ b/tests/records.test.js @@ -2,19 +2,33 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); -const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TXT", "URL"]); - +const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TLSA", "TXT", "URL"]); const hostnameRegex = /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/; const ipv4Regex = /^(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}$/; const ipv6Regex = /^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$|^::(?:[0-9a-fA-F]{1,4}:){0,6}[0-9a-fA-F]{1,4}$|^(?:[0-9a-fA-F]{1,4}:){1,7}:$|^(?:[0-9a-fA-F]{1,4}:){0,6}::(?:[0-9a-fA-F]{1,4}:){0,5}[0-9a-fA-F]{1,4}$/; const domainsPath = path.resolve("domains"); -const files = fs.readdirSync(domainsPath); +const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json")); + +const domainCache = {}; + +function getDomainData(file) { + if (domainCache[file]) { + return domainCache[file]; + } + + try { + const data = fs.readJsonSync(path.join(domainsPath, file)); + domainCache[file] = data; + return data; + } catch (error) { + throw new Error(`Failed to read JSON for ${file}: ${error.message}`); + } +} function expandIPv6(ip) { let segments = ip.split(":"); - const emptyIndex = segments.indexOf(""); if (emptyIndex !== -1) { @@ -31,7 +45,7 @@ function expandIPv6(ip) { return segments.map((segment) => segment.padStart(4, "0")).join(":"); } -function validateIPv4(ip, proxied, file, index) { +function validateIPv4(ip, proxied) { const parts = ip.split(".").map(Number); if (parts.length !== 4 || parts.some((part) => isNaN(part) || part < 0 || part > 255)) return false; @@ -74,135 +88,243 @@ function isValidHexadecimal(value) { return /^[0-9a-fA-F]+$/.test(value); } +function validateRecordValues(t, data, file) { + const subdomain = file.replace(/\.json$/, ""); + + Object.entries(data.records).forEach(([key, value]) => { + // General validation for arrays + if (["A", "AAAA", "MX", "NS"].includes(key)) { + t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`); + + value.forEach((record, idx) => { + t.true( + typeof record === "string" || typeof record === "object", + `${file}: Record value for ${key} should be a string or an object at index ${idx}` + ); + + if (key === "A") { + t.true(ipv4Regex.test(record), `${file}: Invalid IPv4 address for ${key} at index ${idx}`); + t.true( + validateIPv4(record, data.proxied), + `${file}: Invalid IPv4 address for ${key} at index ${idx}` + ); + } else if (key === "AAAA") { + const expandedIPv6 = expandIPv6(record); + t.true(ipv6Regex.test(expandedIPv6), `${file}: Invalid IPv6 address for ${key} at index ${idx}`); + t.true(validateIPv6(expandedIPv6), `${file}: Invalid IPv6 address for ${key} at index ${idx}`); + } else if (key === "MX") { + t.true( + typeof record === "object" || typeof record === "string", + `${file}: Record value for ${key} should be an object or a string at index ${idx}` + ); + + if (typeof record === "string") { + t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`); + } else { + t.true(isValidHostname(record.target), `${file}: Invalid target for ${key} at index ${idx}`); + t.true( + Number.isInteger(record.priority) && record.priority >= 0 && record.priority <= 65535, + `${file}: Invalid priority for ${key} at index ${idx}` + ); + } + } else if (key === "NS") { + t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`); + } + }); + } + + // CNAME and URL validations + if (["CNAME", "URL"].includes(key)) { + t.true(typeof value === "string", `${file}: Record value for ${key} should be a string`); + + if (key === "CNAME") { + t.true(isValidHostname(value), `${file}: Invalid hostname for ${key}`); + t.true(value !== `${subdomain}.is-a.dev`, `${file}: ${key} cannot point to itself`); + t.true(value !== "is-a.dev", `${file}: ${key} cannot point to is-a.dev`); + } else if (key === "URL") { + t.true( + value.startsWith("http://") || value.startsWith("https://"), + `${file}: Record value for ${key} must start with http:// or https://` + ); + t.notThrows(() => new URL(value), `${file}: Invalid URL for ${key}`); + + // Check for self-referencing redirects + const urlHost = new URL(value).host; + t.false(urlHost === `${subdomain}.is-a.dev`, `${file}: ${key} cannot point to itself`); + } + } + + // CAA, DS, SRV, TLSA validations + if (["CAA", "DS", "SRV", "TLSA"].includes(key)) { + t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`); + + value.forEach((record, idx) => { + t.true( + typeof record === "object", + `${file}: Record value for ${key} should be an object at index ${idx}` + ); + + if (key === "CAA") { + t.true( + ["issue", "issuewild", "iodef"].includes(record.tag), + `${file}: Invalid tag for ${key} at index ${idx}` + ); + t.true(typeof record.value === "string", `${file}: Invalid value for ${key} at index ${idx}`); + t.true( + isValidHostname(record.value) || record.value === ";", + `${file}: Value must be a hostname or semicolon for ${key} at index ${idx}` + ); + } else if (key === "DS") { + t.true( + Number.isInteger(record.key_tag) && record.key_tag >= 0 && record.key_tag <= 65535, + `${file}: Invalid key_tag for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.algorithm) && record.algorithm >= 0 && record.algorithm <= 255, + `${file}: Invalid algorithm for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.digest_type) && record.digest_type >= 0 && record.digest_type <= 255, + `${file}: Invalid digest_type for ${key} at index ${idx}` + ); + t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for ${key} at index ${idx}`); + } else if (key === "SRV") { + t.true( + Number.isInteger(record.priority) && record.priority >= 0 && record.priority <= 65535, + `${file}: Invalid priority for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.weight) && record.weight >= 0 && record.weight <= 65535, + `${file}: Invalid weight for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.port) && record.port >= 0 && record.port <= 65535, + `${file}: Invalid port for ${key} at index ${idx}` + ); + t.true(isValidHostname(record.target), `${file}: Invalid target for ${key} at index ${idx}`); + } else if (key === "TLSA") { + t.true( + Number.isInteger(record.usage) && record.usage >= 0 && record.usage <= 255, + `${file}: Invalid usage for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.selector) && record.selector >= 0 && record.selector <= 255, + `${file}: Invalid selector for ${key} at index ${idx}` + ); + t.true( + Number.isInteger(record.matchingType) && record.matchingType >= 0 && record.matchingType <= 255, + `${file}: Invalid matchingType for ${key} at index ${idx}` + ); + t.true( + isValidHexadecimal(record.certificate), + `${file}: Invalid certificate for ${key} at index ${idx}` + ); + } + }); + } + + // TXT validation + if (key === "TXT") { + const values = Array.isArray(value) ? value : [value]; + values.forEach((record, idx) => { + t.true(typeof record === "string", `${file}: TXT record value should be a string at index ${idx}`); + }); + } + }); + + if (data.redirect_config) { + const customPaths = Object.keys(data.redirect_config.custom_paths || {}); + const pathRegex = /^\/[a-zA-Z0-9\-_\.\/]+(? { + const customRedirectURL = data.redirect_config.custom_paths[customPath]; + const urlMessage = `${file}: Custom path in redirect_config`; + + // Validate the custom path + t.true( + pathRegex.test(customPath), + `${urlMessage} must start with a slash, contain only alphanumeric characters, hyphens, underscores, periods, and slashes, and cannot end with a slash at index ${idx}` + ); + t.true( + customPath.length >= 2 && customPath.length <= 255, + `${urlMessage} should be 2-255 characters long at index ${idx}` + ); + + // Validate the redirect URL + t.true( + data.records.URL !== customRedirectURL, + `${urlMessage} should be different from the URL record at index ${idx}` + ); + t.true( + customRedirectURL.startsWith("http://") || customRedirectURL.startsWith("https://"), + `${urlMessage} must start with http:// or https:// at index ${idx}` + ); + t.notThrows(() => new URL(customRedirectURL), `${urlMessage} contains an invalid URL at index ${idx}`); + + // Check for self-referencing redirects + const urlHost = new URL(customRedirectURL).host; + t.false(urlHost === `${subdomain}.is-a.dev`, `${urlMessage} cannot point to itself at index ${idx}`); + }); + } +} + t("All files should have valid record types", (t) => { files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); - const recordKeys = Object.keys(data.record); + const data = getDomainData(file); + const recordKeys = Object.keys(data.records); recordKeys.forEach((key) => { t.true(validateRecordType(key), `${file}: Invalid record type: ${key}`); }); - // Specific record rules for CNAME, NS, and DS + // Record type combinations validation if (recordKeys.includes("CNAME") && !data.proxied) { t.is(recordKeys.length, 1, `${file}: CNAME records cannot be combined with other records unless proxied`); } - if (recordKeys.includes("NS")) { t.true( recordKeys.length === 1 || (recordKeys.length === 2 && recordKeys.includes("DS")), `${file}: NS records cannot be combined with other records, except for DS records` ); } - if (recordKeys.includes("DS")) { t.true(recordKeys.includes("NS"), `${file}: DS records must be combined with NS records`); } + if (recordKeys.includes("URL")) { + t.true( + !recordKeys.includes("A") && !recordKeys.includes("AAAA") && !recordKeys.includes("CNAME"), + `${file}: URL records cannot be combined with A, AAAA, or CNAME records` + ); + } + if (data.redirect_config) { + t.true( + recordKeys.includes("URL") || data.proxied, + `${file}: Redirect config must be combined with a URL record or the domain must be proxied` + ); + if (data.redirect_config.redirect_paths) { + t.true(recordKeys.includes("URL"), `${file}: redirect_config.redirect_paths requires a URL record`); + } + } + + validateRecordValues(t, data, file); }); + + t.pass(); }); -t("All files should not have duplicate record keys", (t) => { +t("Root subdomains should have at least one usable record", (t) => { + const usableRecordTypes = ["A", "AAAA", "CNAME", "MX", "NS", "URL"]; + files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); - const recordKeys = Object.keys(data.record); - const uniqueRecordKeys = new Set(recordKeys); + const subdomain = file.replace(/\.json$/, ""); + if (subdomain.includes(".") || subdomain.startsWith("_")) return; - t.is(recordKeys.length, uniqueRecordKeys.size, `${file}: Duplicate record keys found`); - }); -}); - -t("All files should have valid record values", (t) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); - - Object.keys(data.record).forEach((key) => { - const value = data.record[key]; - const subdomain = file.replace(/\.json$/, ""); // Get the subdomain from the filename - - // Validate A, AAAA, MX, NS records: Array of strings - if (["A", "AAAA", "MX", "NS"].includes(key)) { - t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`); - - value.forEach((record, idx) => { - t.true( - typeof record === "string", - `${file}: Record value for ${key} should be a string at index ${idx}` - ); - - if (key === "A") { - t.regex(record, ipv4Regex, `${file}: Invalid IPv4 address for ${key} at index ${idx}`); - t.true( - validateIPv4(record, data.proxied, file, idx), - `${file}: Invalid IPv4 address for ${key} at index ${idx}` - ); - } - - if (key === "AAAA") { - t.regex( - expandIPv6(record), - ipv6Regex, - `${file}: Invalid IPv6 address for ${key} at index ${idx}` - ); - t.true(validateIPv6(record), `${file}: Invalid IPv6 address for ${key} at index ${idx}`); - } - - if (["MX", "NS"].includes(key)) { - t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`); - } - }); - } - - // Validate CNAME and URL records: Single string - if (["CNAME", "URL"].includes(key)) { - t.true(typeof value === "string", `${file}: Record value for ${key} should be a string`); - - if (key === "CNAME") { - t.true(isValidHostname(value), `${file}: Invalid hostname for ${key}`); - t.true(value !== file, `${file}: CNAME cannot point to itself`); - if (file === "@.json") { - t.true(value !== "is-a.dev", `${file}: CNAME cannot point to itself`); - } - } - - if (key === "URL") { - t.true(value.startsWith("http://") || value.startsWith("https://"), `${file}: Record value for ${key} must start with http:// or https://`) - t.notThrows(() => new URL(value), `${file}: Invalid URL for ${key}`); - } - } - - // Validate CAA, DS, SRV records: Array of objects - if (["CAA", "DS", "SRV"].includes(key)) { - t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`); - - value.forEach((record, idx) => { - t.true( - typeof record === "object", - `${file}: Record value for ${key} should be an object at index ${idx}` - ); - - if (key === "DS") { - t.true( - Number.isInteger(record.key_tag) && record.key_tag >= 0 && record.key_tag <= 65535, - `${file}: Invalid key_tag for DS at index ${idx}` - ); - t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for DS at index ${idx}`); - } - }); - } - - // TXT: Single string or array of strings - if (key === "TXT") { - if (Array.isArray(value)) { - value.forEach((record, idx) => { - t.true( - typeof record === "string", - `${file}: TXT record value should be a string at index ${idx}` - ); - }); - } else { - t.true(typeof value === "string", `${file}: TXT record value should be a string`); - } - } - }); + const data = getDomainData(file); + const recordKeys = Object.keys(data.records); + + t.true( + usableRecordTypes.some((record) => recordKeys.includes(record)), + `${file}: Root subdomains must have at least one A, AAAA, CNAME, MX, NS, or URL record` + ); }); }); diff --git a/util/administrators.json b/util/administrators.json deleted file mode 100644 index f85832ced..000000000 --- a/util/administrators.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "wdhdev", - "DEV-DIBSTER" -] \ No newline at end of file diff --git a/util/internal.json b/util/internal.json new file mode 100644 index 000000000..5e71fc3d1 --- /dev/null +++ b/util/internal.json @@ -0,0 +1,8 @@ +[ + "autoconfig", + "autodiscover", + "data", + "docs", + "raw", + "www" +] diff --git a/util/raw-api.js b/util/raw-api.js new file mode 100644 index 000000000..96bcfc368 --- /dev/null +++ b/util/raw-api.js @@ -0,0 +1,119 @@ +const fs = require("fs"); +const path = require("path"); + +const directoryPath = path.join(__dirname, "../domains"); +const outputDir = path.join(__dirname, "../raw-api"); + +if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); +} + +const internal = require(path.join(__dirname, "internal.json")); +const reserved = require(path.join(__dirname, "reserved.json")); + +const v1 = []; +const v2 = []; + +for (const subdomain of internal) { + const commonData = { + domain: `${subdomain}.is-a.dev`, + subdomain: subdomain, + owner: { + username: "is-a-dev" + } + }; + + const records = { + CNAME: "internal.is-a.dev" + }; + + v1.push({ + ...commonData, + record: records + }); + + v2.push({ + ...commonData, + records: records, + internal: true + }); +} + +for (const subdomain of reserved) { + const commonData = { + domain: `${subdomain}.is-a.dev`, + subdomain: subdomain, + owner: { + username: "is-a-dev" + } + }; + + const records = { + URL: "https://is-a.dev/reserved" + }; + + v1.push({ + ...commonData, + record: records + }); + + v2.push({ + ...commonData, + records: records, + reserved: true + }); +} + +fs.readdir(directoryPath, function (err, files) { + if (err) throw err; + + let processedCount = 0; + + files.forEach(function (file) { + const filePath = path.join(directoryPath, file); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) throw err; + + const item = JSON.parse(data); + const name = path.parse(file).name; + + item.domain = name + ".is-a.dev"; + item.subdomain = name; + + delete item.owner.email; + + const itemV1 = { + domain: item.domain, + subdomain: item.subdomain, + owner: item.owner, + record: item.records + }; + + const itemV2 = { + domain: item.domain, + subdomain: item.subdomain, + owner: item.owner, + records: item.records + }; + + v1.push(itemV1); + v2.push(itemV2); + + processedCount++; + if (processedCount === files.length) { + fs.writeFile("raw-api/index.json", JSON.stringify(v1), (err) => { + if (err) throw err; + }); + + fs.writeFile("raw-api/v1.json", JSON.stringify(v1), (err) => { + if (err) throw err; + }); + + fs.writeFile("raw-api/v2.json", JSON.stringify(v2), (err) => { + if (err) throw err; + }); + } + }); + }); +}); diff --git a/util/reserved-domains.json b/util/reserved-domains.json deleted file mode 100644 index 42a683c8c..000000000 --- a/util/reserved-domains.json +++ /dev/null @@ -1,119 +0,0 @@ -[ - "account", - "accounts", - "admin", - "administrator", - "alert", - "alerts", - "api", - "auth", - "authentication", - "authorisation", - "authorise", - "authorization", - "authorize", - "aux", - "billing", - "blog", - "calendar", - "cart", - "catalog", - "checkout", - "co", - "com", - "com[1-9]", - "con", - "confirm", - "confirmation", - "dashboard", - "default", - "dns", - "doc", - "documentation", - "email", - "error", - "errors", - "event", - "events", - "example", - "feedback", - "finance", - "forgot", - "forgot-password", - "gtld", - "guest", - "help", - "helpdesk", - "hostmaster", - "info", - "infos", - "login", - "logout", - "lpt[1-9]", - "m", - "mail", - "maintainer", - "maintainers", - "marketing", - "mobile", - "net", - "news", - "nic", - "noc", - "notification", - "notifications", - "notify", - "ns", - "ns[1-99]", - "nul", - "oauth", - "official", - "operations", - "ops", - "org", - "organisation", - "pay", - "payment", - "payments", - "portal", - "postmaster", - "recovery", - "redirect", - "registrar", - "registry", - "reset", - "reset-password", - "root", - "sales", - "schedule", - "security", - "service", - "services", - "session", - "sessions", - "shop", - "signin", - "signout", - "signup", - "staff", - "store", - "superuser", - "support", - "sys", - "system", - "teams", - "test", - "test[1-9999]", - "tld", - "token", - "tokens", - "url", - "url[1-9999]", - "user", - "users", - "webmaster", - "whois", - "www[1-99]", - "wwww", - "your-domain-name" -] diff --git a/util/reserved.json b/util/reserved.json new file mode 100644 index 000000000..2e855d680 --- /dev/null +++ b/util/reserved.json @@ -0,0 +1,115 @@ +[ + "about", + "account", + "accounts", + "admin", + "api", + "app", + "apps", + "assets", + "auth", + "billing", + "blog", + "bot", + "cdn", + "chat", + "checkout", + "cname", + "co", + "com", + "dash", + "dashboard", + "dev", + "discord", + "dns", + "doc", + "documentation", + "domain", + "email", + "example", + "file", + "files", + "get", + "git", + "github", + "gitlab", + "help", + "home", + "host", + "hosting", + "http", + "https", + "info", + "int", + "internal", + "login", + "m", + "mail", + "maintainer", + "maintainers", + "media", + "mobile", + "net", + "network", + "news", + "nic", + "noc", + "notification", + "notifications", + "ns", + "ns0", + "ns1", + "ns2", + "ns3", + "ns4", + "ns5", + "ns6", + "ns7", + "ns8", + "ns9", + "oauth", + "org", + "pay", + "payment", + "payments", + "portal", + "preview", + "private", + "prod", + "production", + "r", + "rdap", + "redirect", + "register", + "registrar", + "registry", + "reserved", + "root", + "secure", + "security", + "service", + "services", + "shop", + "sso", + "staff", + "staging", + "static", + "stats", + "status", + "store", + "subdomain", + "support", + "sys", + "system", + "team", + "test", + "url", + "web", + "webmail", + "website", + "whois", + "ww", + "wwww", + "your-domain-name", + "zone" +] diff --git a/util/trusted.json b/util/trusted.json new file mode 100644 index 000000000..c1eab71cc --- /dev/null +++ b/util/trusted.json @@ -0,0 +1,11 @@ +[ + { "username": "21Z", "id": 69188068 }, + { "username": "DEV-DIBSTER", "id": 76603072 }, + { "username": "iostpa", "id": 69630113 }, + { "username": "is-a-dev-bot", "id": 106927495 }, + { "username": "orangci", "id": 90866414 }, + { "username": "Stef-00012", "id": 81536172 }, + { "username": "SX-9", "id": 90962949 }, + { "username": "WDH-2", "id": 115670568 }, + { "username": "wdhdev", "id": 87287585 } +]