diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index e1877d426..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -custom: ["https://www.paypal.me/phenax"] -liberapay: phenax -buy_me_a_coffee: phenax diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 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..91d81f6e7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,47 @@ +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 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..227e6100e 100644 --- a/.github/workflows/raw-api.yml +++ b/.github/workflows/raw-api.yml @@ -6,6 +6,7 @@ on: paths: - "domains/*" - ".github/workflows/raw-api.yml" + - "util/reserved.json" workflow_dispatch: diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 9eefecd7b..815d5ace0 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,21 +1,22 @@ -name: StaleBOT +name: Stale on: - workflow_dispatch: - name: 'Force cleanup' - schedule: - - cron: "30 14 * * *" + schedule: + - cron: "0 12 * * *" + + workflow_dispatch: jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - days-before-stale: 7 - days-before-close: 3 - stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it' - stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it' - exempt-issue-labels: 'no-stale' - exempt-pr-labels: 'no-stale' + label: + name: Label + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 7 + days-before-close: 3 + stale-issue-message: "This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it" + stale-pr-message: "This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it" + exempt-issue-labels: "no-stale" + exempt-pr-labels: "no-stale" diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml deleted file mode 100644 index 6d9efe54d..000000000 --- a/.github/workflows/validation.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Validation - -on: - pull_request: - - push: - branches: [main] - paths: - - "domains/*" - - "tests/*" - - "utils/*" - - ".github/workflows/validate.yml" - - "dnsconfig.js" - - workflow_dispatch: - -concurrency: - group: ${{ github.ref }}-validation - cancel-in-progress: true - -jobs: - dns: - name: DNS - if: "!contains(github.event.head_commit.message, '[skip-ci]')" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Check - uses: is-a-dev/dnscontrol-action@main - with: - args: check - - tests: - name: Tests - if: "!contains(github.event.head_commit.message, '[skip-ci]')" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - run: npm install - - - run: npm test diff --git a/.gitignore b/.gitignore index c6bba5913..8e8fae3d9 100644 --- a/.gitignore +++ b/.gitignore @@ -128,3 +128,6 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* + +# Custom +.DS_Store diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 8baab2bf1..eed9af879 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -4,8 +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. +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 a04ba740f..0c3a0828f 100644 --- a/README.md +++ b/README.md @@ -7,57 +7,53 @@ 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. -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 -### NS records -When applying for NS records, please consider if you *actually* need them. Please provide a detailed reason (with evidence) of why you require NS records. - -9 times out of 10, you do not actually need NS records, and merely want them. We already support a wide range of records, so it is extremely unlikely you will actually require them. - -***Pull requests adding NS records without valid reasoning will be closed.*** - -**Instant Denials**: -- I don't want to create a pull request everytime I want to update my DNS records. - - Over 3,000 people have to, you can too. -- I want to use Cloudflare's proxy for DDoS protection. - - Simply add `"proxied": true` to your file, to enable Cloudflare's Enterprise-level DDoS protection for your subdomain. - - Note: We *may* allow certain users to register NS records if it would expose their home IP. - -For any questions regarding NS records, feel free to email support@is-a.dev. - -## Manual Registration > If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge). -- [Fork](https://github.com/is-a-dev/register/fork) and star this repository -- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev` -- [Read the documentation](https://is-a.dev/docs) -- Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!* -- After the pull request is merged, please allow up to 24 hours for the changes to propagate -- Enjoy your new `.is-a.dev` domain! +- [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 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! -## Automated Registration -***Returning soon.*** Join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for updates. +### NS Records +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 you may not need them. -# Issues -If you have any problems, feel free to [open an issue](https://github.com/is-a-dev/register/issues/new/choose). +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. -If you have an issue that contains confidental infomation, send an email to security@is-a.dev. +***Pull requests adding NS records without sufficient reasoning will be closed.*** + +> Also see: [Why are you so strict with NS records](https://docs.is-a.dev/faq/#why-are-you-so-strict-with-ns-records)? + +> [!NOTE] +> You can bypass these requirements[^2] 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. + +[^2]: Requests deemed to be made with malicious intent may be denied, with a refund provided. + +## 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. --- -We are proud to announce that we are fully supported by Cloudflare's [Project Alexandria](https://www.cloudflare.com/lp/project-alexandria) sponsorship program. We would not be able to operate without their help! 💖 +We are proud to announce that we are supported by Cloudflare's [Project Alexandria](https://www.cloudflare.com/lp/project-alexandria) sponsorship program. We would not be able to operate without their help! 💖 Cloudflare Logo diff --git a/SECURITY.md b/SECURITY.md index 4c96d8394..5879949ab 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,6 +1,4 @@ # Security Policy ## Reporting a vulnerability -You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repository. - -However, for **higher severity vulnerabilities and bugs**, please email security@is-a.dev. +Please report all vulnerabilities to security@is-a.dev. 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 e0be5c1a9..ae7905e0f 100644 --- a/dnsconfig.js +++ b/dnsconfig.js @@ -29,18 +29,14 @@ for (var subdomain in domains) { // Handle A records if (domainData.record.A) { for (var a in domainData.record.A) { - records.push( - A(subdomainName, IP(domainData.record.A[a]), proxyState) - ); + records.push(A(subdomainName, IP(domainData.record.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) - ); + records.push(AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState)); } } @@ -48,29 +44,14 @@ for (var subdomain in domains) { 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 - ) - ); + 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) - ); - } + // Use ALIAS instead of CNAME to support CNAME flattening on the root domain + records.push(ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState)); } // Handle DS records @@ -78,13 +59,7 @@ for (var subdomain in domains) { for (var ds in domainData.record.DS) { var dsRecord = domainData.record.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) ); } } @@ -92,13 +67,21 @@ for (var subdomain in domains) { // 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] + "." - ) - ); + var mxRecord = domainData.record.MX[mx]; + + if (typeof mxRecord === "string") { + records.push( + MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + ".") + ); + } else { + records.push( + MX( + subdomainName, + parseInt(mxRecord.priority), + mxRecord.target + "." + ) + ); + } } } @@ -114,12 +97,23 @@ for (var subdomain in domains) { for (var srv in domainData.record.SRV) { var srvRecord = domainData.record.SRV[srv]; records.push( - SRV( + SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".") + ); + } + } + + // Handle TLSA records + if (domainData.record.TLSA) { + for (var tlsa in domainData.record.TLSA) { + var tlsaRecord = domainData.record.TLSA[tlsa]; + + records.push( + TLSA( subdomainName, - srvRecord.priority, - srvRecord.weight, - srvRecord.port, - srvRecord.target + "." + tlsaRecord.usage, + tlsaRecord.selector, + tlsaRecord.matchingType, + tlsaRecord.certificate ) ); } @@ -139,12 +133,21 @@ for (var subdomain in domains) { // Handle URL records if (domainData.record.URL) { records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON)); - records.push(TXT("_redirect." + subdomainName, "\"" + domainData.record.URL + "\"")); } +} - // Handle reserved domains - if (domainData.reserved) { - records.push(TXT(subdomainName, "\"" + "RESERVED" + "\"")); +var reserved = require("./util/reserved.json"); + +// Handle reserved domains +for (var i = 0; i < reserved.length; i++) { + var subdomainName = reserved[i]; + if ( + subdomainName !== "ns1" && + subdomainName !== "ns2" && + subdomainName !== "ns3" && + subdomainName !== "ns4" + ) { + records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON)); } } @@ -159,7 +162,8 @@ var ignored = [ IGNORE("_dmarc", "TXT"), IGNORE("autoconfig", "CNAME"), IGNORE("autodiscover", "CNAME"), - IGNORE("dkim._domainkey", "TXT") + IGNORE("dkim._domainkey", "TXT"), + IGNORE("ns[1-4]", "A,AAAA"), ]; // Push TXT record of when the zone was last updated diff --git a/domains/00001.json b/domains/00001.json index 9aef9da6d..4fb2c2b47 100644 --- a/domains/00001.json +++ b/domains/00001.json @@ -6,6 +6,6 @@ "email": "satyamverma46@outlook.com" }, "record": { - "CNAME": "SatyamV7.github.io" + "CNAME": "satyamv7.github.io" } } diff --git a/domains/0spol.json b/domains/0spol.json new file mode 100644 index 000000000..bba32eb60 --- /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" + }, + "record": { + "CNAME": "0spol.github.io" + } +} diff --git a/domains/0xarchit.json b/domains/0xarchit.json new file mode 100644 index 000000000..965e8b8ad --- /dev/null +++ b/domains/0xarchit.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "0xarchit", + "email": "0xarchit@proton.me" + }, + "record": { + "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..97cf85c15 --- /dev/null +++ b/domains/0xbit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xbitx", + "email": "0xbit25125@gmail.com" + }, + "record": { + "CNAME": "0xbitx.github.io" + } +} diff --git a/domains/0xmaruf.json b/domains/0xmaruf.json new file mode 100644 index 000000000..862690b01 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + }, + "url": "https://marufcseuu.netlify.app/" +} diff --git a/domains/1024.json b/domains/1024.json new file mode 100644 index 000000000..d102db14c --- /dev/null +++ b/domains/1024.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leopku", + "discord": "1168846640464019570" + }, + "record": { + "URL": "https://www.himysql.com" + } +} diff --git a/domains/111.json b/domains/111.json new file mode 100644 index 000000000..a1c7d22df --- /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" + }, + "record": { + "CNAME": "jaycuh.github.io" + } +} diff --git a/domains/1995parham.json b/domains/1995parham.json new file mode 100644 index 000000000..a5dbabef4 --- /dev/null +++ b/domains/1995parham.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website", + "owner": { + "username": "1995parham", + "email": "parham.alvani@gmail.com" + }, + "record": { + "CNAME": "1995parham.github.io" + } +} diff --git a/domains/1ndrajeet.json b/domains/1ndrajeet.json new file mode 100644 index 000000000..e03a271ba --- /dev/null +++ b/domains/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" + }, + "record": { + "CNAME": "1ndrajeet.vercel.app" + } + } + \ No newline at end of file diff --git a/domains/1rogman.json b/domains/1rogman.json index 03ec19107..573650b56 100644 --- a/domains/1rogman.json +++ b/domains/1rogman.json @@ -6,6 +6,6 @@ "email": "watsonsohil@gmail.com" }, "record": { - "CNAME": "EndingPencil.github.io" + "CNAME": "endingpencil.github.io" } } diff --git a/domains/1tfr.json b/domains/1tfr.json new file mode 100644 index 000000000..d53bad6cd --- /dev/null +++ b/domains/1tfr.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/_github-pages-challenge-ligmatv.ligmatv.json b/domains/2.json similarity index 53% rename from domains/_github-pages-challenge-ligmatv.ligmatv.json rename to domains/2.json index 7e27b7ac0..35f77f4ad 100644 --- a/domains/_github-pages-challenge-ligmatv.ligmatv.json +++ b/domains/2.json @@ -1,9 +1,10 @@ { + "description": "LIGMATV's URL Manager (aka 2)", "owner": { "username": "LIGMATV", "email": "ligmatv.id@gmail.com" }, "record": { - "TXT": "de8560c4ea3c0f753266b402385c50" + "CNAME": "ligmatv-links.vercel.app" } } diff --git a/domains/20zzy19.json b/domains/20zzy19.json new file mode 100644 index 000000000..87fa27e4d --- /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" + }, + "record": { + "A": ["98.43.59.193"] + } +} diff --git a/domains/256javy.json b/domains/256javy.json new file mode 100644 index 000000000..08d4f614c --- /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" + }, + "record": { + "CNAME": "256javy.github.io" + } +} diff --git a/domains/2giosangmitom.json b/domains/2giosangmitom.json index 37e11d6c0..48468e286 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" + "CNAME": "blog-o7t.pages.dev" } } diff --git a/domains/3gee.json b/domains/3gee.json new file mode 100644 index 000000000..45805fb67 --- /dev/null +++ b/domains/3gee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "record": { + "CNAME": "3geetr.github.io" + } +} diff --git a/domains/3pls0de.json b/domains/3pls0de.json index 0e1e6ae5e..ac8a733b0 100644 --- a/domains/3pls0de.json +++ b/domains/3pls0de.json @@ -1,6 +1,5 @@ { "description": "3pls0de.is-a.dev.", - "repo": "https://github.com/3pls0de", "owner": { "username": "3pls0de", "email": "naji.aka58@gmail.com" diff --git a/domains/44.json b/domains/44.json index c150bfffe..348a95092 100644 --- a/domains/44.json +++ b/domains/44.json @@ -6,6 +6,6 @@ "email": "0@fbi.ac" }, "record": { - "CNAME": "9xN.github.io" + "CNAME": "9xn.github.io" } } diff --git a/domains/4hmet.json b/domains/4hmet.json new file mode 100644 index 000000000..d2172911f --- /dev/null +++ b/domains/4hmet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahmetunsal", + "email": "web.unsalahmet@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/57.json b/domains/57.json index 6d3e7a757..6b4cd2492 100644 --- a/domains/57.json +++ b/domains/57.json @@ -4,6 +4,17 @@ "email": "potatogamer34579@gmail.com" }, "record": { - "A": ["185.199.108.153"] + "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/69.json b/domains/69.json deleted file mode 100644 index 59f92b91d..000000000 --- a/domains/69.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "owner": { - "username": "maskduck", - "discord": "716134528409665586" - }, - "record": { "CNAME": "maskduck.pages.dev" } -} diff --git a/domains/7z.json b/domains/7z.json new file mode 100644 index 000000000..16387d294 --- /dev/null +++ b/domains/7z.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/_acme-challenge.analytics.juststudio.json b/domains/_acme-challenge.analytics.juststudio.json new file mode 100644 index 000000000..6e9fc4a9c --- /dev/null +++ b/domains/_acme-challenge.analytics.juststudio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "CNAME": "78515120d374647d2302076e._acme.deno.dev" + } +} diff --git a/domains/_atproto.alvin.json b/domains/_atproto.alvin.json new file mode 100644 index 000000000..f1c615d37 --- /dev/null +++ b/domains/_atproto.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "TXT": "did=did:plc:jkk7sl4llede4zzj2ctgkwsc" + } +} diff --git a/domains/_atproto.clyron.json b/domains/_atproto.clyron.json new file mode 100644 index 000000000..a3aa6897e --- /dev/null +++ b/domains/_atproto.clyron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "theclyron", + "email": "onenonlyclyron@gmail.com" + }, + "record": { + "TXT": "did=did:plc:fqvzbqsjzjkl4o66rfp6cgk3" + } +} diff --git a/domains/_atproto.exyxz.json b/domains/_atproto.exyxz.json new file mode 100644 index 000000000..74596a070 --- /dev/null +++ b/domains/_atproto.exyxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "record": { + "TXT": "did=did:plc:73r55srxmmlhhiof7fnllisy" + } +} \ No newline at end of file diff --git a/domains/_atproto.hcj.json b/domains/_atproto.hcj.json new file mode 100644 index 000000000..cfac4330a --- /dev/null +++ b/domains/_atproto.hcj.json @@ -0,0 +1,10 @@ +{ + "description": "domain verification for bluesky", + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + } +} diff --git a/domains/_atproto.horibyte.json b/domains/_atproto.horibyte.json new file mode 100644 index 000000000..98cc66879 --- /dev/null +++ b/domains/_atproto.horibyte.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "horibyte", + "email": "thehoribyte@gmail.com" + }, + "record": { + "TXT": "did=did:plc:5ls3iv54vrppjxbs5ztocd75" + } +} diff --git a/domains/_atproto.jumanji.json b/domains/_atproto.jumanji.json new file mode 100644 index 000000000..d63b4e6bd --- /dev/null +++ b/domains/_atproto.jumanji.json @@ -0,0 +1,10 @@ +{ + "description": "domain verification for bluesky", + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge50@silomails.com" + }, + "record": { + "TXT": "did=did:plc:nrjpabfv3zoxd6kiwr6fs4lq" + } +} diff --git a/domains/_atproto.lua.json b/domains/_atproto.lua.json new file mode 100644 index 000000000..3a8344b22 --- /dev/null +++ b/domains/_atproto.lua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "notxlua", + "email": "notxlua@gmail.com" + }, + "record": { + "TXT": "did=did:plc:j7iap5lpvblnrr7lygisgjzp" + } +} diff --git a/domains/_atproto.lumi.json b/domains/_atproto.lumi.json new file mode 100644 index 000000000..1a19c7d60 --- /dev/null +++ b/domains/_atproto.lumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itssfatlum", + "email": "fatlum@lumi.is-a.dev" + }, + "record": { + "TXT": "did=did:plc:c6m5rghb7tkmf5isd3pqjpbt" + } +} diff --git a/domains/_atproto.narasima.json b/domains/_atproto.narasima.json new file mode 100644 index 000000000..4b2ed47b1 --- /dev/null +++ b/domains/_atproto.narasima.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com", + "discord": "gamingdoodle" + }, + "record": { + "TXT": "did=did:plc:u5uxl7mjlywolajtgso2ouoe" + } +} diff --git a/domains/_atproto.notcoded.json b/domains/_atproto.notcoded.json new file mode 100644 index 000000000..293c22341 --- /dev/null +++ b/domains/_atproto.notcoded.json @@ -0,0 +1,11 @@ +{ + "description": "domain verification for bluesky", + "owner": { + "username": "not-coded", + "discord": "notcoded", + "discordUserID": "620662953347121163" + }, + "record": { + "TXT": "did=did:plc:hvgfiqmdl5sqcba2453dfpxe" + } +} diff --git a/domains/_atproto.priyanshu.json b/domains/_atproto.priyanshu.json new file mode 100644 index 000000000..d56ee1548 --- /dev/null +++ b/domains/_atproto.priyanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Priyansxu", + "email": "priyansxu@yahoo.com" + }, + "record": { + "TXT": "did=did:plc:psimj7hgshwoets2jvd6caib" + } +} diff --git a/domains/_atproto.raccoon.json b/domains/_atproto.raccoon.json new file mode 100644 index 000000000..2fdc4f971 --- /dev/null +++ b/domains/_atproto.raccoon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nilsraccoon", + "discord": "1129507464589627512" + }, + "record": { + "TXT": "did=did:plc:25w7vwbzb2e3h7cnflqskp37" + } +} diff --git a/domains/_discord.abeja.json b/domains/_discord.abeja.json new file mode 100644 index 000000000..7bf6c29ae --- /dev/null +++ b/domains/_discord.abeja.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheRealCrazyfuy", + "discord": "realabeja", + "reddit": "crazyfuy" + }, + "record": { + "TXT": "dh=af03f42bbbaaca145280cdd080f105feb02a9145" + } +} diff --git a/domains/_discord.agent.json b/domains/_discord.agent.json new file mode 100644 index 000000000..78a6dde33 --- /dev/null +++ b/domains/_discord.agent.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "relentiousdragon", + "email": "relentoor@gmail.com" + }, + "record": { + "TXT": "dh=a261e0bde9e7d78a88462fda3c35222a35a348de" + } +} diff --git a/domains/_discord.ajtabs.json b/domains/_discord.ajtabs.json new file mode 100644 index 000000000..99516e1b3 --- /dev/null +++ b/domains/_discord.ajtabs.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ajtabjs" + }, + "record": { + "TXT": ["dh=44c33bd9561dd8d8079e707868adf359b0c5ff05"] + } +} diff --git a/domains/_discord.alpha.json b/domains/_discord.alpha.json index f1551d2e7..69405d1ee 100644 --- a/domains/_discord.alpha.json +++ b/domains/_discord.alpha.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e" diff --git a/domains/_discord.amitkr.json b/domains/_discord.amitkr.json new file mode 100644 index 000000000..3c48a408a --- /dev/null +++ b/domains/_discord.amitkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "buddhhu", + "email": "amitsharma123234@gmail.com" + }, + "record": { + "TXT": "dh=5b4d2c16d6e0595278e1eb813028b9de2e442e4c" + } +} \ No newline at end of file diff --git a/domains/_discord.ante.json b/domains/_discord.ante.json new file mode 100644 index 000000000..586b03a99 --- /dev/null +++ b/domains/_discord.ante.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "record": { + "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] + } +} diff --git a/domains/_discord.arlan.json b/domains/_discord.arlan.json new file mode 100644 index 000000000..6ce9e19e6 --- /dev/null +++ b/domains/_discord.arlan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "record": { + "TXT": "dh=bc2dcf8fbcb6ee4e4d77621a0f2369571bc03416" + } +} diff --git a/domains/_discord.arsenobetaine.json b/domains/_discord.arsenobetaine.json new file mode 100644 index 000000000..d7c22bf47 --- /dev/null +++ b/domains/_discord.arsenobetaine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "record": { + "TXT": "dh=a7836fe0f1ee1642624faaa1e95fedba6f53f907" + } +} diff --git a/domains/_discord.aruria.json b/domains/_discord.aruria.json new file mode 100644 index 000000000..cda1d0491 --- /dev/null +++ b/domains/_discord.aruria.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "cjolivier123" + }, + "record": { + "TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"] + } +} diff --git a/domains/_discord.ashishagarwal.json b/domains/_discord.ashishagarwal.json index f6ecafb7b..9e3cc64b0 100644 --- a/domains/_discord.ashishagarwal.json +++ b/domains/_discord.ashishagarwal.json @@ -1,6 +1,6 @@ { "owner": { - "username": "ashishagarwal2023", + "username": "devashish2024", "email": "code.with.aasheesh@gmail.com" }, "record": { diff --git a/domains/_discord.bio.json b/domains/_discord.bio.json new file mode 100644 index 000000000..b13b582ed --- /dev/null +++ b/domains/_discord.bio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "record": { + "TXT": "dh=501251d3fa61ce8fb7a761606b9aa5e707eacd96" + } +} diff --git a/domains/_discord.bladimir.json b/domains/_discord.bladimir.json new file mode 100644 index 000000000..ef601dc8a --- /dev/null +++ b/domains/_discord.bladimir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Esbruiz", + "email": "esbruizc@gmail.com" + }, + "record": { + "TXT": "dh=5421aaf1ad1aa267e9aa3d19c55d3762a0c5d8f8" + } +} diff --git a/domains/_discord.bryce.json b/domains/_discord.bryce.json new file mode 100644 index 000000000..16056b449 --- /dev/null +++ b/domains/_discord.bryce.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GitHubFanTest", + "email": "feelingbloxyburger24@gmail.com" + }, + "record": { + "TXT": "dh=7b870ea5ded2a7388f1def1fda8cfbf816f3dfe0" + } +} diff --git a/domains/_discord.cally.json b/domains/_discord.cally.json new file mode 100644 index 000000000..efb6a94ad --- /dev/null +++ b/domains/_discord.cally.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cally-jt", + "email": "callumjt@proton.me" + }, + "record": { + "TXT": "dh=ad9865a1b510eca9917556bd35b8e60d089d3888" + } +} diff --git a/domains/_discord.codesoft.json b/domains/_discord.codesoft.json new file mode 100644 index 000000000..4053bf018 --- /dev/null +++ b/domains/_discord.codesoft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "record": { + "TXT": "dh=1d1f0586f56693138d2014b13312d7467fa4e497" + } +} diff --git a/domains/_discord.codesuthar.json b/domains/_discord.codesuthar.json deleted file mode 100644 index 1d18066b6..000000000 --- a/domains/_discord.codesuthar.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "CodeSuthar", - "email": "AdityaSuthar13@outlook.com" - }, - "record": { - "TXT": "dh=c9d95514358feae443357e8366bfa224cb7709e1" - } -} diff --git a/domains/_discord.colin.json b/domains/_discord.colin.json new file mode 100644 index 000000000..44e17ad6b --- /dev/null +++ b/domains/_discord.colin.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ColinLeDev" + }, + "record": { + "TXT": ["dh=f51bcf0f0dac685ca2a69541d3981cd689a1e96a"] + } +} diff --git a/domains/_discord.computerblade.json b/domains/_discord.computerblade.json new file mode 100644 index 000000000..a2bd4bc33 --- /dev/null +++ b/domains/_discord.computerblade.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "computerblade-official" + }, + "record": { + "TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"] + } +} diff --git a/domains/_discord.cutedog5695.json b/domains/_discord.cutedog5695.json index 1d0239aa3..92dfb8f79 100644 --- a/domains/_discord.cutedog5695.json +++ b/domains/_discord.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "TXT": "dh=f85ce7cf4e6ff1f6136767a12c041fbbcb446045" diff --git a/domains/_discord.dem0n.json b/domains/_discord.dem0n.json index 53bb45999..a87d43dbe 100644 --- a/domains/_discord.dem0n.json +++ b/domains/_discord.dem0n.json @@ -1,7 +1,7 @@ { "owner": { "username": "probablydem0n", - "discord": 935272776586129419 + "discord": 935272776586129400 }, "record": { "TXT": ["dh=5ce927a38096a3a9d48e24ba44d85b0655aa4fc6"] diff --git a/domains/_discord.ducky.json b/domains/_discord.ducky.json new file mode 100644 index 000000000..dd1dc9dbd --- /dev/null +++ b/domains/_discord.ducky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ducky4life", + "email": "duckylai@proton.me" + }, + "record": { + "TXT": "dh=925876829c7314b41fe3c2a412b7a4250214febf" + } +} diff --git a/domains/_discord.ela.json b/domains/_discord.ela.json new file mode 100644 index 000000000..61463a1fc --- /dev/null +++ b/domains/_discord.ela.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DXRdev", + "discordID": "335635478684499970", + "discord": "elastrixx" + }, + "record": { + "TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"] + } +} diff --git a/domains/_discord.exyxz.json b/domains/_discord.exyxz.json new file mode 100644 index 000000000..45579e273 --- /dev/null +++ b/domains/_discord.exyxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "record": { + "TXT": "dh=529be62f885915368b4b5c20beaef95a1c55ea98" + } +} \ No newline at end of file diff --git a/domains/_discord.fryvex.json b/domains/_discord.fryvex.json new file mode 100644 index 000000000..e332679da --- /dev/null +++ b/domains/_discord.fryvex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x1yl", + "discord": "627947214576025610" + }, + "record": { + "TXT": "dh=8ce5db15dc011d17526c81dfeccab48d20447344" + } +} diff --git a/domains/_discord.gabek.json b/domains/_discord.gabek.json deleted file mode 100644 index f72b8b148..000000000 --- a/domains/_discord.gabek.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "gabekgfx", - "email": "bussines.gabrys@gmail.com" - }, - "record": { - "TXT": "dh=02ed193dbc1e396517abe81c2c5d9a007a4a6e25" - } -} diff --git a/domains/_discord.harunabdullah.json b/domains/_discord.harunabdullah.json new file mode 100644 index 000000000..e1922283a --- /dev/null +++ b/domains/_discord.harunabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harunabdullahrakin", + "email": "harunabdullahrakin@gmail.com" + }, + "record": { + "TXT": "dh=08ca7b2a348ba12437193e6d84e9b819dc75da31" + } +} diff --git a/domains/_discord.hchs-bot.json b/domains/_discord.hchs-bot.json index b01a1f70f..146b14f90 100644 --- a/domains/_discord.hchs-bot.json +++ b/domains/_discord.hchs-bot.json @@ -2,7 +2,7 @@ "owner": { "username": "jimmy20180130", "email": "jimmy20180130@gmail.com", - "twitter": "@jimmyyo45639462", + "twitter": "jimmyyo45639462", "discord": "xiaoxi_tw#0" }, "record": { diff --git a/domains/_discord.hcj.json b/domains/_discord.hcj.json new file mode 100644 index 000000000..298d1c187 --- /dev/null +++ b/domains/_discord.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": "dh=4d34d136feda8f0fade8d9cbf34cfb3ff0adee15" + } +} diff --git a/domains/_discord.heath.json b/domains/_discord.heath.json new file mode 100644 index 000000000..7b20b22e1 --- /dev/null +++ b/domains/_discord.heath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minodab492", + "email": "heath.garvin@minodabproductions.dev" + }, + "record": { + "TXT": ["dh=5a45b7cd26a9cd21f027e4bbf1c010cac0b78204"] + } +} diff --git a/domains/_discord.heyaxo.json b/domains/_discord.heyaxo.json new file mode 100644 index 000000000..2f93a079e --- /dev/null +++ b/domains/_discord.heyaxo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "verygafanhot", + "email": "verygafanhot@gmail.com" + }, + "record": { + "TXT": "dh=772e8981e6a0b8bc4e30ac4af5160be7fd175c8a" + } +} 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..b917f3bb1 --- /dev/null +++ b/domains/_discord.imnahn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imnotnahn", + "email": "thanhnhan.contact.work@gmail.com" + }, + "record": { + "TXT": "dh=04c429a9247eee97c4db2597f0bdf22e28a949a1" + } +} diff --git a/domains/_discord.infernum.json b/domains/_discord.infernum.json new file mode 100644 index 000000000..7a8dafa86 --- /dev/null +++ b/domains/_discord.infernum.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Infernum1" + }, + "record": { + "TXT": ["dh=b25f81ebab2ff999a86bbda2f49f609e03054b39"] + } +} diff --git a/domains/_discord.jeff.json b/domains/_discord.jeff.json new file mode 100644 index 000000000..9b3b55a93 --- /dev/null +++ b/domains/_discord.jeff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PentSec", + "email": "jeffreysfu@gmail.com" + }, + "record": { + "TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824" + } +} diff --git a/domains/_discord.jes.json b/domains/_discord.jes.json new file mode 100644 index 000000000..9ee8137b9 --- /dev/null +++ b/domains/_discord.jes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jesgran", + "email": "calzdani20@libero.it" + }, + "record": { + "TXT": "dh=4b2e5de25234f6ff12194b5a3c98ff0b5edea64e" + } +} diff --git a/domains/register.json b/domains/_discord.json similarity index 62% rename from domains/register.json rename to domains/_discord.json index aab28d71a..7b48822dc 100644 --- a/domains/register.json +++ b/domains/_discord.json @@ -4,6 +4,6 @@ "email": "admin@is-a.dev" }, "record": { - "URL": "https://github.com/is-a-dev/register" + "TXT": ["dh=d5273eca7d19d9a734f62376816c287bc2613ef7"] } } diff --git a/domains/_discord.jumanji.json b/domains/_discord.jumanji.json new file mode 100644 index 000000000..345aa2749 --- /dev/null +++ b/domains/_discord.jumanji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge650@silomails.com" + }, + "record": { + "TXT": "dh=aa51fc97861c871fc4daece76efa42c15712f116" + } +} diff --git a/domains/_discord.justdeveloper.json b/domains/_discord.justdeveloper.json index dd6ef3666..9dfa8c4ff 100644 --- a/domains/_discord.justdeveloper.json +++ b/domains/_discord.justdeveloper.json @@ -1,7 +1,7 @@ { "owner": { "username": "JustDeveloper1", - "email": "lk.qq@ya.ru" + "email": "justdeveloper@juststudio.is-a.dev" }, "record": { "TXT": "dh=a468556178a0bac462fa84043545b67b982e7fe0" diff --git a/domains/_discord.justwinstuff.json b/domains/_discord.justwinstuff.json new file mode 100644 index 000000000..9f8e177dd --- /dev/null +++ b/domains/_discord.justwinstuff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "enderfoxbg", + "discord": "970380468090437672" + }, + "record": { + "TXT": ["dh=75e9bdc423ca4351bb8938087b552bc2ee9a3e16"] + } +} diff --git a/domains/_discord.keybinds.json b/domains/_discord.keybinds.json new file mode 100644 index 000000000..cb1df48b8 --- /dev/null +++ b/domains/_discord.keybinds.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "tr1xem" + }, + "record": { + "TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"] + } +} diff --git a/domains/_discord.kona.json b/domains/_discord.kona.json new file mode 100644 index 000000000..dc6eb3c5f --- /dev/null +++ b/domains/_discord.kona.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "konaa0", + "discord": "1149438819834269856", + "bluesky": "vornexx.has.fish" + }, + "record": { + "TXT": "dh=8e7a42d430aa6c34dc619b79f7d6fc1f3ca69845" + } +} diff --git a/domains/_discord.krunch.json b/domains/_discord.krunch.json index 1a376298a..200efe570 100644 --- a/domains/_discord.krunch.json +++ b/domains/_discord.krunch.json @@ -1,7 +1,7 @@ { "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, "record": { "TXT": "dh=df2bf9fb87a1dc3ee29c6ddfa51ed86da28581c5" diff --git a/domains/_discord.liam.json b/domains/_discord.liam.json new file mode 100644 index 000000000..61b416831 --- /dev/null +++ b/domains/_discord.liam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "liamatienza", + "email": "liamdev@duck.com" + }, + "record": { + "TXT": "dh=c53cce4432aa366f65bd320ab681d468c8cea968" + } +} diff --git a/domains/_discord.linksrayan.json b/domains/_discord.linksrayan.json deleted file mode 100644 index f9c181f2f..000000000 --- a/domains/_discord.linksrayan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "syedrayangames", - "email": "syedrayangames@gmail.com" - }, - "record": { - "TXT": "dh=9978fb189e392bec25b857297f914f34ef65ffb7" - } -} diff --git a/domains/_discord.lumi.json b/domains/_discord.lumi.json index 94a9a1b26..774b92f31 100644 --- a/domains/_discord.lumi.json +++ b/domains/_discord.lumi.json @@ -1,6 +1,6 @@ { "owner": { - "username": "itsFatlum", + "username": "itssfatlum", "discord": "563697359423406082" }, "record": { diff --git a/domains/_discord.lver.json b/domains/_discord.lver.json new file mode 100644 index 000000000..6441d8735 --- /dev/null +++ b/domains/_discord.lver.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "record": { + "TXT": "dh=2e24b5f5d9aa41852614d8b5760748d097b138b9" + } +} diff --git a/domains/_discord.matt3o0.json b/domains/_discord.matt3o0.json new file mode 100644 index 000000000..1e5d7731e --- /dev/null +++ b/domains/_discord.matt3o0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duvbolone", + "email": "duvbolone@gmail.com" + }, + "record": { + "TXT": ["dh=00c8db5a2edc793156939308c6f9e4a11bbf27e7"] + } +} diff --git a/domains/_discord.mehulpathak.json b/domains/_discord.mehulpathak.json new file mode 100644 index 000000000..e4691142d --- /dev/null +++ b/domains/_discord.mehulpathak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "m3hu1", + "email": "pathakkmehul@gmail.com" + }, + "record": { + "TXT": "dh=bb5a0d412e8f7f0b02dbf56d27610f20b99ac8a9" + } +} diff --git a/domains/_discord.moddatei.json b/domains/_discord.moddatei.json new file mode 100644 index 000000000..0f2871c2c --- /dev/null +++ b/domains/_discord.moddatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "moddatei", + "email": "moddatei@proton.me" + }, + "record": { + "TXT": "dh=61bcf3ed41433d6b179422a6b0bd4fc2b95acf4e" + } +} diff --git a/domains/_discord.narasima.json b/domains/_discord.narasima.json new file mode 100644 index 000000000..aac166607 --- /dev/null +++ b/domains/_discord.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "record": { + "TXT": "dh=d54feeb331611626de2134ef368bdcf7691cbbb3" + } +} diff --git a/domains/_discord.nek0zyx.json b/domains/_discord.nek0zyx.json new file mode 100644 index 000000000..b409d2807 --- /dev/null +++ b/domains/_discord.nek0zyx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nek0zyx", + "email": "nek0zyx@costmiku.space" + }, + "record": { + "TXT": "dh=540cae67bbdffb46fb380c384823dda2270a28f0" + } +} diff --git a/domains/_discord.nekomyaa.json b/domains/_discord.nekomyaa.json new file mode 100644 index 000000000..b96aebc77 --- /dev/null +++ b/domains/_discord.nekomyaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lolinekord", + "email": "contact@lolineko3.net" + }, + "record": { + "TXT": "dh=a761b99a6a7d449df2e423a119eab9a4ec773e7e" + } +} diff --git a/domains/_discord.nick.json b/domains/_discord.nick.json new file mode 100644 index 000000000..8b6b71024 --- /dev/null +++ b/domains/_discord.nick.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PrinceBunBun981", + "email": "me@nick.cool", + "discord": "nickwoah" + }, + "record": { + "TXT": "dh=b9e9ee170ceabd5d201a50225be187e055b9bbb6" + } +} diff --git a/domains/_discord.nickibreeki.json b/domains/_discord.nickibreeki.json new file mode 100644 index 000000000..d3b54f4f7 --- /dev/null +++ b/domains/_discord.nickibreeki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "n1ckibreeki", + "email": "nickibreeki@outlook.com" + }, + "record": { + "TXT": "dh=14acda3ef13ac5d15f7cf8e8cfd3a8556fc227eb" + } +} diff --git a/domains/_discord.niclqs.json b/domains/_discord.niclqs.json new file mode 100644 index 000000000..72748fc05 --- /dev/null +++ b/domains/_discord.niclqs.json @@ -0,0 +1,11 @@ +{ + "description": "niclqs.is-a.dev discord verify ownership", + "owner": { + "discord": "niclqs", + "email": "discord@push-den-weg.de", + "username": "NiclqsGER" + }, + "record": { + "TXT": "dh=0b19779c5bdb5bdc6a6e3a5d7f44996deedab1dc" + } +} diff --git a/domains/_discord.nikymetaa.json b/domains/_discord.nikymetaa.json deleted file mode 100644 index 05d81f346..000000000 --- a/domains/_discord.nikymetaa.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "nikytap1n", - "email": "anhky726@gmail.com", - "discord": "1007521768761729094" - }, - "record": { - "TXT": "dh=0d03c1e4a0e12d0e7190cea1571ec61cb3ba0101" - } -} diff --git a/domains/_discord.nikyofficial.json b/domains/_discord.nikyofficial.json new file mode 100644 index 000000000..0777d6d1a --- /dev/null +++ b/domains/_discord.nikyofficial.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nikyy2", + "email": "anhky581@gmail.com", + "discord": "1007521768761729094" + }, + "record": { + "TXT": "dh=eb8bcab3a2e8a1f278e7cb88404974b46f58a31c" + } +} diff --git a/domains/_discord.noob.json b/domains/_discord.noob.json new file mode 100644 index 000000000..7ced2a9c6 --- /dev/null +++ b/domains/_discord.noob.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "IMXNOOBX", + "email": "me@noob.bio" + }, + "record": { + "TXT": "dh=4bda89987e4e232aac78bb9d0a0e973c96166119" + } +} diff --git a/domains/_discord.notcoded.json b/domains/_discord.notcoded.json new file mode 100644 index 000000000..4b0d5f267 --- /dev/null +++ b/domains/_discord.notcoded.json @@ -0,0 +1,11 @@ +{ + "description": "domain verification for discord", + "owner": { + "username": "not-coded", + "discord": "notcoded", + "discordUserID": "620662953347121163" + }, + "record": { + "TXT": "dh=0a6a5afd3a6ee9b2709a43a77e6679a2e9969384" + } +} diff --git a/domains/_discord.notzer0two.json b/domains/_discord.notzer0two.json new file mode 100644 index 000000000..690fc331e --- /dev/null +++ b/domains/_discord.notzer0two.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "record": { + "TXT": "dh=89504c863f0365fd5e214e695141b54b8d44c6c7" + } +} diff --git a/domains/_discord.nuggew.json b/domains/_discord.nuggew.json new file mode 100644 index 000000000..39d8df00c --- /dev/null +++ b/domains/_discord.nuggew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nuggew", + "email": "contato.guilherme.silva.araujo@gmail.com" + }, + "record": { + "TXT": "dh=a5d33ae1ddbac9692e675b562538f6b316f1aa1f" + } +} diff --git a/domains/_discord.okinea.json b/domains/_discord.okinea.json index cdd471c33..78010e42d 100644 --- a/domains/_discord.okinea.json +++ b/domains/_discord.okinea.json @@ -2,8 +2,7 @@ "owner": { "username": "okineadev", "discord": "okineadev", - "telegram": "okinea", - "email": "81070564+okineadev@users.noreply.github.com" + "telegram": "okinea" }, "record": { "TXT": "dh=72f6dea86d79bda34d2c61e1edb3037954caac82" diff --git a/domains/_discord.oliverg.json b/domains/_discord.oliverg.json new file mode 100644 index 000000000..3fec1055d --- /dev/null +++ b/domains/_discord.oliverg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oliver720", + "email": "olivergarro2017@gmail.com" + }, + "record": { + "TXT": "dh=9a0dc7af9a4d5bafe658ebee92cff00b08d46270" + } +} diff --git a/domains/_discord.osho.json b/domains/_discord.osho.json new file mode 100644 index 000000000..0c43a577b --- /dev/null +++ b/domains/_discord.osho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "record": { + "TXT": ["dh=35ca5646ff4cbe25158bef568c0e26c7224f5a61"] + } +} diff --git a/domains/_discord.piker.json b/domains/_discord.piker.json new file mode 100644 index 000000000..a2b688600 --- /dev/null +++ b/domains/_discord.piker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "piker98988", + "email": "iker.pavcur@gmail.com" + }, + "record": { + "TXT": "dh=fbea31b6c973108788a610db21edd08f23d92801" + } +} diff --git a/domains/_discord.ploszukiwacz.json b/domains/_discord.ploszukiwacz.json deleted file mode 100644 index 737224e5f..000000000 --- a/domains/_discord.ploszukiwacz.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "PlOszukiwaczDEV", - "email": "ploszukiwacz1@gmail.com" - }, - "record": { - "TXT": "dh=eaa22a150696d8482b787e7ec7b05b3512224995" - } -} diff --git a/domains/_discord.potatochips0706.json b/domains/_discord.potatochips0706.json deleted file mode 100644 index acca12506..000000000 --- a/domains/_discord.potatochips0706.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "potato0706", - "email": "potatochips0706@gmail.com" - }, - "record": { - "TXT": "dh=0eeef9c4f4ec2b1309eec477bd8170e116d3b1d9" - } -} diff --git a/domains/_discord.priyanshu.json b/domains/_discord.priyanshu.json index de00307ca..9acf6b2e0 100644 --- a/domains/_discord.priyanshu.json +++ b/domains/_discord.priyanshu.json @@ -1,7 +1,7 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com", + "email": "priyansxu@yahoo.com", "discord": "priyansxu" }, "record": { diff --git a/domains/_discord.qing762.json b/domains/_discord.qing762.json new file mode 100644 index 000000000..29b423eda --- /dev/null +++ b/domains/_discord.qing762.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qing762", + "email": "q1ng762@outlook.com" + }, + "record": { + "TXT": "dh=c798ccabffa36b2206669860c46efe903852e675" + } +} diff --git a/domains/_discord.quantum.json b/domains/_discord.quantum.json new file mode 100644 index 000000000..8778cc0dd --- /dev/null +++ b/domains/_discord.quantum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lakshinhemachandran", + "email": "lh140313@outlook.com" + }, + "record": { + "TXT": "dh=5a5f9d502ca98ef9d724b197609538f5b5379c83" + } +} diff --git a/domains/_discord.rejectmodders.json b/domains/_discord.rejectmodders.json new file mode 100644 index 000000000..2b4f8c2c8 --- /dev/null +++ b/domains/_discord.rejectmodders.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RejectModders", + "email": "rejectmodders@disutils.com" + }, + "record": { + "TXT": "dh=b77acadd3e4e89069f1b25422dd5eded7bd1354c" + } +} diff --git a/domains/_discord.roki.json b/domains/_discord.roki.json new file mode 100644 index 000000000..f829530db --- /dev/null +++ b/domains/_discord.roki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Roki100", + "discord": "289479495444987904" + }, + "record": { + "TXT": "dh=7c71f3dd265b7bae0e9a7383a779bddc4e8adf62" + } +} diff --git a/domains/_discord.rouf0x.json b/domains/_discord.rouf0x.json new file mode 100644 index 000000000..b9cd3eb35 --- /dev/null +++ b/domains/_discord.rouf0x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rouf0x", + "discord": "roufox" + }, + "record": { + "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271" + } +} diff --git a/domains/_discord.schuh.json b/domains/_discord.schuh.json new file mode 100644 index 000000000..b7db211c7 --- /dev/null +++ b/domains/_discord.schuh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vqpe", + "email": "theschuhofyou@gmail.com" + }, + "record": { + "TXT": "dh=7e4702912048b4ff69b652081db69782cd50ccf3" + } +} diff --git a/domains/_discord.seiko.json b/domains/_discord.seiko.json new file mode 100644 index 000000000..c2802561b --- /dev/null +++ b/domains/_discord.seiko.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Delta-0mega" + }, + "record": { + "TXT": ["dh=af891775cf595304f98791bd551966a1c2411fe4"] + } +} diff --git a/domains/_discord.sep.json b/domains/_discord.sep.json new file mode 100644 index 000000000..801b76c44 --- /dev/null +++ b/domains/_discord.sep.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sepultrex", + "email": "sepultrex@gmail.com" + }, + "record": { + "TXT": "dh=2f929b7a4935af1795801360d92ba2788e27a2ff" + } +} diff --git a/domains/_discord.shimizu.json b/domains/_discord.shimizu.json new file mode 100644 index 000000000..027445582 --- /dev/null +++ b/domains/_discord.shimizu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "record": { + "TXT": "dh=a24d14132caded8f17f5e4fdd4222378e8df2b89" + } +} 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..380c6ad56 --- /dev/null +++ b/domains/_discord.sun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sxn4y", + "discord": "5unn7n" + }, + "record": { + "TXT": "dh=cfe36ed36af73c3bdcfbfa23744d5826b64d1cfc" + } +} 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.trix.json b/domains/_discord.trix.json new file mode 100644 index 000000000..071af2ccf --- /dev/null +++ b/domains/_discord.trix.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "tr1xem" + }, + "record": { + "TXT": ["dh=ecefe601258bdf0c1e1e20adb05d84c7b7229995"] + } +} 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.voxxdevv.json b/domains/_discord.voxxdevv.json new file mode 100644 index 000000000..89619e1df --- /dev/null +++ b/domains/_discord.voxxdevv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voxxdevv", + "email": "aminrh@icloud.com" + }, + "record": { + "TXT": "dh=86ca7e3af41dae9a1eea4036e19ff63c8417dca0" + } +} diff --git a/domains/_discord.webcubed.json b/domains/_discord.webcubed.json new file mode 100644 index 000000000..0bb35c5cb --- /dev/null +++ b/domains/_discord.webcubed.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "webcubed" + }, + "record": { + "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.wizardsword.json b/domains/_discord.wizardsword.json new file mode 100644 index 000000000..e2b1afbb4 --- /dev/null +++ b/domains/_discord.wizardsword.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MukuJhansi", + "email": "mukundagrawal800@gmail.com" + }, + "record": { + "TXT": "dh=4df0e55d42947236385030525829593c2e5cbd62" + } +} diff --git a/domains/_discord.xiaoxi-tw.json b/domains/_discord.xiaoxi-tw.json index 8b7cee5b7..7a0b2eff0 100644 --- a/domains/_discord.xiaoxi-tw.json +++ b/domains/_discord.xiaoxi-tw.json @@ -2,7 +2,7 @@ "owner": { "username": "jimmy20180130", "email": "jimmy20180130@gmail.com", - "twitter": "@jimmyyo45639462", + "twitter": "jimmyyo45639462", "discord": "xiaoxi_tw#0" }, "record": { diff --git a/domains/_discord.yfa.json b/domains/_discord.yfa.json index 839e9b21b..cfb297860 100644 --- a/domains/_discord.yfa.json +++ b/domains/_discord.yfa.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7" diff --git a/domains/_discord.yurei.json b/domains/_discord.yurei.json new file mode 100644 index 000000000..d9f85bd4e --- /dev/null +++ b/domains/_discord.yurei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yurehito", + "discord": "https://discord.com/users/998608551431897170" + }, + "record": { + "TXT": "dh=5d5daac60e8c6f56c8c57a3cdf244a294049c273" + } +} diff --git a/domains/_discord.ziyn.json b/domains/_discord.ziyn.json deleted file mode 100644 index 419153720..000000000 --- a/domains/_discord.ziyn.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ZiynCS", - "email": "NotZiyn@gmail.com" - }, - "record": { - "TXT": "dh=b7efba321635b7528ef7d9a605d747b343fa135d" - } -} diff --git a/domains/_dmarc.104.json b/domains/_dmarc.104.json new file mode 100644 index 000000000..f1c3b4518 --- /dev/null +++ b/domains/_dmarc.104.json @@ -0,0 +1,10 @@ +{ + "description": "DMARC", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "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 b0902bb16..545f32d1c 100644 --- a/domains/_dmarc.dhilipan.json +++ b/domains/_dmarc.dhilipan.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "MysticalPvE", - "discord": "1229782675678826496", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" - }, - "record": { - "TXT": [ - "v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s" - ] - } + "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" + }, + "record": { + "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..c1f65bbe6 --- /dev/null +++ b/domains/_dmarc.peme969.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "peme969", + "email": "mrcoderpeme@gmail.com" + }, + "record": { + "TXT": [ + "forward-email=NjNhNjJlMjMzOGJhMWUxNy1hOTk2MzljYmY0ZDczZWViZDY2NTljZmUwMDc4OTM5MmQ3YmVjN2RmYWEyMjFlN2VhODAxZWUwOWI5ODhhNDY2" + ] + } +} diff --git a/domains/_dmarc.quincetart10.json b/domains/_dmarc.quincetart10.json new file mode 100644 index 000000000..f1c3b4518 --- /dev/null +++ b/domains/_dmarc.quincetart10.json @@ -0,0 +1,10 @@ +{ + "description": "DMARC", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "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..f1c3b4518 --- /dev/null +++ b/domains/_dmarc.rt10.json @@ -0,0 +1,10 @@ +{ + "description": "DMARC", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "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..e0d29af48 --- /dev/null +++ b/domains/_dmarc.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "record": { + "TXT": "v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s" + } +} diff --git a/domains/_dmarc.yxz.json b/domains/_dmarc.yxz.json new file mode 100644 index 000000000..7a26816d1 --- /dev/null +++ b/domains/_dmarc.yxz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yz9551", + "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" + ] + } +} diff --git a/domains/_dnslink.daoch4n.json b/domains/_dnslink.daoch4n.json new file mode 100644 index 000000000..9e429a414 --- /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" + }, + "record": { + "TXT": "/ipfs/bafybeictsmpmyy5cbtc52hr3awxgsl6gojyfgr3b23uudte4i7gmeof6om" + } +} \ No newline at end of file diff --git a/domains/_gh-50xsuisse-o.50x.json b/domains/_gh-50xsuisse-o.50x.json new file mode 100644 index 000000000..9b9f2c8c3 --- /dev/null +++ b/domains/_gh-50xsuisse-o.50x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MullerIsabella", + "email": "AlpineDreamer92@protonmail.com" + }, + "record": { + "TXT": "8e7d9774b8" + } +} diff --git a/domains/_gh-deadcodegames-o.deadcode.json b/domains/_gh-deadcodegames-o.deadcode.json index 15d36be09..d1de88822 100644 --- a/domains/_gh-deadcodegames-o.deadcode.json +++ b/domains/_gh-deadcodegames-o.deadcode.json @@ -2,10 +2,10 @@ "owner": { "username": "RichardKanshen", "email": "richard@kanshen.click", - "twitter": "@kanskje0", + "twitter": "kanskje0", "discord": "kanshen.uwu", "bluesky": "kanshen.click", - "telegram": "@richardkanskje" + "telegram": "richardkanskje" }, "record": { "TXT": "392e701839" diff --git a/domains/_gh-juststudio7-o.js.json b/domains/_gh-juststudio7-o.js.json new file mode 100644 index 000000000..4ed5dadd5 --- /dev/null +++ b/domains/_gh-juststudio7-o.js.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "TXT": ["53741b79f9"] + } +} diff --git a/domains/_gh-juststudio7-o.juststudio.json b/domains/_gh-juststudio7-o.juststudio.json new file mode 100644 index 000000000..923030093 --- /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" + }, + "record": { + "TXT": ["d878bca923"] + } +} diff --git a/domains/_gh-lumidevelopment-o.lumi.json b/domains/_gh-lumidevelopment-o.lumi.json new file mode 100644 index 000000000..9053f020f --- /dev/null +++ b/domains/_gh-lumidevelopment-o.lumi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "itssfatlum" + }, + "record": { + "TXT": ["eade7c5be7"] + } +} diff --git a/domains/_gh-swissquotes-o.50x.json b/domains/_gh-swissquotes-o.50x.json new file mode 100644 index 000000000..c07dbfe14 --- /dev/null +++ b/domains/_gh-swissquotes-o.50x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MullerIsabella", + "email": "AlpineDreamer92@protonmail.com" + }, + "record": { + "TXT": "111c9dc10c" + } +} 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..cce40adeb 100644 --- a/domains/_github-challenge-thenoppy12-org.thenoppy12.json +++ b/domains/_github-challenge-thenoppy12-org.thenoppy12.json @@ -1,6 +1,5 @@ { "description": "Github Orgs Verify", - "repo": "https://github.com/thenoppy12", "owner": { "username": "BussyBakks", "email": "lengochuykiengiang@gmail.com", diff --git a/domains/_github-challenge-yfadev-org.alpha.json b/domains/_github-challenge-yfadev-org.alpha.json index 465d8082e..d975761bc 100644 --- a/domains/_github-challenge-yfadev-org.alpha.json +++ b/domains/_github-challenge-yfadev-org.alpha.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "TXT": "9568f60569" diff --git a/domains/_github-challenge-yfadev-org.yfa.json b/domains/_github-challenge-yfadev-org.yfa.json index 46c98fb3d..555a47348 100644 --- a/domains/_github-challenge-yfadev-org.yfa.json +++ b/domains/_github-challenge-yfadev-org.yfa.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "TXT": "a4b5c60953" diff --git a/domains/_github-challenge-yfadev-org.yfadev.json b/domains/_github-challenge-yfadev-org.yfadev.json index 7d3b4ac7c..78cb27e9b 100644 --- a/domains/_github-challenge-yfadev-org.yfadev.json +++ b/domains/_github-challenge-yfadev-org.yfadev.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "TXT": "ed3c92c01a" diff --git a/domains/_github-pages-challenge-0pearlcz0.pearlcz.json b/domains/_github-pages-challenge-0pearlcz0.pearlcz.json index 5f35c0fe3..c53d7b221 100644 --- a/domains/_github-pages-challenge-0pearlcz0.pearlcz.json +++ b/domains/_github-pages-challenge-0pearlcz0.pearlcz.json @@ -4,7 +4,6 @@ "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" }, - "record": { "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..d0c273e54 --- /dev/null +++ b/domains/_github-pages-challenge-256javy.256javy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "256javy", + "email": "256javiervillalba@gmail.com" + }, + "record": { + "TXT": "5274c84dbbf074d67b53fc4305ced5" + } +} 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-adil-uddin.adil.json b/domains/_github-pages-challenge-adil-uddin.adil.json new file mode 100644 index 000000000..ece12b69a --- /dev/null +++ b/domains/_github-pages-challenge-adil-uddin.adil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adil-uddin", + "email": "adilaryan786@gmail.com" + }, + "record": { + "TXT": "82f634e6b8d39d1a42bf48f2a2ccd3" + } +} diff --git a/domains/_github-pages-challenge-ajtabjs.ajtabs.json b/domains/_github-pages-challenge-ajtabjs.ajtabs.json new file mode 100644 index 000000000..7362c1495 --- /dev/null +++ b/domains/_github-pages-challenge-ajtabjs.ajtabs.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ajtabjs" + }, + "record": { + "TXT": ["39626a2cbd8f72ba60b0e40dc06e45"] + } +} 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-alenseeman.alen.json b/domains/_github-pages-challenge-alenseeman.alen.json new file mode 100644 index 000000000..2af91df99 --- /dev/null +++ b/domains/_github-pages-challenge-alenseeman.alen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alenseeman", + "email": "alenseeman@hotmail.com" + }, + "record": { + "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..1aab4b74e --- /dev/null +++ b/domains/_github-pages-challenge-alpha-og.athulanoop.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alpha-og", + "email": "athulanoop2020@gmail.com" + }, + "record": { + "TXT": "f39f5fde5d918c2ca297b843c5776b" + } +} diff --git a/domains/_github-pages-challenge-am333n.ameen.json b/domains/_github-pages-challenge-am333n.ameen.json new file mode 100644 index 000000000..28f16b90c --- /dev/null +++ b/domains/_github-pages-challenge-am333n.ameen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "am333n", + "email": "muhammedameen752@gmail.com" + }, + "record": { + "TXT": "ae46785afb026d6f57c4eb85f644eb" + } +} diff --git a/domains/_github-pages-challenge-amosmurmu.amosmurmu.json b/domains/_github-pages-challenge-amosmurmu.amosmurmu.json new file mode 100644 index 000000000..b25f93b52 --- /dev/null +++ b/domains/_github-pages-challenge-amosmurmu.amosmurmu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amosmurmu", + "email": "amosmurmu002@gmail.com" + }, + "record": { + "TXT": "6cd31a4dfd2ef9242a7478f015b26b" + } +} 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..3adf90e4d --- /dev/null +++ b/domains/_github-pages-challenge-animeshkotka.animesh-kotka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AnimeshKotka", + "email": "animeshkotka520@gmail.com" + }, + "record": { + "TXT": "516e1afaa96818228e8a61bf901188" + } +} diff --git a/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json new file mode 100644 index 000000000..62bf5d789 --- /dev/null +++ b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arsenobetaine", + "email": "arsenobetaine@gmail.com" + }, + "record": { + "TXT": "02ff8b21eeaed5e8333376fc244485" + } +} diff --git a/domains/_github-pages-challenge-aruntechpro.aruntechpro.json b/domains/_github-pages-challenge-aruntechpro.aruntechpro.json new file mode 100644 index 000000000..5d041ee56 --- /dev/null +++ b/domains/_github-pages-challenge-aruntechpro.aruntechpro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aruntechpro", + "email": "arunkumarakr03@gmail.com" + }, + "record": { + "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..ec3dea7c9 --- /dev/null +++ b/domains/_github-pages-challenge-asbp.asbp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asbp", + "email": "guungofficial@gmail.com" + }, + "record": { + "TXT": "31b576be5fd342aa2473ebb2fb2816" + } +} diff --git a/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json b/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json new file mode 100644 index 000000000..c2f6a56e1 --- /dev/null +++ b/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AshishKingdom", + "email": "ashishkingdom@proton.me" + }, + "record": { + "TXT": "4281866da89d9e1bd20fcdb44adca3" + } +} diff --git a/domains/_github-pages-challenge-aw09.agung.json b/domains/_github-pages-challenge-aw09.agung.json new file mode 100644 index 000000000..34a9c9884 --- /dev/null +++ b/domains/_github-pages-challenge-aw09.agung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aw09", + "email": "agungwck.99@gmail.com" + }, + "record": { + "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..c4bc04852 --- /dev/null +++ b/domains/_github-pages-challenge-axioris.axioris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "axioris", + "email": "dane.foster.collins@gmail.com" + }, + "record": { + "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..7d2dd41e0 --- /dev/null +++ b/domains/_github-pages-challenge-ayberktandogan.ayberk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ayberktandogan", + "email": "ayberk.tandogan@outlook.com" + }, + "record": { + "TXT": "6fe6a3695f856260a2fa97ce9dfe94" + } +} diff --git a/domains/_github-pages-challenge-baturalp52.baturalp.json b/domains/_github-pages-challenge-baturalp52.baturalp.json new file mode 100644 index 000000000..4bdbd3237 --- /dev/null +++ b/domains/_github-pages-challenge-baturalp52.baturalp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Baturalp52", + "email": "baturalpsonmez2002@gmail.com" + }, + "record": { + "TXT": "8e1fd82942a7ceae35f62019e370aa" + } +} 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-breakertws.breakertws.json b/domains/_github-pages-challenge-breakertws.breakertws.json new file mode 100644 index 000000000..1f660b9b6 --- /dev/null +++ b/domains/_github-pages-challenge-breakertws.breakertws.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BreakerTWS", + "email": "breakingtws@gmail.com" + }, + "record": { + "TXT": "dcde9a29c9e10cbea2e47c46805b57" + } +} diff --git a/domains/_github-pages-challenge-xxtgamerxx.brin.json b/domains/_github-pages-challenge-brinterwastaken.brin.json similarity index 82% rename from domains/_github-pages-challenge-xxtgamerxx.brin.json rename to domains/_github-pages-challenge-brinterwastaken.brin.json index 359257854..cacdcdb1d 100644 --- a/domains/_github-pages-challenge-xxtgamerxx.brin.json +++ b/domains/_github-pages-challenge-brinterwastaken.brin.json @@ -1,7 +1,7 @@ { "description": "Github verification", "owner": { - "username": "xXTgamerXx", + "username": "brinterwastaken", "email": "trin.n2848@gmail.com" }, "record": { diff --git a/domains/_github-pages-challenge-btleffler.btleffler.json b/domains/_github-pages-challenge-btleffler.btleffler.json new file mode 100644 index 000000000..9496e0060 --- /dev/null +++ b/domains/_github-pages-challenge-btleffler.btleffler.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "btleffler", + "email": "btleffler@gmail.com" + }, + "record": { + "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..20351b873 --- /dev/null +++ b/domains/_github-pages-challenge-cantcode023.bd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CantCode023", + "email": "cantcode023@gmail.com" + }, + "record": { + "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-cc4dev.cc4dev.json b/domains/_github-pages-challenge-cc4dev.cc4dev.json new file mode 100644 index 000000000..5358fa1b3 --- /dev/null +++ b/domains/_github-pages-challenge-cc4dev.cc4dev.json @@ -0,0 +1,11 @@ +{ + "owner": + { + "username": "cc4dev", + "email": "cc4dev@proton.me" + }, + "record": + { + "TXT": "dc5371ee1973414c03ef5e837646e6" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-chadeeeee.chadee.json b/domains/_github-pages-challenge-chadeeeee.chadee.json index ff922c3e2..5f66a6ca0 100644 --- a/domains/_github-pages-challenge-chadeeeee.chadee.json +++ b/domains/_github-pages-challenge-chadeeeee.chadee.json @@ -3,7 +3,7 @@ "repo": "https://github.com/chadeeeee/chadee-site", "owner": { "username": "chadeeeee", - "telegram": "@chadeeeeeeeeee", + "telegram": "chadeeeeeeeeee", "email": "esurginet2011@gmail.com" }, "record": { diff --git a/domains/_github-pages-challenge-chauvansang.sang.json b/domains/_github-pages-challenge-chauvansang.sang.json new file mode 100644 index 000000000..4ddffeb83 --- /dev/null +++ b/domains/_github-pages-challenge-chauvansang.sang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chauvansang", + "email": "cvansang94@gmail.com" + }, + "record": { + "TXT": "8a2d191d582a62b817e10aa08b67f5" + } +} diff --git a/domains/_github-pages-challenge-d-pow.devon.json b/domains/_github-pages-challenge-d-pow.devon.json index 875c3aa2e..2a9ecd3fb 100644 --- a/domains/_github-pages-challenge-d-pow.devon.json +++ b/domains/_github-pages-challenge-d-pow.devon.json @@ -1,8 +1,7 @@ { "description": "GitHub Pages verification for devon.is-a.dev", "owner": { - "username": "D-Pow", - "email": "D-Pow@users.noreply.github.com" + "username": "D-Pow" }, "record": { "TXT": "cec54b510828f770750c1b17cad7f2" diff --git a/domains/_github-pages-challenge-danilezheng4.danilezheng4.json b/domains/_github-pages-challenge-danilezheng4.danilezheng4.json new file mode 100644 index 000000000..8b6e568e7 --- /dev/null +++ b/domains/_github-pages-challenge-danilezheng4.danilezheng4.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "danilezheng4", + "email": "danilezheng4@outlook.com" + }, + "record": { + "TXT": "ecafb05290cd0377aecb8b624f8e7a" + } +} diff --git a/domains/_github-pages-challenge-daspete.pete.json b/domains/_github-pages-challenge-daspete.pete.json new file mode 100644 index 000000000..64ef791c7 --- /dev/null +++ b/domains/_github-pages-challenge-daspete.pete.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "daspete", + "email": "daspetemail@gmail.com" + }, + "record": { + "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..fcbb78a08 --- /dev/null +++ b/domains/_github-pages-challenge-debkanchan.debkanchan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "debkanchan", + "email": "debu.samadder@gmail.com" + }, + "record": { + "TXT": "36f31b49ddb71ca70a8cb3dd21e61d" + } +} diff --git a/domains/_github-pages-challenge-devhammed.hammed.json b/domains/_github-pages-challenge-devhammed.hammed.json new file mode 100644 index 000000000..1b613a46d --- /dev/null +++ b/domains/_github-pages-challenge-devhammed.hammed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devhammed", + "email": "hey@hammed.dev" + }, + "record": { + "TXT": "7672b068b3140a9fbaaf9bfe0ab136" + } +} diff --git a/domains/_github-pages-challenge-drssoccer55.doug.json b/domains/_github-pages-challenge-drssoccer55.doug.json new file mode 100644 index 000000000..c5cca34b9 --- /dev/null +++ b/domains/_github-pages-challenge-drssoccer55.doug.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "drssoccer55", + "email": "sextondouglas@pm.me" + }, + "record": { + "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..4a017f679 --- /dev/null +++ b/domains/_github-pages-challenge-duc-ios.duc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duc-ios", + "email": "hi@duk.one" + }, + "record": { + "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..7c76603f9 --- /dev/null +++ b/domains/_github-pages-challenge-ducky4life.ducky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ducky4life", + "email": "duckylai@proton.me" + }, + "record": { + "TXT": "7b577ecd19bde96461d7b480a5f0a4" + } +} diff --git a/domains/_github-pages-challenge-ethereumvd.ethereumvd.json b/domains/_github-pages-challenge-ethereumvd.ethereumvd.json new file mode 100644 index 000000000..bab8f5bc7 --- /dev/null +++ b/domains/_github-pages-challenge-ethereumvd.ethereumvd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ethereumvd", + "email": "ethereum249@gmail.com" + }, + "record": { + "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..4b0c1d6c2 --- /dev/null +++ b/domains/_github-pages-challenge-exyxz.exyxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "record": { + "TXT": "38873ba2da582e531282026e6fb4bf" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-eyus00.eyus00.json b/domains/_github-pages-challenge-eyus00.eyus00.json new file mode 100644 index 000000000..34e63d9bc --- /dev/null +++ b/domains/_github-pages-challenge-eyus00.eyus00.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eyus00", + "email": "eyus00@duck.com" + }, + "record": { + "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-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 new file mode 100644 index 000000000..b368cb383 --- /dev/null +++ b/domains/_github-pages-challenge-formunagit.formuna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FormunaGit", + "discord": "formuna" + }, + "record": { + "TXT": ["f1190641c5391341d1097c3a2a8160"] + } +} diff --git a/domains/_github-pages-challenge-gabekgfx.gabek.json b/domains/_github-pages-challenge-gabekgfx.gabek.json deleted file mode 100644 index 775a7b416..000000000 --- a/domains/_github-pages-challenge-gabekgfx.gabek.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "gabekgfx", - "email": "bussines.gabrys@gmail.com" - }, - "record": { - "TXT": "e9b873f6071bb8f4c1384efe52d14d" - } -} 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..32d77b30c --- /dev/null +++ b/domains/_github-pages-challenge-ganesh76.ganesh-g.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ganesh76", + "email": "ganesh.g.cse@gmail.com" + }, + "record": { + "TXT": "94df711e9b048a87929864206a479a" + } +} diff --git a/domains/_github-pages-challenge-gegendepressed.sairaj.json b/domains/_github-pages-challenge-gegendepressed.sairaj.json new file mode 100644 index 000000000..960df4e0e --- /dev/null +++ b/domains/_github-pages-challenge-gegendepressed.sairaj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gegendepressed", + "email": "sairaj09pai@gmail.com" + }, + "record": { + "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..3cd79d42b --- /dev/null +++ b/domains/_github-pages-challenge-gewaleelek.gewalee.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "gewaleelek" + }, + "record": { + "TXT": "06e9ec8a834fc5e6c09ded6c524be4" + } +} diff --git a/domains/_github-pages-challenge-githubfantest.bryce.json b/domains/_github-pages-challenge-githubfantest.bryce.json new file mode 100644 index 000000000..49c437702 --- /dev/null +++ b/domains/_github-pages-challenge-githubfantest.bryce.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GitHubFanTest", + "email": "feelingbloxyburger24@gmail.com" + }, + "record": { + "TXT": "68769d2d26832aca71242d59740d72" + } +} diff --git a/domains/_github-pages-challenge-uuphoria2.uuphoria2.json b/domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json similarity index 62% rename from domains/_github-pages-challenge-uuphoria2.uuphoria2.json rename to domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json index f65e6dc95..bfedfd088 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" + "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..6a2c2ebc0 --- /dev/null +++ b/domains/_github-pages-challenge-gokay05.gokay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gokay05", + "email": "gyamankurt@gmail.com" + }, + "record": { + "TXT": "7c83467aa6d55ff736d77d66a6f94e" + } +} diff --git a/domains/_github-pages-challenge-herwingx.ghsearch.json b/domains/_github-pages-challenge-herwingx.ghsearch.json new file mode 100644 index 000000000..6c38dd1e4 --- /dev/null +++ b/domains/_github-pages-challenge-herwingx.ghsearch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "herwingx", + "email": "herwingmacias@gmail.com" + }, + "record": { + "TXT": "2a006f5ffbfb592d6001e215d479da" + } +} diff --git a/domains/_github-pages-challenge-hungthai1401.hungthai.json b/domains/_github-pages-challenge-hungthai1401.hungthai.json new file mode 100644 index 000000000..04d99debd --- /dev/null +++ b/domains/_github-pages-challenge-hungthai1401.hungthai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hungthai1401", + "email": "hungthai1401.it@gmail.com" + }, + "record": { + "TXT": "693e3be4f1121fc00f2fbad65439d0" + } +} diff --git a/domains/_github-pages-challenge-i-jer.jer.json b/domains/_github-pages-challenge-i-jer.jer.json index ba868f179..cc0be384e 100644 --- a/domains/_github-pages-challenge-i-jer.jer.json +++ b/domains/_github-pages-challenge-i-jer.jer.json @@ -1,6 +1,6 @@ { "owner": { - "username": "JerBlox", + "username": "i-Jer", "email": "chen.fuyuan07@gmail.com" }, "record": { diff --git a/domains/_github-pages-challenge-imnotnahn.imnahn.json b/domains/_github-pages-challenge-imnotnahn.imnahn.json new file mode 100644 index 000000000..c4fdd1958 --- /dev/null +++ b/domains/_github-pages-challenge-imnotnahn.imnahn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imnotnahn", + "email": "thanhnhan.contact.work@gmail.com" + }, + "record": { + "TXT": "0078b8f8494de41ef1c90903f745c5" + } +} diff --git a/domains/_github-pages-challenge-imrmnabil.nabil.json b/domains/_github-pages-challenge-imrmnabil.nabil.json new file mode 100644 index 000000000..bb1866bdf --- /dev/null +++ b/domains/_github-pages-challenge-imrmnabil.nabil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imrmnabil", + "email": "imrmnabil@gmail.com" + }, + "record": { + "TXT": "ce38bed94bccbf581a0efa569f006a" + } +} diff --git a/domains/_github-pages-challenge-cutedog5695.cutedog5695.json b/domains/_github-pages-challenge-iostpa.cutedog5695.json similarity index 66% rename from domains/_github-pages-challenge-cutedog5695.cutedog5695.json rename to domains/_github-pages-challenge-iostpa.cutedog5695.json index 251128d4e..bc809f8d4 100644 --- a/domains/_github-pages-challenge-cutedog5695.cutedog5695.json +++ b/domains/_github-pages-challenge-iostpa.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "TXT": "cd8aac10494e4b5b76656163a11508" diff --git a/domains/_github-pages-challenge-is-a-dev.raw-api.json b/domains/_github-pages-challenge-is-a-dev.docs.json similarity index 69% rename from domains/_github-pages-challenge-is-a-dev.raw-api.json rename to domains/_github-pages-challenge-is-a-dev.docs.json index 3b2c1b412..888f8178b 100644 --- a/domains/_github-pages-challenge-is-a-dev.raw-api.json +++ b/domains/_github-pages-challenge-is-a-dev.docs.json @@ -4,6 +4,6 @@ "email": "admin@is-a.dev" }, "record": { - "TXT": "22bbab4068a6c51de6df06aac442d5" + "TXT": "9aed675b73d2147d4bc644c3551ef9" } } diff --git a/domains/_github-pages-challenge-is-a-dev.json b/domains/_github-pages-challenge-is-a-dev.json index 8ce70cb89..6f3b68e72 100644 --- a/domains/_github-pages-challenge-is-a-dev.json +++ b/domains/_github-pages-challenge-is-a-dev.json @@ -1,4 +1,5 @@ { + "description": "Requested by GitHub support for verification of a public suffix", "owner": { "username": "is-a-dev", "email": "admin@is-a.dev" diff --git a/domains/support.json b/domains/_github-pages-challenge-is-a-dev.raw.json similarity index 69% rename from domains/support.json rename to domains/_github-pages-challenge-is-a-dev.raw.json index e9887267f..586d27003 100644 --- a/domains/support.json +++ b/domains/_github-pages-challenge-is-a-dev.raw.json @@ -4,6 +4,6 @@ "email": "admin@is-a.dev" }, "record": { - "URL": "https://is-a.dev/docs" + "TXT": "451887dc71c60fef6eb91e9b1ac27d" } } diff --git a/domains/_github-pages-challenge-jakethebest1238.jakehe.json b/domains/_github-pages-challenge-jakethebest1238.jakehe.json index 0f4c0ea5c..bb10367b2 100644 --- a/domains/_github-pages-challenge-jakethebest1238.jakehe.json +++ b/domains/_github-pages-challenge-jakethebest1238.jakehe.json @@ -1,6 +1,6 @@ { "owner": { - "username": "jakethebest1238", + "username": "jakehe1226", "email": "jakehe1226@gmail.com" }, "record": { diff --git a/domains/_github-pages-challenge-jd1.jd1.json b/domains/_github-pages-challenge-jd1.jd1.json new file mode 100644 index 000000000..7b4144043 --- /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" + }, + "record": { + "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..be579d34b --- /dev/null +++ b/domains/_github-pages-challenge-jecoh12.jecoh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jecoh12", + "email": "jecoh12@gmail.com" + }, + "record": { + "TXT": "06b17cb3b27f897547ef636ec8189d" + } +} diff --git a/domains/_github-pages-challenge-jesusvala.jesusvaladez.json b/domains/_github-pages-challenge-jesusvala.jesusvaladez.json new file mode 100644 index 000000000..1b82a5c20 --- /dev/null +++ b/domains/_github-pages-challenge-jesusvala.jesusvaladez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JesusVala", + "email": "jesusvaladezf@outlook.com" + }, + "record": { + "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..21df29414 --- /dev/null +++ b/domains/_github-pages-challenge-jlai403.joey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jlai403", + "discord": "120522740590575616" + }, + "record": { + "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..7899753f5 --- /dev/null +++ b/domains/_github-pages-challenge-jlwisedev.joshuawise.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jlwisedev", + "email": "jlwiseeha24@gmail.com" + }, + "record": { + "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..b856645bf --- /dev/null +++ b/domains/_github-pages-challenge-josemyduarte.josemy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "JosemyDuarte" + }, + "record": { + "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..6ecb54622 --- /dev/null +++ b/domains/_github-pages-challenge-juanpython1.juandev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanPython1", + "email": "kamilo201025@gmail.com" + }, + "record": { + "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..90fc9e6a8 --- /dev/null +++ b/domains/_github-pages-challenge-juansamayoa.juan-samayoa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanSamayoa", + "email": "juancho1705@gmail.com" + }, + "record": { + "TXT": "fc8f871bfa593a9c2c21cc89bc2a84" + } +} diff --git a/domains/_github-pages-challenge-jwaxy.jwaxy.json b/domains/_github-pages-challenge-jwaxy.jwaxy.json deleted file mode 100644 index 96595b11e..000000000 --- a/domains/_github-pages-challenge-jwaxy.jwaxy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "GitHub said that the verification was needed so I created this record.", - "owner": { - "username": "jwaxy", - "email": "me@yxawj.aleeas.com" - }, - "record": { - "TXT": "8e4b33b2837436011e57d5cade6b40" - } -} diff --git a/domains/_github-pages-challenge-kajpio.kajetan.json b/domains/_github-pages-challenge-kajpio.kajetan.json new file mode 100644 index 000000000..351dd400a --- /dev/null +++ b/domains/_github-pages-challenge-kajpio.kajetan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kajpio", + "email": "thugmichel14@gmail.com" + }, + "record": { + "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..e90a1c47a --- /dev/null +++ b/domains/_github-pages-challenge-karify98.karify98.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "karify98", + "email": "nnnam048@gmail.com" + }, + "record": { + "TXT": "923edb3fd9f4e444dedd5c9bf4e52c" + } +} diff --git a/domains/_github-pages-challenge-kellylawrence.kelly.json b/domains/_github-pages-challenge-kellylawrence.kelly.json new file mode 100644 index 000000000..b9c8eb85b --- /dev/null +++ b/domains/_github-pages-challenge-kellylawrence.kelly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kellylawrence", + "email": "kelly@kellylawrence.ca" + }, + "record": { + "TXT": "26237ec72d51f1ba56e371e8e3fef9" + } +} 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..11b8e2d80 --- /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" + }, + "record": { + "TXT": "40cdee3db2d50651a7e32d4f46c1f1" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-knowgaurav.gauravsingh.json b/domains/_github-pages-challenge-knowgaurav.gauravsingh.json new file mode 100644 index 000000000..ee1f70eac --- /dev/null +++ b/domains/_github-pages-challenge-knowgaurav.gauravsingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "knowgaurav", + "email": "qj1b83fmt@mozmail.com" + }, + "record": { + "TXT": "eaf70c3b4e96a8417de6d506d64c88" + } +} diff --git a/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json new file mode 100644 index 000000000..c3623095c --- /dev/null +++ b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kunalpurandare", + "email": "kunalpurandare1703@gmail.com" + }, + "record": { + "TXT": "6ab808f578d906f3b0fe8333da9b57" + } +} diff --git a/domains/_github-pages-challenge-l6174.l6174.json b/domains/_github-pages-challenge-l6174.l6174.json deleted file mode 100644 index 97dae4a78..000000000 --- a/domains/_github-pages-challenge-l6174.l6174.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "l6174", - "email": "l6174@proton.me" - }, - "record": { - "TXT": "239afcf7406892899a65a396dc024f" - } -} diff --git a/domains/_github-pages-challenge-lakshinhemachandran.quantum.json b/domains/_github-pages-challenge-lakshinhemachandran.quantum.json new file mode 100644 index 000000000..26a717f21 --- /dev/null +++ b/domains/_github-pages-challenge-lakshinhemachandran.quantum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lakshinhemachandran", + "email": "lh140313@outlook.com" + }, + "record": { + "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..9ad6bbbfe --- /dev/null +++ b/domains/_github-pages-challenge-leespencer.spencer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LeeSpencer", + "email": "mr.lee.spencer@gmail.com" + }, + "record": { + "TXT": "d2ec009b06395dafb0b2a7cb525a3a" + } +} diff --git a/domains/_github-pages-challenge-liamatienza.liam.json b/domains/_github-pages-challenge-liamatienza.liam.json new file mode 100644 index 000000000..ed1b27c24 --- /dev/null +++ b/domains/_github-pages-challenge-liamatienza.liam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "liamatienza", + "email": "liamdev@duck.com" + }, + "record": { + "TXT": "21465fcb0d62d07a3c97587145ebea" + } +} diff --git a/domains/_github-pages-challenge-lisaterumi.elisaterumi.json b/domains/_github-pages-challenge-lisaterumi.elisaterumi.json new file mode 100644 index 000000000..21b3fe2b6 --- /dev/null +++ b/domains/_github-pages-challenge-lisaterumi.elisaterumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lisaterumi", + "email": "contato@mulheresprogramando.com.br" + }, + "record": { + "TXT": "98eae69c84dbf5a9e26ece5b4ad0eb" + } +} diff --git a/domains/_github-pages-challenge-lyaxsh.lyaxsh.json b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json new file mode 100644 index 000000000..8ab20d7e9 --- /dev/null +++ b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lyaxsh", + "email": "lakshnahar.forwork@gmail.com" + }, + "record": { + "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..f54df7b46 --- /dev/null +++ b/domains/_github-pages-challenge-m0m0k4s4n.momoka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "M0M0K4S4N", + "email": "momokasan@proton.me" + }, + "record": { + "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..212bf05a0 --- /dev/null +++ b/domains/_github-pages-challenge-machip3r.machip3r.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "machip3r", + "email": "mac_258@hotmail.com" + }, + "record": { + "TXT": "cfc7c8e9fa922388850fe07ad3a7da" + } +} diff --git a/domains/_github-pages-challenge-manugeni.manugeni.json b/domains/_github-pages-challenge-manugeni.manugeni.json new file mode 100644 index 000000000..f749aa6ee --- /dev/null +++ b/domains/_github-pages-challenge-manugeni.manugeni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "manugeni", + "email": "rendaniman@outlook.com" + }, + "record": { + "TXT": "c43b4f0460a8d8b9c05affa2da77ef" + } +} diff --git a/domains/_github-pages-challenge-mateuseap.mateuseap.json b/domains/_github-pages-challenge-mateuseap.mateuseap.json new file mode 100644 index 000000000..0901a96fb --- /dev/null +++ b/domains/_github-pages-challenge-mateuseap.mateuseap.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mateuseap", + "email": "mateuseap@mateuseap.com" + }, + "record": { + "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..be12871f5 --- /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" + }, + "record": { + "TXT": "015fcfab7237a3342e028237414716" + } +} diff --git a/domains/_github-pages-challenge-mh0386.mohamedhisham.json b/domains/_github-pages-challenge-mh0386.mohamedhisham.json new file mode 100644 index 000000000..269c64d04 --- /dev/null +++ b/domains/_github-pages-challenge-mh0386.mohamedhisham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MH0386", + "email": "mohamed.hisham.abdelzaher@gmail.com" + }, + "record": { + "TXT": "c6abd6e81620b17a3fc408bfbbbe06" + } +} diff --git a/domains/_github-pages-challenge-mkblane.mkblane.json b/domains/_github-pages-challenge-mkblane.mkblane.json new file mode 100644 index 000000000..2fec1f244 --- /dev/null +++ b/domains/_github-pages-challenge-mkblane.mkblane.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mkblane", + "email": "rendaniman@outlook.com" + }, + "record": { + "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..20bde4b60 --- /dev/null +++ b/domains/_github-pages-challenge-mnhtng.mnhtng.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mnhtng" + }, + "record": { + "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..45d7cf5c4 --- /dev/null +++ b/domains/_github-pages-challenge-mohamadoday.bn3di.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohamadOday", + "email": "adada133321t@gmail.com" + }, + "record": { + "TXT": "a67c1c7ad9e8f589a22c5c161548f8" + } +} diff --git a/domains/_github-pages-challenge-mrinjamul.mrinjamul.json b/domains/_github-pages-challenge-mrinjamul.mrinjamul.json new file mode 100644 index 000000000..0b84ee7c4 --- /dev/null +++ b/domains/_github-pages-challenge-mrinjamul.mrinjamul.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Website", + "owner": { + "username": "mrinjamul", + "email": "injamulmohammadmollah@gmail.com" + }, + "record": { + "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..f4c19e493 --- /dev/null +++ b/domains/_github-pages-challenge-mrsanjaya.jasa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrsanjaya", + "email": "sandhysanjaya0110@gmail.com" + }, + "record": { + "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..c68522f20 --- /dev/null +++ b/domains/_github-pages-challenge-mrsiir.xavier.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrSiir", + "email": "mrsiir@gmail.com" + }, + "record": { + "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..27ddc6fcd --- /dev/null +++ b/domains/_github-pages-challenge-muazsrc.muaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muazsrc", + "email": "muazsrc17@gmail.com" + }, + "record": { + "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..cb3975ea9 --- /dev/null +++ b/domains/_github-pages-challenge-muizu.muiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MuizU", + "email": "muizuvais99@gmail.com" + }, + "record": { + "TXT": "8cf896945b34d5309a335f41eb2000" + } +} diff --git a/domains/_github-pages-challenge-mysterv.my5ter.json b/domains/_github-pages-challenge-mysterv.my5ter.json new file mode 100644 index 000000000..f02e48e27 --- /dev/null +++ b/domains/_github-pages-challenge-mysterv.my5ter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MysterV", + "email": "myster@ik.me" + }, + "record": { + "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..07a1e707c --- /dev/null +++ b/domains/_github-pages-challenge-mysterv.myster.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MysterV", + "email": "myster@ik.me" + }, + "record": { + "TXT": "e87fc6899d83da116cebe8335835d2" + } +} diff --git a/domains/_github-pages-challenge-narasimapandiyan.narasima.json b/domains/_github-pages-challenge-narasimapandiyan.narasima.json new file mode 100644 index 000000000..035c5e3e6 --- /dev/null +++ b/domains/_github-pages-challenge-narasimapandiyan.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "record": { + "TXT": "0cd2fb39489f7652da9a4942df4a75" + } +} diff --git a/domains/_github-pages-challenge-natedog2424.nd24.json b/domains/_github-pages-challenge-natedog2424.nd24.json new file mode 100644 index 000000000..1be329a14 --- /dev/null +++ b/domains/_github-pages-challenge-natedog2424.nd24.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "natedog2424", + "email": "natedog2424mail@gmail.com" + }, + "record": { + "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..10b2f2d75 --- /dev/null +++ b/domains/_github-pages-challenge-nayanjd.nayandas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NayanJD", + "email": "dastms@gmail.com" + }, + "record": { + "TXT": "1f61f6ce0b038f2d48a6d726e715f5" + } +} diff --git a/domains/_github-pages-challenge-nduartech.nathan.json b/domains/_github-pages-challenge-nduartech.nathan.json new file mode 100644 index 000000000..4b689eb3b --- /dev/null +++ b/domains/_github-pages-challenge-nduartech.nathan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nduartech", + "email": "nduartech101@gmail.com" + }, + "record": { + "TXT": "79d3051264abe353b91b26d27d0e42" + } +} 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..24f6512d9 --- /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" + }, + "record": { + "TXT": "1b6dcad6637eb7ef2c5de98714aff4" + } +} 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..3407dc574 --- /dev/null +++ b/domains/_github-pages-challenge-nuraly-v.nuraly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nuraly-v", + "email": "mescorpx@gmail.com" + }, + "record": { + "TXT": "aecce766c2f539c48be6e59e611020" + } +} diff --git a/domains/_github-pages-challenge-ogsamrat.samrat.json b/domains/_github-pages-challenge-ogsamrat.samrat.json new file mode 100644 index 000000000..8f1f156d3 --- /dev/null +++ b/domains/_github-pages-challenge-ogsamrat.samrat.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ogsamrat" + }, + "record": { + "TXT": ["eeef7c979489f42f420873389f2bef"] + } +} diff --git a/domains/_github-pages-challenge-okineadev.okinea.json b/domains/_github-pages-challenge-okineadev.okinea.json index 08e93918c..d8490b54a 100644 --- a/domains/_github-pages-challenge-okineadev.okinea.json +++ b/domains/_github-pages-challenge-okineadev.okinea.json @@ -1,9 +1,7 @@ { "description": "Okinea Dev website", - "repo": "https://github.com/okineadev", "owner": { - "username": "okineadev", - "email": "81070564+okineadev@users.noreply.github.com" + "username": "okineadev" }, "record": { "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..3c45e68a8 --- /dev/null +++ b/domains/_github-pages-challenge-onkarsathe007.onkarsathe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Onkarsathe007", + "email": "onkarsathe96k@gmail.com" + }, + "record": { + "TXT": "8d02480f39dc3dfcfa2ebc8104135c" + } +} 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-pavan-ambekar.pa1.json b/domains/_github-pages-challenge-pavan-ambekar.pa1.json new file mode 100644 index 000000000..6a9050644 --- /dev/null +++ b/domains/_github-pages-challenge-pavan-ambekar.pa1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pavan-ambekar", + "email": "pavan479ec@gmail.com" + }, + "record": { + "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..0129092e6 --- /dev/null +++ b/domains/_github-pages-challenge-peme969.peme969.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "peme969", + "email": "me@peme969.dev" + }, + "record": { + "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..d6ac23511 --- /dev/null +++ b/domains/_github-pages-challenge-pentsec.jeff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PentSec", + "email": "jeffreysfu@gmail.com" + }, + "record": { + "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..5049a8aea --- /dev/null +++ b/domains/_github-pages-challenge-peterbuga.peterbuga.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "peterbuga", + "discord": "902580031044325407" + }, + "record": { + "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..145cdd88f --- /dev/null +++ b/domains/_github-pages-challenge-pibiswal.piyushrb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pibiswal", + "email": "urpiyush39@gmail.com" + }, + "record": { + "TXT": "88b57a52bf70abe3255cb330bdc2e2" + } +} diff --git a/domains/_github-pages-challenge-potato0706.potatochips0706.json b/domains/_github-pages-challenge-potato0706.potatochips0706.json deleted file mode 100644 index 4fcacc74d..000000000 --- a/domains/_github-pages-challenge-potato0706.potatochips0706.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "potato0706", - "email": "potatochips0706@gmail.com" - }, - "record": { - "TXT": "5b91b8e422a44c261ea94f0cd21d21" - } -} diff --git a/domains/_github-pages-challenge-prs96.pranavs.json b/domains/_github-pages-challenge-prs96.pranavs.json new file mode 100644 index 000000000..92df3ec58 --- /dev/null +++ b/domains/_github-pages-challenge-prs96.pranavs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Prs96", + "email": "pranavsudheesh34@gmail.com" + }, + "record": { + "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..e6eeacdf2 --- /dev/null +++ b/domains/_github-pages-challenge-qavv.qavv.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "qavv" + }, + "record": { + "TXT": "88d0603bf399dde4dd55cd7313e1b2" + } +} diff --git a/domains/_github-pages-challenge-radioactivepotato.krunch.json b/domains/_github-pages-challenge-radioactivepotato.krunch.json index f8c99bf1d..2ddd73ce0 100644 --- a/domains/_github-pages-challenge-radioactivepotato.krunch.json +++ b/domains/_github-pages-challenge-radioactivepotato.krunch.json @@ -1,7 +1,7 @@ { "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, "record": { "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..47c732492 --- /dev/null +++ b/domains/_github-pages-challenge-ravikhokhar23.ravi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ravikhokhar23", + "email": "khokhar.ravikumar@gmail.com" + }, + "record": { + "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..1c7e80175 --- /dev/null +++ b/domains/_github-pages-challenge-razobeckett.mayurraut.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "razobeckett", + "email": "mayurraut.dev@gmail.com" + }, + "record": { + "TXT": "e104db834f904b13e65dd9337ae48e" + } +} 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-robinjesba.robin.json b/domains/_github-pages-challenge-robinjesba.robin.json new file mode 100644 index 000000000..eafe3866e --- /dev/null +++ b/domains/_github-pages-challenge-robinjesba.robin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RobinJesba", + "email": "jb.robinm@gmail.com" + }, + "record": { + "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..bb5a9c3c6 --- /dev/null +++ b/domains/_github-pages-challenge-roger-padrell.rpadrell.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roger-padrell", + "email": "padrell.roger@gmail.com" + }, + "record": { + "TXT": "814c8119eaa1cf941877c3cacea189" + } +} 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-rudwolf.rodolfo.json b/domains/_github-pages-challenge-rudwolf.rodolfo.json new file mode 100644 index 000000000..a3d1d3b7d --- /dev/null +++ b/domains/_github-pages-challenge-rudwolf.rodolfo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rudwolf", + "email": "rudwolf@gmail.com" + }, + "record": { + "TXT": "549d8e2eaf3753b07362c99c2eb240" + } +} diff --git a/domains/_github-pages-challenge-s3mant.semant.json b/domains/_github-pages-challenge-s3mant.semant.json index d3b3b1a2f..63eee66bc 100644 --- a/domains/_github-pages-challenge-s3mant.semant.json +++ b/domains/_github-pages-challenge-s3mant.semant.json @@ -1,6 +1,6 @@ { "owner": { - "username": "S3mant", + "username": "ihacksemant", "email": "contact@semant.is-a.dev" }, "record": { diff --git a/domains/_github-pages-challenge-saganaki22.drbaph.json b/domains/_github-pages-challenge-saganaki22.drbaph.json new file mode 100644 index 000000000..8c27fc546 --- /dev/null +++ b/domains/_github-pages-challenge-saganaki22.drbaph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saganaki22", + "email": "info@drbaph.dev" + }, + "record": { + "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..00e1cf0c5 --- /dev/null +++ b/domains/_github-pages-challenge-sajidshahriar72543.sajid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sajidshahriar72543", + "email": "sazidshahriar39@gmail.com" + }, + "record": { + "TXT": "d93567f4844049ce8f6ba59b0c42ab" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-sandunmadhushan.sandun.json b/domains/_github-pages-challenge-sandunmadhushan.sandun.json new file mode 100644 index 000000000..a26c14771 --- /dev/null +++ b/domains/_github-pages-challenge-sandunmadhushan.sandun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sandunMadhushan", + "email": "sandunhmadushan9330@gmail.com" + }, + "record": { + "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..f02e58941 --- /dev/null +++ b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sangeeth-606", + "email": "sangeeth999123@gmail.com" + }, + "record": { + "TXT": "db86cdabc094732729851d093e4c47" + } +} diff --git a/domains/_github-pages-challenge-satyamissatyam.satyamjha.json b/domains/_github-pages-challenge-satyamissatyam.satyamjha.json new file mode 100644 index 000000000..d741b1b2d --- /dev/null +++ b/domains/_github-pages-challenge-satyamissatyam.satyamjha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SatyamIsSatyam", + "email": "realsatyam02@gmail.com" + }, + "record": { + "TXT": "cfb164b676b453b9258240ca419ce0" + } +} diff --git a/domains/_github-pages-challenge-sepultrex.sep.json b/domains/_github-pages-challenge-sepultrex.sep.json new file mode 100644 index 000000000..2d9d5dca9 --- /dev/null +++ b/domains/_github-pages-challenge-sepultrex.sep.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "sepultrex" + }, + "record": { + "TXT": "9d48d99c569b77b148651f4052b25f" + } +} diff --git a/domains/_github-pages-challenge-sh770.sh770.json b/domains/_github-pages-challenge-sh770.sh770.json new file mode 100644 index 000000000..21e6557da --- /dev/null +++ b/domains/_github-pages-challenge-sh770.sh770.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sh770", + "email": "sh770h@gmail.com" + }, + "record": { + "TXT": "ece6eb427012a2050ec0a76cf9c7a6" + } +} diff --git a/domains/_github-pages-challenge-shukraditya.shukraditya.json b/domains/_github-pages-challenge-shukraditya.shukraditya.json new file mode 100644 index 000000000..3719166a9 --- /dev/null +++ b/domains/_github-pages-challenge-shukraditya.shukraditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shukraditya", + "email": "shukra12bose@gmail.com" + }, + "record": { + "TXT": "617d0b9d13126957daf657d7396ec2" + } +} diff --git a/domains/_github-pages-challenge-siddhant385.sid385.json b/domains/_github-pages-challenge-siddhant385.sid385.json new file mode 100644 index 000000000..430937121 --- /dev/null +++ b/domains/_github-pages-challenge-siddhant385.sid385.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siddhant385", + "email": "ssiddhant.ssharma@gmail.com" + }, + "record": { + "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..24fcbb24b --- /dev/null +++ b/domains/_github-pages-challenge-sidhant947.sidhant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sidhant947", + "email": "khatkarsidhant@gmail.com" + }, + "record": { + "TXT": "6c4f29a8923a09d9e9c36a95669015" + } +} 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..c66047ab2 --- /dev/null +++ b/domains/_github-pages-challenge-sneh-al.snehal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneh-al", + "email": "snehal1380@gmail.com" + }, + "record": { + "TXT": "c0b50465868652285e959813c2b5c9" + } +} diff --git a/domains/_github-pages-challenge-soymadip.soymadip.json b/domains/_github-pages-challenge-soymadip.soymadip.json new file mode 100644 index 000000000..a4cdcfdb3 --- /dev/null +++ b/domains/_github-pages-challenge-soymadip.soymadip.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "soymadip", + "email": "soumadip@zohomail.in" + }, + "record": { + "TXT": "5d04ea047efd00f6377e5ad12bb373" + } +} diff --git a/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json b/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json new file mode 100644 index 000000000..c85597389 --- /dev/null +++ b/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SpreadSheets600", + "email": "sohammaity006@gmail.com" + }, + "record": { + "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..ca54aa383 --- /dev/null +++ b/domains/_github-pages-challenge-squairdev.squair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "squairdev", + "email": "squairyt@gmail.com" + }, + "record": { + "TXT": "ba54cb9cae1e4213228abf2e39cbb0" + } +} diff --git a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json index d3083706f..89efda2a5 100644 --- a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json +++ b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json @@ -1,6 +1,6 @@ { "owner": { - "username": "berzcode", + "username": "sxurabh", "email": "saurabhkirve@gmail.com" }, "record": { diff --git a/domains/_github-pages-challenge-therealcrazyfuy.abeja.json b/domains/_github-pages-challenge-therealcrazyfuy.abeja.json new file mode 100644 index 000000000..d690b8812 --- /dev/null +++ b/domains/_github-pages-challenge-therealcrazyfuy.abeja.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheRealCrazyfuy", + "discord": "realabeja", + "reddit": "crazyfuy" + }, + "record": { + "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..fbf7295f8 --- /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" + }, + "record": { + "TXT": "11a49aa635c8bc15e62134fbd34a46" + } +} diff --git a/domains/_github-pages-challenge-thorito.thorito.json b/domains/_github-pages-challenge-thorito.thorito.json new file mode 100644 index 000000000..517999f9c --- /dev/null +++ b/domains/_github-pages-challenge-thorito.thorito.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thorito", + "email": "victor.villar.misa@gmail.com" + }, + "record": { + "TXT": "900d61c3e5e63880bf2f15832064bc" + } +} 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..e272031a9 --- /dev/null +++ b/domains/_github-pages-challenge-tim-vdb.tim-vdb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tim-vdb", + "email": "timotheevdbosch@gmail.com" + }, + "record": { + "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..dec98fcff --- /dev/null +++ b/domains/_github-pages-challenge-timi2506.timi2506.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "timi2506", + "email": "tim@glos-omu.uk" + }, + "record": { + "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..01eff4575 --- /dev/null +++ b/domains/_github-pages-challenge-totalolage.filip.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "totalolage", + "email": "filip@kalny.net" + }, + "record": { + "TXT": "7023b937e5e580da1a941ec57734df" + } +} diff --git a/domains/_github-pages-challenge-turquoisetnt.tnt.json b/domains/_github-pages-challenge-turquoisetnt.tnt.json index 574e58e2d..c5e01ce24 100644 --- a/domains/_github-pages-challenge-turquoisetnt.tnt.json +++ b/domains/_github-pages-challenge-turquoisetnt.tnt.json @@ -1,6 +1,6 @@ { "owner": { - "username": "TurquoiseTNT", + "username": "SebTNT", "email": "turquoisetntmultimedia@gmail.com" }, "record": { diff --git a/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json new file mode 100644 index 000000000..2373cfd05 --- /dev/null +++ b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UnidentifiedX", + "email": "sunzizhuo33@gmail.com" + }, + "record": { + "TXT": "82c071e58d59a58ca0ac52f3240f65" + } +} diff --git a/domains/_github-pages-challenge-vcntttt.vrivera.json b/domains/_github-pages-challenge-vcntttt.vrivera.json new file mode 100644 index 000000000..55c499a94 --- /dev/null +++ b/domains/_github-pages-challenge-vcntttt.vrivera.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vcntttt", + "email": "vrivera.dev@gmail.com" + }, + "record": { + "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..5666a2e22 --- /dev/null +++ b/domains/_github-pages-challenge-verygafanhot.heyaxo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "verygafanhot", + "email": "verygafanhot@gmail.com" + }, + "record": { + "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-vncsmnl.vinicius.json b/domains/_github-pages-challenge-vncsmnl.vinicius.json index f678da650..75df081e9 100644 --- a/domains/_github-pages-challenge-vncsmnl.vinicius.json +++ b/domains/_github-pages-challenge-vncsmnl.vinicius.json @@ -1,6 +1,5 @@ { "description": "My personal website", - "repo": "https://github.com/vncsmnl", "owner": { "username": "vncsmnl", "twitter": "vncsmnl", diff --git a/domains/_github-pages-challenge-voidkeishi.keishi.json b/domains/_github-pages-challenge-voidkeishi.keishi.json new file mode 100644 index 000000000..115aae60e --- /dev/null +++ b/domains/_github-pages-challenge-voidkeishi.keishi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VoidKeishi", + "email": "phananha4@gmail.com" + }, + "record": { + "TXT": "24873b574f17ea257bd32d1f505781" + } +} diff --git a/domains/_github-pages-challenge-vurihuang.vuri.json b/domains/_github-pages-challenge-vurihuang.vuri.json new file mode 100644 index 000000000..3bf04a569 --- /dev/null +++ b/domains/_github-pages-challenge-vurihuang.vuri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "record": { + "TXT": ["2447215d9fcea09574fc1831f99c8d"] + } +} diff --git a/domains/_github-pages-challenge-vurihuang.vurihuang.json b/domains/_github-pages-challenge-vurihuang.vurihuang.json new file mode 100644 index 000000000..04054cc65 --- /dev/null +++ b/domains/_github-pages-challenge-vurihuang.vurihuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "record": { + "TXT": ["8ba2660c4c9bb5915177df7123d158"] + } +} diff --git a/domains/w.json b/domains/_github-pages-challenge-wdhdev.william.json similarity index 69% rename from domains/w.json rename to domains/_github-pages-challenge-wdhdev.william.json index e576dac37..2542d31a6 100644 --- a/domains/w.json +++ b/domains/_github-pages-challenge-wdhdev.william.json @@ -4,6 +4,6 @@ "email": "william@is-a.dev" }, "record": { - "URL": "https://hrsn.dev" + "TXT": "6b3a5de4756e5840afc94698b74712" } } diff --git a/domains/_github-pages-challenge-webcubed.webcubed.json b/domains/_github-pages-challenge-webcubed.webcubed.json new file mode 100644 index 000000000..dd0dd0c64 --- /dev/null +++ b/domains/_github-pages-challenge-webcubed.webcubed.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "webcubed" + }, + "record": { + "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..94d74d30d --- /dev/null +++ b/domains/_github-pages-challenge-weebneedweed.harley.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "weebNeedWeed", + "email": "rivenmle@gmail.com" + }, + "record": { + "TXT": "659c12dc6e08a166dc1e88780bd87d" + } +} diff --git a/domains/_github-pages-challenge-wizcann.wizcann.json b/domains/_github-pages-challenge-wizcann.wizcann.json new file mode 100644 index 000000000..9c5ce79b0 --- /dev/null +++ b/domains/_github-pages-challenge-wizcann.wizcann.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "wizcann" + }, + "record": { + "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..e35c53374 --- /dev/null +++ b/domains/_github-pages-challenge-wmoralesl.wilson.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wmoralesl", + "email": "wilsonm57wm@gmail.com" + }, + "record": { + "TXT": "10f8fd2a05d93142f03d2a6ee4142e" + } +} diff --git a/domains/_github-pages-challenge-xrendani.xrendani.json b/domains/_github-pages-challenge-xrendani.xrendani.json new file mode 100644 index 000000000..ec841f538 --- /dev/null +++ b/domains/_github-pages-challenge-xrendani.xrendani.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xrendani", + "email": "rendaniman@outlook.com" + }, + "record": { + "TXT": "32d8f1c5a015e17af51e00beed50cc" + } +} diff --git a/domains/_github-pages-challenge-yashokuu.yas.json b/domains/_github-pages-challenge-yashokuu.yas.json new file mode 100644 index 000000000..17656bd55 --- /dev/null +++ b/domains/_github-pages-challenge-yashokuu.yas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashoukuu", + "email": "yas.studios.en@gmail.com" + }, + "record": { + "TXT": "3dc5a3f950e7f70f6535b6bf715042" + } +} diff --git a/domains/_github-pages-challenge-youfoundalpha.alpha.json b/domains/_github-pages-challenge-youfoundalpha.alpha.json index a50cceb99..b2d81c0f0 100644 --- a/domains/_github-pages-challenge-youfoundalpha.alpha.json +++ b/domains/_github-pages-challenge-youfoundalpha.alpha.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "TXT": "123b9197abda60197a8afa64af5cf0" diff --git a/domains/_github-pages-challenge-yourtilak.tilak.json b/domains/_github-pages-challenge-yourtilak.tilak.json index dc261fc78..516682e02 100644 --- a/domains/_github-pages-challenge-yourtilak.tilak.json +++ b/domains/_github-pages-challenge-yourtilak.tilak.json @@ -1,5 +1,4 @@ { - "description": "YourTilak.is-a.dev", "repo": "https://github.com/YourTilak/YourTilak.github.io", "owner": { "username": "YourTilak", diff --git a/domains/_github-pages-challenge-yz9551.yxz.json b/domains/_github-pages-challenge-yz9551.yxz.json new file mode 100644 index 000000000..b785aa78b --- /dev/null +++ b/domains/_github-pages-challenge-yz9551.yxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "record": { + "TXT": ["1b83953af6bc9eb40dc5ccfb434238"] + } +} diff --git a/domains/_github-pages-challenge.wildchamo.json b/domains/_github-pages-challenge.wildchamo.json new file mode 100644 index 000000000..ea0ece3d4 --- /dev/null +++ b/domains/_github-pages-challenge.wildchamo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wildchamo", + "email": "wildchamo@gmail.com" + }, + "record": { + "TXT": "5b9a158bcd9821a7a78b5b362bccf0" + } +} diff --git a/domains/_minecraft._tcp.mc.3gee.json b/domains/_minecraft._tcp.mc.3gee.json new file mode 100644 index 000000000..b717967fb --- /dev/null +++ b/domains/_minecraft._tcp.mc.3gee.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "record": { + "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..54e8979fe --- /dev/null +++ b/domains/_minecraft._tcp.mrdiamond.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "record": { + "SRV": [ + { + "priority": 0, + "weight": 5, + "port": 28225, + "target": "minecraft.mrdiamond.is-a.dev" + } + ] + } +} diff --git a/domains/_psl.json b/domains/_psl.json index 80ac8a2f0..9ddffa978 100644 --- a/domains/_psl.json +++ b/domains/_psl.json @@ -4,6 +4,6 @@ "email": "admin@is-a.dev" }, "record": { - "TXT": ["https://github.com/publicsuffix/list/pull/2225"] + "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..7fd603367 --- /dev/null +++ b/domains/_serveo-authkey.pds.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": "SHA256:KFRJFKicG2rnITzSxLQn62svO68oydMpEDpQ6yRbtR0" + } +} diff --git a/domains/_vercel.1ndrajeet.json b/domains/_vercel.1ndrajeet.json new file mode 100644 index 000000000..b0a4687de --- /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" + }, + "record": { + "TXT": "vc-domain-verify=1ndrajeet.is-a.dev,00cac18202bfab99e890" + } +} \ No newline at end of file diff --git a/domains/_vercel.2.json b/domains/_vercel.2.json new file mode 100644 index 000000000..f78c8de0a --- /dev/null +++ b/domains/_vercel.2.json @@ -0,0 +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"] + } +} diff --git a/domains/_vercel.4hmet.json b/domains/_vercel.4hmet.json new file mode 100644 index 000000000..548534f94 --- /dev/null +++ b/domains/_vercel.4hmet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahmetunsal", + "email": "web.unsalahmet@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=4hmet.is-a.dev,c313bc7151ebff9a1f1f" + } +} diff --git a/domains/_vercel.aadityaa.json b/domains/_vercel.aadityaa.json new file mode 100644 index 000000000..58ad65db3 --- /dev/null +++ b/domains/_vercel.aadityaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aadityaa2606", + "email": "aadityaa2606@gmail.com" + }, + "record": { + "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..b92e69e32 --- /dev/null +++ b/domains/_vercel.aakashrawat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aakashrawat04", + "email": "2004rawataakash@gmail.com", + "discord": "759817307957493800" + }, + "record": { + "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..5ad57169b --- /dev/null +++ b/domains/_vercel.aaqif.json @@ -0,0 +1,10 @@ +{ + "description": "React Portfolio", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "record": { + "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..178199aa9 --- /dev/null +++ b/domains/_vercel.abdullah-al-mridul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdullah-al-mridul", + "email": "rim89987@gmail.com" + }, + "record": { + "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..7079b6e33 --- /dev/null +++ b/domains/_vercel.abdullah.maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "record": { + "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..9d91dd155 --- /dev/null +++ b/domains/_vercel.abdullahcxd.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "record": { + "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..ff678a2e3 --- /dev/null +++ b/domains/_vercel.abranico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abranico", + "email": "abranico011@gmail.com" + }, + "record": { + "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..fd6913440 --- /dev/null +++ b/domains/_vercel.adam.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio", + "owner": { + "username": "adamrexo", + "email": "rexosheesh@gmail.com" + }, + "record": { + "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..8ad7df240 --- /dev/null +++ b/domains/_vercel.adiii3692.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adiii3692", + "email": "adinair0206@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=adiii3692.is-a.dev,be704332b1928225a1ce" + } +} \ No newline at end of file diff --git a/domains/_vercel.aditya.json b/domains/_vercel.aditya.json new file mode 100644 index 000000000..69fd750da --- /dev/null +++ b/domains/_vercel.aditya.json @@ -0,0 +1,10 @@ +{ + "description": "Aditya portfolio", + "owner": { + "username": "raghav-45", + "email": "raghavbhai4545@gmail.com" + }, + "record": { + "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..9594c7197 --- /dev/null +++ b/domains/_vercel.aessaputra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aessaputra", + "twitter": "pioonrey" + }, + "record": { + "TXT": "vc-domain-verify=aessaputra.is-a.dev,e4ae1f9f5dd0538d0b82" + } +} diff --git a/domains/_vercel.aeyika.json b/domains/_vercel.aeyika.json new file mode 100644 index 000000000..eb8b6557f --- /dev/null +++ b/domains/_vercel.aeyika.json @@ -0,0 +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"] + } +} diff --git a/domains/_vercel.aga.json b/domains/_vercel.aga.json new file mode 100644 index 000000000..568e03586 --- /dev/null +++ b/domains/_vercel.aga.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "lcnghulam", + "email": "lcnghulam1@gmail.com", + "discord": "blessing455451" + }, + "record": { + "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..1721e67e4 --- /dev/null +++ b/domains/_vercel.agungfir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "agungfir10", + "email": "agungfirid@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=agungfir.is-a.dev,f3a8d63f073d51dadc29" + } +} \ No newline at end of file diff --git a/domains/_vercel.ahios.json b/domains/_vercel.ahios.json new file mode 100644 index 000000000..eec2a6e3e --- /dev/null +++ b/domains/_vercel.ahios.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "record": { + "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..86074dd7e --- /dev/null +++ b/domains/_vercel.ahmad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "azrelic", + "email": "ahmadking78654@gmail.com" + }, + "record": { + "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..79609535e --- /dev/null +++ b/domains/_vercel.ahmed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "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..ca3b1d64a --- /dev/null +++ b/domains/_vercel.ahmedosama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "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..82c7b01c4 --- /dev/null +++ b/domains/_vercel.ahmedosamamath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "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..f1d7e4b23 --- /dev/null +++ b/domains/_vercel.aishik999.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aishik999", + "email": "aishikm2002@gmail.com" + }, + "record": { + "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..3b7104481 --- /dev/null +++ b/domains/_vercel.aitji.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aitji", + "email": "ait.suriya@gmail.com", + "discord": "aitji" + }, + "record": { + "TXT": "vc-domain-verify=aitji.is-a.dev,0a05468b82f542c74dea" + } +} diff --git a/domains/_vercel.akanksha.json b/domains/_vercel.akanksha.json new file mode 100644 index 000000000..da88a23d8 --- /dev/null +++ b/domains/_vercel.akanksha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AkankshaMishra2", + "email": "akankshamishra20042@gmail.com" + }, + "record": { + "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..e35f85f2b --- /dev/null +++ b/domains/_vercel.akashkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akash-kumar-dev", + "email": "akashkumar.dev00@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=akashkumar.is-a.dev,844132b059abdd5bd808" + } +} diff --git a/domains/_vercel.akay.json b/domains/_vercel.akay.json new file mode 100644 index 000000000..bce09cc70 --- /dev/null +++ b/domains/_vercel.akay.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "AKBORANA3" + }, + "record": { + "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..fce6165bc --- /dev/null +++ b/domains/_vercel.akib.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akibsaleh", + "email": "akibsaleh.dev@gmail.com", + "discord": "akibsalehzihan" + }, + "record": { + "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..52ae857e8 --- /dev/null +++ b/domains/_vercel.akk1to.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "record": { + "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..e9ab85e92 --- /dev/null +++ b/domains/_vercel.akshtt.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QWFzHtRqwC1CI4y4jw5OHgSry05ulJH01mIzxx9bGg0fS3KE5iyHw5hPaj-OBoYST_btyPsaSP8JNUKM-gI-7nDBBgckoaArcTiDMfDmSo3-_mFRRB2jtqfBoVJ83egjdsOo-I5N9_78-oajU7Tumk6ce2Ch3_DiTxgMflK_mJmSZgcWuo0gL3bj2haLaZyd1qW-68fW3r52H-W8T1sMJZympTPLiMXVXjo20TBcpctYMv8G3_O5US_wmMx5QLrw9TimpJB-4mGH3n0WpawZj7tTf4lnf00w0tt0rqQ3nnnp5NTYXjRyeRN48P48IcOHwzJop34_fB4hsnROKbaxuQ.sD9gxAoazhppPtKnBaQziA.rf6S62c9Xs-WkMBUfRFba2G8ht_lzrAKfmkK508kyIUJA5NSRHBlULdRzTz-tTs5JByTNT1KMipzqEbg6mdikUVUKyPSRKJw9rSvcG1ZdVA.4-qT7_3j-LGiWaancLS80A" + }, + + "record": { + "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..1ebe7ff40 --- /dev/null +++ b/domains/_vercel.al-nahianhasan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nahianhasan161", + "email": "nahianhasan161@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=al-nahianhasan.is-a.dev,1deeff67e64c983a1be6" + } +} diff --git a/domains/_vercel.alexismansilla.json b/domains/_vercel.alexismansilla.json new file mode 100644 index 000000000..f3b8d4a37 --- /dev/null +++ b/domains/_vercel.alexismansilla.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dv-del", + "email": "", + "discord": "dv_del" + }, + "record": { + "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..5b8c4ab97 --- /dev/null +++ b/domains/_vercel.alimad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Alimadcorp", + "email": "alimad.co.ltd@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=alimad.is-a.dev,f6e1ccbe103767db5c66" + } +} diff --git a/domains/_vercel.alisa.json b/domains/_vercel.alisa.json new file mode 100644 index 000000000..94cae0c6f --- /dev/null +++ b/domains/_vercel.alisa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lunas-private-dungeon", + "email": "luna.tsx@proton.me", + "discord": "507625218467168257" + }, + "record": { + "TXT": ["vc-domain-verify=alisa.is-a.dev,01abd793050b01c5d63f"] + } +} diff --git a/domains/_vercel.alora.json b/domains/_vercel.alora.json index d203c2aef..2b03d12c0 100644 --- a/domains/_vercel.alora.json +++ b/domains/_vercel.alora.json @@ -8,7 +8,9 @@ "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.alrakib.json b/domains/_vercel.alrakib.json new file mode 100644 index 000000000..d764d097f --- /dev/null +++ b/domains/_vercel.alrakib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alrakibthedev", + "email": "alrakibthedev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=alrakib.is-a.dev,3a2663fe979960b1dad2" + } +} diff --git a/domains/_vercel.alvin.json b/domains/_vercel.alvin.json index 5945bbeb5..acb3eafa7 100644 --- a/domains/_vercel.alvin.json +++ b/domains/_vercel.alvin.json @@ -7,7 +7,13 @@ "TXT": [ "vc-domain-verify=www.alvin.is-a.dev,8cfb8dfac816eacccf2d", "vc-domain-verify=hive.alvin.is-a.dev,c60034f22ad745c15021", - "vc-domain-verify=www.hive.alvin.is-a.dev,682186731d1f9275c277" + "vc-domain-verify=www.hive.alvin.is-a.dev,682186731d1f9275c277", + "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=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 new file mode 100644 index 000000000..e58925f51 --- /dev/null +++ b/domains/_vercel.alvindennis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvin-dennis", + "discord": "alvindennis" + }, + "record": { + "TXT": "vc-domain-verify=alvindennis.is-a.dev,0cce0dce190e046ef841" + } +} diff --git a/domains/_vercel.aman.json b/domains/_vercel.aman.json new file mode 100644 index 000000000..d22f3413a --- /dev/null +++ b/domains/_vercel.aman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amang9446", + "email": "dev.aman7571@gmail.com" + }, + "record": { + "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..9a269efa5 --- /dev/null +++ b/domains/_vercel.amandajauregui.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jauregao", + "email": "amandajauregui.dev@gmail.com", + "discord": "jauregao" + }, + "record": { + "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..175986068 --- /dev/null +++ b/domains/_vercel.amardeep.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amardeeplakshkar", + "email": "amardeep.devs@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=amardeep.is-a.dev,3d113f019450ce88d3a8" + } +} diff --git a/domains/_vercel.amitkr.json b/domains/_vercel.amitkr.json new file mode 100644 index 000000000..5746f962e --- /dev/null +++ b/domains/_vercel.amitkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "buddhhu", + "email": "amitsharma123234@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=amitkr.is-a.dev,ee59d7888c4ddd580b2a" + } +} \ No newline at end of file diff --git a/domains/_vercel.anand.json b/domains/_vercel.anand.json new file mode 100644 index 000000000..01f2379f5 --- /dev/null +++ b/domains/_vercel.anand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anandd17", + "email": "avdoddamani123@gmail.com" + }, + "record": { + "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..f458d6895 --- /dev/null +++ b/domains/_vercel.andres-jaramillo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "andresfer1799", + "email": "andresfer1799@gmail.com" + }, + "record": { + "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..b95184791 --- /dev/null +++ b/domains/_vercel.andresarr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anonymous1223334444", + "email": "replit005@gmail.com" + }, + "record": { + "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..e7d5d06fb --- /dev/null +++ b/domains/_vercel.aneeqkhurram007.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aneeqkhurram007", + "email": "aneeqkhurram007@yahoo.com" + }, + "record": { + "TXT": "vc-domain-verify=aneeqkhurram007.is-a.dev,a2ee93d3908119d926c6" + } +} \ No newline at end of file diff --git a/domains/_vercel.aneeshraskar.json b/domains/_vercel.aneeshraskar.json new file mode 100644 index 000000000..5c5902489 --- /dev/null +++ b/domains/_vercel.aneeshraskar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zephyrus02", + "email": "aneeshraskar@gmail.com" + }, + "record": { + "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..4d1b1a3f7 --- /dev/null +++ b/domains/_vercel.ansh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anshaneja5", + "email": "anshanejaa@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ansh.is-a.dev,074c2e585d197374e108" + } +} diff --git a/domains/_vercel.anto.json b/domains/_vercel.anto.json index 0dfb87325..c42655648 100644 --- a/domains/_vercel.anto.json +++ b/domains/_vercel.anto.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hardianto01", - "email": "hardiantojek92@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=anto.is-a.dev,c6f0fc6ee41a39c2c435"] - } + "owner": { + "username": "hardianto01", + "email": "hardiantojek92@gmail.com" + }, + "record": { + "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..e5a5ec3f3 --- /dev/null +++ b/domains/_vercel.anujer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anuj-er", + "email": "anujkumar142000@gmail.com" + }, + "record": { + "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..c7ff41d2d --- /dev/null +++ b/domains/_vercel.anushi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anushi13prsnl", + "email": "anushi4849@gmail.com" + }, + "record": { + "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..26ce60cda --- /dev/null +++ b/domains/_vercel.anw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "record": { + "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..1ba7308b6 --- /dev/null +++ b/domains/_vercel.app.vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "record": { + "TXT": "vc-domain-verify=*.vyductan.is-a.dev,f7fc15db084fa96cf967" + } +} diff --git a/domains/_vercel.arhanansari.json b/domains/_vercel.arhanansari.json new file mode 100644 index 000000000..47ca6fa78 --- /dev/null +++ b/domains/_vercel.arhanansari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com" + }, + "record": { + "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..083653cd2 --- /dev/null +++ b/domains/_vercel.arjuncodess.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arjuncodess", + "email": "arjunv.prakash12345@gmail.com" + }, + "record": { + "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..5f5b0866f --- /dev/null +++ b/domains/_vercel.arkan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArizalArkan", + "email": "arizalarkan@gmail.com" + }, + "record": { + "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..35c1f87c6 --- /dev/null +++ b/domains/_vercel.arlan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=arlan.is-a.dev,0ab1dd26cecd05574326" + } +} diff --git a/domains/_vercel.arnxv.json b/domains/_vercel.arnxv.json new file mode 100644 index 000000000..30f706468 --- /dev/null +++ b/domains/_vercel.arnxv.json @@ -0,0 +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" + ] + } +} diff --git a/domains/_vercel.arshman.json b/domains/_vercel.arshman.json index 3d42d54ea..9bb0feb4a 100644 --- a/domains/_vercel.arshman.json +++ b/domains/_vercel.arshman.json @@ -1,7 +1,6 @@ { "owner": { - "username": "syedtahseen", - "email": "" + "username": "syedtahseen" }, "record": { "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..b8c556459 --- /dev/null +++ b/domains/_vercel.arunlorenz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arunlorenz", + "email": "nsak1763@gmail.com" + }, + "record": { + "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..f429e44c3 --- /dev/null +++ b/domains/_vercel.arvind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coderman400", + "email": "achurox1121@gmail.com" + }, + "record": { + "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..b44dde075 --- /dev/null +++ b/domains/_vercel.aryan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aryanpatel142006", + "email": "aryanpatel142006@gmail.com", + "discord": "aryanpatel142006" + }, + "record": { + "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..4af5f87c6 --- /dev/null +++ b/domains/_vercel.aryann.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aryanm830", + "email": "aryanm830@proton.me", + "discord": "riftfiree" + }, + "record": { + "TXT": "vc-domain-verify=aryann.is-a.dev,055a43d91c6031804886" + } +} diff --git a/domains/_vercel.at-muhammad.json b/domains/_vercel.at-muhammad.json new file mode 100644 index 000000000..e505df9ed --- /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" + }, + "record": { + "TXT": "vc-domain-verify=at-muhammad.is-a.dev,398740ea0c7de20b1a80" + } +} diff --git a/domains/_vercel.atharvd.json b/domains/_vercel.atharvd.json new file mode 100644 index 000000000..ccd8cbb0d --- /dev/null +++ b/domains/_vercel.atharvd.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "D-Atharv" + }, + "record": { + "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..bf0b12539 --- /dev/null +++ b/domains/_vercel.awhvish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "awhvish", + "email": "avislowha9@gmail.com" + }, + "record": { + "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..5c11b1d7e --- /dev/null +++ b/domains/_vercel.ayushk.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ayushk-1801", + "email": "ayush.kumara1801@gmail.com", + "discord": "ayushk_1801" + }, + "record": { + "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..8c3ce80ef --- /dev/null +++ b/domains/_vercel.azrifatihah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muhAzri", + "email": "muhammad.azri.f.s@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=azrifatihah.is-a.dev,99b5bc49dc0a636f9bcf" + } +} \ No newline at end of file diff --git a/domains/_vercel.baibhav.json b/domains/_vercel.baibhav.json new file mode 100644 index 000000000..f37fa278a --- /dev/null +++ b/domains/_vercel.baibhav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Baibhavos", + "email": "baibhavkumar303@gmal.com" + }, + "record": { + "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..a5860b39f --- /dev/null +++ b/domains/_vercel.bala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=bala.is-a.dev,7d0037d117e48bf24960" + } +} \ No newline at end of file diff --git a/domains/_vercel.balaji.json b/domains/_vercel.balaji.json new file mode 100644 index 000000000..2e7a018ba --- /dev/null +++ b/domains/_vercel.balaji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "balaji-atoa", + "discord": "popz06" + }, + "record": { + "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..4516c134e --- /dev/null +++ b/domains/_vercel.banda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bandabahariputra", + "discord": "banda" + }, + "record": { + "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..6d212fad1 --- /dev/null +++ b/domains/_vercel.barnacl437.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Barnacl437", + "email": "barnacl437@proton.me" + }, + "record": { + "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..f7437b28f --- /dev/null +++ b/domains/_vercel.bdn-fr.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "bdn-fr" + }, + "record": { + "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..dd14aaf1f --- /dev/null +++ b/domains/_vercel.bhavyagupta.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BhavyaGupta315", + "email": "bhavyagupta315@gmail.com", + "discord": "bhavya_gupta_" + }, + "record": { + "TXT": "vc-domain-verify=bhavyagupta.is-a.dev,6ad4b583ec5dfd020162" + } +} diff --git a/domains/_vercel.bhushankhopkarr.json b/domains/_vercel.bhushankhopkarr.json new file mode 100644 index 000000000..969c478a0 --- /dev/null +++ b/domains/_vercel.bhushankhopkarr.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "bhushankhopkarr" + }, + "record": { + "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..c4184f17d --- /dev/null +++ b/domains/_vercel.bilalmansuri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bilal-23", + "email": "work.bilalmansuri@gmail.com", + "discord": "bilal_23" + }, + "record": { + "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..9e9d67911 --- /dev/null +++ b/domains/_vercel.bladimir.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Esbruiz", + "discord": "190241825540276245", + "email": "esbruizc@gmail.com", + "bluesky": "did:plc:xkczclld4e5vvpypnu5z6m2g" + }, + "record": { + "TXT": "vc-domain-verify=bladimir.is-a.dev,e64e9cb20c3d9e344c18" + } +} diff --git a/domains/_vercel.blog.chuyentinorz.json b/domains/_vercel.blog.chuyentinorz.json new file mode 100644 index 000000000..09c735fba --- /dev/null +++ b/domains/_vercel.blog.chuyentinorz.json @@ -0,0 +1,12 @@ +{ + "description": "This website is blogpost for ChuyenTinORZ", + "repo": "https://github.com/akk1to/akk1to.github.io", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "record": { + "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..d82ad7099 --- /dev/null +++ b/domains/_vercel.blog.jumanji.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "heyjumanji" + }, + "record": { + "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..90038acea --- /dev/null +++ b/domains/_vercel.bm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BM87006", + "email": "bm.is.a.dev@gmail.com" + }, + "record": { + "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..5495d630d --- /dev/null +++ b/domains/_vercel.bumidenpasar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BumiDenpasar", + "instagram": "ibummmbumi" + }, + "record": { + "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..465c2daff --- /dev/null +++ b/domains/_vercel.caelan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CaeCur", + "email": "caelan.curry+isadev@gmail.com" + }, + "record": { + "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..c63c2accb --- /dev/null +++ b/domains/_vercel.cedrickfeze.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cedrickdev", + "email": "cedrickv.tchindaf@hes-so.ch" + }, + "record": { + "TXT": "vc-domain-verify=cedrickfeze.is-a.dev,71a63578cf6cddd91370" + } +} diff --git a/domains/_vercel.cgmuros.json b/domains/_vercel.cgmuros.json new file mode 100644 index 000000000..ec663559d --- /dev/null +++ b/domains/_vercel.cgmuros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cgmuros", + "email": "cgmuros@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=cgmuros.is-a.dev,12145ac3f3c3d53d6095" + } +} \ No newline at end of file diff --git a/domains/_vercel.chamal1120.json b/domains/_vercel.chamal1120.json new file mode 100644 index 000000000..0502b7c71 --- /dev/null +++ b/domains/_vercel.chamal1120.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chamal1120", + "email": "kenway213beep@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=chamal1120.is-a.dev,cfcb568d46b4ccb8601f" + } +} diff --git a/domains/_vercel.charly.json b/domains/_vercel.charly.json new file mode 100644 index 000000000..831e2c934 --- /dev/null +++ b/domains/_vercel.charly.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "soy-charly", + "email": "carlos.scarrasco08@gmail.com", + "discord": "charly0572" + }, + "record": { + "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..6838e3501 --- /dev/null +++ b/domains/_vercel.chirxg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "definitelynotchirag", + "email": "chiragdave1888@gmail.com", + "discord": "hellchirag" + }, + "record": { + "TXT": "vc-domain-verify=chirxg.is-a.dev,701cf9d2a75e9216fd53" + } +} diff --git a/domains/_vercel.chrisbase12.json b/domains/_vercel.chrisbase12.json new file mode 100644 index 000000000..0ca5c7765 --- /dev/null +++ b/domains/_vercel.chrisbase12.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "OverCharred" + }, + "record": { + "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..79319a336 --- /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" + }, + "record": { + "TXT": "vc-domain-verify=chriscent.is-a.dev,0bd491999fe494552e50" + } +} diff --git a/domains/_vercel.chuyentinorz.json b/domains/_vercel.chuyentinorz.json new file mode 100644 index 000000000..12116a6c4 --- /dev/null +++ b/domains/_vercel.chuyentinorz.json @@ -0,0 +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"] + } +} diff --git a/domains/_vercel.cnvrs.json b/domains/_vercel.cnvrs.json new file mode 100644 index 000000000..5c31fec88 --- /dev/null +++ b/domains/_vercel.cnvrs.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "2nvrs" + }, + "record": { + "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..54da6fbe2 --- /dev/null +++ b/domains/_vercel.coderzen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Realtrickz", + "email": "isamismail8273@gmail.com" + }, + "record": { + "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..1e332b1c0 --- /dev/null +++ b/domains/_vercel.codesoft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "record": { + "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..4b909ef1d --- /dev/null +++ b/domains/_vercel.codexkun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KunalBishwal", + "email": "kunalbishwal2004@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=codexkun.is-a.dev,0c262cd5c5e3a73e7717" + } +} diff --git a/domains/_vercel.computerblade.json b/domains/_vercel.computerblade.json new file mode 100644 index 000000000..c488033d5 --- /dev/null +++ b/domains/_vercel.computerblade.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "computerblade-official" + }, + "record": { + "TXT": ["vc-domain-verify=computerblade.is-a.dev,0b4d70954aeb7d2d0656"] + } +} diff --git a/domains/_vercel.crystal.json b/domains/_vercel.crystal.json new file mode 100644 index 000000000..cd4c8821e --- /dev/null +++ b/domains/_vercel.crystal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "crystalbajgai", + "email": "crystalbajgai@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=crystal.is-a.dev,ef573673a0e376748ea9" + } +} diff --git a/domains/_vercel.cutedog5695.json b/domains/_vercel.cutedog5695.json index 2c2a0bb11..aadb56683 100644 --- a/domains/_vercel.cutedog5695.json +++ b/domains/_vercel.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "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..0df2030ff --- /dev/null +++ b/domains/_vercel.cynik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "criticic", + "email": "acriticalcynic@outlook.com" + }, + "record": { + "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..18622e499 --- /dev/null +++ b/domains/_vercel.dai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ncdai", + "email": "dai@chanhdai.com" + }, + "record": { + "TXT": ["vc-domain-verify=dai.is-a.dev,1f58fc0d6c2eb6cc92d7"] + } +} diff --git a/domains/_vercel.daim.json b/domains/_vercel.daim.json new file mode 100644 index 000000000..d1e15d28b --- /dev/null +++ b/domains/_vercel.daim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sYnceDez41", + "email": "zdaim78@gmail.com" + }, + "record": { + "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..37e2f7411 --- /dev/null +++ b/domains/_vercel.damian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meliadamian17", + "email": "meliadamian17@gmail.com" + }, + "record": { + "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..a7e380c22 --- /dev/null +++ b/domains/_vercel.dang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chanhdangcom", + "email": "ncdang@quaric.com" + }, + "record": { + "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..598a54b4f --- /dev/null +++ b/domains/_vercel.danieltampe.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DanielTampeCaamano", + "email": "danieltampe@hotmail.com", + "discord": "246811015285571586" + }, + "record": { + "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..2280d6a62 --- /dev/null +++ b/domains/_vercel.darkyzhou.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "darkyzhou", + "email": "me@zqy.io" + }, + "record": { + "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..1bf685cd0 --- /dev/null +++ b/domains/_vercel.darshan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dqrshan", + "email": "darshan310268@gmail.com", + "discord": "838620835282812969" + }, + "record": { + "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..6940aacb1 --- /dev/null +++ b/domains/_vercel.davechbga.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "davechbga" + }, + "record": { + "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..c40474376 --- /dev/null +++ b/domains/_vercel.davr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cernoh", + "email": "davincey06@gmail.com" + }, + "record": { + "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..ea0f954fe --- /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" + }, + "record": { + "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..8433f45c7 --- /dev/null +++ b/domains/_vercel.debaditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DebadityaMalakar", + "email": "debadityamalakar@outlook.com" + }, + "record": { + "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..d8567ddde --- /dev/null +++ b/domains/_vercel.deeptanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Deeptanshuu", + "email": "laldeeptanshu96@gmail.com" + }, + "record": { + "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..680504562 --- /dev/null +++ b/domains/_vercel.devanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevanshuTripathi", + "email": "aditheprince120@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=devanshu.is-a.dev,e278253baf18d3dda9c1" + } +} diff --git a/domains/_vercel.dhika.json b/domains/_vercel.dhika.json new file mode 100644 index 000000000..3a6d09a0d --- /dev/null +++ b/domains/_vercel.dhika.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thisisdhika", + "email": "dhikaardana87@gmail.com" + }, + "record": { + "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..11a62cb79 --- /dev/null +++ b/domains/_vercel.dilpreetgrover.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dfordp", + "email": "dilpreetgrover2@gmail.com", + "discord": "dfordp" + }, + "record": { + "TXT": "vc-domain-verify=dilpreetgrover.is-a.dev,a46f6b3fc877e4d2cbcc" + } +} diff --git a/domains/_vercel.dimasandriano.json b/domains/_vercel.dimasandriano.json index d26749c86..52c2f0077 100644 --- a/domains/_vercel.dimasandriano.json +++ b/domains/_vercel.dimasandriano.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dimasandriano", - "email": "dimas.andriano.h@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=dimasandriano.is-a.dev,e6171f1cd28f96238ae2" - } + "owner": { + "username": "dimasandriano", + "email": "dimas.andriano.h@gmail.com" + }, + "record": { + "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..00eb62c4a --- /dev/null +++ b/domains/_vercel.dishant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dishant402955", + "email": "dishantradadiya3036@gmail.com" + }, + "record": { + "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..98afe396e --- /dev/null +++ b/domains/_vercel.divyanshudhruv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "divyanshudhruv", + "email": "divyanshudhruv24@gmail.com" + }, + "record": { + "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..da1e28f13 --- /dev/null +++ b/domains/_vercel.divyanshuvashu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "divyanshu-vashu", + "email": "vashusingh2004.jan@gmail.com", + "discord": "ram_ravan69" + }, + "record": { + "TXT": "vc-domain-verify=divyanshuvashu.is-a.dev,26b8f5f55295c4a8ec71" + } +} diff --git a/domains/_vercel.dokiet.json b/domains/_vercel.dokiet.json new file mode 100644 index 000000000..4a0bb2904 --- /dev/null +++ b/domains/_vercel.dokiet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kietdo-dev", + "email": "lionvs12345@gmail.com" + }, + "record": { + "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..5d12c9a0e --- /dev/null +++ b/domains/_vercel.drew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zessu", + "email": "regime-pluck-gulf@duck.com" + }, + "record": { + "TXT": "vc-domain-verify=drew.is-a.dev,78b1c3bcf18815fe9bfe" + } +} diff --git a/domains/_vercel.duypt14.json b/domains/_vercel.duypt14.json new file mode 100644 index 000000000..f65d99352 --- /dev/null +++ b/domains/_vercel.duypt14.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ptduy14", + "email": "phantanduy14@gmail.com" + }, + "record": { + "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..0a1509aa1 --- /dev/null +++ b/domains/_vercel.ebooks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "record": { + "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..56348a1ef --- /dev/null +++ b/domains/_vercel.elvis-tran.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "totargaming", + "email": "elvistranhere@gmail.com", + "discord": "elvistran.here" + }, + "record": { + "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..583b2a37b --- /dev/null +++ b/domains/_vercel.elyesghorbel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "elyescesar", + "email": "elyesghorbeldev@gmail.com", + "discord": "840182191244705802" + }, + "record": { + "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..535009f99 --- /dev/null +++ b/domains/_vercel.emanuel-prado.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emanu-dev", + "email": "emanuel.prado.dev@gmail.com" + }, + "record": { + "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..6ba1ffa20 --- /dev/null +++ b/domains/_vercel.ericksantos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "erickjonatthan", + "email": "erick.jonathan@ufrpe.br" + }, + "record": { + "TXT": "vc-domain-verify=ericksantos.is-a.dev,b3536d938f21875ae7fb" + } +} \ No newline at end of file diff --git a/domains/_vercel.ethantran.json b/domains/_vercel.ethantran.json new file mode 100644 index 000000000..ebe8e1643 --- /dev/null +++ b/domains/_vercel.ethantran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ethanxcode", + "email": "trannguyendanhuy2904@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ethantran.is-a.dev,5f35b845871b948c0035" + } +} diff --git a/domains/_vercel.f3ntt.json b/domains/_vercel.f3ntt.json new file mode 100644 index 000000000..646ee1ea8 --- /dev/null +++ b/domains/_vercel.f3ntt.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "2nvrs" + }, + "record": { + "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..00d2b1c4f --- /dev/null +++ b/domains/_vercel.fabien.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fabien-h", + "email": "fabien.huet@gmail.com", + "discord": "fabien_huet" + }, + "record": { + "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..9dda1cbf6 --- /dev/null +++ b/domains/_vercel.factory.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orangci", + "email": "c@orangc.net" + }, + "record": { + "TXT": ["vc-domain-verify=factory.is-a.dev,482c23b2de7e2ba81e1e"] + } + } + \ No newline at end of file diff --git a/domains/_vercel.farooq.json b/domains/_vercel.farooq.json index 32d631ffd..7dc05eeff 100644 --- a/domains/_vercel.farooq.json +++ b/domains/_vercel.farooq.json @@ -1,8 +1,7 @@ { "owner": { "username": "fexxix", - "email": "fexxix@gmail.com", - "discord": "" + "email": "fexxix@gmail.com" }, "record": { "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..d5b387e8f --- /dev/null +++ b/domains/_vercel.farouk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "faroukchebaiki", + "email": "farouk.chebaiki@gmail.com" + }, + "record": { + "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..a92fbb09c --- /dev/null +++ b/domains/_vercel.fbik.json @@ -0,0 +1,10 @@ +{ + "description": "Vercel Domain Verification", + "owner": { + "username": "FBIKdot", + "email": "fbik@duck.com" + }, + "record": { + "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..22984ad7e --- /dev/null +++ b/domains/_vercel.felipe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "felipecalderon", + "email": "hola@felipe.bio" + }, + "record": { + "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..529b41706 --- /dev/null +++ b/domains/_vercel.fendimohamed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FendiMohamed", + "email": "fendimohamed615@gmail.com" + }, + "record": { + "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..9d324b412 --- /dev/null +++ b/domains/_vercel.fodilfliti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fodilfliti", + "email": "fodilfliti150@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=fodilfliti.is-a.dev,4fd9fffa402a9f014dc9" + } +} diff --git a/domains/_vercel.formuna.json b/domains/_vercel.formuna.json index 77e95cecd..ca43747eb 100644 --- a/domains/_vercel.formuna.json +++ b/domains/_vercel.formuna.json @@ -4,6 +4,6 @@ "discord": "754657845563097108" }, "record": { - "TXT": "vc-domain-verify=linux.formuna.is-a.dev,5838b861496b1a02cb3c" + "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..aff12071c --- /dev/null +++ b/domains/_vercel.francodurand.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "FrancoDurand" + }, + "record": { + "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..da40de48d --- /dev/null +++ b/domains/_vercel.francoleon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "francoleon08", + "email": "francoleon284@gmail.com" + }, + "record": { + "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..761532709 --- /dev/null +++ b/domains/_vercel.fryvex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x1yl", + "discord": "627947214576025610" + }, + "record": { + "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..8ebcbeaf6 --- /dev/null +++ b/domains/_vercel.funinkina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "funinkina", + "email": "aryankushwaha3101@gmail.com" + }, + "record": { + "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..f151b2210 --- /dev/null +++ b/domains/_vercel.fynnlukah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fynnlukah", + "discord": "727590288209608824" + }, + "record": { + "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..3109ccd84 --- /dev/null +++ b/domains/_vercel.gb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gbijwe", + "email": "gaurav.a.bijwe@gmail.com" + }, + "record": { + "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..234b4f98c --- /dev/null +++ b/domains/_vercel.gcet.aaqif.json @@ -0,0 +1,10 @@ +{ + "description": "Gcet Project", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=gcet.aaqif.is-a.dev,51f4e956bd2e1a1f9160"] + } +} diff --git a/domains/_vercel.glitched-da-kitty-cat.json b/domains/_vercel.glitched-da-kitty-cat.json new file mode 100644 index 000000000..075705d42 --- /dev/null +++ b/domains/_vercel.glitched-da-kitty-cat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GlitchedDaKittyCatSchoolaccount", + "email": "glitcheddacat@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=glitched-da-kitty-cat.is-a.dev,d3ead0cedf604d462fbb" + } +} diff --git a/domains/_vercel.gongal.json b/domains/_vercel.gongal.json new file mode 100644 index 000000000..7ade4831c --- /dev/null +++ b/domains/_vercel.gongal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mayankgongal5", + "email": "mayank@clovers.live" + }, + "record": { + "TXT": "vc-domain-verify=gongal.is-a.dev,91c7a4f0358c6631f158" + } +} \ No newline at end of file diff --git a/domains/_vercel.goutam.json b/domains/_vercel.goutam.json new file mode 100644 index 000000000..d3bd92d50 --- /dev/null +++ b/domains/_vercel.goutam.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "MatrixCoder0101" + }, + "record": { + "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..225281315 --- /dev/null +++ b/domains/_vercel.graxya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GratiaManullang03", + "email": "felixmanullang81@gmail.com" + }, + "record": { + "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..d7e014d30 --- /dev/null +++ b/domains/_vercel.grazitukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GrazielyTukozaki", + "email": "grazitukozaki@gmail.com" + }, + "record": { + "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..e01f7c901 --- /dev/null +++ b/domains/_vercel.guidocaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "guidocaru", + "discord": "696554384817127486" + }, + "record": { + "TXT": "vc-domain-verify=guidocaru.is-a.dev,6106f8de674c39bfb732" + } +} diff --git a/domains/_vercel.gunman.json b/domains/_vercel.gunman.json new file mode 100644 index 000000000..c8c084f3e --- /dev/null +++ b/domains/_vercel.gunman.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MukuJhansi", + "email": "mukundagrawal800@gmail.com", + "discord": "1115658967012626542" + }, + "record": { + "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..483b6a258 --- /dev/null +++ b/domains/_vercel.hafeez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hamid1882", + "email": "hussainhafeez1100@gmail.com", + "discord": "hamid1882" + }, + "record": { + "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..52ed4ba29 --- /dev/null +++ b/domains/_vercel.hareesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hareesh108", + "email": "hareeshbhittam@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=hareesh.is-a.dev,477c6844f0ac3a8191e6" + } +} diff --git a/domains/_vercel.haripajjuri.json b/domains/_vercel.haripajjuri.json new file mode 100644 index 000000000..e0c367b48 --- /dev/null +++ b/domains/_vercel.haripajjuri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "haripajjuri", + "email": "haripajjuri@gmail.com" + }, + "record": { + "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..3826c3402 --- /dev/null +++ b/domains/_vercel.harish.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HarishChandran3304", + "email": "harish3304.work@gmail.com", + "discord": "harish3304" + }, + "record": { + "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..90fb0b2ff --- /dev/null +++ b/domains/_vercel.harshmallick.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harsh-mallick", + "email": "harshmallick052009@gmail.com" + }, + "record": { + "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..351dfb91f --- /dev/null +++ b/domains/_vercel.harshshah.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "harshshah-codes", + "email": "harshshah.dev@gmail.com", + "discord": "889700837520199761" + }, + "record": { + "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..ececcb088 --- /dev/null +++ b/domains/_vercel.harshvardhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Harshvardhan5703", + "email": "shekhawat.harsh287@gmail.com" + }, + "record": { + "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..1267a9e7a --- /dev/null +++ b/domains/_vercel.hasanbithto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "01HB", + "email": "hasanbithto207058@gmail.com" + }, + "record": { + "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..ada56a22b --- /dev/null +++ b/domains/_vercel.hashan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hashaaan", + "email": "shalithadev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=hashan.is-a.dev,f61cc7f79144a261bd12" + } +} diff --git a/domains/_vercel.hcj.json b/domains/_vercel.hcj.json new file mode 100644 index 000000000..e1f49df66 --- /dev/null +++ b/domains/_vercel.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": ["vc-domain-verify=hcj.is-a.dev,010396202f45aacdad27"] + } +} diff --git a/domains/_vercel.hellokhangtran.json b/domains/_vercel.hellokhangtran.json new file mode 100644 index 000000000..72712cc54 --- /dev/null +++ b/domains/_vercel.hellokhangtran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KN2222", + "email": "hellokhangtran03@gmail.com" + }, + "record": { + "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..018042d86 --- /dev/null +++ b/domains/_vercel.henderythmix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Henderythmix", + "email": "robertoselleswork@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=henderythmix.is-a.dev,daad531219c3ad9b7579" + } +} diff --git a/domains/_vercel.hien.json b/domains/_vercel.hien.json new file mode 100644 index 000000000..eaf169fd8 --- /dev/null +++ b/domains/_vercel.hien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hienlh", + "email": "hienlh1298@gmail.com" + }, + "record": { + "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..c3f447ed6 --- /dev/null +++ b/domains/_vercel.hieu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hieutm83", + "email": "minhhieu.832k@gmail.com", + "discord": "729364691398164490" + }, + "record": { + "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..6a4b4d17c --- /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" + }, + "record": { + "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..3756f8c61 --- /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" + }, + "record": { + "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..f40dede78 --- /dev/null +++ b/domains/_vercel.hsn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hasan-bro-coder", + "email": "hasanur23910@gmail.com", + "discord": "hasan894" + }, + "record": { + "TXT": "vc-domain-verify=hsn.is-a.dev,8e27ffda53d18220c019" + } +} diff --git a/domains/_vercel.hujjat.json b/domains/_vercel.hujjat.json new file mode 100644 index 000000000..dc25d5659 --- /dev/null +++ b/domains/_vercel.hujjat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hujjatiii", + "email": "hujjatx@yahoo.com" + }, + "record": { + "TXT": "vc-domain-verify=hujjat.is-a.dev,73fd6f83a3b034bfc044" + } +} diff --git a/domains/_vercel.idriss.json b/domains/_vercel.idriss.json new file mode 100644 index 000000000..613026e0b --- /dev/null +++ b/domains/_vercel.idriss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AstroDriss", + "email": "drisspennywise@gmail.com" + }, + "record": { + "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..1d68a2276 --- /dev/null +++ b/domains/_vercel.ikram.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "record": { + "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..cfe7d58aa --- /dev/null +++ b/domains/_vercel.ikramth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arcfoz", + "email": "ikramtauffiqulh@gmail.com" + }, + "record": { + "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..7fe2a74f0 --- /dev/null +++ b/domains/_vercel.imnahn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imnotnahn", + "email": "thanhnhan.contact.work@gmail.com" + }, + "record": { + "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..550811aa7 --- /dev/null +++ b/domains/_vercel.inputly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NateNear", + "email": "matternate21@gmail.com" + }, + "record": { + "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..472192d0b --- /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" + }, + "record": { + "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..275190d62 --- /dev/null +++ b/domains/_vercel.ios.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ios.is-a.dev,535168654c257a38deb0" + } + } \ No newline at end of file diff --git a/domains/_vercel.isaacrobert33.json b/domains/_vercel.isaacrobert33.json new file mode 100644 index 000000000..2c67403dc --- /dev/null +++ b/domains/_vercel.isaacrobert33.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "isaacrobert33", + "email": "isaacrobertoluwaseun@gmail.com" + }, + "record": { + "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..691d47c9c --- /dev/null +++ b/domains/_vercel.ishbenjamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aurumdev952", + "email": "benjamugi20072@gmail.com" + }, + "record": { + "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..f78c55aa6 --- /dev/null +++ b/domains/_vercel.ishwar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ishwar00", + "email": "ishwargowda100@gmail.com" + }, + "record": { + "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..a1541f08d --- /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" + }, + "record": { + "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..af79e6832 --- /dev/null +++ b/domains/_vercel.ivin-mathew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ivin-Mathew", + "email": "ivinmk2410@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=ivin-mathew.is-a.dev,0ef6e3e9074e997b831b" + } +} diff --git a/domains/_vercel.izerr.json b/domains/_vercel.izerr.json new file mode 100644 index 000000000..f4149a7b2 --- /dev/null +++ b/domains/_vercel.izerr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Explodey-Wolf", + "email": "peanutplays61@gmail.com" + }, + "record": { + "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..1ec386780 --- /dev/null +++ b/domains/_vercel.jacek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smolak", + "email": "jacek.smolak@gmail.com" + }, + "record": { + "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..83231cfe0 --- /dev/null +++ b/domains/_vercel.jacques.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jacques2Marais", + "discord": "itsmejackmorris" + }, + "record": { + "TXT": "vc-domain-verify=jacques.is-a.dev,99cb4c27dc634df28742" + } +} diff --git a/domains/_vercel.jake.json b/domains/_vercel.jake.json index 08c660da0..d38b4ed5b 100644 --- a/domains/_vercel.jake.json +++ b/domains/_vercel.jake.json @@ -1,7 +1,6 @@ { "owner": { - "username": "xzrci", - "email": "" + "username": "xzrci" }, "record": { "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..1db958279 --- /dev/null +++ b/domains/_vercel.jal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jal-GG", + "email": "jalvrund2017@gmail.com" + }, + "record": { + "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..607c01ff0 --- /dev/null +++ b/domains/_vercel.jar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jartf", + "email": "hi@jar.tf" + }, + "record": { + "TXT": "vc-domain-verify=jar.is-a.dev,faf9fc9ca0c53d380bd7" + } +} diff --git a/domains/_vercel.jax.json b/domains/_vercel.jax.json new file mode 100644 index 000000000..26bd8beeb --- /dev/null +++ b/domains/_vercel.jax.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "jxaq" + }, + "record": { + "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..e99b7b66d --- /dev/null +++ b/domains/_vercel.jeanclaude.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jeanclaudegeagea", + "email": "jeanclaude.geagea@gmail.com" + }, + "record": { + "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..be4e7738f --- /dev/null +++ b/domains/_vercel.jefino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jefino9488", + "email": "jefinojacob9488@gmail.com" + }, + "record": { + "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..677fb7916 --- /dev/null +++ b/domains/_vercel.jemalahmedov.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jimjja", + "email": "jemalja.dev@gmail.com", + "discord": "665635903955533845" + }, + "record": { + "TXT": "vc-domain-verify=jemalahmedov.is-a.dev,3f41428af72725b71a10" + } +} diff --git a/domains/_vercel.jigarbhoye.json b/domains/_vercel.jigarbhoye.json new file mode 100644 index 000000000..b278d11ff --- /dev/null +++ b/domains/_vercel.jigarbhoye.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jigarbhoye04", + "discord": "jigx.04", + "email": "jigarbhoye04@gmail.com" + }, + "record": { + "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..f2903e319 --- /dev/null +++ b/domains/_vercel.jmc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "josem430", + "email": "jmc300499@gmail.com", + "discord": "josem430" + }, + "record": { + "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..c6f344953 --- /dev/null +++ b/domains/_vercel.johntran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "johntranz", + "email": "john.tran.engineer@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=johntran.is-a.dev,dcd9c5b1d53d9961e19a" + } +} diff --git a/domains/_vercel.jonasfroeller.json b/domains/_vercel.jonasfroeller.json index addf90ec4..2d7e4817c 100644 --- a/domains/_vercel.jonasfroeller.json +++ b/domains/_vercel.jonasfroeller.json @@ -1,7 +1,6 @@ { "owner": { "username": "jonasfroeller", - "discord": "", "email": "j.froe@gmx.at" }, "record": { diff --git a/domains/_vercel.jong.json b/domains/_vercel.jong.json new file mode 100644 index 000000000..fc9a56f64 --- /dev/null +++ b/domains/_vercel.jong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jongo22", + "email": "jingyiong22@gmail.com" + }, + "record": { + "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..5e4734569 --- /dev/null +++ b/domains/_vercel.jorge-lopz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Jorge-lopz", + "email": "jlpenero2005@gmail.com", + "discord": "713831494761840753" + }, + "record": { + "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..260e0ea4c --- /dev/null +++ b/domains/_vercel.joy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Harmfulllll", + "email": "harmfulllll114@gmail.com", + "discord": "1007561787257933885" + }, + "record": { + "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..2c386d18f --- /dev/null +++ b/domains/_vercel.juan-morales.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Juanmorales1810", + "email": "juan.exequiel.morales@gmail.com", + "discord": "746910653343596574" + }, + "record": { + "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..03ccc9ed6 --- /dev/null +++ b/domains/_vercel.juanca.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wJuanca", + "email": "juancarlosturcios2001@gmail.com" + }, + "record": { + "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..c03633393 --- /dev/null +++ b/domains/_vercel.juanespachon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanesPachon", + "email": "yeroparce1@gmail.com" + }, + "record": { + "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..6828f934e --- /dev/null +++ b/domains/_vercel.juanhuete.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "juanjose23", + "email": "jrios9836@gmail.com", + "discord":"988647501236162641" + + }, + "record": { + "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..6ba26c133 --- /dev/null +++ b/domains/_vercel.juanpabloleonmaya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juanleon8581", + "email": "juanleon8581@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=juanpabloleonmaya.is-a.dev,60444b8f6c0ae7c91c12" + } +} diff --git a/domains/_vercel.jumanji.json b/domains/_vercel.jumanji.json new file mode 100644 index 000000000..f39fdf51e --- /dev/null +++ b/domains/_vercel.jumanji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge50@silomails.com" + }, + "record": { + "TXT": "vc-domain-verify=jumanji.is-a.dev,291766e76a7ab5de1bc7" + } +} diff --git a/domains/_vercel.justwinstuff.json b/domains/_vercel.justwinstuff.json new file mode 100644 index 000000000..e93831283 --- /dev/null +++ b/domains/_vercel.justwinstuff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "enderfoxbg", + "discord": "970380468090437672" + }, + "record": { + "TXT": ["vc-domain-verify=justwinstuff.is-a.dev,f7737c243dc3c1080dd7"] + } +} diff --git a/domains/_vercel.kareem.json b/domains/_vercel.kareem.json new file mode 100644 index 000000000..0e9a9caa1 --- /dev/null +++ b/domains/_vercel.kareem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kareem-m", + "email": "kareemmoh1911@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=kareem.is-a.dev,227f1873f5be3f29395e" + } +} diff --git a/domains/_vercel.kawsar.json b/domains/_vercel.kawsar.json new file mode 100644 index 000000000..3fb04fcb6 --- /dev/null +++ b/domains/_vercel.kawsar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KawsarDev", + "email": "kawsar.dev1@gmail.com", + "discord": "520373269979988000" + }, + "record": { + "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..99439a77c --- /dev/null +++ b/domains/_vercel.ken-kuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ken-kuro", + "linkedin": "hieuhm2610" + }, + "record": { + "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..ab30e351c --- /dev/null +++ b/domains/_vercel.kendikasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "record": { + "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..5a3ee6a88 --- /dev/null +++ b/domains/_vercel.kevinmolina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kevinmolinadev", + "email": "kevinmolina.dev@gmail.com" + }, + "record": { + "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..f197c11b8 --- /dev/null +++ b/domains/_vercel.khaif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khxif", + "email": "code.khaif@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=khaif.is-a.dev,fe39b6b2d8e96026a707" + } +} diff --git a/domains/_vercel.khanhngn.json b/domains/_vercel.khanhngn.json new file mode 100644 index 000000000..ba6c408ee --- /dev/null +++ b/domains/_vercel.khanhngn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khanhngn-dev", + "email": "khanhngn.dev@gmail.com", + "discord": "jerry.ng" + }, + "record": { + "TXT": "vc-domain-verify=khanhngn.is-a.dev,22d6c072955bf792ff60" + } +} diff --git a/domains/_vercel.khoacao.json b/domains/_vercel.khoacao.json new file mode 100644 index 000000000..a3ae78ba0 --- /dev/null +++ b/domains/_vercel.khoacao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khoacao2k4", + "email": "cqnhatkhoa@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=khoacao.is-a.dev,9b86aeda2d7aa9f99748"] + } +} diff --git a/domains/_vercel.kilamieaz.json b/domains/_vercel.kilamieaz.json new file mode 100644 index 000000000..914ecfc7a --- /dev/null +++ b/domains/_vercel.kilamieaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kilamieaz", + "email": "im.sultaan05@gmail.com" + }, + "record": { + "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..4389f34e5 --- /dev/null +++ b/domains/_vercel.kinfhertix.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Kinfhertix", + "email": "kinfhertix@gmail.com", + "discord": "i_mert" + }, + "record": { + "TXT": "vc-domain-verify=kinfhertix.is-a.dev,059b1c9b761eee935ee8" + } +} \ No newline at end of file diff --git a/domains/_vercel.krebinkkj.json b/domains/_vercel.krebinkkj.json new file mode 100644 index 000000000..47b632395 --- /dev/null +++ b/domains/_vercel.krebinkkj.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "krebinkkj", + "email": "krebinkkj@gmail.com", + "discord": "1041878326169587732" + }, + "record": { + "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..f9ccf8bdf --- /dev/null +++ b/domains/_vercel.kunalshah017.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kunalshah017", + "email": "kunalmanishshah@gmail.com", + "discord": "kunalshah17" + }, + "record": { + "TXT": "vc-domain-verify=kunalshah017.is-a.dev,4c9e39c65c2d0426535e" + } +} diff --git a/domains/_vercel.lakshya.json b/domains/_vercel.lakshya.json new file mode 100644 index 000000000..46a465ab1 --- /dev/null +++ b/domains/_vercel.lakshya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lakshyaCreates", + "email": "lakshya.creates07@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=lakshya.is-a.dev,c263f1e52b86bcfa3ce6"] + } +} diff --git a/domains/_vercel.layhout.json b/domains/_vercel.layhout.json new file mode 100644 index 000000000..5b4e0205d --- /dev/null +++ b/domains/_vercel.layhout.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "layhout", + "email": "layhoutworkmail@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=layhout.is-a.dev,be218a450dbf76cb68f1"] + } +} diff --git a/domains/_vercel.lexy.json b/domains/_vercel.lexy.json new file mode 100644 index 000000000..de0399d0d --- /dev/null +++ b/domains/_vercel.lexy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Olalexy1", + "email": "ajayiolalekan729@gmail.com", + "discord": "olalexy1" + }, + "record": { + "TXT": "vc-domain-verify=lexy.is-a.dev,a923e9c352f68e881f90" + } +} diff --git a/domains/_vercel.linhtutkyaw.json b/domains/_vercel.linhtutkyaw.json new file mode 100644 index 000000000..27a90de63 --- /dev/null +++ b/domains/_vercel.linhtutkyaw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "linhtutkyawdev", + "email": "linhtutkyaw.dev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=linhtutkyaw.is-a.dev,0d9ce126d75cfb7fe853" + } +} diff --git a/domains/_vercel.ljean.json b/domains/_vercel.ljean.json new file mode 100644 index 000000000..1723d2178 --- /dev/null +++ b/domains/_vercel.ljean.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Granpiecito", + "email": "jeanpierresprrymanaleman@gmail.com", + "discord": "294318911791562752" + }, + "record": { + "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..0f941aec3 --- /dev/null +++ b/domains/_vercel.llucx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "llucxdev", + "email": "puertesarrue@gmail.com", + "discord": "lluuuc_12" + }, + "record": { + "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..e750f7c86 --- /dev/null +++ b/domains/_vercel.lobo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lobooooooo14", + "discord": "783120232134082580" + }, + "record": { + "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..b6b264d1d --- /dev/null +++ b/domains/_vercel.locionic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "locionic", + "email": "noone000a@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=locionic.is-a.dev,1d6fe75265bd8065f222" + } +} diff --git a/domains/_vercel.loomeh.json b/domains/_vercel.loomeh.json new file mode 100644 index 000000000..b1f138aab --- /dev/null +++ b/domains/_vercel.loomeh.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "record": { + "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.lraffdev.json b/domains/_vercel.lraffdev.json new file mode 100644 index 000000000..eea31638d --- /dev/null +++ b/domains/_vercel.lraffdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LRaffDev", + "email": "raffaele.la.cerra@outlook.it" + }, + "record": { + "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..4e19db2a3 --- /dev/null +++ b/domains/_vercel.lucvuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lucvuro", + "email": "lucvuit@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=lucvuro.is-a.dev,da1967c10a4607cdefe4" + } +} \ No newline at end of file diff --git a/domains/_vercel.luked.json b/domains/_vercel.luked.json new file mode 100644 index 000000000..7319b537f --- /dev/null +++ b/domains/_vercel.luked.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luked177", + "twitter": "lukedore_" + }, + "record": { + "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..18e948862 --- /dev/null +++ b/domains/_vercel.luvtoxic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luvtoxic", + "email": "ammarbags2023@gmail.com" + }, + "record": { + "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..37a225862 --- /dev/null +++ b/domains/_vercel.lycoris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lycorissss", + "email": "beelzebub5758@gmail.com" + }, + "record": { + "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..e5908e00a --- /dev/null +++ b/domains/_vercel.lyxtem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lyxtem", + "email": "nu284955@gmail.com" + }, + "record": { + "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..e4cc74486 --- /dev/null +++ b/domains/_vercel.maanripe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "argkont", + "email": "kohacaelo+is-a-dev@gmail.com" + }, + "record": { + "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..273788c96 --- /dev/null +++ b/domains/_vercel.macielsuassuna.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maciel64", + "discord": "macielmano", + "email": "macielsuassuna14@gmail.com" + }, + "record": { + "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..8ad7cc448 --- /dev/null +++ b/domains/_vercel.mack.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mackcodes", + "email": "mackcodes03@gmail.com" + }, + "record": { + "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..3b84e7123 --- /dev/null +++ b/domains/_vercel.magedibrahim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maqed", + "email": "magedibra@yahoo.com", + "discord": "272808689688248320" + }, + "record": { + "TXT": "vc-domain-verify=magedibrahim.is-a.dev,7bdbe7e115da902cbd7d" + } +} diff --git a/domains/_vercel.magitian.json b/domains/_vercel.magitian.json new file mode 100644 index 000000000..5ef31e20f --- /dev/null +++ b/domains/_vercel.magitian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "magitian", + "email": "magitian@duck.com" + }, + "record": { + "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..4b0edee20 --- /dev/null +++ b/domains/_vercel.maher-xubair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maher-xubair", + "email": "za998192@gmail.com" + }, + "record": { + "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..55cbc8131 --- /dev/null +++ b/domains/_vercel.maheshpaul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maheshpaulj", + "email": "mahesh.paul.j@gmail.com" + }, + "record": { + "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..2202fa9d2 --- /dev/null +++ b/domains/_vercel.mak5er.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mak5er", + "telegram": "@Mak5er" + }, + "record": { + "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..3e5ce4d3d --- /dev/null +++ b/domains/_vercel.manhnguyen18.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nguyenmanh18", + "email": "nguyenmanh1891997@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=manhnguyen18.is-a.dev,32b5b9a6627ffaa77e66" + } +} diff --git a/domains/_vercel.maqbool.json b/domains/_vercel.maqbool.json new file mode 100644 index 000000000..7079b6e33 --- /dev/null +++ b/domains/_vercel.maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "record": { + "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..4fd77a902 --- /dev/null +++ b/domains/_vercel.markasaad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voltonik", + "email": "markasaadramzy@gmail.com" + }, + "record": { + "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..bb1c76446 --- /dev/null +++ b/domains/_vercel.marlonbaatjes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mdesignscode", + "email": "marlonbaatjes62@gmail.com" + }, + "record": { + "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..3298128f0 --- /dev/null +++ b/domains/_vercel.martinvruiz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "martinvruiz", + "email": "martinvruiz10@gmail.com", + "discord": "martinvruiz10" + }, + "record": { + "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..2e6217207 --- /dev/null +++ b/domains/_vercel.mateogariboglio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mateo-404", + "discord": "gary_______" + }, + "record": { + "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..e45e6dd3d --- /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" + }, + "record": { + "TXT": ["vc-domain-verify=matheusdev.is-a.dev,833172e5fe4b188e4883"] + } +} diff --git a/domains/_vercel.matt3o0.json b/domains/_vercel.matt3o0.json new file mode 100644 index 000000000..d03be1a44 --- /dev/null +++ b/domains/_vercel.matt3o0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duvbolone", + "email": "duvbolone@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=matt3o0.is-a.dev,f6f05e41e90e74cd0c09"] + } +} diff --git a/domains/_vercel.meghdip.json b/domains/_vercel.meghdip.json new file mode 100644 index 000000000..8b740ed19 --- /dev/null +++ b/domains/_vercel.meghdip.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "karmakarmeghdip", + "email": "karmakarmeghdip@gmail.com", + "discord": "479631349167423509" + }, + "record": { + "TXT": "vc-domain-verify=meghdip.is-a.dev,c42a80a81afe4ac5800c" + } +} \ No newline at end of file diff --git a/domains/_vercel.menn.json b/domains/_vercel.menn.json new file mode 100644 index 000000000..127af943f --- /dev/null +++ b/domains/_vercel.menn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hedgehog-menn", + "email": "kp.thananchai@gmail.com", + "discord": "26623men" + }, + "record": { + "TXT": "vc-domain-verify=menn.is-a.dev,888e516936e6a1278bc0" + } +} diff --git a/domains/_vercel.michi.json b/domains/_vercel.michi.json index 7393a3bdc..9e313e8c0 100644 --- a/domains/_vercel.michi.json +++ b/domains/_vercel.michi.json @@ -1,7 +1,7 @@ { "owner": { - "username": "jonasfroeller", - "email": "j.froe@gmx.at" + "username": "Michi4", + "email": "michael.ruep@gmail.com" }, "record": { "TXT": ["vc-domain-verify=michi.is-a.dev,d0e5ddd1aa39de41c31a"] diff --git a/domains/_vercel.mig.json b/domains/_vercel.mig.json new file mode 100644 index 000000000..73ebbfbbc --- /dev/null +++ b/domains/_vercel.mig.json @@ -0,0 +1,13 @@ +{ + "description": "This subdomain points to my portfolio website. https://nextjs-portfolio-ten-navy.vercel.app/ is the link for a preview of the website", + "owner": { + "username": "miguelaram2016", + "email": "miguelcodes7@gmail.com", + "twitter": "miguelcodes7", + "discord": "747499334383304755", + "instagram": "miguelcodes7" + }, + "record": { + "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..8ff25ab80 --- /dev/null +++ b/domains/_vercel.minhtan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "record": { + "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..9f5a8e9d0 --- /dev/null +++ b/domains/_vercel.mjresu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mjdsj", + "email": "work.mjdsj+is-a-dev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=mjresu.is-a.dev,2122712d466f4e306e1d" + } +} \ No newline at end of file diff --git a/domains/_vercel.moein.json b/domains/_vercel.moein.json new file mode 100644 index 000000000..d1e7b76d8 --- /dev/null +++ b/domains/_vercel.moein.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TrueMoein", + "email": "truemoein@gmail.com", + "discord": "truemoein" + }, + "record": { + "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..90f07ae1b --- /dev/null +++ b/domains/_vercel.monosen.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Monosen", + "email": "edisonbj21@gmail.com", + "discord": "monosen" + }, + "record": { + "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..bc35f9022 --- /dev/null +++ b/domains/_vercel.mr-julus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BougSoon-Studio", + "email": "bougsoon.studio@gmail.com" + }, + "record": { + "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..ce10ec627 --- /dev/null +++ b/domains/_vercel.mrincer.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khincer", + "email": "kirk.incerg@gmail.com", + "discord": "kyllhua" + }, + "record": { + "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..cce036d23 --- /dev/null +++ b/domains/_vercel.mrtspeedy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mrtspeedy", + "email": "toxicspeedytv@gmail.com", + "discord": "1095502790534627348" + }, + "record": { + "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..14bc33e4f --- /dev/null +++ b/domains/_vercel.mudasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzamudassir", + "discord": "0xmudassir" + }, + "record": { + "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..b58578cb6 --- /dev/null +++ b/domains/_vercel.muhammed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MhmdFais", + "email": "mofam534@gmail.com" + }, + "record": { + "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..6ea3dc9f4 --- /dev/null +++ b/domains/_vercel.munir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "munirsiddiqui54", + "email": "munir230204@gmail.com" + }, + "record": { + "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..509dc63ec --- /dev/null +++ b/domains/_vercel.muralikrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muralimallela", + "email": "mmallela9@gmail.com" + }, + "record": { + "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..b09877894 --- /dev/null +++ b/domains/_vercel.muthomi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "michaelmuthomi", + "discord": "michaelgikunda" + }, + "record": { + "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..4ec6a28e9 --- /dev/null +++ b/domains/_vercel.mzaman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzazaman", + "email": "mirzazaman828@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=mzaman.is-a.dev,23ba156f3878cfc860f7" + } +} diff --git a/domains/_vercel.nabin.json b/domains/_vercel.nabin.json new file mode 100644 index 000000000..40f80cb54 --- /dev/null +++ b/domains/_vercel.nabin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nabinkatwal7", + "email": "mediocampistaa@gmail.com" + }, + "record": { + "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..9d350c2da --- /dev/null +++ b/domains/_vercel.naimur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mohammad-naimur-rahman", + "discord": "829283275846975488" + }, + "record": { + "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..11e5c7e15 --- /dev/null +++ b/domains/_vercel.namansethi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "namansethi13", + "discord": "namansethi", + "email": "namansethi1328@gmail.com" + }, + "record": { + "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..22afa85f7 --- /dev/null +++ b/domains/_vercel.namansrivastava.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "naman-0804", + "email": "namansrivastava1608@gmail.com", + "discord": "naman_1101" + }, + "record": { + "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..e347eead7 --- /dev/null +++ b/domains/_vercel.namht.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lagux-coding", + "email": "nguyenhientrungnam@gmail.com" + }, + "record": { + "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..09ec77d6e --- /dev/null +++ b/domains/_vercel.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "record": { + "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..b66ccecf9 --- /dev/null +++ b/domains/_vercel.nathanospino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "C4lumny", + "email": "ospinonathan@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=nathanospino.is-a.dev,4130bdbb1e9dc4fcfcc0" + } +} diff --git a/domains/_vercel.nestornahuel.json b/domains/_vercel.nestornahuel.json new file mode 100644 index 000000000..32be602d4 --- /dev/null +++ b/domains/_vercel.nestornahuel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NestorNahuel", + "email": "nahuel6195@gmail.com" + }, + "record": { + "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..73b172f57 --- /dev/null +++ b/domains/_vercel.newtun-code-cheat-sheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "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..60530537c --- /dev/null +++ b/domains/_vercel.newtun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "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..93eec5434 --- /dev/null +++ b/domains/_vercel.ngoutam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Goutam-04", + "email": "goutamnayak2804+github1@gmail.com" + }, + "record": { + "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..8758c2795 --- /dev/null +++ b/domains/_vercel.nguyenminhtuan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "record": { + "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..cfe5b995d --- /dev/null +++ b/domains/_vercel.nicolas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "niicojs", + "discord": ".niico." + }, + "record": { + "TXT": "vc-domain-verify=nicolas.is-a.dev,1acb257fda76a2df31ce" + } +} diff --git a/domains/_vercel.nine.json b/domains/_vercel.nine.json new file mode 100644 index 000000000..98e167692 --- /dev/null +++ b/domains/_vercel.nine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NineLEL", + "email": "notninelel@gmail.com" + }, + "record": { + "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..f6746a6b8 --- /dev/null +++ b/domains/_vercel.nithinramkalava.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nithinramkalava", + "email": "nithinramkalava@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=nithinramkalava.is-a.dev,2c94b1dbc37b602f2519" + } +} \ No newline at end of file diff --git a/domains/_vercel.notzer0two.json b/domains/_vercel.notzer0two.json new file mode 100644 index 000000000..5126eb959 --- /dev/null +++ b/domains/_vercel.notzer0two.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "record": { + "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..292811a2b --- /dev/null +++ b/domains/_vercel.nparashar150.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nparashar150", + "email": "nparashar150@gmail.com" + }, + "record": { + "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..d70c72b0f --- /dev/null +++ b/domains/_vercel.olasubomi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "firstaxel", + "email": "olasubomiolubisi@geeg.space", + "discord": "1209136236607049758" + }, + "record": { + "TXT": "vc-domain-verify=olasubomi.is-a.dev,f6bc7744ff52f86278e8" + } +} diff --git a/domains/_vercel.omshahane.json b/domains/_vercel.omshahane.json index d857ad4b4..ff7b3914f 100644 --- a/domains/_vercel.omshahane.json +++ b/domains/_vercel.omshahane.json @@ -1,8 +1,7 @@ { "owner": { "username": "shahane806", - "email": "om.p.shahane@gmail.com", - "discord": "" + "email": "om.p.shahane@gmail.com" }, "record": { "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..88dd53e8f --- /dev/null +++ b/domains/_vercel.onerandom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OneRandom1509", + "email": "anantukid@gmail.com" + }, + "record": { + "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..01edd2d6c --- /dev/null +++ b/domains/_vercel.orellanamatias.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OrellanaMatias", + "email": "meorellanaramirez@gmail.com", + "discord": "1151115185419997184" + }, + "record": { + "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..dc7d92620 --- /dev/null +++ b/domains/_vercel.osama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "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..08102bc43 --- /dev/null +++ b/domains/_vercel.panntod.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "panntod", + "email": "munjalindra.pandhu@gmail.com", + "discord": "975960358999171152" + }, + "record": { + "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..45372957f --- /dev/null +++ b/domains/_vercel.paul8liveira.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paul8liveira", + "email": "paul8liveira@gmail.com" + }, + "record": { + "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..d509db3b4 --- /dev/null +++ b/domains/_vercel.pdf.aaqif.json @@ -0,0 +1,10 @@ +{ + "description": "PDF Project", + "owner": { + "username": "aaqifshafi", + "email": "aaqifshafi@gmail.com" + }, + "record": { + "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..65a7c574b --- /dev/null +++ b/domains/_vercel.pedrofff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pedrofff23", + "email": "pmendes09@hotmail.com" + }, + "record": { + "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..175f69b0d --- /dev/null +++ b/domains/_vercel.phongli.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PhongLi", + "email": "longpt1109@gmail.com", + "discord": "_younglin" + }, + "record": { + "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..3bcc168f6 --- /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" + }, + "record": { + "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..6eab6a882 --- /dev/null +++ b/domains/_vercel.pranoy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pranoymajumdar", + "email": "pranoyfr@gmail.com", + "discord": "1303089079809740904" + }, + "record": { + "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..601806a4b --- /dev/null +++ b/domains/_vercel.prashil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prashilthul", + "email": "prashil1411@gmail.com" + }, + "record": { + "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..21f743df7 --- /dev/null +++ b/domains/_vercel.pratham.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Prathamdas3", + "email": "daspratham3@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=pratham.is-a.dev,b632047325056df87293" + } + } + \ No newline at end of file diff --git a/domains/_vercel.pratham15541.json b/domains/_vercel.pratham15541.json new file mode 100644 index 000000000..778586e39 --- /dev/null +++ b/domains/_vercel.pratham15541.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pratham15541", + "email": "prathamparikh94@gmail.com", + "discord": "951846985172938782" + }, + "record": { + "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..1f9e94b8b --- /dev/null +++ b/domains/_vercel.prathm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prathm", + "email": "prathmtayade30@gmail.com" + }, + "record": { + "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..2ce2088a4 --- /dev/null +++ b/domains/_vercel.praveen-2006.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "InfiniteCoder06", + "email": "mallidipraveenkumar@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=praveen-2006.is-a.dev,6ed24154aab38b23b2d3" + } +} diff --git a/domains/_vercel.princeprajapati.json b/domains/_vercel.princeprajapati.json index 5c838ece0..e97b06de6 100644 --- a/domains/_vercel.princeprajapati.json +++ b/domains/_vercel.princeprajapati.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "notreallyprince", - "email": "prince30112001@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=princeprajapati.is-a.dev,9b919407776e11ecff7a" - } + "owner": { + "username": "notreallyprince", + "email": "prince30112001@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=princeprajapati.is-a.dev,f0d9843f925488ed34bb" } +} diff --git a/domains/_vercel.princexd.json b/domains/_vercel.princexd.json index 46c385427..a2b661622 100644 --- a/domains/_vercel.princexd.json +++ b/domains/_vercel.princexd.json @@ -4,6 +4,6 @@ "email": "prince30112001@gmail.com" }, "record": { - "TXT": "vc-domain-verify=princexd.is-a.dev,acf5910bb60fc8fecfd1" + "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..5d7bbd736 --- /dev/null +++ b/domains/_vercel.pritam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ImDarkShadow", + "email": "itspritam@proton.me" + }, + "record": { + "TXT": "pvc-domain-verify=pritam.is-a.dev,8deacca92e10a3d2f865" + } +} diff --git a/domains/_vercel.pythonweb.json b/domains/_vercel.pythonweb.json new file mode 100644 index 000000000..175a58013 --- /dev/null +++ b/domains/_vercel.pythonweb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeGeekR", + "discord": "768080481924677632" + }, + "record": { + "TXT": "vc-domain-verify=pythonweb.is-a.dev,395acbd091553c5523bb" + } +} diff --git a/domains/_vercel.q.json b/domains/_vercel.q.json new file mode 100644 index 000000000..78da64be3 --- /dev/null +++ b/domains/_vercel.q.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syedtahseen", + "email": "itxtahseen@gmail.com" + }, + "record": { + "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..be0119b9b --- /dev/null +++ b/domains/_vercel.raafey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RaafeyRaza", + "email": "raafeyraza1@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=raafey.is-a.dev,aa0e06a894333b259a4b" + } +} diff --git a/domains/_vercel.rafsanza.json b/domains/_vercel.rafsanza.json new file mode 100644 index 000000000..7d8c6df95 --- /dev/null +++ b/domains/_vercel.rafsanza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rafsanza-hub", + "email": "rapsanza@gmail.com" + }, + "record": { + "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..8ef445cf7 --- /dev/null +++ b/domains/_vercel.raghu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raghu-8", + "email": "raghu.project.websites@gmail.com" + }, + "record": { + "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..af30a8c6f --- /dev/null +++ b/domains/_vercel.rahulgurujala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rahulgurujala", + "email": "isaacnewtonrahul@gmail.com" + }, + "record": { + "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..5a228e0f1 --- /dev/null +++ b/domains/_vercel.rajeshkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354586@gmail.com" + }, + "record": { + "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..d9e8499ea --- /dev/null +++ b/domains/_vercel.rajeshreddy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rajesh-reddy1", + "email": "mrrajeshreddy1@gmail.com", + "discord": "suuiii_1" + }, + "record": { + "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..1a277e35c --- /dev/null +++ b/domains/_vercel.rajputshashank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rajputshashank003", + "email": "hariomshashank@gmail.com" + }, + "record": { + "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..8f827d17a --- /dev/null +++ b/domains/_vercel.ramirocosa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RadikeCosa", + "email": "ramirocosa@gmail.com" + }, + "record": { + "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..474dc5828 --- /dev/null +++ b/domains/_vercel.ramya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ramya-Me", + "email": "ramyashah.dev@gmail.com" + }, + "record": { + "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..f434ce0da --- /dev/null +++ b/domains/_vercel.ranjityadav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "13yadav", + "email": "yadavranjit521@gmail.com", + "discord": "529604454908035083" + }, + "record": { + "TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43" + } +} diff --git a/domains/_vercel.rashed.json b/domains/_vercel.rashed.json new file mode 100644 index 000000000..0cc4de9b5 --- /dev/null +++ b/domains/_vercel.rashed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rashed360", + "email": "ruman.rush+isadev@gmail.com" + }, + "record": { + "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..aae226de0 --- /dev/null +++ b/domains/_vercel.rathee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abhinavrathee", + "email": "abhinavrathee00007@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=rathee.is-a.dev,1ee9ef074e87326c7f99" + } +} diff --git a/domains/_vercel.raynaldescala.json b/domains/_vercel.raynaldescala.json new file mode 100644 index 000000000..cb6d3b8e2 --- /dev/null +++ b/domains/_vercel.raynaldescala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raynaldescala", + "email": "raynaldescala01@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=raynaldescala.is-a.dev,7c5440b0cdb643d66472" + } +} diff --git a/domains/_vercel.reiiv-beta.json b/domains/_vercel.reiiv-beta.json new file mode 100644 index 000000000..663d51476 --- /dev/null +++ b/domains/_vercel.reiiv-beta.json @@ -0,0 +1,9 @@ + { + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "record": { + "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..89bdada6e --- /dev/null +++ b/domains/_vercel.reiiv-dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "record": { + "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..6ca585191 --- /dev/null +++ b/domains/_vercel.reiiv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=reiiv.is-a.dev,82bf39e1f2c36339a232" + } +} \ No newline at end of file diff --git a/domains/_vercel.rejectmodders.json b/domains/_vercel.rejectmodders.json new file mode 100644 index 000000000..5beb0a600 --- /dev/null +++ b/domains/_vercel.rejectmodders.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RejectModders", + "email": "rejectmodders@disutils.com", + "discord": "RejectModders" + }, + "record": { + "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..45de79fb6 --- /dev/null +++ b/domains/_vercel.renant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "renant", + "email": "renan_replay@live.com" + }, + "record": { + "TXT": "vc-domain-verify=renant.is-a.dev,fe738eebddc5a20097e6" + } +} diff --git a/domains/_vercel.renzcole.json b/domains/_vercel.renzcole.json new file mode 100644 index 000000000..fcd93c596 --- /dev/null +++ b/domains/_vercel.renzcole.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeBuddySLTNS", + "email": "renz2arjhay@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=renzcole.is-a.dev,ed459816c1440ddeef46" + } +} diff --git a/domains/_vercel.reyuki.json b/domains/_vercel.reyuki.json new file mode 100644 index 000000000..ec2ee0c90 --- /dev/null +++ b/domains/_vercel.reyuki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyukii", + "email": "me@reyuki.site" + }, + "record": { + "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..c486602f9 --- /dev/null +++ b/domains/_vercel.riccardo126.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riccardo126", + "email": "riccardopassacantando@gmail.com" + }, + "record": { + "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..36fdbfd66 --- /dev/null +++ b/domains/_vercel.ridwan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ridwanyinus", + "email": "ridwanyinusa15@gmail.com" + }, + "record": { + "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..193bb9876 --- /dev/null +++ b/domains/_vercel.risqiahmad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "record": { + "TXT": "vc-domain-verify=risqiahmad.is-a.dev,8bd8af8f24fe915c1ac4" + } +} diff --git a/domains/_vercel.ritam.json b/domains/_vercel.ritam.json new file mode 100644 index 000000000..b7dbe65bd --- /dev/null +++ b/domains/_vercel.ritam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nxrmqlly", + "email": "ritam@duck.com" + }, + "record": { + "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..f165ccda7 --- /dev/null +++ b/domains/_vercel.rith.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rithb898", + "email": "rithb2004@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=rith.is-a.dev,9233c12a34113300d9af" + } +} \ No newline at end of file diff --git a/domains/_vercel.rizz.json b/domains/_vercel.rizz.json index 137b386a2..7b0780adb 100644 --- a/domains/_vercel.rizz.json +++ b/domains/_vercel.rizz.json @@ -4,6 +4,6 @@ "discord": "skibidibagel" }, "record": { - "TXT": "vc-domain-verify=rizz.is-a.dev,cbd2a4123c68d5d0fef0" + "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..1755d48b5 --- /dev/null +++ b/domains/_vercel.roger.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rogerHuntGauntlet", + "email": "regorhunt02052@gmail.com", + "discord": "roger_jgs404040" + }, + "record": { + "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..fbe508461 --- /dev/null +++ b/domains/_vercel.ronaldo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ronaldoao", + "email": "ronaldoa.ojeda@gmail.com" + }, + "record": { + "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..ac19008cb --- /dev/null +++ b/domains/_vercel.roque.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "luisfroquez", + "email": "luisfroquez@gmail.com", + "discord": "lroque.dev" + }, + "record": { + "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..5ebd9df2d --- /dev/null +++ b/domains/_vercel.rushabh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rushabhcodes", + "email": "rushabhpatil.dev@gmail.com", + "discord": "_rushabh" + }, + "record": { + "TXT": "vc-domain-verify=rushabh.is-a.dev,e47a4ecf75c610a591e3" + } +} diff --git a/domains/_vercel.ryanbaig.json b/domains/_vercel.ryanbaig.json new file mode 100644 index 000000000..e457d348b --- /dev/null +++ b/domains/_vercel.ryanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RyanBaig", + "discord": "757475933170040893" + }, + "record": { + "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..157262262 --- /dev/null +++ b/domains/_vercel.s1dd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nots1dd", + "email": "sid9.karanam@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=s1dd.is-a.dev,e08de74daf627d6e653d" + } +} diff --git a/domains/_vercel.sadik.json b/domains/_vercel.sadik.json new file mode 100644 index 000000000..f7aa0bcb9 --- /dev/null +++ b/domains/_vercel.sadik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "square-story", + "email": "gibmepreo@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=sadik.is-a.dev,7e3d1f287fcea04a1ec3" + } +} \ No newline at end of file diff --git a/domains/_vercel.saif.json b/domains/_vercel.saif.json new file mode 100644 index 000000000..6e2518c73 --- /dev/null +++ b/domains/_vercel.saif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saifkhanz", + "email": "saif137.khan@gmail.com" + }, + "record": { + "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..6158395b2 --- /dev/null +++ b/domains/_vercel.salman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "salmaniyad", + "email": "eng.salmaniyad@gmail.com" + }, + "record": { + "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..aba0f8e53 --- /dev/null +++ b/domains/_vercel.samirkhanal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khanal-samir", + "email": "gdssamir@gmail.com" + }, + "record": { + "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..dcfe4321c --- /dev/null +++ b/domains/_vercel.samishoukat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samishoukat12", + "email": "samishoukat12@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=samishoukat.is-a.dev,f7c3cb972c650104d507" + } +} diff --git a/domains/_vercel.sanchit.json b/domains/_vercel.sanchit.json new file mode 100644 index 000000000..b0add6e6f --- /dev/null +++ b/domains/_vercel.sanchit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sanchitbajaj02", + "email": "sanchit02@outlook.com", + "discord": "704721578029744299" + }, + "record": { + "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..612da127a --- /dev/null +++ b/domains/_vercel.sandepten.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sandepten", + "email": "sandepten@gmail.com", + "discord": "sandepten" + }, + "record": { + "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..52b70fb6c --- /dev/null +++ b/domains/_vercel.santty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "santiagogr05", + "email": "san7iagogr.05@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=santty.is-a.dev,42e7e83a90cfeb305cbf"] + } + } \ No newline at end of file diff --git a/domains/_vercel.saunak.json b/domains/_vercel.saunak.json new file mode 100644 index 000000000..9e44c076b --- /dev/null +++ b/domains/_vercel.saunak.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Saunakghosh10", + "email": "saunakghosh710@gmail.com", + "discord": "695672697270829116" + }, + "record": { + "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..cb0b800f5 --- /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" + }, + "record": { + "TXT": ["vc-domain-verify=saxophone.is-a.dev,e2dac8b9c5e42361fda8"] + } +} diff --git a/domains/_vercel.sebastianriveros.json b/domains/_vercel.sebastianriveros.json new file mode 100644 index 000000000..dda9cf731 --- /dev/null +++ b/domains/_vercel.sebastianriveros.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wisauw", + "email": "riveross92@gmail.com", + "discord": "313046852415258625" + }, + "record": { + "TXT": "vc-domain-verify=sebastianriveros.is-a.dev,be3bca98d22aab14d046" + } +} diff --git a/domains/_vercel.sergioperea.json b/domains/_vercel.sergioperea.json new file mode 100644 index 000000000..c3b8cf061 --- /dev/null +++ b/domains/_vercel.sergioperea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sperea", + "email": "perea@mailfence.com" + }, + "record": { + "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..4f16f5a8c --- /dev/null +++ b/domains/_vercel.shimizu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "record": { + "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..e217d99bd --- /dev/null +++ b/domains/_vercel.shirshen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shu-vro", + "email": "official.shirshen@gmail.com" + }, + "record": { + "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..516a5f60a --- /dev/null +++ b/domains/_vercel.shivansh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shivansh722", + "email": "shivanshcha722@gmail.com", + "discord": "839163183141748807" + }, + "record": { + "TXT": "vc-domain-verify=shivansh.is-a.dev,497638a309315f26b590" + } +} diff --git a/domains/_vercel.shri.json b/domains/_vercel.shri.json new file mode 100644 index 000000000..5c83cda8f --- /dev/null +++ b/domains/_vercel.shri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shari003", + "email": "shri.harii@hotmail.com", + "discord": "744620219976253481" + }, + "record": { + "TXT": ["vc-domain-verify=shri.is-a.dev,0dc8bc43ef83d72e5753"] + } +} diff --git a/domains/_vercel.shubh.json b/domains/_vercel.shubh.json new file mode 100644 index 000000000..79802a66f --- /dev/null +++ b/domains/_vercel.shubh.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "R3tr0LastKnight" + }, + "record": { + "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..2a573f6f4 --- /dev/null +++ b/domains/_vercel.shubhamprajapati.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShubhamP528", + "email": "shubham528prajapati@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=shubhamprajapati.is-a.dev,a8d0420a3cd14b3d2928" + } +} diff --git a/domains/_vercel.shuhaab.json b/domains/_vercel.shuhaab.json new file mode 100644 index 000000000..521cdd7fb --- /dev/null +++ b/domains/_vercel.shuhaab.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Shuhaab-coder" + }, + "record": { + "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..79eb6fbcf --- /dev/null +++ b/domains/_vercel.siddharthjain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siddharth9300", + "discord": "sidd9300" + }, + "record": { + "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..fc4e9c80a --- /dev/null +++ b/domains/_vercel.sifat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mahi160", + "email": "omarsifat288@gmail.com" + }, + "record": { + "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..0d605acbe --- /dev/null +++ b/domains/_vercel.simone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cimasim89", + "email": "cimasim89@gmail.com" + }, + "record": { + "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..053ee8548 --- /dev/null +++ b/domains/_vercel.siya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rajputsiya", + "email": "siyarajput9258@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=siya.is-a.dev,8b5584a1aeb3bb9a60c5"] + } +} diff --git a/domains/_vercel.skarwuuu.json b/domains/_vercel.skarwuuu.json new file mode 100644 index 000000000..81add54cc --- /dev/null +++ b/domains/_vercel.skarwuuu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skarwuuu", + "email": "sakshrwt@gmail.com" + }, + "record": { + "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..71ed2cfcb --- /dev/null +++ b/domains/_vercel.skibidi.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "bananaking6", + "discord": "skibidibagel" + }, + "record": { + "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..6f154f6e1 --- /dev/null +++ b/domains/_vercel.sneazy25.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "record": { + "TXT": ["vc-domain-verify=sneazy25.is-a.dev,2f9caf76ec1be24030a6"] + } +} diff --git a/domains/_vercel.snowy.json b/domains/_vercel.snowy.json new file mode 100644 index 000000000..4810ff204 --- /dev/null +++ b/domains/_vercel.snowy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "HayBael" + }, + "record": { + "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..36dd7e789 --- /dev/null +++ b/domains/_vercel.sohag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sohag02", + "discord": "sohagjabed" + }, + "record": { + "TXT": "vc-domain-verify=sohag.is-a.dev,905a0fff3e8fdda0052e" + } +} diff --git a/domains/_vercel.sombochea.json b/domains/_vercel.sombochea.json new file mode 100644 index 000000000..d5f0ee241 --- /dev/null +++ b/domains/_vercel.sombochea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sombochea", + "email": "sombochea100@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=sombochea.is-a.dev,2cdc71284d8d8193f021" + } +} diff --git a/domains/_vercel.sono.json b/domains/_vercel.sono.json deleted file mode 100644 index 290f8cf9d..000000000 --- a/domains/_vercel.sono.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "getSono", - "discord": "1222250424309121145", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.B0E8HDNESQtYbnqBzGRtbUo8aLtRfD3w-btRsFsnAelPi1iHjMb7C1RSEXvClmiEIlqtyIflfg_twb-RQK30p-oc8THXQ_fnA0m2I2YZhjP5jFIraPP7bOV71YTSPiJ-reWMhErizuqL17nDmsdwhrm2na4pVgqPNRVAPo1CV_h2m7ZXHCGjYNysuXvx48HX7MHC5kVyDsSyonKqxoC-545i4u-oCb-qBBGfEbuH3h7-rFIFjYzeG8qJ22cYpjNz6QY9PkI4LLtyzHTbdyTWVyzPY5zZUqFJz_C3aP5Up0de5xxxUcU-QMvP-xptfRmfs9OlHSaQFYGT22SnTUA3qg.II3jjDcfMUNmUNeiFj7lmg.roR-IKIqPZMcdKSjw5IV1QKYDbr6swbEiYbd1bbsCj3cVHc_04zhCKWy7hL_TH9wntdYjG9K8gGU0jtZ0bO3O9S3-dmooa3QDiLjoA4QQHc.fGW4EK-eAEERdQQBBeUCJg" - }, - "record": { - "TXT": "vc-domain-verify=sono.is-a.dev,35c69f97808f44838a85" - } -} diff --git a/domains/_vercel.sopi.json b/domains/_vercel.sopi.json new file mode 100644 index 000000000..7cbe15ce9 --- /dev/null +++ b/domains/_vercel.sopi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sopiseptiansyah", + "email": "sopiseptiansyah@gmail.com" + }, + "record": { + "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..fdff13075 --- /dev/null +++ b/domains/_vercel.sortalost.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sortalost", + "email": "sortalost@cock.li" + }, + "record": { + "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..f1616f878 --- /dev/null +++ b/domains/_vercel.soul.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SoulDevs", + "email": "soulcosmic1406@proton.me", + "discord": "soulcosmic1406_" + }, + "record": { + "TXT": "vc-domain-verify=soul.is-a.dev,6f957e2edcd5bb791896" + } +} diff --git a/domains/_vercel.subhan.json b/domains/_vercel.subhan.json new file mode 100644 index 000000000..4cfafd95b --- /dev/null +++ b/domains/_vercel.subhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MS1034", + "email": "muhammadsubhan5701@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=subhan.is-a.dev,1996a182add3a767436b" + } +} \ No newline at end of file diff --git a/domains/_vercel.sujal.json b/domains/_vercel.sujal.json new file mode 100644 index 000000000..f5c24fc96 --- /dev/null +++ b/domains/_vercel.sujal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "suzalshrestha", + "email": "sujalshresthawork@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=sujal.is-a.dev,58e578ab39aef3cf41e8" + } +} \ No newline at end of file diff --git a/domains/_vercel.sun.json b/domains/_vercel.sun.json new file mode 100644 index 000000000..3ec57dceb --- /dev/null +++ b/domains/_vercel.sun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sxn4y", + "discord": "5unn7n" + }, + "record": { + "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..1ca14d6cc --- /dev/null +++ b/domains/_vercel.supperfreddo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "supperfreddo", + "email": "supperfreddoio@gmail.com", + "discord": "supperfreddo" + }, + "record": { + "TXT": "vc-domain-verify=supperfreddo.is-a.dev,68c20273ddb3ea11e1d6" + } +} diff --git a/domains/_vercel.swami.json b/domains/_vercel.swami.json new file mode 100644 index 000000000..debf61bf7 --- /dev/null +++ b/domains/_vercel.swami.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "aadltya" + }, + "record": { + "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..7dc7bfd57 --- /dev/null +++ b/domains/_vercel.synthara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArhanAnsari", + "email": "arhanansari2009@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=synthara.is-a.dev,5cfe1b6f6a8530d47a55" + } +} diff --git a/domains/_vercel.t3vada.json b/domains/_vercel.t3vada.json new file mode 100644 index 000000000..bf382de2a --- /dev/null +++ b/domains/_vercel.t3vada.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wythh24", + "email": "t3vadadev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=t3vada.is-a.dev,5b01b0c87e766671d811" + } +} diff --git a/domains/_vercel.tanbaycu.json b/domains/_vercel.tanbaycu.json new file mode 100644 index 000000000..443f46f7a --- /dev/null +++ b/domains/_vercel.tanbaycu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "tanbaycu@gmail.com" + }, + "record": { + "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..b2b801281 --- /dev/null +++ b/domains/_vercel.tandevhtml.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "mnew20128@gmail.com" + }, + "record": { + "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..c69013cf0 --- /dev/null +++ b/domains/_vercel.tanvir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tnv1r", + "email": "dev@tanvir.io" + }, + "record": { + "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..9fc9c6b92 --- /dev/null +++ b/domains/_vercel.terry.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyoterry", + "email": "theterrykim@gmail.com" + }, + "record": { + "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..1e65365c2 --- /dev/null +++ b/domains/_vercel.thavirak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thavirak", + "email": "thavirak@gmail.com" + }, + "record": { + "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..3fdf1c760 --- /dev/null +++ b/domains/_vercel.thegoofy-guy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thegoofy-dev", + "email": "pankajtyagi1601@gmail.com" + }, + "record": { + "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..79263c7b4 --- /dev/null +++ b/domains/_vercel.thiagotukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TukozakiT", + "email": "contato.thiagoeiji@gmail.com" + }, + "record": { + "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..487856ea0 --- /dev/null +++ b/domains/_vercel.tobias.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smarterToby", + "discord": "724712767080235049" + }, + "record": { + "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..62de5cf98 --- /dev/null +++ b/domains/_vercel.tranminhtan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanbaycu", + "email": "mnew20128@gmail.com" + }, + "record": { + "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..091c6b96f --- /dev/null +++ b/domains/_vercel.tsania.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tsnzzhr", + "email": "tsnzzhr102@gmail.com" + }, + "record": { + "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..561c85018 --- /dev/null +++ b/domains/_vercel.tykea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tykealy", + "email": "tykeaboyloy@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=tykea.is-a.dev,6107010761e516843251" + } +} diff --git a/domains/_vercel.udit.json b/domains/_vercel.udit.json new file mode 100644 index 000000000..96f2e3ead --- /dev/null +++ b/domains/_vercel.udit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "uditdev", + "email": "uditdev0008@gmail.com" + }, + "record": { + "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..09252807b --- /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" + }, + "record": { + "TXT": "vc-domain-verify=ujjvaljoshi.is-a.dev,f7ed737aeb48311d634c" + } +} diff --git a/domains/_vercel.usmanbaig.json b/domains/_vercel.usmanbaig.json new file mode 100644 index 000000000..c17fb1909 --- /dev/null +++ b/domains/_vercel.usmanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UsmanBaig001", + "email": "usmanbaig1572@gmail.com" + }, + "record": { + "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..13a61c858 --- /dev/null +++ b/domains/_vercel.utkarsh-singhal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Utkarsh-Singhal-26", + "email": "singhalutkarsh26@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=utkarsh-singhal.is-a.dev,31f5c6e60805af21e98f" + } +} diff --git a/domains/_vercel.v.json b/domains/_vercel.v.json index b9cd9e583..e7011a841 100644 --- a/domains/_vercel.v.json +++ b/domains/_vercel.v.json @@ -1,7 +1,6 @@ { "owner": { - "username": "leofelix908", - "email": "" + "username": "leofelix908" }, "record": { "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..ac2794f27 --- /dev/null +++ b/domains/_vercel.vanshaggarwal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AggarwalVansh", + "email": "aggvans@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=vanshaggarwal.is-a.dev,60de91efb37f86a6bb50" + } +} diff --git a/domains/_vercel.vantage.json b/domains/_vercel.vantage.json new file mode 100644 index 000000000..05f0c9b90 --- /dev/null +++ b/domains/_vercel.vantage.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "blaze-099", + "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"] + } +} diff --git a/domains/_vercel.vapr.json b/domains/_vercel.vapr.json new file mode 100644 index 000000000..c90ea33ec --- /dev/null +++ b/domains/_vercel.vapr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bitsamedida", + "email": "bitsamedida@gmail.com" + }, + "record": { + "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..1f8b49254 --- /dev/null +++ b/domains/_vercel.vdevanarayan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeTitan7", + "email": "octavius1983bc@gmail.com" + }, + "record": { + "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..a2288d226 --- /dev/null +++ b/domains/_vercel.venkat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "venkatk-git", + "email": "venkatkumar.profiles@gmail.com" + }, + "record": { + "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..dbfbc5f7a --- /dev/null +++ b/domains/_vercel.verify.alora.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com" + }, + "record": { + "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..47892fb69 --- /dev/null +++ b/domains/_vercel.veygax.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "veygax", + "email": "veyga@checkpoint.llc", + "discord": "1119938236245094521" + + }, + "record": { + "TXT": "vc-domain-verify=veygax.is-a.dev,a56bc04fff9fc5e6e38d" + } +} diff --git a/domains/_vercel.vgwarden.json b/domains/_vercel.vgwarden.json new file mode 100644 index 000000000..d86a3551a --- /dev/null +++ b/domains/_vercel.vgwarden.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "VGWARDEN" + }, + "record": { + "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..94bdad7a9 --- /dev/null +++ b/domains/_vercel.victordev.json @@ -0,0 +1,9 @@ + { + "owner": { + "username": "VictorHumberto01", + "email": "victor.humberto.dev@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=victordev.is-a.dev,249570ae89a082ed0670" + } + } diff --git a/domains/_vercel.victoria.json b/domains/_vercel.victoria.json index 488bff22c..a304182d0 100644 --- a/domains/_vercel.victoria.json +++ b/domains/_vercel.victoria.json @@ -1,7 +1,6 @@ { "owner": { - "username": "itahseen", - "email": "" + "username": "itahseen" }, "record": { "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..556ddcb15 --- /dev/null +++ b/domains/_vercel.vignesh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Vignesh025", + "email": "vigneshjayakumar9221@gmail.com", + "discord": "vignesh025" + }, + "record": { + "TXT": "vc-domain-verify=vignesh.is-a.dev,f3df13929e17acd366ea" + } +} diff --git a/domains/_vercel.vinay.json b/domains/_vercel.vinay.json new file mode 100644 index 000000000..94eb76124 --- /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" + }, + "record": { + "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..31e91b846 --- /dev/null +++ b/domains/_vercel.vinayaka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinayaka-iyer", + "email": "vinayakaiyer999@gmail.com" + }, + "record": { + "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..94f9d4ec9 --- /dev/null +++ b/domains/_vercel.vineeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vineeth-motati", + "email": "vineethmotati@duck.com" + }, + "record": { + "TXT": "vc-domain-verify=vineeth.is-a.dev,772d59fe1bf7422c8f8f" + } +} \ No newline at end of file diff --git a/domains/_vercel.violet.json b/domains/_vercel.violet.json new file mode 100644 index 000000000..616fb3c56 --- /dev/null +++ b/domains/_vercel.violet.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "violetlaire", + "email": "violetlaire@proton.me", + "discord": "994135527815118898" + }, + "record": { + "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..70ce9ed96 --- /dev/null +++ b/domains/_vercel.vldm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VLDeMenezes", + "email": "victorleandrodemenezes@gmail.com" + }, + "record": { + "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..fd5702d80 --- /dev/null +++ b/domains/_vercel.voidvault.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354686@gmail.com" + }, + "record": { + "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..1c002c971 --- /dev/null +++ b/domains/_vercel.vukhoi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khoivt", + "email": "khoidragonslayer@gmail.com" + }, + "record": { + "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..9437bdcc0 --- /dev/null +++ b/domains/_vercel.vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "record": { + "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..06e381c67 --- /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" + }, + "record": { + "TXT": "vc-domain-verify=w3teal.is-a.dev,d0cb532c15b16a993c2a" + } +} diff --git a/domains/_vercel.waki.json b/domains/_vercel.waki.json new file mode 100644 index 000000000..a872c59a2 --- /dev/null +++ b/domains/_vercel.waki.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "aiwaki" + }, + "record": { + "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..973264f98 --- /dev/null +++ b/domains/_vercel.wallsified.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wallsified", + "email": "danielparedes@ciencias.unam.mx" + }, + "record": { + "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..05c051477 --- /dev/null +++ b/domains/_vercel.waltersonna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RichestHumanAlive", + "email": "walter.n.sonna@gmail.com" + }, + "record": { + "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..a5ce07365 --- /dev/null +++ b/domains/_vercel.wasim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simbaig", + "email": "wasimbaig000@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=wasim.is-a.dev,6b4abdaf07b7f6517075" + } +} diff --git a/domains/_vercel.whisp.json b/domains/_vercel.whisp.json deleted file mode 100644 index b5e18cfbd..000000000 --- a/domains/_vercel.whisp.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "itswhisp", - "email": "ag.whisp@gmail.com", - "discord": "1276688713434529854" - }, - "record": { - "TXT": "vc-domain-verify=whisp.is-a.dev,131ed1253e922c1133f2" - } -} diff --git a/domains/_vercel.willymateo.json b/domains/_vercel.willymateo.json new file mode 100644 index 000000000..251c9ce29 --- /dev/null +++ b/domains/_vercel.willymateo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "willymateo", + "email": "matheoowilly@gmail.com", + "discord": "willycocolon" + }, + "record": { + "TXT": "vc-domain-verify=willymateo.is-a.dev,6c7018f1721c84a520df" + } +} diff --git a/domains/_vercel.wisit.json b/domains/_vercel.wisit.json new file mode 100644 index 000000000..fcbfbaff1 --- /dev/null +++ b/domains/_vercel.wisit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Wisitt", + "email": "wisitmoondet@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=wisit.is-a.dev,00d864c9655408665e4c" + } +} diff --git a/domains/_vercel.wizardsword.json b/domains/_vercel.wizardsword.json new file mode 100644 index 000000000..a5afab226 --- /dev/null +++ b/domains/_vercel.wizardsword.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MukuJhansi", + "discord": "1115658967012626542" + }, + "record": { + "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..0e43067d7 --- /dev/null +++ b/domains/_vercel.woogi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "woogi-kang", + "email": "woogi.dev@gmail.com" + }, + "record": { + "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..6d9d0c5c2 --- /dev/null +++ b/domains/_vercel.wouter.json @@ -0,0 +1,10 @@ +{ + "description": "Wouter's personal website", + "owner": { + "username": "wouter173", + "email": "wouter@debruijn.dev" + }, + "record": { + "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..b654d4a5b --- /dev/null +++ b/domains/_vercel.xenonrexo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shshams", + "email": "shahadathossenshams@gmail.com" + }, + "record": { + "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..d69bee5b7 --- /dev/null +++ b/domains/_vercel.yatharth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yatharthbhatia", + "email": "yatharthbhatia2004@gmail.com" + }, + "record": { + "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..7f88e26d9 --- /dev/null +++ b/domains/_vercel.yaxh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yaxhcodes", + "email": "meyashjoshi3101@gmail.com", + "discord": "965845932782526495" + }, + "record": { + "TXT": "vc-domain-verify=yaxh.is-a.dev,6469548bcd2901c7c348" + } +} diff --git a/domains/_vercel.yoan.json b/domains/_vercel.yoan.json new file mode 100644 index 000000000..062b727bb --- /dev/null +++ b/domains/_vercel.yoan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yoan-gilliand", + "email": "yoangilliand@gmail.com" + }, + "record": { + "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..2f46c5930 --- /dev/null +++ b/domains/_vercel.yohanesrioirsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yohanesrioirsan", + "email": "rioirsan8@gmail.com" + }, + "record": { + "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..e54a53d60 --- /dev/null +++ b/domains/_vercel.youssef.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YoussefDevPro", + "email": "youssef.pro.coding@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=youssef.is-a.dev,8a21ff17b71b3518be3c" + } +} diff --git a/domains/_vercel.z.json b/domains/_vercel.z.json deleted file mode 100644 index 8a6868f9e..000000000 --- a/domains/_vercel.z.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jakeharrison90", - "email": "overtonmarke@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=z.is-a.dev,9be8de01c9c241334606" - ] - } -} diff --git a/domains/_vercel.zalnars.json b/domains/_vercel.zalnars.json new file mode 100644 index 000000000..df91c694c --- /dev/null +++ b/domains/_vercel.zalnars.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "zalnaRs", + "email": "zalnars@proton.me", + "discord": "zalnars" + }, + "record": { + "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..e9024b750 --- /dev/null +++ b/domains/_vercel.zara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tutupharirabu", + "email": "code.zharaurien@gmail.com" + }, + "record": { + "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..cf6b9d3ca --- /dev/null +++ b/domains/_vercel.zehao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "2eha0", + "email": "zehao93@outlook.com" + }, + "record": { + "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..0b36e47cf --- /dev/null +++ b/domains/_vercel.zold.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=zold.is-a.dev,43d9c99b8a4db2628eed" + } +} 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/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/aaditya.json b/domains/aaditya.json new file mode 100644 index 000000000..5db37d8c2 --- /dev/null +++ b/domains/aaditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aaditya2200", + "email": "aaditya2200@gmail.com" + }, + "record": { + "CNAME": "aaditya2200.github.io" + } +} diff --git a/domains/aadityaa.json b/domains/aadityaa.json new file mode 100644 index 000000000..c6f26b17c --- /dev/null +++ b/domains/aadityaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aadityaa2606", + "email": "aadityaa2606@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/aag.json b/domains/aag.json new file mode 100644 index 000000000..b86fa9af7 --- /dev/null +++ b/domains/aag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "01AleX12", + "email": "aag.devv@gmail.com" + }, + "record": { + "CNAME": "01alex12.github.io" + } +} diff --git a/domains/aakarsh.json b/domains/aakarsh.json new file mode 100644 index 000000000..d9a5e2544 --- /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" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/aakashrawat.json b/domains/aakashrawat.json new file mode 100644 index 000000000..0f0a3ccfa --- /dev/null +++ b/domains/aakashrawat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aakashrawat04", + "email": "2004rawataakash@gmail.com", + "discord": "759817307957493800" + }, + "record": { + "CNAME": "aakashrawat.vercel.app" + } +} diff --git a/domains/aakashs.json b/domains/aakashs.json index 88fa2b76f..ee582b803 100644 --- a/domains/aakashs.json +++ b/domains/aakashs.json @@ -6,6 +6,6 @@ "discord": "AakashS#9630" }, "record": { - "CNAME": "Aakash-kun.github.io" + "CNAME": "aakash-kun.github.io" } } diff --git a/domains/aankit.json b/domains/aankit.json new file mode 100644 index 000000000..76e46b9ae --- /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" + }, + "record": { + "CNAME": "Ankit-0310.github.io" + } +} diff --git a/domains/aaqif.json b/domains/aaqif.json new file mode 100644 index 000000000..bf7ed2ea3 --- /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" + }, + "record": { + "CNAME": "react-portfolio-ashen-tau.vercel.app" + } +} 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/aaron.json b/domains/aaron.json new file mode 100644 index 000000000..721474eb1 --- /dev/null +++ b/domains/aaron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AaronPerezPerez", + "email": "aarperper@gmail.com" + }, + "record": { + "CNAME": "terminal-portfolio-h80h9v8ub-aaronperezperez.vercel.app" + } +} diff --git a/domains/aaronfort.json b/domains/aaronfort.json new file mode 100644 index 000000000..0ae96d92b --- /dev/null +++ b/domains/aaronfort.json @@ -0,0 +1,10 @@ +{ + "description": "Documentation website for Aaron Fort", + "owner": { + "username": "AaronFortG", + "email": "aaronfortg@gmail.com" + }, + "record": { + "CNAME": "mycurriculum.salleurl.edu" + } +} diff --git a/domains/aasoft.json b/domains/aasoft.json new file mode 100644 index 000000000..6c967b549 --- /dev/null +++ b/domains/aasoft.json @@ -0,0 +1,10 @@ +{ + "description": "alireza mohebbi threejs project - aasoft.ir", + "owner": { + "username": "aasoftir", + "email": "aasoftmohebbi@gmail.com" + }, + "record": { + "URL": "https://glitch-text-threejs.vercel.app/" + } +} diff --git a/domains/aayushakacloudy.json b/domains/aayushakacloudy.json index 1f76e391d..6feb21808 100644 --- a/domains/aayushakacloudy.json +++ b/domains/aayushakacloudy.json @@ -6,6 +6,6 @@ "email": "aaayush.dev@gmail.com" }, "record": { - "CNAME": "gamedevCloudy.github.io" + "CNAME": "gamedevcloudy.github.io" } } diff --git a/domains/abdallahbari.json b/domains/abdallahbari.json new file mode 100644 index 000000000..1a4f7ee79 --- /dev/null +++ b/domains/abdallahbari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdallah01win", + "email": "abdellah01win@gmail.com" + }, + "record": { + "CNAME": "portfolio-bf2.pages.dev" + } +} diff --git a/domains/abdelghani.json b/domains/abdelghani.json new file mode 100644 index 000000000..df1731a2d --- /dev/null +++ b/domains/abdelghani.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/abdelhamied.json b/domains/abdelhamied.json new file mode 100644 index 000000000..7992106d2 --- /dev/null +++ b/domains/abdelhamied.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdelhamied403", + "email": "abdelhamied403@gmail.com" + }, + "record": { + "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/abdi.json b/domains/abdi.json new file mode 100644 index 000000000..e99490e04 --- /dev/null +++ b/domains/abdi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdiopp", + "email": "ginnieabdullah007@gmail.com" + }, + "record": { + "CNAME": "abdi-portfolio.web.app" + } +} diff --git a/domains/abdullah-al-mridul.json b/domains/abdullah-al-mridul.json new file mode 100644 index 000000000..2fcb83694 --- /dev/null +++ b/domains/abdullah-al-mridul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdullah-al-mridul", + "email": "rim89987@gmail.com" + }, + "record": { + "CNAME": "abdullah-al-mridul-dev.vercel.app" + } +} diff --git a/domains/abdullah.json b/domains/abdullah.json index 549ce8855..6ae594d68 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" + "CNAME": "mdabdullah3.github.io" } } diff --git a/domains/abdullah.maqbool.json b/domains/abdullah.maqbool.json new file mode 100644 index 000000000..e7516a453 --- /dev/null +++ b/domains/abdullah.maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "record": { + "CNAME": "abdullahmaqbool-portfolio.vercel.app" + } +} diff --git a/domains/abdullahcxd.json b/domains/abdullahcxd.json new file mode 100644 index 000000000..e2865eab2 --- /dev/null +++ b/domains/abdullahcxd.json @@ -0,0 +1,19 @@ +{ + "description": "Portfolio use", + "repo": "https://github.com/abdullahcxd/abdullahcxd.github.io", + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "record": { + "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..60c707d30 --- /dev/null +++ b/domains/abdullyahuza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdullyahuza", + "email": "yahuzaabdulrazak@gmail.com" + }, + "record": { + "CNAME": "abdullyahuza.github.io" + } +} diff --git a/domains/abdulquddus.json b/domains/abdulquddus.json new file mode 100644 index 000000000..11a3677f4 --- /dev/null +++ b/domains/abdulquddus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aqdev-tech", + "email": "abdulquddusinda@gmail.com" + }, + "record": { + "CNAME": "abdulquddus.onrender.com" + } +} diff --git a/domains/abdulrazzaq.json b/domains/abdulrazzaq.json new file mode 100644 index 000000000..f8296566f --- /dev/null +++ b/domains/abdulrazzaq.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio Website", + "owner": { + "username": "algo-encoders", + "email": "a.razzaq4085@gmail.com" + }, + "record": { + "A": ["75.119.140.170"] + } +} diff --git a/domains/abeer.json b/domains/abeer.json new file mode 100644 index 000000000..aa0f9620c --- /dev/null +++ b/domains/abeer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abeer555", + "email": "abeergupta555@gmail.com" + }, + "record": { + "CNAME": "abeer555.github.io" + } +} diff --git a/domains/abeja.json b/domains/abeja.json new file mode 100644 index 000000000..df4348575 --- /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" + }, + "record": { + "CNAME": "TheRealCrazyfuy.github.io" + } +} diff --git a/domains/abhiii.json b/domains/abhiii.json new file mode 100644 index 000000000..323a0ffd3 --- /dev/null +++ b/domains/abhiii.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wiz-abhi", + "email": "abbhiiishekk@proton.me" + }, + "record": { + "URL": "https://abhiishekk.netlify.app" + } +} diff --git a/domains/abhijeet.json b/domains/abhijeet.json new file mode 100644 index 000000000..3576a43e6 --- /dev/null +++ b/domains/abhijeet.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abhijeet486", + "email": "sabhijeet652@gmail.com" + }, + "record": { + "CNAME": "portfolio-website-mocha-beta.vercel.app" + }, + "proxy": false +} \ No newline at end of file diff --git a/domains/abhijith.json b/domains/abhijith.json new file mode 100644 index 000000000..e96c95311 --- /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" + }, + "record": { + "CNAME": "abhisawesome.github.io" + } +} diff --git a/domains/abhinav-shyju.json b/domains/abhinav-shyju.json new file mode 100644 index 000000000..62b8b15b9 --- /dev/null +++ b/domains/abhinav-shyju.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abhinavshyju", + "email": "abhinavshyjupc@gmail.com" + }, + "record": { + "CNAME": "portfolio-6ns.pages.dev" + } +} diff --git a/domains/abhinav.json b/domains/abhinav.json new file mode 100644 index 000000000..024126e58 --- /dev/null +++ b/domains/abhinav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abh1nav", + "email": "abhinav316@gmail.com" + }, + "record": { + "CNAME": "blog.abhinav.ca" + } +} diff --git a/domains/abhishek.json b/domains/abhishek.json index b0097a288..227fde739 100644 --- a/domains/abhishek.json +++ b/domains/abhishek.json @@ -1,6 +1,5 @@ { "description": "Abhishek's personal website", - "repo": "https://github.com/nullpointxr", "owner": { "username": "nullpointxr", "email": "abhishek.sankar.in@protonmail.com" diff --git a/domains/abhishekissac.json b/domains/abhishekissac.json new file mode 100644 index 000000000..ee7e62597 --- /dev/null +++ b/domains/abhishekissac.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Abhishek-Issac", + "email": "abhishekissac0@gmail.com" + }, + "record": { + "CNAME": "abhishek-issac.github.io" + }, + "proxied": false +} diff --git a/domains/abhishekkumar.json b/domains/abhishekkumar.json index 81ca81759..1ad2bff3b 100644 --- a/domains/abhishekkumar.json +++ b/domains/abhishekkumar.json @@ -1,6 +1,5 @@ { "description": "Abhishek's personal developer website", - "repo": "https://github.com/Abhishek-569", "owner": { "username": "Abhishek-569", "email": "akabhishek4444@gmail.com" 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..ee456e6dd --- /dev/null +++ b/domains/abidraza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ariabid", + "email": "ari.abid@gmail.com" + }, + "record": { + "URL": "https://abidraza.com" + } +} diff --git a/domains/abineethan.json b/domains/abineethan.json new file mode 100644 index 000000000..9983a2f6d --- /dev/null +++ b/domains/abineethan.json @@ -0,0 +1,10 @@ +{ + "description": "This is my portfolio website.", + "owner": { + "username": "abineethan", + "email": "abineethan22@gmail.com" + }, + "record": { + "CNAME": "abineethan-dev.web.app" + } +} diff --git a/domains/abranico.json b/domains/abranico.json new file mode 100644 index 000000000..e0f797915 --- /dev/null +++ b/domains/abranico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abranico", + "email": "abranico011@gmail.com" + }, + "record": { + "CNAME": "abranico.vercel.app" + } +} diff --git a/domains/abu.json b/domains/abu.json new file mode 100644 index 000000000..7fae28ec1 --- /dev/null +++ b/domains/abu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mohamed-faaris", + "email": "mohammedfaaris2005@gmail.com" + }, + "record": { + "URL": "https://github.com/Mohamed-Abu-Bakkar" + } +} diff --git a/domains/account.juststudio.json b/domains/account.juststudio.json new file mode 100644 index 000000000..0e9c53ba8 --- /dev/null +++ b/domains/account.juststudio.json @@ -0,0 +1,11 @@ +{ + "description": "It will be redirect to accounts.juststudio.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "CNAME": "juststudio-account.web.app" + } +} diff --git a/domains/achyut.json b/domains/achyut.json new file mode 100644 index 000000000..a10e770c0 --- /dev/null +++ b/domains/achyut.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "achyutkneupane", + "email": "achyutkneupane@gmail.com", + "linkedin": "achyutneupane" + }, + "record": { + "CNAME": "achyut.com.np" + } +} diff --git a/domains/ad.lver.json b/domains/ad.lver.json new file mode 100644 index 000000000..93c4db3e7 --- /dev/null +++ b/domains/ad.lver.json @@ -0,0 +1,11 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "record": { + "A": ["52.72.49.79"] + }, + "proxied": true +} diff --git a/domains/ada.json b/domains/ada.json new file mode 100644 index 000000000..68b113b9b --- /dev/null +++ b/domains/ada.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ada-lovecraft", + "email": "ada@codevinsky.com" + }, + "record": { + "CNAME": "ada-lovecraft.github.io" + } +} diff --git a/domains/adam.json b/domains/adam.json index 3aadd5915..54c8f53ff 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"] + "CNAME": "adamrexo.vercel.app" } } diff --git a/domains/adamperkowski.json b/domains/adamperkowski.json new file mode 100644 index 000000000..91d448055 --- /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" + }, + "record": { + "CNAME": "adamperkowski.dev" + } +} diff --git a/domains/adarshkumar.json b/domains/adarshkumar.json new file mode 100644 index 000000000..33719d97f --- /dev/null +++ b/domains/adarshkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adarsh R. Kumar", + "email": "adarshravikumar2@gmail.com" + }, + "record": { + "CNAME": "adarshrkumar.github.io" + } +} diff --git a/domains/adarshs.json b/domains/adarshs.json index a235a68d2..0667a7768 100644 --- a/domains/adarshs.json +++ b/domains/adarshs.json @@ -1,6 +1,5 @@ { "description": "The portfolio of Adarsh S", - "repo": "https://github.com/adarshsuresh07", "owner": { "username": "adarshsuresh07", "email": "adarshsuresh@cet.ac.in" diff --git a/domains/adel-dafi.json b/domains/adel-dafi.json new file mode 100644 index 000000000..c97b8ad14 --- /dev/null +++ b/domains/adel-dafi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ad019El", + "email": "a.dafi@esi-sba.dz" + }, + "record": { + "CNAME": "adel-dafi.pages.dev" + } +} diff --git a/domains/adharsh.json b/domains/adharsh.json new file mode 100644 index 000000000..525648f9f --- /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" + }, + "record": { + "URL": "https://adharsh-portfolio.netlify.app/" + } +} diff --git a/domains/adib.json b/domains/adib.json new file mode 100644 index 000000000..eaec424cc --- /dev/null +++ b/domains/adib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adib23704", + "email": "adib23704@gmail.com" + }, + "record": { + "URL": "https://adib23704.com" + } +} diff --git a/domains/adiii3692.json b/domains/adiii3692.json new file mode 100644 index 000000000..773e1898a --- /dev/null +++ b/domains/adiii3692.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adiii3692", + "email": "adinair0206@gmail.com" + }, + "record": { + "CNAME": "portfolio-rho-sand-13.vercel.app" + } +} \ No newline at end of file diff --git a/domains/adil.json b/domains/adil.json new file mode 100644 index 000000000..30ff38264 --- /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" + }, + "record": { + "CNAME": "adil-uddin.github.io" + } +} diff --git a/domains/adithyan.json b/domains/adithyan.json new file mode 100644 index 000000000..5051dc05e --- /dev/null +++ b/domains/adithyan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "A-d-i-t-h-y-a-n", + "email": "hermit0bot@gmail.com" + }, + "record": { + "CNAME": "whoami-tn1.pages.dev" + }, + "proxied": true +} diff --git a/domains/adithyapaib.json b/domains/adithyapaib.json new file mode 100644 index 000000000..0364e4d2a --- /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" + }, + "record": { + "CNAME": "adithyapaib.github.io" + } +} diff --git a/domains/aditya.json b/domains/aditya.json index 60cf9857a..191ff4102 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" + "A": ["76.76.21.21"] } } diff --git a/domains/adnan.json b/domains/adnan.json index dd626bac9..ccee39dee 100644 --- a/domains/adnan.json +++ b/domains/adnan.json @@ -4,6 +4,6 @@ "email": "sonuadnan6@gmail.com" }, "record": { - "CNAME": "adnan0131.github.io" + "CNAME": "adnan-ahamed-portfolio.vercel.app" } } diff --git a/domains/adrenocortico.json b/domains/adrenocortico.json new file mode 100644 index 000000000..06fe99b2d --- /dev/null +++ b/domains/adrenocortico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adrenocortico", + "email": "francesco.dulio@icloud.com" + }, + "record": { + "CNAME": "adrenocortico.github.io" + } +} diff --git a/domains/adriancmiranda.json b/domains/adriancmiranda.json new file mode 100644 index 000000000..f74f5e370 --- /dev/null +++ b/domains/adriancmiranda.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "adriancmiranda", + "email": "ad@is-a.dev" + }, + "record": { + "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..0247637d3 --- /dev/null +++ b/domains/adrianqr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AdrianQR01", + "email": "adrianquenard@gmail.com" + }, + "record": { + "CNAME": "adrianqr01.github.io" + } +} diff --git a/domains/adrien.json b/domains/adrien.json new file mode 100644 index 000000000..373a2b06f --- /dev/null +++ b/domains/adrien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "technetist", + "email": "adrien@maranville.io" + }, + "record": { + "URL": "https://maranville.io" + } +} diff --git a/domains/adwait.json b/domains/adwait.json new file mode 100644 index 000000000..7e521f5dd --- /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" + }, + "record": { + "CNAME": "adwait0901.github.io" + } +} diff --git a/domains/aespada.json b/domains/aespada.json new file mode 100644 index 000000000..9d3440281 --- /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" + }, + "record": { + "CNAME": "alexes13.github.io" + } +} diff --git a/domains/aessaputra.json b/domains/aessaputra.json new file mode 100644 index 000000000..0de67fbf7 --- /dev/null +++ b/domains/aessaputra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aessaputra", + "twitter": "pioonrey" + }, + "record": { + "CNAME": "github-profile-summary-cards-aes-saputras-projects.vercel.app" + } +} diff --git a/domains/aeyika.json b/domains/aeyika.json new file mode 100644 index 000000000..5daaf7ac9 --- /dev/null +++ b/domains/aeyika.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aeyika", + "email": "aeyikastech@gmail.com" + }, + "record": { + "CNAME": "portfolio-aeyikas-projects.vercel.app" + } +} diff --git a/domains/affan.json b/domains/affan.json new file mode 100644 index 000000000..c24952ed8 --- /dev/null +++ b/domains/affan.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "orkkz", + "email": "affanorakzai19@gmail.com" + }, + "record": { + "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/afnan.json b/domains/afnan.json new file mode 100644 index 000000000..fc62c307c --- /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" + }, + "record": { + "CNAME": "sayed-afnan-khazi.github.io" + } +} diff --git a/domains/afonsoribeiro.json b/domains/afonsoribeiro.json new file mode 100644 index 000000000..c0a21b66f --- /dev/null +++ b/domains/afonsoribeiro.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "owner": { + "username": "Afons0Ribeiro", + "email": "afonsomsfribeiro@gmail.com" + }, + "record": { + "A": ["94.61.156.248"], + "AAAA": ["2001:818:eb38:800:c13b:6eab:f74c:b965"] + }, + "proxied": false +} diff --git a/domains/aga.json b/domains/aga.json new file mode 100644 index 000000000..9369b3db1 --- /dev/null +++ b/domains/aga.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lcnghulam", + "email": "lcnghulam1@gmail.com", + "discord": "blessing455451" + }, + "record": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=p24qfEdTMTlahtU3hQxVU_txDQkifpoJH1xS4jmCmlw" + } +} diff --git a/domains/agam778.json b/domains/agam778.json index 3a41fe69b..51a483cac 100644 --- a/domains/agam778.json +++ b/domains/agam778.json @@ -1,6 +1,5 @@ { "description": "Agam's Website", - "repo": "https://github.com/agam778", "owner": { "username": "agam778", "email": "agam778@zohomail.in" diff --git a/domains/agelos.json b/domains/agelos.json new file mode 100644 index 000000000..8d73e484a --- /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" + }, + "record": { + "CNAME": "agelospanagiotakis.github.io" + } +} diff --git a/domains/agent.json b/domains/agent.json new file mode 100644 index 000000000..eeab749fd --- /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" + }, + "record": { + "CNAME": "isadev-site.pages.dev" + }, + "proxied": true +} diff --git a/domains/agilani.json b/domains/agilani.json new file mode 100644 index 000000000..efc1c9699 --- /dev/null +++ b/domains/agilani.json @@ -0,0 +1,10 @@ +{ + "description": "agilani.is-a.dev", + "owner": { + "username": "agilani", + "email": "me@agilani.me" + }, + "record": { + "CNAME": "www.agilani.me" + } +} diff --git a/domains/ags.server.drpleaserespect.json b/domains/ags.server.drpleaserespect.json deleted file mode 100644 index ee0613c67..000000000 --- a/domains/ags.server.drpleaserespect.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DrPleaseRespect", - "email": "juliannayr2007@gmail.com" - }, - "record": { - "A": ["146.19.100.135"], - "AAAA": ["2a05:dfc1:4400:6c00::a"] - } -} diff --git a/domains/agung.json b/domains/agung.json new file mode 100644 index 000000000..1e3509e59 --- /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" + }, + "record": { + "CNAME": "aw09.github.io" + } +} diff --git a/domains/agungfir.json b/domains/agungfir.json new file mode 100644 index 000000000..ad57330c0 --- /dev/null +++ b/domains/agungfir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "agungfir10", + "email": "agungfirid@gmail.com" + }, + "record": { + "CNAME": "agungfir.vercel.app" + } +} \ No newline at end of file diff --git a/domains/ah2.json b/domains/ah2.json new file mode 100644 index 000000000..52cfde079 --- /dev/null +++ b/domains/ah2.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ah2", + "email": "uni.ahmamy@gmail.com" + }, + "record": { + "URL": "https://hamd.cloud.libraryofcode.org" + } +} diff --git a/domains/ahios.json b/domains/ahios.json new file mode 100644 index 000000000..54b441118 --- /dev/null +++ b/domains/ahios.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "record": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=vIUwZhHqcAiiHZW2nNaE21Lb0H1_FIEBHyYs6f3b0KA", + "MX": [ + "SMTP.GOOGLE.COM" + ] + } +} diff --git a/domains/ahmad.json b/domains/ahmad.json new file mode 100644 index 000000000..eaaea8f56 --- /dev/null +++ b/domains/ahmad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "azrelic", + "email": "ahmadking78654@gmail.com" + }, + "record": { + "CNAME": "ahmadazizportfolio.vercel.app" + } +} diff --git a/domains/ahmed.json b/domains/ahmed.json new file mode 100644 index 000000000..b963d5b52 --- /dev/null +++ b/domains/ahmed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ahmedeldin.json b/domains/ahmedeldin.json deleted file mode 100644 index cc2ba7a1d..000000000 --- a/domains/ahmedeldin.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Portfolio Website", - "owner": { - "username": "ahmed-eldin", - "email": "ahmedeldin98@gmail.com" - }, - "record": { - "CNAME": "ahmed-eldin.github.io" - } -} diff --git a/domains/ahmedosama.json b/domains/ahmedosama.json new file mode 100644 index 000000000..b963d5b52 --- /dev/null +++ b/domains/ahmedosama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ahmedosamamath.json b/domains/ahmedosamamath.json new file mode 100644 index 000000000..b963d5b52 --- /dev/null +++ b/domains/ahmedosamamath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/ahnaf.json b/domains/ahnaf.json new file mode 100644 index 000000000..a0a217e0a --- /dev/null +++ b/domains/ahnaf.json @@ -0,0 +1,10 @@ +{ + "description": "For my personal portfolio website", + "owner": { + "username": "AhnafFarhanHossain", + "email": "ahnaffarhanhossain@gmail.com" + }, + "record": { + "A": ["103.62.149.9"] + } +} diff --git a/domains/ahsw.json b/domains/ahsw.json index 5a9ab36d7..cde17ec68 100644 --- a/domains/ahsw.json +++ b/domains/ahsw.json @@ -1,6 +1,5 @@ { "description": "Ahsw Personal Website", - "repo": "https://github.com/Ahsw7", "owner": { "username": "Ahsw", "email": "jasjusjambu.segar@gmail.com" diff --git a/domains/ahyalfan.json b/domains/ahyalfan.json new file mode 100644 index 000000000..7d8f20858 --- /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" + }, + "record": { + "URL": "https://ahyalfan.my.id" + } +} diff --git a/domains/ai-y.json b/domains/ai-y.json deleted file mode 100644 index 1ba829032..000000000 --- a/domains/ai-y.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "yunexiz", - "discord": "1040303561847881729" - }, - "record": { - "CNAME": "ai-y.onrender.com" - } -} diff --git a/domains/ai-y.yosuke.json b/domains/ai-y.yosuke.json deleted file mode 100644 index 632f9c315..000000000 --- a/domains/ai-y.yosuke.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "yunexiz", - "discord": "1040303561847881729" - }, - "record": { - "CNAME": "ai-y-main.pages.dev" - } -} diff --git a/domains/aidan.json b/domains/aidan.json new file mode 100644 index 000000000..40049af0b --- /dev/null +++ b/domains/aidan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sangnd2x", + "email": "sanguyen128@gmail.com" + }, + "record": { + "A": ["103.211.201.28"] + } +} diff --git a/domains/aishik999.json b/domains/aishik999.json new file mode 100644 index 000000000..175c6af92 --- /dev/null +++ b/domains/aishik999.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aishik999", + "email": "aishikm2002@gmail.com" + }, + "record": { + "CNAME": "aishik999.vercel.app" + } +} diff --git a/domains/aitji.json b/domains/aitji.json new file mode 100644 index 000000000..7d7b38413 --- /dev/null +++ b/domains/aitji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aitji", + "email": "ait.suriya@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/aizuu.json b/domains/aizuu.json index 928524511..a51faf945 100644 --- a/domains/aizuu.json +++ b/domains/aizuu.json @@ -1,6 +1,5 @@ { "description": "Aizuu's Personal Website", - "repo": "https://github.com/VeguiIzumi", "owner": { "username": "Aizuu", "email": "baby@alvindaldi.my.id" diff --git a/domains/aj.json b/domains/aj.json index 810c13865..486c3c722 100644 --- a/domains/aj.json +++ b/domains/aj.json @@ -4,6 +4,9 @@ "discord": "825382504353234954" }, "record": { - "A": ["76.76.21.21"] + "A": ["76.76.21.21"], + "TXT": [ + "google-site-verification=CT0XYnjNC4mKSCOf5Bg0MhiAI1iA5fE2j0cQRJ6PNNo" + ] } } diff --git a/domains/ajayj.json b/domains/ajayj.json new file mode 100644 index 000000000..a6c769dc1 --- /dev/null +++ b/domains/ajayj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AJAY260505", + "email": "ajay260505@gmail.com" + }, + "record": { + "CNAME": "ajayjaisankar.netlify.app" + } +} diff --git a/domains/ajays.json b/domains/ajays.json index 8fa7f088c..fc9561518 100644 --- a/domains/ajays.json +++ b/domains/ajays.json @@ -6,6 +6,6 @@ "email": "ajays.dev.contact@gmail.com" }, "record": { - "CNAME": "Dev-Ajay-sahani.github.io" + "CNAME": "dev-ajay-sahani.github.io" } } diff --git a/domains/ajaysathvik.json b/domains/ajaysathvik.json new file mode 100644 index 000000000..d6948d1bb --- /dev/null +++ b/domains/ajaysathvik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ajaysathvik", + "email": "ajaysathviksu@gmail.com" + }, + "record": { + "CNAME": "ajaysathvik.vercel.app" + } +} diff --git a/domains/ajt-lkmn.json b/domains/ajt-lkmn.json new file mode 100644 index 000000000..8ca65f40c --- /dev/null +++ b/domains/ajt-lkmn.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/ajanthaa-lakkshmanan/ajanthaa-lakkshmanan.github.io", + "owner": { + "username": "ajanthaa-lakkshmanan", + "email": "ajanthal@srmist.edu.in" + }, + "record": { + "CNAME": "ajanthaa-lakkshmanan.github.io" + } +} diff --git a/domains/ajtabs.json b/domains/ajtabs.json new file mode 100644 index 000000000..b6c25a2f7 --- /dev/null +++ b/domains/ajtabs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ajtabjs", + "email": "oro10jua@gmail.com" + }, + "record": { + "CNAME": "aj-swag-portfolio.pages.dev" + } +} diff --git a/domains/ak-profile.json b/domains/ak-profile.json new file mode 100644 index 000000000..3734127ed --- /dev/null +++ b/domains/ak-profile.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Akash0816", + "email": "akashoffical321@gmail.com" + }, + "record": { + "CNAME": "akash0816.github.io" + } +} diff --git a/domains/ak.json b/domains/ak.json index c7a428523..63cf7a230 100644 --- a/domains/ak.json +++ b/domains/ak.json @@ -1,6 +1,5 @@ { "description": "AK's Dev Website", - "repo": "https://github.com/AKGaming0001", "owner": { "username": "AKGaming0001", "twitter": "NotAKGaming", diff --git a/domains/akanksha.json b/domains/akanksha.json new file mode 100644 index 000000000..f9222f39f --- /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" + }, + "record": { + "CNAME": "akankshamishra.vercel.app" + } +} diff --git a/domains/akashj.json b/domains/akashj.json new file mode 100644 index 000000000..1153fa421 --- /dev/null +++ b/domains/akashj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akash-janapati", + "email": "akash2009janapati@gmail.com" + }, + "record": { + "CNAME": "akash-janapati.github.io" + } +} diff --git a/domains/akashkumar.json b/domains/akashkumar.json new file mode 100644 index 000000000..f5ce94745 --- /dev/null +++ b/domains/akashkumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akash-kumar-dev", + "email": "akashkumar.dev00@gmail.com" + }, + "record": { + "CNAME": "akashkumar-dev.vercel.app" + } +} diff --git a/domains/kush.json b/domains/akay.json similarity index 56% rename from domains/kush.json rename to domains/akay.json index 185f39166..bc171483e 100644 --- a/domains/kush.json +++ b/domains/akay.json @@ -1,10 +1,9 @@ { "owner": { - "username": "Kush-Dhingra", - "email": "kushdhingra3112@gmail.com", - "discord": "1035869217796403220" + "username": "AKBORANA3" }, "record": { + "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } diff --git a/domains/akborana.json b/domains/akborana.json deleted file mode 100644 index 4ae247682..000000000 --- a/domains/akborana.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "akborana3", - "email": "akayonfire3@gmail.com", - "discord": "1042457884736368721" - }, - "record": { - "CNAME": "akborana3.github.io" - } -} diff --git a/domains/akhilesh.json b/domains/akhilesh.json index fafe817b1..94d164882 100644 --- a/domains/akhilesh.json +++ b/domains/akhilesh.json @@ -6,6 +6,6 @@ "email": "AkhilRamachandran@gmail.com" }, "record": { - "CNAME": "ProCoderAkhil.github.io" + "CNAME": "procoderakhil.github.io" } } diff --git a/domains/akib.json b/domains/akib.json new file mode 100644 index 000000000..3e22ecc30 --- /dev/null +++ b/domains/akib.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akibsaleh", + "email": "akibsaleh.dev@gmail.com", + "discord": "akibsalehzihan" + }, + "record": { + "CNAME": "akibsaleh.vercel.app" + } +} diff --git a/domains/akiitr.json b/domains/akiitr.json new file mode 100644 index 000000000..80371efbc --- /dev/null +++ b/domains/akiitr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akiitr", + "twitter": "akiitr", + "discord": "akiitr" + }, + "record": { + "CNAME": "akiitr.github.io" + } +} diff --git a/domains/akira.json b/domains/akira.json new file mode 100644 index 000000000..4b79b5a94 --- /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" + }, + "record": { + "CNAME": "cakira.github.io" + } +} diff --git a/domains/akiraxd.json b/domains/akiraxd.json deleted file mode 100644 index cd01cd838..000000000 --- a/domains/akiraxd.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "akiraxdxd", - "email": "ekereymen451+645675476345635573454309@gmail.com", - "discord": "1241059919377989695" - }, - "record": { - "CNAME": "akiraxdxd.github.io" - } -} diff --git a/domains/akk1to.json b/domains/akk1to.json index edefd7e61..a2a8e777b 100644 --- a/domains/akk1to.json +++ b/domains/akk1to.json @@ -7,6 +7,13 @@ "discord": "727497287777124414" }, "record": { - "CNAME": "akk1to.github.io" + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/akpi.json b/domains/akpi.json index 95059fe6c..1da856509 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" - ], + "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..04b0255a3 --- /dev/null +++ b/domains/akprofile.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Akash0816", + "email": "akashoffical321@gmail.com" + }, + "record": { + "CNAME": "Akash0816.github.io" + } +} diff --git a/domains/akrm.json b/domains/akrm.json index ab7c96961..0736eb29b 100644 --- a/domains/akrm.json +++ b/domains/akrm.json @@ -1,11 +1,12 @@ { - "owner": { - "username": "KemoXtech", - "email": "aljmalrealstate@gmail.com", - "discord": "868339557593137212" - }, - "record": { - "A": ["64.62.151.106"], - "AAAA": ["2001:470:1:1ee::2009"] - } + "description": "my portfolio", + "repo": "https://github.com/KemoXtech/my-portfolio", + "owner": { + "username": "KemoXtech", + "email": "aljmalrealstate@gmail.com", + "discord": "868339557593137212" + }, + "record": { + "CNAME": "KemoXtech.github.io" + } } diff --git a/domains/akshit-jain.json b/domains/akshit-jain.json new file mode 100644 index 000000000..5071b77f2 --- /dev/null +++ b/domains/akshit-jain.json @@ -0,0 +1,10 @@ +{ + "description": "Akshit's Personal Website", + "owner": { + "username": "akshitjain16", + "email": "gang.akshitjain@gmail.com" + }, + "record": { + "URL": "https://akshit-jain.netlify.app/" + } +} diff --git a/domains/akshit.json b/domains/akshit.json new file mode 100644 index 000000000..f85325a4c --- /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" + }, + "record": { + "CNAME": "akshit2k.vercel.app" + } +} diff --git a/domains/akshtt.json b/domains/akshtt.json index 01ec8e9d9..2f39cc293 100644 --- a/domains/akshtt.json +++ b/domains/akshtt.json @@ -1,10 +1,10 @@ { "owner": { - "username": "LegendOP1041", + "username": "akshtt-dev", "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, "record": { - "A": ["69.197.135.202"] + "A": ["76.76.21.21"] } } diff --git a/domains/akshya.json b/domains/akshya.json index 0a08b60dc..330661566 100644 --- a/domains/akshya.json +++ b/domains/akshya.json @@ -6,6 +6,6 @@ "email": "akshyathapa23@gmail.com" }, "record": { - "CNAME": "LowkeyGUY4444.github.io" + "CNAME": "lowkeyguy4444.github.io" } } diff --git a/domains/akxd.json b/domains/akxd.json index 772c0a468..d74a30340 100644 --- a/domains/akxd.json +++ b/domains/akxd.json @@ -1,6 +1,5 @@ { "description": "Aditya's Portfolio", - "repo": "https://github.com/adityakumarxd", "owner": { "username": "adityakumarxd", "discord": "akxd" diff --git a/domains/akzana.json b/domains/akzana.json new file mode 100644 index 000000000..d8fefc099 --- /dev/null +++ b/domains/akzana.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Site for Akzana. I want to host small projects on Akzana.Is-A.Dev to showcase my software engineering skills.", + "repo": "https://github.com/akzana/akzana.github.io", + "owner": { + "username": "akzana", + "email": "akzanaklepsch@outlook.com" + }, + "record": { + "CNAME": "akzana.github.io" + } +} diff --git a/domains/al-bagra.json b/domains/al-bagra.json deleted file mode 100644 index 45f5a05d1..000000000 --- a/domains/al-bagra.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "UtsaVy", - "email": "utsavk681@gmail.com" - }, - "record": { - "CNAME": "utsav.github.io" - } -} diff --git a/domains/al-nahianhasan.json b/domains/al-nahianhasan.json new file mode 100644 index 000000000..4d64587c7 --- /dev/null +++ b/domains/al-nahianhasan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nahianhasan161", + "email": "nahianhasan161@gmail.com" + }, + "record": { + "CNAME": "al-nahian-portfolio.vercel.app" + } +} diff --git a/domains/alan-huynh.json b/domains/alan-huynh.json new file mode 100644 index 000000000..ddfc58b2c --- /dev/null +++ b/domains/alan-huynh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hdmquan", + "email": "hdmquan@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/alan-ren.json b/domains/alan-ren.json new file mode 100644 index 000000000..31e982f1b --- /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" + }, + "record": { + "URL": "https://alan.ooo" + } +} diff --git a/domains/alan-smith.json b/domains/alan-smith.json new file mode 100644 index 000000000..e8fb369f0 --- /dev/null +++ b/domains/alan-smith.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AlanDoesCS", + "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" + } +} diff --git a/domains/alan.json b/domains/alan.json index 988353fe7..8bc1e6e21 100644 --- a/domains/alan.json +++ b/domains/alan.json @@ -1,6 +1,5 @@ { "description": "Alan's personal developer website", - "repo": "https://github.com/schirrel", "owner": { "username": "schirrel", "email": "alan@schirrel.dev" diff --git a/domains/aland.json b/domains/aland.json new file mode 100644 index 000000000..5e1d283ac --- /dev/null +++ b/domains/aland.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alanrme", + "email": "is-a-contact@alanr.me" + }, + "record": { + "URL": "https://alanr.me" + }, + "proxied": false +} diff --git a/domains/alanr.json b/domains/alanr.json new file mode 100644 index 000000000..5e1d283ac --- /dev/null +++ b/domains/alanr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alanrme", + "email": "is-a-contact@alanr.me" + }, + "record": { + "URL": "https://alanr.me" + }, + "proxied": false +} diff --git a/domains/alanrme.json b/domains/alanrme.json new file mode 100644 index 000000000..5e1d283ac --- /dev/null +++ b/domains/alanrme.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alanrme", + "email": "is-a-contact@alanr.me" + }, + "record": { + "URL": "https://alanr.me" + }, + "proxied": false +} diff --git a/domains/alas.json b/domains/alas.json new file mode 100644 index 000000000..0681ba7c2 --- /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" + }, + "record": { + "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 new file mode 100644 index 000000000..a6889c508 --- /dev/null +++ b/domains/albakhet.json @@ -0,0 +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"] + } +} diff --git a/domains/albertoaig.json b/domains/albertoaig.json new file mode 100644 index 000000000..84a1ad9c0 --- /dev/null +++ b/domains/albertoaig.json @@ -0,0 +1,10 @@ +{ + "description": "albertoaig.is-a.dev", + "owner": { + "username": "Albertoaig", + "email": "alberto.aig10@gmail.com" + }, + "record": { + "CNAME": "portafolio-bay-eight.vercel.app" + } +} diff --git a/domains/albertodm.json b/domains/albertodm.json new file mode 100644 index 000000000..af96c304c --- /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", + "record": { + "CNAME": "albertodm.netlify.app" + } +} diff --git a/domains/alblandino.json b/domains/alblandino.json new file mode 100644 index 000000000..3da7372ac --- /dev/null +++ b/domains/alblandino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joel", + "email": "joel@alblandino.com" + }, + "record": { + "URL": "https://alblandino.com" + } +} diff --git a/domains/ale.json b/domains/ale.json new file mode 100644 index 000000000..14d2ad4cf --- /dev/null +++ b/domains/ale.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alekitopi", + "email": "hola@alekitopi.es" + }, + "record": { + "URL": "https://alekitopi.es", + "MX": ["mail.alekitopi.es"] + } +} diff --git a/domains/alec.json b/domains/alec.json new file mode 100644 index 000000000..5a5839ade --- /dev/null +++ b/domains/alec.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "asidsdamad1" + }, + "record": { + "CNAME": "asidsdamad1.github.io" + } +} diff --git a/domains/alecks.json b/domains/alecks.json index e4b298c16..791ee1bbb 100644 --- a/domains/alecks.json +++ b/domains/alecks.json @@ -1,12 +1,10 @@ { "owner": { "username": "Alecks20", - "email": "contact@alecks.dev", + "email": "hi@alecks.dev", "discord": "612522818294251522" }, "record": { - "CNAME": "evergarden.alecks.cloud" - }, - - "proxied": true + "CNAME": "alecks.pages.dev" + } } diff --git a/domains/alejandro.json b/domains/alejandro.json new file mode 100644 index 000000000..2cea35453 --- /dev/null +++ b/domains/alejandro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AlejandroSanchezSerrano", + "email": "alexxsanse@gmail.com" + }, + "record": { + "CNAME": "alejandrosanchezserrano.github.io" + } +} diff --git a/domains/alejandropi.json b/domains/alejandropi.json new file mode 100644 index 000000000..da1441620 --- /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" + }, + "record": { + "CNAME": "alejandropicano.github.io" + } +} diff --git a/domains/alemi.json b/domains/alemi.json new file mode 100644 index 000000000..b06dbc2d1 --- /dev/null +++ b/domains/alemi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alemiherbert", + "email": "alemiherbert@gmail.com" + }, + "record": { + "CNAME": "alemiherbert.github.io" + } +} diff --git a/domains/alen.json b/domains/alen.json new file mode 100644 index 000000000..6c4930fb5 --- /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" + }, + "record": { + "CNAME": "alenseeman.github.io" + } +} diff --git a/domains/alephdiallo.json b/domains/alephdiallo.json index fb0013d3a..fcb845305 100644 --- a/domains/alephdiallo.json +++ b/domains/alephdiallo.json @@ -11,9 +11,7 @@ "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/alessandrobellesia.json b/domains/alessandrobellesia.json new file mode 100644 index 000000000..ed3951d3c --- /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" + }, + "record": { + "CNAME": "alessandrobellesia.github.io" + } +} diff --git a/domains/alex.json b/domains/alex.json index c27579060..c1bba4c96 100644 --- a/domains/alex.json +++ b/domains/alex.json @@ -1,6 +1,5 @@ { "description": "Alex's personal developer website", - "repo": "https://github.com/alexmorrisnz", "owner": { "username": "alexmorrisnz", "email": "alex@navra.nz" diff --git a/domains/alexandre-machado.json b/domains/alexandre-machado.json new file mode 100644 index 000000000..d8a2ee708 --- /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" + }, + "record": { + "URL": "https://alexandre.machado.cc" + } +} diff --git a/domains/alexcantor.json b/domains/alexcantor.json new file mode 100644 index 000000000..ee2f45d12 --- /dev/null +++ b/domains/alexcantor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alex-cantor", + "email": "alexcantor99@gmail.com" + }, + "record": { + "CNAME": "alex-cantor.github.io" + } +} diff --git a/domains/alexismansilla.json b/domains/alexismansilla.json new file mode 100644 index 000000000..730ed5842 --- /dev/null +++ b/domains/alexismansilla.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dv-del", + "email": "", + "discord": "dv_del" + }, + "record": { + "CNAME": "alexismansilla.vercel.app" + } +} diff --git a/domains/alexpcooper.json b/domains/alexpcooper.json index e54ab8c03..3acbec1f3 100644 --- a/domains/alexpcooper.json +++ b/domains/alexpcooper.json @@ -1,6 +1,5 @@ { "description": "Developer in the United Kingdom", - "repo": "https://github.com/alexpcooper", "record": { "URL": "https://alexpcooper.co.uk" }, diff --git a/domains/alexsquibbs.json b/domains/alexsquibbs.json index f60c3b1ca..c24122add 100644 --- a/domains/alexsquibbs.json +++ b/domains/alexsquibbs.json @@ -3,7 +3,6 @@ "record": { "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..b19eeb9e1 --- /dev/null +++ b/domains/alexxhumilde.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ALEXXHUMILDE", + "email": "alexxcrack3@gmail.com" + }, + "record": { + "CNAME": "alexxhumilde.netlify.app" + } +} diff --git a/domains/alfred.json b/domains/alfred.json index c3bae96d2..190259ff9 100644 --- a/domains/alfred.json +++ b/domains/alfred.json @@ -6,6 +6,6 @@ "email": "alvinallen333@gmail.com" }, "record": { - "CNAME": "AlfredDiscordBot.github.io" + "CNAME": "alfreddiscordbot.github.io" } } diff --git a/domains/alfredjophy.json b/domains/alfredjophy.json new file mode 100644 index 000000000..f852093a0 --- /dev/null +++ b/domains/alfredjophy.json @@ -0,0 +1,10 @@ +{ + "description": "Redirect for my personal website.", + "owner": { + "username": "alfredjophy", + "email": "mail@alfredjophy.com" + }, + "record": { + "CNAME": "alfredjophy.com" + } +} diff --git a/domains/ali-abdurrazzak.json b/domains/ali-abdurrazzak.json index 47101becd..b411fc225 100644 --- a/domains/ali-abdurrazzak.json +++ b/domains/ali-abdurrazzak.json @@ -4,7 +4,7 @@ "owner": { "username": "aliabdurrazzak", "email": "aliabdurrazzak@gmail.com", - "twitter": "@aliabdurrazzak" + "twitter": "aliabdurrazzak" }, "record": { "CNAME": "aliabdurrazzak.github.io" 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/alimad.json b/domains/alimad.json new file mode 100644 index 000000000..57b386e00 --- /dev/null +++ b/domains/alimad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Alimadcorp", + "email": "alimad.co.ltd@gmail.com" + }, + "record": { + "CNAME": "alimad.vercel.app" + } +} diff --git a/domains/alisa.json b/domains/alisa.json new file mode 100644 index 000000000..78dae86ba --- /dev/null +++ b/domains/alisa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lunas-private-dungeon", + "email": "luna.tsx@proton.me", + "discord": "507625218467168257" + }, + "record": { + "CNAME": "alisa-win95.vercel.app" + } +} diff --git a/domains/alkorsan.json b/domains/alkorsan.json new file mode 100644 index 000000000..3368dcbb6 --- /dev/null +++ b/domains/alkorsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "badrelmers", + "email": "alkorsan@gmail.com" + }, + "record": { + "CNAME": "alkorsan.pages.dev" + } +} diff --git a/domains/all.json b/domains/all.json new file mode 100644 index 000000000..de7c6e90a --- /dev/null +++ b/domains/all.json @@ -0,0 +1,21 @@ +{ + "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" + }, + "record": { + "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/allen-xavier.json b/domains/allen-xavier.json new file mode 100644 index 000000000..2c8121245 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/allen.json b/domains/allen.json index a48f293d7..04c075550 100644 --- a/domains/allen.json +++ b/domains/allen.json @@ -1,6 +1,5 @@ { "description": "A full-stack developer.", - "repo": "https://github.com/xiaofuyesnew", "owner": { "username": "xiaofuyesnew", "email": "xiaofuyesnew@qq.com", diff --git a/domains/allvaa.json b/domains/allvaa.json index 868cb2733..4ff890db3 100644 --- a/domains/allvaa.json +++ b/domains/allvaa.json @@ -1,6 +1,5 @@ { "description": "Allvaa's personal website", - "repo": "https://github.com/Allvaa", "owner": { "username": "Allvaa", "twitter": "allvzx" diff --git a/domains/ally.json b/domains/ally.json index 28df78154..c377bc532 100644 --- a/domains/ally.json +++ b/domains/ally.json @@ -1,6 +1,5 @@ { "description": "Ally's personal website", - "repo": "https://github.com/AllyTally", "owner": { "username": "AllyTally", "email": "alexiatilde@gmail.com" diff --git a/domains/almatch.json b/domains/almatch.json index 858fd84b7..d5130616a 100644 --- a/domains/almatch.json +++ b/domains/almatch.json @@ -1,6 +1,5 @@ { "description": "Imad", - "repo": "https://github.com/imadboy89", "owner": { "username": "imadboy89", "email": "imad.kh@outlook.com" diff --git a/domains/almightynan.json b/domains/almightynan.json index e592fa237..e30d5bb13 100644 --- a/domains/almightynan.json +++ b/domains/almightynan.json @@ -1,5 +1,4 @@ { - "repo": "https://github.com/almightynan", "owner": { "username": "almightynan", "email": "almightynan@gmail.com" diff --git a/domains/alpha.json b/domains/alpha.json index acc3d3353..9ec626b63 100644 --- a/domains/alpha.json +++ b/domains/alpha.json @@ -1,13 +1,12 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { - "URL": "https://yfadev.pw", + "URL": "https://youfoundalpha.pages.dev", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/alphaspheredotai.json b/domains/alphaspheredotai.json new file mode 100644 index 000000000..d63863f4d --- /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" + }, + "record": { + "CNAME": "alphaspheredotai.github.io" + } +} diff --git a/domains/alrakib.json b/domains/alrakib.json new file mode 100644 index 000000000..3ee2d4b4a --- /dev/null +++ b/domains/alrakib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alrakibthedev", + "email": "alrakibthedev@gmail.com" + }, + "record": { + "CNAME": "alrakibthedev.vercel.app" + } +} diff --git a/domains/alriy.json b/domains/alriy.json new file mode 100644 index 000000000..55b93e5e8 --- /dev/null +++ b/domains/alriy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dami6u9", + "email": "danielyalikotte@gmail.com" + }, + "record": { + "CNAME": "dami6u9.github.io" + } +} diff --git a/domains/alvaro14.json b/domains/alvaro14.json new file mode 100644 index 000000000..d11b61a8f --- /dev/null +++ b/domains/alvaro14.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lovian", + "email": "stikamera26@gmail.com" + }, + "record": { + "CNAME": "cfpages-4pw.pages.dev" + } +} diff --git a/domains/alvindennis.json b/domains/alvindennis.json new file mode 100644 index 000000000..f4a648ce3 --- /dev/null +++ b/domains/alvindennis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvin-dennis", + "discord": "732503927940972605" + }, + "record": { + "CNAME": "alvindennis.vercel.app" + } +} diff --git a/domains/alwen.json b/domains/alwen.json new file mode 100644 index 000000000..245387288 --- /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" + }, + "record": { + "CNAME": "ym60h2na.up.railway.app" + } +} diff --git a/domains/aly.json b/domains/aly.json new file mode 100644 index 000000000..830b7d77c --- /dev/null +++ b/domains/aly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "el7amrawy", + "email": "el7amrawy@outlook.com" + }, + "record": { + "CNAME": "portfolio-8sc.pages.dev" + } +} diff --git a/domains/aman.json b/domains/aman.json new file mode 100644 index 000000000..3070dffa8 --- /dev/null +++ b/domains/aman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amang9446", + "email": "dev.aman7571@gmail.com" + }, + "record": { + "CNAME": "dev-aman.vercel.app" + } +} diff --git a/domains/amandajauregui.json b/domains/amandajauregui.json new file mode 100644 index 000000000..820945266 --- /dev/null +++ b/domains/amandajauregui.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jauregao", + "email": "amandajauregui.dev@gmail.com", + "discord": "jauregao" + }, + "record": { + "CNAME": "portifolio-amandajauregui.vercel.app" + } +} diff --git a/domains/amanza17.json b/domains/amanza17.json new file mode 100644 index 000000000..509607016 --- /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" + }, + "record": { + "CNAME": "amanza17.github.io" + } +} diff --git a/domains/amardeep.json b/domains/amardeep.json new file mode 100644 index 000000000..60cb90cf9 --- /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" + }, + "record": { + "CNAME": "amardeep-portfolio.vercel.app" + } +} diff --git a/domains/ameen.json b/domains/ameen.json new file mode 100644 index 000000000..f55681fad --- /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" + }, + "record": { + "CNAME": "am333n.github.io" + } +} diff --git a/domains/amirhossein-esanezhad.json b/domains/amirhossein-esanezhad.json deleted file mode 100644 index 868b32dab..000000000 --- a/domains/amirhossein-esanezhad.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "esa-zz", - "email": "amirhossein6055@gmail.com" - }, - "record": { - "A": ["51.38.127.41"] - } -} diff --git a/domains/amitkr.json b/domains/amitkr.json new file mode 100644 index 000000000..37e55c1ae --- /dev/null +++ b/domains/amitkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "buddhhu", + "email": "amitsharma123234@gmail.com" + }, + "record": { + "CNAME": "amitkr.vercel.app" + } +} \ No newline at end of file diff --git a/domains/amiyo.json b/domains/amiyo.json index c551b7e87..49bef67c7 100644 --- a/domains/amiyo.json +++ b/domains/amiyo.json @@ -2,7 +2,6 @@ "owner": { "username": "DevAmiyo", "email": "devamiyosp@gmail.com", - "repo": "https://github.com/DevAmiyo", "discord": "Amiyo#7978", "twitter": "AmiyoTweets" }, diff --git a/domains/amjad.json b/domains/amjad.json deleted file mode 100644 index e6014a143..000000000 --- a/domains/amjad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/amjadAH/amjadAH.github.io", - "owner": { - "username": "amjadAH", - "email": "amjad_ah_@hotmail.com", - "tiwtter": "amjad_ah_" - }, - "record": { - "CNAME": "amjadAH.github.io" - } -} diff --git a/domains/ammar.json b/domains/ammar.json new file mode 100644 index 000000000..b8af925a9 --- /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" + }, + "record": { + "CNAME": "ammaryasser1998.github.io" + } +} diff --git a/domains/amosmurmu.json b/domains/amosmurmu.json new file mode 100644 index 000000000..51a587a05 --- /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" + }, + "record": { + "CNAME": "amosmurmu.github.io" + } +} diff --git a/domains/amr.json b/domains/amr.json new file mode 100644 index 000000000..d33621228 --- /dev/null +++ b/domains/amr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "agawish", + "email": "amr.gawish@gmail.com" + }, + "record": { + "CNAME": "amr-gawish.com" + } +} diff --git a/domains/amrut.json b/domains/amrut.json new file mode 100644 index 000000000..e4cd4f24d --- /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" + }, + "record": { + "CNAME": "amrutgawade.github.io" + } +} diff --git a/domains/an.json b/domains/an.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/an.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/analytics.juststudio.json b/domains/analytics.juststudio.json new file mode 100644 index 000000000..cbd6e4639 --- /dev/null +++ b/domains/analytics.juststudio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": ["34.120.54.55"], + "AAAA": ["2600:1901:0:6d85::"] + } +} diff --git a/domains/anamay.json b/domains/anamay.json index 1fb8f1101..7802bd4a4 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" + "CNAME": "anamay.eu.org" } } diff --git a/domains/anand.json b/domains/anand.json new file mode 100644 index 000000000..5a627fafc --- /dev/null +++ b/domains/anand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anandd17", + "email": "avdoddamani123@gmail.com" + }, + "record": { + "CNAME": "anandd17.vercel.app" + } +} diff --git a/domains/anatoli.json b/domains/anatoli.json new file mode 100644 index 000000000..ecafc54b2 --- /dev/null +++ b/domains/anatoli.json @@ -0,0 +1,10 @@ +{ + "description": "Anatoli Nicolae", + "owner": { + "username": "anatolinicolae", + "email": "is-a-dev@anatolinicolae.com" + }, + "record": { + "URL": "https://anatolinicolae.com/" + } +} diff --git a/domains/anay-208.json b/domains/anay-208.json index 39fea189b..6d2c4d712 100644 --- a/domains/anay-208.json +++ b/domains/anay-208.json @@ -1,9 +1,10 @@ { "owner": { "username": "anay-208", - "email": "admin@anayparaswani.me" + "email": "me@anayparaswani.dev", + "discord": "anay_208" }, "record": { - "URL": "https://anayparaswani.me/" + "URL": "https://anayparaswani.dev/" } } diff --git a/domains/anay.json b/domains/anay.json index 39fea189b..6d2c4d712 100644 --- a/domains/anay.json +++ b/domains/anay.json @@ -1,9 +1,10 @@ { "owner": { "username": "anay-208", - "email": "admin@anayparaswani.me" + "email": "me@anayparaswani.dev", + "discord": "anay_208" }, "record": { - "URL": "https://anayparaswani.me/" + "URL": "https://anayparaswani.dev/" } } diff --git a/domains/anayparaswani.json b/domains/anayparaswani.json index 39fea189b..6d2c4d712 100644 --- a/domains/anayparaswani.json +++ b/domains/anayparaswani.json @@ -1,9 +1,10 @@ { "owner": { "username": "anay-208", - "email": "admin@anayparaswani.me" + "email": "me@anayparaswani.dev", + "discord": "anay_208" }, "record": { - "URL": "https://anayparaswani.me/" + "URL": "https://anayparaswani.dev/" } } diff --git a/domains/anbuinfosec.json b/domains/anbuinfosec.json index 781f9dcaa..b9a26f6f2 100644 --- a/domains/anbuinfosec.json +++ b/domains/anbuinfosec.json @@ -1,10 +1,6 @@ { - "description": "Portfolio for anbuinfosec..", - "repo": "https://github.com/anbuinfosec/anbuinfosec.github.io", "owner": { - "username": "anbuinfosec", - "email": "anbuinfosec@gmail.com", - "twitter": "" + "username": "anbuinfosec" }, "record": { "CNAME": "anbuinfosec.github.io" diff --git a/domains/andre.json b/domains/andre.json new file mode 100644 index 000000000..a35fa7a17 --- /dev/null +++ b/domains/andre.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/andrexduarte/adx", + "owner": { + "username": "andrexduarte", + "email": "andrexduarte@gmail.com" + }, + "record": { + "CNAME": "andrexduarte.github.io" + } +} diff --git a/domains/andrea.json b/domains/andrea.json index 515c2db76..30030d36c 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"] + "A": ["62.171.176.192"] } } diff --git a/domains/andreh.json b/domains/andreh.json new file mode 100644 index 000000000..394ce9694 --- /dev/null +++ b/domains/andreh.json @@ -0,0 +1,12 @@ +{ + "description" : "Personal coolify website for fun", + "owner" : { + "username" : "quickburrrn", + "email" : "andre.hansen146@gmail.com" + }, + "record" : { + "A" : [ + "65.108.219.118" + ] + } +} diff --git a/domains/andreijiroh.json b/domains/andreijiroh.json index 85224d2d1..a9da6c39e 100644 --- a/domains/andreijiroh.json +++ b/domains/andreijiroh.json @@ -2,9 +2,11 @@ "owner": { "username": "ajhalili2006", "discord": "437044173825114113", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYflKk2IBSfS6chUMYUGHREeeZVR18nZA-TlYCa5lgQGaR1P6lixNKJAJcJv72mUkHus2VyrrxSkl5ttCTtBXFdFs8eA4jNFPjtvC_7Qt-i_v0UWs5rxtdZ2y3MsN6jzPeVzHcVq2gQG9RFdIniBHMKuEOfiPCPqXp_CbdjBddCRQRsIzunnAwof917053o4EV3JCMVN9ObW3Jdq9GD9QaB_vPG9HjFqzwlvSA6QFbQYYilvij7UF5I3pcLfNyOw3tascM6GMDlXJxtqL2r6HLo58MSagDKycFCuuxdfsRljnLypuwF0m_3bEV76QRpvMWY_NmW6FaveHLjzd82l0g.ABEBdXC3pvmyqoKfDAw86A.NNKf3gP3_-fzpnvGWIBJaSzsU-d1ZJsDFJSyc52B6pjz1LrYOeK_0-QjF8w1Y1xiaRz475Drvb-27xOCjANJjZlgtCVrG1mgVxWDanb30kmyV8KtNLnlGO3VKMWXqy7r.K9X3W6jos3JsIFCn6LGifA" + "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": { - "CNAME": "ajhalili2006.pages.dev" + "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..03f1e4498 --- /dev/null +++ b/domains/andres-jaramillo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "andresfer1799", + "email": "andresfer1799@gmail.com" + }, + "record": { + "CNAME": "mi-portafolio-wine.vercel.app" + } +} diff --git a/domains/andresarr.json b/domains/andresarr.json new file mode 100644 index 000000000..31c5e2b16 --- /dev/null +++ b/domains/andresarr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anonymous1223334444", + "email": "replit005@gmail.com" + }, + "record": { + "CNAME": "portofoliowebdev.vercel.app" + } +} diff --git a/domains/andrew.json b/domains/andrew.json new file mode 100644 index 000000000..5402b8f7d --- /dev/null +++ b/domains/andrew.json @@ -0,0 +1,13 @@ +{ + "description": "my portofolio", + "owner": { + "username": "lightningON90hz", + "email": "andrewworkmail123@gmail.com" + }, + "record": { + "A": [ + "69.30.249.53" + ] + }, + "proxied": false +} diff --git a/domains/andriampeno.json b/domains/andriampeno.json new file mode 100644 index 000000000..18e54c391 --- /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" + }, + "record": { + "CNAME": "odie100.github.io" + } +} diff --git a/domains/andros.json b/domains/andros.json index 009bd3cf0..b2f3850cf 100644 --- a/domains/andros.json +++ b/domains/andros.json @@ -1,6 +1,5 @@ { "description": "Andros's personal developer website", - "repo": "https://github.com/tanrax", "owner": { "username": "tanrax", "twitter": "androsfenollosa" diff --git a/domains/aneeqkhurram007.json b/domains/aneeqkhurram007.json new file mode 100644 index 000000000..00c29b005 --- /dev/null +++ b/domains/aneeqkhurram007.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aneeqkhurram007", + "email": "aneeqkhurram007@yahoo.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} \ No newline at end of file diff --git a/domains/aneeshraskar.json b/domains/aneeshraskar.json new file mode 100644 index 000000000..9bbbcc007 --- /dev/null +++ b/domains/aneeshraskar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zephyrus02", + "email": "aneeshraskar@gmail.com" + }, + "record": { + "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/angelwuff.json b/domains/angelwuff.json index a8e79e4c1..b6f298fbb 100644 --- a/domains/angelwuff.json +++ b/domains/angelwuff.json @@ -6,6 +6,6 @@ "twitter": "AngelTheWolfy" }, "record": { - "CNAME": "Angelix1.github.io" + "CNAME": "angelix1.github.io" } } diff --git a/domains/anger.json b/domains/anger.json deleted file mode 100644 index 3db92ec84..000000000 --- a/domains/anger.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Will be used to show my page showing stuff about me", - "repo": "https://github.com/angerminecraftyt/aboutme", - "owner": { - "username": "AngerminecraftYT", - "discord": "AngerMinecraftYT#3051" - }, - "record": { - "CNAME": "angerminecraftyt.github.io" - } -} diff --git a/domains/angganix.json b/domains/angganix.json new file mode 100644 index 000000000..9c87dedd8 --- /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" + }, + "record": { + "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..f7609133c --- /dev/null +++ b/domains/anhdt.json @@ -0,0 +1,10 @@ +{ + "description": "anhdt.is-a.dev", + "owner": { + "username": "dtavnn", + "email": "dtafzum@gmail.com" + }, + "record": { + "CNAME": "dtavnn.github.io" + } +} diff --git a/domains/anhnguyen94.json b/domains/anhnguyen94.json new file mode 100644 index 000000000..cdec6a2ff --- /dev/null +++ b/domains/anhnguyen94.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio redirect for anhnguyen1907", + "owner": { + "username": "anhnguyen1907", + "email": "cau2tomy@gmail.com" + }, + "record": { + "CNAME": "anhnguyen1907.github.io" + } +} diff --git a/domains/anhvt.json b/domains/anhvt.json new file mode 100644 index 000000000..0fe602a8c --- /dev/null +++ b/domains/anhvt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anhvt3010", + "email": "anh.vt.3010@gmail.com" + }, + "record": { + "CNAME": "build-cv.vercel.app" + } +} diff --git a/domains/anibalbastiass.json b/domains/anibalbastiass.json new file mode 100644 index 000000000..4fc3836f0 --- /dev/null +++ b/domains/anibalbastiass.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anibalbastiass", + "email": "anibal.bastias@gmail.com" + }, + "record": { + "CNAME": "anibalbastiass.github.io" + } +} diff --git a/domains/aniket.json b/domains/aniket.json new file mode 100644 index 000000000..a99a6d2d1 --- /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" + }, + "record": { + "URL": "https://aniket.codes" + } +} diff --git a/domains/anime.girl.json b/domains/anime.girl.json new file mode 100644 index 000000000..00ab0224a --- /dev/null +++ b/domains/anime.girl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "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..261b1eb1b --- /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" + }, + "record": { + "CNAME": "animeshkotka.github.io" + } +} diff --git a/domains/anirban-das.json b/domains/anirban-das.json new file mode 100644 index 000000000..fae1432c3 --- /dev/null +++ b/domains/anirban-das.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sherlock5000", + "email": "danirban5000@gmail.com" + }, + "record": { + "CNAME": "sherlock5000.github.io" + } +} diff --git a/domains/ankit-chaubey.json b/domains/ankit-chaubey.json index 0c089e77d..d5e3be97d 100644 --- a/domains/ankit-chaubey.json +++ b/domains/ankit-chaubey.json @@ -1,13 +1,13 @@ { - "description": "Ankit Chaubey's GitHub page", - "repo": "https://github.com/ankit-chaubey/ankit-chaubey", - "owner": { - "username": "ankit-chaubey", - "email": "m.ankitchaubey@gmail.com", - "telegram": "ankit_chaubey", - "github": "ankit-chaubey" - }, - "record": { - "CNAME": "ankit-chaubey.github.io" - } + "description": "Ankit Chaubey's GitHub page", + "repo": "https://github.com/ankit-chaubey/ankit-chaubey", + "owner": { + "username": "ankit-chaubey", + "email": "m.ankitchaubey@gmail.com", + "telegram": "ankit_chaubey", + "github": "ankit-chaubey" + }, + "record": { + "CNAME": "ankit-chaubey.github.io" + } } diff --git a/domains/ankit-kelkar.json b/domains/ankit-kelkar.json new file mode 100644 index 000000000..1f43baee6 --- /dev/null +++ b/domains/ankit-kelkar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akelkar3", + "email": "ankit.kelkar@gmail.com" + }, + "record": { + "CNAME": "akelkar3.github.io" + } +} diff --git a/domains/ankitchaubey.json b/domains/ankitchaubey.json index 0c089e77d..d5e3be97d 100644 --- a/domains/ankitchaubey.json +++ b/domains/ankitchaubey.json @@ -1,13 +1,13 @@ { - "description": "Ankit Chaubey's GitHub page", - "repo": "https://github.com/ankit-chaubey/ankit-chaubey", - "owner": { - "username": "ankit-chaubey", - "email": "m.ankitchaubey@gmail.com", - "telegram": "ankit_chaubey", - "github": "ankit-chaubey" - }, - "record": { - "CNAME": "ankit-chaubey.github.io" - } + "description": "Ankit Chaubey's GitHub page", + "repo": "https://github.com/ankit-chaubey/ankit-chaubey", + "owner": { + "username": "ankit-chaubey", + "email": "m.ankitchaubey@gmail.com", + "telegram": "ankit_chaubey", + "github": "ankit-chaubey" + }, + "record": { + "CNAME": "ankit-chaubey.github.io" + } } diff --git a/domains/anmol-chaudhary.json b/domains/anmol-chaudhary.json new file mode 100644 index 000000000..5f5048ab9 --- /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" + }, + "record": { + "CNAME": "anmol-chaudhary.vercel.app" + } +} diff --git a/domains/anmol.json b/domains/anmol.json new file mode 100644 index 000000000..85b55db21 --- /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" + }, + "record": { + "CNAME": "tecanmol.github.io" + } +} diff --git a/domains/annant.json b/domains/annant.json new file mode 100644 index 000000000..395feff14 --- /dev/null +++ b/domains/annant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ThatNerdyKun", + "discord": "629851641579044874" + }, + "record": { + "CNAME": "annant.pages.dev" + } +} diff --git a/domains/anony.json b/domains/anony.json new file mode 100644 index 000000000..e47ce1d74 --- /dev/null +++ b/domains/anony.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "celestix", + "email": "i@anodite.me" + }, + "record": { + "URL": "https://anodite.me/" + } +} diff --git a/domains/ansh.json b/domains/ansh.json new file mode 100644 index 000000000..7a29bba12 --- /dev/null +++ b/domains/ansh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anshaneja5", + "email": "anshanejaa@gmail.com" + }, + "record": { + "CNAME": "portfolio-xi-liard-96.vercel.app" + } +} diff --git a/domains/anshkabra.json b/domains/anshkabra.json new file mode 100644 index 000000000..1570caf77 --- /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" + }, + "record": { + "CNAME": "anshkabra2012.github.io" + } +} diff --git a/domains/anshtyagi.json b/domains/anshtyagi.json index d67363e53..1afcbffcd 100644 --- a/domains/anshtyagi.json +++ b/domains/anshtyagi.json @@ -1,6 +1,5 @@ { "description": "Ansh's personal website", - "repo": "https://github.com/anshtyagi0", "owner": { "username": "anshtyagi0", "email": "tyagiansh175@gmail.com" diff --git a/domains/anshu.json b/domains/anshu.json new file mode 100644 index 000000000..2dac10c30 --- /dev/null +++ b/domains/anshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anshu-prakash", + "email": "anshuprakash8445@gmail.com" + }, + "record": { + "CNAME": "anshu-prakash.github.io" + } +} diff --git a/domains/ante.json b/domains/ante.json new file mode 100644 index 000000000..0f8833e92 --- /dev/null +++ b/domains/ante.json @@ -0,0 +1,28 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "record": { + "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/anthonydev.json b/domains/anthonydev.json new file mode 100644 index 000000000..49e267a4b --- /dev/null +++ b/domains/anthonydev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anthonyuseche", + "email": "anthonyuseche64@gmail.com" + }, + "record": { + "CNAME": "anthonyuseche.github.io" + } +} diff --git a/domains/anthrxc.json b/domains/anthrxc.json new file mode 100644 index 000000000..c46f12d71 --- /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" + }, + "record": { + "CNAME": "anthrxc.github.io" + } +} diff --git a/domains/anthxny.json b/domains/anthxny.json new file mode 100644 index 000000000..dd857c480 --- /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" + }, + "record": { + "CNAME": "anthportafolio.netlify.app" + } +} diff --git a/domains/antony.json b/domains/antony.json new file mode 100644 index 000000000..d57d331c4 --- /dev/null +++ b/domains/antony.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AntonyPeter0", + "email": "antonypeter1998@gmail.com" + }, + "description": "Sample resume page created for placeholding", + "record": { + "CNAME": "antonypeter0.github.io" + } +} diff --git a/domains/anujer.json b/domains/anujer.json new file mode 100644 index 000000000..f73196bb3 --- /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" + }, + "record": { + "CNAME": "siwach.vercel.app" + } +} diff --git a/domains/anukarop.json b/domains/anukarop.json index 6bdf8a297..b25c1a9aa 100644 --- a/domains/anukarop.json +++ b/domains/anukarop.json @@ -5,6 +5,6 @@ "discord": "AnukarOP" }, "record": { - "CNAME": "AnukarOP.github.io" + "CNAME": "anukarop.github.io" } } diff --git a/domains/anuraglimbu.json b/domains/anuraglimbu.json new file mode 100644 index 000000000..ebbb12545 --- /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" + }, + "record": { + "URL": "https://anuraglimbu.com.np" + } +} diff --git a/domains/anushi.json b/domains/anushi.json new file mode 100644 index 000000000..2903884d6 --- /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" + }, + "record": { + "CNAME": "anushi-portfolio.vercel.app" + } +} diff --git a/domains/anveshraman.json b/domains/anveshraman.json new file mode 100644 index 000000000..6034749a5 --- /dev/null +++ b/domains/anveshraman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SA-Army", + "email": "anveshraman.ae@gmail.com" + }, + "record": { + "CNAME": "developeranveshraman.github.io" + } +} diff --git a/domains/anw.json b/domains/anw.json new file mode 100644 index 000000000..6bdab900a --- /dev/null +++ b/domains/anw.json @@ -0,0 +1,10 @@ +{ + "description": "ANW's (Subhrajit Sain) Personal Site", + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "record": { + "CNAME": "anw-site.vercel.app" + } +} diff --git a/domains/aocsa.json b/domains/aocsa.json new file mode 100644 index 000000000..43d1db144 --- /dev/null +++ b/domains/aocsa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aocsa", + "email": "alexander.ocsa@gmail.com" + }, + "record": { + "CNAME": "aocsa.github.io" + } +} diff --git a/domains/aoozora.json b/domains/aoozora.json new file mode 100644 index 000000000..f72814134 --- /dev/null +++ b/domains/aoozora.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aoozoraa", + "email": "akuummuu@gmail.com" + }, + "record": { + "A": ["143.47.59.128"] + } +} diff --git a/domains/aozora.json b/domains/aozora.json index 35701f9af..5564fe41c 100644 --- a/domains/aozora.json +++ b/domains/aozora.json @@ -1,6 +1,5 @@ { "description": "Just my personal website", - "repo": "https://github.com/AozoraDev", "owner": { "username": "AozoraDev", "email": "aozoradeveloper@gmail.com" diff --git a/domains/api-kirito.json b/domains/api-kirito.json index f5bafe9cb..36102645d 100644 --- a/domains/api-kirito.json +++ b/domains/api-kirito.json @@ -1,6 +1,5 @@ { "description": "For My API!", - "repo": "https://github.com/ThisMe124", "owner": { "username": "ThisMe124", "email": "anonymous.orgn@gmail.com" diff --git a/domains/api-peantastic.json b/domains/api-peantastic.json new file mode 100644 index 000000000..d385390ea --- /dev/null +++ b/domains/api-peantastic.json @@ -0,0 +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" + } +} diff --git a/domains/api.acronical.json b/domains/api.acronical.json new file mode 100644 index 000000000..fa8380b23 --- /dev/null +++ b/domains/api.acronical.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "record": { + "A": ["138.68.133.84"] + } +} diff --git a/domains/api.anshtyagi.json b/domains/api.anshtyagi.json index e237132d7..fa67dace8 100644 --- a/domains/api.anshtyagi.json +++ b/domains/api.anshtyagi.json @@ -1,6 +1,5 @@ { "description": "API WEBSITE", - "repo": "https://github.com/anshtyagi0", "owner": { "username": "anshtyagi0", "email": "tyagiansh175@gmail.com" diff --git a/domains/api.dark.json b/domains/api.dark.json new file mode 100644 index 000000000..c8ff1362d --- /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" + }, + "record": { + "A": ["34.57.65.208"] + } +} diff --git a/domains/api.formuna.json b/domains/api.formuna.json new file mode 100644 index 000000000..9e85e83df --- /dev/null +++ b/domains/api.formuna.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "FormunaGit" + }, + "record": { + "CNAME": "formuna-api.vercel.app" + } +} 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..54be96678 --- /dev/null +++ b/domains/api.katidoki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hitoshi-okada", + "email": "okada@katidoki.com" + }, + "record": { + "CNAME": "hitoshi-okada.github.io" + } +} diff --git a/domains/api.kruase.json b/domains/api.kruase.json new file mode 100644 index 000000000..e08408500 --- /dev/null +++ b/domains/api.kruase.json @@ -0,0 +1,14 @@ +{ + "description": "Development and pet-project APIs", + "repo": "https://github.com/KruASe76", + "owner": { + "username": "KruASe76", + "email": "kruanse@ya.ru", + "telegram": "https://t.me/KruASe" + }, + "record": { + "A": [ + "89.19.177.86" + ] + } +} diff --git a/domains/api.rachancheet.json b/domains/api.rachancheet.json new file mode 100644 index 000000000..d244b1026 --- /dev/null +++ b/domains/api.rachancheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rachancheet", + "email": "raxxsngh37@gmail.com" + }, + "record": { + "A": ["152.67.163.7"] + } +} diff --git a/domains/api.seiko.json b/domains/api.seiko.json new file mode 100644 index 000000000..0dfeedd7e --- /dev/null +++ b/domains/api.seiko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Delta-0mega", + "email": "seikoo.dev@gmail.com", + "discord": "1293641904860172389" + }, + "record": { + "A": ["88.151.197.194"] + } +} diff --git a/domains/api.semant.json b/domains/api.semant.json index 7dde925c0..eef2b7841 100644 --- a/domains/api.semant.json +++ b/domains/api.semant.json @@ -1,7 +1,7 @@ { "description": "Semant Api", "owner": { - "username": "s3mant", + "username": "ihacksemant", "email": "contact@semant.is-a.dev", "discord": "445073800850046977" }, diff --git a/domains/api.sono.json b/domains/api.sono.json deleted file mode 100644 index 12bfb8a8b..000000000 --- a/domains/api.sono.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "getSono", - "email": "sono.arbeit@gmail.com" - }, - "record": { - "CNAME": "imaginary-wakeful-busby.glitch.me" - } -} diff --git a/domains/app-giua.json b/domains/app-giua.json new file mode 100644 index 000000000..26d28e91c --- /dev/null +++ b/domains/app-giua.json @@ -0,0 +1,11 @@ +{ + "description": "Giua-App è l'applicazione non ufficiale dei registri elettronici giua@school", + "repo": "https://github.com/Milanstarkk/Giua-App", + "owner": { + "username": "Milanstarkk", + "email": "milanstark09yt@gmail.com" + }, + "record": { + "CNAME": "milanstarkk.github.io" + } +} 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.vyductan.json b/domains/app.vyductan.json new file mode 100644 index 000000000..fd12147df --- /dev/null +++ b/domains/app.vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/april.json b/domains/april.json new file mode 100644 index 000000000..d2171486d --- /dev/null +++ b/domains/april.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/arithefirst/portfolio", + "owner": { + "username": "arithefirst", + "email": "ari@arithefirst.com" + }, + "record": { + "URL": "https://www.arithefirst.com" + } +} diff --git a/domains/aquiffoo.json b/domains/aquiffoo.json new file mode 100644 index 000000000..baa01110f --- /dev/null +++ b/domains/aquiffoo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aquiffoo", + "email": "aquilesffoliveira@gmail.com" + }, + "record": { + "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..06b7adceb --- /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" + }, + "record": { + "URL": "https://dev-arafat.netlify.app" + } +} diff --git a/domains/arash.json b/domains/arash.json new file mode 100644 index 000000000..d4c361ea9 --- /dev/null +++ b/domains/arash.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website/blog", + "owner": { + "username": "hatamiarash7", + "email": "hatamiarash7@gmail.com", + "twitter": "hatamiarash7" + }, + "record": { + "URL": "https://arash-hatami.ir" + } +} diff --git a/domains/arca.json b/domains/arca.json new file mode 100644 index 000000000..9cdd568b0 --- /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" + }, + "record": { + "CNAME": "anibalcapaza.github.io" + } +} diff --git a/domains/archive.json b/domains/archive.json new file mode 100644 index 000000000..639f942d1 --- /dev/null +++ b/domains/archive.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153" + ] + } +} diff --git a/domains/ardox.json b/domains/ardox.json deleted file mode 100644 index 24d080fbb..000000000 --- a/domains/ardox.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "LeVraiArdox", - "email": "adrian.arjoca18@gmail.com" - }, - "record": { - "CNAME": "levraiardox.github.io" - } -} diff --git a/domains/aref.json b/domains/aref.json new file mode 100644 index 000000000..6cb9feb2f --- /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" + }, + "record": { + "URL": "https://stormaref.github.io/" + } +} diff --git a/domains/arhanansari.json b/domains/arhanansari.json new file mode 100644 index 000000000..39c01c9a0 --- /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" + }, + "record": { + "CNAME": "arhanansari.vercel.app" + } +} diff --git a/domains/ariabid.json b/domains/ariabid.json new file mode 100644 index 000000000..5d0b9f54c --- /dev/null +++ b/domains/ariabid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ariabid", + "email": "ari.abid@gmail.com" + }, + "record": { + "URL": "https://ariabid.github.io" + } +} diff --git a/domains/arif.json b/domains/arif.json new file mode 100644 index 000000000..65cbda863 --- /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" + }, + "record": { + "CNAME": "arif-islam.github.io" + } +} diff --git a/domains/ariffhazmi.json b/domains/ariffhazmi.json index 638b5bc14..ab147f361 100644 --- a/domains/ariffhazmi.json +++ b/domains/ariffhazmi.json @@ -6,6 +6,6 @@ "email": "muhdariffhazmi@gmail.com" }, "record": { - "CNAME": "Areplesapelagi.github.io" + "CNAME": "areplesapelagi.github.io" } } diff --git a/domains/arijit.json b/domains/arijit.json index 294cd31ab..70e8009bc 100644 --- a/domains/arijit.json +++ b/domains/arijit.json @@ -1,13 +1,9 @@ { "description": "Site of Arijit", - "repo": "https://github.com/ArijitTheDev/arijitthedev.github.io", - "owner": { "username": "ArijitTheDev", - "email": "itsarijitdebnath@gmail.com", - "twitter": "NotArijit" }, "record": { diff --git a/domains/arin.json b/domains/arin.json new file mode 100644 index 000000000..8e15cf736 --- /dev/null +++ b/domains/arin.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "aringadre76" + }, + "record": { + "CNAME": "aringadre76.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..15b194c53 --- /dev/null +++ b/domains/arjuncodess.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ArjunCodess" + }, + "record": { + "CNAME": "arjuncodess.vercel.app" + } +} diff --git a/domains/arkan.json b/domains/arkan.json new file mode 100644 index 000000000..e79671df3 --- /dev/null +++ b/domains/arkan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArizalArkan", + "email": "arizalarkan@gmail.com" + }, + "record": { + "CNAME": "arkan-potofolio.vercel.app" + } +} diff --git a/domains/arlan.json b/domains/arlan.json new file mode 100644 index 000000000..82484a9f5 --- /dev/null +++ b/domains/arlan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "handikatriarlan", + "email": "handikaarlan@gmail.com" + }, + "record": { + "CNAME": "handikatriarlan.vercel.app" + } +} diff --git a/domains/armaan44.json b/domains/armaan44.json new file mode 100644 index 000000000..bf2d5a192 --- /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" + }, + "record": { + "CNAME": "armaan4477.github.io" + } +} diff --git a/domains/armand.json b/domains/armand.json new file mode 100644 index 000000000..e3c20bc91 --- /dev/null +++ b/domains/armand.json @@ -0,0 +1,10 @@ +{ + "description": "Armand Jordaan's Website", + "owner": { + "username": "armandjordaan", + "email": "armand.jordaan@gmail.com" + }, + "record": { + "CNAME": "armandjordaan.github.io" + } +} diff --git a/domains/armandosalcedo.json b/domains/armandosalcedo.json new file mode 100644 index 000000000..93d1f4777 --- /dev/null +++ b/domains/armandosalcedo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asd1495", + "email": "armando.salcedo95@gmail.com" + }, + "record": { + "CNAME": "asd1495.github.io" + } +} diff --git a/domains/arnxv.json b/domains/arnxv.json new file mode 100644 index 000000000..5ffe17247 --- /dev/null +++ b/domains/arnxv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/arsenobetaine.json b/domains/arsenobetaine.json new file mode 100644 index 000000000..14207d31f --- /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" + }, + "record": { + "CNAME": "arsenobetaine.github.io" + } +} diff --git a/domains/arshman.json b/domains/arshman.json index 9edba8599..20b68320f 100644 --- a/domains/arshman.json +++ b/domains/arshman.json @@ -1,7 +1,6 @@ { "owner": { - "username": "syedtahseen", - "email": "" + "username": "syedtahseen" }, "record": { "CNAME": "arshman.vercel.app" diff --git a/domains/s.json b/domains/arson.json similarity index 52% rename from domains/s.json rename to domains/arson.json index 0f1ab48d5..3935fc0e3 100644 --- a/domains/s.json +++ b/domains/arson.json @@ -2,9 +2,9 @@ "owner": { "username": "Smartlinuxcoder", "email": "smartcoder@linuxmail.org", - "discord": "987972818341888021" + "discord": "694986201739952229" }, "record": { - "CNAME": "proxytwo.smartlinux.xyz" + "NS": ["ignacio.ns.cloudflare.com", "nicole.ns.cloudflare.com"] } } diff --git a/domains/art.json b/domains/art.json index fbfcc4a11..f836f8bf1 100644 --- a/domains/art.json +++ b/domains/art.json @@ -1,6 +1,5 @@ { "description": "Art's personal developer website", - "repo": "https://github.com/dotiful", "owner": { "username": "dotiful", "email": "dots.util@gmail.com" diff --git a/domains/arunlorenz.json b/domains/arunlorenz.json new file mode 100644 index 000000000..7fc202e89 --- /dev/null +++ b/domains/arunlorenz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arunlorenz", + "email": "nsak1763@gmail.com" + }, + "record": { + "CNAME": "arunlorenz.vercel.app" + } +} diff --git a/domains/aruntechpro.json b/domains/aruntechpro.json new file mode 100644 index 000000000..dd5077f03 --- /dev/null +++ b/domains/aruntechpro.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Website", + "owner": { + "username": "aruntechpro", + "email": "arunkumarakr03@gmail.com" + }, + "record": { + "CNAME": "aruntechpro.github.io" + } +} diff --git a/domains/arunvishnu.json b/domains/arunvishnu.json new file mode 100644 index 000000000..a66d3fc96 --- /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" + }, + "record": { + "CNAME": "arunvishnu.com" + } +} diff --git a/domains/aruria.json b/domains/aruria.json new file mode 100644 index 000000000..08ddfc722 --- /dev/null +++ b/domains/aruria.json @@ -0,0 +1,20 @@ +{ + "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": { + "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/arvind.json b/domains/arvind.json new file mode 100644 index 000000000..dc3f90151 --- /dev/null +++ b/domains/arvind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coderman400", + "email": "achurox1121@gmail.com" + }, + "record": { + "CNAME": "portfolio-nine-sigma-65.vercel.app" + } +} diff --git a/domains/ary.json b/domains/ary.json new file mode 100644 index 000000000..01d7b924b --- /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" + }, + "record": { + "URL": "https://aryan2bamane.github.io/Portfolio/" + } +} diff --git a/domains/arya.json b/domains/arya.json index b3819cb72..33e41b01a 100644 --- a/domains/arya.json +++ b/domains/arya.json @@ -1,6 +1,5 @@ { "description": "Arya Vinodan's Website", - "repo": "https://github.com/aryavinodan", "owner": { "username": "aryavinodan", "email": "aryavinodan2000@gmail.com" diff --git a/domains/aryadanech.json b/domains/aryadanech.json index 779998c7d..1eeea8665 100644 --- a/domains/aryadanech.json +++ b/domains/aryadanech.json @@ -1,6 +1,5 @@ { "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" diff --git a/domains/aryan.json b/domains/aryan.json index f943f7230..213c070b1 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" - } + "A": ["76.76.21.21"] + }, + "proxied": true } diff --git a/domains/aryann.json b/domains/aryann.json new file mode 100644 index 000000000..e00d5a46a --- /dev/null +++ b/domains/aryann.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aryanm830", + "email": "aryanm830@proton.me", + "discord": "riftfiree" + }, + "record": { + "CNAME": "portxd.vercel.app" + } +} diff --git a/domains/aryantavish.json b/domains/aryantavish.json new file mode 100644 index 000000000..72d436eee --- /dev/null +++ b/domains/aryantavish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aryan Tavish", + "email": "aryantavish2003@gmail.com" + }, + "record": { + "CNAME": "aryantavish.netlify.app" + } +} diff --git a/domains/as.json b/domains/as.json index fd745e171..0443203ea 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" + "URL": "https://mraxays.github.io/" } } diff --git a/domains/asad-khan.json b/domains/asad-khan.json index c09d14a4c..45d98af64 100644 --- a/domains/asad-khan.json +++ b/domains/asad-khan.json @@ -1,6 +1,5 @@ { "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" diff --git a/domains/asad.json b/domains/asad.json new file mode 100644 index 000000000..59f57e614 --- /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" + }, + "record": { + "CNAME": "asadrazajutt1.github.io" + } +} diff --git a/domains/asbp.json b/domains/asbp.json new file mode 100644 index 000000000..0b1d1f247 --- /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" + }, + "record": { + "CNAME": "asbp.github.io" + } +} diff --git a/domains/asgarrrr.json b/domains/asgarrrr.json index 1fbe31706..b34d7cc03 100644 --- a/domains/asgarrrr.json +++ b/domains/asgarrrr.json @@ -1,5 +1,4 @@ { - "repo": "https://github.com/Asgarrrr", "owner": { "username": "Asgarrrr", "email": "hello@jeremycaruelle.fr" diff --git a/domains/ashan.json b/domains/ashan.json index dbbde5e8e..a009930c0 100644 --- a/domains/ashan.json +++ b/domains/ashan.json @@ -7,6 +7,6 @@ "twitter": "AshanInduranga_" }, "record": { - "CNAME": "SealedSlinger.github.io" + "CNAME": "sealedslinger.github.io" } } diff --git a/domains/ashish.json b/domains/ashish.json index aade93089..a80dc8b1d 100644 --- a/domains/ashish.json +++ b/domains/ashish.json @@ -1,6 +1,5 @@ { "description": "Ashish's personal developer website", - "repo": "https://github.com/ashiishme", "owner": { "username": "ashiishme", "email": "contact@ashiish.me" diff --git a/domains/ashishkingdom.json b/domains/ashishkingdom.json new file mode 100644 index 000000000..168893baa --- /dev/null +++ b/domains/ashishkingdom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AshishKingdom", + "email": "ashishkingdom@proton.me" + }, + "record": { + "CNAME": "ashishkingdom.github.io" + } +} diff --git a/domains/ashkan.json b/domains/ashkan.json new file mode 100644 index 000000000..46d16df50 --- /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" + }, + "record": { + "CNAME": "ashkan4472.github.io" + } +} diff --git a/domains/ashl3y.json b/domains/ashl3y.json deleted file mode 100644 index 7b97aacb9..000000000 --- a/domains/ashl3y.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My personal developer portfolio.", - "repo": "https://github.com/ashl3ycodes/ashl3ycodes.github.io", - "owner": { - "username": "ashl3ycodes", - "email": "ashl3ycodes@protonmail.com", - "twitter": "ashl3ycodes" - }, - "record": { - "CNAME": "ashl3ycodes.github.io" - } -} diff --git a/domains/ashtonfabby.json b/domains/ashtonfabby.json new file mode 100644 index 000000000..a9600a85a --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/asil.json b/domains/asil.json new file mode 100644 index 000000000..e96232068 --- /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" + }, + "record": { + "CNAME": "asyard.github.io" + } +} diff --git a/domains/astra.json b/domains/astra.json new file mode 100644 index 000000000..732e5c81b --- /dev/null +++ b/domains/astra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MeHiGalatHu", + "email": "jabpadhekaindiatabhitoiitjayga@gmail.com" + }, + "record": { + "CNAME": "astra-api.glitch.me" + } +} diff --git a/domains/asuid.dankamigos.json b/domains/asuid.dankamigos.json new file mode 100644 index 000000000..5a1b10f6b --- /dev/null +++ b/domains/asuid.dankamigos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mokshdk", + "email": "anirudhsus001@gmail.com" + }, + "record": { + "TXT": ["562965D131E7C913D1796476301A86A148A2B64B52D99FC316724B0B785FAAB1"] + } +} diff --git a/domains/asuna.json b/domains/asuna.json index 4fc2b8989..835cb6e3b 100644 --- a/domains/asuna.json +++ b/domains/asuna.json @@ -6,6 +6,6 @@ "email": "codeasaurousteam@gmail.com" }, "record": { - "CNAME": "ehAsuna.github.io" + "CNAME": "ehasuna.github.io" } } diff --git a/domains/aswin-m-v.json b/domains/aswin-m-v.json new file mode 100644 index 000000000..674e78a93 --- /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" + }, + "record": { + "CNAME": "tubular-kangaroo-60ad83.netlify.app" + } +} diff --git a/domains/aswinmahesh.json b/domains/aswinmahesh.json index 5f2fd6c7f..9ff22977f 100644 --- a/domains/aswinmahesh.json +++ b/domains/aswinmahesh.json @@ -1,15 +1,12 @@ { "description": "Aswin Mahesh Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, "record": { "A": ["75.2.60.5"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/aswinmaheshc.json b/domains/aswinmaheshc.json index 44e38e86b..58dbc1e76 100644 --- a/domains/aswinmaheshc.json +++ b/domains/aswinmaheshc.json @@ -1,15 +1,12 @@ { "description": "Aswin Mahesh C Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, "record": { "A": ["75.2.60.5"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "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/asya.json b/domains/asya.json new file mode 100644 index 000000000..eda2cc50c --- /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" + }, + "record": { + "CNAME": "glenferdinza.github.io" + } +} diff --git a/domains/at-muhammad.json b/domains/at-muhammad.json new file mode 100644 index 000000000..f1089bec3 --- /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" + }, + "record": { + "CNAME": "at-mah.vercel.app" + } +} diff --git a/domains/atechadventurer.json b/domains/atechadventurer.json index 562f3ed46..c4908c57e 100644 --- a/domains/atechadventurer.json +++ b/domains/atechadventurer.json @@ -1,6 +1,5 @@ { "description": "ATechAdventurer's Site", - "repo": "https://github.com/ATechAdventurer", "owner": { "username": "ATechAdventurer", "email": "cam.steeleis@gmail.com" diff --git a/domains/ath.json b/domains/ath.json new file mode 100644 index 000000000..aac6e1283 --- /dev/null +++ b/domains/ath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anchu251", + "email": "thuanhvu.ai@gmail.com" + }, + "record": { + "CNAME": "anchu251.github.io" + } +} diff --git a/domains/atharvd.json b/domains/atharvd.json new file mode 100644 index 000000000..f2ebcd78a --- /dev/null +++ b/domains/atharvd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "D-Atharv", + "email": "atharv.dewangan04@gmail.com" + }, + "record": { + "CNAME": "my-portfolio-dusky-six-78.vercel.app" + } +} diff --git a/domains/athfan.json b/domains/athfan.json new file mode 100644 index 000000000..593cf788b --- /dev/null +++ b/domains/athfan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "athphane", + "email": "athphane@gmail.com" + }, + "record": { + "CNAME": "athfan.com" + } +} diff --git a/domains/athira-li.json b/domains/athira-li.json index 62a1ec2c1..0681d7ffa 100644 --- a/domains/athira-li.json +++ b/domains/athira-li.json @@ -6,6 +6,6 @@ "email": "athirali4582@gmail.com" }, "record": { - "CNAME": "Athira-L-I.github.io" + "CNAME": "athira-l-i.github.io" } } diff --git a/domains/athulanoop.json b/domains/athulanoop.json new file mode 100644 index 000000000..3fc576c1c --- /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" + }, + "record": { + "CNAME": "alpha-og.github.io" + } +} diff --git a/domains/atomic.json b/domains/atomic.json new file mode 100644 index 000000000..4e9bb4012 --- /dev/null +++ b/domains/atomic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "atomictyler1", + "discord": "atomictyler" + }, + "record": { + "CNAME": "atomictyler1.github.io" + } +} diff --git a/domains/atomtr.json b/domains/atomtr.json new file mode 100644 index 000000000..c9aacaa60 --- /dev/null +++ b/domains/atomtr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "atom-tr", + "email": "thai.tr@hotmail.com", + "discord": "423327141921423361" + }, + "record": { + "CNAME": "astro-erudite.pages.dev" + }, + "repo": "https://github.com/atom-tr/astro-erudite" +} diff --git a/domains/aud.json b/domains/aud.json new file mode 100644 index 000000000..5a7f7fe3f --- /dev/null +++ b/domains/aud.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "An-Unnamed-Developer", + "email": "loganj1403@outlook.com" + }, + "record": { + "A": ["82.16.42.25"] + } +} diff --git a/domains/augustine.json b/domains/augustine.json index 6db08d29c..3ea325398 100644 --- a/domains/augustine.json +++ b/domains/augustine.json @@ -1,6 +1,5 @@ { "description": "Augustine's personal developer website", - "repo": "https://github.com/augustineaykara", "owner": { "username": "augustineaykara", "email": "augustineaykara@gmail.com" diff --git a/domains/auras.json b/domains/auras.json deleted file mode 100644 index abb5350e6..000000000 --- a/domains/auras.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "agnesmonret", - "email": "agnesmoret@proton.me", - "discord": "694917200720429066" - }, - "record": { - "CNAME": "agnesmonret.github.io" - } -} diff --git a/domains/aus.json b/domains/aus.json index f5c40ead8..2a95ccdbf 100644 --- a/domains/aus.json +++ b/domains/aus.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "MrAkshayAS", - "email": "akshau72p@gmail.com" +"owner": { + "username": "mraxays", + "discord": "mrakshayas" }, "record": { - "URL": "https://mrakshayas.github.io/portfolio/" + "URL": "https://repo.auss.in/portfolio/" } } diff --git a/domains/australia.json b/domains/australia.json new file mode 100644 index 000000000..f7343bdc9 --- /dev/null +++ b/domains/australia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "1040303561847881729" + }, + "record": { + "URL": "https://yunexiz.is-a.dev/?australia-is-upside-down=true" + } +} diff --git a/domains/auth.sign.alvin.json b/domains/auth.sign.alvin.json new file mode 100644 index 000000000..c279d0ff2 --- /dev/null +++ b/domains/auth.sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "TXT": "Created to allow nested subdomains to exist." + } +} 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/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/avilam.json b/domains/avilam.json new file mode 100644 index 000000000..e226bad00 --- /dev/null +++ b/domains/avilam.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dxravage" + }, + "record": { + "CNAME": "dxravage.github.io" + } +} diff --git a/domains/aviv.json b/domains/aviv.json new file mode 100644 index 000000000..dccbffc39 --- /dev/null +++ b/domains/aviv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "avivelmakias1", + "email": "aviv.elmakias.b@gmail.com" + }, + "record": { + "URL": "https://github.com/avivelmakias1" + } + } diff --git a/domains/avversion.json b/domains/avversion.json index adbc9dd3c..be1e069fa 100644 --- a/domains/avversion.json +++ b/domains/avversion.json @@ -1,7 +1,6 @@ { "owner": { - "username": "AVVERSION", - "email": "79741360+AVVERSION@users.noreply.github.com" + "username": "AVVERSION" }, "record": { "CNAME": "avversion.github.io" diff --git a/domains/awais.json b/domains/awais.json new file mode 100644 index 000000000..e50653d4e --- /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" + }, + "record": { + "CNAME": "awaiskhanniazi.netlify.app" + }, + "proxied": false +} diff --git a/domains/awhvish.json b/domains/awhvish.json new file mode 100644 index 000000000..55661a28f --- /dev/null +++ b/domains/awhvish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "awhvish", + "email": "high.avis.lowha@gmail.com" + }, + "record": { + "CNAME": "awhvish.vercel.app" + } +} diff --git a/domains/awinds.json b/domains/awinds.json new file mode 100644 index 000000000..4218df2ff --- /dev/null +++ b/domains/awinds.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "awinds", + "email": "awinds@gmail.com" + }, + "record": { + "NS": [ + "felicity.ns.cloudflare.com", + "keyla.ns.cloudflare.com" + ] + } +} diff --git a/domains/axay.json b/domains/axay.json index 3bea8a7b9..0443203ea 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/" + "URL": "https://mraxays.github.io/" } } diff --git a/domains/axeon.json b/domains/axeon.json index 92ef9f279..140a06bd7 100644 --- a/domains/axeon.json +++ b/domains/axeon.json @@ -1,7 +1,7 @@ { "owner": { - "username": "ReBlast", - "discord": "poxuizm" + "username": "vyfor", + "discord": "vyfor" }, "record": { "CNAME": "axeon.pages.dev" diff --git a/domains/axewbotx.json b/domains/axewbotx.json index 8bd73229a..9001701b6 100644 --- a/domains/axewbotx.json +++ b/domains/axewbotx.json @@ -4,7 +4,7 @@ "owner": { "username": "AxewBoTX", "email": "lovedeepbrar54155@gmail.com", - "twitter": "@AxewBoTX" + "twitter": "AxewBoTX" }, "record": { "CNAME": "axewbotx.github.io" diff --git a/domains/axinux.json b/domains/axinux.json new file mode 100644 index 000000000..0511d4406 --- /dev/null +++ b/domains/axinux.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "axinux", + "email": "theaxinux@gmail.com" + }, + "record": { + "CNAME": "my-website-cvi.pages.dev" + } +} diff --git a/domains/axioris.json b/domains/axioris.json new file mode 100644 index 000000000..bee8d25e5 --- /dev/null +++ b/domains/axioris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "axioris", + "email": "dane.foster.collins@gmail.com" + }, + "record": { + "CNAME": "axioris.github.io" + } +} diff --git a/domains/axo.json b/domains/axo.json new file mode 100644 index 000000000..1b827d480 --- /dev/null +++ b/domains/axo.json @@ -0,0 +1,10 @@ +{ + "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"] + } +} diff --git a/domains/ayaangrover.json b/domains/ayaangrover.json index 76979c0c2..545053a65 100644 --- a/domains/ayaangrover.json +++ b/domains/ayaangrover.json @@ -4,7 +4,7 @@ "owner": { "username": "ayaangrover", "email": "ayaangrover@gmail.com", - "twitter": "@grover_ayaan" + "twitter": "grover_ayaan" }, "record": { "CNAME": "ayaangrover.github.io" diff --git a/domains/ayberk.json b/domains/ayberk.json new file mode 100644 index 000000000..c89fc485c --- /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" + }, + "record": { + "CNAME": "ayberktandogan.github.io" + } +} diff --git a/domains/aynonyme.json b/domains/aynonyme.json index bf91857b8..66a84dbb0 100644 --- a/domains/aynonyme.json +++ b/domains/aynonyme.json @@ -1,11 +1,11 @@ { - "description": "My Portfolio", - "repo": "https://github.com/AYn0nyme/ayn0nyme.github.io", - "owner": { - "username": "AYn0nyme", - "email": "aynonyme@proton.me" - }, - "record": { - "CNAME": "ayn0nyme.github.io" - } + "description": "My Portfolio", + "repo": "https://github.com/AYn0nyme/ayn0nyme.github.io", + "owner": { + "username": "AYn0nyme", + "email": "aynonyme@proton.me" + }, + "record": { + "A": ["69.30.249.53"] + } } diff --git a/domains/ayushh.json b/domains/ayushh.json new file mode 100644 index 000000000..f5d196fd1 --- /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" + }, + "record": { + "URL": "https://my-portfolio-qlsr.onrender.com/" + } +} diff --git a/domains/ayushk.json b/domains/ayushk.json new file mode 100644 index 000000000..04dd6d929 --- /dev/null +++ b/domains/ayushk.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ayushk-1801", + "email": "ayush.kumara1801@gmail.com", + "discord": "ayushk_1801" + }, + "record": { + "CNAME": "ayushkumaranand.vercel.app" + } +} diff --git a/domains/ayushman.json b/domains/ayushman.json new file mode 100644 index 000000000..ec481315c --- /dev/null +++ b/domains/ayushman.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for Ayushman", + "owner": { + "username": "AMRzip", + "email": "ayushmanrathi0@gmail.com" + }, + "record": { + "CNAME": "ARMzip.github.io" + }, + "proxied": false +} diff --git a/domains/azizulabedinazmi.json b/domains/azizulabedinazmi.json new file mode 100644 index 000000000..27be146eb --- /dev/null +++ b/domains/azizulabedinazmi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "azizulabedinazmi", + "email": "azmi00121@gmail.com" + }, + "record": { + "URL": "https://github.com/azizulabedinazmi" + } +} diff --git a/domains/azizwali.json b/domains/azizwali.json new file mode 100644 index 000000000..f87214255 --- /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" + }, + "record": { + "CNAME": "skyescrawford.github.io" + } +} diff --git a/domains/azrifatihah.json b/domains/azrifatihah.json new file mode 100644 index 000000000..33e47ec74 --- /dev/null +++ b/domains/azrifatihah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muhAzri", + "email": "muhammad.azri.f.s@gmail.com" + }, + "record": { + "CNAME": "azri-portfolio.vercel.app" + } +} \ No newline at end of file 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/badnguy.json b/domains/badnguy.json new file mode 100644 index 000000000..f7160af9e --- /dev/null +++ b/domains/badnguy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nguyenbaduy011", + "email": "nguyenbaduy011@gmail.com" + }, + "record": { + "CNAME": "nguyenbaduy011.github.io" + } +} diff --git a/domains/badonix.json b/domains/badonix.json new file mode 100644 index 000000000..bbbfe7c9a --- /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" + }, + "record": { + "CNAME": "badonix.netlify.app" + } +} diff --git a/domains/baibhav.json b/domains/baibhav.json new file mode 100644 index 000000000..11d8af941 --- /dev/null +++ b/domains/baibhav.json @@ -0,0 +1,10 @@ +{ + "description": "For personal portfolio", + "owner": { + "username": "Baibhavos", + "email": "baibhavkumar303@gmail.com" + }, + "record": { + "CNAME": "new-portfolio-weld-sigma.vercel.app" + } +} diff --git a/domains/bala.json b/domains/bala.json new file mode 100644 index 000000000..0e2973fc8 --- /dev/null +++ b/domains/bala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "record": { + "CNAME": "my-app-brown-tau.vercel.app" + } +} \ No newline at end of file diff --git a/domains/balaji.json b/domains/balaji.json new file mode 100644 index 000000000..30f2dd69f --- /dev/null +++ b/domains/balaji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "balaji-atoa", + "discord": "popz06" + }, + "record": { + "CNAME": "portfolio-on-live.vercel.app" + } +} diff --git a/domains/baldr.json b/domains/baldr.json new file mode 100644 index 000000000..b0c76a914 --- /dev/null +++ b/domains/baldr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "p0lish", + "email": "polish1987@gmail.com" + }, + "record": { + "CNAME": "p0lish.github.io" + } +} diff --git a/domains/balogram.json b/domains/balogram.json new file mode 100644 index 000000000..e1de12852 --- /dev/null +++ b/domains/balogram.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Balogram-dev", + "email": "tunde.agboke@gmail.com" + }, + "record": { + "CNAME": "balogram-dev.github.io" + } +} diff --git a/domains/banana.json b/domains/banana.json deleted file mode 100644 index de86f28d1..000000000 --- a/domains/banana.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "banana's website", - "repo": "https://github.com/BANanaD3V/bananadev-ml", - "owner": { - "username": "BANanaD3V", - "email": "banana@bananadev.ml" - }, - "record": { - "CNAME": "bananad3v.github.io" - } -} diff --git a/domains/banda.json b/domains/banda.json new file mode 100644 index 000000000..c49eedebc --- /dev/null +++ b/domains/banda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bandabahariputra", + "discord": "banda" + }, + "record": { + "CNAME": "bandabahariputra.vercel.app" + } +} diff --git a/domains/bandhan.json b/domains/bandhan.json new file mode 100644 index 000000000..602459977 --- /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" + }, + "record": { + "CNAME": "bamunjal.github.io" + } +} diff --git a/domains/bandu.json b/domains/bandu.json new file mode 100644 index 000000000..b0cd2619a --- /dev/null +++ b/domains/bandu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bmulla7", + "email": "bmulla7@gmail.com" + }, + "record": { + "CNAME": "bandu.pages.dev" + } +} diff --git a/domains/bao.json b/domains/bao.json new file mode 100644 index 000000000..712d7588f --- /dev/null +++ b/domains/bao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bphamict", + "email": "bphamict@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/barisdeniz.json b/domains/barisdeniz.json new file mode 100644 index 000000000..a33ae109e --- /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" + }, + "record": { + "CNAME": "bdsaglam.github.io" + } +} diff --git a/domains/barnacl437.json b/domains/barnacl437.json index 47200c18f..245ab0986 100644 --- a/domains/barnacl437.json +++ b/domains/barnacl437.json @@ -4,6 +4,6 @@ "email": "barnacl437@proton.me" }, "record": { - "CNAME": "barnacl437.github.io" + "CNAME": "barnacl437.vercel.app" } } diff --git a/domains/barremian.json b/domains/barremian.json new file mode 100644 index 000000000..aa0af8750 --- /dev/null +++ b/domains/barremian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "barremian", + "email": "machinetime77@gmail.com" + }, + "record": { + "CNAME": "barremian.com" + } +} diff --git a/domains/barry-hammer.json b/domains/barry-hammer.json new file mode 100644 index 000000000..83c35ae48 --- /dev/null +++ b/domains/barry-hammer.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "barry-hammer" + }, + "record": { + "CNAME": "barry-hammer.github.io" + } +} diff --git a/domains/base-swag.json b/domains/base-swag.json new file mode 100644 index 000000000..eb9c4c35e --- /dev/null +++ b/domains/base-swag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Base-Swag", + "email": "officialnamefier@gmail.com" + }, + "record": { + "CNAME": "base-swag.github.io" + } +} diff --git a/domains/base.json b/domains/base.json new file mode 100644 index 000000000..b717c7873 --- /dev/null +++ b/domains/base.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bcassiers", + "discord": "base08875" + }, + "record": { + "CNAME": "adbc.be" + } +} diff --git a/domains/baseri.json b/domains/baseri.json new file mode 100644 index 000000000..34086c8de --- /dev/null +++ b/domains/baseri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Ho3einWave", + "discord": "743786737901240362", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.V7AHINjrzMRmazv2IjJU2V9qPlcAeRQRRYDuxjvF-fq9nOmp0H3b1KfXaBuU8rTW34c9iLNwZdxAHhJ2IvsIgQvYrAVjrJ4bxgjSaO4UPmgFze1hwHS2qpZzouOZngoWjqWfTMPhttPui4yiBtCFE2x62Y-rn3_MBCfvBZLh7aqwD6booL4FGDiL7QX202miM1Mqd-r8ZNDdydAdkcpETXDLd-7opFJgcg4Tkmq-tZuKmvdHNUsDxT4GPxVhvUKGuqtHiEGBf7YuNS_OdClqsN1sXckHOsFUFwkfIx3F7upRXWN5DBy4bEXLgphfASJjMuwFx4h27pCA5B1257msrg.Ied7dY9u3UB65AXGar9V5w.JgX5U0byUY3wzS0mx9fAOkpNan7a08RyEgRzp2Dcnusv_-_UNvIsqkbPznWTjoz8NQE6ixLrymxrDIs2dGNWcgsZ3IFpF5PY9VWKkxFSTCA.nQi799OJqhyhsVY-6Tbmcg" + }, + "record": { + "CNAME": "apex-loadbalancer.netlify.com" + } +} diff --git a/domains/basidh.json b/domains/basidh.json new file mode 100644 index 000000000..9e0ac57d7 --- /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" + }, + "record": { + "CNAME": "abdulbasidh.github.io" + } +} diff --git a/domains/basil.json b/domains/basil.json index bc0a52de9..a70021fcb 100644 --- a/domains/basil.json +++ b/domains/basil.json @@ -7,6 +7,6 @@ "twitter": "basilicous" }, "record": { - "CNAME": "LowSpeCorgi.github.io" + "CNAME": "lowspecorgi.github.io" } } diff --git a/domains/batman.json b/domains/batman.json new file mode 100644 index 000000000..191081ee4 --- /dev/null +++ b/domains/batman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "el7amrawy", + "email": "el7amrawy@outlook.com" + }, + "record": { + "CNAME": "portfolio-8sc.pages.dev" + } +} \ No newline at end of file diff --git a/domains/battlehawk.json b/domains/battlehawk.json new file mode 100644 index 000000000..7fee75844 --- /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" + }, + "record": { + "URL": "https://code1024.icu" + } +} diff --git a/domains/baturalp.json b/domains/baturalp.json new file mode 100644 index 000000000..40373949d --- /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" + }, + "record": { + "CNAME": "baturalp52.github.io" + } +} diff --git a/domains/bayu.json b/domains/bayu.json new file mode 100644 index 000000000..7ae7c1030 --- /dev/null +++ b/domains/bayu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ByeByu07", + "email": "muhammadbaharuddin08123@gmail.com" + }, + "record": { + "CNAME": "byebyu07.github.io" + } +} diff --git a/domains/bd.json b/domains/bd.json new file mode 100644 index 000000000..61dddf1ea --- /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" + }, + "record": { + "CNAME": "cantcode023.github.io" + } +} diff --git a/domains/bdhackers009.json b/domains/bdhackers009.json new file mode 100644 index 000000000..0ca61c327 --- /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" + }, + "record": { + "CNAME": "bdhackers009.github.io" + } +} diff --git a/domains/bdn-fr.json b/domains/bdn-fr.json new file mode 100644 index 000000000..5368a69bd --- /dev/null +++ b/domains/bdn-fr.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "bdn-fr" + }, + "record": { + "CNAME": "bdn-fr.vercel.app" + } +} diff --git a/domains/benjamin.json b/domains/benjamin.json new file mode 100644 index 000000000..54c0c9c99 --- /dev/null +++ b/domains/benjamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Loapu", + "email": "benjamin@loapu.dev" + }, + "record": { + "NS": ["algin.ns.cloudflare.com", "marge.ns.cloudflare.com"] + } +} diff --git a/domains/bennett1412.json b/domains/bennett1412.json index 05d1c37d4..2650c1326 100644 --- a/domains/bennett1412.json +++ b/domains/bennett1412.json @@ -4,7 +4,7 @@ "owner": { "username": "bennett1412", "email": "bennettmadavana@gmail.com", - "twitter": "@MadavanaB" + "twitter": "MadavanaB" }, "record": { "CNAME": "bennett1412.github.io" diff --git a/domains/bennguyen.json b/domains/bennguyen.json new file mode 100644 index 000000000..66a32eaa8 --- /dev/null +++ b/domains/bennguyen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "benvgaming", + "email": "benvipgaming@protonmail.com" + }, + "record": { + "CNAME": "ben-homepage.vercel.app" + } +} diff --git a/domains/beno.json b/domains/beno.json new file mode 100644 index 000000000..cbefac66b --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/bens.json b/domains/bens.json new file mode 100644 index 000000000..1afb31f80 --- /dev/null +++ b/domains/bens.json @@ -0,0 +1,10 @@ +{ + "description": "My portfolio", + "owner": { + "username": "coco-droid", + "email": "robensjeanbaptiste29@gmail.com" + }, + "record": { + "URL": "https://robe.alwaysdata.net/" + } +} diff --git a/domains/beoo.json b/domains/beoo.json new file mode 100644 index 000000000..c364ad11f --- /dev/null +++ b/domains/beoo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "16-thag5", + "email": "truongvan1605.yahoo@gmail.com" + }, + "record": { + "CNAME": "16-thag5.github.io" + } +} diff --git a/domains/berkk.json b/domains/berkk.json new file mode 100644 index 000000000..e4af0c6d3 --- /dev/null +++ b/domains/berkk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "berkkaradalan", + "email": "berkkaradalan@gmail.com" + }, + "record": { + "CNAME": "berkkaradalan.github.io" + } +} diff --git a/domains/bernard2806.json b/domains/bernard2806.json new file mode 100644 index 000000000..e0e2e34ac --- /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" + }, + "record": { + "CNAME": "bernard2806.github.io" + } +} diff --git a/domains/bernardo.json b/domains/bernardo.json new file mode 100644 index 000000000..5bd1e8f0f --- /dev/null +++ b/domains/bernardo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Bernardo-QG", + "email": "b.quintinoguzman@ugto.mx" + }, + "record": { + "CNAME": "bernardo-qg.github.io" + } +} diff --git a/domains/berzcodetechnologies.json b/domains/berzcodetechnologies.json index cd0f090d3..533a90e06 100644 --- a/domains/berzcodetechnologies.json +++ b/domains/berzcodetechnologies.json @@ -1,6 +1,6 @@ { "owner": { - "username": "BerzCode", + "username": "sxurabh", "email": "saurabhkirve@gmail.com" }, "record": { diff --git a/domains/berzerk.json b/domains/berzerk.json index cd0f090d3..533a90e06 100644 --- a/domains/berzerk.json +++ b/domains/berzerk.json @@ -1,6 +1,6 @@ { "owner": { - "username": "BerzCode", + "username": "sxurabh", "email": "saurabhkirve@gmail.com" }, "record": { diff --git a/domains/bhadra.json b/domains/bhadra.json index b579dc80b..fcbb70368 100644 --- a/domains/bhadra.json +++ b/domains/bhadra.json @@ -6,6 +6,6 @@ "email": "tomjerryparu@gmail.com" }, "record": { - "CNAME": "BhadraJayakumarSandhya.github.io" + "CNAME": "bhadrajayakumarsandhya.github.io" } } diff --git a/domains/bhaskar.json b/domains/bhaskar.json new file mode 100644 index 000000000..39ab24072 --- /dev/null +++ b/domains/bhaskar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhaskarrijal", + "email": "mail@bhaskarrijal.me" + }, + "record": { + "CNAME": "site-52r.pages.dev" + } +} diff --git a/domains/bhavesh-p-patel.json b/domains/bhavesh-p-patel.json index 18c9e6fe2..493bdba07 100644 --- a/domains/bhavesh-p-patel.json +++ b/domains/bhavesh-p-patel.json @@ -5,6 +5,6 @@ "username": "Bhavesh-p-Patel" }, "record": { - "CNAME": "Bhavesh-p-Patel.github.io" + "CNAME": "bhavesh-p-patel.github.io" } } diff --git a/domains/bhavyagupta.json b/domains/bhavyagupta.json new file mode 100644 index 000000000..11d241bbd --- /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" + }, + "record": { + "CNAME": "bhavya-gupta-portfolio.vercel.app" + } +} diff --git a/domains/bhushankhopkarr.json b/domains/bhushankhopkarr.json index b82eb5336..975268c2c 100644 --- a/domains/bhushankhopkarr.json +++ b/domains/bhushankhopkarr.json @@ -1,5 +1,5 @@ { - "description": "This subdomain is a redirection to my personal portfolio", + "description": "This subdomain is a redirection to my personal portfolio.", "repo": "https://github.com/bhushankhopkarr/bhushankhopkarr.github.io", "owner": { "username": "bhushankhopkarr", @@ -7,6 +7,6 @@ "twitter": "bhushankhopkrr" }, "record": { - "CNAME": "bhushankhopkarr.github.io" + "CNAME": "bhushankhopkrr.vercel.app" } } diff --git a/domains/bilalmansuri.json b/domains/bilalmansuri.json new file mode 100644 index 000000000..6bab652a5 --- /dev/null +++ b/domains/bilalmansuri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bilal-23", + "email": "work.bilalmansuri@gmail.com", + "discord": "bilal_23" + }, + "record": { + "CNAME": "bilalmansuri.vercel.app" + } +} diff --git a/domains/bilalthepunjabi.json b/domains/bilalthepunjabi.json new file mode 100644 index 000000000..6bcc1c456 --- /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" + }, + "record": { + "NS": ["aitana.ns.cloudflare.com", "damien.ns.cloudflare.com"] + } +} diff --git a/domains/bill.json b/domains/bill.json index e07f5ef3a..28f9a08c9 100644 --- a/domains/bill.json +++ b/domains/bill.json @@ -7,6 +7,6 @@ "twitter": "BillWen14" }, "record": { - "CNAME": "CMBill.github.io" + "CNAME": "cmbill.github.io" } } diff --git a/domains/billion.json b/domains/billion.json new file mode 100644 index 000000000..85f0b2c7e --- /dev/null +++ b/domains/billion.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "billionbucks", + "discord": "mrbillion_bucks", + "email": "mrbillionbucks@gmail.com" + }, + "record": { + "CNAME": "billionbucks.github.io" + } +} diff --git a/domains/billvog.json b/domains/billvog.json new file mode 100644 index 000000000..9d30e7902 --- /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" + }, + "record": { + "URL": "https://billvog.com" + } +} diff --git a/domains/bin.sono.json b/domains/bin.sono.json deleted file mode 100644 index d3b4307bf..000000000 --- a/domains/bin.sono.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "getSono", - "email": "julianwolf2013@outlook.de", - "discord": "1222250424309121145" - }, - "record": { - "A": ["69.197.135.202"] - } -} diff --git a/domains/binh.json b/domains/binh.json new file mode 100644 index 000000000..2c576dfbd --- /dev/null +++ b/domains/binh.json @@ -0,0 +1,10 @@ +{ + "description": "Binh Pham's Personal Website", + "owner": { + "username": "pham-tuan-binh", + "email": "binhpham@binhph.am" + }, + "record": { + "URL": "https://www.binhph.am" + } +} diff --git a/domains/binhpv96.json b/domains/binhpv96.json new file mode 100644 index 000000000..030873437 --- /dev/null +++ b/domains/binhpv96.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "binhpv96", + "email": "pvbinh2k4@gmail.com" + }, + "record": { + "CNAME": "binhpv96.github.io" + } +} diff --git a/domains/bintangbagus.json b/domains/bintangbagus.json new file mode 100644 index 000000000..4e59ce07a --- /dev/null +++ b/domains/bintangbagus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bntngbgs", + "email": "bintangbgs16@gmail.com" + }, + "record": { + "CNAME": "bintangbagus.pages.dev" + } +} diff --git a/domains/bio.ahmedtohamy.json b/domains/bio.ahmedtohamy.json new file mode 100644 index 000000000..44fc48511 --- /dev/null +++ b/domains/bio.ahmedtohamy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahmedtohamy1", + "email": "1ahmed.tohamy@gmail.com" + }, + "record": { + "CNAME": "ahmedtohamy1.github.io" + } +} diff --git a/domains/bio.json b/domains/bio.json new file mode 100644 index 000000000..53c17e34b --- /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" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/bitbend.json b/domains/bitbend.json new file mode 100644 index 000000000..f25942387 --- /dev/null +++ b/domains/bitbend.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bitbend", + "email": "arkamdev@gmail.com" + }, + "record": { + "CNAME": "bitbend.github.io" + } +} diff --git a/domains/bitsexploited.json b/domains/bitsexploited.json new file mode 100644 index 000000000..5ad5b4c99 --- /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" + }, + "record": { + "CNAME": "BitsExploited.github.io" + } +} diff --git a/domains/blackwin.json b/domains/blackwin.json new file mode 100644 index 000000000..ce8c34d18 --- /dev/null +++ b/domains/blackwin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BlackWin123", + "email": "lequocthang04092022@gmail.com" + }, + "record": { + "CNAME": "blackwin123.github.io" + } +} diff --git a/domains/blacsheep.json b/domains/blacsheep.json new file mode 100644 index 000000000..f954b0cbc --- /dev/null +++ b/domains/blacsheep.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "blacsheep", + "email": "lanzou1.0@gmail.com" + }, + "record": { + "CNAME": "blacsheep-github-io.pages.dev" + } +} diff --git a/domains/bladimir.json b/domains/bladimir.json new file mode 100644 index 000000000..5ef4628dd --- /dev/null +++ b/domains/bladimir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Esbruiz", + "email": "esbruizc@gmail.com" + }, + "record": { + "CNAME": "blads-portfolio.vercel.app" + } +} diff --git a/domains/blake.json b/domains/blake.json index 4340be5a1..6ac0ad09b 100644 --- a/domains/blake.json +++ b/domains/blake.json @@ -1,6 +1,5 @@ { "description": "A redirection to my github page", - "repo": "https://github.com/BlakeH2208", "owner": { "username": "BlakeH2208", "email": "contact@blakehurley.com" diff --git a/domains/bleemis42.json b/domains/bleemis42.json new file mode 100644 index 000000000..faf8bd9bb --- /dev/null +++ b/domains/bleemis42.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BleemIs42", + "description": "BleemIs42.is-a.dev", + "email": "BleemIs42@gmail.com" + }, + "record": { + "CNAME": "BleemIs42.github.io" + } +} diff --git a/domains/blkdang1.json b/domains/blkdang1.json new file mode 100644 index 000000000..ddb3956cf --- /dev/null +++ b/domains/blkdang1.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "lmlmdf404" + }, + "record": { + "CNAME": "lmlmdf404.github.io" + } +} diff --git a/domains/blog.aayushsiwa.json b/domains/blog.aayushsiwa.json new file mode 100644 index 000000000..1ed0096bf --- /dev/null +++ b/domains/blog.aayushsiwa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aayushsiwa", + "email": "22052177@kiit.ac.in" + }, + "record": { + "CNAME": "blog-aayushsiwa.pages.dev" + } +} diff --git a/domains/blog.barnacl437.json b/domains/blog.barnacl437.json new file mode 100644 index 000000000..a98cba234 --- /dev/null +++ b/domains/blog.barnacl437.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "barnacl437", + "email": "barnacl437@proton.me" + }, + "record": { + "CNAME": "blog-barnacl437.vercel.app" + } +} \ No newline at end of file diff --git a/domains/blog.chuyentinorz.json b/domains/blog.chuyentinorz.json new file mode 100644 index 000000000..1257a8492 --- /dev/null +++ b/domains/blog.chuyentinorz.json @@ -0,0 +1,12 @@ +{ + "description": "This website is a blogpost for ChuyenTinORZ", + "repo": "https://github.com/akk1to/orz-blog", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "record": { + "A": ["216.198.79.193"] + } +} diff --git a/domains/blog.jumanji.json b/domains/blog.jumanji.json new file mode 100644 index 000000000..b17686d6d --- /dev/null +++ b/domains/blog.jumanji.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "heyjumanji" + }, + "record": { + "CNAME": "jumanjiblogs.vercel.app" + } +} diff --git a/domains/blog.narasima.json b/domains/blog.narasima.json new file mode 100644 index 000000000..a760dea33 --- /dev/null +++ b/domains/blog.narasima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/blog.sanooj.json b/domains/blog.sanooj.json deleted file mode 100644 index aca9695ac..000000000 --- a/domains/blog.sanooj.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Sanoojes", - "email": "sanoojes6371@gmail.com" - }, - "record": { - "CNAME": "sanoojes.github.io" - } -} diff --git a/domains/blog.violet.json b/domains/blog.violet.json new file mode 100644 index 000000000..9e5a2ede6 --- /dev/null +++ b/domains/blog.violet.json @@ -0,0 +1,9 @@ +{ + "description": "My Blog Page", + "owner": { + "username": "violetlaire" + }, + "record": { + "CNAME": "blogviolet.vercel.app" + } +} diff --git a/domains/blog.vornexx.json b/domains/blog.vornexx.json index d73de74da..33ffb912c 100644 --- a/domains/blog.vornexx.json +++ b/domains/blog.vornexx.json @@ -1,6 +1,6 @@ { "owner": { - "username": "vornex-gh", + "username": "vornexx", "email": "ajay.ramnath8812@gmail.com" }, "record": { diff --git a/domains/blogs.akk1to.json b/domains/blogs.akk1to.json new file mode 100644 index 000000000..f83bf1fca --- /dev/null +++ b/domains/blogs.akk1to.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "record": { + "CNAME": "blogs-chi-pearl.vercel.app" + } +} diff --git a/domains/blueberry.json b/domains/blueberry.json index 057acd8d4..0fc837d1d 100644 --- a/domains/blueberry.json +++ b/domains/blueberry.json @@ -6,6 +6,6 @@ "email": "dangnguyen101191@gmail.com" }, "record": { - "CNAME": "NgVGB.github.io" + "CNAME": "ngvgb.github.io" } } diff --git a/domains/bm.json b/domains/bm.json new file mode 100644 index 000000000..b5b04a005 --- /dev/null +++ b/domains/bm.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BM87006", + "email": "bm.is.a.dev@gmail.com" + }, + "record": { + "CNAME": "v0-blue-portfolio-brown.vercel.app" + }, + "description": "BM Portfolio" +} diff --git a/domains/bn3di.json b/domains/bn3di.json new file mode 100644 index 000000000..4489542fb --- /dev/null +++ b/domains/bn3di.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohamadOday", + "email": "adada133321t@gmail.com" + }, + "record": { + "CNAME": "mohamadoday.github.io" + } +} diff --git a/domains/bnfone.json b/domains/bnfone.json new file mode 100644 index 000000000..ae575ba75 --- /dev/null +++ b/domains/bnfone.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website for bnfone's Homelab (sadly with dynamic IPv4, which is why I need Cloudflare Nameservers).", + "repo": "https://github.com/6nf0n3/is-a-dev_register", + "owner": { + "username": "bnfone", + "email": "is-a-dev-registration.zbden@simplelogin.com" + }, + "record": { + "NS": ["desiree.ns.cloudflare.com", "mcgrory.ns.cloudflare.com"] + } +} diff --git a/domains/bonusbubble.json b/domains/bonusbubble.json new file mode 100644 index 000000000..666ca8480 --- /dev/null +++ b/domains/bonusbubble.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bonusbubble", + "email": "bonusbubble@proton.me" + }, + "record": { + "CNAME": "bonusbubble.github.io" + } +} diff --git a/domains/boo.json b/domains/boo.json new file mode 100644 index 000000000..a73b893a4 --- /dev/null +++ b/domains/boo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Boopup", + "discord": "972502840247484527", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XpL4EHQDM2NhhOcMnxdbK1MOEgJqrE4REv8yt5tx7uiBoPWpOkHaiyA6q1qpPpan5pdxz3QT03Okj3I-sgW5Jqo_J65lLkd_NhTIcC-BpBiqic8LrSSPXHCdPG6iB5vdWOOiAnyesygsUF5460q2X-lxuaGQ7c5vqNJxC3XVv2aDal8cYXHY5Fn1SaXNNYpdkjWDByszsy1negAdRCdZqUDnEbiyAVp5jcETjC7Rs7qJSYI4noYuatL6HYZs-17WTbhVKNA9dfmGVcPzrNB4jl_jtgXHP0Bf_xg5OSiQ4MiSGcCObMBirxSlhid-56HuzyJUDaZgiuSSPq-VdinNNw.QlY7KCeNk9GIOA3tdSkyrw.2iQLx2zPSnj0DRMey79pgn1wV1G08vhZPKpHEb4YGTcEa8bOT7lQ3hiiwBj6kbxMM54L2xz4kOBcX5fjI3o4uhay96GtE76G4cuPVBBGx8g.v44-C_GmlY0plYvqCasd_w" + }, + "record": { + "A": ["46.202.82.187"] + } +} 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/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/borismoreno.json b/domains/borismoreno.json new file mode 100644 index 000000000..c17a14ff6 --- /dev/null +++ b/domains/borismoreno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "borismoreno", + "email": "boris_marco_moreno@hotmail.com" + }, + "record": { + "CNAME": "borismoreno.com" + } +} diff --git a/domains/bot.creeperita104.json b/domains/bot.creeperita104.json deleted file mode 100644 index ef85138da..000000000 --- a/domains/bot.creeperita104.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "creeperita09", - - "email": "creeperita.09@gmail.com" - }, - "record": { - "CNAME": "icahomesvr2022.freeddns.org" - } -} diff --git a/domains/botlab.json b/domains/botlab.json index e2481ebe3..556257bc2 100644 --- a/domains/botlab.json +++ b/domains/botlab.json @@ -2,7 +2,7 @@ "description": "DBD(NO CODE)", "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com" + "email": "priyansxu@yahoo.com" }, "record": { "A": ["75.2.60.5"] diff --git a/domains/boudjo.json b/domains/boudjo.json new file mode 100644 index 000000000..0f8cab311 --- /dev/null +++ b/domains/boudjo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "boudjoo", + "email": "abdouboudjo1@gmail.com" + }, + "record": { + "CNAME": "boudjoo.github.io" + } +} diff --git a/domains/box.json b/domains/box.json index a0b8b6f4f..ab5d3fefd 100644 --- a/domains/box.json +++ b/domains/box.json @@ -7,6 +7,6 @@ "discord": "Default Box#8900" }, "record": { - "CNAME": "Default-Box.github.io" + "CNAME": "default-box.github.io" } } diff --git a/domains/brasil.json b/domains/brasil.json new file mode 100644 index 000000000..5da4ddc4e --- /dev/null +++ b/domains/brasil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NatanKonig", + "email": "natan.camargo8@gmail.com" + }, + "record": { + "A": ["129.148.24.229"] + } +} diff --git a/domains/breakertws.json b/domains/breakertws.json new file mode 100644 index 000000000..f457a5ded --- /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" + }, + "record": { + "CNAME": "breakertws.github.io" + } +} diff --git a/domains/brett.json b/domains/brett.json new file mode 100644 index 000000000..2219c263b --- /dev/null +++ b/domains/brett.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "brettdavies", + "linkedin": "https://linkedin.com/in/brettdavies/" + }, + "record": { + "URL": "https://github.com/brettdavies" + } +} diff --git a/domains/brew.json b/domains/brew.json new file mode 100644 index 000000000..12afef688 --- /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" + }, + "record": { + "CNAME": "0x62797465.github.io" + } +} diff --git a/domains/brin.json b/domains/brin.json index 2b4ccbf78..aabad46a5 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" + "CNAME": "brinterwastaken.github.io" } } diff --git a/domains/brint.json b/domains/brint.json new file mode 100644 index 000000000..24fd52854 --- /dev/null +++ b/domains/brint.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "brint97" + }, + "record": { + "CNAME": "brint97.github.io" + } +} diff --git a/domains/bro.json b/domains/bro.json new file mode 100644 index 000000000..310745b12 --- /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" + }, + "record": { + "CNAME": "codevodka.github.io" + } +} diff --git a/domains/brodes.json b/domains/brodes.json new file mode 100644 index 000000000..40d562c38 --- /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" + }, + "record": { + "CNAME": "br0des.github.io" + }, + "proxied": true +} diff --git a/domains/brody.json b/domains/brody.json new file mode 100644 index 000000000..ef6e76764 --- /dev/null +++ b/domains/brody.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lurkny", + "email": "brody@larson.dev" + }, + "record": { + "CNAME": "larson.dev" + } +} diff --git a/domains/brokends.json b/domains/brokends.json new file mode 100644 index 000000000..d3cf0501f --- /dev/null +++ b/domains/brokends.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dns24", + "email": "wahidns24@gmail.com" + }, + "record": { + "CNAME": "dns24.github.io" + } +} diff --git a/domains/broodje56.json b/domains/broodje56.json new file mode 100644 index 000000000..fcfc2c89c --- /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" + }, + "record": { + "CNAME": "broodje565.github.io" + } +} diff --git a/domains/bruno-eilliar.json b/domains/bruno-eilliar.json new file mode 100644 index 000000000..fdb29948f --- /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" + }, + "record": { + "CNAME": "eilliar.github.io" + } +} \ No newline at end of file diff --git a/domains/bryan14saenz.json b/domains/bryan14saenz.json new file mode 100644 index 000000000..7d5956ba0 --- /dev/null +++ b/domains/bryan14saenz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Bryan14Saenz", + "email": "14bryansaenz@gmail.com" + }, + "record": { + "CNAME": "portafoliob14s.netlify.app" + } +} diff --git a/domains/bryanj.json b/domains/bryanj.json new file mode 100644 index 000000000..f010dc11d --- /dev/null +++ b/domains/bryanj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bryanj0410", + "email": "bryanj0410@gmail.com" + }, + "record": { + "CNAME": "portfolio-holy-fog-2069.fly.dev" + } +} diff --git a/domains/bryce.json b/domains/bryce.json new file mode 100644 index 000000000..a7f5c056f --- /dev/null +++ b/domains/bryce.json @@ -0,0 +1,11 @@ +{ + "description": "website to describe me", + "repo": "https://github.com/GitHubFanTest/GitHubFanTest.github.io", + "owner": { + "username": "GitHubFanTest", + "email": "feelingbloxyburger24@gmail.com" + }, + "record": { + "CNAME": "githubfantest.github.io" + } +} diff --git a/domains/bteamapp.json b/domains/bteamapp.json new file mode 100644 index 000000000..7dea7e8b7 --- /dev/null +++ b/domains/bteamapp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/btleffler.json b/domains/btleffler.json new file mode 100644 index 000000000..39ed78116 --- /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" + }, + "record": { + "CNAME": "btleffler.github.io" + } +} diff --git a/domains/buffer.json b/domains/buffer.json index b33bea04c..14f0c5ee2 100644 --- a/domains/buffer.json +++ b/domains/buffer.json @@ -1,7 +1,6 @@ { "owner": { "username": "bufferwise", - "email": "126371417+bufferwise@users.noreply.github.com", "discord": "790846560229392444" }, "record": { diff --git a/domains/bumidenpasar.json b/domains/bumidenpasar.json new file mode 100644 index 000000000..206faafaf --- /dev/null +++ b/domains/bumidenpasar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BumiDenpasar", + "instagram": "ibummmbumi" + }, + "record": { + "CNAME": "portofolio-gray-nine.vercel.app" + } +} diff --git a/domains/bundler.skibidi.json b/domains/bundler.skibidi.json new file mode 100644 index 000000000..f730630b1 --- /dev/null +++ b/domains/bundler.skibidi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bananaking6", + "discord": "skibidibagel" + }, + "record": { + "CNAME": "sandpack-jet.vercel.app" + } +} diff --git a/domains/burak.json b/domains/burak.json new file mode 100644 index 000000000..b2c7a9dd4 --- /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" + }, + "record": { + "URL": "https://www.burakince.com" + } +} diff --git a/domains/burandby.json b/domains/burandby.json index 9d661b37a..fecf83563 100644 --- a/domains/burandby.json +++ b/domains/burandby.json @@ -1,6 +1,5 @@ { "description": "Pico-8 in-browser emulator.", - "repo": "https://github.com/burandby", "owner": { "username": "burandby", "email": "bur.and.by@gmail.com" 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 new file mode 100644 index 000000000..4d459c75e --- /dev/null +++ b/domains/bxqrn.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/c0ba1t.json b/domains/c0ba1t.json new file mode 100644 index 000000000..25d25003d --- /dev/null +++ b/domains/c0ba1t.json @@ -0,0 +1,12 @@ +{ + "description": "hosting personal / portfolio website for myself!", + "repo": "https://github.com/0xC0ba1t/0xc0ba1t.github.io", + "owner": { + "username": "0xC0ba1t", + "email": "main0xc0ba1t@duck.com" + }, + "record": { + "CNAME": "0xC0ba1t.github.io" + } +} + diff --git a/domains/caelan.json b/domains/caelan.json new file mode 100644 index 000000000..1184f5c73 --- /dev/null +++ b/domains/caelan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CaeCur", + "email": "caelan.curry+isadev@gmail.com" + }, + "record": { + "CNAME": "caelan-curry.vercel.app" + } +} diff --git a/domains/caenjones.json b/domains/caenjones.json index ef931ec48..c09e3518e 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" + "CNAME": "vcc3v.github.io" } } diff --git a/domains/calculator.notaperson535.json b/domains/calculator.notaperson535.json index 6ac8d89c9..c52edad8c 100644 --- a/domains/calculator.notaperson535.json +++ b/domains/calculator.notaperson535.json @@ -6,6 +6,6 @@ "email": "notAperson939@gmail.com" }, "record": { - "CNAME": "notAperson535.github.io" + "CNAME": "notaperson535.github.io" } } diff --git a/domains/callcon.json b/domains/callcon.json new file mode 100644 index 000000000..9db82545c --- /dev/null +++ b/domains/callcon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItzYoVishal", + "email": "rockstarelitecoc@gmail.com" + }, + "record": { + "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..795487de4 --- /dev/null +++ b/domains/cally.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cally-jt", + "email": "callumjt@proton.me" + }, + "record": { + "CNAME": "cally-jt.github.io" + } +} diff --git a/domains/cam.json b/domains/cam.json index 4974e5ec1..5743b0afb 100644 --- a/domains/cam.json +++ b/domains/cam.json @@ -1,15 +1,12 @@ { "description": "CAM Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" }, "record": { "A": ["75.2.60.5"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" } } 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/carlos-miranda.json b/domains/carlos-miranda.json new file mode 100644 index 000000000..01059fdd4 --- /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" + }, + "record": { + "CNAME": "chard33.github.io" + } +} diff --git a/domains/carlostirado.json b/domains/carlostirado.json new file mode 100644 index 000000000..67bc47f9c --- /dev/null +++ b/domains/carlostirado.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "carlostirado23", + "email": "mariotiradotovar@outlook.com" + }, + "record": { + "CNAME": "carlostirado.vercel.app" + } +} diff --git a/domains/carmelo.json b/domains/carmelo.json deleted file mode 100644 index d2c332114..000000000 --- a/domains/carmelo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Carmelo Velardo", - "repo": "https://github.com/2dvisio/2dvisio.github.io", - "owner": { - "username": "2dvisio", - "twitter": "2dvisio" - }, - "record": { - "CNAME": "2dvisio.github.io" - } -} diff --git a/domains/cartar.json b/domains/cartar.json index f52ab276f..309b4eee0 100644 --- a/domains/cartar.json +++ b/domains/cartar.json @@ -1,6 +1,5 @@ { "description": "Main domain for file server.", - "repo": "https://github.com/realCartar", "owner": { "username": "realCartar", "twitter": "cartar0058" diff --git a/domains/carterrpham23.json b/domains/carterrpham23.json new file mode 100644 index 000000000..df8a65ba9 --- /dev/null +++ b/domains/carterrpham23.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sonpt-afk", + "email": "sonbappe89@gmail.com" + }, + "record": { + "CNAME": "sonpts-landingfolio.vercel.app" + } +} diff --git a/domains/cas.json b/domains/cas.json new file mode 100644 index 000000000..4a9b32c34 --- /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" + }, + "record": { + "CNAME": "caswantsanap.github.io" + } +} diff --git a/domains/catalinaarciniegassaenz.json b/domains/catalinaarciniegassaenz.json new file mode 100644 index 000000000..2e5dab28c --- /dev/null +++ b/domains/catalinaarciniegassaenz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "cascodenotch", + "email": "catalinaarciniegassaenz@gmail.com" + }, + "record": { + "CNAME": "cascodenotch.github.io" + }, + "proxied": false +} diff --git a/domains/cc4dev.json b/domains/cc4dev.json new file mode 100644 index 000000000..5772edf20 --- /dev/null +++ b/domains/cc4dev.json @@ -0,0 +1,11 @@ +{ + "owner": + { + "username": "cc4dev", + "email": "cc4dev@proton.me" + }, + "record": + { + "CNAME": "cc4dev.github.io" + } +} \ No newline at end of file diff --git a/domains/cd.json b/domains/cd.json index f6c30f430..b5f2c2cf6 100644 --- a/domains/cd.json +++ b/domains/cd.json @@ -1,5 +1,5 @@ { - "description": "Personal website of Yaksh Bariya", + "description": "Redirect to my personal website", "repo": "https://github.com/thunder-coding/CodingThunder", "owner": { "username": "thunder-coding", @@ -7,6 +7,9 @@ "discord": "codingthunder" }, "record": { - "CNAME": "thunder-coding.github.io" + "URL": "https://thunders.website" + }, + "redirect_config": { + "redirect_paths": true } } diff --git a/domains/cdn.akk1to.json b/domains/cdn.akk1to.json new file mode 100644 index 000000000..b6723a57d --- /dev/null +++ b/domains/cdn.akk1to.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "record": { + "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..08e4484c5 --- /dev/null +++ b/domains/cdn.akshtt.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ojRqRJbGOahwPxN2FXjfpdue_HUF78Vq554bPYDdOQqcxSnMUY6FJUFaNpDhQ5UfLZqyqPAP_UysBQn9fdV7FZ91sXuvBvzGE-PiJmTTfGDvWuiHhHVCyduXP9eTsH8o46EWznN7FdZus2xPgtQErwixgKzoevLXB1bCp8kFBLpNw4cKj85n1MP1hEkB1tT0hNvi23rVE1UutBWkD_R-zi9jca096EZxqJ44rOjkulH4mU7p9TsB49A6Vz3tC9R3cowQCwSwpKi9rUSMItDVyRRRyCUjsJ57guHwk1RK0n8WDSkO7rIfyQyPQHFTu0PivSBXySCcC_FO6O65s1xrAw.TbXyRSxfs8heydDOxH8sUg.w9L0JnA9hNgW2uSHqqikxZzDcGgKWsLw-lmqP5AnpZ2s2vdlvwo5vnjzMIPQTt0jiQPPN4G6seeRyRzw52vlbyDFsSpZZfmXQiZkoP2UitA.HdygXdLwJHnF5Qcx2bsewA" + }, + + "record": { + "A": ["173.208.244.13"] + } + } + \ No newline at end of file diff --git a/domains/cdn.areen.json b/domains/cdn.areen.json new file mode 100644 index 000000000..5857f582c --- /dev/null +++ b/domains/cdn.areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "record": { + "CNAME": "c-d-n.pages.dev" + } +} diff --git a/domains/cdn.evelio.json b/domains/cdn.evelio.json new file mode 100644 index 000000000..06316fe71 --- /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" + }, + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/discord.winbo.json b/domains/cdn.komaru.json similarity index 52% rename from domains/discord.winbo.json rename to domains/cdn.komaru.json index b08208572..d2da00f19 100644 --- a/domains/discord.winbo.json +++ b/domains/cdn.komaru.json @@ -1,9 +1,9 @@ { "owner": { - "username": "winbo-yml-exe", + "username": "komaru-meow", "email": "winbo-yml-exe@outlook.com" }, "record": { - "CNAME": "winbo-discord.github.io" + "CNAME": "komaru-cdn.github.io" } } diff --git a/domains/cdn.mkeko.json b/domains/cdn.mkeko.json index b10af2ddb..020501559 100644 --- a/domains/cdn.mkeko.json +++ b/domains/cdn.mkeko.json @@ -1,6 +1,5 @@ { "description": "for my zipline", - "repo": "https://github.com/Mkeko", "owner": { "username": "Mkeko", "twitter": "Mkekomc" diff --git a/domains/cdn.pele.json b/domains/cdn.pele.json new file mode 100644 index 000000000..eceae0d10 --- /dev/null +++ b/domains/cdn.pele.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Pele12324", + "email": "pele.puric@gmail.com", + "discord": "483261654818226186" + }, + "record": { + "A": ["38.242.242.224"] + } +} diff --git a/domains/cdn.semant.json b/domains/cdn.semant.json index 7c7b63c69..3a29218f0 100644 --- a/domains/cdn.semant.json +++ b/domains/cdn.semant.json @@ -1,7 +1,7 @@ { "description": "My static database", "owner": { - "username": "s3mant", + "username": "ihacksemant", "email": "contact@semant.is-a.dev" }, "record": { diff --git a/domains/cdn.xrap1dx.json b/domains/cdn.xrap1dx.json index e4debd4ad..504d4d0e3 100644 --- a/domains/cdn.xrap1dx.json +++ b/domains/cdn.xrap1dx.json @@ -1,6 +1,5 @@ { "description": "making my cdn!!!", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "email": "sirrapid155@gmail.com" diff --git a/domains/cdops.json b/domains/cdops.json index 5117cbf15..e742faa43 100644 --- a/domains/cdops.json +++ b/domains/cdops.json @@ -1,6 +1,5 @@ { "description": "This is my blogging website", - "repo": "https://github.com/gtamilvanan17", "owner": { "username": "gtamilvanan17", "discord": "gtamilvanan17" diff --git a/domains/cedrickfeze.json b/domains/cedrickfeze.json new file mode 100644 index 000000000..97805af77 --- /dev/null +++ b/domains/cedrickfeze.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cedrickdev", + "email": "cedrickv.tchindaf@hes-so.ch" + }, + "record": { + "CNAME": "cedrickfeze.vercel.app" + } +} diff --git a/domains/cemalgnlts.json b/domains/cemalgnlts.json new file mode 100644 index 000000000..db16c4903 --- /dev/null +++ b/domains/cemalgnlts.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cemalgnlts", + "discord": "cemalgnlts" + }, + "record": { + "A": ["45.55.110.124"] + } +} diff --git a/domains/centi.json b/domains/centi.json index 9ead9d3e7..4f33e4866 100644 --- a/domains/centi.json +++ b/domains/centi.json @@ -7,6 +7,6 @@ "twitter": "Centifn" }, "record": { - "CNAME": "nCenti.github.io" + "CNAME": "ncenti.github.io" } } diff --git a/domains/cesardarizaleta.json b/domains/cesardarizaleta.json new file mode 100644 index 000000000..cbd0d71d2 --- /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" + }, + "record": { + "CNAME": "cesarfolio.vercel.app" + } +} diff --git a/domains/cescdev.json b/domains/cescdev.json new file mode 100644 index 000000000..7314a7492 --- /dev/null +++ b/domains/cescdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GitCesc07", + "email": "cesar0407197@gmail.com" + }, + "record": { + "CNAME": "cescdev-portafolio.netlify.app" + } +} diff --git a/domains/cetus.json b/domains/cetus.json index b14090e79..ba892e76b 100644 --- a/domains/cetus.json +++ b/domains/cetus.json @@ -1,6 +1,5 @@ { "description": "Cetus's Portfolio", - "repo": "https://github.com/dev-cetus", "owner": { "username": "Cetus", "email": "dev-cetus@proton.me", diff --git a/domains/cfg-codes.json b/domains/cfg-codes.json new file mode 100644 index 000000000..956fd9d28 --- /dev/null +++ b/domains/cfg-codes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cfg-codes", + "email": "carlosfgomezarr@gmail.com" + }, + "record": { + "CNAME": "cfg-codes.github.io" + } +} diff --git a/domains/cgmuros.json b/domains/cgmuros.json new file mode 100644 index 000000000..22e5c4a33 --- /dev/null +++ b/domains/cgmuros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cgmuros", + "email": "cgmuros@gmail.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } + } \ No newline at end of file diff --git a/domains/chadee.json b/domains/chadee.json index b6f7cd675..2da5aeda2 100644 --- a/domains/chadee.json +++ b/domains/chadee.json @@ -3,7 +3,7 @@ "repo": "https://github.com/chadeeeee/chadee-site", "owner": { "username": "chadeeeee", - "telegram": "@chadeeeeeeeeee", + "telegram": "chadeeeeeeeeee", "email": "esurginet2011@gmail.com" }, "record": { diff --git a/domains/chamal1120.json b/domains/chamal1120.json new file mode 100644 index 000000000..6e5deca06 --- /dev/null +++ b/domains/chamal1120.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chamal1120", + "email": "kenway213beep@gmail.com" + }, + "record": { + "CNAME": "chamal1120.vercel.app" + } +} diff --git a/domains/chamo.json b/domains/chamo.json new file mode 100644 index 000000000..fd54f3c29 --- /dev/null +++ b/domains/chamo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chamzz99", + "email": "chamzz.dev@gmail.com" + }, + "record": { + "CNAME": "chamzz99.github.io" + } +} diff --git a/domains/char.json b/domains/char.json new file mode 100644 index 000000000..a738d11da --- /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" + }, + "record": { + "CNAME": "chard33.github.io" + } +} 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/charly.json b/domains/charly.json new file mode 100644 index 000000000..303c9be1f --- /dev/null +++ b/domains/charly.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "soy-charly", + "email": "carlos.scarrasco08@gmail.com", + "discord": "charly0572" + }, + "record": { + "CNAME": "porfolio-bice-mu.vercel.app" + } +} diff --git a/domains/charmy.json b/domains/charmy.json new file mode 100644 index 000000000..798ff27e7 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/chat.alvin.json b/domains/chat.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/chat.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/chattingmessenger.json b/domains/chattingmessenger.json new file mode 100644 index 000000000..3d2753ff3 --- /dev/null +++ b/domains/chattingmessenger.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riotoff", + "discord": "1040929084684902460" + }, + "record": { + "CNAME": "riotoff.github.io" + } +} diff --git a/domains/chaubey.json b/domains/chaubey.json index 0c089e77d..d5e3be97d 100644 --- a/domains/chaubey.json +++ b/domains/chaubey.json @@ -1,13 +1,13 @@ { - "description": "Ankit Chaubey's GitHub page", - "repo": "https://github.com/ankit-chaubey/ankit-chaubey", - "owner": { - "username": "ankit-chaubey", - "email": "m.ankitchaubey@gmail.com", - "telegram": "ankit_chaubey", - "github": "ankit-chaubey" - }, - "record": { - "CNAME": "ankit-chaubey.github.io" - } + "description": "Ankit Chaubey's GitHub page", + "repo": "https://github.com/ankit-chaubey/ankit-chaubey", + "owner": { + "username": "ankit-chaubey", + "email": "m.ankitchaubey@gmail.com", + "telegram": "ankit_chaubey", + "github": "ankit-chaubey" + }, + "record": { + "CNAME": "ankit-chaubey.github.io" + } } diff --git a/domains/chess.amaankazi.json b/domains/chess.amaankazi.json new file mode 100644 index 000000000..d1315a8cb --- /dev/null +++ b/domains/chess.amaankazi.json @@ -0,0 +1,11 @@ +{ + "description": "Chess online, with bot, locally", + "repo": "https://github.com/Amaan-Kazi/Chess", + "owner": { + "username": "Amaan-Kazi", + "email": "amaankazi1793@gmail.com" + }, + "record": { + "CNAME": "chess-amaankazi.pages.dev" + } +} 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 new file mode 100644 index 000000000..3d26e8d73 --- /dev/null +++ b/domains/chez1s.json @@ -0,0 +1,10 @@ +{ + "description": "chez1s's is-a-dev domain", + "owner": { + "username": "TRIBUI106", + "discord": "1250225950268850312" + }, + "record": { + "URL": "https://yeume-enterprise.edu.vn" + } +} diff --git a/domains/chirayusahu.json b/domains/chirayusahu.json index 5346e18e2..b249652f6 100644 --- a/domains/chirayusahu.json +++ b/domains/chirayusahu.json @@ -6,5 +6,6 @@ }, "record": { "A": ["5.9.123.217"] - } + }, + "proxied": true } diff --git a/domains/chirxg.json b/domains/chirxg.json new file mode 100644 index 000000000..299c15a98 --- /dev/null +++ b/domains/chirxg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "definitelynotchirag", + "email": "chiragdave1888@gmail.com", + "discord": "hellchirag" + }, + "record": { + "CNAME": "chirxg.vercel.app" + } +} diff --git a/domains/chloe.json b/domains/chloe.json index 2cf26df9a..755651974 100644 --- a/domains/chloe.json +++ b/domains/chloe.json @@ -1,6 +1,5 @@ { "description": "Chloe's is-a-dev domain", - "repo": "https://github.com/chloeashlyn", "owner": { "username": "chloeashlyn", "discord": "chloeashlyn#7272" diff --git a/domains/chris-nguyen.json b/domains/chris-nguyen.json new file mode 100644 index 000000000..f3d6b050a --- /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" + }, + "record": { + "URL": "https://chris-nguyen.co.uk" + } +} diff --git a/domains/chris.json b/domains/chris.json index c4a4c19fa..a48bbd521 100644 --- a/domains/chris.json +++ b/domains/chris.json @@ -1,6 +1,5 @@ { "description": "Chris' Site", - "repo": "https://github.com/Sp4nd3x", "owner": { "username": "Sp4nd3x", "email": "chrisisadev@gmail.com" diff --git a/domains/chrisbase12.json b/domains/chrisbase12.json new file mode 100644 index 000000000..d0f8cff65 --- /dev/null +++ b/domains/chrisbase12.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "OverCharred" + }, + "record": { + "CNAME": "chris-base12-portfolio.vercel.app" + } +} diff --git a/domains/chriscent.json b/domains/chriscent.json new file mode 100644 index 000000000..2257d4bd6 --- /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" + }, + "record": { + "CNAME": "chriscent.vercel.app" + } +} diff --git a/domains/chromesec.json b/domains/chromesec.json new file mode 100644 index 000000000..2c08f2c99 --- /dev/null +++ b/domains/chromesec.json @@ -0,0 +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" + }, + "record": { + "URL": "https://caenjones.is-a.dev/ChromeSEC" + } +} diff --git a/domains/chubol.json b/domains/chubol.json new file mode 100644 index 000000000..748a8f34f --- /dev/null +++ b/domains/chubol.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chubol", + "email": "husks@tuta.io" + }, + "record": { + "CNAME": "chubol.github.io" + } +} diff --git a/domains/chuyentinorz.json b/domains/chuyentinorz.json new file mode 100644 index 000000000..0fabb67d3 --- /dev/null +++ b/domains/chuyentinorz.json @@ -0,0 +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" + } +} diff --git a/domains/ciao287.json b/domains/ciao287.json index af3721626..6e1582f7e 100644 --- a/domains/ciao287.json +++ b/domains/ciao287.json @@ -4,6 +4,6 @@ "discord": "687333016921440317" }, "record": { - "CNAME": "ciao287.github.io" + "A": ["144.91.115.195"] } } diff --git a/domains/ciaobot.json b/domains/ciaobot.json index 5d3df2331..984781774 100644 --- a/domains/ciaobot.json +++ b/domains/ciaobot.json @@ -5,9 +5,7 @@ }, "record": { "A": ["144.91.115.195"], - "MX": ["mail.ciaohost.tech"], "TXT": [ - "v=spf1 mx a -all", "google-site-verification=ESHkpD4wk4-a2cqONn73cRaELmis2IzdBRB3Fw-t1Dw" ] } diff --git a/domains/cihan.json b/domains/cihan.json new file mode 100644 index 000000000..05fcad1f7 --- /dev/null +++ b/domains/cihan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cihanyakar", + "email": "cihanyakar@gmail.com" + }, + "record": { + "URL": "https://www.cihanyakar.com" + } +} diff --git a/domains/cirno.json b/domains/cirno.json new file mode 100644 index 000000000..4e82f95b6 --- /dev/null +++ b/domains/cirno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "orangci", + "discord": "orangc" + }, + "record": { + "URL": "https://orangc.net" + } +} diff --git a/domains/mail.clyron.json b/domains/clarenisme.json similarity index 65% rename from domains/mail.clyron.json rename to domains/clarenisme.json index d88436675..ed3477f52 100644 --- a/domains/mail.clyron.json +++ b/domains/clarenisme.json @@ -1,7 +1,7 @@ { "owner": { - "username": "theclyron", - "email": "onenonlyclyron@gmail.com" + "username": "razelleclaren", + "email": "gracela.claren1@gmail.com" }, "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], diff --git a/domains/clayza.json b/domains/clayza.json new file mode 100644 index 000000000..0e3b2ae56 --- /dev/null +++ b/domains/clayza.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/ClayzaAubert/clayzaaubert.github.io", + "owner": { + "username": "ClayzaAubert", + "email": "clayzasc@gmail.com" + }, + "record": { + "CNAME": "clayzaaubert.github.io" + } +} diff --git a/domains/clipping.json b/domains/clipping.json new file mode 100644 index 000000000..fe05c2050 --- /dev/null +++ b/domains/clipping.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "hazelvert" + }, + "record": { + "CNAME": "hazelvert.github.io" + } +} diff --git a/domains/cloud.json b/domains/cloud.json new file mode 100644 index 000000000..1c1333182 --- /dev/null +++ b/domains/cloud.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hmahd", + "email": "akashhasendra2@gmail.com" + }, + "record": { + "CNAME": "portfolio-73z.pages.dev" + }, + "proxied": true +} diff --git a/domains/cloudie.json b/domains/cloudie.json new file mode 100644 index 000000000..f6d323cbb --- /dev/null +++ b/domains/cloudie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hirwko", + "discord": "rzt5" + }, + "record": { + "CNAME": "website-5zt-53r.pages.dev" + } +} diff --git a/domains/cloudy1337.json b/domains/cloudy1337.json new file mode 100644 index 000000000..12b3ec1a1 --- /dev/null +++ b/domains/cloudy1337.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OfficialSmojo17", + "email": "smmojo17@gmail.com", + "discord": "mapperdotexe" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/cnvrs.json b/domains/cnvrs.json index 9f0610bdd..25c21fef3 100644 --- a/domains/cnvrs.json +++ b/domains/cnvrs.json @@ -1,12 +1,8 @@ { - "description": "project page/ portfolio", - "repo": "https://github.com/2nvrs/cnvrs", "owner": { - "username": "2nvrs", - "email": "cnvrscnvrscnvrs@gmail.com", - "twitter": "projcnvrs" + "username": "2nvrs" }, "record": { - "CNAME": "2nvrs.github.io" + "A": ["76.76.21.21"] } } diff --git a/domains/code-vista.json b/domains/code-vista.json new file mode 100644 index 000000000..d84672805 --- /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" + }, + "record": { + "CNAME": "javavista.github.io" + } +} diff --git a/domains/code.aessaputra.json b/domains/code.aessaputra.json new file mode 100644 index 000000000..932eaf4e4 --- /dev/null +++ b/domains/code.aessaputra.json @@ -0,0 +1,10 @@ +{ + "owner": { + "description": "VS Code Remote Access", + "username": "aessaputra", + "twitter": "pioonrey" + }, + "record": { + "A": ["168.138.171.60"] + } +} diff --git a/domains/codefoster.json b/domains/codefoster.json index a21e921c2..b256cf867 100644 --- a/domains/codefoster.json +++ b/domains/codefoster.json @@ -1,6 +1,5 @@ { "description": "The main for codefoster - a Software Engineer at Microsoft.", - "repo": "https://github.com/codefoster", "owner": { "username": "codefoster", "email": "jeremy.foster@live.com" diff --git a/domains/codelabworks.json b/domains/codelabworks.json new file mode 100644 index 000000000..294c635b7 --- /dev/null +++ b/domains/codelabworks.json @@ -0,0 +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"] + } +} diff --git a/domains/coder.json b/domains/coder.json new file mode 100644 index 000000000..d74f24d92 --- /dev/null +++ b/domains/coder.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "turbomaster95", + "email": "devamidhun.3c.kmbvm@gmail.com" + }, + "record": { + "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..8e0649952 --- /dev/null +++ b/domains/coderzen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Realtrickz", + "email": "isamismail8273@gmail.com" + }, + "record": { + "CNAME": "coderzenk-com.vercel.app" + } +} diff --git a/domains/codeserver.sono.json b/domains/codeserver.sono.json deleted file mode 100644 index d3b4307bf..000000000 --- a/domains/codeserver.sono.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "getSono", - "email": "julianwolf2013@outlook.de", - "discord": "1222250424309121145" - }, - "record": { - "A": ["69.197.135.202"] - } -} diff --git a/domains/codesoft.json b/domains/codesoft.json new file mode 100644 index 000000000..28f62a79f --- /dev/null +++ b/domains/codesoft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "record": { + "CNAME": "portfolio-codesoftgits-projects.vercel.app" + } +} diff --git a/domains/codesuthar.json b/domains/codesuthar.json index 1c010dc13..e61280157 100644 --- a/domains/codesuthar.json +++ b/domains/codesuthar.json @@ -4,11 +4,6 @@ "email": "AdityaSuthar13@outlook.com" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.111.153", - "185.199.110.153" - ] + "NS": ["dexter.ns.cloudflare.com", "fay.ns.cloudflare.com"] } } diff --git a/domains/codethoma.json b/domains/codethoma.json index 239d3ecbc..143c85ee6 100644 --- a/domains/codethoma.json +++ b/domains/codethoma.json @@ -1,6 +1,5 @@ { "description": "The ThunderDome", - "repo": "https://github.com/codethoma", "owner": { "username": "codethoma", "email": "mrthundergod@gmail.com" diff --git a/domains/codexisme.json b/domains/codexisme.json new file mode 100644 index 000000000..b7174ba69 --- /dev/null +++ b/domains/codexisme.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "codexart-lab", + "email": "atmostechnexa@gmail.com" + }, + "record": { + "CNAME": "codexart-lab.github.io" + } +} diff --git a/domains/codexkun.json b/domains/codexkun.json new file mode 100644 index 000000000..c625ca52a --- /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" + }, + "record": { + "CNAME": "portfolio-ide-zeta.vercel.app" + } +} diff --git a/domains/cody.json b/domains/cody.json index 18f0026e1..f367f837f 100644 --- a/domains/cody.json +++ b/domains/cody.json @@ -4,6 +4,6 @@ "email": "codingamazing224@outlook.com" }, "record": { - "URL": "https://about-cody.pages.dev/" + "CNAME": "hi-im-cody.pages.dev" } } diff --git a/domains/coen.json b/domains/coen.json new file mode 100644 index 000000000..4dd7bee00 --- /dev/null +++ b/domains/coen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cogrow4", + "email": "cogrow@duck.com" + }, + "record": { + "URL": "https://github.com/cogrow4" + } +} diff --git a/domains/colin.json b/domains/colin.json new file mode 100644 index 000000000..d3c365a23 --- /dev/null +++ b/domains/colin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ColinLeDev", + "email": "spam+isadev@col1n.fr" + }, + "record": { + "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/computerblade.json b/domains/computerblade.json index 600a83974..1e16f82a0 100644 --- a/domains/computerblade.json +++ b/domains/computerblade.json @@ -1,10 +1,8 @@ { "owner": { - "username": "computerblade-official", - "email": "ayproductionsteam@gmail.com", - "discord": "1032603689069846549" + "username": "computerblade-official" }, "record": { - "CNAME": "computerblade-official.github.io" + "CNAME": "computerblade.vercel.app" } } diff --git a/domains/congnv.json b/domains/congnv.json new file mode 100644 index 000000000..faef4e873 --- /dev/null +++ b/domains/congnv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "congnv0330", + "email": "congnv3030@gmail.com" + }, + "record": { + "CNAME": "congnv0330.github.io" + } +} diff --git a/domains/connor.json b/domains/connor.json index 2fb2b310e..36a89f81f 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" + "A": ["173.249.45.163"] } } diff --git a/domains/coolify-app.json b/domains/coolify-app.json new file mode 100644 index 000000000..2f614d496 --- /dev/null +++ b/domains/coolify-app.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "umarsidiki", + "email": "siddiquiumar0007@gmail.com" + }, + "record": { + "A": ["89.168.88.28"] + }, + "proxied": true +} diff --git a/domains/core.json b/domains/core.json index bd101c967..2c4ebf55f 100644 --- a/domains/core.json +++ b/domains/core.json @@ -1,6 +1,5 @@ { "description": "My information.", - "repo": "https://github.com/Aidenhtg", "owner": { "username": "Aidenhtg", "email": "aidenhiseh.m.l@gmail.com" diff --git a/domains/cota.json b/domains/cota.json new file mode 100644 index 000000000..34e7b0669 --- /dev/null +++ b/domains/cota.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "zer0uno" + }, + "record": { + "URL": "https://www.cotanto.it" + } +} diff --git a/domains/count.json b/domains/count.json index cecd08ab0..e03044749 100644 --- a/domains/count.json +++ b/domains/count.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "theveryheavy", - "email": "", - "discord": "1266113644643614803", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i4iZGukPgos1-y71KygQ_1d4ZPvnuuHgs8csldNT2FxY569U2isi4aCp5AheSznzqXWmPGTo38NmaFn1MelIVOzeFxTz8BHee9bKBcOQ06oxhKLavCiCykNWCjKyfYWHZre251Iv-zsnUgwO0OUbEjToo9PB6YRJ2LkOe1t5ZASxeMeA7QJziuVU5Cv7GWUbg-pZuWODrV4DTW8H6MdRzKFLY4WpxY5jUlnVsWiK6kZG_Wu2z1trzYplfN9T2lN1K1mNIXYgG_CMqNG1jXPQysoKqkhxjr4ItzFVdpAVso0LTmyhYg92ZQatP2SeD5gqZVVxqUKAj7lF6szfnttQbA.uxd1RFhSCU6cdViuiUODvg.NmpM1UKZ5CQ0qoVMplEzRW6yDCp1HsCQVXBQyCTZ3rvaCdPHuzKGnf3IQwMi801cx27D0o8wCiaF0J77whNrnkcMI9VBhajfhc8BrntWu1E.i05R_R9RRIO7RtW-elXkzA" - }, - "record": { - "CNAME": "theveryheavy.github.io" - } + "owner": { + "username": "theveryheavy", + "discord": "1266113644643614803", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i4iZGukPgos1-y71KygQ_1d4ZPvnuuHgs8csldNT2FxY569U2isi4aCp5AheSznzqXWmPGTo38NmaFn1MelIVOzeFxTz8BHee9bKBcOQ06oxhKLavCiCykNWCjKyfYWHZre251Iv-zsnUgwO0OUbEjToo9PB6YRJ2LkOe1t5ZASxeMeA7QJziuVU5Cv7GWUbg-pZuWODrV4DTW8H6MdRzKFLY4WpxY5jUlnVsWiK6kZG_Wu2z1trzYplfN9T2lN1K1mNIXYgG_CMqNG1jXPQysoKqkhxjr4ItzFVdpAVso0LTmyhYg92ZQatP2SeD5gqZVVxqUKAj7lF6szfnttQbA.uxd1RFhSCU6cdViuiUODvg.NmpM1UKZ5CQ0qoVMplEzRW6yDCp1HsCQVXBQyCTZ3rvaCdPHuzKGnf3IQwMi801cx27D0o8wCiaF0J77whNrnkcMI9VBhajfhc8BrntWu1E.i05R_R9RRIO7RtW-elXkzA" + }, + "record": { + "CNAME": "theveryheavy.github.io" + } } diff --git a/domains/cr0nus.json b/domains/cr0nus.json index b895a86bc..b70730e65 100644 --- a/domains/cr0nus.json +++ b/domains/cr0nus.json @@ -1,6 +1,5 @@ { "description": "A personal portfolio site for all my projects.", - "repo": "https://github.com/umgbhalla", "owner": { "username": "umgbhalla", "email": "umg.bhalla88@gmail.com", diff --git a/domains/cr1ket.json b/domains/cr1ket.json index 0027bc062..5127db935 100644 --- a/domains/cr1ket.json +++ b/domains/cr1ket.json @@ -7,6 +7,6 @@ "twitter": "noahmk17" }, "record": { - "CNAME": "NoahMK21100.github.io" + "CNAME": "noahmk21100.github.io" } } diff --git a/domains/crafting.json b/domains/crafting.json new file mode 100644 index 000000000..86f54f684 --- /dev/null +++ b/domains/crafting.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meredyk", + "email": "gustavo@meredyk.com.br" + }, + "record": { + "URL": "https://www.crafting.com.br/" + } +} diff --git a/domains/creeperita104.json b/domains/creeperita104.json index 66df526f1..5d9fecb76 100644 --- a/domains/creeperita104.json +++ b/domains/creeperita104.json @@ -4,6 +4,6 @@ "email": "creeperita.09@gmail.com" }, "record": { - "CNAME": "icahomesvr2022.freeddns.org" + "NS": ["kyrie.ns.cloudflare.com", "vida.ns.cloudflare.com"] } } diff --git a/domains/crescentmoon.json b/domains/crescentmoon.json index 0c2192e3f..dfcff68f9 100644 --- a/domains/crescentmoon.json +++ b/domains/crescentmoon.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "CrescentMoon2506", - "email": "crescentmoon2506@gmail.com" - }, - "record": { - "CNAME": "crescentmoon2506.github.io" - } -} + "owner": { + "username": "CrescentMoon2506", + "email": "crescentmoon2506@gmail.com" + }, + "record": { + "CNAME": "crescentmoon2506.github.io" + } +} diff --git a/domains/cris.json b/domains/cris.json new file mode 100644 index 000000000..3a336fef2 --- /dev/null +++ b/domains/cris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UnrecoverableFault", + "email": "carendell@me.com" + }, + "record": { + "CNAME": "website-f1q.pages.dev" + } +} diff --git a/domains/cristian.json b/domains/cristian.json new file mode 100644 index 000000000..3a336fef2 --- /dev/null +++ b/domains/cristian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UnrecoverableFault", + "email": "carendell@me.com" + }, + "record": { + "CNAME": "website-f1q.pages.dev" + } +} diff --git a/domains/crpaiz.json b/domains/crpaiz.json new file mode 100644 index 000000000..fca3c8453 --- /dev/null +++ b/domains/crpaiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CristopherPaiz", + "email": "choperpaiz1@gmail.com" + }, + "record": { + "CNAME": "crpaiz.netlify.app" + } +} diff --git a/domains/crystal.json b/domains/crystal.json index dadbdde8e..49f09c784 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" + "CNAME": "crystalbajgai.vercel.app" } } diff --git a/domains/ctrlraul.json b/domains/ctrlraul.json index ec47623e1..9619a9fe6 100644 --- a/domains/ctrlraul.json +++ b/domains/ctrlraul.json @@ -4,7 +4,7 @@ "owner": { "username": "ctrlraul", "email": "mailctrlraul@gmail.com", - "twitter": "@CtrlRaul" + "twitter": "CtrlRaul" }, "record": { "CNAME": "ctrlraul.github.io" diff --git a/domains/cuinc99.json b/domains/cuinc99.json new file mode 100644 index 000000000..bf366215b --- /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" + }, + "record": { + "CNAME": "cuinc99.github.io" + } +} diff --git a/domains/cupglass.json b/domains/cupglass.json deleted file mode 100644 index ef7e7363e..000000000 --- a/domains/cupglass.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "My base website. Very epik tbh 💥💥", - "repo": "https://github.com/cupglassdev/cupglassdev.github.io", - "owner": { - "username": "cupglassdev", - "twitter": "https://x.com/cupglassdev", - "lahelu": "https://lahelu.com/user/cupglassdev", - "discord": "cupglassdev", - "note": "i dont have much time to see my discord app (because its almost 12 am) to take my user id, but since discord has changed their username to pomelo, that is my discord account" - }, - "record": { - "NS": ["christina.ns.cloudflare.com", "mustafa.ns.cloudflare.com"] - } -} diff --git a/domains/cupglassdev.json b/domains/cupglassdev.json deleted file mode 100644 index 0ff7a0c31..000000000 --- a/domains/cupglassdev.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "Redirect to my epik website, omaygottt 😵‍💫", - "repo": "https://github.com/cupglassdev/cupglassdev.github.io", - "owner": { - "username": "cupglassdev", - "twitter": "https://x.com/cupglassdev", - "lahelu": "https://lahelu.com/user/cupglassdev", - "discord": "cupglassdev", - "note": "i dont have much time to see my discord app (because its almost 12 am) to take my user id, but since discord has changed their username to pomelo, that is my discord account" - }, - "record": { - "URL": "https://cupglass.is-a.dev" - } -} diff --git a/domains/cupglasspi.json b/domains/cupglasspi.json deleted file mode 100644 index f320e3031..000000000 --- a/domains/cupglasspi.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "t a i l s c a l e tunnel for my pi, not always active tho", - "owner": { - "username": "cupglassdev", - "twitter": "cupglassdev", - "lahelu": "https://lahelu.com/user/cupglassdev", - "discord": "cupglassdev" - }, - "record": { - "CNAME": "pi.neko-velociraptor.ts.net" - } -} diff --git a/domains/currypan1229.json b/domains/currypan1229.json new file mode 100644 index 000000000..31fb376fc --- /dev/null +++ b/domains/currypan1229.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Currypan1229", + "email": "abcqqqwpvp@gmail.com" + }, + "record": { + "URL": "https://github.com/Currypan1229" + } +} diff --git a/domains/cursedscrubdaddygang.json b/domains/cursedscrubdaddygang.json new file mode 100644 index 000000000..d0d74d5bb --- /dev/null +++ b/domains/cursedscrubdaddygang.json @@ -0,0 +1,10 @@ +{ + "owner": { + "repo": "https://github.com/QuantumMapleQC/quantummapleqc.github.io", + "username": "quantummapleqc", + "discord": "herricksom" + }, + "record": { + "CNAME": "quantummapleqc.github.io" + } +} diff --git a/domains/cutedog5695.json b/domains/cutedog5695.json index 87f0cea66..fa85df0c6 100644 --- a/domains/cutedog5695.json +++ b/domains/cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "A": ["89.106.200.1"], diff --git a/domains/cvrvmebj6qss.bteamapp.json b/domains/cvrvmebj6qss.bteamapp.json new file mode 100644 index 000000000..293c0c532 --- /dev/null +++ b/domains/cvrvmebj6qss.bteamapp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "gv-g66qqa7lomqvs2.dv.googlehosted.com" + } +} diff --git a/domains/cyberglot.json b/domains/cyberglot.json new file mode 100644 index 000000000..8cc6f4abd --- /dev/null +++ b/domains/cyberglot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cyberglot", + "email": "cyberglot@gmail.com" + }, + "record": { + "CNAME": "cyberglot.github.io" + } +} diff --git a/domains/cyberpj.json b/domains/cyberpj.json new file mode 100644 index 000000000..f22f38a0e --- /dev/null +++ b/domains/cyberpj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xcyberpj", + "email": "0xcyberpj@proton.me" + }, + "record": { + "CNAME": "0xcyberpj.github.io" + } +} diff --git a/domains/cynik.json b/domains/cynik.json new file mode 100644 index 000000000..56d8340fb --- /dev/null +++ b/domains/cynik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "criticic", + "email": "acriticalcynic@outlook.com" + }, + "record": { + "CNAME": "cynikal-blog.vercel.app" + } +} 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/dadoge.json b/domains/dadoge.json new file mode 100644 index 000000000..00ca5db19 --- /dev/null +++ b/domains/dadoge.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DaDogeDev" + }, + "record": { + "CNAME": "dadogedev.github.io" + }, + "proxied": false +} diff --git a/domains/daffa.json b/domains/daffa.json new file mode 100644 index 000000000..de6e74424 --- /dev/null +++ b/domains/daffa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "daffafaizan", + "email": "daffamfzn@gmail.com" + }, + "record": { + "URL": "https://daffafaizan.com" + } +} diff --git a/domains/dai.json b/domains/dai.json new file mode 100644 index 000000000..df0ddcd41 --- /dev/null +++ b/domains/dai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ncdai", + "email": "dai@chanhdai.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/daim.json b/domains/daim.json new file mode 100644 index 000000000..6cdfaa69b --- /dev/null +++ b/domains/daim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sYnceDez41", + "email": "zdaim78@gmail.com" + }, + "record": { + "CNAME": "devdaim.vercel.app" + } +} diff --git a/domains/dainfloop.json b/domains/dainfloop.json index c918c75a7..9cb76e3b1 100644 --- a/domains/dainfloop.json +++ b/domains/dainfloop.json @@ -4,19 +4,12 @@ "email": "backupharoongames100@gmail.com" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "AAAA": [ - "2606:50c0:8000::153", - "2606:50c0:8001::153", - "2606:50c0:8002::153", - "2606:50c0:8003::153" - ], + "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" + "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 d2de1bc8b..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/damian.json b/domains/damian.json new file mode 100644 index 000000000..df778242f --- /dev/null +++ b/domains/damian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meliadamian17", + "email": "meliadamian17@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/damilare.json b/domains/damilare.json new file mode 100644 index 000000000..a646b65d4 --- /dev/null +++ b/domains/damilare.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Peculiars", + "email": "olaitandamilare230@gmail.com" + }, + "record": { + "CNAME": "peculiars.github.io" + } +} diff --git a/domains/dan.json b/domains/dan.json index 8f7023050..7d436f3e4 100644 --- a/domains/dan.json +++ b/domains/dan.json @@ -6,6 +6,6 @@ "email": "dan.field643@gmail.com" }, "record": { - "CNAME": "DanField12.github.io" + "CNAME": "danfield12.github.io" } } diff --git a/domains/dang.json b/domains/dang.json new file mode 100644 index 000000000..f608f7147 --- /dev/null +++ b/domains/dang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chanhdangcom", + "email": "ncdang@quaric.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/daniel.json b/domains/daniel.json index 2810eba87..d80aceac1 100644 --- a/domains/daniel.json +++ b/domains/daniel.json @@ -6,9 +6,7 @@ }, "record": { "A": ["34.120.194.28"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/daniellozano.json b/domains/daniellozano.json new file mode 100644 index 000000000..aa7293c55 --- /dev/null +++ b/domains/daniellozano.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "z4no", + "email": "danixt35@gmail.com" + }, + "record": { + "CNAME": "z4no.github.io" + } +} diff --git a/domains/danielpedroza.json b/domains/danielpedroza.json new file mode 100644 index 000000000..e69721855 --- /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" + }, + "record": { + "URL": "https://daniepusb.github.io/" + } +} diff --git a/domains/danieltampe.json b/domains/danieltampe.json new file mode 100644 index 000000000..d6fed1638 --- /dev/null +++ b/domains/danieltampe.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DanielTampeCaamano", + "email": "danieltampe@hotmail.com", + "discord": "246811015285571586" + }, + "record": { + "CNAME": "daniel-tampe-webpage.vercel.app" + } +} diff --git a/domains/danielzambrano.json b/domains/danielzambrano.json new file mode 100644 index 000000000..8a7a59e3c --- /dev/null +++ b/domains/danielzambrano.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DanielZambranoC", + "email": "trail.moth9771@eagereverest.com" + }, + "record": { + "URL": "https://www.linkedin.com/in/danielzambranoc/" + } +} diff --git a/domains/danilezheng4.json b/domains/danilezheng4.json new file mode 100644 index 000000000..25714c915 --- /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" + }, + "record": { + "CNAME": "danilezheng4.github.io" + } +} diff --git a/domains/daniyor.json b/domains/daniyor.json new file mode 100644 index 000000000..9b78ea0a6 --- /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" + }, + "record": { + "CNAME": "daniyor2020.github.io" + } +} diff --git a/domains/dankamigos.json b/domains/dankamigos.json index a9ebc1f99..c12948244 100644 --- a/domains/dankamigos.json +++ b/domains/dankamigos.json @@ -4,7 +4,6 @@ "email": "anirudhsus001@gmail.com" }, "record": { - "A": ["20.119.16.40"], - "TXT": ["562965D131E7C913D1796476301A86A148A2B64B52D99FC316724B0B785FAAB1"] + "CNAME": "dankamigos-baapekd9aua9esh2.centralus-01.azurewebsites.net" } } diff --git a/domains/dano.json b/domains/dano.json deleted file mode 100644 index 5a8e0e933..000000000 --- a/domains/dano.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Dano's resume", - "repo": "https://github.com/dano-syrus/dano-syrus.github.io", - "owner": { - "username": "dano-syrus", - "email": "danosyrus@tuta.io", - "discord": "dano#6811" - }, - "record": { - "CNAME": "dano-syrus.github.io" - } -} diff --git a/domains/danybmx.json b/domains/danybmx.json new file mode 100644 index 000000000..4aec5f04c --- /dev/null +++ b/domains/danybmx.json @@ -0,0 +1,10 @@ +{ + "description": "danybmx's blog and portfolio", + "owner": { + "username": "danybmx", + "email": "daniel@dpstudios.es" + }, + "record": { + "CNAME": "is-a-dev.dpstudios.es" + } +} diff --git a/domains/daoch4n.json b/domains/daoch4n.json new file mode 100644 index 000000000..2f3e71db6 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} \ No newline at end of file diff --git a/domains/dariorodrigon.json b/domains/dariorodrigon.json new file mode 100644 index 000000000..e8de8bc65 --- /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" + }, + "record": { + "CNAME": "dario-rodriguez.github.io" + } +} diff --git a/domains/darkdus.json b/domains/darkdus.json new file mode 100644 index 000000000..40b08a34c --- /dev/null +++ b/domains/darkdus.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Project", + "owner": { + "username": "MqJulus", + "email": "julien.sabe07@gmail.com" + }, + "record": { + "CNAME": "dark-dus.web.app" + } +} diff --git a/domains/darkyzhou.json b/domains/darkyzhou.json new file mode 100644 index 000000000..e4980c556 --- /dev/null +++ b/domains/darkyzhou.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "darkyzhou", + "email": "me@zqy.io" + }, + "record": { + "CNAME": "darkyzhou.net" + } +} diff --git a/domains/darren.json b/domains/darren.json index 73824a0a7..c71d8613c 100644 --- a/domains/darren.json +++ b/domains/darren.json @@ -1,6 +1,5 @@ { "description": "I use arch btw", - "repo": "https://github.com/DarrenOfficial", "owner": { "username": "DarrenOfficial", "email": "github@darrennathanael.com" diff --git a/domains/darshan.json b/domains/darshan.json new file mode 100644 index 000000000..cca8b533e --- /dev/null +++ b/domains/darshan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dqrshan", + "email": "darshan310268@gmail.com", + "discord": "838620835282812969" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/darsshan.json b/domains/darsshan.json new file mode 100644 index 000000000..dab8ddf9e --- /dev/null +++ b/domains/darsshan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DotEnvv", + "email": "nahsrad04@gmail.com" + }, + "record": { + "CNAME": "dotenvv.github.io" + } +} diff --git a/domains/dartanman.json b/domains/dartanman.json index 241595624..32c2932cf 100644 --- a/domains/dartanman.json +++ b/domains/dartanman.json @@ -1,6 +1,5 @@ { "description": "My portfolio", - "repo": "https://github.com/Dartanman", "owner": { "username": "Dartanman", "email": "dartanmanplaysminecraft@gmail.com" diff --git a/domains/dash.pele.json b/domains/dash.pele.json new file mode 100644 index 000000000..eceae0d10 --- /dev/null +++ b/domains/dash.pele.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Pele12324", + "email": "pele.puric@gmail.com", + "discord": "483261654818226186" + }, + "record": { + "A": ["38.242.242.224"] + } +} diff --git a/domains/dast.json b/domains/dast.json index 4cd566fed..15f0ae08c 100644 --- a/domains/dast.json +++ b/domains/dast.json @@ -1,6 +1,5 @@ { "description": "My personal website for portfolio, projects and help!", - "repo": "https://github.com/danielsebesta", "owner": { "username": "danielsebesta", "email": "dany.sebesta@seznam.cz" diff --git a/domains/dat.json b/domains/dat.json new file mode 100644 index 000000000..8c0a351b2 --- /dev/null +++ b/domains/dat.json @@ -0,0 +1,10 @@ +{ + "description": "Github site of pdqdat", + "owner": { + "username": "pdqdat", + "email": "phanduongquocdat273@gmail.com" + }, + "record": { + "URL": "https://pdqdat.github.io/" + } +} diff --git a/domains/data.accounts.juststudio.json b/domains/data.accounts.juststudio.json new file mode 100644 index 000000000..b0f3eb83b --- /dev/null +++ b/domains/data.accounts.juststudio.json @@ -0,0 +1,11 @@ +{ + "description": "For account system's database", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "CNAME": "juststudio-account.web.app" + } +} diff --git a/domains/datit309.json b/domains/datit309.json new file mode 100644 index 000000000..ddc334f39 --- /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" + }, + "record": { + "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..9ae8a6075 --- /dev/null +++ b/domains/dauvet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dauvet", + "email": "vanhieu85@gmail.com" + }, + "record": { + "CNAME": "dauvet.github.io" + } +} diff --git a/domains/davechbga.json b/domains/davechbga.json new file mode 100644 index 000000000..2d00c0eeb --- /dev/null +++ b/domains/davechbga.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "davechbga" + }, + "record": { + "CNAME": "davechbga.vercel.app" + } +} diff --git a/domains/davemp.json b/domains/davemp.json new file mode 100644 index 000000000..40f233d56 --- /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" + }, + "record": { + "CNAME": "davemp.vercel.app" + } +} diff --git a/domains/david.json b/domains/david.json new file mode 100644 index 000000000..e80ad53a8 --- /dev/null +++ b/domains/david.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "david-valdivia", + "email": "dev@dvaldivia.com" + }, + "record": { + "CNAME": "dvaldivia.com" + } +} diff --git a/domains/davidpizarro.json b/domains/davidpizarro.json new file mode 100644 index 000000000..58664efd0 --- /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" + }, + "record": { + "CNAME": "davidppizarro.github.io" + } +} diff --git a/domains/davidramirez.json b/domains/davidramirez.json new file mode 100644 index 000000000..0720de824 --- /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" + }, + "record": { + "CNAME": "davidramirez.netlify.app" + } +} diff --git a/domains/davidrivas.json b/domains/davidrivas.json new file mode 100644 index 000000000..37a4a3ce6 --- /dev/null +++ b/domains/davidrivas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DavidRDevs", + "email": "ing.davidrivas96@gmail.com" + }, + "record": { + "URL": "https://github.com/DavidRDevs" + } +} diff --git a/domains/davidsneighbour.json b/domains/davidsneighbour.json new file mode 100644 index 000000000..6952ce03b --- /dev/null +++ b/domains/davidsneighbour.json @@ -0,0 +1,11 @@ +{ + "description": "My GitHub profile", + "owner": { + "username": "davidsneighbour", + "email": "pkollitsch+isadev@gmail.com" + }, + "record": { + "URL": "https://github.com/davidsneighbour/", + "MX": ["smtp.google.com"] + } +} diff --git a/domains/davr.json b/domains/davr.json new file mode 100644 index 000000000..3c07b5a70 --- /dev/null +++ b/domains/davr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cernoh", + "email": "davincey06@gmail.com" + }, + "record": { + "CNAME": "neobrutal-resume-vercel.vercel.app" + } +} diff --git a/domains/dawnbreaker.json b/domains/dawnbreaker.json index 92b0a6e03..aaca4345d 100644 --- a/domains/dawnbreaker.json +++ b/domains/dawnbreaker.json @@ -4,6 +4,6 @@ "email": "dawnbreaker0013@gmail.com" }, "record": { - "A": ["34.168.171.130"] + "A": ["35.199.176.130"] } } diff --git a/domains/de.whine.json b/domains/de.whine.json deleted file mode 100644 index 25b3d7131..000000000 --- a/domains/de.whine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "whinee", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's deno subdomain", - "record": { - "A": ["34.120.54.55"], - "TXT": "deno-com-validation=572b9c00ebc922b6f8367944" - } -} diff --git a/domains/deadcode.json b/domains/deadcode.json index 0de06a26c..3f6820198 100644 --- a/domains/deadcode.json +++ b/domains/deadcode.json @@ -2,10 +2,10 @@ "owner": { "username": "RichardKanshen", "email": "richard@kanshen.click", - "twitter": "@kanskje0", + "twitter": "kanskje0", "discord": "kanshen.uwu", "bluesky": "kanshen.click", - "telegram": "@richardkanskje" + "telegram": "richardkanskje" }, "record": { "CNAME": "deadcodegames.github.io" diff --git a/domains/deadshot.json b/domains/deadshot.json index 87b118666..8f48d9529 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" + "CNAME": "deadshotdev.vercel.app" } } diff --git a/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json b/domains/debaditya.json similarity index 56% rename from domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json rename to domains/debaditya.json index 5e584ec99..4ea3083e8 100644 --- a/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json +++ b/domains/debaditya.json @@ -1,9 +1,9 @@ { "owner": { - "username": "yunexiz", - "discord": "1040303561847881729" + "username": "DebadityaMalakar", + "email": "debadityamalakar@outlook.com" }, "record": { - "TXT": "44acf50d05a09c5bdcb82f64551e6c" + "A": ["76.76.21.21"] } } diff --git a/domains/debertjamie.json b/domains/debertjamie.json index 299834afc..44f7c71e3 100644 --- a/domains/debertjamie.json +++ b/domains/debertjamie.json @@ -1,6 +1,5 @@ { "description": "A personal website", - "repo": "https://github.com/debertjamie", "owner": { "username": "debertjamie", "email": "debert123@protonmail.com" diff --git a/domains/debjoti-mallick.json b/domains/debjoti-mallick.json new file mode 100644 index 000000000..01ed916ab --- /dev/null +++ b/domains/debjoti-mallick.json @@ -0,0 +1,11 @@ +{ + "description": "Debjoti's portfolio website", + "owner": { + "username": "DebjotiMallick", + "email": "debjoti97@gmail.com" + }, + "record": { + "CNAME": "debjotimallick.github.io" + }, + "proxied": true +} diff --git a/domains/debjotimallick.json b/domains/debjotimallick.json new file mode 100644 index 000000000..544392a72 --- /dev/null +++ b/domains/debjotimallick.json @@ -0,0 +1,14 @@ +{ + "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" + }, + "record": { + "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..2837274d7 --- /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" + }, + "record": { + "CNAME": "debkanchan.github.io" + } +} diff --git a/domains/debug.json b/domains/debug.json index 44572a9ae..5c191ce30 100644 --- a/domains/debug.json +++ b/domains/debug.json @@ -1,6 +1,5 @@ { "description": "Debug.Log's Website", - "owner": { "username": "extremepro999", "email": "debugdotlog@zohomail.in" diff --git a/domains/deeptanshu.json b/domains/deeptanshu.json new file mode 100644 index 000000000..603733909 --- /dev/null +++ b/domains/deeptanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Deeptanshuu", + "email": "laldeeptanshu96@gmail.com" + }, + "record": { + "CNAME": "deeptanshu.vercel.app" + } +} diff --git a/domains/default._domainkey.yxz.json b/domains/default._domainkey.yxz.json new file mode 100644 index 000000000..c64e4c0a0 --- /dev/null +++ b/domains/default._domainkey.yxz.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "record": { + "TXT": [ + "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/demonitize.json b/domains/demonitize.json index 584370880..e4be0e8a1 100644 --- a/domains/demonitize.json +++ b/domains/demonitize.json @@ -6,7 +6,6 @@ "discord": "demonitize" }, "description": "Probably will use this to redirect to GitHub, because custom domain look cool", - "repo": "https://github.com/demonitize", "record": { "URL": "https://github.com/demonitize", "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], diff --git a/domains/denblo.json b/domains/denblo.json new file mode 100644 index 000000000..2b03ac82b --- /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" + }, + "record": { + "CNAME": "denisblokhin.github.io" + } +} diff --git a/domains/deniz.json b/domains/deniz.json index e88872028..6c785c944 100644 --- a/domains/deniz.json +++ b/domains/deniz.json @@ -4,10 +4,20 @@ "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" + "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/denty.json b/domains/denty.json new file mode 100644 index 000000000..05b03223e --- /dev/null +++ b/domains/denty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dentylife", + "email": "dentyaptx@gmail.com" + }, + "record": { + "A": ["158.101.152.7"] + } +} diff --git a/domains/designer.json b/domains/designer.json index 372fd5d72..7c0068963 100644 --- a/domains/designer.json +++ b/domains/designer.json @@ -1,6 +1,5 @@ { "description": "Designer Slash Developer", - "repo": "https://github.com/designbyadrian", "owner": { "username": "designbyadrian", "email": "adrian@designbyadrian.com" 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/devabh.json b/domains/devabh.json index 4802c354e..30e53989e 100644 --- a/domains/devabh.json +++ b/domains/devabh.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "devabh96", - "email": "", - "discord": "760049962544791562", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cj4_MgLnwmfo1F0NcZvbKIKDQ23CcQAIjYT0X3SmU1YAipr02XR4E11TQqZIzlM6hPwbHUbB59OQx_zkcuN9JO2VaTteS_TpZZ8ytvxfdl60QtGhSAD3Q9zm0-oKKAbVEjR-EzEEwpftzw8VwQlQIgiYbXjZibHKp2D3KbKOB3J-C3cl5LBHhMKPFsFj6N12jwFDzrQeDO8mCrTgKX1D3YpiZaVkhMhuKVFwE0V2vXSx-JidQi3yz--KWLsfXZETU8YAVwFsEAroWLcerWOcNPYejvjQ51VMQDqaRz00AkTByNXXWYo1Q4q4wlZJd0wSIoKoK0iuvkPhSacjP6kW4A.yDr4bOjKGS35kiQ-0Tzj5Q.SrpxNDOW7NpFpZmetH-qJMomCelSSw3YTBGL3Vu2AtdYZ1OVQYWk8yhfGU0kVwyB4wAlPIQYaC2UXDqJXrHqSEmcK-P8f0uvKUiwaKHtaEw.Or8kZv4I4r03hoGLMr7MyQ" - }, - - "record": { - "A": ["69.30.249.53"] - } - } - \ No newline at end of file + "owner": { + "username": "devabh96", + "discord": "760049962544791562", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cj4_MgLnwmfo1F0NcZvbKIKDQ23CcQAIjYT0X3SmU1YAipr02XR4E11TQqZIzlM6hPwbHUbB59OQx_zkcuN9JO2VaTteS_TpZZ8ytvxfdl60QtGhSAD3Q9zm0-oKKAbVEjR-EzEEwpftzw8VwQlQIgiYbXjZibHKp2D3KbKOB3J-C3cl5LBHhMKPFsFj6N12jwFDzrQeDO8mCrTgKX1D3YpiZaVkhMhuKVFwE0V2vXSx-JidQi3yz--KWLsfXZETU8YAVwFsEAroWLcerWOcNPYejvjQ51VMQDqaRz00AkTByNXXWYo1Q4q4wlZJd0wSIoKoK0iuvkPhSacjP6kW4A.yDr4bOjKGS35kiQ-0Tzj5Q.SrpxNDOW7NpFpZmetH-qJMomCelSSw3YTBGL3Vu2AtdYZ1OVQYWk8yhfGU0kVwyB4wAlPIQYaC2UXDqJXrHqSEmcK-P8f0uvKUiwaKHtaEw.Or8kZv4I4r03hoGLMr7MyQ" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/devanshu.json b/domains/devanshu.json new file mode 100644 index 000000000..7fccf0a77 --- /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" + }, + "record": { + "CNAME": "portfolio-nine-xi-16.vercel.app" + } +} diff --git a/domains/devarnav.json b/domains/devarnav.json deleted file mode 100644 index a137cde6f..000000000 --- a/domains/devarnav.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "owner": { - "username": "ArnavBarway", - "email": "playnav.yt@gmail.com" - }, - - "record": { - "A": [ - "185.199.111.153", - "185.199.108.153", - "185.199.110.153", - "185.199.109.153" - ], - "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"], - "TXT": "v=spf1 include:zoho.in ~all" - } -} diff --git a/domains/devbx.json b/domains/devbx.json deleted file mode 100644 index 9c921ebc9..000000000 --- a/domains/devbx.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "devbx", - "email": "pangys0306@hotmail.com" - }, - "record": { - "CNAME": "devbx.github.io" - } -} diff --git a/domains/devcomp.json b/domains/devcomp.json index 53f875fe9..e23c75814 100644 --- a/domains/devcomp.json +++ b/domains/devcomp.json @@ -1,6 +1,5 @@ { "description": "Cool looking redirection for my site.", - "repo": "https://github.com/CompeyDev", "owner": { "username": "CompeyDev", "email": "hi@devcomp.xyz" diff --git a/domains/devdaim.json b/domains/devdaim.json new file mode 100644 index 000000000..d5a26fbd3 --- /dev/null +++ b/domains/devdaim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sYnceDez41", + "email": "daimdev6@gmail.com" + }, + "record": { + "A": ["4.247.175.26"] + } +} diff --git a/domains/devdk.json b/domains/devdk.json index c525471cb..273fbc32a 100644 --- a/domains/devdk.json +++ b/domains/devdk.json @@ -5,6 +5,6 @@ "twitter": "_DevDK" }, "record": { - "CNAME": "DeveloperDmitryKolyadin.github.io" + "CNAME": "developerdmitrykolyadin.github.io" } } diff --git a/domains/mail.satindar.json b/domains/devghost.json similarity index 51% rename from domains/mail.satindar.json rename to domains/devghost.json index 779218a39..d28397cfe 100644 --- a/domains/mail.satindar.json +++ b/domains/devghost.json @@ -1,8 +1,8 @@ { - "description": "Mail for basic privacy", + "repo": "https://github.com/thecodingwizardx/register.git", "owner": { - "username": "satindar31", - "email": "satindar@satindar-is.me" + "username": "thecodingwizardx", + "email": "murkyaxe@gmail.com" }, "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], diff --git a/domains/devhanza.json b/domains/devhanza.json index e7e14efc3..e18b914ce 100644 --- a/domains/devhanza.json +++ b/domains/devhanza.json @@ -4,6 +4,6 @@ "email": "josephandrew1@logicstreak.com" }, "record": { - "URL": "https://hansana.is-a.dev/" + "URL": "https://contra.com/devhanza/work" } } diff --git a/domains/devm.json b/domains/devm.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/devm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devma.json b/domains/devma.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/devma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmai.json b/domains/devmai.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/devmai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmat.json b/domains/devmat.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/devmat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmate.json b/domains/devmate.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/devmate.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmatei-again.json b/domains/devmatei-again.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/devmatei-again.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/devmatei.json b/domains/devmatei.json new file mode 100644 index 000000000..f6c3f921e --- /dev/null +++ b/domains/devmatei.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev", + "discord": "784443338627612673", + "twitter": "thedevmatei" + }, + "record": { + "NS": ["chip.ns.cloudflare.com", "marjory.ns.cloudflare.com"] + } +} diff --git a/domains/devon.json b/domains/devon.json index 3125a1dc1..0b2827c2f 100644 --- a/domains/devon.json +++ b/domains/devon.json @@ -2,8 +2,7 @@ "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": { "CNAME": "d-pow.github.io" diff --git a/domains/df.json b/domains/df.json new file mode 100644 index 000000000..01bd43ae8 --- /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" + }, + "record": { + "CNAME": "df-wu.github.io" + } +} diff --git a/domains/dharamvir.json b/domains/dharamvir.json new file mode 100644 index 000000000..543e4aa8f --- /dev/null +++ b/domains/dharamvir.json @@ -0,0 +1,10 @@ +{ + "domain": "dharamvir.is-a.dev", + "owner": { + "email": "gohildharamvirsinh1530@gmail.com", + "github": "DH4R4M" + }, + "record": { + "CNAME": "DH4R4M.github.io" + } +} diff --git a/domains/dhika.json b/domains/dhika.json new file mode 100644 index 000000000..b9b373f36 --- /dev/null +++ b/domains/dhika.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thisisdhika", + "email": "dhikaardana87@gmail.com" + }, + "record": { + "CNAME": "thisisdhika.vercel.app" + } +} diff --git a/domains/dhilipan.json b/domains/dhilipan.json index 28ed5c4b8..e622280bf 100644 --- a/domains/dhilipan.json +++ b/domains/dhilipan.json @@ -1,20 +1,15 @@ { - "owner": { - "username": "MysticalPvE", - "discord": "1229782675678826496", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" - }, - "record": { - "A": [ - "75.2.60.5" - ], - "MX": [ - "mx1.simplelogin.co", - "mx2.simplelogin.co" - ], - "TXT": [ - "sl-verification=wpdcbpaapmqwevjvnaifhpwdvozldi", - "v=spf1 include:simplelogin.co ~all" - ] - } + "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" + }, + "record": { + "A": ["75.2.60.5"], + "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"], + "TXT": [ + "sl-verification=wpdcbpaapmqwevjvnaifhpwdvozldi", + "v=spf1 include:simplelogin.co ~all" + ] + } } diff --git a/domains/dhlcgd.json b/domains/dhlcgd.json new file mode 100644 index 000000000..84adf8b6e --- /dev/null +++ b/domains/dhlcgd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/dhp2010.json b/domains/dhp2010.json new file mode 100644 index 000000000..37db9af35 --- /dev/null +++ b/domains/dhp2010.json @@ -0,0 +1,17 @@ +{ + "description": "My personal DHPhuc's website.", + "owner": { + "username": "dhp5621", + "email": "daohongphuc1112010@hotmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/dhruvkoshta.json b/domains/dhruvkoshta.json new file mode 100644 index 000000000..73f56b446 --- /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" + }, + "record": { + "CNAME": "dhruvkoshta.github.io" + } +} diff --git a/domains/dialguiba.json b/domains/dialguiba.json new file mode 100644 index 000000000..d71095dc0 --- /dev/null +++ b/domains/dialguiba.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dialguiba", + "email": "dialguiba@gmail.com" + }, + "record": { + "CNAME": "dialguiba.netlify.app" + } +} diff --git a/domains/diego-rubi.json b/domains/diego-rubi.json new file mode 100644 index 000000000..2f0206a5a --- /dev/null +++ b/domains/diego-rubi.json @@ -0,0 +1,9 @@ +{ + "description": "Portfolio's Diego Rubi", + "owner": { + "username": "drubico" + }, + "record": { + "CNAME": "drubico.github.io" + } +} diff --git a/domains/diegoreis.json b/domains/diegoreis.json new file mode 100644 index 000000000..ae5007d70 --- /dev/null +++ b/domains/diegoreis.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "diegoreis42", + "email": "reisdiego144@gmail.com" + }, + "record": { + "CNAME": "diegoreis42.github.io" + }, + "proxied": true +} diff --git a/domains/dikshantsingh.json b/domains/dikshantsingh.json new file mode 100644 index 000000000..f37339670 --- /dev/null +++ b/domains/dikshantsingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dikshantsingh510", + "email": "dikshantsingh510@gmail.com" + }, + "record": { + "CNAME": "dikshantsingh510.github.io" + } +} diff --git a/domains/dilpreetgrover.json b/domains/dilpreetgrover.json new file mode 100644 index 000000000..4b976223f --- /dev/null +++ b/domains/dilpreetgrover.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dfordp", + "email": "dilpreetgrover2@gmail.com", + "discord": "dfordp" + }, + "record": { + "CNAME": "dilpreetgrover.vercel.app" + } +} diff --git a/domains/dilshad.json b/domains/dilshad.json deleted file mode 100644 index 06a3542a5..000000000 --- a/domains/dilshad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "for portfolio website", - "repo": "https://github.com/dilshad0101/portfolio.website", - "owner": { - "username": "dilshad0101", - "email": "dilshadmuhammed0101@gmail.com" - }, - "record": { - "CNAME": "dilshad0101.github.io" - } -} diff --git a/domains/dincer-portfolio.json b/domains/dincer-portfolio.json new file mode 100644 index 000000000..206c57d6f --- /dev/null +++ b/domains/dincer-portfolio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DincerOgren", + "email": "dincer.ogr@hotmail.com" + }, + "record": { + "CNAME": "dincerogren.github.io" + }, + "proxied": false +} diff --git a/domains/dipesh.json b/domains/dipesh.json new file mode 100644 index 000000000..1e90ab839 --- /dev/null +++ b/domains/dipesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dipesh79", + "email": "dipeshkhanal79@gmail.com" + }, + "record": { + "A": ["192.250.235.27"] + } +} diff --git a/domains/discord-lakshishere.json b/domains/discord-lakshishere.json new file mode 100644 index 000000000..7a03c091c --- /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" + }, + "record": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/discordlakshishere.json b/domains/discordlakshishere.json new file mode 100644 index 000000000..7a03c091c --- /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" + }, + "record": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/dishant.json b/domains/dishant.json new file mode 100644 index 000000000..cc84bd77c --- /dev/null +++ b/domains/dishant.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Dishant402955/Portfolio", + "owner": { + "username": "Dishant402955", + "email": "dishantradadiya3036@gmail.com" + }, + "record": { + "CNAME": "portfolio-dishants-projects-6881d6c0.vercel.app" + } +} diff --git a/domains/diti.json b/domains/diti.json new file mode 100644 index 000000000..3af928284 --- /dev/null +++ b/domains/diti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pixeler5diti", + "email": "ditivasisht@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/divyanshudhruv.json b/domains/divyanshudhruv.json index 4e927568d..351a5b287 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" + "CNAME": "divyanshudhruv.vercel.app" } } diff --git a/domains/divyanshuvashu.json b/domains/divyanshuvashu.json new file mode 100644 index 000000000..f92b3a4e2 --- /dev/null +++ b/domains/divyanshuvashu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "divyanshu-vashu", + "email": "vashusingh2004.jan@gmail.com", + "discord": "ram_ravan69" + }, + "record": { + "CNAME": "divyanshusingh.vercel.app" + } +} diff --git a/domains/diwash.json b/domains/diwash.json new file mode 100644 index 000000000..520ca51cd --- /dev/null +++ b/domains/diwash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Diwash-7", + "email": "rimaldiwash7@gmail.com" + }, + "record": { + "CNAME": "diwash-7.github.io" + } +} diff --git a/domains/djaana.json b/domains/djaana.json new file mode 100644 index 000000000..7a3a0d4f8 --- /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" + }, + "record": { + "CNAME": "djaana.github.io" + } +} diff --git a/domains/djangounet.json b/domains/djangounet.json new file mode 100644 index 000000000..328104eb0 --- /dev/null +++ b/domains/djangounet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "keltroth", + "email": "contact@djangojanny.net" + }, + "record": { + "CNAME": "www.djangojanny.net" + } +} 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 481f1b7df..b00989914 100644 --- a/domains/dkim._domainkey.dhilipan.json +++ b/domains/dkim._domainkey.dhilipan.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "MysticalPvE", - "discord": "1229782675678826496", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" - }, - "record": { - "CNAME": "dkim._domainkey.simplelogin.co" - } + "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" + }, + "record": { + "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..a6f8f1dd3 --- /dev/null +++ b/domains/dkim._domainkey.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "record": { + "CNAME": "dkim._domainkey.simplelogin.co" + } +} diff --git a/domains/dkim02._domainkey.dhilipan.json b/domains/dkim02._domainkey.dhilipan.json index d335aea48..ad70d0730 100644 --- a/domains/dkim02._domainkey.dhilipan.json +++ b/domains/dkim02._domainkey.dhilipan.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "MysticalPvE", - "discord": "1229782675678826496", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" - }, - "record": { - "CNAME": "dkim02._domainkey.simplelogin.co" - } + "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" + }, + "record": { + "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..bde56b46b --- /dev/null +++ b/domains/dkim02._domainkey.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "record": { + "CNAME": "dkim02._domainkey.simplelogin.co" + } +} diff --git a/domains/dkim03._domainkey.dhilipan.json b/domains/dkim03._domainkey.dhilipan.json index d345f010f..84f05a748 100644 --- a/domains/dkim03._domainkey.dhilipan.json +++ b/domains/dkim03._domainkey.dhilipan.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "MysticalPvE", - "discord": "1229782675678826496", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" - }, - "record": { - "CNAME": "dkim03._domainkey.simplelogin.co" - } + "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" + }, + "record": { + "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..b79fc8f11 --- /dev/null +++ b/domains/dkim03._domainkey.sewt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "record": { + "CNAME": "dkim03._domainkey.simplelogin.co" + } +} diff --git a/domains/dllb.json b/domains/dllb.json new file mode 100644 index 000000000..6af3be5c9 --- /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" + }, + "record": { + "CNAME": "dllbdev.github.io" + } +} diff --git a/domains/dm.json b/domains/dm.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/dm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dmc.json b/domains/dmc.json new file mode 100644 index 000000000..238c7c274 --- /dev/null +++ b/domains/dmc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "morcu", + "email": "david.morcuende.c@gmail.com" + }, + "record": { + "CNAME": "davidmorcuende.com" + } +} diff --git a/domains/dmi.json b/domains/dmi.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/dmi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/doansilinh.json b/domains/doansilinh.json new file mode 100644 index 000000000..1d8747c17 --- /dev/null +++ b/domains/doansilinh.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "doansilinh" + }, + "record": { + "CNAME": "doansilinh.github.io" + } +} diff --git a/domains/doantran.json b/domains/doantran.json new file mode 100644 index 000000000..3ba9f4f18 --- /dev/null +++ b/domains/doantran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gressi-177", + "email": "vietdoan177@gmail.com" + }, + "record": { + "CNAME": "portfolio-viet-doans-projects.vercel.app" + } +} diff --git a/domains/docs.abdullahcxd.json b/domains/docs.abdullahcxd.json new file mode 100644 index 000000000..0364a1347 --- /dev/null +++ b/domains/docs.abdullahcxd.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abdullahcxd", + "email": "sabdullahcxd@gmail.com", + "discord": "sabdullahcxd" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/docs.json b/domains/docs.json index 713e677dc..eeb70255e 100644 --- a/domains/docs.json +++ b/domains/docs.json @@ -6,6 +6,7 @@ "email": "admin@is-a.dev" }, "record": { - "URL": "https://is-a.dev/docs" - } + "CNAME": "is-a-dev-docs.pages.dev" + }, + "proxied": true } diff --git a/domains/dodongduc.json b/domains/dodongduc.json new file mode 100644 index 000000000..fc67b2dc4 --- /dev/null +++ b/domains/dodongduc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duc3d-hus", + "email": "duc3d.hus@gmail.com" + }, + "record": { + "CNAME": "duc3d-hus.github.io" + } +} diff --git a/domains/dokiet.json b/domains/dokiet.json new file mode 100644 index 000000000..27d684591 --- /dev/null +++ b/domains/dokiet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kietdo-dev", + "email": "lionvs12345@gmail.com" + }, + "record": { + "CNAME": "dokiet.vercel.app" + } +} diff --git a/domains/donald.json b/domains/donald.json new file mode 100644 index 000000000..7598d7cd9 --- /dev/null +++ b/domains/donald.json @@ -0,0 +1,10 @@ +{ + "description": "Donald's personal developer website", + "owner": { + "email": "dawntop@126.com", + "username": "donald001" + }, + "record": { + "CNAME": "donald001.github.io" + } +} diff --git a/domains/donate.json b/domains/donate.json new file mode 100644 index 000000000..a1e0ae09a --- /dev/null +++ b/domains/donate.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "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..d0b1990db --- /dev/null +++ b/domains/doncho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "donangel", + "email": "public@doncho.net" + }, + "record": { + "URL": "https://doncho.net" + } +} diff --git a/domains/dongtran.json b/domains/dongtran.json new file mode 100644 index 000000000..e3ba5a3da --- /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" + }, + "record": { + "URL": "https://devvui.one" + } +} diff --git a/domains/doom.json b/domains/doom.json new file mode 100644 index 000000000..f9ad902fe --- /dev/null +++ b/domains/doom.json @@ -0,0 +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" + } +} diff --git a/domains/dotexe3301.json b/domains/dotexe3301.json new file mode 100644 index 000000000..a8298e3b9 --- /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" + }, + "record": { + "CNAME": "dotexe3301.github.io" + } +} diff --git a/domains/doug.json b/domains/doug.json new file mode 100644 index 000000000..e0498d91f --- /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" + }, + "record": { + "CNAME": "drssoccer55.github.io" + } +} diff --git a/domains/douglas.json b/domains/douglas.json new file mode 100644 index 000000000..e56eba916 --- /dev/null +++ b/domains/douglas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "standingdreams", + "email": "designer.drogers@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/drago-cuven.json b/domains/drago-cuven.json index 2ada7533a..526292ca2 100644 --- a/domains/drago-cuven.json +++ b/domains/drago-cuven.json @@ -4,9 +4,9 @@ "owner": { "username": "Drago-Cuven", "email": "MartinelplayzYT@gmail.com", - "twitter": "@mbcbgd" + "twitter": "mbcbgd" }, "record": { - "CNAME": "Drago-Cuven.github.io" + "CNAME": "drago-cuven.github.io" } } diff --git a/domains/draken.json b/domains/draken.json new file mode 100644 index 000000000..6a9ddae49 --- /dev/null +++ b/domains/draken.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dragonx943", + "email": "premieregirl26@gmail.com" + }, + "record": { + "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..1660188a8 --- /dev/null +++ b/domains/drbaph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saganaki22", + "email": "info@drbaph.dev" + }, + "record": { + "CNAME": "saganaki22.github.io" + } +} diff --git a/domains/drew.json b/domains/drew.json new file mode 100644 index 000000000..94b4df25b --- /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" + }, + "record": { + "CNAME": "zessu-github-io-7l1v.vercel.app" + } +} diff --git a/domains/drpleaserespect.json b/domains/drpleaserespect.json index 040686474..71a2f96e3 100644 --- a/domains/drpleaserespect.json +++ b/domains/drpleaserespect.json @@ -5,6 +5,6 @@ "discord": "300641942646161409" }, "record": { - "CNAME": "drpleaserespect.pages.dev" + "NS": ["frank.ns.cloudflare.com", "hope.ns.cloudflare.com"] } } diff --git a/domains/dscbmr.json b/domains/dscbmr.json index 25a2fb441..ff0b1e52e 100644 --- a/domains/dscbmr.json +++ b/domains/dscbmr.json @@ -3,8 +3,7 @@ "repo": "https://srpvt.github.io/DSCBMR", "owner": { "username": "SRPVT", - "email": "syedrayangames@gmail.com", - "Discord": "乃爪尺𓆩♕𓆪" + "email": "syedrayangames@gmail.com" }, "record": { "CNAME": "srpvt.github.io" diff --git a/domains/dsuescun.json b/domains/dsuescun.json new file mode 100644 index 000000000..020fe8922 --- /dev/null +++ b/domains/dsuescun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dsuescun", + "email": "dsuescun@soinsoluciones.com" + }, + "record": { + "CNAME": "dsuescun.github.io" + } +} diff --git a/domains/dtducas.json b/domains/dtducas.json new file mode 100644 index 000000000..d29c1ed94 --- /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" + }, + "record": { + "CNAME": "dtducas.github.io" + }, + "proxied": true +} diff --git a/domains/dtdung.json b/domains/dtdung.json new file mode 100644 index 000000000..e275ee0c9 --- /dev/null +++ b/domains/dtdung.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dtdung07" + }, + "record": { + "URL": "https://dtdung.us.to" + } +} diff --git a/domains/duanyang.json b/domains/duanyang.json new file mode 100644 index 000000000..c9cc5fa86 --- /dev/null +++ b/domains/duanyang.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Mrliduanyang", + "email": "duanyangchn@gmail.com" + }, + "record": { + "CNAME": "duanyang.cool" + }, + "proxied": false +} diff --git a/domains/duc.json b/domains/duc.json new file mode 100644 index 000000000..c4e199714 --- /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" + }, + "record": { + "CNAME": "duc-ios.github.io" + } +} diff --git a/domains/ducanhng.json b/domains/ducanhng.json new file mode 100644 index 000000000..3221f5f8d --- /dev/null +++ b/domains/ducanhng.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ducanhitz", + "email": "ducanhng.dev@gmail.com" + }, + "record": { + "CNAME": "ducanhitz.github.io" + } +} diff --git a/domains/duck.json b/domains/duck.json index 38cb2521a..c64483062 100644 --- a/domains/duck.json +++ b/domains/duck.json @@ -4,6 +4,6 @@ "email": "serverdeveloper@duck.com" }, "record": { - "CNAME": "serverdeveloper9447.github.io" + "CNAME": "soumalya-galaxy-portfolio-23.pages.dev" } } diff --git a/domains/duckanon.json b/domains/duckanon.json index f4f0ae290..ac11aa85e 100644 --- a/domains/duckanon.json +++ b/domains/duckanon.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "SmolNightHere312", - "email": "magickdevl@proton.me" - }, - "record": { - "A": [ - "69.30.249.53" - ] - } -} + "owner": { + "username": "SmolNightHere312", + "email": "magickdevl@proton.me" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/ducky.json b/domains/ducky.json new file mode 100644 index 000000000..c16b942d5 --- /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" + }, + "record": { + "CNAME": "ducky4life.github.io" + } +} diff --git a/domains/ductai05.json b/domains/ductai05.json new file mode 100644 index 000000000..1071bc285 --- /dev/null +++ b/domains/ductai05.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ductai05", + "email": "ductai.dt05@gmail.com" + }, + "record": { + "CNAME": "ductai05.github.io" + } +} diff --git a/domains/duong-viet-hoang.json b/domains/duong-viet-hoang.json new file mode 100644 index 000000000..1cd5a3c30 --- /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" + }, + "record": { + "CNAME": "bocanhcam.github.io" + } +} diff --git a/domains/duydo.json b/domains/duydo.json new file mode 100644 index 000000000..3b34c1a70 --- /dev/null +++ b/domains/duydo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duydo", + "email": "doquocduy@gmail.com" + }, + "record": { + "CNAME": "duydo.github.io" + } +} diff --git a/domains/duyhandsome.json b/domains/duyhandsome.json new file mode 100644 index 000000000..0210a29ec --- /dev/null +++ b/domains/duyhandsome.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dominhduy09" + }, + "record": { + "URL": "https://dominhduy09.github.io/profile/" + } +} diff --git a/domains/duyhung.json b/domains/duyhung.json index d1cf0cb92..05736e1f2 100644 --- a/domains/duyhung.json +++ b/domains/duyhung.json @@ -4,6 +4,6 @@ "email": "hungwt334@gmail.com" }, "record": { - "A": ["82.165.193.230"] + "A": ["31.186.83.254"] } } diff --git a/domains/duyhuyhoang.json b/domains/duyhuyhoang.json new file mode 100644 index 000000000..6a93937d6 --- /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" + }, + "record": { + "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 new file mode 100644 index 000000000..8955fae4e --- /dev/null +++ b/domains/duyminhhello.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tranphamduyminhhello", + "email": "tranphamduyminh.hello@gmail.com" + }, + "record": { + "CNAME": "tranphamduyminhhello.github.io" + } +} diff --git a/domains/duynguyen.json b/domains/duynguyen.json new file mode 100644 index 000000000..959a33e0c --- /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" + }, + "record": { + "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..ac19e426c --- /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" + }, + "record": { + "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..5fe5977e1 --- /dev/null +++ b/domains/duypt14.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ptduy14", + "email": "phantanduy14@gmail.com" + }, + "record": { + "CNAME": "portfolio-ptduy14s-projects.vercel.app" + } +} diff --git a/domains/duzo.json b/domains/duzo.json index ce7022753..06d3efebc 100644 --- a/domains/duzo.json +++ b/domains/duzo.json @@ -2,8 +2,7 @@ "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": { "CNAME": "duzos.github.io" diff --git a/domains/dvm.json b/domains/dvm.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/dvm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dvmi.json b/domains/dvmi.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/dvmi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/dwij.json b/domains/dwij.json new file mode 100644 index 000000000..f5e68a07a --- /dev/null +++ b/domains/dwij.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ssd39", + "email": "dwij@xylic.ai" + }, + "record": { + "URL": "https://github.com/ssd39" + } +} diff --git a/domains/dyikes.json b/domains/dyikes.json new file mode 100644 index 000000000..0f9a958a1 --- /dev/null +++ b/domains/dyikes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dyikes", + "email": "f@power.slmail.me" + }, + "record": { + "CNAME": "dyikes.duckdns.org" + } +} diff --git a/domains/dzdevelopers.json b/domains/dzdevelopers.json new file mode 100644 index 000000000..1ec791d46 --- /dev/null +++ b/domains/dzdevelopers.json @@ -0,0 +1,26 @@ +{ + "owner": { + "username": "DZDevelopers", + "email": "djoudiaymen0@gmail.com" + }, + "record": { + "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/earth.json b/domains/earth.json deleted file mode 100644 index 30a59e681..000000000 --- a/domains/earth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "imdakiki", - "discord": "898255050592366642", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IaEjpjC1tqI3LaIBPKNHiotfKngSRpLBMGFsV3dg18jGSzG2RoF4lLTrY3f0ZUXcTE-ih1NxoiFAXqlw4BXHVnJ2SVHD12U3LqBd5OWjcEm5LqljME2JnXhsu0bHIf2iwSDiR61D6IH4w1_PDoNYwbLc8qCDqp4vayZJMyTrN_TXH2dodU-phuUR0yp91-NdM6NfaStMXm8enJv2sKte6_HmCvstiy5a_RuXn52-EafKgGYO9KtyNKlnfk3LLl_IjIRRJY6ghy_6hzYszwAP1mDyw5Sn7q2ZDfnH8hQZBZXW-znFAxhXr-T4nbsus7PEEdEEYJk10aIX-HOoxxXAlA.Wo3JN-takALA-_h-Vw4dXA.3JRBTuabx2N5hfwU42QS3nk83xO_bnFqx3-x2ik2eW_GzTwQBb-2CZ2LTyKOHg-z_Hmr8ceVnPWexb56unfuJthoKCxwmwLrh2EPEBEMjpU.rt3Y5jkzKuFFwsF2OsiZDQ" - }, - "record": { - "CNAME": "imdakiki.github.io" - } -} diff --git a/domains/easynebula.json b/domains/easynebula.json index 766e6866f..39444fee7 100644 --- a/domains/easynebula.json +++ b/domains/easynebula.json @@ -4,7 +4,7 @@ "owner": { "username": "EasyNebula", "email": "geographicalfacts16@gmail.com", - "twitter": "@easynebula" + "twitter": "easynebula" }, "record": { "CNAME": "easynebula.github.io" diff --git a/domains/ebooks.json b/domains/ebooks.json new file mode 100644 index 000000000..1b06c40f0 --- /dev/null +++ b/domains/ebooks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "record": { + "CNAME": "ebooks-online-opal.vercel.app" + } +} diff --git a/domains/ebrahim.json b/domains/ebrahim.json new file mode 100644 index 000000000..97df6a1a2 --- /dev/null +++ b/domains/ebrahim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ebrahimHakimuddin", + "email": "ebrahimhakimuddin@gmail.com" + }, + "record": { + "CNAME": "ebrahimhakimuddin.github.io" + } +} diff --git a/domains/ed-henrique.json b/domains/ed-henrique.json new file mode 100644 index 000000000..d3f418353 --- /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" + }, + "record": { + "CNAME": "ed-henrique.com" + } +} diff --git a/domains/educatedsuddenbucket.json b/domains/educatedsuddenbucket.json index d49d77c7f..a4d17f0c7 100644 --- a/domains/educatedsuddenbucket.json +++ b/domains/educatedsuddenbucket.json @@ -10,6 +10,12 @@ "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", "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/edudutra.json b/domains/edudutra.json new file mode 100644 index 000000000..8f7505750 --- /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" + }, + "record": { + "CNAME": "edudutra.github.io" + } +} diff --git a/domains/edwin-lh.json b/domains/edwin-lh.json index 322c8a940..bdd08e6b9 100644 --- a/domains/edwin-lh.json +++ b/domains/edwin-lh.json @@ -4,7 +4,7 @@ "owner": { "username": "ezerinz", "email": "edwinnnzx@gmail.com", - "twitter": "@Ezerinz" + "twitter": "Ezerinz" }, "record": { "CNAME": "ezerinz.github.io" diff --git a/domains/efe.json b/domains/efe.json index 17272cdac..6362c3684 100644 --- a/domains/efe.json +++ b/domains/efe.json @@ -1,6 +1,5 @@ { "description": "personal website", - "repo": "https://github.com/0x656665", "owner": { "username": "0x656665", "email": "efe@tutanota.de" diff --git a/domains/egirl.json b/domains/egirl.json index 73a5fe400..f45137c23 100644 --- a/domains/egirl.json +++ b/domains/egirl.json @@ -1,7 +1,6 @@ { "owner": { "username": "mAskDucK", - "discord": "maskduck" }, "record": { diff --git a/domains/egor.json b/domains/egor.json new file mode 100644 index 000000000..56ea1d014 --- /dev/null +++ b/domains/egor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "egor-xyz", + "discord": "egor.xyz" + }, + "record": { + "CNAME": "egor.xyz" + } +} diff --git a/domains/ehmad.json b/domains/ehmad.json deleted file mode 100644 index 5057b013a..000000000 --- a/domains/ehmad.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "mrxehmad", - "email": "mrxehmad@naver.com" - }, - "record": { - "CNAME": "mrxehmad.github.io" - } -} diff --git a/domains/ela.json b/domains/ela.json new file mode 100644 index 000000000..c4fc3a1f4 --- /dev/null +++ b/domains/ela.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "DXRdev" + }, + "record": { + "CNAME": "dxrdev.github.io" + } +} diff --git a/domains/elanchezhiyan-p.json b/domains/elanchezhiyan-p.json new file mode 100644 index 000000000..d0649fc5b --- /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" + }, + "record": { + "CNAME": "elanchezhiyan-p.github.io" + } +} diff --git a/domains/elbek.json b/domains/elbek.json new file mode 100644 index 000000000..615779395 --- /dev/null +++ b/domains/elbek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khamdullaevuz", + "email": "elbek.khamdullaev@gmail.com" + }, + "record": { + "CNAME": "khamdullaevuz.github.io" + } +} diff --git a/domains/eldios.json b/domains/eldios.json new file mode 100644 index 000000000..a446dbe5f --- /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" + }, + "record": { + "CNAME": "eldios.github.io" + } +} diff --git a/domains/element.json b/domains/element.json new file mode 100644 index 000000000..8b0d30fa5 --- /dev/null +++ b/domains/element.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/playreaver/reaverlauncher", + "owner": { + "username": "playreaver", + "email": "reaver.entertainment@hotmail.com" + }, + "record": { + "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/eli.json b/domains/eli.json new file mode 100644 index 000000000..264a680fc --- /dev/null +++ b/domains/eli.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "elisoreal" + }, + "record": { + "CNAME": "elisoreal.github.io" + } +} diff --git a/domains/elib0.json b/domains/elib0.json new file mode 100644 index 000000000..dfb6c8537 --- /dev/null +++ b/domains/elib0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "elib0", + "email": "elijose.c@gmail.com" + }, + "record": { + "CNAME": "elib0.github.io" + } +} diff --git a/domains/elisaterumi.json b/domains/elisaterumi.json new file mode 100644 index 000000000..6c06c7e53 --- /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" + }, + "record": { + "CNAME": "lisaterumi.github.io" + } +} diff --git a/domains/elite.json b/domains/elite.json new file mode 100644 index 000000000..d1fe4673f --- /dev/null +++ b/domains/elite.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thaihung48", + "email": "contact.hungg+dev@gmail.com" + }, + "record": { + "NS": ["dilbert.ns.cloudflare.com", "fish.ns.cloudflare.com"] + } +} diff --git a/domains/elora.json b/domains/elora.json index 9d1e7025a..38db8517c 100644 --- a/domains/elora.json +++ b/domains/elora.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "elorahub", - "email": "elorahubph@gmail.com" - }, - "record": { - "CNAME": "apex-loadbalancer.netlify.com" - } + "owner": { + "username": "elorahub", + "email": "elorahubph@gmail.com" + }, + "record": { + "CNAME": "apex-loadbalancer.netlify.com" + } } diff --git a/domains/elvis-tran.json b/domains/elvis-tran.json new file mode 100644 index 000000000..4f8015f16 --- /dev/null +++ b/domains/elvis-tran.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "totargaming", + "email": "elvistranhere@gmail.com", + "discord": "elvistran.here" + }, + "record": { + "CNAME": "elvis-tran.vercel.app" + } +} diff --git a/domains/elyazid.json b/domains/elyazid.json new file mode 100644 index 000000000..e5be93cc5 --- /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" + }, + "record": { + "CNAME": "mrelyazid.github.io" + } +} diff --git a/domains/elyesghorbel.json b/domains/elyesghorbel.json new file mode 100644 index 000000000..c57e727aa --- /dev/null +++ b/domains/elyesghorbel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "elyescesar", + "email": "elyesghorbeldev@gmail.com", + "discord": "840182191244705802" + }, + "record": { + "CNAME": "portfolio-git-master-elyescesars-projects.vercel.app" + } +} diff --git a/domains/em550384.vinceale7082.json b/domains/em550384.vinceale7082.json deleted file mode 100644 index 11876b874..000000000 --- a/domains/em550384.vinceale7082.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "CNAME": "return.smtp2go.net" - } -} diff --git a/domains/em697376.yxz.json b/domains/em697376.yxz.json new file mode 100644 index 000000000..82bd4c2ea --- /dev/null +++ b/domains/em697376.yxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "record": { + "CNAME": "return.smtp2go.net" + } +} diff --git a/domains/emamut.json b/domains/emamut.json new file mode 100644 index 000000000..d1b843655 --- /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" + }, + "record": { + "CNAME": "emamut.vercel.app" + } +} diff --git a/domains/emanuel-prado.json b/domains/emanuel-prado.json new file mode 100644 index 000000000..15fd64130 --- /dev/null +++ b/domains/emanuel-prado.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emanu-dev", + "email": "emanuel.prado.dev@gmail.com" + }, + "record": { + "CNAME": "meteoric-swarm.vercel.app" + } +} diff --git a/domains/emojisteg.json b/domains/emojisteg.json new file mode 100644 index 000000000..1e54e92f5 --- /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" + }, + "record": { + "CNAME": "emojistega.pages.dev" + }, + "proxied": true +} diff --git a/domains/emsi.json b/domains/emsi.json new file mode 100644 index 000000000..12695032c --- /dev/null +++ b/domains/emsi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "emsi" + }, + "record": { + "NS": ["braelyn.ns.cloudflare.com", "ed.ns.cloudflare.com"] + } +} diff --git a/domains/encoder.js.json b/domains/encoder.js.json new file mode 100644 index 000000000..404d2c8d6 --- /dev/null +++ b/domains/encoder.js.json @@ -0,0 +1,21 @@ +{ + "description": "Encoder.js", + "repo": "https://github.com/JustStudio7/Encoder", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "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/endless.json b/domains/endless.json new file mode 100644 index 000000000..2ab6bb03e --- /dev/null +++ b/domains/endless.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "endlesssb", + "email": "heisgenburgthecook@gmail.com" + }, + "record": { + "URL": "https://donaldlyon.com" + } +} diff --git a/domains/enginecreations.json b/domains/enginecreations.json new file mode 100644 index 000000000..4efdc3b42 --- /dev/null +++ b/domains/enginecreations.json @@ -0,0 +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" + } +} diff --git a/domains/enlaces.alexxhumilde.json b/domains/enlaces.alexxhumilde.json new file mode 100644 index 000000000..664a71d3b --- /dev/null +++ b/domains/enlaces.alexxhumilde.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ALEXXHUMILDE", + "email": "alexxcrack3@gmail.com" + }, + "record": { + "CNAME": "enlaces-alexxhumilde.netlify.app" + } +} diff --git a/domains/enough.json b/domains/enough.json new file mode 100644 index 000000000..60cff046e --- /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" + }, + "record": { + "CNAME": "enoughsdv.github.io" + } +} diff --git a/domains/enzomazzariol.json b/domains/enzomazzariol.json new file mode 100644 index 000000000..70cfa4472 --- /dev/null +++ b/domains/enzomazzariol.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "enzomazzariol", + "email": "mazzariolenzo@gmail.com" + }, + "record": { + "CNAME": "enzomazzariol.netlify.app" + } +} diff --git a/domains/eojeda.json b/domains/eojeda.json new file mode 100644 index 000000000..4fbc8d0bf --- /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" + }, + "record": { + "CNAME": "eojeda89.github.io" + } +} diff --git a/domains/epic.json b/domains/epic.json index 831aa269e..6841c4266 100644 --- a/domains/epic.json +++ b/domains/epic.json @@ -1,6 +1,5 @@ { "description": "Epic's github", - "repo": "https://github.com/tag-epic", "owner": { "username": "tag-epic", "email": "tagepicuwu@gmail.com" diff --git a/domains/epnq.json b/domains/epnq.json index 2d6b4d5ea..d35fed315 100644 --- a/domains/epnq.json +++ b/domains/epnq.json @@ -1,6 +1,5 @@ { "description": "Personal Site", - "repo": "https://github.com/wensente27", "owner": { "username": "wensente27", "twitter": "pnqe_eli" diff --git a/domains/erdogan.json b/domains/erdogan.json index 5120b3239..99c66a948 100644 --- a/domains/erdogan.json +++ b/domains/erdogan.json @@ -4,6 +4,6 @@ "email": "erdogan.sad@windowslive.com" }, "record": { - "A": ["194.87.246.134"] + "CNAME": "erdogans.space" } } diff --git a/domains/eric-dahl.json b/domains/eric-dahl.json new file mode 100644 index 000000000..01a3d1239 --- /dev/null +++ b/domains/eric-dahl.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Skeyelab" + }, + "record": { + "URL": "https://cv.ericdahl.dev" + } +} diff --git a/domains/eric.json b/domains/eric.json index d316896b6..38f55c8f1 100644 --- a/domains/eric.json +++ b/domains/eric.json @@ -1,6 +1,5 @@ { "description": "Eric's website and blog", - "repo": "https://github.com/yurrriq", "owner": { "username": "yurrriq", "email": "eric@ericb.me" diff --git a/domains/ericksantos.json b/domains/ericksantos.json new file mode 100644 index 000000000..e0c67a535 --- /dev/null +++ b/domains/ericksantos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "erickjonatthan", + "email": "erick.jonathan@ufrpe.br" + }, + "record": { + "CNAME": "portfolio-ejms.vercel.app" + } +} \ No newline at end of file diff --git a/domains/ericlin.json b/domains/ericlin.json new file mode 100644 index 000000000..a12d159cc --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ericthomas.json b/domains/ericthomas.json index 655a0aa7b..b0c204910 100644 --- a/domains/ericthomas.json +++ b/domains/ericthomas.json @@ -1,6 +1,5 @@ { "description": "Eric Thomas' Portfolio", - "repo": "https://github.com/ericthomasca", "owner": { "username": "ericthomasca", "email": "eric@ericthomas.ca" diff --git a/domains/erik.json b/domains/erik.json index a8c435604..3816969fd 100644 --- a/domains/erik.json +++ b/domains/erik.json @@ -1,6 +1,5 @@ { "description": "Erik Personal Website", - "repo": "https://github.com/Erik3010", "owner": { "username": "erik3010", "email": "erikhau3010@gmail.com" diff --git a/domains/erisa.json b/domains/erisa.json index 718677080..e71907dbe 100644 --- a/domains/erisa.json +++ b/domains/erisa.json @@ -1,6 +1,5 @@ { "description": "Blog for Erisa A.", - "repo": "https://github.com/Erisa", "owner": { "username": "Erisa", "email": "seriel@erisa.moe" diff --git a/domains/ermal.json b/domains/ermal.json index 0b14c85c0..fd0e1f54a 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" + "CNAME": "terminalportfolio-2wp.pages.dev" } } diff --git a/domains/erubinyl.json b/domains/erubinyl.json new file mode 100644 index 000000000..b2cd9a616 --- /dev/null +++ b/domains/erubinyl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Erubinyl", + "email": "erubinyl@outlook.com" + }, + "record": { + "CNAME": "erubinyl.github.io" + } +} diff --git a/domains/eshanized.json b/domains/eshanized.json new file mode 100644 index 000000000..e7f9d5de0 --- /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" + }, + "record": { + "CNAME": "eshanized.github.io" + } +} diff --git a/domains/etercore.json b/domains/etercore.json new file mode 100644 index 000000000..a20c97deb --- /dev/null +++ b/domains/etercore.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ramirosanchezaranda", + "email": "etercoredesignweb@gmail.com" + }, + "record": { + "CNAME": "etercore.vercel.app" + } +} diff --git a/domains/eternasuno.json b/domains/eternasuno.json new file mode 100644 index 000000000..1484a2bad --- /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" + }, + "record": { + "CNAME": "eternasuno.github.io" + } +} diff --git a/domains/ethantran.json b/domains/ethantran.json new file mode 100644 index 000000000..37f12fdb7 --- /dev/null +++ b/domains/ethantran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ethanxcode", + "email": "trannguyendanhuy2904@gmail.com" + }, + "record": { + "CNAME": "ethanxcode.vercel.app" + } +} diff --git a/domains/ethereumvd.json b/domains/ethereumvd.json new file mode 100644 index 000000000..8950288b7 --- /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" + }, + "record": { + "CNAME": "ethereumvd.github.io" + } +} diff --git a/domains/euler.json b/domains/euler.json new file mode 100644 index 000000000..c54107065 --- /dev/null +++ b/domains/euler.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Euler-B", + "email": "eduardojosebb.matescience@gmail.com" + }, + "record": { + "CNAME": "euler-b.pages.dev" + } +} diff --git a/domains/eurafa.json b/domains/eurafa.json new file mode 100644 index 000000000..83a2a5b22 --- /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" + }, + "record": { + "CNAME": "eurafa.github.io" + } +} diff --git a/domains/euskindar.json b/domains/euskindar.json new file mode 100644 index 000000000..3f4f0b4df --- /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" + }, + "record": { + "CNAME": "euskindar.github.io" + } +} diff --git a/domains/evansrrr.json b/domains/evansrrr.json new file mode 100644 index 000000000..7ffbfd77f --- /dev/null +++ b/domains/evansrrr.json @@ -0,0 +1,11 @@ +{ + "description": "A personal portfolio website", + "repo": "https://github.com/evansrrr/evans", + "owner": { + "username": "Evansrrr", + "email": "enzoraziore@outlook.com" + }, + "record": { + "CNAME": "evansrrr.netlify.app" + } +} diff --git a/domains/evelyn.json b/domains/evelyn.json new file mode 100644 index 000000000..3d1495ec5 --- /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" + }, + "record": { + "CNAME": "evelyn.finny.info" + } +} diff --git a/domains/every.json b/domains/every.json new file mode 100644 index 000000000..dfbbbed03 --- /dev/null +++ b/domains/every.json @@ -0,0 +1,17 @@ +{ + "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" + }, + "record": { + "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..0b408be5c --- /dev/null +++ b/domains/evesquare.json @@ -0,0 +1,10 @@ +{ + "description": "My portfolio", + "owner": { + "username": "evesquare", + "email": "evesquare@protonmail.ch" + }, + "record": { + "URL": "https://me.evesq.com/" + } +} diff --git a/domains/existing.json b/domains/existing.json new file mode 100644 index 000000000..fe83dde20 --- /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" + }, + "record": { + "CNAME": "existing-dev.github.io" + } +} diff --git a/domains/explooit.json b/domains/explooit.json new file mode 100644 index 000000000..bdf237bc1 --- /dev/null +++ b/domains/explooit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ExPl0iT-29", + "email": "tusharsatpute68@gmail.com" + }, + "record": { + "CNAME": "expl0it-29.github.io" + } +} diff --git a/domains/exrand.json b/domains/exrand.json new file mode 100644 index 000000000..ec9fc953f --- /dev/null +++ b/domains/exrand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "randomyaps", + "email": "totallynota903@gmail.com" + }, + "record": { + "A": ["212.91.26.79"] + } +} 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..60ccac4dc --- /dev/null +++ b/domains/exyxz.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/exyxz/exyxz.github.io", + "owner": { + "username": "exyxz", + "discord": "exyxz" + }, + "record": { + "CNAME": "exyxz.github.io" + } +} \ No newline at end of file diff --git a/domains/eyus00.json b/domains/eyus00.json new file mode 100644 index 000000000..90489ee7d --- /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" + }, + "record": { + "CNAME": "eyus00.github.io" + }, + "proxied": true +} diff --git a/domains/ezaz.json b/domains/ezaz.json new file mode 100644 index 000000000..9eb3849ea --- /dev/null +++ b/domains/ezaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ezaz-ahmed", + "email": "ezaznahmed@gmail.com" + }, + "record": { + "URL": "https://ezaz.dev/" + } +} diff --git a/domains/ezequiel.json b/domains/ezequiel.json new file mode 100644 index 000000000..7e9e574df --- /dev/null +++ b/domains/ezequiel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EzequielBoussard", + "email": "boussardezequiel@gmail.com" + }, + "record": { + "CNAME": "ezequielboussard.pages.dev" + } +} diff --git a/domains/f.jax.json b/domains/f.jax.json new file mode 100644 index 000000000..6f624948e --- /dev/null +++ b/domains/f.jax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jxaq" + }, + "record": { + "A": ["207.211.149.245"] + }, + "proxied": true +} diff --git a/domains/f3ntt.json b/domains/f3ntt.json new file mode 100644 index 000000000..511d889ab --- /dev/null +++ b/domains/f3ntt.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "2nvrs" + }, + "record": { + "CNAME": "f3ntt.vercel.app" + } +} diff --git a/domains/faaiz.json b/domains/faaiz.json new file mode 100644 index 000000000..d18478194 --- /dev/null +++ b/domains/faaiz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "FaaizAhmad6420" + }, + "record": { + "CNAME": "faaizahmad6420.github.io" + } +} diff --git a/domains/faaris.json b/domains/faaris.json new file mode 100644 index 000000000..42f60a334 --- /dev/null +++ b/domains/faaris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mohamed-faaris", + "email": "mohammedfaaris2005@gmail.com" + }, + "record": { + "URL": "https://github.com/Mohamed-faaris" + } +} diff --git a/domains/fabianf4.json b/domains/fabianf4.json new file mode 100644 index 000000000..673d12f27 --- /dev/null +++ b/domains/fabianf4.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fabianf4", + "email": "fabianfa.munoz@gmail.com" + }, + "record": { + "CNAME": "fabianf4.github.io" + } +} diff --git a/domains/fabien.json b/domains/fabien.json new file mode 100644 index 000000000..9240e566d --- /dev/null +++ b/domains/fabien.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fabien-h", + "email": "fabien.huet@gmail.com", + "discord": "fabien-huet" + }, + "record": { + "CNAME": "fabien-is-a-dev.vercel.app" + } +} diff --git a/domains/face-recognition.shockbs.json b/domains/face-recognition.shockbs.json deleted file mode 100644 index 6000dc098..000000000 --- a/domains/face-recognition.shockbs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "shockbs", - "email": "apipherng@gmail.com" - }, - "record": { - "CNAME": "na-west1.surge.sh" - } -} diff --git a/domains/factory.json b/domains/factory.json index ac0f1c0ce..0cfe30168 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" + "CNAME": "is-a-factory.vercel.app" } } diff --git a/domains/facundopidal.json b/domains/facundopidal.json new file mode 100644 index 000000000..a3b6e7c09 --- /dev/null +++ b/domains/facundopidal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "facundopidal", + "email": "facundopidalruizdiaz@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/fa-fifi.json b/domains/fafifi.json similarity index 76% rename from domains/fa-fifi.json rename to domains/fafifi.json index 5870bbcc3..ec41aa57a 100644 --- a/domains/fa-fifi.json +++ b/domains/fafifi.json @@ -11,6 +11,6 @@ "185.199.110.153", "185.199.111.153" ], - "TXT": "google-site-verification=AYbL6PIbwUv4qzq9KxmrjAM9vfCQ0IUNRBX_AeXPfVE" + "TXT": "google-site-verification=_yRLGQg5CylaCRwbj4qjPtzNKurSqbltbCqnli0nhvI" } } diff --git a/domains/fahad.json b/domains/fahad.json new file mode 100644 index 000000000..3baedd0ee --- /dev/null +++ b/domains/fahad.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Portfolio", + "owner": { + "username": "FahadAminShovon", + "email": "shovonfahad991@gmail.com" + }, + "record": { + "CNAME": "market-portfolio.vercel.app" + } +} diff --git a/domains/faisalamin.json b/domains/faisalamin.json new file mode 100644 index 000000000..75e121438 --- /dev/null +++ b/domains/faisalamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "faisalamin001", + "email": "faysalamin001@gmail.com" + }, + "record": { + "URL": "https://faisalamin001.vercel.app/" + } +} diff --git a/domains/fajox.json b/domains/fajox.json index 1fa1414f7..f68f68c53 100644 --- a/domains/fajox.json +++ b/domains/fajox.json @@ -4,11 +4,6 @@ "email": "pybytee@gmail.com" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "A": ["45.91.201.222"] } } diff --git a/domains/fake.json b/domains/fake.json index 91886cc77..8a11ca28d 100644 --- a/domains/fake.json +++ b/domains/fake.json @@ -1,6 +1,5 @@ { "description": "site", - "repo": "https://github.com/fakename131", "owner": { "username": "fakename131", "email": "fake@fake.is-a.dev" diff --git a/domains/fakhridanishmp.json b/domains/fakhridanishmp.json new file mode 100644 index 000000000..b321aa799 --- /dev/null +++ b/domains/fakhridanishmp.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "fakhridanishmp" + }, + "record": { + "CNAME": "fakhridanishmp.github.io" + } +} diff --git a/domains/fan.json b/domains/fan.json new file mode 100644 index 000000000..13a91acef --- /dev/null +++ b/domains/fan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fandyahmd", + "email": "fandyahmadazizi@gmail.com" + }, + "record": { + "CNAME": "fann.pages.dev" + } +} diff --git a/domains/fang.json b/domains/fang.json new file mode 100644 index 000000000..7d7b80cb5 --- /dev/null +++ b/domains/fang.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Fangoling", + "discord": "327905667778347019", + "bluesky": "bsky.app/profile/fangx.ing" + }, + "record": { + "URL": "https://fangx.ing" + } +} diff --git a/domains/farel.json b/domains/farel.json new file mode 100644 index 000000000..6dd8471a3 --- /dev/null +++ b/domains/farel.json @@ -0,0 +1,14 @@ +{ + "description": "Personal development, testing, and deployment", + "repo": "https://github.com/FarelRA/profile", + "owner": { + "username": "FarelRA", + "email": "farelreskiaditiya22@gmail.com" + }, + "record": { + "NS": [ + "adi.ns.cloudflare.com", + "clayton.ns.cloudflare.com" + ] + } +} diff --git a/domains/farkot.json b/domains/farkot.json new file mode 100644 index 000000000..2ecf1b866 --- /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" + }, + "record": { + "CNAME": "farkot09.github.io" + } +} diff --git a/domains/farouk.json b/domains/farouk.json new file mode 100644 index 000000000..bb69e4d6b --- /dev/null +++ b/domains/farouk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "faroukchebaiki", + "email": "farouk.chebaiki@gmail.com" + }, + "record": { + "CNAME": "faroukchebaiki.vercel.app" + } +} diff --git a/domains/farvessafiyudeen.json b/domains/farvessafiyudeen.json index 286ecbe2a..ba92c8d6f 100644 --- a/domains/farvessafiyudeen.json +++ b/domains/farvessafiyudeen.json @@ -1,6 +1,5 @@ { "description": "this is my personal portfolio website", - "repo": "https://github.com/Farves-dev", "owner": { "username": "Farves-dev", "email": "farvessafiyudeen@gmail.com" diff --git a/domains/farzan.json b/domains/farzan.json deleted file mode 100644 index b98bf2cdf..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/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..c0411c20a 100644 --- a/domains/faultywindows.json +++ b/domains/faultywindows.json @@ -5,6 +5,17 @@ "discord": "1041028534690386051" }, "record": { - "A": ["185.199.108.153"] + "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 ff08329f0..935498adb 100644 --- a/domains/fauzi.json +++ b/domains/fauzi.json @@ -6,6 +6,6 @@ "email": "fetruzie2@gmail.com" }, "record": { - "CNAME": "FauziFerdiansyah.github.io" + "CNAME": "fauziferdiansyah.github.io" } } diff --git a/domains/fayasnoushad.json b/domains/fayasnoushad.json index 345e99e0c..b31623ef6 100644 --- a/domains/fayasnoushad.json +++ b/domains/fayasnoushad.json @@ -6,6 +6,6 @@ "twitter": "FayasNoushad" }, "record": { - "CNAME": "FayasNoushad.github.io" + "CNAME": "fayasnoushad.github.io" } } diff --git a/domains/fayaz.json b/domains/fayaz.json new file mode 100644 index 000000000..1ca6749a1 --- /dev/null +++ b/domains/fayaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fayaz07", + "email": "fayazfz07@gmail.com" + }, + "record": { + "CNAME": "fayaz07.github.io" + } +} diff --git a/domains/fbi.json b/domains/fbi.json index 07f537c44..fcd7f5b8a 100644 --- a/domains/fbi.json +++ b/domains/fbi.json @@ -1,6 +1,5 @@ { "description": "2Much4U's Website", - "repo": "https://github.com/2m4u", "owner": { "username": "2M4U", "email": "2m4u@fbi.is-a.dev" diff --git a/domains/fbik.json b/domains/fbik.json new file mode 100644 index 000000000..5bd40b9d9 --- /dev/null +++ b/domains/fbik.json @@ -0,0 +1,11 @@ +{ + "description": "FBIK.'s Personal Website", + "owner": { + "username": "FBIKdot", + "email": "fbik@duck.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + }, + "proxied": true +} diff --git a/domains/fdaniel13s.json b/domains/fdaniel13s.json new file mode 100644 index 000000000..33e3b37c0 --- /dev/null +++ b/domains/fdaniel13s.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fdaniel13s", + "email": "ferndani2718@gmail.com" + }, + "record": { + "CNAME": "fdaniel13s.github.io" + } +} diff --git a/domains/febs.json b/domains/febs.json new file mode 100644 index 000000000..cc98d842e --- /dev/null +++ b/domains/febs.json @@ -0,0 +1,10 @@ +{ + "description": "febs.is-a.dev", + "owner": { + "username": "febriansf", + "email": "febrian.xiii@gmail.com" + }, + "record": { + "CNAME": "www.febss.web.id" + } +} diff --git a/domains/federico.json b/domains/federico.json new file mode 100644 index 000000000..0bae2525d --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/felipe.json b/domains/felipe.json new file mode 100644 index 000000000..93f3d335a --- /dev/null +++ b/domains/felipe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "felipecalderon", + "email": "hola@felipe.bio" + }, + "record": { + "CNAME": "porfoliofelipe.vercel.app" + } +} diff --git a/domains/felipecampos.json b/domains/felipecampos.json new file mode 100644 index 000000000..340136c12 --- /dev/null +++ b/domains/felipecampos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "camposdev", + "email": "felipecamposdev@gmail.com" + }, + "record": { + "URL": "https://felipecampos.vercel.app" + } +} diff --git a/domains/felix.json b/domains/felix.json index 3fc0e4fdb..2f5995702 100644 --- a/domains/felix.json +++ b/domains/felix.json @@ -3,7 +3,6 @@ "username": "github-username", "email": "mail@felixyeung.dev" }, - "repo": "https://github.com/felixyeungdev", "record": { "URL": "https://felixyeung.dev" } diff --git a/domains/felixgao.json b/domains/felixgao.json index 950f29826..a71f4e5ae 100644 --- a/domains/felixgao.json +++ b/domains/felixgao.json @@ -4,7 +4,6 @@ "discord": "725081836874760224", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.edtDo61A7pYaO4MLf3Td4bVHkR5ldkmvFtbYd2Sw87iVFJyWPXoyA5iG286-HSgmddMvd7M4YWkXqLd5VOFmBxIaP8a9_zzDHhoUUQIVPdlwCew1N4fr-pwgOJyLVqw2vlINaF2ZHxP2SXWk0pAFX15x_PvODV9YrbQdbWGwXr2SCgecGRZOgec-cE2K7aCPtuzjpY2iniOt6P-5I5Fji0r7heoCRTwB-4Cut8fjp34qD-EvatXs9evSQ2SVaaHBbu8qe5b9t_56YTkJAwR00ph9XWiwYEfyJID2I9RQ5oh79oLTZO2QYY5U2vzc_EBwlILKZNHqg3LK-HnhCLdXkQ.KvKANPJXfk-sREifDQWxeA.wwsk5S0aIZIQ2tCFEQzO_U5mQx1_ZTYw6OaePsF7zumqY8hO4zznQ94sWHFNaGfK9sxXRFZVBfacV5dxIyr3yI8IiYaTPfNK4QXHJUYUr4k.UaVnWH5AmKo22MGn6_cjBA" }, - "record": { "CNAME": "felixgao.hackclub.app" } diff --git a/domains/fendimohamed.json b/domains/fendimohamed.json new file mode 100644 index 000000000..b726d9c23 --- /dev/null +++ b/domains/fendimohamed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FendiMohamed", + "email": "fendimohamed615@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/fernandocuba.json b/domains/fernandocuba.json new file mode 100644 index 000000000..3aa02f483 --- /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" + }, + "record": { + "CNAME": "fernando-cuba.github.io" + } +} diff --git a/domains/fetico.json b/domains/fetico.json new file mode 100644 index 000000000..9796e4ac2 --- /dev/null +++ b/domains/fetico.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "danielfetico21", + "email": "danielfetico21@gmail.com" + }, + "description": "Personal Website / Portfolio Website", + "record": { + "CNAME": "fetico.ro" + }, + "proxied": true +} diff --git a/domains/files.heyaxo.json b/domains/files.heyaxo.json new file mode 100644 index 000000000..105b83725 --- /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" + }, + "record": { + "CNAME": "axothelion.crabdance.com" + }, + "proxied": true +} diff --git a/domains/files.vornexx.json b/domains/files.vornexx.json index 8c50d2689..7b0b4c4d1 100644 --- a/domains/files.vornexx.json +++ b/domains/files.vornexx.json @@ -1,6 +1,6 @@ { "owner": { - "username": "vornex-gh", + "username": "vornexx", "discord": "1149438819834269856", "twitter": "vornexx_" }, diff --git a/domains/filip.json b/domains/filip.json new file mode 100644 index 000000000..6d8e1b9af --- /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, + "record": { + "CNAME": "vps1.kalny.net", + "CAA": [ + { + "flags": 0, + "tag": "issue", + "value": "letsencrypt.org" + } + ] + } +} diff --git a/domains/filmflu.json b/domains/filmflu.json index f2bd0c6d6..b56148bf1 100644 --- a/domains/filmflu.json +++ b/domains/filmflu.json @@ -6,6 +6,6 @@ "email": "dherediat97@gmail.com" }, "record": { - "URL": "https://dherediat97.github.io/FilmFlu" + "URL": "https://film-flu.web.app/" } } diff --git a/domains/finch.json b/domains/finch.json new file mode 100644 index 000000000..228d1dfd8 --- /dev/null +++ b/domains/finch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "metalespesados", + "email": "bengfm@icloud.com" + }, + "record": { + "CNAME": "ebn.netlify.app" + } +} diff --git a/domains/fireexe.json b/domains/fireexe.json new file mode 100644 index 000000000..fa893fc4a --- /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" + }, + "record": { + "CNAME": "fireemerald1.github.io" + } +} diff --git a/domains/fitrahmunir.json b/domains/fitrahmunir.json index dc4117aa5..6b42d8b94 100644 --- a/domains/fitrahmunir.json +++ b/domains/fitrahmunir.json @@ -1,6 +1,5 @@ { "description": "FitrahFM's .is-a.dev domain", - "repo": "https://github.com/fitrahfm", "owner": { "username": "fitrahfm", "email": "fitrhmnr+is-a-dev@gmail.com" diff --git a/domains/florent.json b/domains/florent.json new file mode 100644 index 000000000..8d6922a6c --- /dev/null +++ b/domains/florent.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/flobsx", + "owner": { + "username": "flobsx", + "email": "flo@bsx.pm" + }, + "record": { + "CNAME": "flobsx.github.io" + }, + "proxied": true +} diff --git a/domains/florianorineveu.json b/domains/florianorineveu.json new file mode 100644 index 000000000..ec75fe04d --- /dev/null +++ b/domains/florianorineveu.json @@ -0,0 +1,10 @@ +{ + "description": "French PHP/Symfony developer", + "owner": { + "username": "florianorineveu", + "email": "hello@fnev.eu" + }, + "record": { + "CNAME": "fnev.eu" + } +} diff --git a/domains/flymeth.json b/domains/flymeth.json index f155dc218..1d7a96a27 100644 --- a/domains/flymeth.json +++ b/domains/flymeth.json @@ -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 new file mode 100644 index 000000000..7de4befb7 --- /dev/null +++ b/domains/fm7qby6i5y25.ttkt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "gv-kys3ep4lrotyqc.dv.googlehosted.com" + } +} diff --git a/domains/fmode.json b/domains/fmode.json new file mode 100644 index 000000000..314c36235 --- /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" + }, + "record": { + "CNAME": "imperfect.onrender.com" + }, + "proxied": false +} diff --git a/domains/fodilfliti.json b/domains/fodilfliti.json new file mode 100644 index 000000000..e831522dc --- /dev/null +++ b/domains/fodilfliti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fodilfliti", + "email": "fodilfliti150@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/fodorzsolt.json b/domains/fodorzsolt.json new file mode 100644 index 000000000..9e3bd30d7 --- /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", + "record": { + "CNAME": "fzsatti.github.io" + } +} diff --git a/domains/fongg.json b/domains/fongg.json new file mode 100644 index 000000000..55405c792 --- /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" + }, + "record": { + "CNAME": "nphng15.github.io" + } +} diff --git a/domains/formuna.json b/domains/formuna.json index 1bec25aee..3083fbe06 100644 --- a/domains/formuna.json +++ b/domains/formuna.json @@ -1,6 +1,6 @@ { "description": "My website for my projects", - "repo": "https://github.com/FormunaGit/FormunaGit.github.io", + "repo": "https://github.com/FormunaGit/formunagit.github.io", "owner": { "username": "FormunaGit", "discord": "754657845563097108" diff --git a/domains/fourjuaneight.json b/domains/fourjuaneight.json index 2cef409e2..4d5fea043 100644 --- a/domains/fourjuaneight.json +++ b/domains/fourjuaneight.json @@ -1,6 +1,5 @@ { "description": "Juan's personal site", - "repo": "https://github.com/fourjuaneight", "owner": { "username": "fourjuaneight", "email": "juan@villela.co" diff --git a/domains/fr0stb1rd.json b/domains/fr0stb1rd.json new file mode 100644 index 000000000..f0303e114 --- /dev/null +++ b/domains/fr0stb1rd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "herobryne0", + "email": "fr0stb1rd@proton.me" + }, + "record": { + "CNAME": "fr0stb1rd.pages.dev" + } +} diff --git a/domains/francescodulio.json b/domains/francescodulio.json new file mode 100644 index 000000000..06fe99b2d --- /dev/null +++ b/domains/francescodulio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adrenocortico", + "email": "francesco.dulio@icloud.com" + }, + "record": { + "CNAME": "adrenocortico.github.io" + } +} diff --git a/domains/francodurand.json b/domains/francodurand.json new file mode 100644 index 000000000..c184c9bdf --- /dev/null +++ b/domains/francodurand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrancoDurand", + "email": "francoduve.25@gmail.com" + }, + "record": { + "CNAME": "devfolio-franco.vercel.app" + } +} diff --git a/domains/francoleon.json b/domains/francoleon.json new file mode 100644 index 000000000..b39017662 --- /dev/null +++ b/domains/francoleon.json @@ -0,0 +1,10 @@ +{ + "description": "Franco Leon, Personal Portfolio", + "owner": { + "username": "francoleon08", + "email": "francoleon284@gmail.com" + }, + "record": { + "CNAME": "francoleondev.vercel.app" + } +} diff --git a/domains/frank-perez-fleita.json b/domains/frank-perez-fleita.json new file mode 100644 index 000000000..86a078f93 --- /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" + }, + "record": { + "URL": "https://frank-perez-fleita.vercel.app" + } +} diff --git a/domains/frankra.json b/domains/frankra.json new file mode 100644 index 000000000..8c78bd7c3 --- /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" + }, + "record": { + "CNAME": "frankra.github.io" + } +} diff --git a/domains/franky.json b/domains/franky.json new file mode 100644 index 000000000..d6dc9e470 --- /dev/null +++ b/domains/franky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "senseikoder", + "email": "molina.frank@gmail.com" + }, + "record": { + "CNAME": "efrank.xyz" + } +} diff --git a/domains/franlo42.json b/domains/franlo42.json new file mode 100644 index 000000000..5117f63b1 --- /dev/null +++ b/domains/franlo42.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "franlo42" + }, + "record": { + "CNAME": "franlo42.github.io" + } +} diff --git a/domains/frapujgal.json b/domains/frapujgal.json new file mode 100644 index 000000000..4fd0eb8b8 --- /dev/null +++ b/domains/frapujgal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "frapujgal", + "email": "fpujol1989@gmail.com" + }, + "record": { + "CNAME": "frapujgal.github.io" + } +} diff --git a/domains/frenchguy.json b/domains/frenchguy.json deleted file mode 100644 index dcbd490bc..000000000 --- a/domains/frenchguy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A dumb kid who likes da computer", - "repo": "https://github.com/nvct-website/nvct-website.github.io", - "owner": { - "username": "Noahvocat (also known as NVCT, Noahvocado or Noahvocados or FrenchGuy or AverageFrenchGuy or AvrgFrnchGuy)", - "discord": "avrgfrnchguy" - }, - "record": { - "CNAME": "nvct-website.github.io" - } -} diff --git a/domains/fryvex.json b/domains/fryvex.json new file mode 100644 index 000000000..6dd81aea1 --- /dev/null +++ b/domains/fryvex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "x1yl", + "discord": "627947214576025610" + }, + "record": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/fsoft72.json b/domains/fsoft72.json new file mode 100644 index 000000000..9fcef0e3f --- /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" + }, + "record": { + "URL": "https://fsoft.dev" + } +} diff --git a/domains/ft.json b/domains/ft.json new file mode 100644 index 000000000..2e4fc534d --- /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" + }, + "record": { + "MX": ["mx01.mail.icloud.com", "mx02.mail.icloud.com"], + "TXT": ["apple-domain=MpJJp8aekdLZ5ynT", "v=spf1 include:icloud.com ~all"] + } +} diff --git a/domains/fucabot.json b/domains/fucabot.json index 56a8f07fb..3ee1c035f 100644 --- a/domains/fucabot.json +++ b/domains/fucabot.json @@ -1,6 +1,5 @@ { "description": "Fuca Bot website", - "repo": "https://github.com/anshtyagi0", "owner": { "username": "anshtyagi0", "email": "tyagiansh175@gmail.com" diff --git a/domains/fuji.json b/domains/fuji.json new file mode 100644 index 000000000..c21200d0d --- /dev/null +++ b/domains/fuji.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fujitime", + "email": "racun1601@email.com" + }, + "record": { + "CNAME": "fuji-halim-rabani.netlify.app" + } +} + diff --git a/domains/fulminatingmoat.json b/domains/fulminatingmoat.json index 403673491..4689b8a56 100644 --- a/domains/fulminatingmoat.json +++ b/domains/fulminatingmoat.json @@ -1,6 +1,5 @@ { "description": "Website", - "repo": "https://github.com/fulminatingmoat", "owner": { "username": "fulminatingmoat", "email": "fulminatingmoat@fulminatingmoat.com", diff --git a/domains/fungaming.joe50097.json b/domains/fungaming.joe50097.json new file mode 100644 index 000000000..50a39e83b --- /dev/null +++ b/domains/fungaming.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "CNAME": "fungaming-discord-server.netlify.app" + } +} diff --git a/domains/funinkina.json b/domains/funinkina.json new file mode 100644 index 000000000..79248d131 --- /dev/null +++ b/domains/funinkina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "funinkina", + "email": "aryankushwaha3101@gmail.com" + }, + "record": { + "CNAME": "funinkina.vercel.app" + } +} diff --git a/domains/furryr.json b/domains/furryr.json new file mode 100644 index 000000000..c9cfe54bc --- /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" + }, + "record": { + "CNAME": "furryr.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..347f07eac --- /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" + }, + "record": { + "CNAME": "fusoras.github.io" + } +} diff --git a/domains/fyiimysf.json b/domains/fyiimysf.json new file mode 100644 index 000000000..d0054474b --- /dev/null +++ b/domains/fyiimysf.json @@ -0,0 +1,10 @@ +{ + "description": "A personal portfolio Site", + "owner": { + "username": "fyiimysf", + "email": "m.y5f.mohammad@gmail.com" + }, + "record": { + "CNAME": "fyiimysf.pages.dev" + } +} diff --git a/domains/fynnlukah.json b/domains/fynnlukah.json new file mode 100644 index 000000000..5652527f3 --- /dev/null +++ b/domains/fynnlukah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fynnlukah", + "discord": "727590288209608824" + }, + "record": { + "CNAME": "fynnlukah.vercel.app" + } +} diff --git a/domains/g.shockbs.json b/domains/g.shockbs.json deleted file mode 100644 index 42008293f..000000000 --- a/domains/g.shockbs.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "shockbs", - "discord": "880084860327313459" - }, - "record": { - "CNAME": "ziplineshockbs.onrender.com" - }, - "proxied": true -} diff --git a/domains/gabek.json b/domains/gabek.json deleted file mode 100644 index faaf0b447..000000000 --- a/domains/gabek.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal Website", - "repo": "https://github.com/gabekgfx/gabekgfx.github.io", - "owner": { - "username": "gabekgfx", - "email": "bussines.gabrys@gmail.com", - "twitter": "gabek_gfx" - }, - "record": { - "CNAME": "gabekgfx.github.io" - } -} diff --git a/domains/gabriel-iturre.json b/domains/gabriel-iturre.json new file mode 100644 index 000000000..be43ac2f8 --- /dev/null +++ b/domains/gabriel-iturre.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GabrielIturreCs", + "email": "gabriel13iturre@gmail.com" + }, + "record": { + "CNAME": "gabrieliturre.netlify.app" + } +} diff --git a/domains/gabrielhuertas.json b/domains/gabrielhuertas.json new file mode 100644 index 000000000..f0a7f4b05 --- /dev/null +++ b/domains/gabrielhuertas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GuDex-Dev", + "email": "gabriel.huertas.3012@gmail.com" + }, + "record": { + "CNAME": "gudex-dev.github.io" + } +} diff --git a/domains/galabra.json b/domains/galabra.json new file mode 100644 index 000000000..aa819d542 --- /dev/null +++ b/domains/galabra.json @@ -0,0 +1,10 @@ +{ + "description": "I'm a dev.", + "owner": { + "username": "galabra", + "email": "galabra.dev@gmail.com" + }, + "record": { + "URL": "https://github.com/galabra" + } +} diff --git a/domains/gallery.areen.json b/domains/gallery.areen.json new file mode 100644 index 000000000..b7a4a7d5b --- /dev/null +++ b/domains/gallery.areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areen-c@proton.me" + }, + "record": { + "CNAME": "gallery-cli.pages.dev" + } +} diff --git a/domains/gamer.json b/domains/gamer.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/gamer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/gameroman.json b/domains/gameroman.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/gameroman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/status.ciaobot.json b/domains/games.json similarity index 100% rename from domains/status.ciaobot.json rename to domains/games.json diff --git a/domains/gamil.json b/domains/gamil.json new file mode 100644 index 000000000..c660477a5 --- /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" + }, + "record": { + "CNAME": "gamilmohamed.github.io" + } +} diff --git a/domains/ganesh-g.json b/domains/ganesh-g.json new file mode 100644 index 000000000..6adc31450 --- /dev/null +++ b/domains/ganesh-g.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ganesh76", + "email": "ganesh.g.cse@gmail.com" + }, + "record": { + "CNAME": "ganesh76.github.io" + } +} diff --git a/domains/ganeswarv.json b/domains/ganeswarv.json new file mode 100644 index 000000000..921e50bee --- /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" + }, + "record": { + "CNAME": "portfolio-tau-mauve-63.vercel.app" + } +} diff --git a/domains/garvit.json b/domains/garvit.json new file mode 100644 index 000000000..6c5a66400 --- /dev/null +++ b/domains/garvit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "garvit-arora", + "email": "garvit.university@gmail.com" + }, + "record": { + "CNAME": "garvit-arora.github.io" + } +} diff --git a/domains/gary.json b/domains/gary.json new file mode 100644 index 000000000..57bd8f6e5 --- /dev/null +++ b/domains/gary.json @@ -0,0 +1,11 @@ +{ + "description": "gary site", + "repo": "https://github.com/Zach11111/garysite", + "owner": { + "username": "zach11111", + "email": "contact@garybot.dev" + }, + "record": { + "CNAME": "garylovesclimbingtreesexploringplacesandchasingbutterflies.garythecatisanadorablefelinealwaysseekingfunandadventure.site" + } +} diff --git a/domains/gauravsingh.json b/domains/gauravsingh.json new file mode 100644 index 000000000..4a6c1ecec --- /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" + }, + "record": { + "CNAME": "knowgaurav.github.io" + } +} diff --git a/domains/gavin.json b/domains/gavin.json index 319390e24..900d0c4a0 100644 --- a/domains/gavin.json +++ b/domains/gavin.json @@ -8,6 +8,6 @@ "discord": "gavin#5968" }, "record": { - "CNAME": "GavinFerdinandChee.github.io" + "CNAME": "gavinferdinandchee.github.io" } } diff --git a/domains/gb.json b/domains/gb.json new file mode 100644 index 000000000..476aafadf --- /dev/null +++ b/domains/gb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gbijwe", + "email": "gaurav.a.bijwe@gmail.com" + }, + "record": { + "CNAME": "my-portfolio-swart-eight.vercel.app" + } +} diff --git a/domains/gc.json b/domains/gc.json new file mode 100644 index 000000000..03f2d4ac1 --- /dev/null +++ b/domains/gc.json @@ -0,0 +1,10 @@ +{ + "description": "gc.is-a.dev", + "owner": { + "username": "gcjbr", + "email": "gcaetanoj@gmail.com" + }, + "record": { + "URL": "https://gcj.io" + } +} diff --git a/domains/gcet.aaqif.json b/domains/gcet.aaqif.json new file mode 100644 index 000000000..4936923ef --- /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" + }, + "record": { + "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..3d32bd250 --- /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" + }, + "record": { + "URL": "https://drive.google.com/drive/folders/1xmqavhZ9VrdE1zK37WbLRKogJiQk499y?usp=drive_link" + } +} diff --git a/domains/generic.json b/domains/generic.json index 7f1b8d263..7109b99d8 100644 --- a/domains/generic.json +++ b/domains/generic.json @@ -1,13 +1,10 @@ { - "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" - }, - - "record": { - "CNAME": "xgeneric.github.io" - } - } - \ No newline at end of file + "owner": { + "username": "xgeneric", + "discord": "1194494419064328296", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pNI-ARrj3J_tLM7pZiRwu1pfmk-Q3DwQqCqxWO02M876wVSFVYCtmViotPvUkXbGD6fungda4WYZn9FbbIFMroM6lyRd5facNKDKej8YSmA4vHrk82WnwOjIOgJZVvG1KBZ-a8-WJaBMTFTnA5HcDdIPKalVi8WuEBZ0aX5oePC_OmMgL8dfo8sc_Yh6iH_cQQsHyqTmEqaFIZdnchM3zqP5SztLpMqx7J-t65lJmSVdvlVIyCOVGGtnSu6p-mqsRqJ0_GTaxZq13p33OlN2H-aHiYLhuUNq1PNAMVMjBHvLwKx53QPYHkWH_49PYOAofaB5Qu4FQehMfMeEDPJY3w.qTLCxzxvVwoOjhI2BRDjcQ.fknkRF_e0XxYo2aGLv16XqzezYSUJAsZEV1IvnuErIAUeo5iEOL_6tjx67aBPV7GaJ-bulYZxzfcm7w8t2fd3dj4YWle3bpexZZ25GhR9RtlbCvQ1MybtvMWt9kMjbIM.AYS1UwZHLOklvLllhjQpLA" + }, + "record": { + "CNAME": "xgeneric.github.io" + } +} diff --git a/domains/generic2.json b/domains/generic2.json new file mode 100644 index 000000000..5c812ab87 --- /dev/null +++ b/domains/generic2.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/genericx.json b/domains/genericx.json new file mode 100644 index 000000000..8bc7b0824 --- /dev/null +++ b/domains/genericx.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/generix.json b/domains/generix.json new file mode 100644 index 000000000..f794a11d2 --- /dev/null +++ b/domains/generix.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/george.json b/domains/george.json index 208f0ae5f..227d3159f 100644 --- a/domains/george.json +++ b/domains/george.json @@ -1,6 +1,5 @@ { "description": "George Aykara's personal developer website", - "repo": "https://github.com/aykarageorge", "owner": { "username": "aykarageorge", "email": "aykarageorge@gmail.com" diff --git a/domains/georgekaran.json b/domains/georgekaran.json index ae89517f2..e60432a72 100644 --- a/domains/georgekaran.json +++ b/domains/georgekaran.json @@ -1,6 +1,5 @@ { "description": "George Karan - Personal Page", - "repo": "https://github.com/georgekaran", "owner": { "username": "georgekaran", "email": "georgekaran12@gmail.com" diff --git a/domains/geraldo.json b/domains/geraldo.json new file mode 100644 index 000000000..6920e72e3 --- /dev/null +++ b/domains/geraldo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gerald0Juni0r", + "email": "geraldo.gj63@gmail.com" + }, + "record": { + "CNAME": "gerald0juni0r.github.io" + } +} diff --git a/domains/gewalee.json b/domains/gewalee.json new file mode 100644 index 000000000..8148fa2f9 --- /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" + }, + "record": { + "CNAME": "gewaleelek.github.io" + } +} diff --git a/domains/gg.json b/domains/gg.json new file mode 100644 index 000000000..09db97347 --- /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" + }, + "record": { + "CNAME": "gaurav-self.vercel.app" + } +} diff --git a/domains/gh.anw.json b/domains/gh.anw.json new file mode 100644 index 000000000..a5b57c1b0 --- /dev/null +++ b/domains/gh.anw.json @@ -0,0 +1,10 @@ +{ + "description": "ANW's (Subhrajit Sain) GitHub", + "owner": { + "username": "SubhrajitSain", + "email": "subhrajitsain34@gmail.com" + }, + "record": { + "URL": "https://github.com/SubhrajitSain" + } +} diff --git a/domains/ghostman.json b/domains/ghostman.json new file mode 100644 index 000000000..4b4e043f7 --- /dev/null +++ b/domains/ghostman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ghostMan-pac", + "email": "asifp3104@gmail.com" + }, + "record": { + "CNAME": "ghostMan-pac.github.io" + } +} diff --git a/domains/ghsearch.json b/domains/ghsearch.json new file mode 100644 index 000000000..38aa8f6d9 --- /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" + }, + "record": { + "CNAME": "herwingx.github.io" + } +} diff --git a/domains/gicorada.json b/domains/gicorada.json index e89abe60a..8af986f80 100644 --- a/domains/gicorada.json +++ b/domains/gicorada.json @@ -1,7 +1,6 @@ { "owner": { "username": "gicorada", - "email": "51818710+gicorada@users.noreply.github.com", "discord": "607903753831448626" }, "record": { diff --git a/domains/gifaldyazka.json b/domains/gifaldyazka.json deleted file mode 100644 index 3493f8b6d..000000000 --- a/domains/gifaldyazka.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Just my personal website", - "repo": "https://github.com/gifaldyazkaa/gifaldyazkaa.github.io", - "owner": { - "username": "gifaldyazkaa", - "email": "official.gifaldy@gmail.com" - }, - "record": { - "CNAME": "gifaldyazkaa.github.io" - } -} diff --git a/domains/gifflet.json b/domains/gifflet.json new file mode 100644 index 000000000..b27fda23f --- /dev/null +++ b/domains/gifflet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gifflet", + "email": "guisousa09@hotmail.com" + }, + "record": { + "CNAME": "gifflet.github.io" + } +} diff --git a/domains/gilang.json b/domains/gilang.json new file mode 100644 index 000000000..e577cdcf8 --- /dev/null +++ b/domains/gilang.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gilangportofolio", + "email": "gilang.portofolioo@gmail.com", + "description": "Personal Portfolio Website" + }, + "record": { + "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..274371c0e --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/gin.json b/domains/gin.json new file mode 100644 index 000000000..f387a7880 --- /dev/null +++ b/domains/gin.json @@ -0,0 +1,10 @@ +{ + "repo": "https://minh0111.github.io/ginny/", + "owner": { + "username": "minh0111", + "email": "kisaver157@gmail.com" + }, + "record": { + "CNAME": "minh0111.github.io" + } +} diff --git a/domains/girigummadi.json b/domains/girigummadi.json index 5b7229283..40d7d3f08 100644 --- a/domains/girigummadi.json +++ b/domains/girigummadi.json @@ -1,6 +1,5 @@ { "description": "My Personal Website", - "repo": "https://github.com/GiriGummadi", "owner": { "username": "GiriGummadi", "email": "girigummadi5656@gmail.com" diff --git a/domains/girl.json b/domains/girl.json new file mode 100644 index 000000000..00ab0224a --- /dev/null +++ b/domains/girl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "CNAME": "ukriu.pages.dev" + } +} diff --git a/domains/gitea.vinceale7082.json b/domains/gitea.vinceale7082.json index 26229f2d0..717a9d3ea 100644 --- a/domains/gitea.vinceale7082.json +++ b/domains/gitea.vinceale7082.json @@ -1,13 +1,11 @@ { - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "A": [ - "5.94.2.75" - ] - } + "owner": { + "username": "VinceAle7082", + "email": "vinceale7082@gmail.com", + "discord": "1078447459900063816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + }, + "record": { + "URL": "https://gitea.vinceale7082.com" + } } diff --git a/domains/githubmilind.json b/domains/githubmilind.json new file mode 100644 index 000000000..33067d1de --- /dev/null +++ b/domains/githubmilind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "githubmilind", + "email": "pansare@gmail.com" + }, + "record": { + "CNAME": "githubmilind.github.io" + } +} diff --git a/domains/glitched-da-kitty-cat.json b/domains/glitched-da-kitty-cat.json new file mode 100644 index 000000000..be310fb86 --- /dev/null +++ b/domains/glitched-da-kitty-cat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GlitchedDaKittyCatSchoolaccount", + "email": "glitcheddacat@gmail.com" + }, + "record": { + "CNAME": "glitched-da-kitty-cat.vercel.app" + } +} diff --git a/domains/glitchish.json b/domains/glitchish.json index 02740359a..07d05dc85 100644 --- a/domains/glitchish.json +++ b/domains/glitchish.json @@ -1,6 +1,5 @@ { "description": "Glitch's .IS-A.DEV domain", - "repo": "https://github.com/glitchish.github.io", "owner": { "username": "glitchish", "email": "gavinjstacey@gmail.com" diff --git a/domains/glmacedo.json b/domains/glmacedo.json new file mode 100644 index 000000000..22c521be6 --- /dev/null +++ b/domains/glmacedo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "glmacedo", + "email": "glmacedo@glmacedo.com" + }, + "record": { + "NS": ["dimitris.ns.cloudflare.com", "kristin.ns.cloudflare.com"] + } +} diff --git a/domains/glowbomb.json b/domains/glowbomb.json new file mode 100644 index 000000000..046b9497b --- /dev/null +++ b/domains/glowbomb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "URL": "https://glowbomb.esb.is-a.dev/" + } +} diff --git a/domains/glutis.json b/domains/glutis.json new file mode 100644 index 000000000..5b4c759d6 --- /dev/null +++ b/domains/glutis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "huyvu15", + "email": "huyv80313@gmail.com" + }, + "record": { + "CNAME": "huyvu15.github.io" + } +} diff --git a/domains/glyphtones.json b/domains/glyphtones.json new file mode 100644 index 000000000..8911738be --- /dev/null +++ b/domains/glyphtones.json @@ -0,0 +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" +} diff --git a/domains/gmanthemarioguy.json b/domains/gmanthemarioguy.json new file mode 100644 index 000000000..ee92eb1a2 --- /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" + }, + "record": { + "CNAME": "gmanthemarioguy.github.io" + } +} diff --git a/domains/goddy.json b/domains/goddy.json new file mode 100644 index 000000000..7735a6c4d --- /dev/null +++ b/domains/goddy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Owinogoddie", + "email": "owinogoddie@gmail.com" + }, + "record": { + "URL": "https://goddy-the-dev.vercel.app" + } +} diff --git a/domains/godkode.json b/domains/godkode.json new file mode 100644 index 000000000..e290738b3 --- /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" + }, + "record": { + "CNAME": "godkode69.github.io" + } +} diff --git a/domains/gokay.json b/domains/gokay.json new file mode 100644 index 000000000..d590b8b4e --- /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" + }, + "record": { + "CNAME": "gokay05.github.io" + } +} diff --git a/domains/gokul.json b/domains/gokul.json deleted file mode 100644 index b8f0b9839..000000000 --- a/domains/gokul.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal Page", - "repo": "https://github.com/gkdskp/gkdskp.github.io", - "owner": { - "username": "gkdskp", - "email": "gokuldskp@gmail.com" - }, - "record": { - "CNAME": "gkdskp.github.io" - } -} diff --git a/domains/golgrax.json b/domains/golgrax.json new file mode 100644 index 000000000..921f89d2f --- /dev/null +++ b/domains/golgrax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Golgrax", + "twitter": "Golgrax" + }, + "record": { + "CNAME": "golgrax.pages.dev" + } +} diff --git a/domains/golvellius32.json b/domains/golvellius32.json new file mode 100644 index 000000000..5c7eb91fd --- /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" + }, + "record": { + "CNAME": "golvellius32.github.io" + } +} diff --git a/domains/gongal.json b/domains/gongal.json new file mode 100644 index 000000000..221748abb --- /dev/null +++ b/domains/gongal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mayankgongal5", + "email": "mayank@clovers.live" + }, + "record": { + "CNAME": "clover-mayank-gongal.vercel.app" + } +} \ No newline at end of file diff --git a/domains/goutam.json b/domains/goutam.json new file mode 100644 index 000000000..dd0dda207 --- /dev/null +++ b/domains/goutam.json @@ -0,0 +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"] + } +} diff --git a/domains/govind.json b/domains/govind.json index 7f49fe86a..7d1c94339 100644 --- a/domains/govind.json +++ b/domains/govind.json @@ -1,6 +1,5 @@ { "description": "Govind's personal developer website", - "repo": "https://github.com/govind-shenoy", "owner": { "username": "govind-shenoy", "email": "govindvshenoy@gmail.com" diff --git a/domains/grapeapplefruit.json b/domains/grapeapplefruit.json deleted file mode 100644 index db8e0dd64..000000000 --- a/domains/grapeapplefruit.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/grapeapplefruit/grapeapplefruit.github.io", - "owner": { - "username": "grapeapplefruit", - "email": "jaxenreiter957@gmail.com" - }, - "record": { - "CNAME": "grapeapplefruit.github.io" - } -} diff --git a/domains/graxya.json b/domains/graxya.json new file mode 100644 index 000000000..b6892ec48 --- /dev/null +++ b/domains/graxya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GratiaManullang03", + "email": "felixmanullang81@gmail.com" + }, + "record": { + "CNAME": "gratiaportofolio.vercel.app" + } +} diff --git a/domains/grazitukozaki.json b/domains/grazitukozaki.json new file mode 100644 index 000000000..236297604 --- /dev/null +++ b/domains/grazitukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GrazielyTukozaki", + "email": "grazitukozaki@gmail.com" + }, + "record": { + "CNAME": "grazi-tukozaki-dev.vercel.app" + } +} diff --git a/domains/griff.json b/domains/griff.json new file mode 100644 index 000000000..faffbe6fa --- /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" + }, + "record": { + "URL": "https://griffen.codes" + } +} diff --git a/domains/gua.json b/domains/gua.json new file mode 100644 index 000000000..2ed932281 --- /dev/null +++ b/domains/gua.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yywbadm", + "discord": "849563829213593612", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.O62knFs7eQLZDKSjl1QUok_vd0iNXQEJVqDjfxRYJyMh6SBBWau4c-34j7mwYJJQCiig5dxl-0cmAQHprDtaCLyPv9ghabRTxNQJQXvF7ma_ron-4DeY9zI5o0hNKYV79qCQpt69FKFBbXvTIPL4grWpYaTVKoFwj2hWl3ZPU__5k3KhkMdZ6TLye-5qL713evGj3JNTYU3JQO4vR-d1VMnfeNHEfTOy1kmhbYuflBMFavXIKuPvqsy1JLg3gd7cD63jdHzG1OJsfUJvuIlTrSvlwA05DXRA0zB2ghUffmneHZfHPY2POWcGWZ2FWO0A1cRngeEjr1p9kTf2KKkauA.FDux7AQQpBXF5CT30_p1zw.vnxZM4mTxTdAb6UZ1Zz5gMJOX0Ody00WHJ8Fkt-IrUzpF_DpwROis9UmFsE9rbwxlD9lCMefKeNoIolm-Fn4DpMcsVy9gIOx4oR3hRw0TLs.XuBHoK_I8bzxVtE8vUBJbg" + }, + "record": { + "CNAME": "yywbadm.github.io" + } +} diff --git a/domains/gui2.json b/domains/gui2.json new file mode 100644 index 000000000..178ed5b51 --- /dev/null +++ b/domains/gui2.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gui2258", + "email": "guidotele@gmail.com" + }, + "record": { + "URL": "https://gui2dev.vercel.app" + } +} diff --git a/domains/guidocaru.json b/domains/guidocaru.json new file mode 100644 index 000000000..6bd97cf20 --- /dev/null +++ b/domains/guidocaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "guidocaru", + "discord": "696554384817127486" + }, + "record": { + "CNAME": "guidocaru.vercel.app" + } +} diff --git a/domains/guillelm.json b/domains/guillelm.json new file mode 100644 index 000000000..204083529 --- /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" + }, + "record": { + "CNAME": "guillelm71.github.io" + }, + "proxied": true +} diff --git a/domains/guillelm71.json b/domains/guillelm71.json new file mode 100644 index 000000000..204083529 --- /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" + }, + "record": { + "CNAME": "guillelm71.github.io" + }, + "proxied": true +} diff --git a/domains/gulsah.json b/domains/gulsah.json new file mode 100644 index 000000000..85c97ea1f --- /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" + }, + "record": { + "CNAME": "gulsah.netlify.app" + } +} diff --git a/domains/gustavo.json b/domains/gustavo.json index ccde054e7..189b181f2 100644 --- a/domains/gustavo.json +++ b/domains/gustavo.json @@ -7,6 +7,6 @@ "twitter": "gustavoarsenio" }, "record": { - "CNAME": "GustavoArsenio.github.io" + "CNAME": "gustavoarsenio.github.io" } } diff --git a/domains/gustyff.json b/domains/gustyff.json new file mode 100644 index 000000000..e001a4fb1 --- /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" + }, + "record": { + "CNAME": "denisz-becskei.github.io" + } +} diff --git a/domains/gusza.json b/domains/gusza.json new file mode 100644 index 000000000..e945d96e5 --- /dev/null +++ b/domains/gusza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gusza110811", + "email": "auguz1108@gmail.com" + }, + "record": { + "CNAME": "gusza110811.github.io" + } +} diff --git a/domains/guvent.json b/domains/guvent.json new file mode 100644 index 000000000..49d231992 --- /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" + }, + "record": { + "CNAME": "guvent.com" + } +} diff --git a/domains/gwly.json b/domains/gwly.json new file mode 100644 index 000000000..4f99b36f7 --- /dev/null +++ b/domains/gwly.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "cyrilguocode" + }, + "record": { + "CNAME": "gwlyweb.pages.dev" + } +} diff --git a/domains/h.jax.json b/domains/h.jax.json new file mode 100644 index 000000000..6f624948e --- /dev/null +++ b/domains/h.jax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jxaq" + }, + "record": { + "A": ["207.211.149.245"] + }, + "proxied": true +} 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/habeel.json b/domains/habeel.json index e1cbb3688..e3cdaa1f4 100644 --- a/domains/habeel.json +++ b/domains/habeel.json @@ -7,6 +7,6 @@ "twitter": "habeel_06" }, "record": { - "CNAME": "Habeel06.github.io" + "CNAME": "habeel06.github.io" } } diff --git a/domains/hackqd.json b/domains/hackqd.json index 6bc511def..41bd4d3e5 100644 --- a/domains/hackqd.json +++ b/domains/hackqd.json @@ -3,8 +3,7 @@ "repo": "https://github.com/hackqd/hackqd.github.io", "owner": { "username": "hackqd", - "email": "hackqdftw@gmail.com", - "twitter": "" + "email": "hackqdftw@gmail.com" }, "record": { "CNAME": "hackqd.github.io" diff --git a/domains/hafeez.json b/domains/hafeez.json new file mode 100644 index 000000000..46548ec37 --- /dev/null +++ b/domains/hafeez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hamid1882", + "email": "hussainhafeez1100@gmail.com", + "discord": "hamid1882" + }, + "record": { + "CNAME": "hafeez-delta.vercel.app" + } +} 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..464b84b14 --- /dev/null +++ b/domains/halink.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "halink0803" + }, + "record": { + "CNAME": "halink0803.github.io" + } +} diff --git a/domains/hamdi.json b/domains/hamdi.json new file mode 100644 index 000000000..8790624d9 --- /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" + }, + "record": { + "CNAME": "hb12devtn.github.io" + } +} diff --git a/domains/hamid.json b/domains/hamid.json new file mode 100644 index 000000000..bf5528299 --- /dev/null +++ b/domains/hamid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hamidsiddiqi2009", + "email": "hamidsiddiqi888@gmail.com" + }, + "record": { + "CNAME": "hamidsiddiqi2009.github.io" + } +} diff --git a/domains/hammed.json b/domains/hammed.json new file mode 100644 index 000000000..91bcf2005 --- /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" + }, + "record": { + "CNAME": "devhammed.github.io" + } +} diff --git a/domains/haohoang.json b/domains/haohoang.json new file mode 100644 index 000000000..547ff761f --- /dev/null +++ b/domains/haohoang.json @@ -0,0 +1,10 @@ +{ + "description": "The blog of Hao Hoang", + "owner": { + "username": "vanhaohoang", + "email": "hoangvanhao99.01@gmail.com" + }, + "record": { + "CNAME": "vanhaohoang.github.io" + } +} diff --git a/domains/haolamnm.json b/domains/haolamnm.json new file mode 100644 index 000000000..4d5004fdc --- /dev/null +++ b/domains/haolamnm.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio redirect for haolamnm", + "owner": { + "username": "haolamnm", + "email": "haolamnm.work@gmail.com" + }, + "record": { + "CNAME": "haolamnm.github.io" + } +} diff --git a/domains/hareesh.json b/domains/hareesh.json new file mode 100644 index 000000000..f6906c0e0 --- /dev/null +++ b/domains/hareesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hareesh108", + "email": "hareeshbhittam@gmail.com" + }, + "record": { + "CNAME": "me-hazel-delta.vercel.app" + } +} diff --git a/domains/harikrishnan.json b/domains/harikrishnan.json index 6a5fab314..25b662c01 100644 --- a/domains/harikrishnan.json +++ b/domains/harikrishnan.json @@ -5,6 +5,6 @@ "email": "harikrishnan6336@gmail.com" }, "record": { - "CNAME": "Harikrishnan6336.github.io" + "CNAME": "harikrishnan6336.github.io" } } diff --git a/domains/haripajjuri.json b/domains/haripajjuri.json new file mode 100644 index 000000000..197b1b280 --- /dev/null +++ b/domains/haripajjuri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "haripajjuri", + "email": "haripajjuri@gmail.com" + }, + "record": { + "CNAME": "haripajjuri.vercel.app" + } +} diff --git a/domains/harish.json b/domains/harish.json new file mode 100644 index 000000000..54b3b46c7 --- /dev/null +++ b/domains/harish.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HarishChandran3304", + "email": "harish3304.work@gmail.com", + "discord": "harish3304" + }, + "record": { + "CNAME": "harish-chandran.vercel.app" + } +} diff --git a/domains/harley.json b/domains/harley.json new file mode 100644 index 000000000..d281afe4e --- /dev/null +++ b/domains/harley.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "weebNeedWeed", + "email": "rivenmle@gmail.com" + }, + "record": { + "CNAME": "weebneedweed.github.io" + } +} diff --git a/domains/harmputman.json b/domains/harmputman.json index eaae85714..e0606e0b5 100644 --- a/domains/harmputman.json +++ b/domains/harmputman.json @@ -1,6 +1,5 @@ { "description": "Harm Putman a.k.a. High Five", - "repo": "https://github.com/harmputman", "owner": { "username": "harmputman", "twitter": "harmputman" diff --git a/domains/haroki.json b/domains/haroki.json new file mode 100644 index 000000000..7351d4e9c --- /dev/null +++ b/domains/haroki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "justhar", + "email": "harzksu@gmail.com" + }, + "record": { + "CNAME": "justhar.github.io" + } +} diff --git a/domains/harrigan.json b/domains/harrigan.json index 32d85b357..b3970f409 100644 --- a/domains/harrigan.json +++ b/domains/harrigan.json @@ -1,6 +1,5 @@ { "description": "Martin Harrigan's Homepage", - "repo": "https://github.com/harrigan", "owner": { "username": "harrigan", "email": "martinharrigan@gmail.com" diff --git a/domains/harshd.json b/domains/harshd.json new file mode 100644 index 000000000..60adeb28e --- /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" + }, + "record": { + "CNAME": "harsh-writes-code.github.io" + } +} diff --git a/domains/harshmali.json b/domains/harshmali.json new file mode 100644 index 000000000..17fc3497a --- /dev/null +++ b/domains/harshmali.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harm04", + "email": "harshmali.dev@gmail.com" + }, + "record": { + "CNAME": "harsh-project-8cafb.web.app" + } +} diff --git a/domains/harshmallick.json b/domains/harshmallick.json new file mode 100644 index 000000000..f7387af72 --- /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" + }, + "record": { + "A": ["76.76.21.21"] + } + } diff --git a/domains/harshnj.json b/domains/harshnj.json index d1c828b19..ebcc0f51a 100644 --- a/domains/harshnj.json +++ b/domains/harshnj.json @@ -1,6 +1,5 @@ { "description": "My Portfolio", - "repo": "https://github.com/HarshNarayanJha", "owner": { "username": "HarshNarayanJha", "email": "harshnj@proton.me" diff --git a/domains/harshshah.json b/domains/harshshah.json new file mode 100644 index 000000000..4df0e9fe3 --- /dev/null +++ b/domains/harshshah.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "harshshah-codes", + "email": "harshshah.dev@gmail.com", + "discord": "889700837520199761" + }, + "record": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/harshvardhan.json b/domains/harshvardhan.json new file mode 100644 index 000000000..9dcda340c --- /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" + }, + "record": { + "CNAME": "harsh-portfolio-liard.vercel.app" + } +} diff --git a/domains/harunabdullah.json b/domains/harunabdullah.json new file mode 100644 index 000000000..f535533c9 --- /dev/null +++ b/domains/harunabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harunabdullahrakin" + }, + + "record": { + "A": ["185.31.40.12"] + } +} diff --git a/domains/hasan.json b/domains/hasan.json new file mode 100644 index 000000000..7f1e31776 --- /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" + }, + "record": { + "CNAME": "bistcuite.github.io" + } +} diff --git a/domains/hasanbithto.json b/domains/hasanbithto.json new file mode 100644 index 000000000..e46df5e40 --- /dev/null +++ b/domains/hasanbithto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "01HB", + "email": "hasanbithto207058@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/hash-cracker.json b/domains/hash-cracker.json new file mode 100644 index 000000000..3c63d2ca7 --- /dev/null +++ b/domains/hash-cracker.json @@ -0,0 +1,11 @@ +{ + "description": "A portfolio website", + "repo": "https://github.com/hash-cracker/hash-cracker.github.io", + "owner": { + "username": "Hash-Cracker", + "email": "tspamiitesh@gmail.com" + }, + "record": { + "CNAME": "hash-cracker.github.io" + } +} diff --git a/domains/hashan.json b/domains/hashan.json new file mode 100644 index 000000000..6e0a5a49b --- /dev/null +++ b/domains/hashan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hashaaan", + "email": "shalithadev@gmail.com" + }, + "record": { + "CNAME": "hashanshalitha.vercel.app" + } +} diff --git a/domains/hastebin.json b/domains/hastebin.json index 8719e4cac..d2c9f3338 100644 --- a/domains/hastebin.json +++ b/domains/hastebin.json @@ -1,7 +1,6 @@ { "owner": { "username": "EducatedSuddenBucket", - "email": "149485703+EducatedSuddenBucket@users.noreply.github.com", "discord": "1167825360151380032" }, "record": { diff --git a/domains/hate.json b/domains/hate.json new file mode 100644 index 000000000..4b150d5ab --- /dev/null +++ b/domains/hate.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "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..40ffa3672 --- /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" + }, + "record": { + "URL": "https://github.com/Mortadelo24/" + }, + "proxied": false +} diff --git a/domains/haydenpc.json b/domains/haydenpc.json new file mode 100644 index 000000000..771561aab --- /dev/null +++ b/domains/haydenpc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "haydenpc", + "email": "haydenpc369@gmail.com" + }, + "record": { + "CNAME": "haydenpc.github.io" + } +} diff --git a/domains/thehcj.json b/domains/hcj.json similarity index 78% rename from domains/thehcj.json rename to domains/hcj.json index 8f312d4f1..4dd713154 100644 --- a/domains/thehcj.json +++ b/domains/hcj.json @@ -4,6 +4,6 @@ "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" }, "record": { - "CNAME": "thehcj.github.io" + "A": ["76.76.21.21"] } } diff --git a/domains/heatblock.json b/domains/heatblock.json new file mode 100644 index 000000000..157684753 --- /dev/null +++ b/domains/heatblock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "URL": "https://heatblock.esb.is-a.dev" + } +} diff --git a/domains/heath.json b/domains/heath.json new file mode 100644 index 000000000..006fbf0a9 --- /dev/null +++ b/domains/heath.json @@ -0,0 +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" + } +} diff --git a/domains/hellokhangtran.json b/domains/hellokhangtran.json new file mode 100644 index 000000000..a32a983b5 --- /dev/null +++ b/domains/hellokhangtran.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for Khang Tran", + "owner": { + "username": "KN2222", + "email": "hellokhangtran03@gmail.com" + }, + "record": { + "CNAME": "hellokhangtran.vercel.app" + }, + "proxied": false +} diff --git a/domains/hemanth.json b/domains/hemanth.json index 442e3087a..d3d8bf4b4 100644 --- a/domains/hemanth.json +++ b/domains/hemanth.json @@ -6,6 +6,6 @@ "email": "hemanthwarrier@gmail.com" }, "record": { - "CNAME": "Hemanthwarrier.github.io" + "CNAME": "hemanthwarrier.github.io" } } diff --git a/domains/hemath.json b/domains/hemath.json new file mode 100644 index 000000000..97e97e053 --- /dev/null +++ b/domains/hemath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "djhemath", + "email": "djhemath@gmail.com" + }, + "record": { + "URL": "https://hemath.dev" + } +} diff --git a/domains/henderythmix.json b/domains/henderythmix.json new file mode 100644 index 000000000..601c86ad4 --- /dev/null +++ b/domains/henderythmix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "henderythmix", + "email": "robertoselleswork@gmail.com" + }, + "record": { + "CNAME": "henderythmix.vercel.app" + } +} diff --git a/domains/hercase.json b/domains/hercase.json new file mode 100644 index 000000000..8c14dc06a --- /dev/null +++ b/domains/hercase.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hercase", + "email": "hercase92@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/hero.json b/domains/hero.json new file mode 100644 index 000000000..3b2001ac5 --- /dev/null +++ b/domains/hero.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heropj", + "email": "pranjalpandey1022003@gmail.com" + }, + "record": { + "URL": "https://heroportfolio-two.vercel.app/portfolio" + } +} diff --git a/domains/herve.json b/domains/herve.json new file mode 100644 index 000000000..3898aae8b --- /dev/null +++ b/domains/herve.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "herveleclerc", + "email": "herve.leclerc@gmail.com" + }, + "record": { + "CNAME": "herveleclerc.github.io" + } +} diff --git a/domains/heterl0.json b/domains/heterl0.json new file mode 100644 index 000000000..56725a340 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/hexaa.json b/domains/hexaa.json index e81502c4d..d62103e70 100644 --- a/domains/hexaa.json +++ b/domains/hexaa.json @@ -1,11 +1,12 @@ { "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": { - "URL": "https://www.hexagonn.my.id" + "NS": ["arch.ns.cloudflare.com", "perla.ns.cloudflare.com"] } } diff --git a/domains/heyaxo.json b/domains/heyaxo.json new file mode 100644 index 000000000..1938285bf --- /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" + }, + "record": { + "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/hgia.json b/domains/hgia.json new file mode 100644 index 000000000..236785df1 --- /dev/null +++ b/domains/hgia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hjia98", + "email": "hoanggia1611@gmail.com" + }, + "record": { + "URL": "https://github.com/hjia98" + } + } diff --git a/domains/hien.json b/domains/hien.json new file mode 100644 index 000000000..c3cf8f11d --- /dev/null +++ b/domains/hien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hienlh", + "email": "hienlh1298@gmail.com" + }, + "record": { + "CNAME": "hienlh-github-io.vercel.app" + } +} diff --git a/domains/hieu.json b/domains/hieu.json new file mode 100644 index 000000000..c08837d31 --- /dev/null +++ b/domains/hieu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hieutm83", + "email": "minhhieu.832k@gmail.com", + "discord": "729364691398164490" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/himashu.json b/domains/himashu.json index bd8feee3a..f939c2724 100644 --- a/domains/himashu.json +++ b/domains/himashu.json @@ -1,6 +1,5 @@ { "description": "About Himanshu Chhatwal", - "repo": "https://github.com/himanshu1221", "owner": { "username": "himanshu1221", "email": "himanshuchhatwal9295@gmail.com", diff --git a/domains/himesh.json b/domains/himesh.json new file mode 100644 index 000000000..2e8e40d0c --- /dev/null +++ b/domains/himesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "himeshparashar", + "email": "himeshparashar424@gmail.com" + }, + "record": { + "CNAME": "site-himeshparashar.netlify.app" + } +} diff --git a/domains/himeshparashar.json b/domains/himeshparashar.json new file mode 100644 index 000000000..2e8e40d0c --- /dev/null +++ b/domains/himeshparashar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "himeshparashar", + "email": "himeshparashar424@gmail.com" + }, + "record": { + "CNAME": "site-himeshparashar.netlify.app" + } +} diff --git a/domains/hironichu.json b/domains/hironichu.json index b5593db33..19ffd8072 100644 --- a/domains/hironichu.json +++ b/domains/hironichu.json @@ -1,6 +1,5 @@ { "description": "Yes I am a developer", - "repo": "https://github.com/hironichu", "owner": { "username": "hironichu", "email": "hironichu@gmail.com" diff --git a/domains/hixtrionix.json b/domains/hixtrionix.json new file mode 100644 index 000000000..f82388558 --- /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" + }, + "record": { + "CNAME": "dev-webpage.web.app" + } +} diff --git a/domains/hjc.json b/domains/hjc.json new file mode 100644 index 000000000..30eb94731 --- /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" + }, + "record": { + "CNAME": "hjc-code.github.io" + }, + "proxied": true +} diff --git a/domains/hjr.json b/domains/hjr.json new file mode 100644 index 000000000..8a65a027b --- /dev/null +++ b/domains/hjr.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for JrHimself.", + "owner": { + "username": "hongjr03", + "email": "me@jrhim.com" + }, + "record": { + "CNAME": "hongjr03-github-io.vercel.app" + } +} diff --git a/domains/hmp.json b/domains/hmp.json new file mode 100644 index 000000000..676e5ada7 --- /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" + }, + "record": { + "CNAME": "blog-jimmy-hoangs-projects.vercel.app" + } +} diff --git a/domains/hoan.json b/domains/hoan.json new file mode 100644 index 000000000..8b28f9a23 --- /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" + }, + "record": { + "CNAME": "hwanngo.github.io" + } +} diff --git a/domains/hoangtran99.json b/domains/hoangtran99.json new file mode 100644 index 000000000..6af9777cb --- /dev/null +++ b/domains/hoangtran99.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio redirect for HoangTran0410", + "owner": { + "username": "hoangtran0410", + "email": "99.hoangtran@gmail.com" + }, + "record": { + "CNAME": "hoangtran0410.github.io" + } +} diff --git a/domains/holdulv.json b/domains/holdulv.json new file mode 100644 index 000000000..39fd9be44 --- /dev/null +++ b/domains/holdulv.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Holdulv-official", + "email": "holdulvlinks@gmail.com", + "discord": "holdulv" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/holedev.json b/domains/holedev.json new file mode 100644 index 000000000..4e1b3e006 --- /dev/null +++ b/domains/holedev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "holedev", + "email": "contact@holedev.com" + }, + "record": { + "URL": "https://github.com/holedev" + } +} diff --git a/domains/holux.json b/domains/holux.json new file mode 100644 index 000000000..6b41b9586 --- /dev/null +++ b/domains/holux.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "holux-design", + "email": "office@holux-design.at" + }, + "record": { + "URL": "https://holux-design.at" + } +} diff --git a/domains/homelab.json b/domains/homelab.json new file mode 100644 index 000000000..143591535 --- /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" + }, + "record": { + "NS": ["deb.ns.cloudflare.com", "sid.ns.cloudflare.com"] + } +} diff --git a/domains/homemadestea58.json b/domains/homemadestea58.json index b99176bcf..fbb0e7dd6 100644 --- a/domains/homemadestea58.json +++ b/domains/homemadestea58.json @@ -1,6 +1,5 @@ { "description": "Add some description", - "repo": "https://github.com/Homemadestea58homemadestea58.github.io", "owner": { "username": "Homemadestea58", "email": "conor.collins+isadev@dbbstu.catholic.edu.au" diff --git a/domains/hongquang.json b/domains/hongquang.json new file mode 100644 index 000000000..10c809630 --- /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" + }, + "record": { + "CNAME": "hquang.github.io" + } +} diff --git a/domains/hongson.json b/domains/hongson.json new file mode 100644 index 000000000..98543bc3e --- /dev/null +++ b/domains/hongson.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/hoojinguyen.json b/domains/hoojinguyen.json new file mode 100644 index 000000000..a1d2c8ded --- /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" + }, + "record": { + "URL": "https://hooji-nguyen.vercel.app/" + } +} diff --git a/domains/horibyte.json b/domains/horibyte.json new file mode 100644 index 000000000..4a1863917 --- /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" + }, + "record": { + "CNAME": "horibyte.github.io" + } +} diff --git a/domains/horu.json b/domains/horu.json index 45f1c8e08..d8e3b4cd6 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": { - "CNAME": "HigherOrderLogic.github.io" + "CNAME": "higherorderlogic.github.io" } } diff --git a/domains/host.xandaah.json b/domains/host.xandaah.json index 7274fa812..91160721f 100644 --- a/domains/host.xandaah.json +++ b/domains/host.xandaah.json @@ -5,6 +5,6 @@ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T1qnVgduBT3ZaAhLEpPEEpb7lbe4ISMDiDt3L2wEAAbg-_gm0F_9uB1DsruJ6418nBUqz9eG_v0DInwIW6CvlbvceaOvBdF0lFElUSYowFWQg7fTBCIw1DkzUxiQubGAqpt6WiVt0sOSBFUnzOoYbxrmPFH3S5LgSzWoNwcqNZyFdz7At-vj3w61pL59zTHy_wdc_nckD1aLeonZIUxzfQKbL4dvdvnhLRlalVdBtE_Co20zUiUa_-JpEqSlfxAmURQSAyjfOCl_Y9ypizv018se-P0d6K8p7Ta2vNpWLsXWVMW3fOStQiiSqZMx-5V1b6FZdlDTMdXIXBywGH7LNQ.xVZdl43zV0s9MvRWdwvv_w.7Su9KEKZiIDVcbcsiehxY8zisq82fUx44Lj0tO6v9em0f65-x5Wi_FFa4yKBfqZxfVpsvpoc8wDHiOAqQPk_3I1XCxRKP07O884FgeLWEmc.7y2cHSgkts0nDvbHecDvCA" }, "record": { - "A": ["32.216.38.220"] + "A": ["32.216.183.113"] } } diff --git a/domains/hotfix.saftec.json b/domains/hotfix.saftec.json new file mode 100644 index 000000000..29f984f33 --- /dev/null +++ b/domains/hotfix.saftec.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Samuraiflamesf", + "email": "Samuraiflamesf@gmail.com" + }, + "record": { + "A": ["152.67.45.142"] + } +} diff --git a/domains/houloude9.json b/domains/houloude9.json new file mode 100644 index 000000000..b812b452c --- /dev/null +++ b/domains/houloude9.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Houloude9IOfficial" + }, + "record": { + "CNAME": "houloude9.pages.dev" + } +} diff --git a/domains/hroot.json b/domains/hroot.json new file mode 100644 index 000000000..d52d1c477 --- /dev/null +++ b/domains/hroot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "H-Root", + "email": "sudo.hroot@gmail.com" + }, + "record": { + "URL": "https://hroot.dev/" + } +} diff --git a/domains/hsn.json b/domains/hsn.json new file mode 100644 index 000000000..8febb53c4 --- /dev/null +++ b/domains/hsn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hasan-bro-coder", + "email": "hasanur23910@gmail.com", + "discord": "hasan894" + }, + "record": { + "CNAME": "hasanur.vercel.app" + } +} diff --git a/domains/htrnguyen.json b/domains/htrnguyen.json new file mode 100644 index 000000000..b5247526a --- /dev/null +++ b/domains/htrnguyen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "htrnguyen", + "email": "hatrongnguyen04@gmail.com" + }, + "record": { + "CNAME": "astro-portfolio-nu-seven.vercel.app" + } +} diff --git a/domains/hub.json b/domains/hub.json new file mode 100644 index 000000000..c5945f2d2 --- /dev/null +++ b/domains/hub.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jOaawd", + "email": "theyneverfwmee@gmail.com" + }, + "record": { + "CNAME": "cqtmfxgu.up.railway.app" + } +} diff --git a/domains/hugo.json b/domains/hugo.json new file mode 100644 index 000000000..b217c90bb --- /dev/null +++ b/domains/hugo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hugorplobo", + "email": "hugorplobo@gmail.com" + }, + "record": { + "CNAME": "hugorplobo.github.io" + } +} diff --git a/domains/hujjat.json b/domains/hujjat.json new file mode 100644 index 000000000..d2a56b113 --- /dev/null +++ b/domains/hujjat.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "hujjatiii" + }, + "record": { + "CNAME": "hujmosaviblog.vercel.app" + } +} diff --git a/domains/hung319.json b/domains/hung319.json new file mode 100644 index 000000000..3cc16e42c --- /dev/null +++ b/domains/hung319.json @@ -0,0 +1,10 @@ +{ + "description": "hung319 profile", + "owner": { + "username": "hung319", + "email": "hungh6122@gmail.com" + }, + "record": { + "CNAME": "hung319.github.io" + } +} diff --git a/domains/hungthai.json b/domains/hungthai.json new file mode 100644 index 000000000..c28594939 --- /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" + }, + "record": { + "CNAME": "hungthai1401.github.io" + } +} diff --git a/domains/huntroid.json b/domains/huntroid.json index a8726b01f..9065b0a7c 100644 --- a/domains/huntroid.json +++ b/domains/huntroid.json @@ -4,6 +4,17 @@ "email": "srimath8@gmail.com" }, "record": { - "A": ["185.199.108.153"] + "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 c5ba12225..f100e0ab5 100644 --- a/domains/huseyin.json +++ b/domains/huseyin.json @@ -6,6 +6,6 @@ "email": "gslicocuk8080@gmail.com" }, "record": { - "CNAME": "Huseyin-Cinar.github.io" + "CNAME": "huseyin-cinar.github.io" } } diff --git a/domains/huu-hoang.json b/domains/huu-hoang.json new file mode 100644 index 000000000..b1df9317d --- /dev/null +++ b/domains/huu-hoang.json @@ -0,0 +1,10 @@ +{ + "domain": "huu-hoang.is-a.dev", + "owner": { + "email": "huuhoag1412@gmail.com", + "username": "Mirai3103" + }, + "record": { + "A": ["103.82.194.100"] + } +} diff --git a/domains/huygd.json b/domains/huygd.json index 43c2b585e..8f3a12618 100644 --- a/domains/huygd.json +++ b/domains/huygd.json @@ -6,9 +6,7 @@ "email": "huynhquochuytkna@gmail.com" }, "record": { - "A": [ - "103.77.240.59" - ], + "A": ["103.77.240.59"], "TXT": [ "google-site-verification=ccDxQ_D0wTltS6cPq0sG76u3vGEPeqFFQEwHOGfXXE8" ] diff --git a/domains/huygmd.json b/domains/huygmd.json index 712ad5b16..2809539b9 100644 --- a/domains/huygmd.json +++ b/domains/huygmd.json @@ -6,9 +6,7 @@ "email": "huynhquochuytkna@gmail.com" }, "record": { - "A": [ - "103.77.240.59" - ], + "A": ["103.77.240.59"], "TXT": [ "google-site-verification=FCWHg1XBnXBvp3xuLqQatJfp0esM4CrZYbPfkhkMzyk" ] diff --git a/domains/hxphsts.json b/domains/hxphsts.json index 17041e652..5789f698f 100644 --- a/domains/hxphsts.json +++ b/domains/hxphsts.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hxphsts", - "email": "hxphsts@kernelx.ai" - }, - "record": { - "URL": "https://hxphsts.kernelx.ai" - } + "owner": { + "username": "hxphsts", + "email": "hxphsts@kernelx.ai" + }, + "record": { + "URL": "https://hxphsts.kernelx.ai" + } } diff --git a/domains/hyr1nk.json b/domains/hyr1nk.json new file mode 100644 index 000000000..692cd6455 --- /dev/null +++ b/domains/hyr1nk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kriemseeley", + "email": "adamseeley112250@gmail.com" + }, + "record": { + "A": ["39.101.73.144"] + } +} diff --git a/domains/_github-pages-challenge-satindar31.satindar.json b/domains/i.json similarity index 71% rename from domains/_github-pages-challenge-satindar31.satindar.json rename to domains/i.json index b443a7f72..a00e3f7d0 100644 --- a/domains/_github-pages-challenge-satindar31.satindar.json +++ b/domains/i.json @@ -4,6 +4,6 @@ "email": "satindar@satindar-is.me" }, "record": { - "TXT": "ccd690fc913ce2ac27c8b9e10132a1" + "URL": "https://satindar.is-a.dev" } } 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 ab236adac..0a487f7c0 100644 --- a/domains/iacoposb.json +++ b/domains/iacoposb.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "IacopoSb", - "discord": "442322290206703628", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Hn0wg5RpzADaJvecwSHu8KpOj-Z_oG7i08e9Z62Give15eiaNXJzezQ9d7noux00NeBYHyoAWfBB5IQ4_XXWy75cLfR2N0A80Lod8D9f6zaWhH6HOcKrauCVolIJBBrzMfTXkWpi-yt74WFtQtfkjlOYren1QB6T_EqyLps5kEJxM08Vubn49m7ckSkNh2bRNJ5NfprPwjrGrHwrdsQqCDiVWn7SL7Dp-Qs-9X1m6nsbyr4shb1BA9X3embdAeL34Yq4GMaIje2tj991jpzq0lW1wGDAZweffw2cJf4xtzC1V0BBWPJDm3ye8eWWrhyOlOmVmK5xqduHk_GJ4jB__g.C50OguoaaY8-9Y9OheaUJw.pc_1FvYpLmydbLCQBa262CG2ROnCFJl-oxfguFWsFv7xDqFr5dRyEZVdEkO8J1UxQFAbO4fm3uEKV1JXDPqdl-6xZF9cpsEkOTZ72Gb2PiY.hYU41zXsd0lJbcQwO59cwA" - }, - - "record": { - "NS": ["marge.ns.cloudflare.com", "dan.ns.cloudflare.com"] - } + "owner": { + "username": "IacopoSb", + "discord": "442322290206703628", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Hn0wg5RpzADaJvecwSHu8KpOj-Z_oG7i08e9Z62Give15eiaNXJzezQ9d7noux00NeBYHyoAWfBB5IQ4_XXWy75cLfR2N0A80Lod8D9f6zaWhH6HOcKrauCVolIJBBrzMfTXkWpi-yt74WFtQtfkjlOYren1QB6T_EqyLps5kEJxM08Vubn49m7ckSkNh2bRNJ5NfprPwjrGrHwrdsQqCDiVWn7SL7Dp-Qs-9X1m6nsbyr4shb1BA9X3embdAeL34Yq4GMaIje2tj991jpzq0lW1wGDAZweffw2cJf4xtzC1V0BBWPJDm3ye8eWWrhyOlOmVmK5xqduHk_GJ4jB__g.C50OguoaaY8-9Y9OheaUJw.pc_1FvYpLmydbLCQBa262CG2ROnCFJl-oxfguFWsFv7xDqFr5dRyEZVdEkO8J1UxQFAbO4fm3uEKV1JXDPqdl-6xZF9cpsEkOTZ72Gb2PiY.hYU41zXsd0lJbcQwO59cwA" + }, + "record": { + "NS": ["marge.ns.cloudflare.com", "dan.ns.cloudflare.com"] + } } diff --git a/domains/iakshay.json b/domains/iakshay.json index 50fe12630..678b11bce 100644 --- a/domains/iakshay.json +++ b/domains/iakshay.json @@ -7,6 +7,6 @@ "twitter": "i_Akshay09" }, "record": { - "CNAME": "Akshay1018.github.io" + "CNAME": "akshay1018.github.io" } } diff --git a/domains/iamdhakrey.json b/domains/iamdhakrey.json new file mode 100644 index 000000000..308119b65 --- /dev/null +++ b/domains/iamdhakrey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamdhakrey", + "email": "dhakreyhrithik@gmail.com" + }, + "record": { + "URL": "https://iamdhakrey.dev" + } +} diff --git a/domains/iamkevinhuang.json b/domains/iamkevinhuang.json new file mode 100644 index 000000000..aa72ec809 --- /dev/null +++ b/domains/iamkevinhuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamkevinhuang", + "email": "kevinjaydenwivano@duck.com" + }, + "record": { + "CNAME": "iamkevinhuang.github.io" + } +} diff --git a/domains/ibrahim.json b/domains/ibrahim.json index 22a80eef1..88f7d2cf4 100644 --- a/domains/ibrahim.json +++ b/domains/ibrahim.json @@ -1,6 +1,5 @@ { "description": "ibrahim's personal developer website.", - "repo": "https://github.com/ibrahimdevx", "owner": { "username": "ibrahimdev", "email": "ibrahimimran@northsixty.com" diff --git a/domains/_discord.satindar.json b/domains/ibru.json similarity index 65% rename from domains/_discord.satindar.json rename to domains/ibru.json index c3bc6a8fa..a00e3f7d0 100644 --- a/domains/_discord.satindar.json +++ b/domains/ibru.json @@ -4,6 +4,6 @@ "email": "satindar@satindar-is.me" }, "record": { - "TXT": "dh=68721fc8451ae56bc306d470eb43f2127e0f9970" + "URL": "https://satindar.is-a.dev" } } diff --git a/domains/ice-head.json b/domains/ice-head.json index 055e1ab12..5da892817 100644 --- a/domains/ice-head.json +++ b/domains/ice-head.json @@ -11,9 +11,7 @@ "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/icvn.json b/domains/icvn.json new file mode 100644 index 000000000..4f0098268 --- /dev/null +++ b/domains/icvn.json @@ -0,0 +1,12 @@ +{ + "description": "A minecraft server", + "repo": "https://github.com/HaiYTB/register", + "owner": { + "username": "HaiYTB", + "email": "haiwt2xbox@gmail.com" + }, + "record": { + "A": ["103.229.52.14"] + }, + "proxied": true +} diff --git a/domains/id.youfoundalpha.json b/domains/id.youfoundalpha.json index 21ec148df..b1ed58052 100644 --- a/domains/id.youfoundalpha.json +++ b/domains/id.youfoundalpha.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "URL": "https://keyoxide.org/8A6CD6545839F1276C7E5E3A92E7DB3078954562" diff --git a/domains/idcesares.json b/domains/idcesares.json new file mode 100644 index 000000000..9410601b4 --- /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" + }, + "record": { + "URL": "https://dcesares.dev" + } +} diff --git a/domains/idriss.json b/domains/idriss.json new file mode 100644 index 000000000..076dfeac9 --- /dev/null +++ b/domains/idriss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AstroDriss", + "email": "drisspennywise@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/iggy.json b/domains/iggy.json new file mode 100644 index 000000000..4ed071d4e --- /dev/null +++ b/domains/iggy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ignazio-castrogiovanni", + "email": "iggy.castrogiovanni@gmail.com" + }, + "record": { + "URL": "https://ignazio-castrogiovanni.com" + } +} diff --git a/domains/igna.json b/domains/igna.json index b162e8664..7b28ab568 100644 --- a/domains/igna.json +++ b/domains/igna.json @@ -1,6 +1,5 @@ { "description": "igna's portfolio website", - "repo": "https://github.com/uhIgnacio", "owner": { "username": "uhIgnacio", "email": "igna@hypixel.one" diff --git a/domains/ijas.json b/domains/ijas.json new file mode 100644 index 000000000..5c9600c27 --- /dev/null +++ b/domains/ijas.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ijasxyz", + "email": "ijas.n.ijas@gmail.com" + }, + "record": { + "CNAME": "ijas.netlify.app" + }, + "proxied": false +} diff --git a/domains/ikram.json b/domains/ikram.json new file mode 100644 index 000000000..84ac66224 --- /dev/null +++ b/domains/ikram.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "record": { + "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..377caf3a1 --- /dev/null +++ b/domains/ikramth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arcfoz", + "email": "ikramtauffiqulh@gmail.com" + }, + "record": { + "CNAME": "ikramth.vercel.app" + } +} diff --git a/domains/ilhadev.json b/domains/ilhadev.json new file mode 100644 index 000000000..4fc124208 --- /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" + }, + "record": { + "URL": "https://github.com/adalbertobrant/adalbertobrant" + } +} diff --git a/domains/ilya.json b/domains/ilya.json new file mode 100644 index 000000000..f083e1348 --- /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" + }, + "record": { + "CNAME": "thatslegit.github.io" + } +} diff --git a/domains/imad.json b/domains/imad.json index 7eec7155d..b0de533e4 100644 --- a/domains/imad.json +++ b/domains/imad.json @@ -1,6 +1,5 @@ { "description": "Imad", - "repo": "https://github.com/imadboy89", "owner": { "username": "imadboy89", "email": "imad.kh@outlook.com" diff --git a/domains/imd.json b/domains/imd.json index 7eec7155d..b0de533e4 100644 --- a/domains/imd.json +++ b/domains/imd.json @@ -1,6 +1,5 @@ { "description": "Imad", - "repo": "https://github.com/imadboy89", "owner": { "username": "imadboy89", "email": "imad.kh@outlook.com" diff --git a/domains/imlauera.json b/domains/imlauera.json deleted file mode 100644 index 494048efe..000000000 --- a/domains/imlauera.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "imlauera", - "email": "suurrend3r@gmail.com" - }, - "record": { - "CNAME": "imlauera.github.io" - } -} diff --git a/domains/imm0nv1nhtv.json b/domains/imm0nv1nhtv.json index 4aff3bd16..c0a6a8d49 100644 --- a/domains/imm0nv1nhtv.json +++ b/domains/imm0nv1nhtv.json @@ -4,6 +4,6 @@ "email": "windows10phamvinh+github@gmail.com" }, "record": { - "CNAME": "imm0nv1nhtv.pages.dev" + "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..f1c81f40d --- /dev/null +++ b/domains/immuaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muazsrc", + "email": "muazsrc17@gmail.com" + }, + "record": { + "CNAME": "muaz.pages.dev" + } +} diff --git a/domains/imnahn.json b/domains/imnahn.json new file mode 100644 index 000000000..af5d48131 --- /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" + }, + "record": { + "CNAME": "myportfolio-2y4.pages.dev" + } +} diff --git a/domains/imnyang.json b/domains/imnyang.json new file mode 100644 index 000000000..9315d3cf6 --- /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" + }, + "record": { + "CNAME": "imnya.ng" + }, + "proxied": false +} diff --git a/domains/imran.json b/domains/imran.json deleted file mode 100644 index 834373c01..000000000 --- a/domains/imran.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "imranmollajoy", - "email": "imranmollajoy@gmail.com" - }, - "record": { - "CNAME": "imranmollajoy.github.io" - } -} diff --git a/domains/imtiazepu.json b/domains/imtiazepu.json new file mode 100644 index 000000000..8c0f407f1 --- /dev/null +++ b/domains/imtiazepu.json @@ -0,0 +1,10 @@ +{ + "description": "Parsonal website for Imtiaz Epu", + "owner": { + "username": "imtiazepu", + "email": "info@imtiazepu.com" + }, + "record": { + "URL": "https://imtiazepu.com" + } +} diff --git a/domains/imxitiz.json b/domains/imxitiz.json new file mode 100644 index 000000000..73bc0bbcc --- /dev/null +++ b/domains/imxitiz.json @@ -0,0 +1,9 @@ +{ + "description": "imxitiz.is-a.dev", + "owner": { + "username": "imxitiz" + }, + "record": { + "CNAME": "imxitiz.github.io" + } +} diff --git a/domains/imy.json b/domains/imy.json index 1c09d2596..f25eb25e3 100644 --- a/domains/imy.json +++ b/domains/imy.json @@ -6,6 +6,6 @@ "email": "omranmansour096@gmail.com" }, "record": { - "CNAME": "IMYdev.github.io" + "CNAME": "imydev.github.io" } } diff --git a/domains/infernum.json b/domains/infernum.json index 127f7edd4..80507194c 100644 --- a/domains/infernum.json +++ b/domains/infernum.json @@ -6,6 +6,6 @@ "email": "infernum1212@gmail.com" }, "record": { - "CNAME": "Infernum1.github.io" + "CNAME": "infernum1.github.io" } } diff --git a/domains/ingo.json b/domains/ingo.json new file mode 100644 index 000000000..05cb1319d --- /dev/null +++ b/domains/ingo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BugHunter2k", + "email": "hello@ingohollmann.de" + }, + "record": { + "URL": "https://ingohollmann.de/" + } +} diff --git a/domains/innocentzero.json b/domains/innocentzero.json new file mode 100644 index 000000000..6d9c93b6b --- /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" + }, + "record": { + "CNAME": "innocentzer0.codeberg.page" + } +} diff --git a/domains/inputly.json b/domains/inputly.json new file mode 100644 index 000000000..db5f3f7c2 --- /dev/null +++ b/domains/inputly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NateNear", + "email": "matternate21@gmail.com" + }, + "record": { + "CNAME": "inputly.vercel.app" + } +} 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/iomiras.json b/domains/iomiras.json new file mode 100644 index 000000000..ce9350855 --- /dev/null +++ b/domains/iomiras.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iomiras", + "email": "miras.shaltayev+isadev@gmail.com" + }, + "record": { + "CNAME": "miras-iomiras.vercel.app" + } +} diff --git a/domains/ios.json b/domains/ios.json new file mode 100644 index 000000000..90c755dab --- /dev/null +++ b/domains/ios.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ahios", + "email": "ahios.dev@gmail.com" + }, + "record": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=AyQrjerFwekkOGG9oZLdBFy4TOAeVAYrHTTm5Q-NZD4", + "MX": [ + "SMTP.GOOGLE.COM" + ] + } + } \ No newline at end of file diff --git a/domains/iostpa.json b/domains/iostpa.json new file mode 100644 index 000000000..e3792dc3a --- /dev/null +++ b/domains/iostpa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "iostpa", + "discord": "716306888492318790", + "twitter": "iostpa" + }, + "record": { + "URL": "https://iostpa.com" + } +} diff --git a/domains/iqat.json b/domains/iqat.json index 43152397d..3e7a24656 100644 --- a/domains/iqat.json +++ b/domains/iqat.json @@ -6,6 +6,6 @@ "email": "iqat476@gmail.com" }, "record": { - "CNAME": "Iqat476.github.io" + "CNAME": "iqat476.github.io" } } diff --git a/domains/ireknazm.json b/domains/ireknazm.json index 56f405d64..deb07a87e 100644 --- a/domains/ireknazm.json +++ b/domains/ireknazm.json @@ -6,6 +6,6 @@ "email": "ireknazmievirek@gmail.com" }, "record": { - "CNAME": "Nagellan.github.io" + "CNAME": "nagellan.github.io" } } diff --git a/domains/isaacrobert33.json b/domains/isaacrobert33.json new file mode 100644 index 000000000..119ce98f3 --- /dev/null +++ b/domains/isaacrobert33.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "isaacrobert33", + "email": "isaacrobertoluwaseun@gmail.com" + }, + "record": { + "CNAME": "isaacrobert-is-adev.vercel.app" + } +} 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..a4aa7aa2d --- /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" + }, + "record": { + "CNAME": "isalvarezdev.github.io" + } +} diff --git a/domains/iscordian.json b/domains/iscordian.json new file mode 100644 index 000000000..bc21f228c --- /dev/null +++ b/domains/iscordian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iscordian", + "email": "iscordian.dev@gmail.com" + }, + "record": { + "CNAME": "iscordian.github.io" + } +} diff --git a/domains/ishbenjamin.json b/domains/ishbenjamin.json new file mode 100644 index 000000000..3697bb66c --- /dev/null +++ b/domains/ishbenjamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aurumdev952", + "email": "benjamugi20072@gmail.com" + }, + "record": { + "CNAME": "benjamin-bay.vercel.app" + } +} diff --git a/domains/ishh.json b/domains/ishh.json index d4ef01652..15a814769 100644 --- a/domains/ishh.json +++ b/domains/ishh.json @@ -6,6 +6,13 @@ "email": "ishh-xd@proton.me" }, "record": { - "CNAME": "ishh-xd.github.io" + "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..c2905f4dd --- /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" + }, + "record": { + "CNAME": "ishwarstuff.vercel.app" + } +} diff --git a/domains/isiraadithya.json b/domains/isiraadithya.json new file mode 100644 index 000000000..5c0a3fec1 --- /dev/null +++ b/domains/isiraadithya.json @@ -0,0 +1,10 @@ +{ + "description": "Isira Adithya's Personal Website", + "owner": { + "username": "isira-adithya", + "email": "me@isiraadithya.com" + }, + "record": { + "URL": "https://isiraadithya.com" + } +} diff --git a/domains/islandboy.json b/domains/islandboy.json new file mode 100644 index 000000000..592dfed3d --- /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" + }, + "record": { + "NS": ["lucy.ns.cloudflare.com", "mario.ns.cloudflare.com"] + } +} diff --git a/domains/israrkhan.json b/domains/israrkhan.json new file mode 100644 index 000000000..e3aa5bc6a --- /dev/null +++ b/domains/israrkhan.json @@ -0,0 +1,10 @@ +{ + "description": "israrkhan.is-a.dev.", + "owner": { + "username": "israrthedev08", + "email": "israrislive@gmail.com" + }, + "record": { + "URL": "https://guns.lol/israr08" + } +} diff --git a/domains/isturiz.json b/domains/isturiz.json new file mode 100644 index 000000000..45d902d79 --- /dev/null +++ b/domains/isturiz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "isturiz" + }, + "record": { + "CNAME": "isturiz.vercel.app" + } +} diff --git a/domains/itsdemongamez.json b/domains/itsdemongamez.json deleted file mode 100644 index 590589f3c..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/itsjhonalex.json b/domains/itsjhonalex.json new file mode 100644 index 000000000..1688235c0 --- /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" + }, + "record": { + "CNAME": "portfolio-dev-itsjhonalexs-projects.vercel.app" + } +} diff --git a/domains/itskh4ng.json b/domains/itskh4ng.json new file mode 100644 index 000000000..616949b1f --- /dev/null +++ b/domains/itskh4ng.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itskh4ng", + "email": "itskh4ng@proton.me" + }, + "record": { + "CNAME": "itskh4ng.pages.dev" + } +} diff --git a/domains/itsmepvr.json b/domains/itsmepvr.json new file mode 100644 index 000000000..612620789 --- /dev/null +++ b/domains/itsmepvr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsmepvr", + "email": "pvrreddy155@gmail.com" + }, + "record": { + "CNAME": "itsmepvr.github.io" + } +} diff --git a/domains/itz-rj-here.json b/domains/itz-rj-here.json new file mode 100644 index 000000000..55b773761 --- /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" + }, + "record": { + "CNAME": "itz-rj-here.github.io" + } +} diff --git a/domains/ivedant.json b/domains/ivedant.json index 19b2ccdf6..929e12961 100644 --- a/domains/ivedant.json +++ b/domains/ivedant.json @@ -6,6 +6,6 @@ "email": "naiduvedant@gmail.com" }, "record": { - "CNAME": "Flash2014.github.io" + "CNAME": "flash2014.github.io" } } diff --git a/domains/ivin-mathew.json b/domains/ivin-mathew.json new file mode 100644 index 000000000..a4d89d1de --- /dev/null +++ b/domains/ivin-mathew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ivin-Mathew", + "email": "ivinmk2410@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/iviswanathreddy.json b/domains/iviswanathreddy.json new file mode 100644 index 000000000..10e4fb1ad --- /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" + }, + "record": { + "CNAME": "iviswanathreddy.github.io" + } +} diff --git a/domains/ivo.json b/domains/ivo.json new file mode 100644 index 000000000..b501621ef --- /dev/null +++ b/domains/ivo.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "owner": { + "username": "ifayala", + "email": "ivo@dailabs.io", + "discord": "lt_smash666" + }, + "record": { + "A": ["34.16.212.81"] + } +} diff --git a/domains/ivy.json b/domains/ivy.json new file mode 100644 index 000000000..e87417f41 --- /dev/null +++ b/domains/ivy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jel9", + "email": "cock@ivy.lat" + }, + "record": { + "URL": "https://ivy.lat" + } +} diff --git a/domains/ixdoggo.json b/domains/ixdoggo.json index 8dd5021b5..d72cbcc8a 100644 --- a/domains/ixdoggo.json +++ b/domains/ixdoggo.json @@ -4,6 +4,9 @@ "email": "xelxtct@gmail.com" }, "record": { - "CNAME": "ixdoggo.pages.dev" - } + "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/izerr.json b/domains/izerr.json new file mode 100644 index 000000000..c54809354 --- /dev/null +++ b/domains/izerr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Explodey-Wolf", + "email": "peanutplays61@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/izumie.json b/domains/izumie.json new file mode 100644 index 000000000..f34fb3a83 --- /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" + }, + "record": { + "CNAME": "mr-izumie.vercel.app" + }, + "proxied": true +} diff --git a/domains/j.json b/domains/j.json index 9469a066e..49769b580 100644 --- a/domains/j.json +++ b/domains/j.json @@ -7,6 +7,13 @@ "discord": "1117482901353812088" }, "record": { - "CNAME": "juststudio7.github.io" + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/jabbdev.json b/domains/jabbdev.json new file mode 100644 index 000000000..2ab0a9d68 --- /dev/null +++ b/domains/jabbdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jabbcode", + "email": "jabbsontouch@gmail.com" + }, + "record": { + "CNAME": "react-frontend-production-0024.up.railway.app" + } +} diff --git a/domains/jabin.json b/domains/jabin.json index c3528d919..bea60285e 100644 --- a/domains/jabin.json +++ b/domains/jabin.json @@ -1,9 +1,11 @@ { "owner": { - "username": "jabinstech", - "email": "jabinstech.net@gmail.com" + "username": "jab11n", + "twitter": "jab11n", + "github": "jab11n", + "email": "iad-contact@rdr.lol" }, "record": { - "CNAME": "jabinstech.github.io" + "CNAME": "jab11n.github.io" } } diff --git a/domains/jacek.json b/domains/jacek.json new file mode 100644 index 000000000..3695d1cbc --- /dev/null +++ b/domains/jacek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smolak", + "email": "jacek.smolak@gmail.com" + }, + "record": { + "CNAME": "jaceksmolak.vercel.app" + } +} diff --git a/domains/jackiso.json b/domains/jackiso.json deleted file mode 100644 index 53dc129c8..000000000 --- a/domains/jackiso.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "JaCkIsO is a Developer!", - "owner": { - "username": "JaCkIsO", - "email": "jackisodev@gmail.com" - }, - "record": { - "CNAME": "JaCkIsO.github.io" - } -} diff --git a/domains/jacques.json b/domains/jacques.json new file mode 100644 index 000000000..fe26b1991 --- /dev/null +++ b/domains/jacques.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jacques2Marais", + "discord": "itsmejackmorris" + }, + "record": { + "CNAME": "portfolio-jade-eta-63.vercel.app" + } +} diff --git a/domains/jaennova.json b/domains/jaennova.json new file mode 100644 index 000000000..82a67b4de --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jai.json b/domains/jai.json new file mode 100644 index 000000000..5417c99a7 --- /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" + }, + "record": { + "CNAME": "jaizxzx.github.io" + } +} diff --git a/domains/jaimezpe.json b/domains/jaimezpe.json new file mode 100644 index 000000000..06d30db48 --- /dev/null +++ b/domains/jaimezpe.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/jaimezpe/bio", + "owner": { + "username": "jaimezpe", + "email": "info@jaimezpe.com" + }, + "record": { + "CNAME": "jaimezpe.com" + } +} diff --git a/domains/jakakordez.json b/domains/jakakordez.json new file mode 100644 index 000000000..2e639d482 --- /dev/null +++ b/domains/jakakordez.json @@ -0,0 +1,10 @@ +{ + "description": "jakakordez.is-a.dev", + "owner": { + "username": "jakakordez", + "email": "jaka.kordez@gmail.com" + }, + "record": { + "URL": "https://github.com/jakakordez" + } +} diff --git a/domains/jake.json b/domains/jake.json index 2e5c97792..e0f07046a 100644 --- a/domains/jake.json +++ b/domains/jake.json @@ -1,7 +1,6 @@ { "owner": { - "username": "xzrci", - "email": "" + "username": "xzrci" }, "record": { "CNAME": "xzrci.vercel.app" diff --git a/domains/jakehe.json b/domains/jakehe.json index 4691f032e..bb611cbac 100644 --- a/domains/jakehe.json +++ b/domains/jakehe.json @@ -1,12 +1,11 @@ { "description": "Jake He's Portfolio", - "repo": "https://github.com/Jakethebest1238/Jakes-Portfolio", "owner": { - "username": "Jakethebest1238", + "username": "jakehe1226", "email": "jakehe1226@gmail.com", "twitter": "jakethebest1238" }, "record": { - "CNAME": "Jakethebest1238.github.io" + "CNAME": "jakehe1226.github.io" } } diff --git a/domains/jal.json b/domains/jal.json new file mode 100644 index 000000000..4acf4a0cb --- /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" + }, + "record": { + "CNAME": "jal-patel.vercel.app" + } +} diff --git a/domains/jalaj.json b/domains/jalaj.json index bb7e2777c..2f890ab41 100644 --- a/domains/jalaj.json +++ b/domains/jalaj.json @@ -1,11 +1,8 @@ { "description": "Jalaj's Portfolio", - "repo": "https://github.com/jalajcodes/jalaj", - "owner": { "username": "jalajcodes", - "twitter": "jalajcodes" }, "record": { diff --git a/domains/james-wiseman.json b/domains/james-wiseman.json new file mode 100644 index 000000000..973df57b8 --- /dev/null +++ b/domains/james-wiseman.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site for James Wiseman", + "owner": { + "username": "jamesrobertwiseman", + "email": "hello@jameswiseman.me" + }, + "record": { + "CNAME": "jameswiseman.me" + }, + "proxied": true +} diff --git a/domains/james.json b/domains/james.json new file mode 100644 index 000000000..d5da97ed4 --- /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" + }, + "record": { + "URL": "https://j-h.ai" + }, + "proxied": false +} diff --git a/domains/jameshartley.json b/domains/jameshartley.json new file mode 100644 index 000000000..83aae3a5e --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jamestheflash.json b/domains/jamestheflash.json new file mode 100644 index 000000000..385f50821 --- /dev/null +++ b/domains/jamestheflash.json @@ -0,0 +1,11 @@ +{ + "description": "Wheel of fortune", + "repo": "https://github.com/JamesTheFlash22/JamesTheFlash22.github.io", + "owner": { + "username": "JamesTheFlash", + "email": "me@jamestheflash22.is-a.dev" + }, + "record": { + "CNAME": "jamestheflash22.github.io" + } +} diff --git a/domains/jamied132.json b/domains/jamied132.json index 4b9bd674b..3bcae162a 100644 --- a/domains/jamied132.json +++ b/domains/jamied132.json @@ -1,6 +1,5 @@ { "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" diff --git a/domains/jan.json b/domains/jan.json new file mode 100644 index 000000000..8f9eb0dfc --- /dev/null +++ b/domains/jan.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Dev Website", + "owner": { + "username": "jpgreth", + "email": "github@greth.me" + }, + "record": { + "CNAME": "greth.dev" + } +} diff --git a/domains/janith.json b/domains/janith.json new file mode 100644 index 000000000..92cf35b54 --- /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" + }, + "record": { + "CNAME": "janithpm.github.io" + } +} diff --git a/domains/janvier.json b/domains/janvier.json new file mode 100644 index 000000000..b0686f5de --- /dev/null +++ b/domains/janvier.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jenzzly", + "email": "jenzzly@gmail.com" + }, + "record": { + "URL": "https://jenzzly.github.io/systems/" + } +} diff --git a/domains/jar.json b/domains/jar.json new file mode 100644 index 000000000..beb93c667 --- /dev/null +++ b/domains/jar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jartf", + "email": "hi@jar.tf" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/jasa.json b/domains/jasa.json new file mode 100644 index 000000000..1ce6a0739 --- /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" + }, + "record": { + "CNAME": "mrsanjaya.github.io" + } +} diff --git a/domains/jasondevgm.json b/domains/jasondevgm.json new file mode 100644 index 000000000..0a93bae70 --- /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" + }, + "record": { + "CNAME": "jasondevgm.github.io" + } +} diff --git a/domains/jasvindersingh.json b/domains/jasvindersingh.json new file mode 100644 index 000000000..4a0fc40c2 --- /dev/null +++ b/domains/jasvindersingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "singhJasvinder101", + "email": "jasvindersingh3593@gmail.com" + }, + "record": { + "CNAME": "jasvinder-portfolio.netlify.app" + } +} diff --git a/domains/javi.json b/domains/javi.json new file mode 100644 index 000000000..77b29aa62 --- /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" + }, + "record": { + "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..75acdd801 --- /dev/null +++ b/domains/javilopercoder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "javilopercoder", + "email": "javilopercoder@gmail.com" + }, + "record": { + "CNAME": "javilopercoder.github.io" + } +} diff --git a/domains/jawad0501.json b/domains/jawad0501.json new file mode 100644 index 000000000..d3849e9da --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jax.json b/domains/jax.json new file mode 100644 index 000000000..b4cf745c8 --- /dev/null +++ b/domains/jax.json @@ -0,0 +1,12 @@ +{ + "description": "Jackson's Portfolio", + "repo": "https://github.com/jxaq/jxaq.github.io", + "owner": { + "username": "jxaq", + "email": "wild.dives.0x@icloud.com" + }, + "record": { + "TXT": ["v=spf1 -all"], + "A": ["76.76.21.21"] + } +} diff --git a/domains/jayakrishna.json b/domains/jayakrishna.json new file mode 100644 index 000000000..7a40c9b69 --- /dev/null +++ b/domains/jayakrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jayakrishna-g", + "email": "rareone.jk@gmail.com" + }, + "record": { + "CNAME": "jggandha-30911ba21954.herokuapp.com" + } +} diff --git a/domains/jayasurya.json b/domains/jayasurya.json index 3c01fee1e..803aed0ce 100644 --- a/domains/jayasurya.json +++ b/domains/jayasurya.json @@ -3,8 +3,7 @@ "username": "jsuryakt" }, "record": { - "A": [ - "75.2.60.5" - ] - } + "A": ["75.2.60.5"] + }, + "proxied": false } diff --git a/domains/jb.json b/domains/jb.json index 6b3454fee..adc9648b7 100644 --- a/domains/jb.json +++ b/domains/jb.json @@ -6,6 +6,7 @@ "email": "jbcarreon212@gmail.com" }, "record": { - "A": ["35.223.92.119"] - } + "A": ["34.56.187.73"] + }, + "proxied": true } diff --git a/domains/jbmbhs.json b/domains/jbmbhs.json new file mode 100644 index 000000000..d7f73b47f --- /dev/null +++ b/domains/jbmbhs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jbmbhs", + "email": "juan@belmontemarin.com" + }, + "record": { + "URL": "https://www.linkedin.com/in/juan-belmonte-821175112/" + } +} diff --git a/domains/jcarroyos-teaching.json b/domains/jcarroyos-teaching.json new file mode 100644 index 000000000..932d3bcde --- /dev/null +++ b/domains/jcarroyos-teaching.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jcarroyos-teaching", + "email": "jcarroyos@gmail.com" + }, + "record": { + "URL": "https://github.com/jcarroyos-teaching" + } +} diff --git a/domains/jd1.json b/domains/jd1.json new file mode 100644 index 000000000..f1515aa75 --- /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" + }, + "record": { + "CNAME": "jd1.github.io" + } +} diff --git a/domains/jeanclaude.json b/domains/jeanclaude.json new file mode 100644 index 000000000..6ad03b19d --- /dev/null +++ b/domains/jeanclaude.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jeanclaudegeagea", + "email": "jeanclaude.geagea@gmail.com" + }, + "record": { + "CNAME": "jeanclaude-omega.vercel.app" + } +} diff --git a/domains/jeanpierre.json b/domains/jeanpierre.json new file mode 100644 index 000000000..3bfe0ab9e --- /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" + }, + "record": { + "CNAME": "littlemega777-github-io.pages.dev" + } +} diff --git a/domains/jeanrondon.json b/domains/jeanrondon.json new file mode 100644 index 000000000..8d5abe73e --- /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" + }, + "record": { + "CNAME": "jeandv.github.io" + } +} diff --git a/domains/jecoh.json b/domains/jecoh.json new file mode 100644 index 000000000..bd5dd516f --- /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" + }, + "record": { + "CNAME": "jecoh12.github.io" + } +} diff --git a/domains/jeel.json b/domains/jeel.json index f62e903e4..9d17f4fb9 100644 --- a/domains/jeel.json +++ b/domains/jeel.json @@ -1,6 +1,5 @@ { "description": "Jeel's portfolio website", - "repo": "https://github.com/jeelpatel1612", "owner": { "username": "jeelpatel1612", "twitter": "__j_e_e_l__" diff --git a/domains/jeff.json b/domains/jeff.json new file mode 100644 index 000000000..d40c5f7c4 --- /dev/null +++ b/domains/jeff.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "PentSec", + "email": "pentsec.2@protonmail.com" + }, + "record": { + "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/jefino.json b/domains/jefino.json new file mode 100644 index 000000000..a2b3c5f61 --- /dev/null +++ b/domains/jefino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jefino9488", + "email": "jefinojacob9488@gmail.com" + }, + "record": { + "CNAME": "jefino9488.vercel.app" + } +} diff --git a/domains/jeielmiranda.json b/domains/jeielmiranda.json new file mode 100644 index 000000000..0faaba1cb --- /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" + }, + "record": { + "CNAME": "Jeiel0rbit.github.io" + } +} diff --git a/domains/jello.sewt.json b/domains/jello.sewt.json new file mode 100644 index 000000000..c9c51f25e --- /dev/null +++ b/domains/jello.sewt.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "discord": "1049263707177353247" + }, + "record": { + "A": ["37.27.51.34"], + "AAAA": ["2a01:4f9:3081:399c::4"], + "TXT": ["domain-verification=skyexplorewastaken"] + }, + "proxied": false +} diff --git a/domains/jellyfin.creeperita104.json b/domains/jellyfin.creeperita104.json deleted file mode 100644 index 66df526f1..000000000 --- a/domains/jellyfin.creeperita104.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "creeperita09", - "email": "creeperita.09@gmail.com" - }, - "record": { - "CNAME": "icahomesvr2022.freeddns.org" - } -} diff --git a/domains/jemalahmedov.json b/domains/jemalahmedov.json new file mode 100644 index 000000000..25e6a8e7e --- /dev/null +++ b/domains/jemalahmedov.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jimjja", + "email": "jemalja.dev@gmail.com", + "discord": "665635903955533845" + }, + "record": { + "CNAME": "jemalahmedov.vercel.app" + } +} diff --git a/domains/jer.json b/domains/jer.json index b1646e945..bc4ea8f0c 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": "i-jer.github.io" + "URL": "https://www.i-jer.com/" } } diff --git a/domains/jeremiah.json b/domains/jeremiah.json new file mode 100644 index 000000000..e84107fae --- /dev/null +++ b/domains/jeremiah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "1tsJeremiah", + "email": "jmatdesigns@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/1-train-ride-in-germany-is-300-euros.json b/domains/jessiflessi.json similarity index 68% rename from domains/1-train-ride-in-germany-is-300-euros.json rename to domains/jessiflessi.json index e809964fb..ae9fa914d 100644 --- a/domains/1-train-ride-in-germany-is-300-euros.json +++ b/domains/jessiflessi.json @@ -1,12 +1,12 @@ { "owner": { - "username": "Yunexiz", - "discord": "1040303561847881729" + "username": "JesseHoekema", + "email": "jessehoekema@icloud.com" }, "record": { "A": [ - "185.199.109.153", "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..08e152241 --- /dev/null +++ b/domains/jesusaristigueta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jesusaristigueta", + "email": "jesusaristigueta@gmail.com" + }, + "record": { + "CNAME": "jesusaristigueta.pages.dev" + } +} diff --git a/domains/jesusdmedinac.json b/domains/jesusdmedinac.json new file mode 100644 index 000000000..a3b588c94 --- /dev/null +++ b/domains/jesusdmedinac.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jesusdmedinac", + "email": "jesus.daniel.medina.cruz@gmail.com" + }, + "record": { + "CNAME": "jesusdmedinac.github.io" + } +} diff --git a/domains/jesusmarfil.json b/domains/jesusmarfil.json new file mode 100644 index 000000000..bb93cb372 --- /dev/null +++ b/domains/jesusmarfil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JesusMarlor", + "email": "jesuso.marlor@gmail.com" + }, + "record": { + "CNAME": "kripton.xyz" + } +} diff --git a/domains/jesusvaladez.json b/domains/jesusvaladez.json new file mode 100644 index 000000000..084732e6d --- /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" + }, + "record": { + "CNAME": "jesusvaladez.github.io" + } +} diff --git a/domains/jeydin.json b/domains/jeydin.json deleted file mode 100644 index 38aeaf458..000000000 --- a/domains/jeydin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "I like code, but code does not like me", - "repo": "https://github.com/Jeydin/jeydin.github.io", - "owner": { - "username": "Jeydin", - "email": "JeyPham21@gmail.com" - }, - "record": { - "CNAME": "jeydin.github.io" - } -} diff --git a/domains/jeymen.json b/domains/jeymen.json deleted file mode 100644 index 081ebf64c..000000000 --- a/domains/jeymen.json +++ /dev/null @@ -1,18 +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..501c370e2 --- /dev/null +++ b/domains/jfc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juanfranciscocis", + "email": "jfcisnerosg@icloud.com" + }, + "record": { + "CNAME": "portfoliojuanfranciscocisneros.web.app" + } +} \ No newline at end of file diff --git a/domains/jg.json b/domains/jg.json new file mode 100644 index 000000000..7352aa6a7 --- /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" + }, + "record": { + "CNAME": "jonathangeva.ch" + } +} diff --git a/domains/jhw.json b/domains/jhw.json new file mode 100644 index 000000000..67c849a94 --- /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" + }, + "record": { + "CNAME": "jhwohlgemuth.github.io" + } +} diff --git a/domains/jigarbhoye.json b/domains/jigarbhoye.json new file mode 100644 index 000000000..b8a8bc5ef --- /dev/null +++ b/domains/jigarbhoye.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jigarbhoye04", + "discord": "jigx.04", + "email": "jigarbhoye04@gmail.com" + }, + "record": { + "CNAME": "jigarbhoye.vercel.app" + } +} diff --git a/domains/jinso.json b/domains/jinso.json index 1aa37e760..f45ac7272 100644 --- a/domains/jinso.json +++ b/domains/jinso.json @@ -1,6 +1,5 @@ { "description": "Jinso Raj", - "repo": "https://github.com/jinsoraj", "owner": { "username": "jinsoraj", "email": "jinsoraj2000@gmail.com", diff --git a/domains/jitendrasaraf.json b/domains/jitendrasaraf.json new file mode 100644 index 000000000..374319f89 --- /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" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/jmc.json b/domains/jmc.json new file mode 100644 index 000000000..7401c1150 --- /dev/null +++ b/domains/jmc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "josem430", + "email": "jmc300499@gmail.com", + "discord": "josem430" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/jmmille.json b/domains/jmmille.json new file mode 100644 index 000000000..2b21c910b --- /dev/null +++ b/domains/jmmille.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jmmille", + "email": "jmmille@gmail.com" + }, + "record": { + "URL": "https://github.com/jmmille" + } +} diff --git a/domains/jobayedsumon.json b/domains/jobayedsumon.json new file mode 100644 index 000000000..a6c66c0b0 --- /dev/null +++ b/domains/jobayedsumon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jobayedsumon", + "email": "jobayedahmedsumon@gmail.com" + }, + "record": { + "A": ["103.159.73.11"] + } +} diff --git a/domains/joe-dawley.json b/domains/joe-dawley.json index f929c9a51..a51fabb61 100644 --- a/domains/joe-dawley.json +++ b/domains/joe-dawley.json @@ -1,6 +1,5 @@ { "description": "Joe Dawley", - "repo": "https://github.com/jdawley", "owner": { "username": "jdawley", "twitter": "joedawley" diff --git a/domains/joe50097.json b/domains/joe50097.json index 7c9bf8e54..451188731 100644 --- a/domains/joe50097.json +++ b/domains/joe50097.json @@ -4,8 +4,11 @@ "email": "zcell9500@gmail.com" }, "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all", + "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..ac6e56efc --- /dev/null +++ b/domains/joeb.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "joevizcara", + "email": "joevizcara@proton.me" + }, + "record": { + "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/joelst.json b/domains/joelst.json new file mode 100644 index 000000000..0fc708102 --- /dev/null +++ b/domains/joelst.json @@ -0,0 +1,22 @@ +{ + "owner": { + "username": "joestr", + "email": "joelstrasser1@gmail.com" + }, + "record": { + "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/joesbrandt.json b/domains/joesbrandt.json deleted file mode 100644 index 003bd944a..000000000 --- a/domains/joesbrandt.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "joesbrandt", - "owner": { - "username": "joesbrandt", - "email": "joesbrandt@icloud.com" - }, - "record": { - "CNAME": "joesbrandt.github.io" - } -} diff --git a/domains/joey.json b/domains/joey.json new file mode 100644 index 000000000..87cb549ee --- /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" + }, + "record": { + "CNAME": "jlai403.github.io" + } +} diff --git a/domains/johansansebastian.json b/domains/johansansebastian.json index ef590f455..49af64878 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": { - "CNAME": "JohanSanSebastian.github.io" + "CNAME": "johansansebastian.github.io" } } diff --git a/domains/johntena.json b/domains/johntena.json new file mode 100644 index 000000000..0b4823126 --- /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" + }, + "record": { + "URL": "https://johntena.github.io/" + } +} diff --git a/domains/johntran.json b/domains/johntran.json new file mode 100644 index 000000000..1b84d6184 --- /dev/null +++ b/domains/johntran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "johntranz", + "email": "john.tran.engineer@gmail.com" + }, + "record": { + "CNAME": "johntran.vercel.app" + } +} diff --git a/domains/jojiyzo.json b/domains/jojiyzo.json new file mode 100644 index 000000000..651cd8950 --- /dev/null +++ b/domains/jojiyzo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jojipanackal", + "email": "alphaa41@protonmail.com" + }, + "record": { + "CNAME": "jojipanackal.github.io" + } +} diff --git a/domains/jonagoldman.json b/domains/jonagoldman.json new file mode 100644 index 000000000..1bd9f1004 --- /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" + }, + "record": { + "CNAME": "jonagoldman.github.io" + } +} diff --git a/domains/jonathan-russ.json b/domains/jonathan-russ.json new file mode 100644 index 000000000..2ec02dd8d --- /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" + }, + "record": { + "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..96ed1ab64 --- /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" + }, + "record": { + "CNAME": "jonathanbuitragoroncancio.web.app" + } +} diff --git a/domains/jonathangeva.json b/domains/jonathangeva.json new file mode 100644 index 000000000..244af87e6 --- /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" + }, + "record": { + "CNAME": "jonathangeva.ch" + } +} diff --git a/domains/jonathanmoya.json b/domains/jonathanmoya.json new file mode 100644 index 000000000..4a96736b8 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jonestse.json b/domains/jonestse.json new file mode 100644 index 000000000..cd27d31e6 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jong.json b/domains/jong.json new file mode 100644 index 000000000..e70ad4a16 --- /dev/null +++ b/domains/jong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jongo22", + "email": "jingyiong22@gmail.com" + }, + "record": { + "CNAME": "frontend-green-kappa.vercel.app" + } +} diff --git a/domains/jorge-lopz.json b/domains/jorge-lopz.json new file mode 100644 index 000000000..78c0f6c57 --- /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" + }, + "record": { + "CNAME": "jorge-lopz.vercel.app" + } +} diff --git a/domains/jorgelopez.json b/domains/jorgelopez.json new file mode 100644 index 000000000..9c6f17e3e --- /dev/null +++ b/domains/jorgelopez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "j0rg3", + "email": "jorge.lopezvz@gmail.com" + }, + "record": { + "URL": "https://github.com/j0rgel0/" + } +} diff --git a/domains/jose.json b/domains/jose.json new file mode 100644 index 000000000..ef84bcb9e --- /dev/null +++ b/domains/jose.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JMVS", + "email": "jose.veramutka@gmail.com" + }, + "record": { + "CNAME": "veramutka.com.ar" + } +} diff --git a/domains/josedevian.json b/domains/josedevian.json new file mode 100644 index 000000000..28fd7c77e --- /dev/null +++ b/domains/josedevian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "josedevian", + "email": "josedevian@gmail.com" + }, + "record": { + "URL": "https://josedevian.xyz" + } +} diff --git a/domains/josemy.json b/domains/josemy.json new file mode 100644 index 000000000..31a05bfdd --- /dev/null +++ b/domains/josemy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "JosemyDuarte" + }, + "record": { + "CNAME": "josemyduarte.github.io" + } +} diff --git a/domains/josh-ferrell.json b/domains/josh-ferrell.json new file mode 100644 index 000000000..41e93fb6a --- /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" + }, + "record": { + "CNAME": "josh-ferrell.github.io" + } +} diff --git a/domains/josh.json b/domains/josh.json new file mode 100644 index 000000000..3277f997d --- /dev/null +++ b/domains/josh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joshhargreaves", + "email": "me@joshhargreaves.co.uk" + }, + "record": { + "URL": "https://joshhargreaves.co.uk" + } +} diff --git a/domains/joshua-hull.json b/domains/joshua-hull.json new file mode 100644 index 000000000..9c080340d --- /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" + }, + "record": { + "CNAME": "joshua-hull.github.io" + } +} \ No newline at end of file diff --git a/domains/joshuanoeldeke.json b/domains/joshuanoeldeke.json new file mode 100644 index 000000000..4acba9eb0 --- /dev/null +++ b/domains/joshuanoeldeke.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joshuanoeldeke", + "email": "joshua.noeldeke@me.com" + }, + "record": { + "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..6696a8ab7 --- /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" + }, + "record": { + "CNAME": "jlwisedev.github.io" + }, + "proxied": true +} diff --git a/domains/joszxchua.json b/domains/joszxchua.json new file mode 100644 index 000000000..5c7419c0e --- /dev/null +++ b/domains/joszxchua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joszxchua", + "email": "joschuaordonio29@gmail.com" + }, + "record": { + "CNAME": "joszxchua-dev.vercel.app" + } +} diff --git a/domains/joy.json b/domains/joy.json new file mode 100644 index 000000000..9925e538a --- /dev/null +++ b/domains/joy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Harmfulllll", + "email": "harmfulllll114@gmail.com", + "discord": "1007561787257933885" + }, + "record": { + "CNAME": "joy-portfolio-chi.vercel.app" + } +} diff --git a/domains/jpsantistebanq.json b/domains/jpsantistebanq.json new file mode 100644 index 000000000..0d3a32305 --- /dev/null +++ b/domains/jpsantistebanq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jpsantistebanq", + "email": "jpsantq@gmail.com" + }, + "record": { + "CNAME": "jpsantistebanq.github.io" + } +} diff --git a/domains/jqnn.json b/domains/jqnn.json new file mode 100644 index 000000000..95a1cf91a --- /dev/null +++ b/domains/jqnn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jqnn", + "email:": "contact@jqnn.studio" + }, + "record": { + "A": ["144.24.170.49"] + } +} diff --git a/domains/jretamal.json b/domains/jretamal.json new file mode 100644 index 000000000..133a3d4e3 --- /dev/null +++ b/domains/jretamal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jretamal", + "email": "jretamal@gmail.com" + }, + "record": { + "URL": "https://jretamal.cl" + } +} diff --git a/domains/jrmessias.json b/domains/jrmessias.json new file mode 100644 index 000000000..b24dfa200 --- /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" + }, + "record": { + "CNAME": "jrmessias.github.io" + } +} diff --git a/domains/js.json b/domains/js.json index 1b9626783..74716d6de 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"] + "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..b5e66d8cb --- /dev/null +++ b/domains/jsanchez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chuyto", + "email": "jesusanchez221296@gmail.com" + }, + "record": { + "CNAME": "jsanchez-9148b.web.app" + } +} diff --git a/domains/jsthh.json b/domains/jsthh.json new file mode 100644 index 000000000..b8fc9d2ec --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jstn.json b/domains/jstn.json deleted file mode 100644 index e8190d4e7..000000000 --- a/domains/jstn.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Justin's personal website", - "repo": "https://github.com/justinbalaguer/justinbalaguer.github.io", - "owner": { - "username": "justinbalaguer", - "email": "justinbalaguer@pm.me", - "twitter": "ojintoji" - }, - "record": { - "CNAME": "justinbalaguer.github.io" - } -} diff --git a/domains/jt.json b/domains/jt.json new file mode 100644 index 000000000..13802861f --- /dev/null +++ b/domains/jt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cloudcap10", + "email": "jttalasan@live.com" + }, + "record": { + "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..5a8c56788 --- /dev/null +++ b/domains/juan-morales.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Juanmorales1810", + "email": "juan.exequiel.morales@gmail.com", + "discord": "746910653343596574" + }, + "record": { + "CNAME": "juan-morales.vercel.app" + } +} diff --git a/domains/juan-samayoa.json b/domains/juan-samayoa.json new file mode 100644 index 000000000..f9af830b5 --- /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" + }, + "record": { + "CNAME": "juansamayoa.github.io" + }, + "proxied": true +} diff --git a/domains/juanca.json b/domains/juanca.json new file mode 100644 index 000000000..56f2ccddd --- /dev/null +++ b/domains/juanca.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wJuanca", + "email": "juancarlosturcios2001@gmail.com" + }, + "record": { + "CNAME": "juanturcios-github-io.vercel.app" + } +} diff --git a/domains/juancarloslacruz.json b/domains/juancarloslacruz.json new file mode 100644 index 000000000..e2d6850f0 --- /dev/null +++ b/domains/juancarloslacruz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LacruzJSDev", + "discord": "1336068820661567489" + }, + "record": { + "CNAME": "portafolio-weld-three.vercel.app" + } +} diff --git a/domains/juancx.json b/domains/juancx.json new file mode 100644 index 000000000..cdbc51195 --- /dev/null +++ b/domains/juancx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "juancxdev", + "email": "developer.juancx@gmail.com" + }, + "record": { + "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..2c75b4f70 --- /dev/null +++ b/domains/juandev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanPython1", + "email": "kamilo201025@gmail.com" + }, + "record": { + "CNAME": "juanpython1.github.io" + } +} diff --git a/domains/juanespachon.json b/domains/juanespachon.json new file mode 100644 index 000000000..c43e320a9 --- /dev/null +++ b/domains/juanespachon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanesPachon", + "email": "yeroparce1@gmail.com" + }, + "record": { + "CNAME": "juanes-portfolio.vercel.app" + } +} diff --git a/domains/juanhuete.json b/domains/juanhuete.json new file mode 100644 index 000000000..6b36b1e1e --- /dev/null +++ b/domains/juanhuete.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for juanhuete", + "owner": { + "username": "juanjose23", + "email": "jrios9836@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] +} +} \ No newline at end of file diff --git a/domains/juanluserrano.json b/domains/juanluserrano.json new file mode 100644 index 000000000..3c6b41e7c --- /dev/null +++ b/domains/juanluserrano.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "z3nitt", + "email": "juanluserranoleal@gmail.com" + }, + "record": { + "CNAME": "z3nitt.github.io" + } +} diff --git a/domains/juanpabloleonmaya.json b/domains/juanpabloleonmaya.json new file mode 100644 index 000000000..d49b9944a --- /dev/null +++ b/domains/juanpabloleonmaya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juanleon8581", + "email": "juanleon8581@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/juantito.json b/domains/juantito.json new file mode 100644 index 000000000..2c55e7375 --- /dev/null +++ b/domains/juantito.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuanTito", + "email": "JuanTito@gio.in" + }, + "record": { + "URL": "https://github.com/JuanGTito" + } +} diff --git a/domains/juanturcios.json b/domains/juanturcios.json new file mode 100644 index 000000000..606fc96e6 --- /dev/null +++ b/domains/juanturcios.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "wJuanca" + }, + "record": { + "CNAME": "wjuanca.github.io" + } +} diff --git a/domains/jubal.json b/domains/jubal.json new file mode 100644 index 000000000..802ed34b9 --- /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" + }, + "record": { + "CNAME": "jubalslone.github.io" + } +} diff --git a/domains/jules.json b/domains/jules.json new file mode 100644 index 000000000..d0b70b8cb --- /dev/null +++ b/domains/jules.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "not-a-feature", + "email": "contact@juleskreuer.eu" + }, + "record": { + "URL": "https://juleskreuer.eu" + } +} diff --git a/domains/juliano.json b/domains/juliano.json new file mode 100644 index 000000000..255354e83 --- /dev/null +++ b/domains/juliano.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JuSfrei", + "email": "me@jusfrei.dev" + }, + "record": { + "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 new file mode 100644 index 000000000..6b28bb722 --- /dev/null +++ b/domains/julianwe17.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Julianwe17", + "email": "julian.in.hbr@gmail.com", + "discord": "1055740356764901437" + }, + "record": { + "CNAME": "julianwe17.github.io" + } +} diff --git a/domains/julio.json b/domains/julio.json index b8118e0de..ef4447547 100644 --- a/domains/julio.json +++ b/domains/julio.json @@ -1,6 +1,5 @@ { "description": "My work portfolio", - "repo": "https://github.com/thatsquite", "owner": { "username": "thatsquite", "email": "juliocesar.santos@making.com" diff --git a/domains/jumanji.json b/domains/jumanji.json index b3ef5c086..99f81d324 100644 --- a/domains/jumanji.json +++ b/domains/jumanji.json @@ -4,7 +4,7 @@ "email": "madhuchutiya.unhinge650@silomails.com" }, "record": { - "A": ["172.66.47.44", "172.66.44.212"], + "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/justdeveloper.json b/domains/justdeveloper.json index 4313ccf47..799ea5b03 100644 --- a/domains/justdeveloper.json +++ b/domains/justdeveloper.json @@ -13,9 +13,12 @@ "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..a2dd570b7 --- /dev/null +++ b/domains/justdeveloper1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "record": { + "URL": "https://justdeveloper.is-a.dev/" + } +} diff --git a/domains/justdeveloper7.json b/domains/justdeveloper7.json new file mode 100644 index 000000000..a2dd570b7 --- /dev/null +++ b/domains/justdeveloper7.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "record": { + "URL": "https://justdeveloper.is-a.dev/" + } +} diff --git a/domains/juststudio.json b/domains/juststudio.json index 2eeed3689..bb8add587 100644 --- a/domains/juststudio.json +++ b/domains/juststudio.json @@ -17,7 +17,21 @@ "TXT": [ "v=spf1 include:zohomail.eu ~all", "google-site-verification=qUvCromdvfxnS6LXzcxcha5rEsHUzBxl9nZH6sT3Dk4", - "yandex-verification: aac5928d8d57ade9" + "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..68c44d3ee --- /dev/null +++ b/domains/juststudio7.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "record": { + "URL": "https://juststudio.is-a.dev/" + } +} diff --git a/domains/justtrynacode.json b/domains/justtrynacode.json index c47a7c7c5..ad66d827e 100644 --- a/domains/justtrynacode.json +++ b/domains/justtrynacode.json @@ -6,6 +6,6 @@ "discord": "JustTrynaCode#0810" }, "record": { - "CNAME": "JustTrynaCodee.github.io" + "CNAME": "justtrynacodee.github.io" } } diff --git a/domains/justwinstuff.json b/domains/justwinstuff.json new file mode 100644 index 000000000..2ba65cf76 --- /dev/null +++ b/domains/justwinstuff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "enderfoxbg", + "discord": "970380468090437672" + }, + "record": { + "CNAME": "justwinstuff.vercel.app" + } +} diff --git a/domains/jvnsen.json b/domains/jvnsen.json new file mode 100644 index 000000000..5ef55ba4c --- /dev/null +++ b/domains/jvnsen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jvnsen", + "email": "jansenharveyreyes0101@gmail.com" + }, + "record": { + "CNAME": "jvnsen.github.io" + } +} diff --git a/domains/jwaxy.json b/domains/jwaxy.json index f441505b4..7b81d01fd 100644 --- a/domains/jwaxy.json +++ b/domains/jwaxy.json @@ -6,6 +6,6 @@ "email": "me@yxawj.aleeas.com" }, "record": { - "CNAME": "jwaxy.github.io" + "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..a7bef65b3 --- /dev/null +++ b/domains/jwe0.json @@ -0,0 +1,10 @@ +{ + "description": "Forwarding", + "owner": { + "email": "900qxecf7@mozmail.com", + "username": "jwe0" + }, + "record": { + "CNAME": "jwe0.xyz" + } +} diff --git a/domains/jwoj.json b/domains/jwoj.json new file mode 100644 index 000000000..8b6d4afd9 --- /dev/null +++ b/domains/jwoj.json @@ -0,0 +1,10 @@ +{ + "description": "Hydro Online Judge System", + "owner": { + "username": "Evansrrr", + "email": "enzoraziore@outlook.com" + }, + "record": { + "A": ["82.156.38.77"] + } +} diff --git a/domains/jznctt.json b/domains/jznctt.json new file mode 100644 index 000000000..a4f78e30e --- /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" + }, + "record": { + "CNAME": "ncttjz.github.io" + } +} diff --git a/domains/k.json b/domains/k.json index b1091f68c..6f58e46d3 100644 --- a/domains/k.json +++ b/domains/k.json @@ -4,6 +4,6 @@ "discord": "716134528409665586" }, "record": { - "CNAME": "maskduck.pages.dev" + "NS": ["ada.ns.cloudflare.com", "albert.ns.cloudflare.com"] } } diff --git a/domains/kacem.json b/domains/kacem.json index f413e6bad..608e3298e 100644 --- a/domains/kacem.json +++ b/domains/kacem.json @@ -1,6 +1,5 @@ { "description": "Kacem's personal dungeon", - "repo": "https://github.com/LordKacem", "owner": { "username": "Kacem", "email": "Kacem.dev@hotmail.com" diff --git a/domains/kacper.json b/domains/kacper.json new file mode 100644 index 000000000..3e6ba42b3 --- /dev/null +++ b/domains/kacper.json @@ -0,0 +1,10 @@ +{ + "description": "kacper.is-a.dev", + "owner": { + "username": "k4czp3r", + "email": "contact@kacperserewis.net" + }, + "record": { + "CNAME": "kacperserewis.net" + } +} diff --git a/domains/kagchi.json b/domains/kagchi.json index 5adbcc6b0..5a08ac610 100644 --- a/domains/kagchi.json +++ b/domains/kagchi.json @@ -1,6 +1,5 @@ { "description": "KagChi's Personal Website", - "repo": "https://github.com/KagChi", "owner": { "username": "KagChi", "email": "contact@kagchi.my.id" diff --git a/domains/kagurayayoi.json b/domains/kagurayayoi.json new file mode 100644 index 000000000..f47aea9c7 --- /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" + }, + "record": { + "CNAME": "kagurayayoi.top" + } + } \ No newline at end of file diff --git a/domains/kahseng.json b/domains/kahseng.json new file mode 100644 index 000000000..9735bc3ec --- /dev/null +++ b/domains/kahseng.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kahseng-dev", + "email": "kahseng.chew@protonmail.com" + }, + "record": { + "CNAME": "kahseng.pages.dev" + } +} diff --git a/domains/kaivalya.json b/domains/kaivalya.json index 4e85a6b6b..8a3db2036 100644 --- a/domains/kaivalya.json +++ b/domains/kaivalya.json @@ -6,6 +6,6 @@ "email": "kt6819@yahoo.com" }, "record": { - "CNAME": "Kaivalya4.github.io" + "CNAME": "kaivalya4.github.io" } } diff --git a/domains/kajetan.json b/domains/kajetan.json new file mode 100644 index 000000000..79f0f0dd5 --- /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" + }, + "record": { + "CNAME": "kajpio.github.io" + } +} diff --git a/domains/kakureta.ikram.json b/domains/kakureta.ikram.json new file mode 100644 index 000000000..ff29ca1bb --- /dev/null +++ b/domains/kakureta.ikram.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/kalebalebachew.json b/domains/kalebalebachew.json new file mode 100644 index 000000000..937d42423 --- /dev/null +++ b/domains/kalebalebachew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kalebalebachew", + "email": "kalebalebachew4@gmail.com" + }, + "record": { + "URL": "https://kalebalebachew.com" + } +} diff --git a/domains/kanetu.json b/domains/kanetu.json new file mode 100644 index 000000000..4be714044 --- /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" + }, + "record": { + "CNAME": "kanetu.github.io" + } +} diff --git a/domains/kappucino.json b/domains/kappucino.json index 6f690b542..7fd0cb673 100644 --- a/domains/kappucino.json +++ b/domains/kappucino.json @@ -1,7 +1,6 @@ { "owner": { "username": "kappucin", - "email": "132572179+kappucin@users.noreply.github.com", "discord": "853170099392479253" }, "record": { diff --git a/domains/karan.json b/domains/karan.json new file mode 100644 index 000000000..6a04076eb --- /dev/null +++ b/domains/karan.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "balanikaran" + }, + "record": { + "CNAME": "karanbalani.com" + } +} diff --git a/domains/kareem.json b/domains/kareem.json new file mode 100644 index 000000000..fb6592863 --- /dev/null +++ b/domains/kareem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kareem-m", + "email": "kareemmoh1911@gmail.com" + }, + "record": { + "CNAME": "kareemelramady.vercel.app" + } +} diff --git a/domains/karify98.json b/domains/karify98.json new file mode 100644 index 000000000..68a246fbc --- /dev/null +++ b/domains/karify98.json @@ -0,0 +1,12 @@ + +{ + "description": "karify98's website", + "repo": "https://github.com/karify98/karify98.github.io", + "owner": { + "username": "karify98", + "email": "nnnam048@gmail.com" + }, + "record": { + "CNAME": "karify98.github.io" + } +} diff --git a/domains/karl95.json b/domains/karl95.json new file mode 100644 index 000000000..4bd4c0da0 --- /dev/null +++ b/domains/karl95.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Karel95/karldev95", + "owner": { + "username": "Karel95", + "email": "karelh2207@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/kars.json b/domains/kars.json deleted file mode 100644 index 4bd7355f8..000000000 --- a/domains/kars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website.", - "repo": "https://github.com/lean-cc/lean-cc.github.io", - "owner": { - "username": "lean-cc", - "email": "leancc3020@gmail.com" - }, - "record": { - "CNAME": "lean-cc.github.io" - } -} diff --git a/domains/karthikeyanj.json b/domains/karthikeyanj.json new file mode 100644 index 000000000..b4889bc1f --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/kartikshriwas.json b/domains/kartikshriwas.json index 24e5be6b6..6305788fd 100644 --- a/domains/kartikshriwas.json +++ b/domains/kartikshriwas.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "kartikshriwas", - "email": "", - "discord": "756002965323645069", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pJe5J41LBdrD2xDWudBiVp66kIxdQIj60sraae1BOQ-SQ27mGzfBzsGjxzPfvEFSOFZd2sceXvK87x15PvOXRtdYvfUKNAFmt-oxcbfAfSmaiH4YtSFe7re3F5QEDNfYvYH96QsMwHQoj2CP5-5CceqWULYFvkusOL_4ScO8yYYYCRrDCKCJ8nP80wUT2ltwAikLqY6iJTwJvWS1LqiInC1qAn8VfA5-0Z6pgXCL7sMIsLWO-GZKXOqGUE_b5zV8LOgRml_RQgOlCZ306TVpOE2eF7M37nZ3ETbY3OWQo125q43oiisPZGo89sfL3jRxzd4OpaC56sEvEjj5_eXE6w.Bo1EpPh6LJSpWzAWSiqEYA.IHIiJ7JdCyD6CYg9bjHxHuBTJPluhpe2PGzmCR8A9RPmRcCitK4H5bTCXCw1R3qw6gIy2IugE9-Bt5iHulfHLHgPOmeg5xN8SHo5ea-Z7U4.1LJXKyAg2vnLjmnCoxQvGQ" - }, - - "record": { - "CNAME": "kartikshriwas.github.io" - } - } - \ No newline at end of file + "owner": { + "username": "kartikshriwas", + "discord": "756002965323645069", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pJe5J41LBdrD2xDWudBiVp66kIxdQIj60sraae1BOQ-SQ27mGzfBzsGjxzPfvEFSOFZd2sceXvK87x15PvOXRtdYvfUKNAFmt-oxcbfAfSmaiH4YtSFe7re3F5QEDNfYvYH96QsMwHQoj2CP5-5CceqWULYFvkusOL_4ScO8yYYYCRrDCKCJ8nP80wUT2ltwAikLqY6iJTwJvWS1LqiInC1qAn8VfA5-0Z6pgXCL7sMIsLWO-GZKXOqGUE_b5zV8LOgRml_RQgOlCZ306TVpOE2eF7M37nZ3ETbY3OWQo125q43oiisPZGo89sfL3jRxzd4OpaC56sEvEjj5_eXE6w.Bo1EpPh6LJSpWzAWSiqEYA.IHIiJ7JdCyD6CYg9bjHxHuBTJPluhpe2PGzmCR8A9RPmRcCitK4H5bTCXCw1R3qw6gIy2IugE9-Bt5iHulfHLHgPOmeg5xN8SHo5ea-Z7U4.1LJXKyAg2vnLjmnCoxQvGQ" + }, + "record": { + "CNAME": "kartikshriwas.github.io" + } +} diff --git a/domains/karttikeya.json b/domains/karttikeya.json index 6cce8a1d5..aebd415f4 100644 --- a/domains/karttikeya.json +++ b/domains/karttikeya.json @@ -6,6 +6,6 @@ "email": "karttikeyashahi@gmail.com" }, "record": { - "CNAME": "KartKernel.github.io" + "CNAME": "kartkernel.github.io" } } diff --git a/domains/katidoki.json b/domains/katidoki.json new file mode 100644 index 000000000..54be96678 --- /dev/null +++ b/domains/katidoki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hitoshi-okada", + "email": "okada@katidoki.com" + }, + "record": { + "CNAME": "hitoshi-okada.github.io" + } +} diff --git a/domains/katumbapaul.json b/domains/katumbapaul.json new file mode 100644 index 000000000..f9ad1810b --- /dev/null +++ b/domains/katumbapaul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kpaool", + "email": "jonathapkatumba@gmail.com" + }, + "record": { + "CNAME": "katumbapaul.com" + } +} diff --git a/domains/kawet.json b/domains/kawet.json index 674b3f21a..868b7d754 100644 --- a/domains/kawet.json +++ b/domains/kawet.json @@ -1,6 +1,5 @@ { "description": "My portofolio", - "repo": "https://github.com/Kawet00", "owner": { "username": "kawet", "email": "kawet00@proton.me" diff --git a/domains/kawsar.json b/domains/kawsar.json new file mode 100644 index 000000000..b6dba88ac --- /dev/null +++ b/domains/kawsar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KawsarDev", + "email": "kawsar.dev1@gmail.com", + "discord": "520373269979988000" + }, + "record": { + "CNAME": "kawsardev.vercel.app" + } +} diff --git a/domains/kayden.json b/domains/kayden.json index 7b01d8916..42ab43640 100644 --- a/domains/kayden.json +++ b/domains/kayden.json @@ -4,6 +4,6 @@ "email": "kaydenleefale@gmail.com" }, "record": { - "A": ["103.7.8.238"] + "A": ["178.128.124.89"] } } diff --git a/domains/kd.json b/domains/kd.json deleted file mode 100644 index 572be3e22..000000000 --- a/domains/kd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal Developer Website", - "repo": "https://github.com/KejdiKoci/kejdikoci.github.io", - "owner": { - "username": "KejdiKoci", - "email": "kejdikoci.mail@gmail.com" - }, - "record": { - "CNAME": "kejdikoci.github.io" - } -} diff --git a/domains/keishi.json b/domains/keishi.json new file mode 100644 index 000000000..ee22f1bf1 --- /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" + }, + "record": { + "CNAME": "voidkeishi.github.io" + } +} diff --git a/domains/kelly.json b/domains/kelly.json new file mode 100644 index 000000000..b68491bbc --- /dev/null +++ b/domains/kelly.json @@ -0,0 +1,11 @@ +{ + "description": "Kelly Lawrence's personal website.", + "owner": { + "email": "kelly@kellylawrence.ca", + "username": "kellylawrence" + }, + "record": { + "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..58c947e26 --- /dev/null +++ b/domains/kelvin.json @@ -0,0 +1,10 @@ +{ + "description": "Dev Site", + "owner": { + "username": "kelvinelove", + "email": "kevypolu@yahoo.com" + }, + "record": { + "CNAME": "kevhi.netlify.app" + } +} diff --git a/domains/ken-kuro.json b/domains/ken-kuro.json new file mode 100644 index 000000000..b5bf0c5bd --- /dev/null +++ b/domains/ken-kuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ken-kuro", + "linkedin": "hieuhm2610" + }, + "record": { + "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..80742220b --- /dev/null +++ b/domains/kendikasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/kennymolina.json b/domains/kennymolina.json new file mode 100644 index 000000000..89f70f0e2 --- /dev/null +++ b/domains/kennymolina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xXMolinaXx", + "email": "kjmolina@live.com" + }, + "record": { + "CNAME": "xxmolinaxx.github.io" + } +} diff --git a/domains/kentaylor.json b/domains/kentaylor.json new file mode 100644 index 000000000..ef4d53dc1 --- /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" + }, + "record": { + "URL": "https://lugetech.com" + } +} diff --git a/domains/keshav.json b/domains/keshav.json new file mode 100644 index 000000000..bf7982598 --- /dev/null +++ b/domains/keshav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "keshav-writes-code", + "email": "dhimankeshav201@gmail.com" + }, + "record": { + "CNAME": "keshav-writes-code.github.io" + } +} diff --git a/domains/kevin.json b/domains/kevin.json new file mode 100644 index 000000000..4f88a1adb --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/kevinmolina.json b/domains/kevinmolina.json new file mode 100644 index 000000000..3e11f77cc --- /dev/null +++ b/domains/kevinmolina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kevinmolinadev", + "email": "kevinmolina.dev@gmail.com" + }, + "record": { + "CNAME": "kevinmolinadev.vercel.app" + } +} diff --git a/domains/keybinds.json b/domains/keybinds.json new file mode 100644 index 000000000..39bb6215f --- /dev/null +++ b/domains/keybinds.json @@ -0,0 +1,15 @@ +{ + "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"] + } +} diff --git a/domains/keyruu.json b/domains/keyruu.json new file mode 100644 index 000000000..b41075770 --- /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" + }, + "record": { + "URL": "https://keyruu.de" + } +} diff --git a/domains/khacviet.json b/domains/khacviet.json new file mode 100644 index 000000000..98389b2d1 --- /dev/null +++ b/domains/khacviet.json @@ -0,0 +1,10 @@ +{ + "description": "Khac Viet Portfolio website", + "owner": { + "username": "Khac-Viet", + "email": "viet2ca11@gmail.com" + }, + "record": { + "A": ["103.97.126.29"] + } +} diff --git a/domains/khaif.json b/domains/khaif.json new file mode 100644 index 000000000..e7f8544cd --- /dev/null +++ b/domains/khaif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khxif", + "email": "code.khaif@gmail.com" + }, + "record": { + "CNAME": "portfolio-khxif.vercel.app" + } +} diff --git a/domains/khanh.json b/domains/khanh.json index cd666ce18..4aeb952fa 100644 --- a/domains/khanh.json +++ b/domains/khanh.json @@ -1,6 +1,5 @@ { "description": "Khanh's personal developer website", - "repo": "https://github.com/canfam", "owner": { "username": "canfam", "email": "khanhpham072007@gmail.com" diff --git a/domains/khanhngn.json b/domains/khanhngn.json new file mode 100644 index 000000000..430bfde3a --- /dev/null +++ b/domains/khanhngn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khanhngn-dev", + "email": "khanhngn.dev@gmail.com", + "discord": "jerry.ng" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/khao.json b/domains/khao.json new file mode 100644 index 000000000..9b5d96c4f --- /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" + }, + "record": { + "URL": "https://www.khaodoes.dev" + } +} \ No newline at end of file diff --git a/domains/khateeb.json b/domains/khateeb.json new file mode 100644 index 000000000..29264d1dc --- /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" + }, + "record": { + "CNAME": "khateeboveskey.github.io" + } +} diff --git a/domains/khoacao.json b/domains/khoacao.json new file mode 100644 index 000000000..e70254090 --- /dev/null +++ b/domains/khoacao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khoacao2k4", + "email": "cqnhatkhoa@gmail.com" + }, + "record": { + "CNAME": "khoa-cao-website.vercel.app" + } +} diff --git a/domains/khuong.json b/domains/khuong.json new file mode 100644 index 000000000..2283f3209 --- /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" + }, + "record": { + "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..c45eb15c0 --- /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" + }, + "record": { + "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..05a532110 100644 --- a/domains/khushpatil.json +++ b/domains/khushpatil.json @@ -1,6 +1,5 @@ { "description": "my personal homepage", - "repo": "https://github.com/AssassinK786", "owner": { "username": "AssassinK786", "email": "khushpatil01@gmail.com" diff --git a/domains/kietdo.json b/domains/kietdo.json new file mode 100644 index 000000000..6b8bb75d5 --- /dev/null +++ b/domains/kietdo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kietdo-dev", + "email": "lionvs12345@gmail.com" + }, + "record": { + "CNAME": "kietdo-portolio.vercel.app" + } +} diff --git a/domains/kikemendez.json b/domains/kikemendez.json new file mode 100644 index 000000000..ba13bc87b --- /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", + "record": { + "CNAME": "kikeme98.github.io" + } +} diff --git a/domains/kilamieaz.json b/domains/kilamieaz.json new file mode 100644 index 000000000..661af786e --- /dev/null +++ b/domains/kilamieaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kilamieaz", + "email": "im.sultaan05@gmail.com" + }, + "record": { + "CNAME": "kilamieaz.vercel.app" + } +} diff --git a/domains/killua.json b/domains/killua.json index 44fed95cb..9480f2f50 100644 --- a/domains/killua.json +++ b/domains/killua.json @@ -6,6 +6,6 @@ "email": "bhat7362@gmail.com" }, "record": { - "CNAME": "Killua7362.github.io" + "CNAME": "killua7362.github.io" } } diff --git a/domains/kimduy.json b/domains/kimduy.json new file mode 100644 index 000000000..90bbe207f --- /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" + }, + "record": { + "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 new file mode 100644 index 000000000..5ffe17247 --- /dev/null +++ b/domains/kind-nodes.arnxv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/kinfhertix.json b/domains/kinfhertix.json new file mode 100644 index 000000000..0e9db9243 --- /dev/null +++ b/domains/kinfhertix.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Kinfhertix", + "email": "kinfhertix@gmail.com", + "discord": "i_mert" + }, + "record": { + "CNAME": "kinfhertix.vercel.app" + } +} \ No newline at end of file diff --git a/domains/kiransala.json b/domains/kiransala.json new file mode 100644 index 000000000..fd0c5b9dd --- /dev/null +++ b/domains/kiransala.json @@ -0,0 +1,10 @@ +{ + "description": "My personal portfolio site", + "owner": { + "username": "Kiransala", + "email": "kiransala.dev@gmail.com" + }, + "record": { + "CNAME": "kiransala.netlify.app" + } +} diff --git a/domains/kishore.json b/domains/kishore.json new file mode 100644 index 000000000..b50f52298 --- /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" + }, + "record": { + "CNAME": "kishore0122.github.io" + } +} diff --git a/domains/kitb2romjbz3.dhlcgd.json b/domains/kitb2romjbz3.dhlcgd.json new file mode 100644 index 000000000..51718cb2f --- /dev/null +++ b/domains/kitb2romjbz3.dhlcgd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "record": { + "CNAME": "gv-zz3nklni3izils.dv.googlehosted.com" + } +} diff --git a/domains/kitohemat.iamkevinhuang.json b/domains/kitohemat.iamkevinhuang.json new file mode 100644 index 000000000..24e618a76 --- /dev/null +++ b/domains/kitohemat.iamkevinhuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamkevinhuang", + "email": "kevinjaydenwivano@duck.com" + }, + "record": { + "A": ["194.233.91.185"] + } +} diff --git a/domains/kitten.json b/domains/kitten.json index 2b27f72e2..cd3620912 100644 --- a/domains/kitten.json +++ b/domains/kitten.json @@ -1,6 +1,5 @@ { "description": "using for personal projects", - "repo": "https://github.com/KittensAreDaBest", "owner": { "username": "KittensAreDaBest", "email": "is-a-dev@mythicalkitten.com" diff --git a/domains/kiyora.json b/domains/kiyora.json index dfed83a7a..a687854a0 100644 --- a/domains/kiyora.json +++ b/domains/kiyora.json @@ -1,6 +1,5 @@ { "description": "using for personal projects", - "repo": "https://github.com/ItsMyEyes", "owner": { "username": "ItsMyEyes", "email": "dev@sipaling.top" diff --git a/domains/kjimenez.json b/domains/kjimenez.json new file mode 100644 index 000000000..43cfb28c7 --- /dev/null +++ b/domains/kjimenez.json @@ -0,0 +1,10 @@ +{ + "subdomain": "kjimenez", + "owner": { + "username": "KevinJG994", + "email": "KevinJG994@gmail.com" + }, + "record": { + "CNAME": "kjimenez.netlify.app" + } +} diff --git a/domains/kleein.json b/domains/kleein.json new file mode 100644 index 000000000..391669f4f --- /dev/null +++ b/domains/kleein.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kleeiny", + "discord": "763581985410121769", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RB8tarmY1z9BCAER0LvmJIvKu0Fx_u6ruXqMwX4aw-v4pZUbhTCKLSf_iR1b_b5WIL8VlKOd4FX2ykUcIOO1goN3vBszT__Edxfir1FYNhMOE3Ywn1oO1K-dPG8Ptsk0B7kuqFbv-0OjXjefixD44g6OYNGy9xxThP0ZJLT3jSOFf3x1O49S1OuibhrElcx41MGjLIms5Fp147ZFVn2p38aZisFKw7Q3yyAaLvJ1uGC1mosVF5CAZbfZxPhUpdvGizMPG9IRzuAQxF6pZf-L4bb1WFMIQYNtTX5o65sMCqIjcWaTK26SdrR-m_r7RudENszlDCuI8eJP3Se_vIVzbA.zbLxAQ7r2w8FxmiDnbIaTw.l11uw6jMkX69_h-55R37CKGZdSlD4KXAUWvaTwGKiTZDzlusNY-YNVzh3gdqTDL8CMCaL8LXfxZHKRaP6wU_5ohHaWB8kzKaW_Kj5dI0MMI.jU93qV2ujuyvYD-oeSF6Pg" + }, + "record": { + "A": ["15.235.204.212"] + } +} diff --git a/domains/klez.json b/domains/klez.json new file mode 100644 index 000000000..f4a1fb6a3 --- /dev/null +++ b/domains/klez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "klez2003", + "email": "klez@cock.li" + }, + "record": { + "CNAME": "ammosearch.lol" + } +} diff --git a/domains/kn0tzer.json b/domains/kn0tzer.json new file mode 100644 index 000000000..fb8dfcd0a --- /dev/null +++ b/domains/kn0tzer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kn0tzer", + "email": "g4marchi@gmail.com" + }, + "record": { + "CNAME": "kn0tzer.github.io" + } +} diff --git a/domains/ko.json b/domains/ko.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/ko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/koding.json b/domains/koding.json index 24283837d..3fc2fbb75 100644 --- a/domains/koding.json +++ b/domains/koding.json @@ -1,6 +1,5 @@ { "description": "Full stack developer proficient in Kotlin", - "repo": "https://github.com/KodingDev", "owner": { "username": "KodingDev", "email": "kodingdev@pm.me" diff --git a/domains/kokofixcomputers.json b/domains/kokofixcomputers.json index cebb43a29..8b2d51302 100644 --- a/domains/kokofixcomputers.json +++ b/domains/kokofixcomputers.json @@ -1,7 +1,6 @@ { "owner": { "username": "kokofixcomputers", - "email": "113046561+kokofixcomputers@users.noreply.github.com", "discord": "1096839213313446019" }, "record": { diff --git a/domains/winbo.json b/domains/komaru.json similarity index 52% rename from domains/winbo.json rename to domains/komaru.json index dc28d5dc9..46caa668d 100644 --- a/domains/winbo.json +++ b/domains/komaru.json @@ -1,9 +1,9 @@ { "owner": { - "username": "winbo-yml-exe", + "username": "komaru-meow", "email": "winbo-yml-exe@outlook.com" }, "record": { - "CNAME": "winbo-yml-exe.github.io" + "CNAME": "komaru-meow.github.io" } } diff --git a/domains/kona.json b/domains/kona.json new file mode 100644 index 000000000..209ad08d7 --- /dev/null +++ b/domains/kona.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "konaa0", + "discord": "1149438819834269856", + "bluesky": "vornexx.has.fish" + }, + "record": { + "CNAME": "vornexx.pages.dev" + } +} diff --git a/domains/konnn04.json b/domains/konnn04.json new file mode 100644 index 000000000..ef3822a94 --- /dev/null +++ b/domains/konnn04.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "repo": "https://github.com/konnn04/konnn04.github.io", + "owner": { + "username": "konnn04", + "email": "trieukon1011@gmail.com" + }, + "record": { + "CNAME": "konnn04.github.io" + } +} + \ No newline at end of file diff --git a/domains/konstantin-ivanov.json b/domains/konstantin-ivanov.json new file mode 100644 index 000000000..eea7f765f --- /dev/null +++ b/domains/konstantin-ivanov.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KonstanTinoVino", + "email": "koiv.work@gmail.com" + }, + "record": { + "CNAME": "konstantinovino.github.io" + } +} diff --git a/domains/korigamik.json b/domains/korigamik.json index a81e82805..1aaeb1bf3 100644 --- a/domains/korigamik.json +++ b/domains/korigamik.json @@ -1,12 +1,11 @@ { - "description": "The Portfolio of KorigamiK", - "repo": "https://github.com/KorigamiK/korigamik.github.io", + "description": "goto website of KorigamiK", "owner": { "username": "KorigamiK", "email": "korigamik@gmail.com", - "twitter": "https://twitter.com/iamkorigamik" + "twitter": "https://twitter.com/codesonpaper" }, "record": { - "CNAME": "korigamik.github.io" + "CNAME": "korigamik-redirect.pages.dev" } } diff --git a/domains/kory.json b/domains/kory.json index 183e86693..712bc39b8 100644 --- a/domains/kory.json +++ b/domains/kory.json @@ -1,6 +1,5 @@ { "description": "Kory Porter's personal website", - "repo": "https://github.com/korziee", "owner": { "username": "korziee", "twitter": "korziee" 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/krebinkkj.json b/domains/krebinkkj.json new file mode 100644 index 000000000..892dd259a --- /dev/null +++ b/domains/krebinkkj.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "krebinkkj", + "email": "krebinkkj@gmail.com", + "discord": "1041878326169587732" + }, + "record": { + "CNAME": "krebinkkj.vercel.app" + } +} diff --git a/domains/krish.json b/domains/krish.json deleted file mode 100644 index f0f501d88..000000000 --- a/domains/krish.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "krish858", - "email": "unknowmortal57@gmail.com", - "discord": "789102469345968131" - }, - "record": { - "CNAME": "krish858.github.io" - } -} diff --git a/domains/kruase.json b/domains/kruase.json new file mode 100644 index 000000000..79f09d49d --- /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" + }, + "record": { + "CNAME": "kruase.vercel.app" + } +} diff --git a/domains/krunch.json b/domains/krunch.json index fa6655cf6..80350c61e 100644 --- a/domains/krunch.json +++ b/domains/krunch.json @@ -3,7 +3,7 @@ "repo": "https://github.com/RadioactivePotato/krunch-is-a-dev", "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, "record": { "CNAME": "krunch.pages.dev" diff --git a/domains/ktevin01.json b/domains/ktevin01.json new file mode 100644 index 000000000..63d6e2f91 --- /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" + }, + "record": { + "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..953996849 --- /dev/null +++ b/domains/ktpguesser.loomeh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/kuanngyn.json b/domains/kuanngyn.json new file mode 100644 index 000000000..ce12aed84 --- /dev/null +++ b/domains/kuanngyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LOQ-burh", + "email": "nguyenminhquan042004@email.com" + }, + "record": { + "CNAME": "kuanngyn-portfolio.vercel.app" + } +} diff --git a/domains/kulikode.json b/domains/kulikode.json new file mode 100644 index 000000000..641c96cb4 --- /dev/null +++ b/domains/kulikode.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khairu-aqsara", + "discord": "651519394673065977" + }, + "record": { + "CNAME": "khairu-aqsara.github.io" + } +} diff --git a/domains/kunalpurandare.json b/domains/kunalpurandare.json new file mode 100644 index 000000000..1207b3f70 --- /dev/null +++ b/domains/kunalpurandare.json @@ -0,0 +1,10 @@ +{ + "repo": "https://kunalpurandare.github.io/portfolio", + "owner": { + "username": "kunalpurandare", + "email": "kunalpurandare1703@gmail.com" + }, + "record": { + "CNAME": "kunalpurandare.github.io" + } +} diff --git a/domains/kunalshah017.json b/domains/kunalshah017.json new file mode 100644 index 000000000..ae6e2be7b --- /dev/null +++ b/domains/kunalshah017.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kunalshah017", + "email": "kunalmanishshah@gmail.com", + "discord": "kunalshah17" + }, + "record": { + "CNAME": "kunalshah017.vercel.app" + } +} diff --git a/domains/kuro.json b/domains/kuro.json new file mode 100644 index 000000000..91d2d896a --- /dev/null +++ b/domains/kuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kurorin-fs", + "twitter": "Kurorin_fs" + }, + "record": { + "CNAME": "kurorin-fs.github.io" + } +} diff --git a/domains/kushdhingra.json b/domains/kushdhingra.json deleted file mode 100644 index 7bc78d6d5..000000000 --- a/domains/kushdhingra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Kush-Dhingra", - "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.netlify.app" - } -} diff --git a/domains/kuyacarlos.json b/domains/kuyacarlos.json index bdaf6eee1..ec0eb10c3 100644 --- a/domains/kuyacarlos.json +++ b/domains/kuyacarlos.json @@ -5,6 +5,6 @@ "email": "carlosbenedictn@gmail.com" }, "record": { - "CNAME": "CarlosNatanauan.github.io" + "CNAME": "carlosnatanauan.github.io" } } diff --git a/domains/meenbeese.json b/domains/kuzey.json similarity index 100% rename from domains/meenbeese.json rename to domains/kuzey.json diff --git a/domains/kyizl.json b/domains/kyizl.json new file mode 100644 index 000000000..4c763685c --- /dev/null +++ b/domains/kyizl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oqzx", + "email": "ekn@envs.net" + }, + "record": { + "NS": ["ali.ns.cloudflare.com", "clay.ns.cloudflare.com"] + } +} diff --git a/domains/kz.json b/domains/kz.json index 2bc45d58e..18b52cfa4 100644 --- a/domains/kz.json +++ b/domains/kz.json @@ -5,6 +5,6 @@ "discord": "622795838032314388" }, "record": { - "MX": ["mx1.improvmx.com"] + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/l0ser.json b/domains/l0ser.json index b5cb346b0..67b442d2e 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": { - "CNAME": "L0SER8228.github.io" + "CNAME": "l0ser8228.github.io" } } diff --git a/domains/l6174.json b/domains/l6174.json index c3c4ae97f..db7f0b6bd 100644 --- a/domains/l6174.json +++ b/domains/l6174.json @@ -6,13 +6,6 @@ "email": "l6174@proton.me" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] } } diff --git a/domains/la-pyae-oo.json b/domains/la-pyae-oo.json new file mode 100644 index 000000000..0006fc51a --- /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" + }, + "record": { + "CNAME": "lapyaeoo.github.io", + "TXT": "google-site-verification=6LBBzq6hGqSJG1IkXd766eWxcJmf7VPHrvSMDZ_h1HE" + }, + "proxied": true +} \ No newline at end of file diff --git a/domains/lachlan.json b/domains/lachlan.json new file mode 100644 index 000000000..17042e9d9 --- /dev/null +++ b/domains/lachlan.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mrteale" + }, + "record": { + "CNAME": "lachlanteale.com" + } +} diff --git a/domains/lakshay.json b/domains/lakshay.json new file mode 100644 index 000000000..48c3d9643 --- /dev/null +++ b/domains/lakshay.json @@ -0,0 +1,10 @@ +{ + "description": "Porfolio website link for lux", + "owner": { + "username": "unlux", + "email": "support@unlux.dev" + }, + "record": { + "URL": "https://unlux.dev" + } +} diff --git a/domains/lakshisherediscord.json b/domains/lakshisherediscord.json new file mode 100644 index 000000000..7a03c091c --- /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" + }, + "record": { + "URL": "https://github.com/WebLux7" + } +} diff --git a/domains/lakshya.json b/domains/lakshya.json new file mode 100644 index 000000000..b46e64b73 --- /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", + "record": { + "URL": "https://lakshyasharma.dev" + } +} diff --git a/domains/lamngockhuong.json b/domains/lamngockhuong.json new file mode 100644 index 000000000..ab7eb8792 --- /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" + }, + "record": { + "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 new file mode 100644 index 000000000..795e9046a --- /dev/null +++ b/domains/lamnguyenz.json @@ -0,0 +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" + } +} diff --git a/domains/landercity.json b/domains/landercity.json new file mode 100644 index 000000000..ebfc6c1e9 --- /dev/null +++ b/domains/landercity.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Juniordsfsdg", + "email": "emailcomputer22@gmail.com" + }, + "record": { + "A": ["209.126.86.32"] + } +} diff --git a/domains/landercitygaming.json b/domains/landercitygaming.json new file mode 100644 index 000000000..9ce1a4543 --- /dev/null +++ b/domains/landercitygaming.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JuniorDereon", + "email": "robloxsafe72@gmail.com" + }, + "record": { + "A": ["159.69.86.171"] + } +} diff --git a/domains/laufey.json b/domains/laufey.json index 890b24d8c..60b0aecae 100644 --- a/domains/laufey.json +++ b/domains/laufey.json @@ -3,8 +3,7 @@ "repo": "https://github.com/idlidev/laufey-web", "owner": { "username": "idlidev", - "email": "idliyout@gmail.com", - "twitter": "" + "email": "idliyout@gmail.com" }, "record": { "CNAME": "idlidev.github.io" diff --git a/domains/lautaro-molina.json b/domains/lautaro-molina.json new file mode 100644 index 000000000..13b10fbc8 --- /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" + }, + "record": { + "URL": "https://lautaroportfolio.vercel.app/" + } +} diff --git a/domains/lavalink.akshtt.json b/domains/lavalink.akshtt.json index 01ec8e9d9..ad11a082f 100644 --- a/domains/lavalink.akshtt.json +++ b/domains/lavalink.akshtt.json @@ -1,6 +1,6 @@ { "owner": { - "username": "LegendOP1041", + "username": "akshtt-dev", "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, diff --git a/domains/lawrenceee04.json b/domains/lawrenceee04.json new file mode 100644 index 000000000..ab5b04a7b --- /dev/null +++ b/domains/lawrenceee04.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lawrenceee04", + "email": "lawrencelg04@gmail.com" + }, + "record": { + "CNAME": "lawrenceee04.netlify.app" + } +} diff --git a/domains/laxman.json b/domains/laxman.json new file mode 100644 index 000000000..a0e385a15 --- /dev/null +++ b/domains/laxman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "laxmanpathe", + "email": "pathelaxman11373@gmail.com" + }, + "record": { + "CNAME": "laxmanpathe.github.io" + } +} diff --git a/domains/layhout.json b/domains/layhout.json new file mode 100644 index 000000000..185abbfcd --- /dev/null +++ b/domains/layhout.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "layhout", + "email": "layhoutworkmail@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/lazy.json b/domains/lazy.json new file mode 100644 index 000000000..e4610e565 --- /dev/null +++ b/domains/lazy.json @@ -0,0 +1,10 @@ +{ + "description": "lazydragon.is-a.dev", + "owner": { + "username": "xuan-Thu", + "email": "xuanthu13090@gmail.com" + }, + "record": { + "CNAME": "xuan-thu.github.io" + } +} diff --git a/domains/ldt.json b/domains/ldt.json new file mode 100644 index 000000000..ad1bda352 --- /dev/null +++ b/domains/ldt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luongductrong", + "email": "luongductrong2004@gmail.com" + }, + "record": { + "CNAME": "luongductrong.github.io" + } +} diff --git a/domains/leek.json b/domains/leek.json new file mode 100644 index 000000000..8352459fc --- /dev/null +++ b/domains/leek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leek", + "email": "leeked+isadev@gmail.com" + }, + "record": { + "URL": "https://leek.io" + } +} diff --git a/domains/legz.json b/domains/legz.json new file mode 100644 index 000000000..8923707a6 --- /dev/null +++ b/domains/legz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LegzDev", + "email": "legzdev@proton.me" + }, + "record": { + "A": ["152.206.177.227"] + } +} 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/leo.json b/domains/leo.json index 24046e7b9..c4a259dc0 100644 --- a/domains/leo.json +++ b/domains/leo.json @@ -1,6 +1,5 @@ { "description": "Leonard's Personal Website", - "repo": "https://github.com/LeonardSSH", "owner": { "username": "LeonardSSH", "email": "leonardssh22@gmail.com", diff --git a/domains/leolb.json b/domains/leolb.json new file mode 100644 index 000000000..d8d150035 --- /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" + }, + "record": { + "URL": "https://leolb.wagoo.app" + } +} diff --git a/domains/leon.json b/domains/leon.json new file mode 100644 index 000000000..4f3fbf417 --- /dev/null +++ b/domains/leon.json @@ -0,0 +1,11 @@ +{ + "description": "Leon is a dev!", + "owner": { + "username": "itsLeonB", + "email": "ellionblessan@gmail.com" + }, + "record": { + "CNAME": "itsLeonB.github.io" + }, + "proxied": true +} diff --git a/domains/lester.json b/domains/lester.json new file mode 100644 index 000000000..2a7e3f4d1 --- /dev/null +++ b/domains/lester.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LSTR", + "email": "lesternr@gmail.com" + }, + "record": { + "CNAME": "lstr.github.io" + } +} diff --git a/domains/levani.json b/domains/levani.json index de5c18571..86ce4423d 100644 --- a/domains/levani.json +++ b/domains/levani.json @@ -4,6 +4,6 @@ "email": "vashadzelevani11@gmail.com" }, "record": { - "CNAME": "LevaniVashadze.github.io" + "CNAME": "levanivashadze.github.io" } } diff --git a/domains/levon.json b/domains/levon.json new file mode 100644 index 000000000..a3e33e903 --- /dev/null +++ b/domains/levon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "levon-d", + "email": "mycroft2003@gmail.com" + }, + "record": { + "CNAME": "levon-d.github.io" + } +} diff --git a/domains/lexy.json b/domains/lexy.json new file mode 100644 index 000000000..471b7cb26 --- /dev/null +++ b/domains/lexy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Olalexy1", + "discord": "olalexy1" + }, + "record": { + "CNAME": "lexy-portfolio-frontend.vercel.app" + } +} diff --git a/domains/lezli01.json b/domains/lezli01.json new file mode 100644 index 000000000..372185af2 --- /dev/null +++ b/domains/lezli01.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lezli01", + "email": "lezli01@gmail.com" + }, + "record": { + "CNAME": "lezli01.github.io" + } +} diff --git a/domains/lgstfn.json b/domains/lgstfn.json new file mode 100644 index 000000000..7c4cbe3f7 --- /dev/null +++ b/domains/lgstfn.json @@ -0,0 +1,12 @@ +{ + "owner": { + "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" + }, + "record": { + "NS": ["aron.ns.cloudflare.com", "dilbert.ns.cloudflare.com"] + } +} diff --git a/domains/lhycerie.json b/domains/lhycerie.json new file mode 100644 index 000000000..b38d10278 --- /dev/null +++ b/domains/lhycerie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lhycerie", + "email": "lhycerie@gmail.com" + }, + "record": { + "CNAME": "lhycerie.github.io" + } +} diff --git a/domains/spicy.json b/domains/liam.json similarity index 74% rename from domains/spicy.json rename to domains/liam.json index f50b70ba4..596537c09 100644 --- a/domains/spicy.json +++ b/domains/liam.json @@ -1,7 +1,7 @@ { "owner": { - "username": "oyepriyansh", - "email": "oyepriyansh@hotmail.com" + "username": "liamatienza", + "email": "liamdev@duck.com" }, "record": { "A": [ @@ -12,5 +12,6 @@ ], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + }, + "proxied": true } diff --git a/domains/liboot.json b/domains/liboot.json new file mode 100644 index 000000000..1b302daeb --- /dev/null +++ b/domains/liboot.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "libootnet" + }, + "record": { + "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..953996849 --- /dev/null +++ b/domains/libresplit-resources.loomeh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/libresplit.loomeh.json b/domains/libresplit.loomeh.json new file mode 100644 index 000000000..953996849 --- /dev/null +++ b/domains/libresplit.loomeh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "record": { + "A": ["76.76.21.21"] + } +} 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/lightsys32.json b/domains/lightsys32.json deleted file mode 100644 index a80725cfc..000000000 --- a/domains/lightsys32.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "not-amplify", - "email": "not.amplify.x@gmail.com", - "discord": "1202067094360035353" - }, - "record": { - "A": ["104.243.45.193"] - } -} 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/lilitha-mdlalana.json b/domains/lilitha-mdlalana.json new file mode 100644 index 000000000..cbd47b997 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/lime360.json b/domains/lime360.json deleted file mode 100644 index dee22033f..000000000 --- a/domains/lime360.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "lime360", - "email": "emeraldlime@protonmail.com" - }, - "record": { - "CNAME": "lime360.github.io" - } -} diff --git a/domains/limeware.json b/domains/limeware.json new file mode 100644 index 000000000..2e3d3b83d --- /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" + }, + "record": { + "CNAME": "dunno8489.github.io" + }, + "proxied": true +} diff --git a/domains/linhtutkyaw.json b/domains/linhtutkyaw.json new file mode 100644 index 000000000..8a149919a --- /dev/null +++ b/domains/linhtutkyaw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "linhtutkyawdev", + "email": "linhtutkyaw.dev@gmail.com" + }, + "record": { + "CNAME": "linhtutkyawdev.vercel.app" + } +} diff --git a/domains/link-to.lver.json b/domains/link-to.lver.json new file mode 100644 index 000000000..93c4db3e7 --- /dev/null +++ b/domains/link-to.lver.json @@ -0,0 +1,11 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "record": { + "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.vinceale7082.json b/domains/link.vinceale7082.json deleted file mode 100644 index 253d1a64a..000000000 --- a/domains/link.vinceale7082.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "CNAME": "track.smtp2go.net" - } -} diff --git a/domains/link.yxz.json b/domains/link.yxz.json new file mode 100644 index 000000000..af2b7f4ee --- /dev/null +++ b/domains/link.yxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "record": { + "CNAME": "track.smtp2go.net" + } +} diff --git a/domains/linkman.json b/domains/linkman.json new file mode 100644 index 000000000..94aeb6a12 --- /dev/null +++ b/domains/linkman.json @@ -0,0 +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" + } +} diff --git a/domains/links.ikram.json b/domains/links.ikram.json new file mode 100644 index 000000000..ff29ca1bb --- /dev/null +++ b/domains/links.ikram.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ikram-maulana", + "email": "ikrammaulana021@gmail.com", + "discord": "634603202784002050" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/links.ryanbaig.json b/domains/links.ryanbaig.json new file mode 100644 index 000000000..8f67cb323 --- /dev/null +++ b/domains/links.ryanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RyanBaig", + "discord": "757475933170040893" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/links.vulcanocraft.json b/domains/links.vulcanocraft.json new file mode 100644 index 000000000..131858673 --- /dev/null +++ b/domains/links.vulcanocraft.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "VulcanoSoftware", + "discord": "814891541205876767", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DlO2KOEJxA8ox9mvR1isR_rPxNzdgErO1Sz3lDV1n3RjS--FqiD_kwjxXJFUNwCiHYhhUyVab9ZCjvaZ3dmL4En1v8sRTTl4KkrwDnW6ggD95L2KjejHNUpfogXgxzD5JlIg_ANXQX7MMbQKkc3ih8xFAEUCo4Hy7CkGzN7Kwcu9jvWz4TgX6WoRLqN1AGv0Ldn49hDviRsfXUqWuHOJOJjCtMQPj2uZAqKVXPwlFz_QZJCxd6nNCWRZwOi7q06aCPMjkIo3bppt_iBQxmK2XI0rd4nf5qZF9tyAr_d5FXu6gpLApFsb1HGTwNJ2PDHeVvXx9j6pS8shMhLVtYo_0g.V41N00bJ1np-q-JhkGNn1A.Lr5tPaGpBKb_I2r9QF2N8CperG-05bOj-LxHU5QSnPw2VhP-f8g6DQC4sw1HG76SfX6dhV4OOgrr7afpp7axGQefMEUTVEnJhiyxlWsq7NXGqai43vbifEaV8FCrjNLd.vFOZ2h0K7ag6ESfdcFSXAA" + }, + + "record": { + "CNAME": "vulcanolinks.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/lioo.json b/domains/lioo.json new file mode 100644 index 000000000..b784ed46b --- /dev/null +++ b/domains/lioo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lio10jr", + "email": "kevinzambrano593@gmail.com" + }, + "record": { + "URL": "https://github.com/Lio10jr" + } +} diff --git a/domains/liq.json b/domains/liq.json index 17595f9e5..1a976286f 100644 --- a/domains/liq.json +++ b/domains/liq.json @@ -1,9 +1,7 @@ { "description": "Learning something new everyday", - "repo": "https://github.com/DevLiQ", "owner": { - "username": "DevLiQ", - "email": "21136062+devliq@users.noreply.github.com" + "username": "DevLiQ" }, "record": { "CNAME": "devliq.github.io" diff --git a/domains/lit.lver.json b/domains/lit.lver.json new file mode 100644 index 000000000..7a2497f8e --- /dev/null +++ b/domains/lit.lver.json @@ -0,0 +1,16 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "record": { + "URL": "https://linktr.ee/lverboy" + }, + "redirect_config": { + "custom_paths": { + "/home": "https://lver.is-a.dev/" + }, + "redirect_paths": true + } +} diff --git a/domains/ljean.json b/domains/ljean.json new file mode 100644 index 000000000..4330b007f --- /dev/null +++ b/domains/ljean.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Granpiecito", + "email": "jeanpierresperrymanaleman@gmail.com", + "discord": "294318911791562752" + }, + "record": { + "CNAME": "portfolio-astro-fawn-ten.vercel.app" + } +} diff --git a/domains/llucx.json b/domains/llucx.json new file mode 100644 index 000000000..979f00458 --- /dev/null +++ b/domains/llucx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "llucxdev", + "email": "puertesarrue@gmail.com", + "discord": "lluuuc_12" + }, + "record": { + "CNAME": "portfolio-llucx.vercel.app" + } +} diff --git a/domains/lnfnunes.json b/domains/lnfnunes.json index 063c01ba1..88af75306 100644 --- a/domains/lnfnunes.json +++ b/domains/lnfnunes.json @@ -1,6 +1,5 @@ { "description": "Little Big Nunes", - "repo": "https://github.com/lnfnunes", "owner": { "username": "lnfnunes", "email": "dr1design@gmail.com" diff --git a/domains/lobo.json b/domains/lobo.json new file mode 100644 index 000000000..3e1f4443a --- /dev/null +++ b/domains/lobo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lobooooooo14", + "discord": "783120232134082580" + }, + "record": { + "CNAME": "olobo.vercel.app" + } +} diff --git a/domains/locionic.json b/domains/locionic.json new file mode 100644 index 000000000..1271c4a37 --- /dev/null +++ b/domains/locionic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "locionic", + "email": "noone000a@gmail.com" + }, + "record": { + "CNAME": "portfolio-blog-locionic.vercel.app" + } +} diff --git a/domains/logan.json b/domains/logan.json index 9461a4911..cef72e17d 100644 --- a/domains/logan.json +++ b/domains/logan.json @@ -7,6 +7,6 @@ "twitter": "LoganTheDudeRox" }, "record": { - "CNAME": "LoganLikesToCode.github.io" + "CNAME": "loganlikestocode.github.io" } } diff --git a/domains/lohit.json b/domains/lohit.json index 52d0da6c2..9c060164b 100644 --- a/domains/lohit.json +++ b/domains/lohit.json @@ -5,6 +5,11 @@ "discord": "drxven" }, "record": { - "CNAME": "lohitkolluri.vercel.app" + "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" + ] } } diff --git a/domains/loinguyende.json b/domains/loinguyende.json new file mode 100644 index 000000000..2e991fa5d --- /dev/null +++ b/domains/loinguyende.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "loinguyen3108", + "email": "ntloic3tbt@gmail.com" + }, + "record": { + "CNAME": "my-second-brain-omega.vercel.app" + } +} diff --git a/domains/lololand.json b/domains/lololand.json new file mode 100644 index 000000000..642812000 --- /dev/null +++ b/domains/lololand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pessonnier", + "email": "ihdpsidt.hpsi@gmail.com" + }, + "record": { + "URL": "https://pessonnier.github.io/doc/" + } +} diff --git a/domains/lonelil.json b/domains/lonelil.json deleted file mode 100644 index aac002461..000000000 --- a/domains/lonelil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This will be used for my portfolio.", - "repo": "https://github.com/lonelil/lonelil.github.io", - "owner": { - "username": "lonelil", - "discord": "lonelil#0001" - }, - "record": { - "CNAME": "lonelil.github.io" - } -} diff --git a/domains/longnt.json b/domains/longnt.json new file mode 100644 index 000000000..33b59ff66 --- /dev/null +++ b/domains/longnt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simel0", + "email": "longnt2204+dev@gmail.com" + }, + "record": { + "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] + } +} diff --git a/domains/loomeh.json b/domains/loomeh.json new file mode 100644 index 000000000..450b9ee89 --- /dev/null +++ b/domains/loomeh.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "loomeh", + "bluesky": "loomeh.bsky.social" + }, + "record": { + "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/loser.json b/domains/loser.json index 3490fc680..59a8bde05 100644 --- a/domains/loser.json +++ b/domains/loser.json @@ -11,9 +11,7 @@ "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 3490fc680..59a8bde05 100644 --- a/domains/losr.json +++ b/domains/losr.json @@ -11,9 +11,7 @@ "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/lqhuy.json b/domains/lqhuy.json new file mode 100644 index 000000000..e7b0355fe --- /dev/null +++ b/domains/lqhuy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lqhuy125", + "email": "lequanghuy1252206@gmail.com" + }, + "record": { + "CNAME": "lqhuy125.github.io" + } +} diff --git a/domains/lraffdev.json b/domains/lraffdev.json new file mode 100644 index 000000000..2081951a3 --- /dev/null +++ b/domains/lraffdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LRaffDev", + "email": "raffaele.la.cerra@outlook.it" + }, + "record": { + "CNAME": "LRaffDev.vercel.app" + } +} diff --git a/domains/lsalas.json b/domains/lsalas.json new file mode 100644 index 000000000..e15508b10 --- /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" + }, + "record": { + "A": ["82.180.174.177"] + } +} diff --git a/domains/luanvu.json b/domains/luanvu.json new file mode 100644 index 000000000..7ab86fd0e --- /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" + }, + "record": { + "CNAME": "luanvu.betaenglish.com.vn" + }, + "proxied": false +} diff --git a/domains/lucasbaronio.json b/domains/lucasbaronio.json new file mode 100644 index 000000000..454cde016 --- /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" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/lucvuro.json b/domains/lucvuro.json new file mode 100644 index 000000000..5a99bce49 --- /dev/null +++ b/domains/lucvuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lucvuro", + "email": "lucvuit@gmail.com" + }, + "record": { + "CNAME": "my-portfolio-v2-iota.vercel.app" + } +} \ No newline at end of file diff --git a/domains/lucy.json b/domains/lucy.json index b0edfa561..ac69fef85 100644 --- a/domains/lucy.json +++ b/domains/lucy.json @@ -7,6 +7,6 @@ "discord": "romanromannya" }, "record": { - "CNAME": "Hai-Lucy.github.io" + "CNAME": "hai-lucy.github.io" } } diff --git a/domains/ludolua.json b/domains/ludolua.json new file mode 100644 index 000000000..b298132bd --- /dev/null +++ b/domains/ludolua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leduardoaraujo", + "email": "luizeduardo55062@gmail.com" + }, + "record": { + "CNAME": "leduardoaraujo.github.io" + } +} diff --git a/domains/luihh.json b/domains/luihh.json index 82db15c06..54d42ba90 100644 --- a/domains/luihh.json +++ b/domains/luihh.json @@ -5,6 +5,17 @@ "discord": "481268875586174986" }, "record": { - "CNAME": "extreme-demons-spreadsheet.vercel.app" - } + "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/luisandre.json b/domains/luisandre.json index d6accd1e9..e8cdec4bd 100644 --- a/domains/luisandre.json +++ b/domains/luisandre.json @@ -4,7 +4,6 @@ "email": "luis073094@gmail.com" }, "record": { - "URL": "https://portafolioluisandre.azurewebsites.net", - "A": ["20.206.176.7"] + "URL": "https://portafolioluisandre.azurewebsites.net" } } diff --git a/domains/luisdanieltrejo.json b/domains/luisdanieltrejo.json new file mode 100644 index 000000000..fbeaa889c --- /dev/null +++ b/domains/luisdanieltrejo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luisdanieltrejo", + "email": "luisdanieltrejo@gmail.com" + }, + "record": { + "CNAME": "luisdanieltrejo.github.io" + } +} diff --git a/domains/luisgerardovillanueva.json b/domains/luisgerardovillanueva.json new file mode 100644 index 000000000..23ed9f8b9 --- /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" + }, + "record": { + "CNAME": "portfolio-6f0jbiit2-gerardovilllas-projects.vercel.app" + } +} diff --git a/domains/luiz.json b/domains/luiz.json new file mode 100644 index 000000000..0de948317 --- /dev/null +++ b/domains/luiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luk4h", + "email": "luizmarcondes@lgvm.dev" + }, + "record": { + "CNAME": "lgvm.dev" + } +} diff --git a/domains/luked.json b/domains/luked.json new file mode 100644 index 000000000..23b25ca07 --- /dev/null +++ b/domains/luked.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luked177", + "twitter": "lukedore_" + }, + "record": { + "CNAME": "cv-sand-zeta.vercel.app" + } +} diff --git a/domains/lumi.json b/domains/lumi.json index 23c58ff6d..7b8bd0174 100644 --- a/domains/lumi.json +++ b/domains/lumi.json @@ -1,9 +1,11 @@ { "owner": { - "username": "itsFatlum", + "username": "itssfatlum", "discord": "563697359423406082" }, "record": { - "A": ["76.76.21.21"] + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/_vercel.lumi.json b/domains/lumidevelopment.json similarity index 50% rename from domains/_vercel.lumi.json rename to domains/lumidevelopment.json index 2a22a48dc..ad38854dc 100644 --- a/domains/_vercel.lumi.json +++ b/domains/lumidevelopment.json @@ -4,6 +4,7 @@ "discord": "563697359423406082" }, "record": { - "TXT": "vc-domain-verify=lumi.is-a.dev,38de86570893517719b8" + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/lunah.json b/domains/lunah.json index 11be3357a..3b4e37b1e 100644 --- a/domains/lunah.json +++ b/domains/lunah.json @@ -1,9 +1,8 @@ { "description": "VPS hosted domain", - "repo": "https://github.com/piotr25691", "owner": { "username": "piotr25691", - "discord": "@b4.lunah" + "discord": "b4.lunah" }, "record": { "A": ["157.173.204.104"], diff --git a/domains/lungustefan.json b/domains/lungustefan.json index b9a1eff55..7d2552a45 100644 --- a/domains/lungustefan.json +++ b/domains/lungustefan.json @@ -3,10 +3,41 @@ "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"] + "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/luoduyu.json b/domains/luoduyu.json new file mode 100644 index 000000000..084c99d34 --- /dev/null +++ b/domains/luoduyu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luoduyu", + "email": "luoduyu@hotmail.com" + }, + "record": { + "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/luvtoxic.json b/domains/luvtoxic.json new file mode 100644 index 000000000..ff4b58d9d --- /dev/null +++ b/domains/luvtoxic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luvtoxic", + "email": "ammarbags2023@gmail.com" + }, + "record": { + "CNAME": "new-portfolio-sigma-indol.vercel.app" + } +} diff --git a/domains/lux.json b/domains/lux.json new file mode 100644 index 000000000..48c3d9643 --- /dev/null +++ b/domains/lux.json @@ -0,0 +1,10 @@ +{ + "description": "Porfolio website link for lux", + "owner": { + "username": "unlux", + "email": "support@unlux.dev" + }, + "record": { + "URL": "https://unlux.dev" + } +} diff --git a/domains/luxorens.json b/domains/luxorens.json new file mode 100644 index 000000000..2b8a2d91a --- /dev/null +++ b/domains/luxorens.json @@ -0,0 +1,11 @@ +{ + "description": "Website for Luxorens projects", + "owner": { + "username": "Luxorens", + "email": "luxorens@gmail.com" + }, + "record": { + "CNAME": "luxorens.github.io" + }, + "proxied": true +} diff --git a/domains/lver-rocks.lver.json b/domains/lver-rocks.lver.json new file mode 100644 index 000000000..d5565eb14 --- /dev/null +++ b/domains/lver-rocks.lver.json @@ -0,0 +1,21 @@ +{ + "github": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "record": { + "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..b381fae98 --- /dev/null +++ b/domains/lver.json @@ -0,0 +1,19 @@ +{ + "repo": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "record": { + "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/lyaxsh.json b/domains/lyaxsh.json new file mode 100644 index 000000000..f138821cf --- /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" + }, + "record": { + "CNAME": "lyaxsh.github.io" + } +} diff --git a/domains/lycoris.json b/domains/lycoris.json new file mode 100644 index 000000000..8fa432374 --- /dev/null +++ b/domains/lycoris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lycorissss", + "email": "beelzebub5758@gmail.com" + }, + "record": { + "CNAME": "septyo-adi-dwi-putra.vercel.app" + } +} diff --git a/domains/lym.json b/domains/lym.json new file mode 100644 index 000000000..ace48da9f --- /dev/null +++ b/domains/lym.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "valentinsacco", + "email": "vasacco@hotmail.com.ar" + }, + "record": { + "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" + ] + } +} \ No newline at end of file diff --git a/domains/lyxtem.json b/domains/lyxtem.json new file mode 100644 index 000000000..a615a3ce9 --- /dev/null +++ b/domains/lyxtem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lyxtem", + "email": "nu284955@gmail.com" + }, + "record": { + "CNAME": "lyxtem.vercel.app" + } +} diff --git a/domains/m.a.s.k.d.u.c.k.json b/domains/m.a.s.k.d.u.c.k.json deleted file mode 100644 index 7ff0a0ee8..000000000 --- a/domains/m.a.s.k.d.u.c.k.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "MaskDuck", - "discord": "716134528409665586", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FCODcvMVh-iHQ04kj7Eff1SC1Gh-ycagZxRqb-Y0X8tJwM8YnSqscZVkyRbW36X8X_EycjD5DLhkuW1dlk_wNaRGXrROY2_sdUxL71rW6cjc6OUqYdGaBrkqHfQ_R-a0vUWHyNQTDd266RV2RfYTdT71siAeMMFVgC1S7K7bEVlo5n2yYZLJg0-BkSevG4tDLyndsB4rPzeJTm-8EKIk62A-9Xfla0zbxQpY8x7gAc9ukpCH5fkITPcbGAMSitGXEtd7bMzErBdP-97X-c9hFF_B2ot2U8J-W_Rp9z8xk-vCKrGGEG76rqXyY1tSN68iUyL8at5p0-vGliTuALLNsA.zQD4sI7edMLRBD_ii-KXDA.Y689CjD1NbsRoyYnoiO9Arg5sHrlQ1SxpXExtf8Gn1VRmK86FuKRYTBvwSc_qIz7LqL90lEuEcNwUAWQHXx6aKIw90X_WYDLagM8nsugxBo.dO8s5XxLzH0gsfWJtnKNmg" - }, - "record": { - "CNAME": "maskduck.pages.dev" - } -} diff --git a/domains/m.json b/domains/m.json deleted file mode 100644 index 1570b3e57..000000000 --- a/domains/m.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": {}, - "reserved": true -} diff --git a/domains/m.ps.json b/domains/m.ps.json index 5586ac09a..e3a9e8b66 100644 --- a/domains/m.ps.json +++ b/domains/m.ps.json @@ -4,15 +4,11 @@ "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": { + "record": { "TXT": [ "zoho-verification=zb51857919.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all" ], - "MX": [ - "mx.zoho.com", - "mx2.zoho.com", - "mx3.zoho.com" - ] + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] } } diff --git a/domains/m3o.json b/domains/m3o.json new file mode 100644 index 000000000..547b2bfb8 --- /dev/null +++ b/domains/m3o.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marco-souza", + "email": "marco@tremtec.com" + }, + "record": { + "CNAME": "marco-pages-dev.pages.dev" + } +} diff --git a/domains/m42e.json b/domains/m42e.json index c5cbebf94..ec3f2a711 100644 --- a/domains/m42e.json +++ b/domains/m42e.json @@ -1,6 +1,5 @@ { "description": "m42e Homepage", - "repo": "https://github.com/m42e", "owner": { "username": "m42e", "email": "matthias@bilger.info" diff --git a/domains/maanripe.json b/domains/maanripe.json new file mode 100644 index 000000000..54f1dd7ed --- /dev/null +++ b/domains/maanripe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "argkont", + "email": "kohacaelo+is-a-dev@gmail.com" + }, + "record": { + "CNAME": "portafolio-maan-ripe.vercel.app" + } +} diff --git a/domains/machip3r.json b/domains/machip3r.json new file mode 100644 index 000000000..8ccfe2163 --- /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" + }, + "record": { + "CNAME": "machip3r.github.io" + } +} diff --git a/domains/macielsuassuna.json b/domains/macielsuassuna.json new file mode 100644 index 000000000..78bdb88e7 --- /dev/null +++ b/domains/macielsuassuna.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maciel64", + "discord": "macielmano", + "email": "macielsuassuna14@gmail.com" + }, + "record": { + "CNAME": "macielsuassuna-portfolio.vercel.app" + } +} diff --git a/domains/mack.json b/domains/mack.json new file mode 100644 index 000000000..50f3afa9a --- /dev/null +++ b/domains/mack.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mackcodes", + "email": "mackcodes03@gmail.com" + }, + "record": { + "CNAME": "mayank-port.vercel.app" + } +} diff --git a/domains/mackenzie.json b/domains/mackenzie.json new file mode 100644 index 000000000..10f0a44a3 --- /dev/null +++ b/domains/mackenzie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jojocraftde-dev", + "email": "jojocraftde@proton.me" + }, + "record": { + "A": ["91.200.103.154"] + } +} diff --git a/domains/maclong.json b/domains/maclong.json new file mode 100644 index 000000000..056987142 --- /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" + }, + "record": { + "CNAME": "maclong9.github.io" + } +} diff --git a/domains/macos.notaperson535.json b/domains/macos.notaperson535.json index ab1b08fc4..db686df20 100644 --- a/domains/macos.notaperson535.json +++ b/domains/macos.notaperson535.json @@ -6,6 +6,6 @@ "email": "notAperson939@gmail.com" }, "record": { - "CNAME": "notAperson535.github.io" + "CNAME": "notaperson535.github.io" } } diff --git a/domains/madhav.json b/domains/madhav.json index 641c6dff0..dad17bb84 100644 --- a/domains/madhav.json +++ b/domains/madhav.json @@ -5,6 +5,6 @@ "email": "madhav.v.1996@gmail.com" }, "record": { - "CNAME": "LaBus3.github.io" + "CNAME": "labus3.github.io" } } diff --git a/domains/madhead341.json b/domains/madhead341.json index 3490fc680..59a8bde05 100644 --- a/domains/madhead341.json +++ b/domains/madhead341.json @@ -11,9 +11,7 @@ "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/mafiz.json b/domains/mafiz.json new file mode 100644 index 000000000..3333ff9c9 --- /dev/null +++ b/domains/mafiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pacehutt", + "email": "mafizonly@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/magedibrahim.json b/domains/magedibrahim.json new file mode 100644 index 000000000..234c0ff4c --- /dev/null +++ b/domains/magedibrahim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maqed", + "email": "magedibra@yahoo.com", + "discord": "272808689688248320" + }, + "record": { + "CNAME": "magedibrahim.vercel.app" + } +} diff --git a/domains/magic.json b/domains/magic.json deleted file mode 100644 index d413f2da7..000000000 --- a/domains/magic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Website for skyallaround", - "repo": "https://github.com/skyallaround/skyallaround.github.io", - "owner": { - "username": "skyallaround", - "email": "jr1264464@gmail.com" - }, - "record": { - "CNAME": "skyallaround.github.io" - } -} diff --git a/domains/magitian.json b/domains/magitian.json index feb7c2c8c..537cbd209 100644 --- a/domains/magitian.json +++ b/domains/magitian.json @@ -1,11 +1,11 @@ { "description": "Home for my blogs", - "repo": "https://github.com/themagitian/themagitian.github.io", + "repo": "https://github.com/TheMagitian/themagitian.github.io-old", "owner": { "username": "magitian", "email": "magitian@duck.com" }, "record": { - "CNAME": "themagitian.github.io" + "CNAME": "magitian.vercel.app" } } diff --git a/domains/magma.json b/domains/magma.json index 9417daedf..a375f5d23 100644 --- a/domains/magma.json +++ b/domains/magma.json @@ -1,6 +1,5 @@ { "description": "magma's personal developer profile", - "repo": "https://github.com/mgam-is-dreamin", "owner": { "username": "mgam-is-dreamin", "email": "sacred.lunar.dragon@gmail.com" diff --git a/domains/mahdi.json b/domains/mahdi.json new file mode 100644 index 000000000..64c79ee45 --- /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" + }, + "record": { + "CNAME": "mahdi-hazrati.github.io" + } +} diff --git a/domains/maher-xubair.json b/domains/maher-xubair.json new file mode 100644 index 000000000..8203d9ff8 --- /dev/null +++ b/domains/maher-xubair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maher-xubair", + "email": "za998192@gmail.com" + }, + "record": { + "CNAME": "maher-zubair.vercel.app" + } +} diff --git a/domains/mahesh.json b/domains/mahesh.json index 3fe1b46b6..507cc5270 100644 --- a/domains/mahesh.json +++ b/domains/mahesh.json @@ -4,6 +4,6 @@ "email": "dhingra3673@gmail.com" }, "record": { - "CNAME": "MaheshTheDeveloper.github.io" + "CNAME": "maheshthedeveloper.github.io" } } diff --git a/domains/maheshpaul.json b/domains/maheshpaul.json new file mode 100644 index 000000000..d8529bae1 --- /dev/null +++ b/domains/maheshpaul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maheshpaulj", + "email": "mahesh.paul.j@gmail.com" + }, + "record": { + "CNAME": "maheshpaul.vercel.app" + } +} diff --git a/domains/mahfuz.json b/domains/mahfuz.json new file mode 100644 index 000000000..9d530b98f --- /dev/null +++ b/domains/mahfuz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mahfuzurrahman98", + "email": "mdmahfuzurrahmanarif@gmail.com" + }, + "record": { + "CNAME": "mahfuz.devcms.io" + } +} diff --git a/domains/mahir.json b/domains/mahir.json index bd1a902ee..84e668fbf 100644 --- a/domains/mahir.json +++ b/domains/mahir.json @@ -1,6 +1,5 @@ { "description": "Mahir's Website", - "repo": "https://github.com/mtgsquad", "owner": { "username": "mtgsquad", "email": "mahir@molai.dev", diff --git a/domains/mahmoud-makady.json b/domains/mahmoud-makady.json new file mode 100644 index 000000000..f72f26ac4 --- /dev/null +++ b/domains/mahmoud-makady.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mahmoud-Makady", + "email": "m.makady19@gmail.com" + }, + "record": { + "CNAME": "mahmoud-makady.netlify.app" + } +} diff --git a/domains/mahmud.json b/domains/mahmud.json index 4c5e3849b..3322304f2 100644 --- a/domains/mahmud.json +++ b/domains/mahmud.json @@ -7,6 +7,6 @@ "twitter": "mahmudislam47" }, "record": { - "CNAME": "JBAxB8h7.github.io" + "CNAME": "jbaxb8h7.github.io" } } diff --git a/domains/mahmulp.json b/domains/mahmulp.json new file mode 100644 index 000000000..f54a85c39 --- /dev/null +++ b/domains/mahmulp.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site for Machmul Pratama", + "owner": { + "username": "MahmulP", + "email": "hello@mahmulp.my.id" + }, + "record": { + "CNAME": "mahmulp.my.id" + }, + "proxied": false +} diff --git a/domains/maideveloper.json b/domains/maideveloper.json new file mode 100644 index 000000000..3be85544a --- /dev/null +++ b/domains/maideveloper.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maideveloper", + "email": "maiwebdeveloper@gmail.com" + }, + "record": { + "CNAME": "maideveloper.com" + } +} diff --git a/domains/mail.arman.json b/domains/mail.arman.json index 9e716b82f..be189220d 100644 --- a/domains/mail.arman.json +++ b/domains/mail.arman.json @@ -6,7 +6,6 @@ }, "record": { "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..fdd29a627 --- /dev/null +++ b/domains/mail.codesoft.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesoft@proton.me" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/mail.deadcode.json b/domains/mail.deadcode.json index ccda1e165..2726276ef 100644 --- a/domains/mail.deadcode.json +++ b/domains/mail.deadcode.json @@ -2,10 +2,10 @@ "owner": { "username": "RichardKanshen", "email": "richard@kanshen.click", - "twitter": "@kanskje0", + "twitter": "kanskje0", "discord": "kanshen.uwu", "bluesky": "kanshen.click", - "telegram": "@richardkanskje" + "telegram": "richardkanskje" }, "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], diff --git a/domains/mail.krunch.json b/domains/mail.krunch.json index 45b36bb29..cdeedf725 100644 --- a/domains/mail.krunch.json +++ b/domains/mail.krunch.json @@ -1,8 +1,8 @@ { - "description": "ImprovMX Email", + "description": "ImprovMX Mail Forwarding", "owner": { "username": "RadioactivePotato", - "discord": "krunchiekrunch._." + "discord": "1166013268008120340" }, "record": { "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..01af9da15 --- /dev/null +++ b/domains/mail.lver.json @@ -0,0 +1,14 @@ +{ + "repo": "https://github.com/lverx", + "owner": { + "username": "lverx", + "email": "profoundlvr@gmail.com" + }, + "record": { + "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 5a42cbbb9..1447cd68a 100644 --- a/domains/mail.masseo.json +++ b/domains/mail.masseo.json @@ -4,11 +4,7 @@ "email": "7sz8jlw6h@mozmail.com" }, "record": { - "MX": [ - "mx.zoho.eu", - "mx2.zoho.eu", - "mx3.zoho.eu" - ], + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], "TXT": [ "v=spf1 include:zohomail.eu ~all", "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCBdKJ9pgi76G8kOhX1v4hDt3jros0cBQMLMeKc8L6F8iLBUz78XwP4qRO/1sfdl1vSavi+KsybaNotnLfA2+vA+txPzR/zUEdPWTZhz/Q7iQqo7AuX8hZDY2emDA/0wAkSVAQ1i/KKmSnnR1q6RvJcjPmVCW2gjpw9MOfCwt7PAwIDAQAB" diff --git a/domains/mail.minmit.json b/domains/mail.minmit.json index 9c539779f..bee099b5c 100644 --- a/domains/mail.minmit.json +++ b/domains/mail.minmit.json @@ -1,13 +1,11 @@ { "description": "Mail For My Website", - "repo": "https://github.com/MinMitCoder", "owner": { "username": "MinMitCoder", "email": "minmitgamer@gmail.com" }, "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/mail.mrstickypiston.json b/domains/mail.mrstickypiston.json new file mode 100644 index 000000000..c120e7523 --- /dev/null +++ b/domains/mail.mrstickypiston.json @@ -0,0 +1,14 @@ +{ + "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": [ + "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.senaditya.json b/domains/mail.senaditya.json index 615cdf9fc..c5c016185 100644 --- a/domains/mail.senaditya.json +++ b/domains/mail.senaditya.json @@ -6,7 +6,6 @@ }, "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/mail.shymike.json b/domains/mail.shymike.json index 9fb3de369..8c23c8219 100644 --- a/domains/mail.shymike.json +++ b/domains/mail.shymike.json @@ -4,7 +4,6 @@ }, "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/mail.toasty.json b/domains/mail.toasty.json deleted file mode 100644 index 921d356bb..000000000 --- a/domains/mail.toasty.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "toastyyyxd", - "email": "asaeasaeasae.x10@gmail.com", - "discord": "577480703302959104" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/mail.zvdxc.json b/domains/mail.zvdxc.json deleted file mode 100644 index e089431a4..000000000 --- a/domains/mail.zvdxc.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "A sub-subdomain for use with a mail-forwarder, because the main subdomain zvdxc.is-a.dev has a CNAME and doesnt work. --MX records will be updated later, because Zoho--", - "owner": { - "username": "zvdxc", - "email": "zvdxc11@gmail.com" - }, - "record": { - "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": [ - "zoho-verification=zb90341973.zmverify.zoho.eu", - "v=spf1 include:zohomail.eu ~all" - ] - } -} diff --git a/domains/maintainers.json b/domains/maintainers.json deleted file mode 100644 index 1570b3e57..000000000 --- a/domains/maintainers.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": {}, - "reserved": true -} diff --git a/domains/mak5er.json b/domains/mak5er.json new file mode 100644 index 000000000..7f4cb1582 --- /dev/null +++ b/domains/mak5er.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mak5er", + "telegram": "@Mak5er" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/makarbass.json b/domains/makarbass.json new file mode 100644 index 000000000..35ebdb394 --- /dev/null +++ b/domains/makarbass.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "makarbass" + }, + "record": { + "URL": "https://makarbass.github.io/" + } +} diff --git a/domains/mamun.json b/domains/mamun.json index d7f8436e0..fcc58fa39 100644 --- a/domains/mamun.json +++ b/domains/mamun.json @@ -1,6 +1,5 @@ { "description": "Mamun's website", - "repo": "https://github.com/mamunhpath", "owner": { "username": "mamunhpath", "email": "mamunhpath@hotmail.com" diff --git a/domains/man.json b/domains/man.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/man.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/manash.json b/domains/manash.json index bd5c50311..d66adac44 100644 --- a/domains/manash.json +++ b/domains/manash.json @@ -1,6 +1,5 @@ { "description": "Manash Sonowal - DEV", - "repo": "https://github.com/msonowal", "owner": { "username": "msonowal", "email": "manash149@gmail.com" diff --git a/domains/manel.json b/domains/manel.json new file mode 100644 index 000000000..04beb3d18 --- /dev/null +++ b/domains/manel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alcoceba", + "email": "manelalcoceba@gmail.com" + }, + "record": { + "CNAME": "alcoceba.github.io" + } +} diff --git a/domains/manhnguyen18.json b/domains/manhnguyen18.json new file mode 100644 index 000000000..44ffe2526 --- /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" + }, + "record": { + "CNAME": "manh-nguyen-blogs.vercel.app" + } +} diff --git a/domains/manhtran.json b/domains/manhtran.json new file mode 100644 index 000000000..a17d5e061 --- /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" + }, + "record": { + "CNAME": "tranducmanh-info.web.app" + }, + "proxied": true +} diff --git a/domains/maninder.json b/domains/maninder.json index f62a88fe1..023de3b83 100644 --- a/domains/maninder.json +++ b/domains/maninder.json @@ -1,6 +1,5 @@ { "description": "My Github Page!", - "repo": "https://github.com/github4maninder", "owner": { "username": "github4maninder", "email": "iamgoat@tutanota.com" diff --git a/domains/manish-madi.json b/domains/manish-madi.json new file mode 100644 index 000000000..fe4f90072 --- /dev/null +++ b/domains/manish-madi.json @@ -0,0 +1,11 @@ +{ + "description": "Manish's Personal Website", + "repo": "https://github.com/m-manish03/m-manish03", + "owner": { + "username": "m-manish03", + "email": "manish.rebel14@gmail.com" + }, + "record": { + "CNAME": "m-manish03.github.io" + } +} diff --git a/domains/manishgautam.json b/domains/manishgautam.json new file mode 100644 index 000000000..19bdb8097 --- /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" + }, + "record": { + "CNAME": "manishmg3994.github.io" + } +} diff --git a/domains/manodeepray.json b/domains/manodeepray.json index 0562ca366..c2f586aac 100644 --- a/domains/manodeepray.json +++ b/domains/manodeepray.json @@ -5,6 +5,6 @@ "email": "manodeepray@gmail.com" }, "record": { - "CNAME": "Manodeepray.github.io" + "CNAME": "manodeepray.github.io" } } diff --git a/domains/manoj.json b/domains/manoj.json new file mode 100644 index 000000000..ddfb6adbd --- /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" + }, + "record": { + "CNAME": "manojinaik.github.io" + } +} diff --git a/domains/manojbarman.json b/domains/manojbarman.json index eeff41055..edfc993e2 100644 --- a/domains/manojbarman.json +++ b/domains/manojbarman.json @@ -4,7 +4,6 @@ "twitter": "itsmanojb" }, "description": "My personal website", - "repo": "https://github.com/itsmanojb", "record": { "URL": "https://manojbarman.in" } diff --git a/domains/mantas.json b/domains/mantas.json index ec487c071..52d8c98de 100644 --- a/domains/mantas.json +++ b/domains/mantas.json @@ -1,6 +1,5 @@ { "description": "Mantas is a developer!", - "repo": "https://github.com/mantooc", "owner": { "username": "mantooc", "email": "mantasnugaras@gmail.com" diff --git a/domains/manuel-garcia-nieto.json b/domains/manuel-garcia-nieto.json new file mode 100644 index 000000000..2b4661dbf --- /dev/null +++ b/domains/manuel-garcia-nieto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mGarciaNieto", + "email": "mgarcianieto@gmail.com" + }, + "record": { + "CNAME": "mGarciaNieto.github.io" + } +} diff --git a/domains/manuelramallo.json b/domains/manuelramallo.json new file mode 100644 index 000000000..aeb8928b5 --- /dev/null +++ b/domains/manuelramallo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ManuelRamallo", + "email": "mramallodiaz96@gmail.com" + }, + "record": { + "CNAME": "manuelramallo.github.io" + } +} diff --git a/domains/manugeni.json b/domains/manugeni.json new file mode 100644 index 000000000..27d9bb359 --- /dev/null +++ b/domains/manugeni.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "manugeni" + }, + "record": { + "CNAME": "manugeni.github.io" + } +} diff --git a/domains/manulucenaportfolio.json b/domains/manulucenaportfolio.json new file mode 100644 index 000000000..e0b6ba1ec --- /dev/null +++ b/domains/manulucenaportfolio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "manulucena12", + "email": "mlucenasalas@gmail.com" + }, + "record": { + "CNAME": "manuportolio.netlify.app" + } + } + diff --git a/domains/map.mrdiamond.json b/domains/map.mrdiamond.json new file mode 100644 index 000000000..5fafbf9d2 --- /dev/null +++ b/domains/map.mrdiamond.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "record": { + "A": ["129.146.51.207"] + }, + "proxied": false +} diff --git a/domains/maps.vulcanocraft.json b/domains/maps.vulcanocraft.json index e9e29e75d..06fb36cad 100644 --- a/domains/maps.vulcanocraft.json +++ b/domains/maps.vulcanocraft.json @@ -4,7 +4,6 @@ "discord": "814891541205876767", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sIf_Ps8WbH_gxCdpTRX4pW-t2UH0uDm6j9dZbmDUM4joSTKNzlCq_vILFhEnBaffuUmYlpK7H0D29oZkl_agqgJ54Py6zm0E3IbFzbD7d5MIZeK_FXwpDb4yVV1dUMqB2iwIRG8dteCaE1dSIxMrckwuKxHR4QQR3k3_lr5J9Gx5RHIqYv3aWcVvgto8OtLX77SAywaz_b9ApXLHcokyGn20R4olg-7F_7OxFS6evQlnUabcf9sM4g-FkmygM_lDwCkjYmlXfTFmgMvE3XFpmheQY0yDtZSOKdGhmCGoxQTygyQuBlqmLd8GLnCVfEmCBc2oS4xLI1KzT5mb3rYbDA.h31K0cwMVajgtr9_PBGCvg.CzF5EYfU9U2LnSrayx3TCx2n3FHTG8ywzS6TONZmJdBWIB2GOg5hlXXYk0CMRVOO62DpZ_P1HGsN3utzVxNRJExKJHCr7VUCpJ0sPYpd8KdBfpEKHwJ8A3tHFPXqHYwx.0q-hLeHabXueOUCtZtJV4Q" }, - "record": { "CNAME": "vulcanomap.pages.dev" } diff --git a/domains/maqbool.json b/domains/maqbool.json new file mode 100644 index 000000000..e7516a453 --- /dev/null +++ b/domains/maqbool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Maqbool", + "email": "abdullah.maqbool.ahmad@gmail.com" + }, + "record": { + "CNAME": "abdullahmaqbool-portfolio.vercel.app" + } +} diff --git a/domains/marc.json b/domains/marc.json index 414c35ef8..0d55bbb8a 100644 --- a/domains/marc.json +++ b/domains/marc.json @@ -1,6 +1,5 @@ { "description": "Marc Gruita is a Developer!", - "repo": "https://github.com/marcgr9", "owner": { "username": "marcgr9", "email": "marc@gruita.ro" diff --git a/domains/marcelomrwin.json b/domains/marcelomrwin.json index c22c49bf7..e11f535f7 100644 --- a/domains/marcelomrwin.json +++ b/domains/marcelomrwin.json @@ -1,6 +1,5 @@ { "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" diff --git a/domains/marco-voegeli.json b/domains/marco-voegeli.json new file mode 100644 index 000000000..c92231ffe --- /dev/null +++ b/domains/marco-voegeli.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Marco-Voegeli", + "email": "voegelijjm@gmail.com" + }, + "record": { + "CNAME": "marco-voegeli.github.io" + } +} diff --git a/domains/marcoleder.json b/domains/marcoleder.json new file mode 100644 index 000000000..5ca478b51 --- /dev/null +++ b/domains/marcoleder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marcoleder", + "email": "info@marcoleder.ch" + }, + "record": { + "URL": "https://marcoleder.ch" + } +} diff --git a/domains/marcos.json b/domains/marcos.json new file mode 100644 index 000000000..2ad88a6d2 --- /dev/null +++ b/domains/marcos.json @@ -0,0 +1,10 @@ +{ + "description": "Developer portfolio", + "owner": { + "username": "mtoranzo", + "email": "mtoranzo@gmail.com" + }, + "record": { + "CNAME": "mtoranzo.github.io" + } +} diff --git a/domains/mardino.json b/domains/mardino.json new file mode 100644 index 000000000..e0c2bec3a --- /dev/null +++ b/domains/mardino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zdienos", + "email": "zdienos@yahoo.com" + }, + "record": { + "CNAME": "zdienos.com" + } +} diff --git a/domains/mariano-avila.json b/domains/mariano-avila.json index d5db86d13..0671c1ad9 100644 --- a/domains/mariano-avila.json +++ b/domains/mariano-avila.json @@ -4,7 +4,7 @@ "owner": { "username": "dxravage", "email": "marianoavilaj4@gmail.com", - "twitter": "@MarianoAvilaC" + "twitter": "MarianoAvilaC" }, "record": { "CNAME": "dxravage.github.io" diff --git a/domains/mario-papetti.json b/domains/mario-papetti.json new file mode 100644 index 000000000..4b2b42e82 --- /dev/null +++ b/domains/mario-papetti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mario-dango", + "email": "mp.robots@gmail.com" + }, + "record": { + "CNAME": "mario-dango.github.io" + } +} diff --git a/domains/marjuz.json b/domains/marjuz.json new file mode 100644 index 000000000..6c9415def --- /dev/null +++ b/domains/marjuz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "marjuzdev" + }, + "record": { + "CNAME": "marjuz.netlify.app" + } +} diff --git a/domains/markaguirre.json b/domains/markaguirre.json new file mode 100644 index 000000000..a2abe4a80 --- /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" + }, + "record": { + "CNAME": "markaguirre.netlify.app" + } +} diff --git a/domains/markasaad.json b/domains/markasaad.json new file mode 100644 index 000000000..4840de2d5 --- /dev/null +++ b/domains/markasaad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voltonik", + "email": "markasaadramzy@gmail.com" + }, + "record": { + "CNAME": "markasaad.vercel.app" + } +} diff --git a/domains/markblum.json b/domains/markblum.json index 073ee14d4..11b3bfc81 100644 --- a/domains/markblum.json +++ b/domains/markblum.json @@ -4,6 +4,6 @@ "email": "mark@el-blum.de" }, "record": { - "CNAME": "el-blum.selfhost.co" + "CNAME": "dyndns.el-blum.de" } } diff --git a/domains/markos.json b/domains/markos.json index deb080298..a485cc764 100644 --- a/domains/markos.json +++ b/domains/markos.json @@ -1,6 +1,5 @@ { "description": "Hello my name is Markos Dimitsas and I am from Greece.", - "repo": "https://github.com/markdimi", "owner": { "username": "markdimi", "email": "markdimitsas@gmail.com" diff --git a/domains/marlon.json b/domains/marlon.json new file mode 100644 index 000000000..6d5a8ae76 --- /dev/null +++ b/domains/marlon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MarlonDevs", + "email": "marlonmogollon13@gmail.com" + }, + "record": { + "CNAME": "marlondevs.github.io" + } +} diff --git a/domains/marlonbaatjes.json b/domains/marlonbaatjes.json new file mode 100644 index 000000000..b364129b9 --- /dev/null +++ b/domains/marlonbaatjes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mdesignscode", + "email": "marlonbaatjes62@gmail.com" + }, + "record": { + "CNAME": "marlonbaatjes.vercel.app" + } +} diff --git a/domains/marten-mrfc.json b/domains/marten-mrfc.json new file mode 100644 index 000000000..deb6b4787 --- /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" + }, + "record": { + "CNAME": "marten-mrfc.github.io" + } +} diff --git a/domains/martin.json b/domains/martin.json new file mode 100644 index 000000000..e714b1a9b --- /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" + }, + "record": { + "CNAME": "martinshaw.github.io" + } +} diff --git a/domains/martinvruiz.json b/domains/martinvruiz.json new file mode 100644 index 000000000..e1092fd19 --- /dev/null +++ b/domains/martinvruiz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "martinvruiz", + "email": "martinvruiz10@gmail.com", + "discord": "martinvruiz10" + }, + "record": { + "CNAME": "portfoliomvr.vercel.app" + } +} diff --git a/domains/marufcseuu.json b/domains/marufcseuu.json new file mode 100644 index 000000000..35d677655 --- /dev/null +++ b/domains/marufcseuu.json @@ -0,0 +1,10 @@ +{ + "description": "0xmaruf.is-a.dev domain", + "owner": { + "username": "marufms4", + "email": "marufsm4@gmail.com" + }, + "record": { + "CNAME": "marufcse.netlify.app" + } +} diff --git a/domains/masdzub.json b/domains/masdzub.json new file mode 100644 index 000000000..a39de10c1 --- /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" + }, + "record": { + "CNAME": "masdzub-github-io.pages.dev" + } +} diff --git a/domains/masood.json b/domains/masood.json index aad69bdb4..d3285923a 100644 --- a/domains/masood.json +++ b/domains/masood.json @@ -1,6 +1,5 @@ { "description": "Masood Mohammad's Personal Website", - "repo": "https://github.com/masoodbinmohammad", "owner": { "username": "masoodbinmohammad", "email": "masoodbinmohammad@hotmail.com" diff --git a/domains/matei.json b/domains/matei.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/matei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/mateogariboglio.json b/domains/mateogariboglio.json new file mode 100644 index 000000000..30d20d95b --- /dev/null +++ b/domains/mateogariboglio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mateo-404", + "discord": "gary_______" + }, + "record": { + "CNAME": "portfolio-mateo-404s-projects.vercel.app" + } +} diff --git a/domains/mateoguidi.json b/domains/mateoguidi.json new file mode 100644 index 000000000..205e8b613 --- /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" + }, + "record": { + "CNAME": "mateoguidi.github.io" + } +} diff --git a/domains/mateus.json b/domains/mateus.json new file mode 100644 index 000000000..cafec5c30 --- /dev/null +++ b/domains/mateus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "costamateus", + "email": "mateus@costamateus.com.br" + }, + "record": { + "A": ["147.79.84.80"] + } +} diff --git a/domains/mateuseap.json b/domains/mateuseap.json new file mode 100644 index 000000000..a23d10a02 --- /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" + }, + "record": { + "CNAME": "mateuseap.github.io" + } +} diff --git a/domains/mateusz.json b/domains/mateusz.json new file mode 100644 index 000000000..f7047966b --- /dev/null +++ b/domains/mateusz.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Pand3moniuMx3" + }, + "record": { + "CNAME": "mateuszmirecki.netlify.app" + } +} diff --git a/domains/matheusdev.json b/domains/matheusdev.json new file mode 100644 index 000000000..0b5743747 --- /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" + }, + "record": { + "CNAME": "portifolio-swart-five-65.vercel.app" + } +} diff --git a/domains/mathiscool.json b/domains/mathiscool.json index 0195c7f09..f1d1e9d31 100644 --- a/domains/mathiscool.json +++ b/domains/mathiscool.json @@ -6,6 +6,6 @@ "email": "testbot-github@gmail.com" }, "record": { - "CNAME": "Mathiscool.github.io" + "CNAME": "mathiscool.github.io" } } diff --git a/domains/matt-murdock.json b/domains/matt-murdock.json new file mode 100644 index 000000000..c9f908960 --- /dev/null +++ b/domains/matt-murdock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xr-coder", + "email": "nryadav7412@gmail.com" + }, + "record": { + "NS": ["anahi.ns.cloudflare.com", "darl.ns.cloudflare.com"] + } +} diff --git a/domains/matt.json b/domains/matt.json index 50ac3d430..9442eee49 100644 --- a/domains/matt.json +++ b/domains/matt.json @@ -1,6 +1,5 @@ { "description": "Matt is a Developer!", - "repo": "https://github.com/Tweak4141", "owner": { "username": "tweak4141", "email": "tweak@talosbot.xyz" diff --git a/domains/matt3o0.json b/domains/matt3o0.json index c2f8e3ce5..f39094035 100644 --- a/domains/matt3o0.json +++ b/domains/matt3o0.json @@ -4,6 +4,6 @@ "email": "duvbolone@gmail.com" }, "record": { - "URL": "https://matt3o0.vercel.app" + "CNAME": "matt3o0.vercel.app" } } diff --git a/domains/mattcheng.json b/domains/mattcheng.json new file mode 100644 index 000000000..780913a63 --- /dev/null +++ b/domains/mattcheng.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mattchengg" + }, + "record": { + "CNAME": "mattchengg.github.io" + } +} diff --git a/domains/mattew.json b/domains/mattew.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/mattew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/mattw.json b/domains/mattw.json index 7b365e300..cd5c53691 100644 --- a/domains/mattw.json +++ b/domains/mattw.json @@ -1,6 +1,5 @@ { "description": "Matt is a Developer!", - "repo": "https://github.com/Tweak4141", "owner": { "username": "tweak4141", "email": "tweak@talosbot.xyz" diff --git a/domains/mau.json b/domains/mau.json new file mode 100644 index 000000000..2330e1c5a --- /dev/null +++ b/domains/mau.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mamv2137", + "email": "mamv.2137@gmail.com" + }, + "record": { + "CNAME": "mamv2137.github.io" + } +} diff --git a/domains/maxwelbm.json b/domains/maxwelbm.json new file mode 100644 index 000000000..e7f029e57 --- /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" + }, + "record": { + "CNAME": "maxwelbm.github.io" + } +} diff --git a/domains/maybe.json b/domains/maybe.json new file mode 100644 index 000000000..630ec0d94 --- /dev/null +++ b/domains/maybe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "matei.thoma@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/mayerfried.json b/domains/mayerfried.json index 85b531275..cfe12d2a5 100644 --- a/domains/mayerfried.json +++ b/domains/mayerfried.json @@ -1,6 +1,5 @@ { "description": "Mayer Fried Is A Dev", - "repo": "https://github.com/mfried40", "owner": { "username": "mfried40", "email": "mayer@mayerfried.com" diff --git a/domains/mayuresh.json b/domains/mayuresh.json new file mode 100644 index 000000000..90a6ac7f5 --- /dev/null +++ b/domains/mayuresh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mayur1377", + "email": "mayuresh1377@gmail.com" + }, + "record": { + "CNAME": "iammayur.vercel.app" + } +} diff --git a/domains/mayurraut.json b/domains/mayurraut.json new file mode 100644 index 000000000..31089e679 --- /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" + }, + "record": { + "CNAME": "razobeckett.github.io" + } +} diff --git a/domains/mazengohar.json b/domains/mazengohar.json index 79bee6893..0cf5019b9 100644 --- a/domains/mazengohar.json +++ b/domains/mazengohar.json @@ -1,6 +1,5 @@ { "description": "Mazen Gohar - DEV", - "repo": "https://github.com/MazenGohar", "owner": { "username": "MazenGohar", "email": "mizoiology@gmail.com" diff --git a/domains/mb.json b/domains/mb.json index 246c7c3e5..910e20001 100644 --- a/domains/mb.json +++ b/domains/mb.json @@ -1,6 +1,5 @@ { "description": "Michael's personal developer website", - "repo": "https://github.com/mbrav", "owner": { "username": "mbrav", "email": "mbrav@protonmail.com" diff --git a/domains/mc.3gee.json b/domains/mc.3gee.json new file mode 100644 index 000000000..754a634a0 --- /dev/null +++ b/domains/mc.3gee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "record": { + "CNAME": "gold.magmanode.com" + } +} diff --git a/domains/mc.js.json b/domains/mc.js.json new file mode 100644 index 000000000..697099ead --- /dev/null +++ b/domains/mc.js.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "dev@j.is-a.dev" + }, + "record": { + "NS": [ + "galileo.aternos.org", + "columbus.aternos.org" + ] + } +} diff --git a/domains/mc.sono.json b/domains/mc.sono.json deleted file mode 100644 index fbc1742ff..000000000 --- a/domains/mc.sono.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "getSono", - "email": "sono.arbeit@gmail.com" - }, - "record": { - "A": ["45.92.217.48"] - } -} diff --git a/domains/mc.vulcanocraft.json b/domains/mc.vulcanocraft.json index 09f897f17..f1c58414c 100644 --- a/domains/mc.vulcanocraft.json +++ b/domains/mc.vulcanocraft.json @@ -4,7 +4,6 @@ "discord": "814891541205876767", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WYB8jKD71t5bNPCzGO99a6kcjoLLipJVLzHxhAqoPUcGLm8MAPJRa4WMlKhCDM0eN49rQ5EHzL08go2s05jE12ezxmZ92m58MJ9ztAlF16TOxCTI4Vy3hFknZlOWhIdE69DhINJT1sG1ceWLY_oGk758-GIvBAQrDVPB-5m1nYEpp2LYipiMngwgZDvz0gLF0BXXRrP7b74phJUmw39nK1_gE1uJFKuDknWGYlCxPfhJ1aNQEAHHxgbuVghaLCv3tIqrh29j99dXZjw8wFxmaubcew0eei1NaG_An_OzbgwsTJn3QiAnanYRtnSaMGBGTHzhJ3OWx9st5Phxfut7lQ.qPrZy8EOYsGDVaIXF-Ilcg.CXoxIk3NL2J6h0tipv9pRe47YDHQ3Vl7VB58l0tdPtSTE_guNUoBwxvNOLkwj5pozh3oVKlqdGH4sego6PCw1blqG5nIPKq3Lju0-jdQr_jH74BrOJ6Vp4VOY-m0-2kG.0kLSV4Xse1p9_QqEod0M6g" }, - "record": { "CNAME": "f14fb61a3cd4425fe52de16b257ca673.ipv4.tcpshield.com" } diff --git a/domains/mcalec.json b/domains/mcalec.json new file mode 100644 index 000000000..70d5716a3 --- /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" + }, + "record": { + "CNAME": "mcalec.dev" + } +} diff --git a/domains/mcstatus.json b/domains/mcstatus.json index 1adb8b379..37f3924e7 100644 --- a/domains/mcstatus.json +++ b/domains/mcstatus.json @@ -5,7 +5,7 @@ "discord": "1167825360151380032" }, "record": { - "A": ["216.24.57.1"], + "A": ["89.106.200.1"], "TXT": [ "google-site-verification=nDh74FzhzmLwzfX4wZWHjZOjNXmTCKyuw89TGKOIfkE" ] diff --git a/domains/me.violet.json b/domains/me.violet.json new file mode 100644 index 000000000..f54e6f023 --- /dev/null +++ b/domains/me.violet.json @@ -0,0 +1,9 @@ +{ + "description": "Personal Page", + "owner": { + "username": "violetlaire" + }, + "record": { + "CNAME": "portfolio-nine-delta-53.vercel.app" + } +} diff --git a/domains/medinilla.json b/domains/medinilla.json new file mode 100644 index 000000000..257444038 --- /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" + }, + "record": { + "URL": "https://cmedinilla.github.io" + } +} diff --git a/domains/mega.json b/domains/mega.json index b93865291..d9dd89558 100644 --- a/domains/mega.json +++ b/domains/mega.json @@ -1,6 +1,5 @@ { "description": "My Personal website and possibly an API", - "repo": "https://github.com/MegaDevGuy", "owner": { "username": "MegaDevGuy", "twitter": "_Mega_Dev_" diff --git a/domains/meghdip.json b/domains/meghdip.json index 3365c4c37..9fe8d102e 100644 --- a/domains/meghdip.json +++ b/domains/meghdip.json @@ -5,6 +5,6 @@ "discord": "479631349167423509" }, "record": { - "CNAME": "karmakarmeghdip.github.io" + "CNAME": "meghdip.vercel.app" } -} +} \ No newline at end of file diff --git a/domains/mehdigrdev.json b/domains/mehdigrdev.json new file mode 100644 index 000000000..45662c47c --- /dev/null +++ b/domains/mehdigrdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mehdi-GR-Dev", + "email": "Mehdi_is_my_Email@proton.me" + }, + "record": { + "URL": "https://portfolio-seven-gold-50.vercel.app/" + } +} diff --git a/domains/mehedihjim.json b/domains/mehedihjim.json new file mode 100644 index 000000000..e2c02c3e8 --- /dev/null +++ b/domains/mehedihjim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mehedihjim", + "email": "mhjim.info@gmail.com" + }, + "record": { + "CNAME": "mehedihjim.github.io" + } +} diff --git a/domains/mehrdad.json b/domains/mehrdad.json new file mode 100644 index 000000000..e11f1e8cb --- /dev/null +++ b/domains/mehrdad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mehrdad-shokri", + "email": "code.poet95@gmail.com" + }, + "record": { + "CNAME": "mehrdad.ai" + } +} diff --git a/domains/mehrshad.json b/domains/mehrshad.json new file mode 100644 index 000000000..ea89beb26 --- /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" + }, + "record": { + "CNAME": "saintscratchy.github.io" + } +} diff --git a/domains/mehul.json b/domains/mehul.json index 545045737..2b57a89e4 100644 --- a/domains/mehul.json +++ b/domains/mehul.json @@ -1,10 +1,10 @@ { - "description" : "My Portfolio Website", + "description": "My Portfolio Website", "owner": { - "username" : "psvm-tallman", + "username": "psvm-tallman", "email": "mehulsavio@gmail.com" }, "record": { - "URL" : "https://mehul-uttam-portfolio.vercel.app" + "URL": "https://mehul-uttam-portfolio.vercel.app" } } diff --git a/domains/mehulpathak.json b/domains/mehulpathak.json new file mode 100644 index 000000000..411a745f4 --- /dev/null +++ b/domains/mehulpathak.json @@ -0,0 +1,10 @@ +{ + "description": "Mehul Pathak's Portfolio", + "owner": { + "username": "m3hu1", + "email": "pathakkmehul@gmail.com" + }, + "record": { + "URL": "https://mehulpathak.vercel.app/" + } +} diff --git a/domains/mekota.json b/domains/mekota.json deleted file mode 100644 index 056da1b64..000000000 --- a/domains/mekota.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "mikotohime", - "email": "exosk1ll.twl@gmail.com" - }, - "record": { - "A": ["194.28.226.129"] - } -} diff --git a/domains/melainegerard.json b/domains/melainegerard.json index 211289550..98b248579 100644 --- a/domains/melainegerard.json +++ b/domains/melainegerard.json @@ -1,6 +1,5 @@ { "description": "Redirect to my personal website", - "repo": "https://github.com/MelaineGerard", "owner": { "username": "MelaineGerard", "email": "pro@melaine-gerard.fr", diff --git a/domains/melatonin.json b/domains/melatonin.json new file mode 100644 index 000000000..70b203dc4 --- /dev/null +++ b/domains/melatonin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heheleo", + "email": "leowasntfound@gmail.com" + }, + "record": { + "CNAME": "heheleo.github.io" + } +} diff --git a/domains/melih.json b/domains/melih.json new file mode 100644 index 000000000..47878c1d3 --- /dev/null +++ b/domains/melih.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mdegis", + "email": "melihdegis@gmail.com" + }, + "record": { + "CNAME": "mdegis.com" + } +} diff --git a/domains/meloun7.json b/domains/meloun7.json index c1275092f..d9d9bc774 100644 --- a/domains/meloun7.json +++ b/domains/meloun7.json @@ -1,6 +1,5 @@ { "description": "My personal website", - "repo": "https://github.com/Whtery1087", "owner": { "username": "Whtery1087", "email": "beelandsofficialmc@gmail.com" diff --git a/domains/memo.json b/domains/memo.json new file mode 100644 index 000000000..13a1956d7 --- /dev/null +++ b/domains/memo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gmglln", + "email": "gmogollan@gmail.com" + }, + "record": { + "URL": "https://github.com/gmglln" + } +} diff --git a/domains/menn.json b/domains/menn.json new file mode 100644 index 000000000..cef07f018 --- /dev/null +++ b/domains/menn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hedgehog-menn", + "email": "kp.thananchai@gmail.com", + "discord": "26623men" + }, + "record": { + "CNAME": "hedgehog-menn.vercel.app" + } +} diff --git a/domains/meow.json b/domains/meow.json new file mode 100644 index 000000000..00ab0224a --- /dev/null +++ b/domains/meow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "CNAME": "ukriu.pages.dev" + } +} diff --git a/domains/mertdemir.json b/domains/mertdemir.json new file mode 100644 index 000000000..3108178a2 --- /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" + }, + "record": { + "CNAME": "mertdemir0.github.io" + } +} diff --git a/domains/mesflit.json b/domains/mesflit.json index 512bbba91..8f620936f 100644 --- a/domains/mesflit.json +++ b/domains/mesflit.json @@ -1,4 +1,9 @@ { - "owner": { "username": "mesflit", "email": "benomerfaruk11@gmail.com" }, - "record": { "URL": "https://mesflit.github.io/" } + "owner": { + "username": "mesflit", + "email": "benomerfaruk11@gmail.com" + }, + "record": { + "URL": "https://mesflit.github.io/" + } } diff --git a/domains/mesren2.json b/domains/mesren2.json new file mode 100644 index 000000000..cc68a7162 --- /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" + }, + "record": { + "CNAME": "mesren2.github.io" + } +} diff --git a/domains/meteor.sono.json b/domains/meteor.sono.json deleted file mode 100644 index a7888b809..000000000 --- a/domains/meteor.sono.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "getSono", - "discord": "1222250424309121145", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AOcSmXH1xmgRQpt6st_1uHBuvjvjFiB8evwad25Ly9EDe8_isycXxLJlEbs8EodOndHHQDqNGW7QJ036O-rdpZcI1LHJScmTwWSawgNyXtFS5zoE52yScjNB0xmmU6BFFr7_3M7NOYoLEAKzgjWkX96OWSoFvKqTCoe5_pBn4EyPd1vhZ0_FcpvmY_sGsWpHR1IdfVDnmWvyxMo0UyjoY-8zaFVEsgRxGWY2lTqmQYyFcrV6fuqCSLsZ9IK_GNAcE1uascEoTrqrlVt6smO_wApzuVEt-TOffvKpqFq_uwxgYgYVcKs90zkEGmkqN0tQDo3wTDCJAx_fRSIx98sLhQ.U6p_R4dGEyf0oxaEPy7rAA.K5BiGr3XphTRo8BoYVmJUo-koNgd8thz0rMMuSTbe7tE3Rn4Wy7vVtMJRL8DJ3dOKzvtaspAa9_qSrqc0mx3Uy6iPMh0JCBoSZPSTCHn1SA.kTMtTIzH5hyAxJxBS6qojA" - }, - "record": { - "CNAME": "getsono.github.io" - } -} diff --git a/domains/mew.json b/domains/mew.json new file mode 100644 index 000000000..922728d65 --- /dev/null +++ b/domains/mew.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meewmeew", + "email": "mauminh.nguyen@gmail.com" + }, + "record": { + "NS": ["bart.ns.cloudflare.com", "karina.ns.cloudflare.com"] + } +} diff --git a/domains/meyer-pidiache.json b/domains/meyer-pidiache.json new file mode 100644 index 000000000..96b632798 --- /dev/null +++ b/domains/meyer-pidiache.json @@ -0,0 +1,10 @@ +{ + "description": "Blog", + "owner": { + "username": "meyer-pidiache", + "email": "pidiache@duck.com" + }, + "record": { + "CNAME": "meyer-pidiache.github.io" + } +} diff --git a/domains/mgb.json b/domains/mgb.json new file mode 100644 index 000000000..90e6f42ee --- /dev/null +++ b/domains/mgb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mbonum", + "email": "m.bonum@protonmail.com" + }, + "record": { + "CNAME": "mbonum.github.io" + } +} diff --git a/domains/mhzen.json b/domains/mhzen.json new file mode 100644 index 000000000..21563a524 --- /dev/null +++ b/domains/mhzen.json @@ -0,0 +1,10 @@ +{ + "description": "Personal site", + "owner": { + "username": "mhzen", + "email": "mhzen@proton.me" + }, + "record": { + "CNAME": "mhzen.pages.dev" + } +} diff --git a/domains/miaomingc.json b/domains/miaomingc.json new file mode 100644 index 000000000..31b7e00be --- /dev/null +++ b/domains/miaomingc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "miaomingc", + "email" : "miaomingc@outlook.com" + }, + "record": { + "A": ["204.194.66.196"], + "AAAA": ["2001:470:18:c89::2"] + } +} diff --git a/domains/micah.json b/domains/micah.json index ebe809748..97715e06f 100644 --- a/domains/micah.json +++ b/domains/micah.json @@ -1,6 +1,5 @@ { "description": "Micah Lindley is a web developer.", - "repo": "https://github.com/micahlt", "owner": { "username": "micahlt", "email": "hi@micahlindley.com" diff --git a/domains/micahb.json b/domains/micahb.json new file mode 100644 index 000000000..f9ce68b13 --- /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" + }, + "record": { + "URL": "https://micahb.net" + } +} diff --git a/domains/michaelmuthomi.json b/domains/michaelmuthomi.json new file mode 100644 index 000000000..8b0d8702e --- /dev/null +++ b/domains/michaelmuthomi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "michaelmuthomi", + "email": "lit911call@gmail.com" + }, + "record": { + "CNAME": "michael-portfolio-green.vercel.app" + } +} diff --git a/domains/midair.json b/domains/midair.json index 5b813cc18..f6e5c0c37 100644 --- a/domains/midair.json +++ b/domains/midair.json @@ -7,6 +7,6 @@ "twitter": "M16a1r" }, "record": { - "CNAME": "zMidair.github.io" + "CNAME": "zmidair.github.io" } } diff --git a/domains/mig.json b/domains/mig.json index 2f53bb6d0..fd64f6d89 100644 --- a/domains/mig.json +++ b/domains/mig.json @@ -1,13 +1,14 @@ { - "description": "This subdomain points to my portfolio website.", + "description": "This subdomain points to my portfolio website. https://nextjs-portfolio-ten-navy.vercel.app/ is the link for a preview of the website", "owner": { "username": "miguelaram2016", - "email": "miguelaram2016@utexas.edu", + "email": "miguelcodes7@gmail.com", "twitter": "miguelcodes7", "discord": "747499334383304755", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sh5h8IcwANNjL4Cu_olrTjTuGNiBnihpvp8tYD3PQoJ0Qo8zJwh2wh93m0mxtB0JUmQyLHgMhqwNkRTfDkbQtIiMsJTMBpfwuekG-rohCXC3Bz1X674p58mTiI9BL1mYZjy4n3iNUltRrpEDIY_tQ91-deuB0vZmhFP7Ih-PU18_a7SFhrMTCGFnEpy5ioRBb_7-XaevqZU0ObJ9TXnuX5ZrcUs8dOKdPXQkUvh1T3X4ENkNkqxEX9SrC21ZUPsu0eBsinx8OWhVACBF-v6WsNErv4dYlxvlUF0s6i6H4ies_u47cXuD_ytOZVF19KRHv0mtC4Zq9FxKqvxQNpS2yA.ATDrqWU61Q7pAeI0iOYG3Q.WUBkDKZeYnntdHyh4t_qL56ZUvo4xiK6dF_DvM8i0aVxoooMhunELz8oFORqt_1lt3IMLw_aAWwzmBl4LtPa-frLObpHRe3QHeAhAb919XU.uvFZv2MiYxP-UoMM0DhLSA" + "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": { - "A": ["75.2.60.5"] + "A": ["76.76.21.21"] } } diff --git a/domains/miguel.json b/domains/miguel.json index bf19dfe0d..a9a51cb47 100644 --- a/domains/miguel.json +++ b/domains/miguel.json @@ -1,6 +1,5 @@ { "description": "Miguel Piedrafita's website", - "repo": "https://github.com/m1guelpf", "owner": { "username": "m1guelpf", "email": "soy@miguelpiedrafita.com" diff --git a/domains/miguelsole.json b/domains/miguelsole.json new file mode 100644 index 000000000..6140e8162 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/mihchis.json b/domains/mihchis.json new file mode 100644 index 000000000..46bb8febe --- /dev/null +++ b/domains/mihchis.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mihchis" + }, + "record": { + "CNAME": "mihchis.github.io" + } +} diff --git a/domains/mike.json b/domains/mike.json index 41b595b2f..11cfb8e80 100644 --- a/domains/mike.json +++ b/domains/mike.json @@ -1,6 +1,5 @@ { "description": "Mike's portfolio website and blog", - "repo": "https://github.com/mdrobbins", "owner": { "username": "mdrobbins", "email": "mikedrobbins@gmail.com" diff --git a/domains/mikevdberge.json b/domains/mikevdberge.json new file mode 100644 index 000000000..92498766b --- /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" + }, + "record": { + "CNAME": "mikevdberge.github.io" + } +} diff --git a/domains/miko.json b/domains/miko.json new file mode 100644 index 000000000..762f03e35 --- /dev/null +++ b/domains/miko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mspratama", + "email": "mikospratama@gmail.com" + }, + "record": { + "CNAME": "mikosp.pages.dev" + } +} diff --git a/domains/milaan.json b/domains/milaan.json new file mode 100644 index 000000000..e0e4bec57 --- /dev/null +++ b/domains/milaan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "milandangol", + "email": "milandangol57@gmail.com" + }, + "record": { + "CNAME": "milaan.pages.dev" + } +} diff --git a/domains/milan090.json b/domains/milan090.json index 7a6d8947d..e3607e6f5 100644 --- a/domains/milan090.json +++ b/domains/milan090.json @@ -1,6 +1,5 @@ { "description": "I'm a student, but who are you 🔫", - "repo": "https://github.com/milan090", "owner": { "username": "milan090", "email": "milanmuhammed1@gmail.com" diff --git a/domains/milodev123.json b/domains/milodev123.json new file mode 100644 index 000000000..8085e0616 --- /dev/null +++ b/domains/milodev123.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MiloDev123", + "email": "milo@milosantos.com", + "discord": "699318362848886864" + }, + "record": { + "NS": ["kristin.ns.cloudflare.com", "uriah.ns.cloudflare.com"] + } +} diff --git a/domains/mimic.json b/domains/mimic.json new file mode 100644 index 000000000..633d1cfe4 --- /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" + }, + "record": { + "CNAME": "giomjds-portfolio.vercel.app" + } +} diff --git a/domains/minecraft.mrdiamond.json b/domains/minecraft.mrdiamond.json new file mode 100644 index 000000000..c5a4758b6 --- /dev/null +++ b/domains/minecraft.mrdiamond.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "record": { + "A": ["129.146.51.207"] + } +} diff --git a/domains/minhtan.json b/domains/minhtan.json new file mode 100644 index 000000000..3211b7562 --- /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" + }, + "record": { + "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..1be8150cb --- /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" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/minhvo.json b/domains/minhvo.json new file mode 100644 index 000000000..dd83efea2 --- /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" + }, + "record": { + "CNAME": "minhomega.github.io" + } +} diff --git a/domains/minify.json b/domains/minify.json new file mode 100644 index 000000000..4b150d5ab --- /dev/null +++ b/domains/minify.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/minitor.json b/domains/minitor.json new file mode 100644 index 000000000..1b9c58667 --- /dev/null +++ b/domains/minitor.json @@ -0,0 +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" + } +} diff --git a/domains/minmit.json b/domains/minmit.json index 20ac64b44..2a87f73ee 100644 --- a/domains/minmit.json +++ b/domains/minmit.json @@ -1,6 +1,5 @@ { "description": "My Personal Website", - "repo": "https://github.com/MinMitCoder", "owner": { "username": "MinMitCoder", "email": "minmitgamer@gmail.com" diff --git a/domains/miteigi.json b/domains/miteigi.json new file mode 100644 index 000000000..764161773 --- /dev/null +++ b/domains/miteigi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "actuallyundefined", + "email": "baokhang4930@gmail.com" + }, + "record": { + "NS": ["elijah.ns.cloudflare.com", "jo.ns.cloudflare.com"] + } +} diff --git a/domains/miti99.json b/domains/miti99.json index f09c62708..5efbcd144 100644 --- a/domains/miti99.json +++ b/domains/miti99.json @@ -4,6 +4,6 @@ "email": "minhtienit99@gmail.com" }, "record": { - "CNAME": "miti.eu.org" + "CNAME": "miti99.pages.dev" } } diff --git a/domains/miu.json b/domains/miu.json index 36eed28a4..31cd7ddbe 100644 --- a/domains/miu.json +++ b/domains/miu.json @@ -7,6 +7,6 @@ "discord": "romanromannya" }, "record": { - "CNAME": "Miu-Discord.github.io" + "CNAME": "miu-discord.github.io" } } diff --git a/domains/mj1532.json b/domains/mj1532.json index 2cbeb6fa3..775ba0e3e 100644 --- a/domains/mj1532.json +++ b/domains/mj1532.json @@ -1,6 +1,5 @@ { "description": "MJ1532 Just A Normal Developer", - "repo": "https://github.com/MJ1532", "owner": { "username": "MJ1532", "email": "business@mj1532.cf" diff --git a/domains/mjresu.json b/domains/mjresu.json new file mode 100644 index 000000000..371171c79 --- /dev/null +++ b/domains/mjresu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mjdsj", + "email": "work.mjdsj+is-a-dev@gmail.com" + }, + "record": { + "CNAME": "portfolio-workmjdsj-gmailcom.vercel.app" + }, + "proxied": false + } \ No newline at end of file diff --git a/domains/mkblane.json b/domains/mkblane.json new file mode 100644 index 000000000..ad2042c60 --- /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" + }, + "record": { + "CNAME": "mkblane.github.io" + } +} diff --git a/domains/mkeko-dm.json b/domains/mkeko-dm.json new file mode 100644 index 000000000..126a4cd45 --- /dev/null +++ b/domains/mkeko-dm.json @@ -0,0 +1,11 @@ +{ + "description": "Mkeko'S DM RULES DOCS", + "owner": { + "username": "Mkeko", + "email": "mkekoplayreal@gmail.com" + }, + "record": { + "URL": "https://docs.google.com/document/d/11kX-6F9HoGzgIM5KYXvMmPvt4A_vIbLT9aj5uCATpOM/edit?usp=sharing" + }, + "proxied": false +} diff --git a/domains/mldeveer.json b/domains/mldeveer.json new file mode 100644 index 000000000..46b12ba80 --- /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" + }, + "record": { + "CNAME": "existing-dev.github.io" + } +} diff --git a/domains/mln.json b/domains/mln.json new file mode 100644 index 000000000..6439d777e --- /dev/null +++ b/domains/mln.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/xmi1an/portfoliov2.git", + "owner": { + "username": "xmi1an", + "email": "xnarcos300@gmail.com" + }, + "record": { + "CNAME": "xmi1an.vercel.app" + } +} diff --git a/domains/mmondragon.json b/domains/mmondragon.json new file mode 100644 index 000000000..0f9c1e43f --- /dev/null +++ b/domains/mmondragon.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Mac-Mondragon" + }, + "record": { + "CNAME": "Mac-Mondragon.github.io" + } +} diff --git a/domains/mnhtng.json b/domains/mnhtng.json new file mode 100644 index 000000000..8bc2dc9d2 --- /dev/null +++ b/domains/mnhtng.json @@ -0,0 +1,9 @@ +{ + "description": "mnhtng.is-a.dev", + "owner": { + "username": "MnhTng" + }, + "record": { + "URL": "https://mnhtng.github.io/Student-managerment" + } +} diff --git a/domains/mod.s4il.json b/domains/mod.s4il.json new file mode 100644 index 000000000..e4788bcf6 --- /dev/null +++ b/domains/mod.s4il.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "S4IL21", + "email": "s4il.is.a.dev@gmail.com" + }, + "record": { + "CNAME": "s4il21.github.io" + } +} diff --git a/domains/moddatei.json b/domains/moddatei.json new file mode 100644 index 000000000..d220ba65c --- /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" + }, + "record": { + "CNAME": "moddatei.github.io" + } +} diff --git a/domains/moddy.json b/domains/moddy.json new file mode 100644 index 000000000..a94d28e14 --- /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" + }, + "record": { + "CNAME": "milktools.github.io" + } +} diff --git a/domains/moein.json b/domains/moein.json new file mode 100644 index 000000000..07238315f --- /dev/null +++ b/domains/moein.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TrueMoein", + "email": "truemoein@gmail.com", + "discord": "truemoein" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/mohamadalzhori.json b/domains/mohamadalzhori.json new file mode 100644 index 000000000..4ad1a2862 --- /dev/null +++ b/domains/mohamadalzhori.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio for Mohamad Alzhori", + "owner": { + "username": "mohamadalzhori", + "email": "mohamadalzhori01@gmail.com" + }, + "record": { + "CNAME": "mohamadalzhori.github.io" + }, + "proxied": true +} diff --git a/domains/mohamedbishr.json b/domains/mohamedbishr.json new file mode 100644 index 000000000..34a06bd72 --- /dev/null +++ b/domains/mohamedbishr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohamedWaelBishr", + "email": "mohamedwaelbishr@gmail.com" + }, + "record": { + "URL": "https://mohamed-bishr.vercel.app/" + } +} diff --git a/domains/mohamedhisham.json b/domains/mohamedhisham.json new file mode 100644 index 000000000..b838093d6 --- /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" + }, + "record": { + "CNAME": "mh0386.github.io" + } +} diff --git a/domains/mohammad.json b/domains/mohammad.json new file mode 100644 index 000000000..1e51afabe --- /dev/null +++ b/domains/mohammad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x7dl8p", + "email": "ahmad.khan200499@gmail.com" + }, + "record": { + "CNAME": "d3vmohammad.netlify.app" + } +} diff --git a/domains/mohammedobaid.json b/domains/mohammedobaid.json new file mode 100644 index 000000000..1849186cf --- /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" + }, + "record": { + "CNAME": "mohammedobaid.vercel.app" + } +} diff --git a/domains/mohammedwisam.json b/domains/mohammedwisam.json new file mode 100644 index 000000000..fac907868 --- /dev/null +++ b/domains/mohammedwisam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "redcodemohammed", + "email": "redcodemohammed@gmail.com" + }, + "record": { + "CNAME": "mohammed-wisam.pages.dev" + } +} diff --git a/domains/mohdjariullah.json b/domains/mohdjariullah.json index be4205e83..bd07018cb 100644 --- a/domains/mohdjariullah.json +++ b/domains/mohdjariullah.json @@ -4,7 +4,7 @@ "owner": { "username": "mohdjariullah", "email": "mohdjariullah@gmail.com", - "twitter": "@mohdjariullah" + "twitter": "mohdjariullah" }, "record": { "CNAME": "mohdjariullah.github.io" diff --git a/domains/mohit-sundrani.json b/domains/mohit-sundrani.json new file mode 100644 index 000000000..bb65ea17f --- /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" + }, + "record": { + "CNAME": "mohit-sundrani.web.app" + } +} diff --git a/domains/mohit.json b/domains/mohit.json new file mode 100644 index 000000000..9c307bf32 --- /dev/null +++ b/domains/mohit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kumar-mohit-dev", + "email": "mohitgoswami.work@gmail.com" + }, + "record": { + "CNAME": "kumar-mohit-dev.github.io" + } +} diff --git a/domains/mohsen.json b/domains/mohsen.json new file mode 100644 index 000000000..3c797b92a --- /dev/null +++ b/domains/mohsen.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio website for mohsenansari.com", + "owner": { + "username": "mohsenari", + "email": "mansari387@gmail.com" + }, + "record": { + "CNAME": "mohsenansari.com" + } +} diff --git a/domains/mokho.json b/domains/mokho.json new file mode 100644 index 000000000..8043a0ca7 --- /dev/null +++ b/domains/mokho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ngompoweredbypoi", + "discord": "ngompoweredbypoi" + }, + "record": { + "CNAME": "mokho.github.io" + } +} diff --git a/domains/moku.json b/domains/moku.json new file mode 100644 index 000000000..5e4ed4558 --- /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" + }, + "record": { + "CNAME": "moku922.github.io" + } +} diff --git a/domains/molai.json b/domains/molai.json index bd1a902ee..84e668fbf 100644 --- a/domains/molai.json +++ b/domains/molai.json @@ -1,6 +1,5 @@ { "description": "Mahir's Website", - "repo": "https://github.com/mtgsquad", "owner": { "username": "mtgsquad", "email": "mahir@molai.dev", diff --git a/domains/molikai.json b/domains/molikai.json new file mode 100644 index 000000000..619f7d57e --- /dev/null +++ b/domains/molikai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "molikai-work", + "email": "wuxiaci@hotmail.com" + }, + "record": { + "CNAME": "molikaiwork.pages.dev" + } +} diff --git a/domains/momoka.json b/domains/momoka.json new file mode 100644 index 000000000..8b2e76241 --- /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" + }, + "record": { + "CNAME": "m0m0k4s4n.github.io" + } +} diff --git a/domains/monosen.json b/domains/monosen.json new file mode 100644 index 000000000..2c70a9fff --- /dev/null +++ b/domains/monosen.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Monosen", + "email": "edisonbj21@gmail.com", + "discord": "monosen" + }, + "record": { + "CNAME": "minimalist-portfolio-zeta.vercel.app" + } +} diff --git a/domains/morphoit.json b/domains/morphoit.json new file mode 100644 index 000000000..af609edcb --- /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" + }, + "record": { + "CNAME": "morphoit.github.io" + } +} diff --git a/domains/morzhstudio.json b/domains/morzhstudio.json index 8196ce57e..d5c2b2cc3 100644 --- a/domains/morzhstudio.json +++ b/domains/morzhstudio.json @@ -5,6 +5,17 @@ "discord": "1261855255147057220" }, "record": { - "A": ["185.199.108.153"] + "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/mostypc123.json b/domains/mostypc123.json new file mode 100644 index 000000000..7e3e28653 --- /dev/null +++ b/domains/mostypc123.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mostypc123" + }, + "record": { + "CNAME": "mostypc123.github.io" + } +} diff --git a/domains/mpult.json b/domains/mpult.json index eedabf87c..cbd6fc922 100644 --- a/domains/mpult.json +++ b/domains/mpult.json @@ -6,6 +6,6 @@ "email": "MPult@protonmail.com" }, "record": { - "CNAME": "MPult.github.io" + "CNAME": "mpult.github.io" } } diff --git a/domains/mpy.json b/domains/mpy.json index b51be78f2..653904d1b 100644 --- a/domains/mpy.json +++ b/domains/mpy.json @@ -1,6 +1,5 @@ { "description": "Mike Perry Y Attara's personal website", - "repo": "https://github.com/mikeattara", "owner": { "username": "mikeattara", "email": "mpyebattara@gmail.com" diff --git a/domains/mqhirr.json b/domains/mqhirr.json index bc8c86326..adc07ce91 100644 --- a/domains/mqhirr.json +++ b/domains/mqhirr.json @@ -3,7 +3,6 @@ "username": "mqhirr", "discord": "mqhirr" }, - "repo": "https://github.com/mqhirr/webnn_live", "record": { "CNAME": "mqhirr.github.io" diff --git a/domains/mqrshie.json b/domains/mqrshie.json index a1eb4dd04..3e5b946af 100644 --- a/domains/mqrshie.json +++ b/domains/mqrshie.json @@ -6,6 +6,6 @@ "twitter": "Mqrshie" }, "record": { - "CNAME": "Mqrshie.github.io" + "CNAME": "mqrshie.github.io" } } diff --git a/domains/mr-julus.json b/domains/mr-julus.json index 7a5159704..ef0d33648 100644 --- a/domains/mr-julus.json +++ b/domains/mr-julus.json @@ -5,6 +5,6 @@ "email": "bougsoon.studio@gmail.com" }, "record": { - "CNAME": "mr-julus.web.app" + "CNAME": "mr-julus.vercel.app" } } diff --git a/domains/mrasyadc.json b/domains/mrasyadc.json new file mode 100644 index 000000000..f12e13018 --- /dev/null +++ b/domains/mrasyadc.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Website", + "owner": { + "username": "mrasyadc", + "email": "mrasyadc@gmail.com" + }, + "record": { + "CNAME": "mrasyadc.github.io" + } +} diff --git a/domains/mrcat.json b/domains/mrcat.json new file mode 100644 index 000000000..9572a8e51 --- /dev/null +++ b/domains/mrcat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bipre2466", + "discord": "1137413640945934418", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Y8eHPjeSqnG2MUxTMFsvWlhMNNYDsxTheEB8ak8Kiyso-_aGMkwFG_tMPE_2ZBya20BjudXX_gRgAG7YmDuyOP-oBGGP6pms8em_hgNoWxW9SQCfufy4dQ_sMkLNGumobnemmUuzlpMB77EtoBxXiINvyAF_MgoS_G68_6arIRWphBTSAGEaU2Fl7nBYUiArQD4W0wiZwTrwl5PRB6orOSa-SA4bg7k6ZDtxVmYCX1l1k_8ggG9L7oauftJ7yjq58miTUIx02qeCuP_t_p30wHHUbk02yFpJFtnH14xiDRQUCeAh25CibruxR82sDvsTPdsOJDJ-v_cWaenXoxX3Fg.Wjo-oD356QVDbjpXuIdBNg.OPnI-kc3PmzXQR-VR3rYOmFF1Quv56CJnGm-FUMP7WXRK-HW040wF647Sm3hu5KD_mn0gHdOvnVfpwBkKHsWg_eUzJgMlnBCzkT81lIi540.LNJ_5YhJ9zA2Kx8mx27hdQ" + }, + "record": { + "A": ["31.6.7.25"] + } +} diff --git a/domains/mrcorpz.json b/domains/mrcorpz.json deleted file mode 100644 index 18696553f..000000000 --- a/domains/mrcorpz.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Mrcorpz's Website", - "repo": "https://github.com/mrcorpz/mrcorpz.github.io", - "owner": { - "username": "mrcorpz", - "email": "mrcorpzpro@gmail.com", - "twitter": "mrcorpz" - }, - "record": { - "CNAME": "mrcorpz.github.io" - } -} diff --git a/domains/mrincer.json b/domains/mrincer.json new file mode 100644 index 000000000..3e4be87c9 --- /dev/null +++ b/domains/mrincer.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khincer", + "email": "kirk.incerg@gmail.com", + "discord": "kyllhua" + }, + "record": { + "CNAME": "portfolio-ashy-ten-95.vercel.app" + } +} diff --git a/domains/mrkos.json b/domains/mrkos.json index 201ee6611..11c5a8828 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": { - "CNAME": "mrkOS1210.github.io" + "CNAME": "mrkos1210.github.io" } } diff --git a/domains/mrthundergod.json b/domains/mrthundergod.json index 7cdc71b00..bf08f9957 100644 --- a/domains/mrthundergod.json +++ b/domains/mrthundergod.json @@ -1,6 +1,5 @@ { "description": "The ThunderDome", - "repo": "https://github.com/mrthundergod", "owner": { "username": "mrthundergod", "email": "mrthundergod@gmail.com" diff --git a/domains/mrtspeedy.json b/domains/mrtspeedy.json new file mode 100644 index 000000000..31cf8f7eb --- /dev/null +++ b/domains/mrtspeedy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mrtspeedy", + "email": "toxicspeedytv@gmail.com", + "discord": "1095502790534627348" + }, + "record": { + "CNAME": "portfolio-mrtspeedy.vercel.app" + } +} diff --git a/domains/mu.json b/domains/mu.json new file mode 100644 index 000000000..16719e3c4 --- /dev/null +++ b/domains/mu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mohammadusman666", + "email": "mohammadusman666@gmail.com" + }, + "record": { + "CNAME": "portfolio-1cw.pages.dev" + } +} diff --git a/domains/muaz.json b/domains/muaz.json new file mode 100644 index 000000000..90d597bcd --- /dev/null +++ b/domains/muaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muazsrc", + "email": "muazsrc17@gmail.com" + }, + "record": { + "CNAME": "muaz-2te.pages.dev" + } +} diff --git a/domains/mubaidr.json b/domains/mubaidr.json index 48c5f0d80..2f637b10b 100644 --- a/domains/mubaidr.json +++ b/domains/mubaidr.json @@ -1,8 +1,7 @@ { "owner": { "username": "mubaidr", - "email": "mubaidr@gmail.com", - "discord": "" + "email": "mubaidr@gmail.com" }, "record": { "CNAME": "mubaidr.js.org" diff --git a/domains/mubarak.json b/domains/mubarak.json new file mode 100644 index 000000000..d6e3161a8 --- /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" + }, + "record": { + "URL": "https://github.com/MubarakHAlketbi/" + } +} diff --git a/domains/mudasir.json b/domains/mudasir.json new file mode 100644 index 000000000..28beb19b5 --- /dev/null +++ b/domains/mudasir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzamudassir", + "discord": "0xmudassir" + }, + "record": { + "CNAME": "modasir.vercel.app" + } +} diff --git a/domains/muhammad-yusuf.json b/domains/muhammad-yusuf.json new file mode 100644 index 000000000..0de161403 --- /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" + }, + "record": { + "URL": "https://mhmmd-ysf.github.io" + } +} diff --git a/domains/muhammadabdullah.json b/domains/muhammadabdullah.json new file mode 100644 index 000000000..98aa2cf6e --- /dev/null +++ b/domains/muhammadabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah9715", + "email": "muftimuhammadabdullah225@gmail.com" + }, + "record": { + "URL": "https://latest-porfolio-website.web.app" + } +} diff --git a/domains/muhammed.json b/domains/muhammed.json new file mode 100644 index 000000000..13d51c48e --- /dev/null +++ b/domains/muhammed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MhmdFais", + "email": "mofam534@gmail.com" + }, + "record": { + "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..9a9b18548 --- /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" + }, + "record": { + "CNAME": "muizu.github.io" + } +} \ No newline at end of file diff --git a/domains/mumble.sono.json b/domains/mumble.sono.json deleted file mode 100644 index d3b4307bf..000000000 --- a/domains/mumble.sono.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "getSono", - "email": "julianwolf2013@outlook.de", - "discord": "1222250424309121145" - }, - "record": { - "A": ["69.197.135.202"] - } -} diff --git a/domains/munir.json b/domains/munir.json new file mode 100644 index 000000000..390398d3a --- /dev/null +++ b/domains/munir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "munirsiddiqui54", + "email": "munir230204@gmail.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/muralikrishna.json b/domains/muralikrishna.json new file mode 100644 index 000000000..b465ba19d --- /dev/null +++ b/domains/muralikrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muralimallela", + "email": "mmallela9@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/murasame-san-ddl.json b/domains/murasame-san-ddl.json index 8eb5cc480..f9adf01d1 100644 --- a/domains/murasame-san-ddl.json +++ b/domains/murasame-san-ddl.json @@ -1,10 +1,11 @@ { "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": { - "A": ["129.80.3.208"] + "CNAME": "cylindrical-gardlic-8jekw3mlfaoniohl2i7wdokz.herokudns.com" } } diff --git a/domains/muthomi.json b/domains/muthomi.json new file mode 100644 index 000000000..ff8e3bd4e --- /dev/null +++ b/domains/muthomi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "michaelmuthomi", + "discord": "michaelgikunda" + }, + "record": { + "CNAME": "michael-portfolio-green.vercel.app" + } +} diff --git a/domains/mvl.json b/domains/mvl.json new file mode 100644 index 000000000..e8980d191 --- /dev/null +++ b/domains/mvl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "medival", + "email": "dev.adipurnomo@gmail.com" + }, + "record": { + "CNAME": "blog.mvl.biz.id" + } +} diff --git a/domains/mxnticek.json b/domains/mxnticek.json index 4a1eb2c37..68094cc50 100644 --- a/domains/mxnticek.json +++ b/domains/mxnticek.json @@ -2,7 +2,7 @@ "description": "no", "repo": "https://github.com/VlastikYoutubeKo/vlastikyoutubeko.github.io", "owner": { - "username": " VlastikYoutubeKo", + "username": "VlastikYoutubeKo", "email": "mxnticek@proton.me" }, "record": { diff --git a/domains/mxritz.json b/domains/mxritz.json index 26a02cac2..8def2b725 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" + "CNAME": "server.mxritz.dev" } } diff --git a/domains/my5ter.json b/domains/my5ter.json new file mode 100644 index 000000000..9ac03a862 --- /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" + }, + "record": { + "CNAME": "mysterv.github.io" + } +} diff --git a/domains/myforum.json b/domains/myforum.json new file mode 100644 index 000000000..e3f1896a0 --- /dev/null +++ b/domains/myforum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "myforum.mydiscussion.net" + } +} diff --git a/domains/myominhan.json b/domains/myominhan.json new file mode 100644 index 000000000..da474e422 --- /dev/null +++ b/domains/myominhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mmhann18491", + "email": "myominhan18491@gmail.com" + }, + "record": { + "CNAME": "my-portfolio-site-2d30a.web.app" + } +} diff --git a/domains/myprofile.json b/domains/myprofile.json new file mode 100644 index 000000000..c989f485a --- /dev/null +++ b/domains/myprofile.json @@ -0,0 +1,11 @@ +{ + "description": "tuan.myprofile.dev", + "owner": { + "username": "tuannguyen2002", + "email": "coixaygio107@gmail.com", + "discord": "minhtuan9039" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/myster.json b/domains/myster.json new file mode 100644 index 000000000..9ac03a862 --- /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" + }, + "record": { + "CNAME": "mysterv.github.io" + } +} diff --git a/domains/mythsman.json b/domains/mythsman.json index 6ba26aaef..e4789ad9e 100644 --- a/domains/mythsman.json +++ b/domains/mythsman.json @@ -1,6 +1,5 @@ { "description": "Mythsman's personal site", - "repo": "https://github.com/mythsman", "owner": { "username": "mythsman", "email": "mythsman@foxmail.com" diff --git a/domains/mzaman.json b/domains/mzaman.json new file mode 100644 index 000000000..b581c1439 --- /dev/null +++ b/domains/mzaman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzazaman", + "email": "mirzazaman828@gmail.com" + }, + "record": { + "CNAME": "zaman-portfolio.vercel.app" + } +} diff --git a/domains/mzunino.json b/domains/mzunino.json new file mode 100644 index 000000000..440dabca3 --- /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" + }, + "record": { + "CNAME": "mzunino.com.uy" + } +} diff --git a/domains/n0kemm.json b/domains/n0kemm.json new file mode 100644 index 000000000..473a22621 --- /dev/null +++ b/domains/n0kemm.json @@ -0,0 +1,10 @@ +{ + "owner":{ + "username": "Chaetard", + "email": "jesus.santos4160@alumnos.udg.mx" + }, + "record":{ + "CNAME": "n0kemm.netlify.app" + } + +} diff --git a/domains/n3m.json b/domains/n3m.json new file mode 100644 index 000000000..20290f62b --- /dev/null +++ b/domains/n3m.json @@ -0,0 +1,9 @@ +{ + "description": "Domain that redirects to my personal portfolio", + "owner": { + "username": "n3m" + }, + "record": { + "URL": "https://n3m.me" + } +} diff --git a/domains/n3rdc4ptn.json b/domains/n3rdc4ptn.json new file mode 100644 index 000000000..1918ffd4b --- /dev/null +++ b/domains/n3rdc4ptn.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for n3rdc4ptn", + "owner": { + "username": "n3rdc4ptn" + }, + "record": { + "CNAME": "moritzreich.dev" + }, + "proxied": true +} diff --git a/domains/n4n5.json b/domains/n4n5.json index e4331b8c4..890d9fe69 100644 --- a/domains/n4n5.json +++ b/domains/n4n5.json @@ -1,6 +1,5 @@ { "description": "redirects to my website", - "repo": "https://github.com/Its-Just-Nans", "owner": { "username": "Its-Just-Nans" }, diff --git a/domains/nabeel.json b/domains/nabeel.json new file mode 100644 index 000000000..e0fedc4d2 --- /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/" + }, + "record": { + "CNAME": "nabeel.molham.me" + } +} diff --git a/domains/nabil.json b/domains/nabil.json new file mode 100644 index 000000000..55dd2edb4 --- /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" + }, + "record": { + "CNAME": "imrmnabil.github.io" + } +} diff --git a/domains/nabin.json b/domains/nabin.json new file mode 100644 index 000000000..521057d79 --- /dev/null +++ b/domains/nabin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nabinkatwal7", + "email": "mediocampistaa@gmail.com" + }, + "record": { + "CNAME": "portfolio-v3-six-iota.vercel.app" + } +} diff --git a/domains/nadeerasilva.json b/domains/nadeerasilva.json new file mode 100644 index 000000000..5e9d4118b --- /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" + }, + "record": { + "CNAME": "nadeerasilvaa.github.io" + } +} diff --git a/domains/naftali100.json b/domains/naftali100.json new file mode 100644 index 000000000..20e372492 --- /dev/null +++ b/domains/naftali100.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "naftali100", + "email": "hello@naftali100.top" + }, + "record": { + "CNAME": "naftali100.top" + } +} diff --git a/domains/nahid.json b/domains/nahid.json index 80b641ac6..a8da62284 100644 --- a/domains/nahid.json +++ b/domains/nahid.json @@ -6,6 +6,6 @@ "email": "SourovKhanNahid@gmail.com" }, "record": { - "CNAME": "SOUROVKHANNAHID.github.io" + "CNAME": "sourovkhannahid.github.io" } } diff --git a/domains/nahuel.json b/domains/nahuel.json new file mode 100644 index 000000000..b4c8fcdf0 --- /dev/null +++ b/domains/nahuel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "navalesnahuel", + "email": "navalesnahuel@gmail.com" + }, + "record": { + "CNAME": "navalesnahuel.github.io" + } +} diff --git a/domains/nahuelnavales.json b/domains/nahuelnavales.json new file mode 100644 index 000000000..b4c8fcdf0 --- /dev/null +++ b/domains/nahuelnavales.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "navalesnahuel", + "email": "navalesnahuel@gmail.com" + }, + "record": { + "CNAME": "navalesnahuel.github.io" + } +} diff --git a/domains/nai.json b/domains/nai.json new file mode 100644 index 000000000..145e7b51d --- /dev/null +++ b/domains/nai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NailethR", + "email": "nait.0005@gmail.com" + }, + "record": { + "CNAME": "nailethr.github.io" + } +} diff --git a/domains/naimur.json b/domains/naimur.json new file mode 100644 index 000000000..836f3d9ab --- /dev/null +++ b/domains/naimur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mohammad-naimur-rahman", + "discord": "829283275846975488" + }, + "record": { + "CNAME": "naimurdev.vercel.app" + } +} diff --git a/domains/nakim.json b/domains/nakim.json new file mode 100644 index 000000000..17c68f290 --- /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" + }, + "record": { + "CNAME": "nakim.be" + } +} diff --git a/domains/naman.json b/domains/naman.json index d2f85e209..e02534f18 100644 --- a/domains/naman.json +++ b/domains/naman.json @@ -6,6 +6,6 @@ "email": "gururaninaman@gmail.com" }, "record": { - "CNAME": "Naman-Gururani.github.io" + "CNAME": "naman-gururani.github.io" } } diff --git a/domains/namansethi.json b/domains/namansethi.json new file mode 100644 index 000000000..3c890d681 --- /dev/null +++ b/domains/namansethi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "namansethi13", + "email": "heynamansethi@gmail.com" + }, + "record": { + "CNAME": "namansethi.vercel.app" + } +} diff --git a/domains/namansrivastava.json b/domains/namansrivastava.json new file mode 100644 index 000000000..7dc75b59c --- /dev/null +++ b/domains/namansrivastava.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "naman-0804", + "email": "namansrivastava1608@gmail.com", + "discord": "naman_1101" + }, + "record": { + "CNAME": "naman08portfolio.vercel.app" + } +} diff --git a/domains/namht.json b/domains/namht.json new file mode 100644 index 000000000..9d83a8bac --- /dev/null +++ b/domains/namht.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lagux-coding", + "email": "nguyenhientrungnam@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/narasima.json b/domains/narasima.json new file mode 100644 index 000000000..7569b796f --- /dev/null +++ b/domains/narasima.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com", + "discord": "gamingdoodle" + }, + "record": { + "A": ["75.2.60.5"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} diff --git a/domains/narendradwivedi.json b/domains/narendradwivedi.json new file mode 100644 index 000000000..356b74dd3 --- /dev/null +++ b/domains/narendradwivedi.json @@ -0,0 +1,10 @@ +{ + "description": "narendradwivedi.is-a.dev for portfolio and projects", + "owner": { + "username": "NarendraDwivedi", + "discord": "narendradwivedi" + }, + "record": { + "CNAME": "narendradwivedi.github.io" + } +} diff --git a/domains/nashnc.json b/domains/nashnc.json new file mode 100644 index 000000000..aa3277cba --- /dev/null +++ b/domains/nashnc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nashnc", + "email": "nash.nc@gmail.com" + }, + "record": { + "CNAME": "nashnc.github.io" + } +} diff --git a/domains/natan.json b/domains/natan.json new file mode 100644 index 000000000..74d43bd85 --- /dev/null +++ b/domains/natan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NatanKonig", + "email": "natan.camargo8@gmail.com" + }, + "record": { + "A": ["144.22.137.5"] + } +} diff --git a/domains/nathan.json b/domains/nathan.json index ac48c642e..074669a7f 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" + "CNAME": "nduartech.github.io" } } diff --git a/domains/nathanospino.json b/domains/nathanospino.json new file mode 100644 index 000000000..27f28e6c4 --- /dev/null +++ b/domains/nathanospino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "C4lumny", + "email": "ospinonathan@gmail.com" + }, + "record": { + "CNAME": "nathanospino.vercel.app" + } +} diff --git a/domains/navaneeth.json b/domains/navaneeth.json new file mode 100644 index 000000000..ecaff7d2c --- /dev/null +++ b/domains/navaneeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "snavaneeth78", + "email": "naveen.micro.test1@gmail.com" + }, + "record": { + "URL": "https://naveen.works" + } +} diff --git a/domains/naveen-kumar-reddy-murthi.json b/domains/naveen-kumar-reddy-murthi.json new file mode 100644 index 000000000..a621eaa87 --- /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" + }, + "record": { + "CNAME": "naveen-dev.netlify.app" + }, + "proxied": true + } diff --git a/domains/naveenxd.json b/domains/naveenxd.json index d0130b697..249cef31e 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": { - "CNAME": "Naveen-X.github.io" + "CNAME": "naveen-x.github.io" } } diff --git a/domains/naviheylisten.json b/domains/naviheylisten.json new file mode 100644 index 000000000..fd86a31d0 --- /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" + }, + "record": { + "NS": ["gloria.ns.cloudflare.com", "mustafa.ns.cloudflare.com"] + } +} diff --git a/domains/navistar.json b/domains/navistar.json new file mode 100644 index 000000000..9822afab7 --- /dev/null +++ b/domains/navistar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AShuba", + "email": "anatoliy.shuba@gmail.com" + }, + "record": { + "A": ["138.68.159.126"] + } +} diff --git a/domains/navistar2.json b/domains/navistar2.json new file mode 100644 index 000000000..f22a6eb7b --- /dev/null +++ b/domains/navistar2.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AShuba", + "email": "anatoliy.shuba@gmail.com" + }, + "record": { + "A": ["52.73.119.251"] + } +} diff --git a/domains/nayan.json b/domains/nayan.json index ab18853e8..4feaf4751 100644 --- a/domains/nayan.json +++ b/domains/nayan.json @@ -1,6 +1,5 @@ { "description": "A personal website, for Nayan Patel.", - "repo": "https://github.com/pateln123", "owner": { "username": "pateln123", "email": "hello@nayanpatel.net" diff --git a/domains/nayandas.json b/domains/nayandas.json new file mode 100644 index 000000000..fb59cdda1 --- /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" + }, + "record": { + "CNAME": "nayanjd.github.io" + } +} diff --git a/domains/nayu.json b/domains/nayu.json new file mode 100644 index 000000000..ddec2fbb4 --- /dev/null +++ b/domains/nayu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nayumin", + "email": "nayumi@duck.com" + }, + "record": { + "CNAME": "web-dgj.pages.dev" + } +} diff --git a/domains/nd24.json b/domains/nd24.json new file mode 100644 index 000000000..d7c106601 --- /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" + }, + "record": { + "CNAME": "natedog2424.github.io" + } +} diff --git a/domains/neebooo.json b/domains/neebooo.json new file mode 100644 index 000000000..1048340fe --- /dev/null +++ b/domains/neebooo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "neebooo", + "email": "dev.cnamew@gmail.com" + }, + "record": { + "A": ["193.187.255.169"] + } +} diff --git a/domains/needrose.json b/domains/needrose.json new file mode 100644 index 000000000..525238ca6 --- /dev/null +++ b/domains/needrose.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Needrose", + "email": "neeedrose@gmail.com" + }, + "record": { + "A": ["155.248.226.206"] + } +} diff --git a/domains/neel.json b/domains/neel.json new file mode 100644 index 000000000..07d8db61e --- /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" + }, + "record": { + "CNAME": "neelmishra.vercel.app" + } +} diff --git a/domains/neelsani.json b/domains/neelsani.json deleted file mode 100644 index 055a8cf69..000000000 --- a/domains/neelsani.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Neel Dev", - "repo": "https://github.com/neelsani/neelsani.github.io", - "owner": { - "username": "neelsani", - "email": "neel2645s@gmail.com" - }, - "record": { - "CNAME": "neelsani.github.io" - } -} diff --git a/domains/nef.json b/domains/nef.json new file mode 100644 index 000000000..945e4682a --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/neil.json b/domains/neil.json new file mode 100644 index 000000000..70447f53e --- /dev/null +++ b/domains/neil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nxl22", + "email": "lien.dev.22@gmail.com" + }, + "record": { + "CNAME": "nxl22.github.io" + } +} diff --git a/domains/nek0zyx.json b/domains/nek0zyx.json new file mode 100644 index 000000000..6bec550e3 --- /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" + }, + "record": { + "CNAME": "nek0zyx.github.io" + } +} diff --git a/domains/nekoibot.json b/domains/nekoibot.json index d6d1bcbe5..86811be7c 100644 --- a/domains/nekoibot.json +++ b/domains/nekoibot.json @@ -4,6 +4,6 @@ "email": "domath69@gmail.com" }, "record": { - "CNAME": "DomathID.github.io" + "CNAME": "domathid.github.io" } } diff --git a/domains/nekomyaa.json b/domains/nekomyaa.json new file mode 100644 index 000000000..f70a2436a --- /dev/null +++ b/domains/nekomyaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lolinekord", + "email": "contact@lolineko3.net" + }, + "record": { + "URL": "https://github.com/lolinekord" + } +} diff --git a/domains/nemoralis.json b/domains/nemoralis.json new file mode 100644 index 000000000..3ca3f0511 --- /dev/null +++ b/domains/nemoralis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nemoralis", + "email": "nerim4n@pm.me" + }, + "record": { + "CNAME": "neriman-me.pages.dev" + } +} diff --git a/domains/nepnep.imm0nv1nhtv.json b/domains/nepnep.imm0nv1nhtv.json deleted file mode 100644 index 2bae8b5a4..000000000 --- a/domains/nepnep.imm0nv1nhtv.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "imm0nv1nhtv", - "email": "windows10phamvinh+github@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/nestornahuel.json b/domains/nestornahuel.json new file mode 100644 index 000000000..2394f21e7 --- /dev/null +++ b/domains/nestornahuel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NestorNahuel", + "email": "nahuel6195@gmail.com" + }, + "record": { + "CNAME": "portfolio-steel-seven-72.vercel.app" + } +} diff --git a/domains/new.vornexx.json b/domains/new.vornexx.json index 9d9ad17d9..a85ee32c5 100644 --- a/domains/new.vornexx.json +++ b/domains/new.vornexx.json @@ -1,6 +1,6 @@ { "owner": { - "username": "vornex-gh", + "username": "vornexx", "email": "ajay.ramnath8812@gmail.com" }, "record": { diff --git a/domains/newpk.json b/domains/newpk.json index 2371d4f36..c4e09a350 100644 --- a/domains/newpk.json +++ b/domains/newpk.json @@ -4,6 +4,6 @@ "email": "pakorn.soikham@gmail.com" }, "record": { - "CNAME": "newpkorn.github.io" + "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..8ccbd1102 --- /dev/null +++ b/domains/newtun-code-cheat-sheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "CNAME": "code-cheat-sheet.vercel.app" + } +} diff --git a/domains/newtun.json b/domains/newtun.json new file mode 100644 index 000000000..ca850627c --- /dev/null +++ b/domains/newtun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinhTin-AQUA", + "email": "tinhovinh@gmail.com" + }, + "record": { + "CNAME": "portfolio-nine-cyan-53.vercel.app" + } +} diff --git a/domains/nexus.json b/domains/nexus.json index 7808ec6e6..d16440a8a 100644 --- a/domains/nexus.json +++ b/domains/nexus.json @@ -6,6 +6,6 @@ "email": "uvraysxc@gmail.com" }, "record": { - "CNAME": "Nexzon.github.io" + "CNAME": "nexzon.github.io" } } diff --git a/domains/ngockhuong.json b/domains/ngockhuong.json new file mode 100644 index 000000000..0296c9863 --- /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" + }, + "record": { + "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..78ab8e9b0 --- /dev/null +++ b/domains/ngocphung.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "nguyenngocphung2000" + }, + "record": { + "CNAME": "nguyenngocphung2000.github.io" + } +} diff --git a/domains/ngompoweredbypoi.json b/domains/ngompoweredbypoi.json new file mode 100644 index 000000000..908ce0606 --- /dev/null +++ b/domains/ngompoweredbypoi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ngompoweredbypoi", + "discord": "ngompoweredbypoi" + }, + "record": { + "CNAME": "ngompoweredbypoi.github.io" + } +} diff --git a/domains/ngoutam.json b/domains/ngoutam.json new file mode 100644 index 000000000..1d3fc7144 --- /dev/null +++ b/domains/ngoutam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Goutam-04", + "email": "goutamnayak2804+github1@gmail.com" + }, + "record": { + "CNAME": "goutam-porfolio.vercel.app" + } +} diff --git a/domains/ngqkhai.json b/domains/ngqkhai.json new file mode 100644 index 000000000..d10806c80 --- /dev/null +++ b/domains/ngqkhai.json @@ -0,0 +1,10 @@ +{ + "description": "Documentation website for is-a.dev", + "owner": { + "username": "ngqkhai", + "email": "nguyenquangkhai2509@gmail.com" + }, + "record": { + "URL": "https://github.com/ngqkhai" + } +} diff --git a/domains/nguyen-phuong-nam.json b/domains/nguyen-phuong-nam.json new file mode 100644 index 000000000..72dfdb1ad --- /dev/null +++ b/domains/nguyen-phuong-nam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NBlue", + "email": "nam.np194336@gmail.com" + }, + "record": { + "CNAME": "protofilo-beta.vercel.app" + } +} diff --git a/domains/nguyenkimduy.json b/domains/nguyenkimduy.json new file mode 100644 index 000000000..7d31658a7 --- /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" + }, + "record": { + "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..3de80e85f --- /dev/null +++ b/domains/nguyenminhtuan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuannguyen2002", + "discord": "minhtuan9039" + }, + "record": { + "CNAME": "profile-sigma-wine.vercel.app" + } +} diff --git a/domains/nh.json b/domains/nh.json new file mode 100644 index 000000000..52000b33b --- /dev/null +++ b/domains/nh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nonxistnt", + "email": "khtyiscooler@gmail.com" + }, + "record": { + "CNAME": "nonxistnt.github.io" + } +} diff --git a/domains/nhatphan.json b/domains/nhatphan.json new file mode 100644 index 000000000..d303ca397 --- /dev/null +++ b/domains/nhatphan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minaphan2815", + "email": "nhatphan2815@gmail.com" + }, + "record": { + "CNAME": "minaphan2815.github.io" + } +} diff --git a/domains/nhavy.json b/domains/nhavy.json new file mode 100644 index 000000000..623bce009 --- /dev/null +++ b/domains/nhavy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "VzTong" + }, + "record": { + "CNAME": "vztong.github.io" + } +} diff --git a/domains/nhim411.json b/domains/nhim411.json new file mode 100644 index 000000000..c2daaa8e9 --- /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" + }, + "record": { + "CNAME": "nhim411.github.io" + } +} diff --git a/domains/nic.json b/domains/nic.json deleted file mode 100644 index 1570b3e57..000000000 --- a/domains/nic.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": {}, - "reserved": true -} diff --git a/domains/nicetodayweather.json b/domains/nicetodayweather.json new file mode 100644 index 000000000..04eb02e36 --- /dev/null +++ b/domains/nicetodayweather.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mmhann18491", + "email": "myominhan18491@gmail.com" + }, + "record": { + "CNAME": "nice-today-weather.web.app" + } +} diff --git a/domains/nick.json b/domains/nick.json new file mode 100644 index 000000000..fa3fd15f3 --- /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" + }, + "record": { + "URL": "https://nicholasalfonso.com" + } +} diff --git a/domains/nickibreeki.json b/domains/nickibreeki.json new file mode 100644 index 000000000..abc2b0673 --- /dev/null +++ b/domains/nickibreeki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "n1ckibreeki", + "email": "nickibreeki@outlook.com" + }, + "record": { + "CNAME": "nickibreeki.pages.dev" + } +} diff --git a/domains/niclqs.json b/domains/niclqs.json new file mode 100644 index 000000000..e9f983367 --- /dev/null +++ b/domains/niclqs.json @@ -0,0 +1,11 @@ +{ + "description": "niclqs.is-a.dev --> niclqs.dev", + "record": { + "URL": "https://niclqs.dev" + }, + "owner": { + "discord": "niclqs", + "email": "discord@push-den-weg.de", + "username": "NiclqsGER" + } +} diff --git a/domains/nico.json b/domains/nico.json index 7d1885fad..7ffadfca3 100644 --- a/domains/nico.json +++ b/domains/nico.json @@ -7,6 +7,6 @@ "discord": "nicosnico#7674" }, "record": { - "CNAME": "NicoGaming77.github.io" + "CNAME": "nicogaming77.github.io" } } diff --git a/domains/nicojsuarez.json b/domains/nicojsuarez.json new file mode 100644 index 000000000..d39a77225 --- /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" + }, + "record": { + "CNAME": "Nicojsuarez2.github.io" + } +} diff --git a/domains/nicol.json b/domains/nicol.json index ff62bf56c..383f15d04 100644 --- a/domains/nicol.json +++ b/domains/nicol.json @@ -5,6 +5,6 @@ "username": "Linadevv" }, "record": { - "CNAME": "Linadevv.github.io" + "CNAME": "linadevv.github.io" } } diff --git a/domains/nicolas.json b/domains/nicolas.json new file mode 100644 index 000000000..eea2d4406 --- /dev/null +++ b/domains/nicolas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "niicojs", + "discord": ".niico." + }, + "record": { + "CNAME": "home-is-a-dev.vercel.app" + } +} diff --git a/domains/nicollas.json b/domains/nicollas.json new file mode 100644 index 000000000..92d23ea20 --- /dev/null +++ b/domains/nicollas.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nicollaspetrelli", + "discord": "233677267975274496", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Io00BIEcuUaqGqro44tjhxyH2m685YaHnSqyGCNRBTjSndObd2P4HmNoX93X1Qatl7c6ygPxkfUfvvUJZ4igK6WxgxsSa9_hRh61r6AbXKDY1DFmm-0ZjHsNNEQOOoY4NtwT-zVocwhCINVQH6CQCqSkxI1sEikVdzbFCCSVXp35olvH8kRnGRDjLogKqWWhQnSgYI0EeE89ykBNtiW_R5LRogA5nFJW4lQy2DMv-37peuGu1pu-BAsm6iJwFE0OogY01bWwsIhapGjlgQbtY4vJhEOJr4CItQFUKux2VojlrMlfDefkOCZs5v2gjnTeZ6HC9x7RdQBtKUImQYV4Eg.XhW29WnPlnUCIzIUXyRDxg.29_Y-46C5Jl0hT9eq91j3WN2iKmBcKhqXeCtL4BemP72AxqnPAsHR-BM904hTIu80a5-vC30yZ1jxMI6rx9F1KyZHRgZasky140KJ0jTcTPuGmLmMT7szVlfgZ8G1S1YY0DfvFm_QIu-Rld6x5Yl8g.xxUgPNDRzytPy7i36K08gQ" + }, + "record": { + "CNAME": "nicollas.dev" + } +} diff --git a/domains/nietbeer.json b/domains/nietbeer.json new file mode 100644 index 000000000..de3f3b784 --- /dev/null +++ b/domains/nietbeer.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "VulcanoSoftware", + "discord": "814891541205876767", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NZN_bOggifZEtlA324wg2l2u3hX2MvZuD3yLHULkNX81YRQfOCtvT0IfoXAKV5IMD8GRt8qFAo2Rpw2lOvrTrvlEmjPkO_u0n5ScCZVU6FsXENlBz4zD5hHAes_kd1LCzFOICbmNdLNqWEoMEiNUw6VZiUfuIuqrJXIRXkSFXWQGWYUc_wbzu1oEdKLwNt0IvY4DyQ9pWvCSnsQlhXb7lUJS6iC-VUBoAqZnTuScHpwx5xHXHhFdJu2iiBU8zmroAQTxJ28-DLTuBmIRMQgS-FfZK0i7UQHnZb2f3CdWzi2lmlBQM-NCf8yOzziPAoS8cF1Eh4eQLKerBWlHyCSiyg.r37yi_KvhV0NTbXtet_DHw.PTf0jwkhBjRrEF8mdrsrhSetzO6jeM9XX50rJgv5brt3XwRbYWWaOlZjaLWTBNOuGGlCplqBngPJkB3ycZNUpay8NXKTGwdaSNgQRmi_-O_HbETajYI_zPsfLtjW-DEC.jHnPtvN5bcAswFISD9YBeg" + }, + "record": { + "CNAME": "nietbeer.pages.dev" + } +} diff --git a/domains/nifle.json b/domains/nifle.json new file mode 100644 index 000000000..fa016c2f0 --- /dev/null +++ b/domains/nifle.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Nifle-CGE", + "discord": "553939229475078154", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRTs07oBPtm7QihIkDqo1f3eBQwtYmpzZZYebo3UsxrJ9gpmPnY42WdO-H0r8XRAwYiwzZjZ8GnmRrG2xwz_8dw49VD0UvvWyJKTR7SSN1XxznSkbGJ3wthb384seNE_Fhg-E6Q6qV9vW8B1U6GD39blKsURHcgpTrSa-qopwXDeFctAo-RcxbmFwr-Mw0Cwr9ia3L1wnqvOSjQbU0a92oVv6293QbSvqgupXkS1ttXoBR9rpDPp8tH9oIXbCK4AhVTKowgIYAYh2iZT41nlkFKeus10yRKw5GqyokBXBdA70qKnU3lCd9VFZ4Eq4DxbSoMNBqk8FADig2MtA5RBFg.CqfMnrP60ibdRwfM4yUB8A.HZl3zu19tbnEz2j4hlejxUJfoEkCk0qsLeHlqLzc1-qXAnH1984_R8joN9l3WWA0Jgr13m8qr-GQsAEcjjdiog.vUXuNT3B9rjoE606ZfrRRA" + }, + "record": { + "A": ["172.234.178.155"] + } +} diff --git a/domains/nihalkrishna.json b/domains/nihalkrishna.json new file mode 100644 index 000000000..cbe2b895b --- /dev/null +++ b/domains/nihalkrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nkverified", + "email": "nkverifiedyt@gmail.com" + }, + "record": { + "CNAME": "nkverified.github.io" + } +} diff --git a/domains/nikaxe.json b/domains/nikaxe.json index 08a181557..b31efedb9 100644 --- a/domains/nikaxe.json +++ b/domains/nikaxe.json @@ -6,6 +6,6 @@ "email": "iamnikaxing@gmail.com" }, "record": { - "CNAME": "Nikaxe-dev.github.io" + "CNAME": "nikaxe-dev.github.io" } } diff --git a/domains/nikhilji.json b/domains/nikhilji.json new file mode 100644 index 000000000..5b91aedf0 --- /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" + }, + "record": { + "CNAME": "cityji.github.io" + } +} diff --git a/domains/nikity.json b/domains/nikity.json new file mode 100644 index 000000000..4cfaf02c1 --- /dev/null +++ b/domains/nikity.json @@ -0,0 +1,10 @@ +{ + "description": "Subdomain woohoo", + "owner": { + "username": "Nikityyy", + "email": "bergernikita1807@gmail.com" + }, + "record": { + "CNAME": "nikityyy.github.io" + } +} diff --git a/domains/nikolas.json b/domains/nikolas.json deleted file mode 100644 index ab016d33d..000000000 --- a/domains/nikolas.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Personal Landing Page!", - "repo": "https://github.com/MuhekoNikolas/p2", - "owner": { - "username": "MuhekoNikolas", - "email": "13nikolusmuheko@gmail.com", - "twitter": "MuhekoNikolas" - }, - "record": { - "CNAME": "muhekonikolas.github.io" - } -} diff --git a/domains/nikolus.json b/domains/nikolus.json deleted file mode 100644 index 0840f61ce..000000000 --- a/domains/nikolus.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Personal Landing Page!", - "repo": "https://github.com/MuhekoNikolas/MuhekoNikolas.github.io", - "owner": { - "username": "MuhekoNikolas", - "email": "13nikolusmuheko@gmail.com", - "twitter": "MuhekoNikolas" - }, - "record": { - "CNAME": "muhekonikolas.github.io" - } -} diff --git a/domains/nikymetaa.json b/domains/nikyofficial.json similarity index 69% rename from domains/nikymetaa.json rename to domains/nikyofficial.json index 47695a8d3..561752de2 100644 --- a/domains/nikymetaa.json +++ b/domains/nikyofficial.json @@ -4,6 +4,6 @@ "email": "anhky581@gmail.com" }, "record": { - "CNAME": "28nikyportfolio03.github.io" + "CNAME": "nikyy2.github.io" } } diff --git a/domains/nine.json b/domains/nine.json index 626fa06b4..7f9aca78e 100644 --- a/domains/nine.json +++ b/domains/nine.json @@ -4,7 +4,8 @@ "email": "notninelel@gmail.com" }, "record": { - "A": ["76.223.55.44"], - "TXT": "deta-verification=DyZWThRbwVx1vudpA5oB8DEekn58LG75" + "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/nino.json b/domains/nino.json index 17327b571..605b45e51 100644 --- a/domains/nino.json +++ b/domains/nino.json @@ -8,6 +8,6 @@ "discord": "tokisakinino" }, "record": { - "CNAME": "TokisakiNinoVn.github.io" + "CNAME": "tokisakininovn.github.io" } } diff --git a/domains/nipuni.json b/domains/nipuni.json new file mode 100644 index 000000000..6e72a2979 --- /dev/null +++ b/domains/nipuni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nipunigamage", + "email": "nipunikanishka255@gmail.com" + }, + "record": { + "CNAME": "nipuni.pages.dev" + } +} diff --git a/domains/nirushan.json b/domains/nirushan.json index 0b97aceeb..5c2d829d7 100644 --- a/domains/nirushan.json +++ b/domains/nirushan.json @@ -4,7 +4,7 @@ "owner": { "username": "nirushan1", "email": "nirushan.prabaharan@gmail.com", - "twitter": "@tpnirushan" + "twitter": "tpnirushan" }, "record": { "CNAME": "nirushan1.github.io" diff --git a/domains/nitesh.json b/domains/nitesh.json index 0184367ce..742820f23 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": { - "CNAME": "Niteshballa.github.io" + "CNAME": "niteshballa.github.io" } } diff --git a/domains/nithinramkalava.json b/domains/nithinramkalava.json new file mode 100644 index 000000000..5f23c0bed --- /dev/null +++ b/domains/nithinramkalava.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nithinramkalava", + "email": "nithinramkalava@gmail.com" + }, + "record": { + "CNAME": "nithinramkalava.vercel.app" + } +} \ No newline at end of file diff --git a/domains/nitink.json b/domains/nitink.json new file mode 100644 index 000000000..c5ca1c553 --- /dev/null +++ b/domains/nitink.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NitinKosuru", + "email": "nitinkosuru@vk.com" + }, + "record": { + "CNAME": "nitink.pages.dev" + } +} diff --git a/domains/niyakipham.json b/domains/niyakipham.json new file mode 100644 index 000000000..feee6752f --- /dev/null +++ b/domains/niyakipham.json @@ -0,0 +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" + } +} diff --git a/domains/nlog0312.json b/domains/nlog0312.json new file mode 100644 index 000000000..2d8ce48c1 --- /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" + }, + "record": { + "CNAME": "nlog0312.github.io" + } +} diff --git a/domains/nnocsupnn.json b/domains/nnocsupnn.json new file mode 100644 index 000000000..908c13ff5 --- /dev/null +++ b/domains/nnocsupnn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nnocsupnn", + "email": "nnocsupnn@gmail.com" + }, + "record": { + "CNAME": "nnocsupnn.github.io" + } +} diff --git a/domains/noah.json b/domains/noah.json new file mode 100644 index 000000000..de21756e2 --- /dev/null +++ b/domains/noah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "noahprm", + "email": "contact.noahprm@gmail.com", + "discord": "949273553168121856" + }, + "record": { + "A": ["217.145.72.79"] + } +} diff --git a/domains/noctade.json b/domains/noctade.json new file mode 100644 index 000000000..97a3b5b64 --- /dev/null +++ b/domains/noctade.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "noctade", + "discord": "1117869855538942032", + "email": "endeade80@gmail.com" + }, + "record": { + "CNAME": "noctade.github.io" + } +} diff --git a/domains/node.creeperita104.json b/domains/node.creeperita104.json deleted file mode 100644 index 66df526f1..000000000 --- a/domains/node.creeperita104.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "creeperita09", - "email": "creeperita.09@gmail.com" - }, - "record": { - "CNAME": "icahomesvr2022.freeddns.org" - } -} diff --git a/domains/noelpaton-og.json b/domains/noelpaton-og.json new file mode 100644 index 000000000..c3cae7c54 --- /dev/null +++ b/domains/noelpaton-og.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "noelpaton-og", + "email": "noel27938@gmail.com" + }, + "record": { + "CNAME": "noelpaton-og.github.io" + } +} diff --git a/domains/noelpatonog.json b/domains/noelpatonog.json new file mode 100644 index 000000000..c3cae7c54 --- /dev/null +++ b/domains/noelpatonog.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "noelpaton-og", + "email": "noel27938@gmail.com" + }, + "record": { + "CNAME": "noelpaton-og.github.io" + } +} diff --git a/domains/nohello.areen.json b/domains/nohello.areen.json new file mode 100644 index 000000000..10cf32ac9 --- /dev/null +++ b/domains/nohello.areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "record": { + "CNAME": "nogreeting.pages.dev" + } +} diff --git a/domains/nolan-mai.json b/domains/nolan-mai.json new file mode 100644 index 000000000..5a940810f --- /dev/null +++ b/domains/nolan-mai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PotBorger", + "email": "khanhtrinh232005@gmail.com" + }, + "record": { + "CNAME": "potborger.github.io" + } +} diff --git a/domains/noob.json b/domains/noob.json new file mode 100644 index 000000000..a045d21c1 --- /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" + }, + "record": { + "CNAME": "noob.bio" + } +} diff --git a/domains/noobisaures.json b/domains/noobisaures.json new file mode 100644 index 000000000..09a549ff8 --- /dev/null +++ b/domains/noobisaures.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Noobisaures", + "discord": "870276960612417547", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U9E5oy6QJ_6JPAXOS_wPVyf-HFpys0sk1g2YTDoXFXHwf401lviDDiIrRSQBpfcX9SU9Z_EiPPRyTPg5MgKPCk0nAZnrLPd9olGHWjmkAqChoilSgbIrPur_XjK4auEqNY5vnXXkRqsqfgyJXCJMWankMAVGPjKe6uCVmw35fHF6OVlQQigUjwF72sOwuyY64jD4E-4JqbWFH9hpf2iiS0zSkiRrky9saSRB4uYtZiufcqr15GuvG1Ph2wxkGsi8TbzULcBJpp6I_l3rdB6YHnMwfIObnxjkit5-XT5Kzg-UeN7ARBo18dRqT8RHBAAkLWFwoh20zjm-ZHFMPRansw.Y4JyMKv3N3ei6sTLWeDnMw.5vxFYH93kZl0hqJSvH-dOrubSvqhySCJSpLwbMcmITDr3iFKQD5MTRmakG5Y7xsVOkfIsVI5SSE_J-xyK9GzF5VqMboA54jr6Ve1MOuJtXk.4R8YFrOAu78Xfu9GB6YNsQ" + }, + + "record": { + "CNAME": "noobisaures.github.io" + } + } + diff --git a/domains/not.json b/domains/not.json new file mode 100644 index 000000000..a930938e5 --- /dev/null +++ b/domains/not.json @@ -0,0 +1,10 @@ +{ + "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"] + } +} diff --git a/domains/notaperson535.json b/domains/notaperson535.json index 00dd1d1d2..af68b5d16 100644 --- a/domains/notaperson535.json +++ b/domains/notaperson535.json @@ -6,6 +6,6 @@ "email": "notAperson939@gmail.com" }, "record": { - "CNAME": "notAperson535.github.io" + "CNAME": "notaperson535.github.io" } } diff --git a/domains/notaproton.json b/domains/notaproton.json new file mode 100644 index 000000000..c5c9bf4e1 --- /dev/null +++ b/domains/notaproton.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NotAProton", + "discord": "881083592648843294", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ljVmbkSps_q105bpImCtqo4lcTC3vXwfeKumQRVxp8bEoL2YAJOK_L1-ZJS3xoqwYz4dGhXRgfMwbXxt5DywBdnkWksIaVeslM0kAmjfqFGzT6j7YuFHHn0lCrtJACVCqfnkM6m-K8JVO71W66hnpyHqUep-pk-PEi7ySj7NibAjqMNf2UJiawXTTVLk3ynTUkwF4TJPwm4SdUJ6u9-YoFOh2aLOc716UINMAyRtnhB_LrfOYbl2a0OEnQGNdyEMqs1gjzmtn1wq_MZp6rI0HsRGV8PXuUh4GeEdptRCk2WIs2Rgg8vK1ECQ_DbbFCH0f1qxZAEngq-kTmByoICfhg.vi-XIRIxV8vkUwHBfoDxvQ._nY8vknWdQ_aGvm7_e2oh64O8IePxVzUV-Cxc20Y8HIG1ZihZ1_ae_BeL5b6OxJ9Ku0vnvwzitskb1y58Ja6krv4v-OVUft6kdUUYkyhB5Hai7HIRDbtiT9FD5EFXd3F.uS_CcluynSxFeTDrJosDrw" + }, + + "record": { + "CNAME": "notaproton.github.io" + } +} diff --git a/domains/notcoded.json b/domains/notcoded.json index d065c32ac..de3fc586b 100644 --- a/domains/notcoded.json +++ b/domains/notcoded.json @@ -3,7 +3,7 @@ "repo": "https://github.com/not-coded/not-coded.github.io", "owner": { "username": "not-coded", - "discord": "Code#9844", + "discord": "notcoded", "discordUserID": "620662953347121163" }, "record": { diff --git a/domains/notdevmatei.json b/domains/notdevmatei.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/notdevmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/notjunar.json b/domains/notjunar.json index 9a2d8e24c..10803726b 100644 --- a/domains/notjunar.json +++ b/domains/notjunar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "NotJunar", - "discord": "notjunar" - }, - "record": { - "CNAME": "notjunar.github.io" - } -} + "owner": { + "username": "NotJunar", + "discord": "notjunar" + }, + "record": { + "CNAME": "notjunar.github.io" + } +} diff --git a/domains/notzer0two.json b/domains/notzer0two.json new file mode 100644 index 000000000..d1205c6f6 --- /dev/null +++ b/domains/notzer0two.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotZer0Two", + "email": "lyonfan2010@gmail.com" + }, + "record": { + "CNAME": "notzer0two.vercel.app" + } +} diff --git a/domains/nova.json b/domains/nova.json index 6dfa7862f..8b26af689 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" + "A": ["23.136.44.108"] } } diff --git a/domains/nparashar150.json b/domains/nparashar150.json new file mode 100644 index 000000000..634f1fa7e --- /dev/null +++ b/domains/nparashar150.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nparashar150", + "email": "nparashar150@gmail.com" + }, + "record": { + "CNAME": "portfolio-beta-ecru-19.vercel.app" + } +} diff --git a/domains/nthn.json b/domains/nthn.json index 622f63a89..dca567fa2 100644 --- a/domains/nthn.json +++ b/domains/nthn.json @@ -1,6 +1,5 @@ { "description": "Storage Untuk Mengupload Semua Filemu", - "repo": "https://github.com/ZeroChanBot", "owner": { "username": "Nathan", "email": "contact@webraku.xyz" diff --git a/domains/ntrs05.json b/domains/ntrs05.json new file mode 100644 index 000000000..dd0ff0e8a --- /dev/null +++ b/domains/ntrs05.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ntrs05", + "email": "tukheo123@gmail.com" + }, + "record": { + "CNAME": "ntrs05.github.io" + } +} diff --git a/domains/nuggew.json b/domains/nuggew.json new file mode 100644 index 000000000..917fd7f2a --- /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" + }, + "record": { + "CNAME": "nuggew.github.io" + } +} diff --git a/domains/nulitas.json b/domains/nulitas.json index 9f199808d..90cde575e 100644 --- a/domains/nulitas.json +++ b/domains/nulitas.json @@ -2,7 +2,7 @@ "owner": { "username": "nulitas", "email": "ndrakita@gmail.com", - "discord": "@nulitas" + "discord": "nulitas" }, "record": { "CNAME": "nulitas.github.io" diff --git a/domains/nullaustin.json b/domains/nullaustin.json new file mode 100644 index 000000000..28b84aa3f --- /dev/null +++ b/domains/nullaustin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Null-Austin", + "email": "admoore1310@gmail.com" + }, + "record": { + "CNAME": "null-austin.github.io" + } +} diff --git a/domains/nuraly.json b/domains/nuraly.json new file mode 100644 index 000000000..54dea8e7c --- /dev/null +++ b/domains/nuraly.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for the portfolio website", + "owner": { + "username": "nuraly-v", + "email": "mescorpx@gmail.com" + }, + "record": { + "CNAME": "nuraly-v.github.io" + } +} diff --git a/domains/nvcoden.json b/domains/nvcoden.json new file mode 100644 index 000000000..2a76f5f2a --- /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" + }, + "record": { + "CNAME": "nvcoden.github.io" + } +} diff --git a/domains/nvhai272.json b/domains/nvhai272.json new file mode 100644 index 000000000..1a5cb16fb --- /dev/null +++ b/domains/nvhai272.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "nvhai272" + }, + "record": { + "CNAME": "nvhai272.github.io" + } +} diff --git a/domains/nvhmadridista.json b/domains/nvhmadridista.json new file mode 100644 index 000000000..e4b352ee5 --- /dev/null +++ b/domains/nvhmadridista.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nvhmadridista", + "email": "nvh.madridista@email.address" + }, + "record": { + "CNAME": "nvhmadridista.github.io" + } +} diff --git a/domains/nxmtuan.json b/domains/nxmtuan.json new file mode 100644 index 000000000..70a8e9007 --- /dev/null +++ b/domains/nxmtuan.json @@ -0,0 +1,11 @@ +{ + "description": "nxmt-profile.dev", + "owner": { + "username": "tuannguyen2002", + "email": "coixaygio107@gmail.com", + "discord": "nightfury06749" + }, + "record": { + "CNAME": "profile-sigma-wine.vercel.app" + } +} diff --git a/domains/nxrmqlly.json b/domains/nxrmqlly.json index 403ae35f2..0702db19d 100644 --- a/domains/nxrmqlly.json +++ b/domains/nxrmqlly.json @@ -3,8 +3,7 @@ "repo": "https://github.com/nxrmqlly/nxrmqlly.github.io", "owner": { "username": "nxrmqlly", - "email": "ritam.das3110@outlook.com", - "twitter": "" + "email": "ritam.das3110@outlook.com" }, "record": { "CNAME": "nxrmqlly.github.io" diff --git a/domains/nyexoi.json b/domains/nyexoi.json new file mode 100644 index 000000000..b21698a73 --- /dev/null +++ b/domains/nyexoi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nyex0i", + "discord": "1212192971164754033", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRgrN599r8xvQuvmS0Z9rYahQfr4DHRpFuqCcx0hA7lqvxyfU2bINENKxB9qHUKVLcxxJsVxJhTu9bHMg_lI7CKxDOHfil06iy4biCCDnUCKub8ju3d4YkZoVCBWM5uSHu1BqBjlWD_xKu6jHpV6SwbHbwLpWXSdH-P_KGTgHbaj5NCptvX0s4DdyVZDV5oBqz6VAmqAl0HoSFFnuANz8lfgE9z_yIxK0Rj4u4ce9et9Qkd1QGltI6er9tU2U9LH5X0J7qkA9Cl9sXyO8VwPm70qQfLx-aZ0MZPcHvPNxMiiJ5DxOuvYZS1HQ494nA5ghWQk8WFjvHSiRMaEh5aWBQ.SmcC2sB5sRSC4T9sNkidRw.0Y8OEmwmNVpmr34As2NwAlt-FhlBVOUuYyS8SXHLAh3Q4aYJv55WdwEVNd4u9JWSEwBxYLdajkKFimVzPunQQQqNvfbKGhp3rBdgels_dJU.irZbgI_gDpGkNpagO9e-Nw" + }, + "record": { + "CNAME": "siteisw.tiiny.site" + } +} diff --git a/domains/oalonzo.json b/domains/oalonzo.json new file mode 100644 index 000000000..70e38da42 --- /dev/null +++ b/domains/oalonzo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "valitogt", + "email": "oswalonzo@hotmail.com" + }, + "record": { + "CNAME": "Valitogt79.github.io" + } +} diff --git a/domains/objshadow.json b/domains/objshadow.json new file mode 100644 index 000000000..15fa06e0f --- /dev/null +++ b/domains/objshadow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShadowObj", + "email": "shadowobject@protonmail.com" + }, + "record": { + "CNAME": "objshadow.pages.dev" + } +} diff --git a/domains/oc.json b/domains/oc.json index f5b369bce..4e82f95b6 100644 --- a/domains/oc.json +++ b/domains/oc.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "CNAME": "edge.redirect.pizza" + "URL": "https://orangc.net" } } diff --git a/domains/ofheather.json b/domains/ofheather.json new file mode 100644 index 000000000..db6a84853 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ok.json b/domains/ok.json new file mode 100644 index 000000000..1efdd2419 --- /dev/null +++ b/domains/ok.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "catch6", + "email": "catchlife6@163.com" + }, + "record": { + "CNAME": "catch6.github.io" + } +} diff --git a/domains/okinea.json b/domains/okinea.json index 5b83bc6b2..32605b493 100644 --- a/domains/okinea.json +++ b/domains/okinea.json @@ -1,16 +1,12 @@ { "description": "Okinea Dev website", - "repo": "https://github.com/okineadev", "owner": { "username": "okineadev", - "email": "81070564+okineadev@users.noreply.github.com" + "telegram": "https://telegram.okinea.dev", + "email": "hi@okinea.dev", + "discord": "okineadev" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "URL": "https://okinea.dev" } } diff --git a/domains/olasubomi.json b/domains/olasubomi.json new file mode 100644 index 000000000..d1afa00b1 --- /dev/null +++ b/domains/olasubomi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "firstaxel", + "email": "olasubomiolubisi@geeg.space", + "discord": "1209136236607049758" + }, + "record": { + "CNAME": "twinkle-portfolio-wine.vercel.app" + } +} diff --git a/domains/old.rizz.json b/domains/old.rizz.json new file mode 100644 index 000000000..8d131c18a --- /dev/null +++ b/domains/old.rizz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bananaking6", + "discord": "skibidibagel" + }, + "record": { + "CNAME": "skibidi-2.vercel.app" + } +} diff --git a/domains/oliver.json b/domains/oliver.json new file mode 100644 index 000000000..357322288 --- /dev/null +++ b/domains/oliver.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oli-ward", + "email": "oliver.ward94@gmail.com" + }, + "record": { + "CNAME": "is-a-dev-zc9.pages.dev" + } +} diff --git a/domains/oliverg.json b/domains/oliverg.json new file mode 100644 index 000000000..199bf0bba --- /dev/null +++ b/domains/oliverg.json @@ -0,0 +1,13 @@ +{ + "description": "Portfolio", + "owner": { + "username": "oliver720", + "email": "olivergarro2017@gmail.com" + }, + "record": { + "A": [ + "52.160.46.153" + ] + }, + "proxied": false +} diff --git a/domains/omaradel.json b/domains/omaradel.json new file mode 100644 index 000000000..0b634aaba --- /dev/null +++ b/domains/omaradel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xOmarAdel", + "email": "omaradelawad20013@gmail.com" + }, + "record": { + "CNAME": "omar-adel.netlify.app" + } +} diff --git a/domains/omarjaber.json b/domains/omarjaber.json new file mode 100644 index 000000000..18ff50d83 --- /dev/null +++ b/domains/omarjaber.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/omarHJ/Portfolio-Website", + "owner": { + "username": "omarHJ", + "email": "omarpp5555@gmail.com" + }, + "record": { + "CNAME": "omarhj.github.io" + } +} diff --git a/domains/omarmarquez.json b/domains/omarmarquez.json new file mode 100644 index 000000000..f1509f066 --- /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" + }, + "record": { + "CNAME": "trkiller02.github.io" + } + } diff --git a/domains/omesh.json b/domains/omesh.json new file mode 100644 index 000000000..a6fd02709 --- /dev/null +++ b/domains/omesh.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "omesh7" + }, + "record": { + "CNAME": "omesh7.github.io" + } +} diff --git a/domains/omi.json b/domains/omi.json new file mode 100644 index 000000000..e9f3641b3 --- /dev/null +++ b/domains/omi.json @@ -0,0 +1,9 @@ +{ + "description": "Omi Personal Webpage", + "owner": { + "username": "omi-the-sorcerer" + }, + "record": { + "CNAME": "omi.cat" + } +} diff --git a/domains/omkar.json b/domains/omkar.json new file mode 100644 index 000000000..31c6b9561 --- /dev/null +++ b/domains/omkar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "omkarkirpan", + "email": "okirpan@gmail.com" + }, + "repo": "https://github.com/omkarkirpan", + "record": { + "CNAME": "omkarkirpan.com" + } +} diff --git a/domains/omkartenkale.json b/domains/omkartenkale.json new file mode 100644 index 000000000..894613d27 --- /dev/null +++ b/domains/omkartenkale.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "omkar-tenkale", + "email": "otenkale@gmail.com" + }, + "record": { + "CNAME": "omkar-tenkale.github.io" + } +} diff --git a/domains/omkhalane.json b/domains/omkhalane.json new file mode 100644 index 000000000..c6b5fb2ed --- /dev/null +++ b/domains/omkhalane.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "omkhalane", + "email": "om.khalane.dev@gmail.com" + }, + "record": { + "URL": "https://omkhalane.github.io/portfolio/" + } +} diff --git a/domains/oneclick-macos-simple-kvm.notaperson535.json b/domains/oneclick-macos-simple-kvm.notaperson535.json index 2135c3dd1..d963cbb33 100644 --- a/domains/oneclick-macos-simple-kvm.notaperson535.json +++ b/domains/oneclick-macos-simple-kvm.notaperson535.json @@ -6,6 +6,6 @@ "email": "notAperson939@gmail.com" }, "record": { - "CNAME": "notAperson535.github.io" + "CNAME": "notaperson535.github.io" } } diff --git a/domains/onerandom.json b/domains/onerandom.json new file mode 100644 index 000000000..7ce863398 --- /dev/null +++ b/domains/onerandom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OneRandom1509", + "email": "anantukid@gmail.com" + }, + "record": { + "CNAME": "folio-five-beta.vercel.app" + } +} diff --git a/domains/onkarsathe.json b/domains/onkarsathe.json new file mode 100644 index 000000000..d683a379c --- /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" + }, + "record": { + "CNAME": "onkarsathe007.github.io" + } +} diff --git a/domains/optidium.json b/domains/optidium.json index 40b3cea5d..2a3cfa767 100644 --- a/domains/optidium.json +++ b/domains/optidium.json @@ -6,6 +6,6 @@ "email": "ka237133@gmail.com" }, "record": { - "CNAME": "XMODERLIVE.github.io" + "CNAME": "xmoderlive.github.io" } } diff --git a/domains/orange.json b/domains/orange.json index f5b369bce..4e82f95b6 100644 --- a/domains/orange.json +++ b/domains/orange.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "CNAME": "edge.redirect.pizza" + "URL": "https://orangc.net" } } diff --git a/domains/ordernest.json b/domains/ordernest.json new file mode 100644 index 000000000..da4df6853 --- /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" + }, + "record": { + "CNAME": "ordernest.qevi7356.odns.fr" + } +} diff --git a/domains/orellanamatias.json b/domains/orellanamatias.json new file mode 100644 index 000000000..b02f95c3b --- /dev/null +++ b/domains/orellanamatias.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OrellanaMatias", + "email": "meorellanaramirez@gmail.com", + "discord": "1151115185419997184" + }, + "record": { + "CNAME": "portafolio-orellana-workspace.vercel.app" + } +} diff --git a/domains/osama.json b/domains/osama.json new file mode 100644 index 000000000..b963d5b52 --- /dev/null +++ b/domains/osama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/osho.json b/domains/osho.json new file mode 100644 index 000000000..825030894 --- /dev/null +++ b/domains/osho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "record": { + "CNAME": "profxadke.github.io" + } +} diff --git a/domains/owais.json b/domains/owais.json new file mode 100644 index 000000000..ca1220e1d --- /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" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/owens.json b/domains/owens.json new file mode 100644 index 000000000..c9cec82df --- /dev/null +++ b/domains/owens.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "owenslopez211" + }, + "record": { + "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 index 018b2b59a..c1ee8caa7 100644 --- a/domains/owl.json +++ b/domains/owl.json @@ -4,7 +4,7 @@ "email": "admin@is-a.dev" }, "record": { - "CNAME": "p2pb.dev" + "CNAME": "wdh.app" }, "proxied": true } diff --git a/domains/owo.json b/domains/owo.json index a09f4bb39..4e82f95b6 100644 --- a/domains/owo.json +++ b/domains/owo.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "A": ["18.133.72.105"] + "URL": "https://orangc.net" } } diff --git a/domains/p.json b/domains/p.json index 04961f75d..4f8ad8e8c 100644 --- a/domains/p.json +++ b/domains/p.json @@ -1,7 +1,7 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com" + "email": "priyansxu@yahoo.com" }, "record": { "CNAME": "edge.redirect.pizza" diff --git a/domains/pa1.json b/domains/pa1.json new file mode 100644 index 000000000..f73da35a9 --- /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" + }, + "record": { + "CNAME": "pavan-ambekar.github.io" + } +} diff --git a/domains/palak.json b/domains/palak.json index 01ec8e9d9..ad11a082f 100644 --- a/domains/palak.json +++ b/domains/palak.json @@ -1,6 +1,6 @@ { "owner": { - "username": "LegendOP1041", + "username": "akshtt-dev", "email": "maillegendop@gmail.com", "discord": "1056531806763102218" }, diff --git a/domains/pan.json b/domains/pan.json new file mode 100644 index 000000000..31fb376fc --- /dev/null +++ b/domains/pan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Currypan1229", + "email": "abcqqqwpvp@gmail.com" + }, + "record": { + "URL": "https://github.com/Currypan1229" + } +} diff --git a/domains/panashe-mapika.json b/domains/panashe-mapika.json new file mode 100644 index 000000000..0369a3bb4 --- /dev/null +++ b/domains/panashe-mapika.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "panda-zw" + }, + "record": { + "CNAME": "panashe.codes" + } +} diff --git a/domains/panashe.json b/domains/panashe.json new file mode 100644 index 000000000..0369a3bb4 --- /dev/null +++ b/domains/panashe.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "panda-zw" + }, + "record": { + "CNAME": "panashe.codes" + } +} diff --git a/domains/panda.json b/domains/panda.json new file mode 100644 index 000000000..23d8869c7 --- /dev/null +++ b/domains/panda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0pandadev", + "email": "contact@pandadev.net" + }, + "record": { + "CNAME": "pandadev.net" + } +} diff --git a/domains/panel.creeperita104.json b/domains/panel.creeperita104.json deleted file mode 100644 index 66df526f1..000000000 --- a/domains/panel.creeperita104.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "creeperita09", - "email": "creeperita.09@gmail.com" - }, - "record": { - "CNAME": "icahomesvr2022.freeddns.org" - } -} diff --git a/domains/panel.vulcanocraft.json b/domains/panel.vulcanocraft.json index 476c8e910..baf8a4c5a 100644 --- a/domains/panel.vulcanocraft.json +++ b/domains/panel.vulcanocraft.json @@ -4,7 +4,6 @@ "discord": "814891541205876767", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cT0Sm5ImSgFtrSLPMnQCdiQ22eeG9cU-X47BHIi-PwL6zMYOeUdsPEOpqDci0QKqrY9F0htQgSrgftsz5RtsbO0NWJsMwLcDdJ7daHeJQLKEjK_mMjv0xwf7pM4rRzGaed7euFSMP-LWAy3yni3911hMfU31BKYpoLzKOAvlzIRzFx58yT2URT2a7pzXLKQjhOHrBepCE9ssYyWmHiOhh8-zbUi8rMqX0m8zDntWqTVjjOdjyfji4QTyaTNsGK5CoMQudYcY3LHaVFvWM2kTJ6sTu26bWRTIth09WWdegQMMtSxuQoo8BRd_gHcweSN-yE5a9PSo5yh8-_6f1EeX_Q.XQLnjpPi_TRxouddA3YfTQ.GMRXSo5jiV2gnabTbuZaNbb5etbBABBaof-7KggBf7CCy2J2E5RsE4Zy6Nwwer2AJ_QK8XnRn7z0W4ahjnFRMq5DTUzAUGqyY5qrAKuoSXBvVNrK9X0n2TwnyxzZPIHT.v-xaNb6vPxjQjEYSAPFXnw" }, - "record": { "CNAME": "vulcanopanel.pages.dev" } diff --git a/domains/panel.xrap1dx.json b/domains/panel.xrap1dx.json index cf7422741..c1125cb8f 100644 --- a/domains/panel.xrap1dx.json +++ b/domains/panel.xrap1dx.json @@ -1,6 +1,5 @@ { "description": "making my cdn!!!", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "discord": "xrap1dx" diff --git a/domains/pankaj.json b/domains/pankaj.json new file mode 100644 index 000000000..451ad5fea --- /dev/null +++ b/domains/pankaj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "1719pankaj", + "email": "1719pankaj@gmail.com" + }, + "record": { + "URL": "https://1719pankaj.github.io" + } +} diff --git a/domains/panntod.json b/domains/panntod.json new file mode 100644 index 000000000..eefcf50dc --- /dev/null +++ b/domains/panntod.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "panntod", + "email": "munjalindra.pandhu@gmail.com", + "discord": "975960358999171152" + }, + "record": { + "CNAME": "panntod-personal.vercel.app" + } +} diff --git a/domains/parshnt.json b/domains/parshnt.json index 169b9886b..d17b6d3d3 100644 --- a/domains/parshnt.json +++ b/domains/parshnt.json @@ -1,6 +1,5 @@ { "description": "YAY, new place for my Portfolio", - "repo": "https://github.com/parshnt", "owner": { "username": "parshnt", "email": "hi.parshant@gmail.com" diff --git a/domains/parthmandawaria.json b/domains/parthmandawaria.json new file mode 100644 index 000000000..a6d4e2727 --- /dev/null +++ b/domains/parthmandawaria.json @@ -0,0 +1,10 @@ +{ + "description": "crazyy domain for my portfolio", + "owner": { + "username": "parthhcodess", + "email": "parthmandawaria@gmail.com" + }, + "record": { + "CNAME": "parthhcodess.github.io" + } + } \ No newline at end of file diff --git a/domains/pashigin.json b/domains/pashigin.json index 9f9b79e86..d32fbb69f 100644 --- a/domains/pashigin.json +++ b/domains/pashigin.json @@ -3,7 +3,7 @@ "repo": "https://github.com/Pashigin/register", "owner": { "username": "pashigin", - "telegram": "@pashigin" + "telegram": "pashigin" }, "record": { "A": ["75.2.60.5"] diff --git a/domains/patrick.json b/domains/patrick.json new file mode 100644 index 000000000..98cdd9f96 --- /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" + }, + "record": { + "URL": "https://kollitsch.dev/" + } +} diff --git a/domains/pau.json b/domains/pau.json new file mode 100644 index 000000000..0681828fc --- /dev/null +++ b/domains/pau.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paugp", + "email": "hello@pau.dev" + }, + "record": { + "URL": "https://pau.dev/" + } +} diff --git a/domains/paul.json b/domains/paul.json index 8628d3dbe..8bf246773 100644 --- a/domains/paul.json +++ b/domains/paul.json @@ -1,6 +1,5 @@ { "description": "My Personal Landing Page!", - "repo": "https://github.com/NotKaskus", "owner": { "username": "NotKaskus", "email": "kaskus45@protonmail.com" diff --git a/domains/paul8liveira.json b/domains/paul8liveira.json new file mode 100644 index 000000000..20abf88a4 --- /dev/null +++ b/domains/paul8liveira.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "paul8liveira", + "email": "paul8liveira@gmail.com" + }, + "record": { + "CNAME": "paul8liveira.vercel.app" + } +} diff --git a/domains/paulmarc.json b/domains/paulmarc.json new file mode 100644 index 000000000..814800126 --- /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" + }, + "record": { + "URL": "https://github.com/paulmarc" + }, + "proxied": false +} diff --git a/domains/pavanc.json b/domains/pavanc.json new file mode 100644 index 000000000..9a452f4d4 --- /dev/null +++ b/domains/pavanc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pavancos", + "email": "pavankc005@gmail.com" + }, + "record": { + "URL": "https://pavanc.me" + } +} diff --git a/domains/pavankteja.json b/domains/pavankteja.json new file mode 100644 index 000000000..103620a58 --- /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" + }, + "record": { + "CNAME": "pavan-k-teja.github.io" + } +} diff --git a/domains/pavlo.json b/domains/pavlo.json new file mode 100644 index 000000000..39fa6a911 --- /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" + }, + "record": { + "CNAME": "olvap80.github.io" + } +} diff --git a/domains/pawan.json b/domains/pawan.json new file mode 100644 index 000000000..fad1cadc3 --- /dev/null +++ b/domains/pawan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pawansubedi889", + "email": "mail@pawansubedi.me" + }, + "record": { + "URL": "https://www.pawansubedi.me/" + } +} diff --git a/domains/paylink.joe50097.json b/domains/paylink.joe50097.json new file mode 100644 index 000000000..8e8189e0c --- /dev/null +++ b/domains/paylink.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "CNAME": "paylink-comming-soon.netlify.app" + } +} diff --git a/domains/pdf.aaqif.json b/domains/pdf.aaqif.json new file mode 100644 index 000000000..0a8e701d9 --- /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" + }, + "record": { + "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..5f99fa1be --- /dev/null +++ b/domains/pds.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "CNAME": "serveo.net" + } +} diff --git a/domains/peantastic.json b/domains/peantastic.json new file mode 100644 index 000000000..907a2656e --- /dev/null +++ b/domains/peantastic.json @@ -0,0 +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" + } +} diff --git a/domains/pedrito.json b/domains/pedrito.json index 363c949ca..4aca01f86 100644 --- a/domains/pedrito.json +++ b/domains/pedrito.json @@ -7,6 +7,6 @@ "twitter": "Pedro929953698" }, "record": { - "CNAME": "Ranojay1.github.io" + "CNAME": "ranojay1.github.io" } } diff --git a/domains/pedrofff.json b/domains/pedrofff.json new file mode 100644 index 000000000..42d2319d8 --- /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" + }, + "record": { + "CNAME": "portfolio-opal-theta-47.vercel.app" + } +} diff --git a/domains/peme969.json b/domains/peme969.json index cab3805f5..e0df03a16 100644 --- a/domains/peme969.json +++ b/domains/peme969.json @@ -1,9 +1,16 @@ { "owner": { "username": "peme969", - "email": "mrcoderpeme@gmail.com" + "email": "me@peme969.dev" }, "record": { - "CNAME": "peme969.github.io" + "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/peroxide.json b/domains/peroxide.json index 89ea0bacb..4ea4fb5ed 100644 --- a/domains/peroxide.json +++ b/domains/peroxide.json @@ -7,6 +7,6 @@ "discord": "hydrogenpero.xide" }, "record": { - "CNAME": "oShinyMew.github.io" + "CNAME": "oshinymew.github.io" } } diff --git a/domains/pete.json b/domains/pete.json new file mode 100644 index 000000000..b55fcc504 --- /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" + }, + "record": { + "CNAME": "daspete.github.io" + } +} diff --git a/domains/peterbuga.json b/domains/peterbuga.json new file mode 100644 index 000000000..f4ee26dca --- /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" + }, + "record": { + "CNAME": "peterbuga.github.io" + } +} diff --git a/domains/pex.json b/domains/pex.json new file mode 100644 index 000000000..d8b221c54 --- /dev/null +++ b/domains/pex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pexeixv", + "email": "gavn@duck.com" + }, + "record": { + "CNAME": "gavn.in" + } +} diff --git a/domains/peyloride.json b/domains/peyloride.json new file mode 100644 index 000000000..04e718ebe --- /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" + }, + "record": { + "CNAME": "peyloride.github.io" + } +} diff --git a/domains/pgscom.json b/domains/pgscom.json new file mode 100644 index 000000000..d7537127e --- /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" + }, + "record": { + "URL": "https://pgscom.es" + } +} diff --git a/domains/pgscom54.json b/domains/pgscom54.json new file mode 100644 index 000000000..d7537127e --- /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" + }, + "record": { + "URL": "https://pgscom.es" + } +} diff --git a/domains/phamthanhnghia.json b/domains/phamthanhnghia.json new file mode 100644 index 000000000..ac3047847 --- /dev/null +++ b/domains/phamthanhnghia.json @@ -0,0 +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" + } +} diff --git a/domains/phani.json b/domains/phani.json new file mode 100644 index 000000000..ccee10544 --- /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" + }, + "record": { + "URL": "https://portfolioweb-gules.vercel.app/" + } +} diff --git a/domains/phi.json b/domains/phi.json new file mode 100644 index 000000000..6e182f503 --- /dev/null +++ b/domains/phi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "y5c4l3", + "email": "y5c4l3@proton.me" + }, + "record": { + "NS": ["johnny.ns.cloudflare.com", "rachel.ns.cloudflare.com"] + } +} diff --git a/domains/phongli.json b/domains/phongli.json new file mode 100644 index 000000000..b25e001e8 --- /dev/null +++ b/domains/phongli.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PhongLi", + "email": "longpt1109@gmail.com", + "discord": "_younglin" + }, + "record": { + "CNAME": "phonglidev.vercel.app" + } +} diff --git a/domains/php.json b/domains/php.json new file mode 100644 index 000000000..320ed0e0a --- /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" + }, + "record": { + "CNAME": "site-v2-puce.vercel.app" + } +} diff --git a/domains/pi19044.json b/domains/pi19044.json deleted file mode 100644 index 8560f123b..000000000 --- a/domains/pi19044.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "PrelevatedInsider19044's website", - "repo": "https://github.com/pi19044/pi19044.github.io", - "owner": { - "username": "pi19044", - "email": "membermadde.insiddev25120@hotmail.com" - }, - "record": { - "CNAME": "pi19044.github.io" - } -} diff --git a/domains/pikachu.json b/domains/pikachu.json new file mode 100644 index 000000000..68a2d64b4 --- /dev/null +++ b/domains/pikachu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vighnesh153", + "email": "pikachu@vighnesh153.dev" + }, + "record": { + "CNAME": "vighnesh153-app.web.app" + } +} diff --git a/domains/piker.json b/domains/piker.json index 7066708df..b895cdf3f 100644 --- a/domains/piker.json +++ b/domains/piker.json @@ -1,7 +1,7 @@ { "owner": { "username": "Piker98988", - "email": "piker98@tutanota.com" + "email": "iker.pavcur@gmail.com" }, "record": { "CNAME": "pikerdevdomain.pages.dev" diff --git a/domains/pilagonzalez.json b/domains/pilagonzalez.json new file mode 100644 index 000000000..7ed497792 --- /dev/null +++ b/domains/pilagonzalez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Pilag6", + "email": "pilag6@gmail.com", + "discord": "pilagonzalez" + }, + "record": { + "URL": "https://piladev.netlify.app" + } +} diff --git a/domains/pilotseye.json b/domains/pilotseye.json new file mode 100644 index 000000000..9337caf6b --- /dev/null +++ b/domains/pilotseye.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "YFFKJB", + "email": "1261546255@qq.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + }, + "description": "PilotsEYE Studio 会计系统 - PilotsEYE Studio 的基于 Web 的会计系统" +} diff --git a/domains/pinont.json b/domains/pinont.json index ebeb0fd4c..514e0d136 100644 --- a/domains/pinont.json +++ b/domains/pinont.json @@ -6,6 +6,6 @@ "email": "Pinozen.Thailand@gmail.com" }, "record": { - "CNAME": "PinozenTH.github.io" + "CNAME": "pinozenth.github.io" } } diff --git a/domains/pita.json b/domains/pita.json new file mode 100644 index 000000000..de9887004 --- /dev/null +++ b/domains/pita.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pita092", + "discord": "spongebob_spongebob_spongebob" + }, + "record": { + "CNAME": "pita092.github.io" + } +} diff --git a/domains/pixelbend.json b/domains/pixelbend.json new file mode 100644 index 000000000..93e524266 --- /dev/null +++ b/domains/pixelbend.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pixelbend", + "email": "m.arkamfahry@gmail.com" + }, + "record": { + "CNAME": "pixelbend.github.io" + } +} diff --git a/domains/pixelll.json b/domains/pixelll.json new file mode 100644 index 000000000..92b988cda --- /dev/null +++ b/domains/pixelll.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pixel2175", + "email": "pixel2175@gmail.com" + }, + "record": { + "CNAME": "pixell.ddns.net" + } +} diff --git a/domains/pixxo.json b/domains/pixxo.json new file mode 100644 index 000000000..53e40f62b --- /dev/null +++ b/domains/pixxo.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website for Aleeyoo", + "owner": { + "username": "Aleeyoo", + "email": "m16638037095@163.com" + }, + "record": { + "URL": "https://aleeyoo.github.io/pixxo.github.io/" + } +} diff --git a/domains/piyushrb.json b/domains/piyushrb.json index d63f30855..75fa6d016 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" - } + "CNAME": "pibiswal.github.io", + "TXT": "google-site-verification=kDWGAChQixBO8bGxGGNoA9kXH24lQyfomrT3zyC5jiM" + }, + "proxied": true } diff --git a/domains/plan.vulcanocraft.json b/domains/plan.vulcanocraft.json index e411b2a9e..0359aab27 100644 --- a/domains/plan.vulcanocraft.json +++ b/domains/plan.vulcanocraft.json @@ -4,7 +4,6 @@ "discord": "814891541205876767", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U1HQ4j2veW3D6ZRfm8J-dyfphms0kkF7IYRUmA2n6zawu-A3FyVRC4PzxMEmRpZO_Q3rQXCbHcO_EtWQFtVw244aHgjASUW2bfbHr7Rhpl2VjdMNXXfWeQKR4XhoOmYRM4qmN585VSiMfV5WVYk96UKf9-VUhmWQpf-EDbModBujIIqLXQdMVVu3awmcXEvyPqOyVntrX7wg7sFT_z0GiZVB-LhdiXJBjl5M2Me-aWQX9TzY_US6deMO6MuhLo1MwPdQbvnwQp0cDx9yoI2Ef9kxihRGPr6aD7OiEXE4CF1LdDw7bt2hDEoJwnBNWCOLHDCpUJELx5qhKmAu3ulUYQ.K3l5byKhIee3xpCLLlcGBA.z5Csrbp2TdpvdGfegFKIgsipiWdGMC5oUsmLpDhOiNx8QPc3u-jhsf-97HigCS7ul789Kepa78SC5FTJbVjszVTFFcADXB9IlCb6RQjfE8a2gHMY75HXgcpxoA6HNnaR.SwL0PQR_FS5DQ-zXBhCSlA" }, - "record": { "CNAME": "vulcanoplan.pages.dev" } diff --git a/domains/play.alora.json b/domains/play.alora.json new file mode 100644 index 000000000..9dcd83339 --- /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" + }, + "record": { + "A": ["78.46.65.243"] + } +} diff --git a/domains/play.soccer.json b/domains/play.soccer.json new file mode 100644 index 000000000..7ea912de0 --- /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" + }, + "record": { + "SRV": [ + { + "name": "_minecraft._tcp.play", + "priority": 0, + "weight": 5, + "port": 25565, + "target": "KillToLive.valksystems.pro" + } + ], + "A": ["82.45.179.13"] + } +} diff --git a/domains/playeranalytics.vulcanocraft.json b/domains/playeranalytics.vulcanocraft.json index eb8bf077e..db7ef754b 100644 --- a/domains/playeranalytics.vulcanocraft.json +++ b/domains/playeranalytics.vulcanocraft.json @@ -4,7 +4,6 @@ "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" }, - "record": { "CNAME": "vulcanoplan.pages.dev" } diff --git a/domains/playreaver.json b/domains/playreaver.json index 6e0cf9fa0..36a8c1f76 100644 --- a/domains/playreaver.json +++ b/domains/playreaver.json @@ -4,7 +4,6 @@ "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" }, - "record": { "CNAME": "playreaver.github.io" } diff --git a/domains/ploszukiwacz.json b/domains/ploszukiwacz.json index 07d305b08..a67be9b22 100644 --- a/domains/ploszukiwacz.json +++ b/domains/ploszukiwacz.json @@ -1,11 +1,17 @@ { "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": { - "CNAME": "ploszukiwaczdev.github.io" + "NS": ["jake.ns.cloudflare.com", "stephane.ns.cloudflare.com"], + "DS": [{ + "key_tag": 2371, + "algorithm": 13, + "digest_type": 2, + "digest": "CD6679293B68CD539A071B61A4BBC03B2B81F1B1DA48AAC2F2F690E957524AD1" + }] } } diff --git a/domains/plumaxe.json b/domains/plumaxe.json index 106acdfdd..cceaa4f76 100644 --- a/domains/plumaxe.json +++ b/domains/plumaxe.json @@ -4,6 +4,6 @@ "email": "iaintflxzra122@gmail.com" }, "record": { - "CNAME": "Plumaxe.github.io" + "CNAME": "plumaxe.github.io" } } diff --git a/domains/plumbus.json b/domains/plumbus.json new file mode 100644 index 000000000..e35970e23 --- /dev/null +++ b/domains/plumbus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MAM-SYS", + "email": "m.hossein95th@gmail.com" + }, + "record": { + "URL": "https://github.com/MAM-SYS" + } + } diff --git a/domains/plusrazz.json b/domains/plusrazz.json new file mode 100644 index 000000000..ec9725344 --- /dev/null +++ b/domains/plusrazz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "codehihe", + "email": "saurav.shubham8656@gmail.com" + }, + "record": { + "CNAME": "codehihe.github.io" + } +} diff --git a/domains/podcodar.json b/domains/podcodar.json new file mode 100644 index 000000000..b7b7d25b9 --- /dev/null +++ b/domains/podcodar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marco-souza", + "email": "marco@podcodar.org" + }, + "record": { + "CNAME": "podcodar.pages.dev" + } +} diff --git a/domains/poked.json b/domains/poked.json index 7c7f30683..cd4b1057b 100644 --- a/domains/poked.json +++ b/domains/poked.json @@ -7,6 +7,6 @@ "discord": "poked" }, "record": { - "CNAME": "PokedWasTaken.github.io" + "CNAME": "pokedwastaken.github.io" } } diff --git a/domains/poldek.json b/domains/poldek.json index 6a919b972..a98db4452 100644 --- a/domains/poldek.json +++ b/domains/poldek.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "poldekdev", - "discord": "poldek333" - }, - "record": { - "CNAME": "poldek.pages.dev" - } + "owner": { + "username": "poldekdev", + "discord": "poldek333" + }, + "record": { + "CNAME": "poldek.pages.dev" + } } diff --git a/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json b/domains/polls.json similarity index 70% rename from domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json rename to domains/polls.json index 73f4376f4..be315fac0 100644 --- a/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json +++ b/domains/polls.json @@ -4,6 +4,6 @@ "discord": "1040303561847881729" }, "record": { - "TXT": "a39a9e9549128753e8f6757a37d2c2" + "URL": "https://y.is-a.dev" } } diff --git a/domains/porant.json b/domains/porant.json index 35dce6910..abf61d960 100644 --- a/domains/porant.json +++ b/domains/porant.json @@ -4,6 +4,6 @@ "email": "porant@gmail.com" }, "record": { - "A": ["178.26.182.120"] + "A": ["188.194.183.203"] } } diff --git a/domains/portfolio.arash.json b/domains/portfolio.arash.json new file mode 100644 index 000000000..3fbee9629 --- /dev/null +++ b/domains/portfolio.arash.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio", + "owner": { + "username": "hatamiarash7", + "email": "hatamiarash7@gmail.com", + "twitter": "hatamiarash7" + }, + "record": { + "URL": "https://portfolio.arash-hatami.ir" + } +} diff --git a/domains/portfolio.json b/domains/portfolio.json new file mode 100644 index 000000000..0b14d465b --- /dev/null +++ b/domains/portfolio.json @@ -0,0 +1,12 @@ + +{ + "description": "It is for my portfolio", + "repo": "https://github.com/alfonso12dev/portfolio", + "owner": { + "username": "alfonso12dev", + "email": "bmeza9407@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/potatochips0706.json b/domains/potatochips0706.json deleted file mode 100644 index e7dccb3ae..000000000 --- a/domains/potatochips0706.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A sub-domain to my portfolio github page.", - "repo": "https://github.com/potato0706/potato0706.github.io", - "owner": { - "username": "potato0706", - "email": "potatochips0706@gmail.com" - }, - "record": { - "CNAME": "potato0706.github.io" - } -} diff --git a/domains/poysa213.json b/domains/poysa213.json new file mode 100644 index 000000000..2ebb1e070 --- /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" + }, + "record": { + "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..aa0acb0c5 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/ppyoung.json b/domains/ppyoung.json new file mode 100644 index 000000000..b1319f01e --- /dev/null +++ b/domains/ppyoung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ppYoung", + "email": "dongyang.luo@gmail.com" + }, + "record": { + "CNAME": "ppyoung.github.io" + } +} diff --git a/domains/pr.whine.json b/domains/pr.whine.json deleted file mode 100644 index 6ecd2c338..000000000 --- a/domains/pr.whine.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "whinee", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's projects' subdomain", - "record": { - "CNAME": "whnya.github.io" - } -} diff --git a/domains/prabhu.json b/domains/prabhu.json deleted file mode 100644 index d97687172..000000000 --- a/domains/prabhu.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Testing my server", - "repo": "https://github.com/prabhu797/samplelogin.git", - "owner": { - "username": "prabhu797", - "email": "prabhudesai797@gmail.com" - }, - "record": { - "A": [ - "206.1.60.99" - ] - } -} \ No newline at end of file diff --git a/domains/prabin.json b/domains/prabin.json index 48207704a..be6412422 100644 --- a/domains/prabin.json +++ b/domains/prabin.json @@ -6,6 +6,6 @@ "email": "prabinsubedi2016@gmail.com" }, "record": { - "URL": "https://prabincankod.me" + "URL": "https://www.prabinsubedi.tech" } } diff --git a/domains/prakhar.json b/domains/prakhar.json index 787d31479..64d94060b 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": { - "CNAME": "Prakhar-commits.github.io" + "CNAME": "prakhar-commits.github.io" } } diff --git a/domains/pranav.json b/domains/pranav.json new file mode 100644 index 000000000..3020c0d4f --- /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" + }, + "record": { + "CNAME": "pranav-portfolio-sigma.vercel.app" + }, + "proxied": true +} diff --git a/domains/pranavagrawal.json b/domains/pranavagrawal.json index 961525336..ee91c44b5 100644 --- a/domains/pranavagrawal.json +++ b/domains/pranavagrawal.json @@ -6,8 +6,18 @@ "email": "pranavagrawal321@gmail.com" }, "record": { - "A": ["185.199.108.153"], - "AAAA": ["2606:50c0:8001::153"], + "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..58082d9e5 --- /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/" + }, + "record": { + "URL": "https://pranavarya.in" + } +} diff --git a/domains/pranavs.json b/domains/pranavs.json new file mode 100644 index 000000000..8bb379083 --- /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" + }, + "record": { + "CNAME": "prs96.github.io" + } +} diff --git a/domains/pranavsaxena.json b/domains/pranavsaxena.json index f5af52703..6da15a292 100644 --- a/domains/pranavsaxena.json +++ b/domains/pranavsaxena.json @@ -7,6 +7,6 @@ "discord": "PRANAV SAXENA#9327" }, "record": { - "CNAME": "Pranav-Saxena.github.io" + "CNAME": "pranav-saxena.github.io" } } diff --git a/domains/pranavsingh.json b/domains/pranavsingh.json new file mode 100644 index 000000000..84cf57ada --- /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" + }, + "record": { + "CNAME": "pranavsingh.vercel.app" + }, + "proxied": true + } \ No newline at end of file diff --git a/domains/pranay.json b/domains/pranay.json new file mode 100644 index 000000000..3f57d7464 --- /dev/null +++ b/domains/pranay.json @@ -0,0 +1,10 @@ +{ + "description": "Website for my personal use", + "owner": { + "username": "pranaynidhi", + "email": "pranaynidhi@gmail.com" + }, + "record": { + "CNAME": "pranaynidhi.tech" + } +} diff --git a/domains/pranjal.json b/domains/pranjal.json index ac8a5fe99..dd2772b8e 100644 --- a/domains/pranjal.json +++ b/domains/pranjal.json @@ -6,6 +6,6 @@ "email": "psbhatnagar.in@gmal.com" }, "record": { - "CNAME": "Pranjal-SB.github.io" + "CNAME": "pranjal-sb.github.io" } } diff --git a/domains/pranoy.json b/domains/pranoy.json new file mode 100644 index 000000000..8c82e7670 --- /dev/null +++ b/domains/pranoy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pranoymajumdar", + "email": "pranoyfr@gmail.com", + "discord": "1303089079809740904" + }, + "record": { + "CNAME": "pranoy-ruby.vercel.app" + } +} diff --git a/domains/prasad.json b/domains/prasad.json new file mode 100644 index 000000000..e4022faa6 --- /dev/null +++ b/domains/prasad.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "prasad89" + }, + "record": { + "CNAME": "prasad89.github.io" + } +} diff --git a/domains/prasant.json b/domains/prasant.json new file mode 100644 index 000000000..291eca8f9 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/prashanthkusuma.json b/domains/prashanthkusuma.json new file mode 100644 index 000000000..9f9b747c5 --- /dev/null +++ b/domains/prashanthkusuma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prashanthkusuma", + "email": "kusumaprashanth2000@gmail.com" + }, + "record": { + "URL": "https://prashanthkusuma.github.io" + } +} diff --git a/domains/prashil.json b/domains/prashil.json new file mode 100644 index 000000000..55a5a788f --- /dev/null +++ b/domains/prashil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prashilthul", + "email": "prashil1411@gmail.com" + }, + "record": { + "A": ["216.198.79.1", "64.29.17.1"] + } +} diff --git a/domains/pratham.json b/domains/pratham.json new file mode 100644 index 000000000..c6534572b --- /dev/null +++ b/domains/pratham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Prathamdas3", + "email": "daspratham3@gmail.com" + }, + "record": { + "CNAME": "prathamdas.vercel.app" + } +} diff --git a/domains/pratham15541.json b/domains/pratham15541.json new file mode 100644 index 000000000..60d74d54a --- /dev/null +++ b/domains/pratham15541.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pratham15541", + "email": "prathamparikh94@gmail.com", + "discord": "951846985172938782" + }, + "record": { + "CNAME": "pratham-portfolio-web.vercel.app" + } +} diff --git a/domains/prathamesh.json b/domains/prathamesh.json index 5e405bafb..711309191 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" + "CNAME": "prathamesh-2002.github.io" } } diff --git a/domains/prathm.json b/domains/prathm.json new file mode 100644 index 000000000..73bc68dad --- /dev/null +++ b/domains/prathm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prathm", + "email": "prathmtayade30@gmail.com" + }, + "record": { + "CNAME": "prathmtayade.vercel.app" + } +} diff --git a/domains/pratikthapw.json b/domains/pratikthapw.json new file mode 100644 index 000000000..5fb285a9f --- /dev/null +++ b/domains/pratikthapw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pratikthapw", + "email": "pratikthapw@gmail.com" + }, + "record": { + "CNAME": "pratikthapw.github.io" + } +} diff --git a/domains/prats.json b/domains/prats.json new file mode 100644 index 000000000..a5408f80b --- /dev/null +++ b/domains/prats.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "theyashl", + "email": "yashlohakare48@outlook.com" + }, + "record": { + "CNAME": "developerfolio-are.pages.dev" + } +} diff --git a/domains/pratyay.json b/domains/pratyay.json index 4de110802..daa3185b8 100644 --- a/domains/pratyay.json +++ b/domains/pratyay.json @@ -1,6 +1,5 @@ { "description": "Pratyay's portfolio website and blog", - "repo": "https://github.com/x3nosiz", "owner": { "username": "x3nosiz", "email": "neilblaze007@gmail.com" diff --git a/domains/praveen-2006.json b/domains/praveen-2006.json new file mode 100644 index 000000000..77d1e048d --- /dev/null +++ b/domains/praveen-2006.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "InfiniteCoder06", + "email": "mallidipraveenkumar@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/praveen-patel.json b/domains/praveen-patel.json index f3a80dbe6..f8b53cc37 100644 --- a/domains/praveen-patel.json +++ b/domains/praveen-patel.json @@ -1,5 +1,4 @@ { - "repo": "https://github.com/praveen8git", "owner": { "username": "praveen8git", "email": "praveenpatel@duck.com", diff --git a/domains/praveen.json b/domains/praveen.json index 128459810..55bbe4703 100644 --- a/domains/praveen.json +++ b/domains/praveen.json @@ -1,6 +1,5 @@ { "description": "Praveen's personal developer website", - "repo": "https://github.com/PraveenPal4232", "owner": { "username": "PraveenPal4232", "email": "praveenpal4232@gmail.com" diff --git a/domains/princeprajapati.json b/domains/princeprajapati.json index b4eef0e5a..ae58450fd 100644 --- a/domains/princeprajapati.json +++ b/domains/princeprajapati.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "notreallyprince", - "email": "prince30112001@gmail.com" - }, - "record": { - "CNAME": "princexd.vercel.app" - } + "owner": { + "username": "notreallyprince", + "email": "prince30112001@gmail.com" + }, + "record": { + "CNAME": "princexd.vercel.app" } +} diff --git a/domains/priscila.json b/domains/priscila.json new file mode 100644 index 000000000..1b6d1c568 --- /dev/null +++ b/domains/priscila.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pgoliv-code", + "email": "pguillen.oliv@gmail.com" + }, + "record": { + "CNAME": "pgoliv-code.github.io" + } +} diff --git a/domains/pritam.json b/domains/pritam.json new file mode 100644 index 000000000..1683fa89d --- /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" + }, + "record": { + "CNAME": "pritam-das.vercel.app" + } +} diff --git a/domains/priyanshu.json b/domains/priyanshu.json index bc043c227..4061965a0 100644 --- a/domains/priyanshu.json +++ b/domains/priyanshu.json @@ -1,7 +1,7 @@ { "owner": { "username": "Priyansxu", - "email": "cloudypriyanshu@gmail.com", + "email": "priyansxu@yahoo.com", "twitter": "priyansxu_gupta" }, "record": { diff --git a/domains/priyanshul.json b/domains/priyanshul.json index 415bda18b..60fcdbea9 100644 --- a/domains/priyanshul.json +++ b/domains/priyanshul.json @@ -6,6 +6,6 @@ "email": "piyanshul1307@gmail.com" }, "record": { - "CNAME": "Priyanshul130.github.io" + "CNAME": "priyanshul130.github.io" } } diff --git a/domains/proficode.json b/domains/proficode.json new file mode 100644 index 000000000..c64a9954f --- /dev/null +++ b/domains/proficode.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "profic0de", + "email": "anonymou3489@gmail.com" + }, + "record": { + "CNAME": "239581.site.bot-hosting.net" + } +} diff --git a/domains/programmerraja.json b/domains/programmerraja.json new file mode 100644 index 000000000..75c2aec80 --- /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" + }, + "record": { + "CNAME": "programmerraja.github.io" + } +} diff --git a/domains/project-jam.json b/domains/project-jam.json new file mode 100644 index 000000000..8b498e6cd --- /dev/null +++ b/domains/project-jam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Omarplayz233", + "email": "mrbouiri@gmail.com" + }, + "record": { + "NS": ["elsa.ns.cloudflare.com", "roan.ns.cloudflare.com"] + } +} diff --git a/domains/projects.skibidi.json b/domains/projects.skibidi.json new file mode 100644 index 000000000..0c1ba2ca6 --- /dev/null +++ b/domains/projects.skibidi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bananaking6", + "email": "", + "discord": "skibidibagel" + }, + "record": { + "CNAME": "skibidi-4.vercel.app" + } +} diff --git a/domains/prokai-kun.json b/domains/prokai-kun.json index 2916a7bc2..8ee15ad97 100644 --- a/domains/prokai-kun.json +++ b/domains/prokai-kun.json @@ -6,6 +6,6 @@ "email": "prokaiindo003@gmail.com" }, "record": { - "CNAME": "IAKORP.github.io" + "CNAME": "iakorp.github.io" } } diff --git a/domains/pronicio.json b/domains/pronicio.json index 1ffca5071..dd6efa5dd 100644 --- a/domains/pronicio.json +++ b/domains/pronicio.json @@ -1,6 +1,5 @@ { "description": "Pronicio's Portfolio", - "repo": "https://github.com/Pronicio", "owner": { "username": "Pronicio", "email": "pronicio.contact@gmail.com", diff --git a/domains/proxy.json b/domains/proxy.json index 450416a95..b226183e2 100644 --- a/domains/proxy.json +++ b/domains/proxy.json @@ -6,6 +6,6 @@ "email": "notAperson939@gmail.com" }, "record": { - "CNAME": "notAperson535.github.io" + "CNAME": "notaperson535.github.io" } } diff --git a/domains/ptr.json b/domains/ptr.json new file mode 100644 index 000000000..c8412a1a4 --- /dev/null +++ b/domains/ptr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "schminho", + "email": "peter@geiselnehmer.de" + }, + "record": { + "CNAME": "schminho.github.io" + } +} diff --git a/domains/pulkitmidha.json b/domains/pulkitmidha.json new file mode 100644 index 000000000..9e0d36c21 --- /dev/null +++ b/domains/pulkitmidha.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website", + "owner": { + "username": "midopooler", + "email": "midhapulkit28@gmail.com" + }, + "record": { + "CNAME": "midopooler.github.io" + } +} diff --git a/domains/puncoz.json b/domains/puncoz.json new file mode 100644 index 000000000..9d6a4077c --- /dev/null +++ b/domains/puncoz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "puncoz", + "discord": "333515022565113856" + }, + "record": { + "NS": ["bruce.ns.cloudflare.com", "coco.ns.cloudflare.com"] + } +} diff --git a/domains/pxsty.json b/domains/pxsty.json new file mode 100644 index 000000000..a82e9166c --- /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" + }, + "record": { + "CNAME": "pxsty0.github.io" + } +} diff --git a/domains/pyaesonewin.json b/domains/pyaesonewin.json new file mode 100644 index 000000000..bfe0b476e --- /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" + }, + "record": { + "CNAME": "mgmgpyaesonewin.github.io" + } +} diff --git a/domains/pyro.json b/domains/pyro.json index 194a0fb34..bbceb77fc 100644 --- a/domains/pyro.json +++ b/domains/pyro.json @@ -1,6 +1,5 @@ { "description": "pyro's portfolio", - "repo": "https://github.com/pyroisgamer.github.io", "owner": { "username": "pyroisgamer", "email": "pyroisgamer@outlook.com" diff --git a/domains/pythonweb.json b/domains/pythonweb.json new file mode 100644 index 000000000..6b4c91ebd --- /dev/null +++ b/domains/pythonweb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeGeekR", + "discord": "768080481924677632" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/pyyupsk.json b/domains/pyyupsk.json index 467897efe..bfdd321b6 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", + "description": "Independent full-stack developer based in Thailand. Building efficient and scalable web apps.", "record": { - "CNAME": "pyyupsk.pages.dev" + "CNAME": "personal-website-4xb.pages.dev" } } diff --git a/domains/q.json b/domains/q.json new file mode 100644 index 000000000..d0ef77563 --- /dev/null +++ b/domains/q.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syedtahseen", + "email": "itxtahseen@gmail.com" + }, + "record": { + "CNAME": "xproject-xi.vercel.app" + } +} diff --git a/domains/qavv.json b/domains/qavv.json new file mode 100644 index 000000000..a76eacfde --- /dev/null +++ b/domains/qavv.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "qavv" + }, + "record": { + "CNAME": "qavv.github.io" + } +} diff --git a/domains/qloha.json b/domains/qloha.json new file mode 100644 index 000000000..5b8aa7378 --- /dev/null +++ b/domains/qloha.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/qloha/qloha.github.io", + "owner": { + "username": "qloha", + "youtube": "https://youtube.com/@qloha", + "email": "sirfigaloha@gmail.com" + }, + "record": { + "CNAME": "qloha.github.io" + } +} diff --git a/domains/qr.akshtt.json b/domains/qr.akshtt.json new file mode 100644 index 000000000..f04f6a386 --- /dev/null +++ b/domains/qr.akshtt.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.r9iiVY90pmXjtloeTqKUGrrgRnUBQEsU1QJEQctt4Es3z5IHZdFYyiVW_2io7PHPlMP3eAGM1j1CegiLjjqdVc0pQ-2o6RzAkp0gkQh-6X7Av-3mHZJtTrFFVOwDO85v7f9aSirYPIT_NedPLNj2SifRGEZny7uvbli1wz_OLefmB3RW-3jpHQSJwyLd3SKZzTYWD8gmilgrK8Kfwfo64G3iGNfL6Muu3PuXlE3N_QR12w-OIxZBh7QsUYxURyl7qYqwJGVyShkQpZKe1azsFXRcMGp-VCLScxlumz6nW-pTlmOmozdFJ9bT2bn480qsjIyTlvRvffhfVJge6tGlYA.JxKLxZ8e69m8W27S-ulILw.PHcJk0yt7TYYBJpEJUBvcnA5n3uL4RuED29wFClWf7XQ6NLxZk4YazmMwPg2sRN9OPJMIvnD67Lh5oQMxnvLSOIrafb9wUBv_n7oEeTjBWQ.ZTLSMXrzfFjU6OqH7F-j5Q" + }, + + "record": { + "CNAME": "cname.vercel-dns.com" + } + } + \ No newline at end of file diff --git a/domains/quang.json b/domains/quang.json new file mode 100644 index 000000000..832f5f7d6 --- /dev/null +++ b/domains/quang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kokkini", + "email": "trannhatquang1104@gmail.com" + }, + "record": { + "CNAME": "kokkini.github.io" + } +} diff --git a/domains/quangtran.json b/domains/quangtran.json new file mode 100644 index 000000000..832f5f7d6 --- /dev/null +++ b/domains/quangtran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kokkini", + "email": "trannhatquang1104@gmail.com" + }, + "record": { + "CNAME": "kokkini.github.io" + } +} diff --git a/domains/quantum.json b/domains/quantum.json index d472647a4..65f56c1f6 100644 --- a/domains/quantum.json +++ b/domains/quantum.json @@ -1,9 +1,12 @@ { - "owner": { - "username": "RabbitFored", - "email": "quantum@theostrich.eu.org" - }, - "record": { - "CNAME": "quantum.theostrich.eu.org" - } + "owner": { + "username": "lakshinhemachandran", + "email": "lh140313@outlook.com" + }, + "record": { + "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 new file mode 100644 index 000000000..74d7fec7d --- /dev/null +++ b/domains/quantumgarden.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AlejandroGomezFrieiro", + "email": "alejandrogomezfrieiro@gmail.com" + }, + "record": { + "CNAME": "alejandrogomezfrieiro.github.io" + } +} diff --git a/domains/quddi.json b/domains/quddi.json new file mode 100644 index 000000000..82da25fce --- /dev/null +++ b/domains/quddi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Quddi", + "email": "quddi6@gmail.com" + }, + "record": { + "CNAME": "quddiy.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/qxb3.json b/domains/qxb3.json index 8f0a5a7eb..261baea2e 100644 --- a/domains/qxb3.json +++ b/domains/qxb3.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "qxb3", - "email": "qxbthree@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "qxb3", + "email": "qxbthree@gmail.com" + }, + "record": { + "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 new file mode 100644 index 000000000..9dc0cc8bf --- /dev/null +++ b/domains/r00t3d.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "percioandrade", + "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"] + } +} diff --git a/domains/r42mp6d7pwns.bao.json b/domains/r42mp6d7pwns.bao.json new file mode 100644 index 000000000..3acff5b85 --- /dev/null +++ b/domains/r42mp6d7pwns.bao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bphamict", + "email": "bphamict@gmail.com" + }, + "record": { + "CNAME": "gv-t63jjd67zkqqxj.dv.googlehosted.com" + } +} diff --git a/domains/raafey.json b/domains/raafey.json index b2cd0e262..0e0c632bb 100644 --- a/domains/raafey.json +++ b/domains/raafey.json @@ -4,8 +4,6 @@ "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"] + "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/rachancheet.json b/domains/rachancheet.json new file mode 100644 index 000000000..d244b1026 --- /dev/null +++ b/domains/rachancheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rachancheet", + "email": "raxxsngh37@gmail.com" + }, + "record": { + "A": ["152.67.163.7"] + } +} diff --git a/domains/raed.json b/domains/raed.json new file mode 100644 index 000000000..910477137 --- /dev/null +++ b/domains/raed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raed667", + "email": "contact@raed.email" + }, + "record": { + "CNAME": "raed.dev" + } +} diff --git a/domains/rafael.json b/domains/rafael.json new file mode 100644 index 000000000..285142fdb --- /dev/null +++ b/domains/rafael.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rcerrejon", + "email": "neoline@gmail.com" + }, + "record": { + "CNAME": "rafaelcerrejon.com" + } +} diff --git a/domains/rafaelfernandes.json b/domains/rafaelfernandes.json new file mode 100644 index 000000000..8175b139a --- /dev/null +++ b/domains/rafaelfernandes.json @@ -0,0 +1,17 @@ +{ + "description": "Personal potifolho site.", + "repo": "https://github.com/RafaelFernandesBR/rafaelfernandes.github.io", + "owner": { + "username": "RafaelFernandesBR", + "email": "marcorafaeldemelo16@protonmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + }, + "proxied": true +} diff --git a/domains/rafinia.json b/domains/rafinia.json new file mode 100644 index 000000000..20e60ffbc --- /dev/null +++ b/domains/rafinia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nRafinia", + "email": "naser.r@gmail.com" + }, + "record": { + "CNAME": "naser.rafinia.info" + } +} diff --git a/domains/rafsanza.json b/domains/rafsanza.json new file mode 100644 index 000000000..b53f6420b --- /dev/null +++ b/domains/rafsanza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rafsanza-hub", + "email": "rapsanza@gmail.com" + }, + "record": { + "CNAME": "rafsanza.vercel.app" + } +} diff --git a/domains/raghav.json b/domains/raghav.json new file mode 100644 index 000000000..e290738b3 --- /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" + }, + "record": { + "CNAME": "godkode69.github.io" + } +} diff --git a/domains/raghu.json b/domains/raghu.json new file mode 100644 index 000000000..d7a51e988 --- /dev/null +++ b/domains/raghu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raghu-8", + "email": "raghu.project.websites@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/rahatrumi.json b/domains/rahatrumi.json new file mode 100644 index 000000000..d9cb4c7c7 --- /dev/null +++ b/domains/rahatrumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rahat87942R", + "email": "rumirahat63@gmail.com" + }, + "record": { + "CNAME": "rahatrumi.vercel.app" + } +} diff --git a/domains/rahulc0dy.json b/domains/rahulc0dy.json new file mode 100644 index 000000000..d1cdc8186 --- /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" + }, + "record": { + "CNAME": "rahulc0dy.github.io" + } +} diff --git a/domains/rahuldeka.json b/domains/rahuldeka.json deleted file mode 100644 index cf2e78c32..000000000 --- a/domains/rahuldeka.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "iamRahul21", - "discord": "638400369986240512", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZMyYId6tCsMQhHzUAOlANYLXeW88v_xaqFXMDdMPrqbSyX16JTShxlY0bNRfVYeRimLlJvguE6_3-gc1mROCpZ9oni5o9Qm8HxbGBe2QlxNmbgSnrn-RIt4pcbD1_uG2eD0SDOCNzypFDvEysML2oEZKYPkbKmKrngdlaBemUWrHo264DQyFquLW3D58wL-kWHUPlKHf-4yMoPGBrryoXjgBUGSH5UO6n4P7tpuWnvdWu_GV-qcW4Pnf9Rz8Ar3Zb0duzVCl3gjNplhDf-7BGrT4BJ2Hb0Pj8v7V5BidxlHw6TLX-2arnvkUFGQ-TXjAwr-rok5XHMsMU0rceZb9MQ.alqDzZf8wzEiNCDlxL1NCA.dC9TK-YXvpycR7cIeWnEXChuRKikVtMV3UqmjgMDJSZwJQMtAT2l_imAFj8cU8RRt7waSyKJJ8WusFaga33G2RMvd6KVeyrDS8cqWQMydvQ.qy4nN5DrABw1t_QsuWF3qg" - }, - "record": { - "CNAME": "iamrahul21.github.io" - } -} diff --git a/domains/rahulgurujala.json b/domains/rahulgurujala.json new file mode 100644 index 000000000..d0b1f0932 --- /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" + }, + "record": { + "CNAME": "rahulgurujala.vercel.app" + } +} \ No newline at end of file diff --git a/domains/rahulps.json b/domains/rahulps.json index 01b191778..e73bfb4b2 100644 --- a/domains/rahulps.json +++ b/domains/rahulps.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "rahulps1000", - "email": "rahulps1000@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - }, - "proxied": false + "owner": { + "username": "rahulps1000", + "email": "rahulps1000@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + }, + "proxied": false } diff --git a/domains/rahulsunil.json b/domains/rahulsunil.json new file mode 100644 index 000000000..3e6e7ad57 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/rahulverma.json b/domains/rahulverma.json new file mode 100644 index 000000000..1d47b75a2 --- /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" + }, + "record": { + "CNAME": "rahul-verma.onrender.com" + } +} diff --git a/domains/rajeshkumar.json b/domains/rajeshkumar.json new file mode 100644 index 000000000..8cb72bb81 --- /dev/null +++ b/domains/rajeshkumar.json @@ -0,0 +1,10 @@ +{ + "domain": "rajeshkumar.is-a.dev", + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354586@gmail.com" + }, + "record": { + "CNAME": "dev-rajeshkumars.vercel.app" + } +} diff --git a/domains/rajeshreddy.json b/domains/rajeshreddy.json new file mode 100644 index 000000000..d5995d048 --- /dev/null +++ b/domains/rajeshreddy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rajesh-reddy1", + "email": "mrrajeshreddy1@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/rajputshashank.json b/domains/rajputshashank.json new file mode 100644 index 000000000..995e6296b --- /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" + }, + "record": { + "CNAME": "rajputshashank.vercel.app" + } +} diff --git a/domains/rakib.json b/domains/rakib.json new file mode 100644 index 000000000..ec82edab9 --- /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" + }, + "record": { + "CNAME": "rakibmia7254.github.io" + } +} diff --git a/domains/rakibhossain.json b/domains/rakibhossain.json new file mode 100644 index 000000000..ec82edab9 --- /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" + }, + "record": { + "CNAME": "rakibmia7254.github.io" + } +} diff --git a/domains/rakshit.json b/domains/rakshit.json new file mode 100644 index 000000000..85a57f51f --- /dev/null +++ b/domains/rakshit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "spuckhafte", + "email": "rakshit240405@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/raksix.json b/domains/raksix.json deleted file mode 100644 index 966d241f0..000000000 --- a/domains/raksix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A personel blog website", - "repo": "https://github.com/Raksixoffical", - "owner": { - "username": "Raksix", - "email": "raksixoffical@gmail.com" - }, - "record": { - "A": ["138.68.111.28"] - } -} diff --git a/domains/ramakant.json b/domains/ramakant.json new file mode 100644 index 000000000..e51c43d2d --- /dev/null +++ b/domains/ramakant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ramakantbot", + "email": "ramakantbot@duck.com" + }, + "record": { + "CNAME": "ramakantbot.github.io" + } +} diff --git a/domains/ramiro.json b/domains/ramiro.json new file mode 100644 index 000000000..e6b06447b --- /dev/null +++ b/domains/ramiro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "email": "urteagaramiro33@gmail.com" + }, + "record": { + "CNAME": "portafolio-chi-gilt.vercel.app" + }, + "proxied": false +} diff --git a/domains/ramirocosa.json b/domains/ramirocosa.json new file mode 100644 index 000000000..a590c441f --- /dev/null +++ b/domains/ramirocosa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RadikeCosa", + "email": "ramirocosa@gmail.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/rammeghe.json b/domains/rammeghe.json index 538f4588d..1a948b6c5 100644 --- a/domains/rammeghe.json +++ b/domains/rammeghe.json @@ -1,11 +1,8 @@ { - "owner": { - "username": "kartikshriwas", - "email": "" - }, - - "record": { - "CNAME": "rammeghe.github.io" - } - } - + "owner": { + "username": "kartikshriwas" + }, + "record": { + "CNAME": "rammeghe.github.io" + } +} diff --git a/domains/ramoweb.json b/domains/ramoweb.json new file mode 100644 index 000000000..5171dcb3f --- /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" + }, + "record": { + "CNAME": "ramoweb.onrender.com" + } +} diff --git a/domains/ramsheed.json b/domains/ramsheed.json new file mode 100644 index 000000000..fcd4d8260 --- /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" + }, + "record": { + "CNAME": "ramsheedrd.github.io" + } +} diff --git a/domains/ramya.json b/domains/ramya.json new file mode 100644 index 000000000..0d4aa83e9 --- /dev/null +++ b/domains/ramya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ramya-Me", + "email": "ramyashah.dev@gmail.com" + }, + "record": { + "CNAME": "ramya-umber.vercel.app" + } +} diff --git a/domains/randika.json b/domains/randika.json new file mode 100644 index 000000000..44a51c5c6 --- /dev/null +++ b/domains/randika.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "randika-srimal" + }, + "record": { + "CNAME": "area51projects.com" + } +} diff --git a/domains/ranjityadav.json b/domains/ranjityadav.json new file mode 100644 index 000000000..c1a4196d0 --- /dev/null +++ b/domains/ranjityadav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "13yadav", + "email": "yadavranjit521@gmail.com", + "discord": "529604454908035083" + }, + "record": { + "CNAME": "ranjityadav.vercel.app" + } +} diff --git a/domains/rappergi.json b/domains/rappergi.json new file mode 100644 index 000000000..07a5ddf9c --- /dev/null +++ b/domains/rappergi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rappergi", + "email": "hoangvanchu202@gmail.com" + }, + "record": { + "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..9ec8d8fe4 --- /dev/null +++ b/domains/rapter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rapter001", + "email": "rapter001yt@gmail.com" + }, + "record": { + "NS": ["martha.ns.cloudflare.com", "quinton.ns.cloudflare.com"] + } +} diff --git a/domains/rashed.json b/domains/rashed.json new file mode 100644 index 000000000..c6dc12fec --- /dev/null +++ b/domains/rashed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rashed360", + "email": "ruman.rush+isadev@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/raspicloud.json b/domains/raspicloud.json new file mode 100644 index 000000000..376aa0682 --- /dev/null +++ b/domains/raspicloud.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mkrage", + "email": "manuel.krage@gmx.de" + }, + "record": { + "A": ["141.144.239.115"] + } +} diff --git a/domains/rathee.json b/domains/rathee.json new file mode 100644 index 000000000..8b07733a3 --- /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" + }, + "record": { + "CNAME": "rathee.vercel.app" + } +} diff --git a/domains/ravi.json b/domains/ravi.json new file mode 100644 index 000000000..4bf4de478 --- /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" + }, + "record": { + "CNAME": "ravikhokhar23.github.io" + } +} diff --git a/domains/raw-api.json b/domains/raw-api.json index 708e00ecc..48df34639 100644 --- a/domains/raw-api.json +++ b/domains/raw-api.json @@ -4,7 +4,6 @@ "email": "admin@is-a.dev" }, "record": { - "CNAME": "is-a.dev" - }, - "proxied": true + "URL": "https://raw.is-a.dev" + } } diff --git a/domains/help.json b/domains/raw.json similarity index 73% rename from domains/help.json rename to domains/raw.json index e9887267f..b8d2e61c5 100644 --- a/domains/help.json +++ b/domains/raw.json @@ -4,6 +4,6 @@ "email": "admin@is-a.dev" }, "record": { - "URL": "https://is-a.dev/docs" + "CNAME": "is-a.dev" } } diff --git a/domains/rawr.json b/domains/rawr.json new file mode 100644 index 000000000..1bac253e7 --- /dev/null +++ b/domains/rawr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "yunexiz" + }, + "record": { + "URL": "https://y.is-a.dev" + } +} diff --git a/domains/rayane-nekena.json b/domains/rayane-nekena.json index 201528a0b..fd871cffc 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" + "CNAME": "portfolio-cwk.pages.dev" } } diff --git a/domains/raynaldescala.json b/domains/raynaldescala.json new file mode 100644 index 000000000..53e9f8c27 --- /dev/null +++ b/domains/raynaldescala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raynaldescala", + "email": "raynaldescala01@gmail.com" + }, + "record": { + "CNAME": "raynaldescala.vercel.app" + } +} diff --git a/domains/rayvid.json b/domains/rayvid.json index e26d64386..a0e061cac 100644 --- a/domains/rayvid.json +++ b/domains/rayvid.json @@ -1,6 +1,5 @@ { "description": "Rayvid's website", - "repo": "https://github.com/Rayvid", "owner": { "username": "rayvid", "email": "gin.kisonas@gmail.com" diff --git a/domains/rayyan.json b/domains/rayyan.json new file mode 100644 index 000000000..32afab133 --- /dev/null +++ b/domains/rayyan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RayyanNafees", + "email": "nafees.rayyan@gmail.com" + }, + "record": { + "CNAME": "rayyano.vercel.app" + } +} diff --git a/domains/rbk.json b/domains/rbk.json new file mode 100644 index 000000000..73f84d35a --- /dev/null +++ b/domains/rbk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "its-me-rbk", + "email": "ceo@greendwarftech.com" + }, + "record": { + "CNAME": "rubhak.greendwarftech.com" + } +} diff --git a/domains/rblx.json b/domains/rblx.json index fd934b900..94aaf2ff7 100644 --- a/domains/rblx.json +++ b/domains/rblx.json @@ -1,7 +1,6 @@ { "owner": { - "username": "r-b-l-x", - "email": "178317246+r-b-l-x@users.noreply.github.com" + "username": "r-b-l-x" }, "record": { "CNAME": "r-b-l-x.github.io" diff --git a/domains/realfara.json b/domains/realfara.json index 71d688c8c..29b94d786 100644 --- a/domains/realfara.json +++ b/domains/realfara.json @@ -4,6 +4,17 @@ "email": "faradey.iskra@mail.ru" }, "record": { - "A": ["185.199.111.153"] + "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/realmzersdomain.json b/domains/realmzersdomain.json new file mode 100644 index 000000000..8d0e9c3da --- /dev/null +++ b/domains/realmzersdomain.json @@ -0,0 +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" + } +} diff --git a/domains/rededge.json b/domains/rededge.json index 8e02b7c87..99fc4a0dd 100644 --- a/domains/rededge.json +++ b/domains/rededge.json @@ -6,6 +6,6 @@ "email": "janithc967@gmail.com" }, "record": { - "CNAME": "RedEdge967.github.io" + "CNAME": "rededge967.github.io" } } diff --git a/domains/redirect.akk1to.json b/domains/redirect.akk1to.json new file mode 100644 index 000000000..a1cb4ca47 --- /dev/null +++ b/domains/redirect.akk1to.json @@ -0,0 +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" + } +} diff --git a/domains/redolent.json b/domains/redolent.json new file mode 100644 index 000000000..5512e045b --- /dev/null +++ b/domains/redolent.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/redz.json b/domains/redz.json new file mode 100644 index 000000000..6132ad5c3 --- /dev/null +++ b/domains/redz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "redzgt", + "email": "morgans73072@gmail.com" + }, + "record": { + "CNAME": "redzgt.github.io" + } +} diff --git a/domains/reefsalty.json b/domains/reefsalty.json index cb967f686..fcc66f28a 100644 --- a/domains/reefsalty.json +++ b/domains/reefsalty.json @@ -7,6 +7,6 @@ "twitter": "ReefSalty" }, "record": { - "CNAME": "ReefSalty.github.io" + "CNAME": "reefsalty.github.io" } } diff --git a/domains/reejit.json b/domains/reejit.json new file mode 100644 index 000000000..3a5d8a374 --- /dev/null +++ b/domains/reejit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "reejit", + "email": "guardiansofspartax@gmail.com" + }, + "record": { + "NS": ["gloria.ns.cloudflare.com", "west.ns.cloudflare.com"] + } +} diff --git a/domains/refayet.json b/domains/refayet.json index 4d2c70bb9..6dde1072e 100644 --- a/domains/refayet.json +++ b/domains/refayet.json @@ -3,7 +3,6 @@ "username": "refayet-dev", "email": "refayet0096@gmail.com" }, - "repo": "https://github.com/refayet-dev.github.io", "description": "refayet's portfolio site", "record": { "CNAME": "refayet-dev.github.io" diff --git a/domains/region.json b/domains/region.json new file mode 100644 index 000000000..2434bc609 --- /dev/null +++ b/domains/region.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/regiondavid.json b/domains/regiondavid.json index 03cb8587c..8b49a5ce2 100644 --- a/domains/regiondavid.json +++ b/domains/regiondavid.json @@ -6,6 +6,5 @@ "record": { "CNAME": "regiondavid.github.io" }, - "repo": "https://github.com/regiondavid", "description": "regiondavid's new website" } diff --git a/domains/register-bot.json b/domains/register-bot.json deleted file mode 100644 index 018b2b59a..000000000 --- a/domains/register-bot.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": { - "CNAME": "p2pb.dev" - }, - "proxied": true -} diff --git a/domains/reiiv-beta.json b/domains/reiiv-beta.json new file mode 100644 index 000000000..c6f4ea812 --- /dev/null +++ b/domains/reiiv-beta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "record": { + "CNAME": "reiiv-beta.vercel.app" + } +} diff --git a/domains/reiiv-dev.json b/domains/reiiv-dev.json new file mode 100644 index 000000000..5946005db --- /dev/null +++ b/domains/reiiv-dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "record": { + "CNAME": "reiiv-dev.vercel.app" + } + } diff --git a/domains/reiiv.json b/domains/reiiv.json new file mode 100644 index 000000000..a11069afb --- /dev/null +++ b/domains/reiiv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "record": { + "CNAME": "reiiv.vercel.app" + } +} diff --git a/domains/reiya.json b/domains/reiya.json new file mode 100644 index 000000000..840a23f7a --- /dev/null +++ b/domains/reiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "reiya", + "discord": "atlayer3" + }, + "record": { + "CNAME": "atlayer3.net" + } +} diff --git a/domains/reiyuchan.json b/domains/reiyuchan.json new file mode 100644 index 000000000..a3b71b851 --- /dev/null +++ b/domains/reiyuchan.json @@ -0,0 +1,11 @@ +{ + "description": "reiyuchan personal website", + "repo": "https://github.com/reiyuchan/reiyuchan.github.io", + "owner": { + "username": "reiyuchan", + "email": "iwakura.rei.tk@gmail.com" + }, + "record": { + "CNAME": "reiyuchan.github.io" + } +} diff --git a/domains/rejectmodders.json b/domains/rejectmodders.json new file mode 100644 index 000000000..88d4706d3 --- /dev/null +++ b/domains/rejectmodders.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RejectModders", + "discord": "RejectModders", + "email": "rejectmodders@disutils.com" + }, + "record": { + "CNAME": "rejectmoddersis-adev.vercel.app" + } +} diff --git a/domains/relicrb.json b/domains/relicrb.json index e0e64b01e..1ace4d4fe 100644 --- a/domains/relicrb.json +++ b/domains/relicrb.json @@ -6,6 +6,6 @@ "email": "relicrb@gmail.com" }, "record": { - "CNAME": "RelicRB.github.io" + "CNAME": "relicrb.github.io" } } diff --git a/domains/renant.json b/domains/renant.json new file mode 100644 index 000000000..86e36854f --- /dev/null +++ b/domains/renant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "renant", + "email": "renan_replay@live.com" + }, + "record": { + "CNAME": "renant.vercel.app" + } +} diff --git a/domains/renzcole.json b/domains/renzcole.json new file mode 100644 index 000000000..ba5e84817 --- /dev/null +++ b/domains/renzcole.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeBuddySLTNS", + "email": "renz2arjhay@gmail.com" + }, + "record": { + "CNAME": "renzcole.vercel.app" + } +} diff --git a/domains/repo.abdullahcxd.json b/domains/repo.abdullahcxd.json new file mode 100644 index 000000000..6926427dc --- /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" + }, + "record": { + "CNAME": "abdullahcxd-reposilite-server.fly.dev" + } +} diff --git a/domains/rescenic.json b/domains/rescenic.json new file mode 100644 index 000000000..5713f2fae --- /dev/null +++ b/domains/rescenic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rescenic", + "email": "admin@rescenic.my.id" + }, + "record": { + "CNAME": "rescenic.github.io" + } +} diff --git a/domains/researcx.json b/domains/researcx.json index 0cfe4cd96..297b432c8 100644 --- a/domains/researcx.json +++ b/domains/researcx.json @@ -6,6 +6,9 @@ "record": { "A": ["207.127.95.80"], "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": ["v=spf1 include:zoho.eu ~all"] + "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..2cb95b7c8 --- /dev/null +++ b/domains/resend._domainkey.ante.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "record": { + "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..37fb5d358 --- /dev/null +++ b/domains/resend._domainkey.auth.sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "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..d3bd69516 --- /dev/null +++ b/domains/resend._domainkey.blogs.akk1to.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com" + }, + "record": { + "TXT": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCkC3QeDPeGYFp3nDf2GByvCWnS24VLN9lnWJWWnkPNJGiFuoucjxU8CpeD74C1XlZDz6dr/zcNPsOrh5Zi/87XugfwQsDzjfPPosCRIGa1SVqm1S4kdaT2Ms7i6//x5Y0y7uoE+dK2EecDVwLJAqc93Yipp+xihK9HOf4ffO6nxwIDAQAB" + } +} diff --git a/domains/retro.horibyte.json b/domains/retro.horibyte.json new file mode 100644 index 000000000..4a1863917 --- /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" + }, + "record": { + "CNAME": "horibyte.github.io" + } +} diff --git a/domains/revansp.json b/domains/revansp.json new file mode 100644 index 000000000..18e211cd3 --- /dev/null +++ b/domains/revansp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revansp", + "email": "revanspstudy28@gmail.com" + }, + "record": { + "CNAME": "revansp.pages.dev" + } +} diff --git a/domains/reyuki.json b/domains/reyuki.json new file mode 100644 index 000000000..f2e722485 --- /dev/null +++ b/domains/reyuki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyukii", + "email": "me@reyuki.site" + }, + "record": { + "CNAME": "www.reyuki.site" + } +} diff --git a/domains/rezz.json b/domains/rezz.json index 4103ecc70..45a2500fc 100644 --- a/domains/rezz.json +++ b/domains/rezz.json @@ -1,5 +1,4 @@ { - "repo": "https://github.com/RezzedUp", "owner": { "username": "RezzedUp", "twitter": "RezzedUp" diff --git a/domains/rhushabhrathod.json b/domains/rhushabhrathod.json new file mode 100644 index 000000000..59fc9c31b --- /dev/null +++ b/domains/rhushabhrathod.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rhushabhrathod", + "email": "rhushabhrathodmark9@gmail.com" + }, + "record": { + "CNAME": "rhushabhrathod.github.io" + } +} diff --git a/domains/rhythm.json b/domains/rhythm.json new file mode 100644 index 000000000..a323394ae --- /dev/null +++ b/domains/rhythm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ms7ru", + "email": "rhythm.upa@gmail.com" + }, + "record": { + "CNAME": "ms7ru.github.io" + } +} diff --git a/domains/riccardo126.json b/domains/riccardo126.json new file mode 100644 index 000000000..3d8ca7fd4 --- /dev/null +++ b/domains/riccardo126.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riccardo126", + "email": "riccardopassacantando@gmail.com" + }, + "record": { + "CNAME": "riccardo126.vercel.app" + } +} diff --git a/domains/ridwan.json b/domains/ridwan.json new file mode 100644 index 000000000..3e4a2b6c8 --- /dev/null +++ b/domains/ridwan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ridwanyinus", + "email": "ridwanyinusa15@gmail.com" + }, + "record": { + "CNAME": "ridwanyinus.vercel.app" + } +} 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..c32ef16c3 --- /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" + }, + "record": { + "CNAME": "humanwhodebugs.netlify.app" + } +} diff --git a/domains/rilliat.json b/domains/rilliat.json new file mode 100644 index 000000000..d21cc827c --- /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" + }, + "record": { + "URL": "https://www.rilliat.ru" + } +} diff --git a/domains/rishabh.json b/domains/rishabh.json new file mode 100644 index 000000000..e41ce6faf --- /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" + }, + "record": { + "CNAME": "rishabhc.github.io" + } +} diff --git a/domains/riskyprsty.json b/domains/riskyprsty.json new file mode 100644 index 000000000..bc7680c91 --- /dev/null +++ b/domains/riskyprsty.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "riskyprsty" + }, + "record": { + "CNAME": "riskyprsty.github.io" + } +} diff --git a/domains/risqiahmad.json b/domains/risqiahmad.json new file mode 100644 index 000000000..0a4baad15 --- /dev/null +++ b/domains/risqiahmad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "record": { + "CNAME": "nextjs-notion-starter-kit-transitive-bullshit.vercel.app" + } +} diff --git a/domains/risshi.json b/domains/risshi.json index ee9a901b8..6866fe692 100644 --- a/domains/risshi.json +++ b/domains/risshi.json @@ -6,6 +6,6 @@ "email": "risshirajsen@gmail.com" }, "record": { - "CNAME": "codeRisshi25.github.io" + "CNAME": "coderisshi25.github.io" } } diff --git a/domains/ritam.json b/domains/ritam.json new file mode 100644 index 000000000..d2875cf07 --- /dev/null +++ b/domains/ritam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nxrmqlly", + "email": "ritam@duck.com" + }, + "record": { + "CNAME": "ritams-website.vercel.app" + } +} diff --git a/domains/ritesh.json b/domains/ritesh.json new file mode 100644 index 000000000..17521b68f --- /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" + }, + "record": { + "CNAME": "riteshsargam.github.io" + } +} diff --git a/domains/rith.json b/domains/rith.json new file mode 100644 index 000000000..15ebde14e --- /dev/null +++ b/domains/rith.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rithb898", + "email": "rithb2004@gmail.com" + }, + "record": { + "CNAME": "rith-portfolio-next-js.vercel.app" + } +} \ No newline at end of file diff --git a/domains/ritwick2006.json b/domains/ritwick2006.json index 5ab1790e8..1c23da0d1 100644 --- a/domains/ritwick2006.json +++ b/domains/ritwick2006.json @@ -1,6 +1,5 @@ { "description": "Ritwick's website", - "repo": "https://github.com/BOTDEV123", "owner": { "username": "BOTDEV123", "email": "ritwick2006@hotmail.com" diff --git a/domains/rizkykr.json b/domains/rizkykr.json new file mode 100644 index 000000000..bcab1cd18 --- /dev/null +++ b/domains/rizkykr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rizkykr", + "email": "me@rizkykr.com" + }, + "description": "Personal Website for Personal Branding", + "record": { + "CNAME": "rizkykr-is-a-dev.rizkykr.workers.dev" + }, + "proxied": false +} diff --git a/domains/rizqi.json b/domains/rizqi.json new file mode 100644 index 000000000..d3cc7bfa6 --- /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" + }, + "record": { + "CNAME": "rizqiseijuuro.github.io" + } +} diff --git a/domains/rizvan.json b/domains/rizvan.json index e3d7c24bd..f156e0e1d 100644 --- a/domains/rizvan.json +++ b/domains/rizvan.json @@ -4,6 +4,6 @@ "email": "rizvankurungattil@gmail.com" }, "record": { - "CNAME": "Mrizvank.github.io" + "CNAME": "mrizvank.github.io" } } diff --git a/domains/rizz.json b/domains/rizz.json index 8d131c18a..44ee87226 100644 --- a/domains/rizz.json +++ b/domains/rizz.json @@ -1,9 +1,10 @@ { - "owner": { - "username": "bananaking6", - "discord": "skibidibagel" - }, - "record": { - "CNAME": "skibidi-2.vercel.app" - } + "owner": { + "username": "bananaking6", + "discord": "skibidibagel" + }, + + "record": { + "CNAME": "bananaking6.github.io" + } } diff --git a/domains/rk.json b/domains/rk.json new file mode 100644 index 000000000..75c7bc5c9 --- /dev/null +++ b/domains/rk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohankokkula", + "email": "rohankokkula01@gmail.com" + }, + "record": { + "URL": "https://rohankokkula.dev/" + } +} diff --git a/domains/ro.json b/domains/ro.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/ro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/robin.json b/domains/robin.json new file mode 100644 index 000000000..3ded27d8e --- /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" + }, + "record": { + "CNAME": "robinjesba.github.io" + } +} diff --git a/domains/robot.json b/domains/robot.json new file mode 100644 index 000000000..5b7827f77 --- /dev/null +++ b/domains/robot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ROBOTofficial", + "email": "robot@thunlights.com" + }, + "record": { + "URL": "https://github.com/ROBOTofficial" + } +} diff --git a/domains/rodolfo.json b/domains/rodolfo.json new file mode 100644 index 000000000..2ad8be59f --- /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" + }, + "record": { + "CNAME": "rudwolf.github.io" + } +} diff --git a/domains/roei.json b/domains/roei.json new file mode 100644 index 000000000..08d323ffd --- /dev/null +++ b/domains/roei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roei111", + "email": "roeiyaacobi@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/roger.json b/domains/roger.json index 4d0d24f82..472585806 100644 --- a/domains/roger.json +++ b/domains/roger.json @@ -1,12 +1,12 @@ { - "description": "Roger's website to host mostly useless projects", - "repo": "https://github.com/rogerpanza/rogerpanza.github.io", + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/rogerHuntGauntlet/registerisadev", "owner": { - "username": "rogerpanza", - "email": "rogerpanza-ed@protonmail.com", - "twitter": "rogerpanza_" + "username": "rogerHuntGauntlet", + "email": "regorhunt02052@gmail.com", + "discord": "roger_jgs404040" }, "record": { - "CNAME": "rogerpanza.github.io" + "CNAME": "rogerbhuntiii.vercel.app" } } diff --git a/domains/rogo.json b/domains/rogo.json new file mode 100644 index 000000000..a4b3384d8 --- /dev/null +++ b/domains/rogo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BenRogozinski", + "discord": "BenDaBuilder", + "email": "brogodev@gmail.com" + }, + "record": { + "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..c85fa32fe --- /dev/null +++ b/domains/rohan-codes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khuranajordan", + "email": "rohankhurana20@gmail.com" + }, + "record": { + "CNAME": "khuranajordan.github.io" + } +} diff --git a/domains/rohan.json b/domains/rohan.json index 832a60dac..f59d8c3d8 100644 --- a/domains/rohan.json +++ b/domains/rohan.json @@ -1,6 +1,5 @@ { "description": "Rohan's devlog and portfolio", - "repo": "https://github.com/rohan-bansal", "owner": { "username": "Rohan-Bansal", "email": "rohan@rbansal.dev" diff --git a/domains/rohanjaiswal.json b/domains/rohanjaiswal.json new file mode 100644 index 000000000..998e3c231 --- /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" + }, + "record": { + "CNAME": "jaiswalrohan8796.github.io" + } +} diff --git a/domains/rohitgunthal.json b/domains/rohitgunthal.json new file mode 100644 index 000000000..eef797274 --- /dev/null +++ b/domains/rohitgunthal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohitgunthal18", + "email": "rohitgunthal1819@gmail.com" + }, + "record": { + "CNAME": "rohitgunthal18.github.io" + } +} diff --git a/domains/rohith-jv.json b/domains/rohith-jv.json new file mode 100644 index 000000000..b0cb1d534 --- /dev/null +++ b/domains/rohith-jv.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "0mnichan" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/rohith.json b/domains/rohith.json index a01a24b8e..b575ce386 100644 --- a/domains/rohith.json +++ b/domains/rohith.json @@ -1,6 +1,5 @@ { "description": "Rohith's personal website", - "repo": "https://github.com/rohithp7777", "owner": { "username": "rohithp7777", "email": "rohithp8899@gmail.com" diff --git a/domains/rohithborana.json b/domains/rohithborana.json new file mode 100644 index 000000000..2ec95d269 --- /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" + }, + "record": { + "CNAME": "therohithborana.vercel.app" + } +} diff --git a/domains/rohithkumar.json b/domains/rohithkumar.json index 3c15206b9..fd3f9478b 100644 --- a/domains/rohithkumar.json +++ b/domains/rohithkumar.json @@ -1,6 +1,5 @@ { "description": "My Personal Website", - "repo": "https://github.com/killTheDB", "owner": { "username": "killTheDB", "email": "jayanarohith7@gmail.com" diff --git a/domains/roig.json b/domains/roig.json index ae9ecd76e..006082103 100644 --- a/domains/roig.json +++ b/domains/roig.json @@ -1,6 +1,5 @@ { "description": "Roig's website", - "repo": "https://github.com/groig", "owner": { "username": "groig", "email": "groig@protonmail.com" diff --git a/domains/roki.json b/domains/roki.json new file mode 100644 index 000000000..dccec75d7 --- /dev/null +++ b/domains/roki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Roki100", + "discord": "289479495444987904" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/rom.json b/domains/rom.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/rom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/roma.json b/domains/roma.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/roma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/roman.json b/domains/roman.json new file mode 100644 index 000000000..6c8614026 --- /dev/null +++ b/domains/roman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GameRoMan", + "email": "gameromandev@gmail.com" + }, + "record": { + "CNAME": "gameroman.pages.dev" + } +} diff --git a/domains/romero.json b/domains/romero.json new file mode 100644 index 000000000..3cbd67b1f --- /dev/null +++ b/domains/romero.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "helloromero", + "email": "hello@helloromero.co.uk" + }, + "record": { + "CNAME": "helloromero.co.uk" + } +} diff --git a/domains/ronaldo.json b/domains/ronaldo.json new file mode 100644 index 000000000..9fac9e28d --- /dev/null +++ b/domains/ronaldo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ronaldoao", + "email": "ronaldoa.ojeda@gmail.com" + }, + "record": { + "CNAME": "vite-react-ronaldos-projects-c3f1d8be.vercel.app" + } +} diff --git a/domains/ronnieaban.json b/domains/ronnieaban.json new file mode 100644 index 000000000..65b6406bd --- /dev/null +++ b/domains/ronnieaban.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ronnieaban", + "email": "ronnieaban@gmail.com" + }, + "record": { + "CNAME": "ronnieaban.pages.dev" + } +} diff --git a/domains/roque.json b/domains/roque.json new file mode 100644 index 000000000..f040bc5c0 --- /dev/null +++ b/domains/roque.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "luisfroquez", + "email": "luisfroque@gmail.com", + "discord": "lroque.dev" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/roshan.json b/domains/roshan.json index 6ca21a0e2..0e8534360 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" - } + "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..598bd270d --- /dev/null +++ b/domains/roshangm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roshangm1", + "email": "roshan@brainants.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/roshansahani.json b/domains/roshansahani.json new file mode 100644 index 000000000..37ca5212c --- /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" + }, + "record": { + "CNAME": "felixop7.github.io" + } +} \ No newline at end of file diff --git a/domains/rouf0x.json b/domains/rouf0x.json index 47555a910..ad4235268 100644 --- a/domains/rouf0x.json +++ b/domains/rouf0x.json @@ -1,7 +1,6 @@ { "owner": { "username": "Rouf0x", - "email": "gabriel.ruf@gmail.com", "discord": "790712104058617876" }, "record": { diff --git a/domains/roufox.json b/domains/roufox.json index 653875194..cdcfccd46 100644 --- a/domains/roufox.json +++ b/domains/roufox.json @@ -1,7 +1,6 @@ { "owner": { "username": "Rouf0x", - "email": "gabriel.ruf@gmail.com", "discord": "790712104058617876" }, "record": { diff --git a/domains/royalty.json b/domains/royalty.json index ba1a103bd..8976d0857 100644 --- a/domains/royalty.json +++ b/domains/royalty.json @@ -6,6 +6,6 @@ "email": "hisroyal.baguette@gmail.com" }, "record": { - "CNAME": "hisRoyalty.github.io" + "CNAME": "hisroyalty.github.io" } } diff --git a/domains/roydon.json b/domains/roydon.json index b1730c21b..7a37917c2 100644 --- a/domains/roydon.json +++ b/domains/roydon.json @@ -1,6 +1,5 @@ { "description": "URL forwarder", - "repo": "https://github.com/roydondsouza", "owner": { "username": "roydondsouza", "twitter": "roydondsouza" diff --git a/domains/roydondsouza.json b/domains/roydondsouza.json index b2a3a0488..a9e01d94c 100644 --- a/domains/roydondsouza.json +++ b/domains/roydondsouza.json @@ -1,6 +1,5 @@ { "description": "URL forwarder", - "repo": "https://github.com/roydondsouza", "owner": { "username": "roydondsouza", "twitter": "roydondsouza" diff --git a/domains/roylee0704.json b/domains/roylee0704.json new file mode 100644 index 000000000..66a6a4721 --- /dev/null +++ b/domains/roylee0704.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roylee0704", + "email": "roylee0704@gmail.com" + }, + "record": { + "CNAME": "roylee0704.github.io" + } +} diff --git a/domains/rpadrell.json b/domains/rpadrell.json new file mode 100644 index 000000000..1b0fe5f20 --- /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" + }, + "record": { + "CNAME": "roger-padrell.github.io" + } +} diff --git a/domains/rt10.json b/domains/rt10.json index c7bc0496d..33ed1daf8 100644 --- a/domains/rt10.json +++ b/domains/rt10.json @@ -9,6 +9,7 @@ "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/rubenvilchez.json b/domains/rubenvilchez.json new file mode 100644 index 000000000..0adfea645 --- /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.", + "record": { + "CNAME": "whitethor.github.io" + } +} diff --git a/domains/rudeus.json b/domains/rudeus.json new file mode 100644 index 000000000..605e8c6bd --- /dev/null +++ b/domains/rudeus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dmquang", + "email": "mq.rudyy.08@gmai.com" + }, + "record": { + "CNAME": "dmquang.github.io" + } +} diff --git a/domains/rufistofeles.json b/domains/rufistofeles.json new file mode 100644 index 000000000..297c8e569 --- /dev/null +++ b/domains/rufistofeles.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rufistofeles", + "email": "rufistofeles@outlook.com" + }, + "record": { + "CNAME": "rufistofeles.github.io" + } +} diff --git a/domains/rupankar.json b/domains/rupankar.json new file mode 100644 index 000000000..83901f13e --- /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" + }, + "record": { + "CNAME": "invictusrex.github.io" + } +} diff --git a/domains/rushabh.json b/domains/rushabh.json new file mode 100644 index 000000000..b1991bab2 --- /dev/null +++ b/domains/rushabh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rushabhcodes", + "email": "rushabhpatil.dev@gmail.com", + "discord": "_rushabh" + }, + "record": { + "CNAME": "rushabhpatil.vercel.app" + } +} diff --git a/domains/rushi.json b/domains/rushi.json index 22e7ed28c..1bb34917d 100644 --- a/domains/rushi.json +++ b/domains/rushi.json @@ -3,8 +3,7 @@ "repo": "https://github.com/rushi0n/rushi0n.github.io", "owner": { "username": "rushi0n", - "email": "rushikushare99@gmail.com", - "twitter": "" + "email": "rushikushare99@gmail.com" }, "record": { "CNAME": "rushi0n.github.io" diff --git a/domains/rvc11.json b/domains/rvc11.json new file mode 100644 index 000000000..d88d4005c --- /dev/null +++ b/domains/rvc11.json @@ -0,0 +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" + } +} diff --git a/domains/ryanbaig.json b/domains/ryanbaig.json new file mode 100644 index 000000000..65f803b49 --- /dev/null +++ b/domains/ryanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RyanBaig", + "discord": "757475933170040893" + }, + "record": { + "CNAME": "ryanthedev.vercel.app" + } +} diff --git a/domains/ryanzam.json b/domains/ryanzam.json index 460e43d37..a4093f03c 100644 --- a/domains/ryanzam.json +++ b/domains/ryanzam.json @@ -4,6 +4,6 @@ "email": "ryanzam2005@yahoo.com" }, "record": { - "CNAME": "icy-coast-0d7690d03.3.azurestaticapps.net" + "CNAME": "orange-island-07b3bb803.5.azurestaticapps.net" } } diff --git a/domains/ryz.json b/domains/ryz.json index 709827766..eb845c098 100644 --- a/domains/ryz.json +++ b/domains/ryz.json @@ -1,7 +1,7 @@ { "description": "This subdomain is for my personal projects and mail forwarding.", "owner": { - "username": "0ryz", + "username": "Iron9699", "email": "j6qt9x5sj@mozmail.com", "discord": "4ryz" }, diff --git a/domains/s.drpleaserespect.json b/domains/s.drpleaserespect.json deleted file mode 100644 index ee0613c67..000000000 --- a/domains/s.drpleaserespect.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DrPleaseRespect", - "email": "juliannayr2007@gmail.com" - }, - "record": { - "A": ["146.19.100.135"], - "AAAA": ["2a05:dfc1:4400:6c00::a"] - } -} diff --git a/domains/s1dd.json b/domains/s1dd.json new file mode 100644 index 000000000..e7a6119eb --- /dev/null +++ b/domains/s1dd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nots1dd", + "email": "sid9.karanam@gmail.com" + }, + "record": { + "CNAME": "webpage-seven-puce.vercel.app" + } +} diff --git a/domains/whine.json b/domains/s1ow.json similarity index 54% rename from domains/whine.json rename to domains/s1ow.json index a0b0bdeb5..2a21df10f 100644 --- a/domains/whine.json +++ b/domains/s1ow.json @@ -1,15 +1,16 @@ { - "description": "whi_ne's personal site", - "repo": "https://github.com/whinee/whinee.github.io", + "description": "! s1owmotion.0 profile page", + "repository": "https://github.com/H4iPh0ngM1enB4c/Web", "owner": { - "username": "whinee", - "twitter": "whi_nyaan" + "username": "H4iPh0ngM1enB4c", + "email": "noobdownload2@gmail.com", + "discord": "1027559943462727740" }, "record": { "A": [ "185.199.108.153", - "185.199.109.153", "185.199.110.153", + "185.199.109.153", "185.199.111.153" ], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], diff --git a/domains/s550384._domainkey.vinceale7082.json b/domains/s550384._domainkey.vinceale7082.json deleted file mode 100644 index 38230f9c5..000000000 --- a/domains/s550384._domainkey.vinceale7082.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "CNAME": "dkim.smtp2go.net" - } -} diff --git a/domains/s697376._domainkey.yxz.json b/domains/s697376._domainkey.yxz.json new file mode 100644 index 000000000..bc4ea4f04 --- /dev/null +++ b/domains/s697376._domainkey.yxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "record": { + "CNAME": "dkim.smtp2go.net" + } +} diff --git a/domains/s97.json b/domains/s97.json index 4025f3758..d9ffc7ac1 100644 --- a/domains/s97.json +++ b/domains/s97.json @@ -2,7 +2,6 @@ "owner": { "username": "Saud-97", "email": "saud.aljaffer@gmail.com", - "repo": "https://github.com/Saud-97", "discord": "S97#6758" }, "record": { diff --git a/domains/saammaaeel.json b/domains/saammaaeel.json deleted file mode 100644 index 04e9c1664..000000000 --- a/domains/saammaaeel.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "saammaaeel", - "email": "codenamesamael@gmail.com", - "twitter": "codenamesamael" - }, - "record": { - "CNAME": "saammaaeel.github.io" - } -} diff --git a/domains/sabbir.json b/domains/sabbir.json index 9f02d817e..2c4dd5094 100644 --- a/domains/sabbir.json +++ b/domains/sabbir.json @@ -4,6 +4,6 @@ "email": "sabbir.apbn.edu@gmail.com" }, "record": { - "CNAME": "sabbir1.pages.dev" + "NS": ["clarissa.ns.cloudflare.com", "harley.ns.cloudflare.com"] } } diff --git a/domains/sachin.json b/domains/sachin.json index bffa70ddb..d176455dd 100644 --- a/domains/sachin.json +++ b/domains/sachin.json @@ -1,6 +1,5 @@ { "description": "Sachin's portfolio", - "repo": "https://github.com/sachin-in1", "owner": { "username": "sachin-in1", "email": "sachin.here01@gmail.com" diff --git a/domains/sad-devmatei.json b/domains/sad-devmatei.json new file mode 100644 index 000000000..b2447dc4b --- /dev/null +++ b/domains/sad-devmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "URL": "https://devmatei.is-a.dev/" + } +} diff --git a/domains/sadik.json b/domains/sadik.json new file mode 100644 index 000000000..42ecb335f --- /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" + }, + "record": { + "CNAME": "sadik-mu.vercel.app" + } +} \ No newline at end of file diff --git a/domains/saeedmfarahani.json b/domains/saeedmfarahani.json new file mode 100644 index 000000000..10813186c --- /dev/null +++ b/domains/saeedmfarahani.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Silitonix" + }, + "record": { + "CNAME": "silitonix.github.io" + } +} diff --git a/domains/saert.json b/domains/saert.json new file mode 100644 index 000000000..b497e31eb --- /dev/null +++ b/domains/saert.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "saert3311", + "email": "jose.duarte@trinum.xyz" + }, + "record": { + "CNAME": "trinum.xyz" + } +} diff --git a/domains/safety.json b/domains/safety.json new file mode 100644 index 000000000..f4fdcb48e --- /dev/null +++ b/domains/safety.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HackingYZ", + "email": "sifed@qq.com" + }, + "record": { + "CNAME": "safety22w413a.github.io" + } +} diff --git a/domains/saftec.json b/domains/saftec.json new file mode 100644 index 000000000..29f984f33 --- /dev/null +++ b/domains/saftec.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Samuraiflamesf", + "email": "Samuraiflamesf@gmail.com" + }, + "record": { + "A": ["152.67.45.142"] + } +} diff --git a/domains/sageofluke.json b/domains/sageofluke.json new file mode 100644 index 000000000..5b4d94e2b --- /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" + }, + "record": { + "CNAME": "sageofluke.github.io" + } +} diff --git a/domains/saif.json b/domains/saif.json new file mode 100644 index 000000000..50a8e1d09 --- /dev/null +++ b/domains/saif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saifkhanz", + "email": "saif137.khan@gmail.com" + }, + "record": { + "CNAME": "saif-two.vercel.app" + } +} diff --git a/domains/sairaj.json b/domains/sairaj.json new file mode 100644 index 000000000..6f0f651df --- /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" + }, + "record": { + "CNAME": "gegendepressed.github.io" + } +} diff --git a/domains/saisrujanreddyp.json b/domains/saisrujanreddyp.json new file mode 100644 index 000000000..60228750b --- /dev/null +++ b/domains/saisrujanreddyp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SaiSrujanReddyP", + "email": "srujansaireddy.p@gmai.com", + "discord": "1092467372201361488" + }, + "record": { + "CNAME": "saisrujanreddyp.pages.dev" + } +} diff --git a/domains/saizuo.json b/domains/saizuo.json index a5fe7e9e4..b9f099d8a 100644 --- a/domains/saizuo.json +++ b/domains/saizuo.json @@ -7,6 +7,6 @@ "twitter": "SaizyWaizy" }, "record": { - "CNAME": "Saizuo.github.io" + "CNAME": "saizuo.github.io" } } diff --git a/domains/sajid.json b/domains/sajid.json new file mode 100644 index 000000000..321365b27 --- /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" + }, + "record": { + "CNAME": "sajidshahriar72543.github.io" + } +} \ No newline at end of file diff --git a/domains/sakis.json b/domains/sakis.json new file mode 100644 index 000000000..a6e1c94db --- /dev/null +++ b/domains/sakis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syakhisk", + "email": "syakhisks@gmail.com" + }, + "record": { + "URL": "https://al-az.me" + } +} diff --git a/domains/sakshi.json b/domains/sakshi.json new file mode 100644 index 000000000..7be25164e --- /dev/null +++ b/domains/sakshi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "git-sakshii", + "email": "sakshiii@outlook.com" + }, + "record": { + "URL": "https://github.com/git-sakshii/" + } + } diff --git a/domains/saleh.json b/domains/saleh.json new file mode 100644 index 000000000..667f3d896 --- /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" + }, + "record": { + "CNAME": "saleh-rahimzadeh.github.io" + } +} diff --git a/domains/salman.json b/domains/salman.json new file mode 100644 index 000000000..60ae41228 --- /dev/null +++ b/domains/salman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "salmaniyad", + "email": "eng.salmaniyad@gmail.com" + }, + "record": { + "CNAME": "salmans-digital-space-pro.vercel.app" + } +} diff --git a/domains/salsabila.json b/domains/salsabila.json new file mode 100644 index 000000000..f19a9f6e9 --- /dev/null +++ b/domains/salsabila.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "salsabilarhdsy", + "email": "salsabiladsy@gmail.com" + }, + "record": { + "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/samadhi.json b/domains/samadhi.json new file mode 100644 index 000000000..f02292fba --- /dev/null +++ b/domains/samadhi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samadhi1311", + "email": "samadhilakmina.sl@gmail.com" + }, + "record": { + "CNAME": "samadhi-gunasinghe.pages.dev" + } +} diff --git a/domains/samanyu.json b/domains/samanyu.json index 3f955a21a..4bee54d7b 100644 --- a/domains/samanyu.json +++ b/domains/samanyu.json @@ -1,6 +1,5 @@ { "description": "They call me Soman", - "repo": "https://github.com/Samanyu13", "owner": { "username": "Samanyu13", "email": "samanyusaji18@gmail.com" diff --git a/domains/samenal.json b/domains/samenal.json new file mode 100644 index 000000000..8f6649b25 --- /dev/null +++ b/domains/samenal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Samenal-sys", + "email": "samenaal@proton.me" + }, + "record": { + "CNAME": "samenal.pages.dev" + } +} diff --git a/domains/samfareez.json b/domains/samfareez.json new file mode 100644 index 000000000..d7174c984 --- /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" + }, + "record": { + "CNAME": "zeerafle.github.io" + } +} diff --git a/domains/samia-islam-sua.json b/domains/samia-islam-sua.json index 951bad237..cc0e5c76f 100644 --- a/domains/samia-islam-sua.json +++ b/domains/samia-islam-sua.json @@ -6,6 +6,6 @@ "email": "SamiaIslamSua@gmail.com" }, "record": { - "CNAME": "SamiaIslamSua.github.io" + "CNAME": "samiaislamsua.github.io" } } diff --git a/domains/samirkhanal.json b/domains/samirkhanal.json new file mode 100644 index 000000000..f8c5c5b46 --- /dev/null +++ b/domains/samirkhanal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khanal-samir", + "email": "gdssamir@gmail.com" + }, + "record": { + "CNAME": "samir-khanal-portfolio.vercel.app" + } +} diff --git a/domains/samirp.json b/domains/samirp.json index 5841d5845..b0444d937 100644 --- a/domains/samirp.json +++ b/domains/samirp.json @@ -7,6 +7,6 @@ "twitter": "SamirPaulb" }, "record": { - "CNAME": "SamirPaul1.github.io" + "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..d29dc1b16 --- /dev/null +++ b/domains/samishoukat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samishoukat12", + "email": "samishoukat12@gmail.com" + }, + "record": { + "CNAME": "dev-samishoukat.vercel.app" + } +} diff --git a/domains/samrat.json b/domains/samrat.json new file mode 100644 index 000000000..c9c453bd4 --- /dev/null +++ b/domains/samrat.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ogsamrat" + }, + "record": { + "CNAME": "ogsamrat.github.io" + } +} diff --git a/domains/samson.json b/domains/samson.json new file mode 100644 index 000000000..cc6d8927d --- /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" + }, + "record": { + "CNAME": "marscapone.github.io" + } +} diff --git a/domains/sana.json b/domains/sana.json new file mode 100644 index 000000000..936ce2b9c --- /dev/null +++ b/domains/sana.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sana-afk", + "email": "srijita3010@gmail.com" + }, + "record": { + "CNAME": "sana-afk.github.io" + } +} diff --git a/domains/sanchit.json b/domains/sanchit.json new file mode 100644 index 000000000..b7e49ca82 --- /dev/null +++ b/domains/sanchit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sanchitbajaj02", + "email": "sanchit02@outlook.com", + "discord": "704721578029744299" + }, + "record": { + "CNAME": "portfolio-delta-lemon-14.vercel.app" + } +} diff --git a/domains/sandepten.json b/domains/sandepten.json new file mode 100644 index 000000000..bb88643d8 --- /dev/null +++ b/domains/sandepten.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sandepten", + "email": "sandepten@gmail.com", + "discord": "sandepten" + }, + "record": { + "CNAME": "sandepten.vercel.app" + } +} diff --git a/domains/sandun.json b/domains/sandun.json new file mode 100644 index 000000000..9e888ae80 --- /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" + }, + "record": { + "CNAME": "sandunmadhushan.github.io" + } +} diff --git a/domains/sang.json b/domains/sang.json new file mode 100644 index 000000000..137bba6d2 --- /dev/null +++ b/domains/sang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chauvansang", + "email": "cvansang94@gmail.com" + }, + "record": { + "CNAME": "chauvansang.github.io" + } +} diff --git a/domains/sangeeth.json b/domains/sangeeth.json new file mode 100644 index 000000000..a05494c84 --- /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", + "record": { + "CNAME": "github-sangeeth-606.github.io" + } +} diff --git a/domains/sangelo.json b/domains/sangelo.json index 52d216dbb..f78904011 100644 --- a/domains/sangelo.json +++ b/domains/sangelo.json @@ -1,12 +1,9 @@ { "description": "Redirect to personal homepage", - "owner": { "username": "SangeloDev", "email": "contact@sangelo.space" }, - "repo": "https://github.com/SangeloDev", - "record": { "URL": "https://sangelo.space" } diff --git a/domains/sanish.json b/domains/sanish.json new file mode 100644 index 000000000..32352c9a1 --- /dev/null +++ b/domains/sanish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sanishkr", + "email": "sanishkr@gmail.com" + }, + "record": { + "URL": "https://sanish.me/" + } +} diff --git a/domains/sanjay-suryavanshi.json b/domains/sanjay-suryavanshi.json index a72d83f81..bdafc95b4 100644 --- a/domains/sanjay-suryavanshi.json +++ b/domains/sanjay-suryavanshi.json @@ -5,6 +5,6 @@ "username": "Sanjay-Suryavanshi" }, "record": { - "CNAME": "Sanjay-Suryavanshi.github.io" + "CNAME": "sanjay-suryavanshi.github.io" } } diff --git a/domains/sanjay.json b/domains/sanjay.json index d8a9e9b83..3a37fdbb4 100644 --- a/domains/sanjay.json +++ b/domains/sanjay.json @@ -5,7 +5,6 @@ "twitter": "megasanjay" }, "description": "Personal website", - "repo": "https://github.com/megasanjay", "record": { "URL": "https://sanjaysoundarajan.dev" } diff --git a/domains/sanjaykumar.json b/domains/sanjaykumar.json new file mode 100644 index 000000000..61a08fadc --- /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" + }, + "record": { + "CNAME": "ethi19.github.io" + } +} diff --git a/domains/sankalp.json b/domains/sankalp.json deleted file mode 100644 index 8af5afc14..000000000 --- a/domains/sankalp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Sankalp Pathak Website", - "repo": "https://github.com/k144u/k144u.github.io", - "owner": { - "username": "k144u", - "email": "pathaksankalp04@gmail.com" - }, - "record": { - "CNAME": "k144u.github.io" - } -} diff --git a/domains/sanketborade.json b/domains/sanketborade.json deleted file mode 100644 index 8ec6edfe8..000000000 --- a/domains/sanketborade.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "boradesanket13", - "email": "boradesanket13@gmail.com" - }, - "record": { - "CNAME": "boradesanket13.github.io" - } -} diff --git a/domains/santa.json b/domains/santa.json new file mode 100644 index 000000000..4c3b15b77 --- /dev/null +++ b/domains/santa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "StefanoMantero", + "email": "eldrazichiodo@gmail.com" + }, + "description": "Fun project for santa", + "record": { + "CNAME": "seal-app-up9wg.ondigitalocean.app" + } +} diff --git a/domains/santhoshkani.json b/domains/santhoshkani.json new file mode 100644 index 000000000..ce2ba02b7 --- /dev/null +++ b/domains/santhoshkani.json @@ -0,0 +1,10 @@ +{ + "description": "Santhosh Kani - Personal Github Page", + "owner": { + "username": "santhoshkani", + "email": "santhosh.kani@gmail.com" + }, + "record": { + "CNAME": "santhoshkani.github.io" + } +} diff --git a/domains/santoshgiri.json b/domains/santoshgiri.json new file mode 100644 index 000000000..46c4b0d12 --- /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" + }, + "record": { + "URL": "https://santoshgiri.com.np/" + } +} diff --git a/domains/santty.json b/domains/santty.json new file mode 100644 index 000000000..b97d0d7e5 --- /dev/null +++ b/domains/santty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "santiagogr05", + "email": "san7iagogr.05@gmail.com" + }, + "record": { + "CNAME": "portfolio-santtys-projects.vercel.app" + } +} \ No newline at end of file diff --git a/domains/saras008.json b/domains/saras008.json new file mode 100644 index 000000000..f76bee78d --- /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" + }, + "record": { + "CNAME": "saras008.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/sarthak-malhotra.json b/domains/sarthak-malhotra.json new file mode 100644 index 000000000..c67766061 --- /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" + }, + "record": { + "CNAME": "www.webdevsam.pro" + } +} diff --git a/domains/sashankp.json b/domains/sashankp.json new file mode 100644 index 000000000..8875e676f --- /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" + }, + "record": { + "CNAME": "sashankps.vercel.app" + } +} diff --git a/domains/sathish.json b/domains/sathish.json index fbd4cccc9..804567dd4 100644 --- a/domains/sathish.json +++ b/domains/sathish.json @@ -6,6 +6,6 @@ "email": "muppidathi00@gmail.com" }, "record": { - "CNAME": "Muppidathi-sys.github.io" + "CNAME": "muppidathi-sys.github.io" } } diff --git a/domains/satindar.json b/domains/satindar.json index a819dd1fa..bf02e1c4e 100644 --- a/domains/satindar.json +++ b/domains/satindar.json @@ -7,6 +7,14 @@ "twitter": "satindar31" }, "record": { - "CNAME": "satindar31.github.io" + "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"], + "DS": [ + { + "key_tag": 2371, + "algorithm": 13, + "digest_type": 2, + "digest": "C2074462471B81206F792AEC23469EF33DDC53538E8580DCCC92FD130C9A6096" + } + ] } } diff --git a/domains/satyam.json b/domains/satyam.json new file mode 100644 index 000000000..6d0e49eb5 --- /dev/null +++ b/domains/satyam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lostboysatyam", + "email": "lostboysatyam54@gmail.com" + }, + "record": { + "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..c9ec7ec45 --- /dev/null +++ b/domains/satyamjha.json @@ -0,0 +1,10 @@ +{ + "description": "Pool full of Diamonds", + "owner": { + "username": "SatyamIsSatyam", + "email": "realsatyam02@gmail.com" + }, + "record": { + "CNAME": "satyamissatyam.github.io" + } +} diff --git a/domains/satyamv7.json b/domains/satyamv7.json index 9aef9da6d..4fb2c2b47 100644 --- a/domains/satyamv7.json +++ b/domains/satyamv7.json @@ -6,6 +6,6 @@ "email": "satyamverma46@outlook.com" }, "record": { - "CNAME": "SatyamV7.github.io" + "CNAME": "satyamv7.github.io" } } diff --git a/domains/saumon.json b/domains/saumon.json index 89e77e457..2982bfea6 100644 --- a/domains/saumon.json +++ b/domains/saumon.json @@ -1,10 +1,10 @@ { "owner": { "username": "saumonarcenciel", - "email": "viala38000@gmail.com", + "email": "saumon@duck.com", "discord": "823623660743950416" }, "record": { - "A": ["163.5.143.4"] + "A": ["109.234.166.168"] } } diff --git a/domains/saunak.json b/domains/saunak.json new file mode 100644 index 000000000..127213ef2 --- /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" + }, + "record": { + "CNAME": "sgfolio-nu.vercel.app" + } +} diff --git a/domains/saurabhkirve.json b/domains/saurabhkirve.json index 798888ff5..e54cd907e 100644 --- a/domains/saurabhkirve.json +++ b/domains/saurabhkirve.json @@ -1,9 +1,9 @@ { "owner": { - "username": "BerzCode", + "username": "Sxurabh", "email": "saurabhkirve@gmail.com" }, "record": { - "CNAME": "berzcode.github.io" + "CNAME": "sxurabh.github.io" } } diff --git a/domains/saxophone.json b/domains/saxophone.json index 09300ddff..ae8888e00 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": { "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 1fa51a57e..11363cc07 100644 --- a/domains/saya.json +++ b/domains/saya.json @@ -7,6 +7,6 @@ "twitter": "AayanTDE" }, "record": { - "CNAME": "yanNotDev.github.io" + "CNAME": "yannotdev.github.io" } } diff --git a/domains/scan.json b/domains/scan.json index 53080ebe7..fcf8e3393 100644 --- a/domains/scan.json +++ b/domains/scan.json @@ -1,7 +1,6 @@ { "owner": { "username": "scanash00", - "email": "103391616+scanash00@users.noreply.github.com", "discord": "827389583342698536" }, "record": { diff --git a/domains/schuh.json b/domains/schuh.json new file mode 100644 index 000000000..a1919a9de --- /dev/null +++ b/domains/schuh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vqpe", + "email": "theschuhofyou@gmail.com" + }, + "record": { + "CNAME": "vqpe.github.io" + } +} diff --git a/domains/sebastianguz.json b/domains/sebastianguz.json new file mode 100644 index 000000000..e86b94ee6 --- /dev/null +++ b/domains/sebastianguz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sebaguse", + "email": "sebaguse@gmail.com" + }, + "record": { + "CNAME": "friendly-churros-e20592.netlify.app" + } +} diff --git a/domains/sebastianriveros.json b/domains/sebastianriveros.json new file mode 100644 index 000000000..8616af540 --- /dev/null +++ b/domains/sebastianriveros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Wisauw", + "email": "riveross92@gmail.com" + }, + "record": { + "CNAME": "sebastian-riveros.vercel.app" + } +} diff --git a/domains/sebdev.json b/domains/sebdev.json new file mode 100644 index 000000000..c51e20935 --- /dev/null +++ b/domains/sebdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sebdeveloper6952", + "email": "seb@sebdev.io" + }, + "record": { + "CNAME": "blog.sebdev.io" + } +} diff --git a/domains/secsum.json b/domains/secsum.json new file mode 100644 index 000000000..077fc697d --- /dev/null +++ b/domains/secsum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NgoQuangThien", + "email": "quangthien18032000@gmail.com" + }, + "record": { + "A": ["3.24.49.246"] + } +} diff --git a/domains/seiko.json b/domains/seiko.json index c3359cbd0..97b55377e 100644 --- a/domains/seiko.json +++ b/domains/seiko.json @@ -1,8 +1,8 @@ { "owner": { "username": "Delta-0mega", - "email": "zxroff@proton.me", - "discord": "1279377552561147964" + "email": "seikoo.dev@gmail.com", + "discord": "1293641904860172389" }, "record": { "CNAME": "seiko-7oa.pages.dev" diff --git a/domains/semant.json b/domains/semant.json index 34f6dd658..a5e64f98c 100644 --- a/domains/semant.json +++ b/domains/semant.json @@ -3,7 +3,7 @@ "owner": { "username": "ihacksemant", "email": "contact@semant.is-a.dev", - "discord": "@semant" + "discord": "semant" }, "record": { "A": ["69.30.249.53"], diff --git a/domains/send.ante.json b/domains/send.ante.json new file mode 100644 index 000000000..98cfcad3f --- /dev/null +++ b/domains/send.ante.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "record": { + "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..fbe05e7a4 --- /dev/null +++ b/domains/send.auth.sign.alvin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "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..b988ef95f --- /dev/null +++ b/domains/send.blogs.akk1to.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@outlook.com" + }, + "record": { + "MX": ["feedback-smtp.us-east-1.amazonses.com"], + "TXT": "v=spf1 include:amazonses.com ~all" + } +} diff --git a/domains/senthil.json b/domains/senthil.json new file mode 100644 index 000000000..4c8db6adc --- /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" + }, + "record": { + "CNAME": "gptechland.github.io" + } +} diff --git a/domains/sep.json b/domains/sep.json new file mode 100644 index 000000000..4706dc1d6 --- /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" + }, + "record": { + "CNAME": "sepultrex.github.io" + } +} diff --git a/domains/seqyu.json b/domains/seqyu.json new file mode 100644 index 000000000..7e341aef9 --- /dev/null +++ b/domains/seqyu.json @@ -0,0 +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", + "discord": "@seqyu." + }, + "record": { + "CNAME": "nvct-website.github.io" + } +} diff --git a/domains/sergarsilla.json b/domains/sergarsilla.json new file mode 100644 index 000000000..acc50cad4 --- /dev/null +++ b/domains/sergarsilla.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sergarsilla", + "email": "sergarsilla@gmail.com" + }, + "record": { + "CNAME": "sergarsilla.github.io" + } +} diff --git a/domains/sergio.json b/domains/sergio.json new file mode 100644 index 000000000..0f36fc5a0 --- /dev/null +++ b/domains/sergio.json @@ -0,0 +1,10 @@ +{ + "description": "Mi sitio web personal", + "owner": { + "username": "sgm1018", + "email": "sgm1018@proton.me" + }, + "record": { + "URL": "https://www.linkedin.com/in/sergiogm1999/" + } +} diff --git a/domains/sergioperea.json b/domains/sergioperea.json new file mode 100644 index 000000000..3d07f1a09 --- /dev/null +++ b/domains/sergioperea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sperea", + "email": "perea@mailfence.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/serhii-koba.json b/domains/serhii-koba.json new file mode 100644 index 000000000..b7a85ae65 --- /dev/null +++ b/domains/serhii-koba.json @@ -0,0 +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" + } +} diff --git a/domains/server.drpleaserespect.json b/domains/server.drpleaserespect.json deleted file mode 100644 index ee0613c67..000000000 --- a/domains/server.drpleaserespect.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DrPleaseRespect", - "email": "juliannayr2007@gmail.com" - }, - "record": { - "A": ["146.19.100.135"], - "AAAA": ["2a05:dfc1:4400:6c00::a"] - } -} diff --git a/domains/server.mrdiamond.json b/domains/server.mrdiamond.json index 228b625ad..5fafbf9d2 100644 --- a/domains/server.mrdiamond.json +++ b/domains/server.mrdiamond.json @@ -4,6 +4,7 @@ "email": "drewratner27@gmail.com" }, "record": { - "A": ["129.153.208.15"] - } + "A": ["129.146.51.207"] + }, + "proxied": false } diff --git a/domains/service.rachancheet.json b/domains/service.rachancheet.json new file mode 100644 index 000000000..d244b1026 --- /dev/null +++ b/domains/service.rachancheet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rachancheet", + "email": "raxxsngh37@gmail.com" + }, + "record": { + "A": ["152.67.163.7"] + } +} diff --git a/domains/services.defective.json b/domains/services.defective.json new file mode 100644 index 000000000..3a9459cac --- /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" + }, + "record": { + "A": ["130.61.27.34"] + } +} diff --git a/domains/sesasan.json b/domains/sesasan.json new file mode 100644 index 000000000..041756a81 --- /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" + }, + "record": { + "CNAME": "sesasan.netlify.app" + } +} diff --git a/domains/sethpython.json b/domains/sethpython.json deleted file mode 100644 index c4748789d..000000000 --- a/domains/sethpython.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "An Useless Website", - "repo": "https://github.com/SethTheDev/seththedev.github.io", - "owner": { - "username": "SethTheDev", - "email": "spccmbseth@gmail.com" - }, - "record": { - "CNAME": "seththedev.github.io" - } -} diff --git a/domains/seven.json b/domains/seven.json index 98d3fcb35..c8b16cbbe 100644 --- a/domains/seven.json +++ b/domains/seven.json @@ -1,7 +1,6 @@ { "owner": { "username": "7op3", - "email": "134126156+7op3@users.noreply.github.com", "discord": "882124409945587773" }, "record": { @@ -11,9 +10,7 @@ "185.199.111.153", "185.199.109.153" ], - "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"], - "TXT": [ "sl-verification=ivfyrhmrpfrkrgrkywcghobxqkhynw", "v=spf1 include:simplelogin.co ~all" diff --git a/domains/sevinda-herath._domainkey.sevinda-herath.json b/domains/sevinda-herath._domainkey.sevinda-herath.json new file mode 100644 index 000000000..b974a12ec --- /dev/null +++ b/domains/sevinda-herath._domainkey.sevinda-herath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCAhBt3btz/Lvou5WOJo+eF4YYWNZHxX0h5vPCfcP0IVtxOcicEhpvuY8DZ86ooVAptJeXKeuXVOz0J3SkAeGu2OAPZdHwKmBXTxvIx040Qhb3plS3T1iQXj3gu8SjkZk2w6X/07iQB+KkUYD8wvAT6UUIyNugQPd74LRYpOV1pRQIDAQAB" + } +} diff --git a/domains/sevinda-herath.json b/domains/sevinda-herath.json new file mode 100644 index 000000000..8c9b52842 --- /dev/null +++ b/domains/sevinda-herath.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "record": { + "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 2c903a19a..f0d948321 100644 --- a/domains/sewt.json +++ b/domains/sewt.json @@ -4,9 +4,14 @@ "discord": "1049263707177353247" }, "record": { - "A": ["82.67.68.228"], - "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": ["v=spf1 include:zohomail.eu ~all"] + "A": ["37.27.51.34"], + "AAAA": ["2a01:4f9:3081:399c::4"], + "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"], + "TXT": [ + "sl-verification=sibwuwbmtopnrrdmfxvdabidjzvcow", + "v=spf1 include:simplelogin.co ~all", + "domain-verification=skyexplorewastaken" + ] }, "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/sfinxv.json b/domains/sfinxv.json index fed2af103..5c29889b4 100644 --- a/domains/sfinxv.json +++ b/domains/sfinxv.json @@ -3,7 +3,6 @@ "username": "sfinxv", "discord": "sfinxv" }, - "repo": "https://github.com/SFINXVC/sfinxvc.github.io", "record": { "CNAME": "sfinxvc.github.io" diff --git a/domains/sh13y.json b/domains/sh13y.json new file mode 100644 index 000000000..392946361 --- /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" + }, + "record": { + "CNAME": "sh13y.github.io" + } +} diff --git a/domains/sh770.json b/domains/sh770.json new file mode 100644 index 000000000..c15cbe25c --- /dev/null +++ b/domains/sh770.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sh770", + "email": "sh770h@gmail.com" + }, + "record": { + "CNAME": "sh770.github.io" + } +} diff --git a/domains/shahab.json b/domains/shahab.json new file mode 100644 index 000000000..faf81f27b --- /dev/null +++ b/domains/shahab.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shahab-xd", + "email": "0xshahab@proton.me" + }, + "record": { + "CNAME": "shahab-xd.github.io" + } +} diff --git a/domains/shan.json b/domains/shan.json index e39234069..03348e755 100644 --- a/domains/shan.json +++ b/domains/shan.json @@ -7,7 +7,7 @@ "twitter": "lordlinux69" }, "record": { - "A": ["45.90.12.31"], + "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/shanise.json b/domains/shanise.json new file mode 100644 index 000000000..efb646a25 --- /dev/null +++ b/domains/shanise.json @@ -0,0 +1,11 @@ +{ + "description": "Domain registration for shanise.is.a.dev", + "repo": "https://github.com/shanise02/register", + "owner": { + "username": "shanise02", + "email": "shanise.smith2001@gmail.com" + }, + "record": { + "URL": "https://shanisesmith.vercel.app" + } +} diff --git a/domains/sharad.json b/domains/sharad.json new file mode 100644 index 000000000..c31504da1 --- /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" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/sharath.json b/domains/sharath.json index 93badde2b..ee1c17458 100644 --- a/domains/sharath.json +++ b/domains/sharath.json @@ -1,6 +1,5 @@ { "description": "Social media website project.", - "repo": "https://github.com/thesct22", "owner": { "username": "thesct22", "email": "sharathct22@gmail.com" diff --git a/domains/share.alora.json b/domains/share.alora.json new file mode 100644 index 000000000..6eeb74d82 --- /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" + }, + "record": { + "CNAME": "fileshare-snowy.vercel.app" + } +} diff --git a/domains/shaunak.json b/domains/shaunak.json index 7fe7ba1fb..814c9c952 100644 --- a/domains/shaunak.json +++ b/domains/shaunak.json @@ -1,6 +1,5 @@ { "description": "my .is-a.dev domain", - "repo": "https://github.com/Shaunak-Pandya.github.io", "owner": { "username": "Shaunak-Pandya", "email": "shaunak.n.pandya@gmail.com" diff --git a/domains/shibiliya.json b/domains/shibiliya.json index 25a7b5efa..614dccd8e 100644 --- a/domains/shibiliya.json +++ b/domains/shibiliya.json @@ -1,6 +1,5 @@ { "description": "Shibiliya's personal developer website", - "repo": "https://github.com/duaboola", "owner": { "username": "duaboola", "email": "ismailshibiliya@gmail.com" diff --git a/domains/shikhar.json b/domains/shikhar.json new file mode 100644 index 000000000..ad2a7a480 --- /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" + }, + "record": { + "URL": "https://adityasrivastava.vercel.app/" + } +} diff --git a/domains/shimizu.json b/domains/shimizu.json new file mode 100644 index 000000000..b0c335042 --- /dev/null +++ b/domains/shimizu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mikofoxie", + "email": "shimizulazy@gmail.com" + }, + "record": { + "CNAME": "shimizulinks.vercel.app" + } +} diff --git a/domains/shin.json b/domains/shin.json index c8b028e0e..eecde04a7 100644 --- a/domains/shin.json +++ b/domains/shin.json @@ -1,18 +1,15 @@ { - "description": "The offcial website by Tachibana Shin (@tachib_shin)", - "repo": "https://github.com/tachibana-shin/tachibana-shin.github.io", + "description": "Email forward Tachibana Shin (@tachib_shin)", "owner": { "username": "tachibana-shin", + "email": "", "twitter": "tachib_shin" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" ], - "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": "forward-email=tachibshin@duck.com" } } diff --git a/domains/shirshen.json b/domains/shirshen.json new file mode 100644 index 000000000..f8f108786 --- /dev/null +++ b/domains/shirshen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shu-vro", + "email": "official.shirshen@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/shivabajpai.json b/domains/shivabajpai.json new file mode 100644 index 000000000..c28844190 --- /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" + }, + "record": { + "CNAME": "shivacodes.vercel.app" + }, + "proxied": false +} diff --git a/domains/shivam.json b/domains/shivam.json new file mode 100644 index 000000000..812df0835 --- /dev/null +++ b/domains/shivam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shivamkumar177", + "email": "shivamk1717@gmail.com" + }, + "record": { + "CNAME": "shivam-kumar.netlify.app" + } +} diff --git a/domains/shivamtrivedi.json b/domains/shivamtrivedi.json new file mode 100644 index 000000000..f2d372662 --- /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" + }, + "record": { + "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..f0e49005e --- /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" + }, + "record": { + "URL": "https://www.shivanandasai.xyz/" + } +} diff --git a/domains/shivang.json b/domains/shivang.json index 4c0f54aa6..fc69e5f55 100644 --- a/domains/shivang.json +++ b/domains/shivang.json @@ -7,6 +7,6 @@ "telegram": "ShivangKakkar88" }, "record": { - "CNAME": "ShivangKakkar.github.io" + "CNAME": "shivangkakkar.github.io" } } diff --git a/domains/shivansh.json b/domains/shivansh.json new file mode 100644 index 000000000..54f2a8418 --- /dev/null +++ b/domains/shivansh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shivansh722", + "email": "shivanshcha722@gmail.com", + "discord": "839163183141748807" + }, + "record": { + "CNAME": "portfolio-theta-one-19.vercel.app" + } +} diff --git a/domains/shoaib.json b/domains/shoaib.json new file mode 100644 index 000000000..492b7ef35 --- /dev/null +++ b/domains/shoaib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "d3vshoaib", + "email": "d3vshoaib@gmail.com" + }, + "record": { + "CNAME": "d3vshoaib.netlify.app" + } +} diff --git a/domains/shomy.json b/domains/shomy.json index bd15e711f..596da9668 100644 --- a/domains/shomy.json +++ b/domains/shomy.json @@ -12,6 +12,9 @@ "185.199.111.153" ], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], - "TXT": "forward-email=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA==" + "TXT": [ + "forward-email=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA==", + "google-site-verification=86zZ55mR4x8nTO3sV5iWvq92pg8sikARK7f1Q_Gw7pI" + ] } } diff --git a/domains/shork.json b/domains/shork.json index 0af2bdf46..47fc31021 100644 --- a/domains/shork.json +++ b/domains/shork.json @@ -2,7 +2,7 @@ "owner": { "username": "shorkdev", "email": "shork_d3v@proton.me", - "telegram": "@shorko_owo" + "telegram": "shorko_owo" }, "record": { "URL": "https://shork.one" diff --git a/domains/shrey.json b/domains/shrey.json new file mode 100644 index 000000000..f24d2fbfe --- /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" + }, + "record": { + "URL": "https://shreysadhukhan-portfolio.vercel.app/" + } +} diff --git a/domains/shri.json b/domains/shri.json new file mode 100644 index 000000000..e193cad80 --- /dev/null +++ b/domains/shri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shari003", + "email": "shri.harii@hotmail.com", + "discord": "744620219976253481" + }, + "record": { + "CNAME": "shriharidev.vercel.app" + } +} diff --git a/domains/shrivatsav.json b/domains/shrivatsav.json new file mode 100644 index 000000000..e2849ae55 --- /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" + }, + "record": { + "URL": "https://shrivatsav.vercel.app" + } +} diff --git a/domains/shrpp.json b/domains/shrpp.json new file mode 100644 index 000000000..1359a5432 --- /dev/null +++ b/domains/shrpp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shrpp", + "email": "lucius.2906@gmail.com" + }, + "record": { + "URL": "https://github.com/Shrpp" + } +} diff --git a/domains/shubh.json b/domains/shubh.json index 2b950ba61..b4321f5ef 100644 --- a/domains/shubh.json +++ b/domains/shubh.json @@ -1,12 +1,8 @@ { - "description": "personal portfolio website", - "repo": "https://github.com/R3tr0LastKnight/Portfoio_v2.git", "owner": { - "username": "R3tr0LastKnight", - "email": "r3tr0lastknight@gmail.com", - "twitter": "R3tr0LastKnight" + "username": "R3tr0LastKnight" }, "record": { - "CNAME": "r3tr0lastknight.github.io" + "CNAME": "portfoio-v2.vercel.app" } } diff --git a/domains/shubhambattoo.json b/domains/shubhambattoo.json index f3e0be9c8..2ab897359 100644 --- a/domains/shubhambattoo.json +++ b/domains/shubhambattoo.json @@ -5,7 +5,6 @@ "twitter": "Shubham_batt" }, "description": "My personal website", - "repo": "https://github.com/shubhambattoo", "record": { "URL": "https://shubhambattoo.in" } diff --git a/domains/shubhamprajapati.json b/domains/shubhamprajapati.json new file mode 100644 index 000000000..a0e028e69 --- /dev/null +++ b/domains/shubhamprajapati.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShubhamP528", + "email": "shubham528prajapati@gmail.com" + }, + "record": { + "CNAME": "portfolio-kappa-orpin-32.vercel.app" + } +} diff --git a/domains/shubhamsharma.json b/domains/shubhamsharma.json new file mode 100644 index 000000000..12b9762ac --- /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" + }, + "record": { + "CNAME": "shubs-links.netlify.app" + } +} diff --git a/domains/shubhamverma.json b/domains/shubhamverma.json new file mode 100644 index 000000000..e00d1e26c --- /dev/null +++ b/domains/shubhamverma.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Stroller15" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/shubhhh.json b/domains/shubhhh.json new file mode 100644 index 000000000..5f30ef248 --- /dev/null +++ b/domains/shubhhh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shubhhhwarrior", + "email": "shubhammvaghela999@gmail.com" + }, + "record": { + "CNAME": "shubhhh-96.netlify.app" + } +} diff --git a/domains/shuhaab.json b/domains/shuhaab.json new file mode 100644 index 000000000..fe1efec86 --- /dev/null +++ b/domains/shuhaab.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Shuhaab-coder" + }, + "record": { + "CNAME": "shuhaab.vercel.app" + } +} diff --git a/domains/shukraditya.json b/domains/shukraditya.json new file mode 100644 index 000000000..8210c31d5 --- /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" + }, + "record": { + "CNAME": "shukraditya.github.io" + } +} diff --git a/domains/shwetarajput.json b/domains/shwetarajput.json new file mode 100644 index 000000000..e2e6eb5f9 --- /dev/null +++ b/domains/shwetarajput.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "shwetarajputsk" + }, + "record": { + "CNAME": "shwetarajput.netlify.app" + } +} diff --git a/domains/shyam.json b/domains/shyam.json new file mode 100644 index 000000000..6c40bc1ba --- /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" + }, + "record": { + "CNAME": "shyam.dev" + } +} diff --git a/domains/si458.json b/domains/si458.json new file mode 100644 index 000000000..69fff21be --- /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" + }, + "record": { + "NS": ["jake.ns.cloudflare.com", "jill.ns.cloudflare.com"] + } +} diff --git a/domains/siama.json b/domains/siama.json deleted file mode 100644 index e10c1a395..000000000 --- a/domains/siama.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "siam3h", - "email": "philosiama@gmail.com" - }, - "record": { - "CNAME": "siam3h.github.io" - } -} diff --git a/domains/siamrahman.json b/domains/siamrahman.json deleted file mode 100644 index 25c6f6713..000000000 --- a/domains/siamrahman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/siamrahman000/siamrahman000.github.io", - "owner": { - "username": "siamrahman000", - "email": "s14mshell@gmail.com", - "twitter": "skillsiam" - }, - "record": { - "CNAME": "siamrahman000.github.io" - } -} diff --git a/domains/sid.json b/domains/sid.json index 923cd8355..329515042 100644 --- a/domains/sid.json +++ b/domains/sid.json @@ -1,6 +1,5 @@ { "description": "Siddhartha Patki's development portfolio", - "repo": "https://github.com/SiddPatki", "owner": { "username": "SiddPatki", "email": "siddharthapatki@gmail.com" diff --git a/domains/sid385.json b/domains/sid385.json new file mode 100644 index 000000000..f421fdcb1 --- /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" + }, + "record": { + "CNAME": "siddhant385.github.io" + } +} diff --git a/domains/sidd.json b/domains/sidd.json new file mode 100644 index 000000000..2f9c071c1 --- /dev/null +++ b/domains/sidd.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/sidx04/sidx04.github.io", + "owner": { + "username": "sidx04", + "email": "siddpal04@gmail.com" + }, + "record": { + "CNAME": "sidx04.github.io" + } +} diff --git a/domains/siddhant.json b/domains/siddhant.json index a8b6f41b6..7a5ebbcdb 100644 --- a/domains/siddhant.json +++ b/domains/siddhant.json @@ -1,6 +1,5 @@ { "description": "Siddhant's personal site", - "repo": "https://github.com/siddhant094", "owner": { "username": "siddhant094", "email": "pandeysiddhant21@gmail.com" diff --git a/domains/siddharth03.json b/domains/siddharth03.json new file mode 100644 index 000000000..e2e60361c --- /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" + }, + "record": { + "CNAME": "sidshasane03.github.io" + } +} diff --git a/domains/siddharthjain.json b/domains/siddharthjain.json new file mode 100644 index 000000000..138f82e72 --- /dev/null +++ b/domains/siddharthjain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siddharth9300", + "discord": "sidd9300" + }, + "record": { + "CNAME": "next-js-portfolio-siddharth9300s-projects.vercel.app" + } +} diff --git a/domains/sidhant.json b/domains/sidhant.json new file mode 100644 index 000000000..1abbaa50a --- /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" + }, + "record": { + "CNAME": "sidhant947.github.io" + } +} diff --git a/domains/sifat.json b/domains/sifat.json new file mode 100644 index 000000000..0e714ec56 --- /dev/null +++ b/domains/sifat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mahi160", + "email": "omarsifat288@gmail.com" + }, + "record": { + "CNAME": "mahi160.vercel.app" + } +} diff --git a/domains/sig1._domainkey.ft.json b/domains/sig1._domainkey.ft.json new file mode 100644 index 000000000..fb7107c3b --- /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" + }, + "record": { + "CNAME": "sig1.dkim.ft.is-a.dev.at.icloudmailadmin.com" + } +} diff --git a/domains/sign.alvin.json b/domains/sign.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/sija.json b/domains/sija.json new file mode 100644 index 000000000..fc1397e15 --- /dev/null +++ b/domains/sija.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sija", + "email": "sija@sija.pl", + "twitter": "sijawusz" + }, + "record": { + "CNAME": "sija.pl" + } +} diff --git a/domains/silent0070.json b/domains/silent0070.json new file mode 100644 index 000000000..c7f94f1d3 --- /dev/null +++ b/domains/silent0070.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "silent0070", + "email": "niranjanbrahma007@gmail.com" + }, + "record": { + "CNAME": "silent0070.github.io" + } +} diff --git a/domains/silva.json b/domains/silva.json new file mode 100644 index 000000000..22ac88af5 --- /dev/null +++ b/domains/silva.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SilvaTechB", + "email": "momanyi.2913@gmail.com" + }, + "record": { + "CNAME": "silvatechb.github.io" + } +} diff --git a/domains/simo.json b/domains/simo.json index 798ba5f65..eddcc1229 100644 --- a/domains/simo.json +++ b/domains/simo.json @@ -1,6 +1,5 @@ { "description": "A redirect to simo.sh", - "repo": "https://github.com/fr3fou", "owner": { "username": "fr3fou", "twitter": "fr3fou" diff --git a/domains/simone.json b/domains/simone.json new file mode 100644 index 000000000..6adc3b493 --- /dev/null +++ b/domains/simone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cimasim89", + "email": "cimasim89@gmail.com" + }, + "record": { + "CNAME": "cimasim-portfolio.vercel.app" + } +} diff --git a/domains/simontran.json b/domains/simontran.json new file mode 100644 index 000000000..eb732a4e1 --- /dev/null +++ b/domains/simontran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tvkorsimon02", + "email": "tntgaming2016@gmail.com" + }, + "record": { + "CNAME": "tvkorsimon02.github.io" + } +} diff --git a/domains/sincererflame71.json b/domains/sincererflame71.json index c6e93e287..3a985230f 100644 --- a/domains/sincererflame71.json +++ b/domains/sincererflame71.json @@ -4,6 +4,17 @@ "email": "DarkNightcore8@outlook.com" }, "record": { - "A": ["185.199.108.153"] + "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/siritas.json b/domains/siritas.json new file mode 100644 index 000000000..164e7d993 --- /dev/null +++ b/domains/siritas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dahoba", + "email": "dahoba+github@gmail.com" + }, + "record": { + "URL": "https://siritas.gitlab.io" + } +} diff --git a/domains/sirmacr0.json b/domains/sirmacr0.json index 4762d7782..8ebb66f94 100644 --- a/domains/sirmacr0.json +++ b/domains/sirmacr0.json @@ -6,6 +6,6 @@ "email": "tunagunduz03@gmail.com" }, "record": { - "CNAME": "SirMacr0.github.io" + "CNAME": "sirmacr0.github.io" } } diff --git a/domains/sitaram.json b/domains/sitaram.json new file mode 100644 index 000000000..333cab7d4 --- /dev/null +++ b/domains/sitaram.json @@ -0,0 +1,10 @@ +{ + "description": "Maka Sitaram's Portfolio", + "owner": { + "username": "satyaram413", + "email": "maka.sitaram@gmail.com" + }, + "record": { + "URL": "https://sitaram-portfolio.vercel.app/" + } +} diff --git a/domains/sitov.json b/domains/sitov.json new file mode 100644 index 000000000..84c2cb4a1 --- /dev/null +++ b/domains/sitov.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sitov", + "email": "cristian.sitov@gmail.com" + }, + "record": { + "CNAME": "sitov.ro" + } +} diff --git a/domains/sivaraj.json b/domains/sivaraj.json index d00a09ee7..91c3c4821 100644 --- a/domains/sivaraj.json +++ b/domains/sivaraj.json @@ -5,6 +5,17 @@ "discord": "1057144035812327524" }, "record": { - "A": ["185.199.108.153"] + "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/siya.json b/domains/siya.json new file mode 100644 index 000000000..6d829e4d5 --- /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" + }, + "record": { + "CNAME": "siyarajput.vercel.app" + } +} diff --git a/domains/skarwuuu.json b/domains/skarwuuu.json new file mode 100644 index 000000000..d47821bb2 --- /dev/null +++ b/domains/skarwuuu.json @@ -0,0 +1,10 @@ +{ + "description": "skarwuuu.is-a.dev", + "owner": { + "username": "skarwuuu", + "email": "sakshrwt@gmail.com" + }, + "record": { + "CNAME": "skarwuuu.vercel.app" + } +} diff --git a/domains/skibidi.json b/domains/skibidi.json index e8446824e..ee66e2c72 100644 --- a/domains/skibidi.json +++ b/domains/skibidi.json @@ -1,9 +1,10 @@ { "owner": { "username": "bananaking6", + "email": "", "discord": "skibidibagel" }, "record": { - "CNAME": "bananaking6.github.io" + "CNAME": "skibidi-3.vercel.app" } } diff --git a/domains/skid.json b/domains/skid.json new file mode 100644 index 000000000..036f035b1 --- /dev/null +++ b/domains/skid.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "PlOszukiwaczDEV" + }, + "record": { + "CNAME": "website-4ej.pages.dev" + } +} diff --git a/domains/skierka.json b/domains/skierka.json new file mode 100644 index 000000000..ef5adfa2f --- /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" + }, + "record": { + "CNAME": "skierkcity.github.io" + } +} diff --git a/domains/sky.json b/domains/sky.json index e7c431c1c..df6600769 100644 --- a/domains/sky.json +++ b/domains/sky.json @@ -1,6 +1,5 @@ { "description": "Sky's personal website", - "repo": "https://github.com/SkyLeite", "owner": { "username": "skyleite", "email": "sky@leite.dev" diff --git a/domains/slime.json b/domains/slime.json deleted file mode 100644 index 00a7810c8..000000000 --- a/domains/slime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "purpleblueslime", - "email": "purpleblueslime@gmail.com" - }, - "record": { - "CNAME": "purpleblueslime.github.io" - } -} diff --git a/domains/slovaks.json b/domains/slovaks.json new file mode 100644 index 000000000..7f21aec3d --- /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" + }, + "record": { + "CNAME": "slovakians.github.io" + }, + "proxied": true +} diff --git a/domains/smartlinuxcoder.json b/domains/smartlinuxcoder.json index d6ae1c7a0..8034acf7f 100644 --- a/domains/smartlinuxcoder.json +++ b/domains/smartlinuxcoder.json @@ -4,6 +4,6 @@ "email": "smartcoder@linuxmail.org" }, "record": { - "CNAME": "proxytwo.smartlinux.xyz" + "CNAME": "smartlinuxcoder.github.io" } } diff --git a/domains/smeagol.json b/domains/smeagol.json index 998c0877b..c3779955f 100644 --- a/domains/smeagol.json +++ b/domains/smeagol.json @@ -6,6 +6,6 @@ "discord": "iamsmeagol" }, "record": { - "CNAME": "IamSmeagol.github.io" + "CNAME": "iamsmeagol.github.io" } } diff --git a/domains/smhemel.json b/domains/smhemel.json new file mode 100644 index 000000000..95c41d661 --- /dev/null +++ b/domains/smhemel.json @@ -0,0 +1,10 @@ +{ + "description": "A Full-Stack Developer", + "owner": { + "username": "smhemel", + "email": "smhemel.eu@gmail.com" + }, + "record": { + "URL": "https://github.com/smhemel" + } +} diff --git a/domains/smilos.json b/domains/smilos.json new file mode 100644 index 000000000..d004c9342 --- /dev/null +++ b/domains/smilos.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "smilos71" + }, + "record": { + "CNAME": "smilos71.github.io" + } +} diff --git a/domains/smlxdesign.json b/domains/smlxdesign.json new file mode 100644 index 000000000..5f6635fb0 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/snazzah.json b/domains/snazzah.json index 66123aac3..a771501cb 100644 --- a/domains/snazzah.json +++ b/domains/snazzah.json @@ -1,6 +1,5 @@ { "description": "Where the wild ones are.", - "repo": "https://github.com/Snazzah", "owner": { "username": "Snazzah", "email": "me@snazzah.com", diff --git a/domains/sneazy25.json b/domains/sneazy25.json new file mode 100644 index 000000000..80742220b --- /dev/null +++ b/domains/sneazy25.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sneazy25", + "email": "sneazy25@proton.me" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/snehajain.json b/domains/snehajain.json new file mode 100644 index 000000000..c58211807 --- /dev/null +++ b/domains/snehajain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "snehajain16", + "email": "snehajain161104@gmail.com" + }, + "record": { + "CNAME": "snehajain16.github.io" + } +} diff --git a/domains/snehal.json b/domains/snehal.json new file mode 100644 index 000000000..74bf7f2ac --- /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" + }, + "record": { + "CNAME": "sneh-al.github.io" + } +} diff --git a/domains/snowy.json b/domains/snowy.json index 8f7de18f7..bbe363e7c 100644 --- a/domains/snowy.json +++ b/domains/snowy.json @@ -1,9 +1,8 @@ { "owner": { - "username": "HayBael", - "email": "rakhakhairydarka801@gmail.com" + "username": "HayBael" }, "record": { - "URL": "https://homepage-revisiakhir.vercel.app" + "CNAME": "homepage-revisitrus.vercel.app" } } diff --git a/domains/soccer.json b/domains/soccer.json new file mode 100644 index 000000000..713e2b038 --- /dev/null +++ b/domains/soccer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minecradt", + "email": "soccer1992.is.a.dev@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/socials.chiragnahata.json b/domains/socials.chiragnahata.json deleted file mode 100644 index 726befd50..000000000 --- a/domains/socials.chiragnahata.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "chiragnahata", - "email": "chiragnahata05@gmail.com" - }, - "record": { - "A": ["129.213.151.29"] - } -} diff --git a/domains/socordia.json b/domains/socordia.json new file mode 100644 index 000000000..8ad67b74b --- /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" + }, + "record": { + "URL": "https://furesoft.gitbook.io/socordia" + }, + "proxied": false +} diff --git a/domains/sohag.json b/domains/sohag.json new file mode 100644 index 000000000..a23436df4 --- /dev/null +++ b/domains/sohag.json @@ -0,0 +1,10 @@ +{ + "description": "For my portfolio", + "owner": { + "username": "sohag02", + "discord": "sohagjabed" + }, + "record": { + "CNAME": "sohagj.vercel.app" + } +} diff --git a/domains/solarskripts.json b/domains/solarskripts.json index 099617c21..208683a50 100644 --- a/domains/solarskripts.json +++ b/domains/solarskripts.json @@ -4,6 +4,6 @@ "email": "0hexius0@gmail.com" }, "record": { - "CNAME": "solarskripts.github.io" + "CNAME": "solarskripts.net" } } diff --git a/domains/somaiyalbakhet.json b/domains/somaiyalbakhet.json new file mode 100644 index 000000000..2e4f4b519 --- /dev/null +++ b/domains/somaiyalbakhet.json @@ -0,0 +1,10 @@ +{ + "description": "my portfolio website on Netlify", + "owner": { + "username": "Somaiya-XI", + "discord": "Sen!#0577" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/sombochea.json b/domains/sombochea.json new file mode 100644 index 000000000..0c39b6a29 --- /dev/null +++ b/domains/sombochea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sombochea", + "email": "sombochea100@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/sono.json b/domains/sono.json index be2a6bf45..6536bd70e 100644 --- a/domains/sono.json +++ b/domains/sono.json @@ -4,16 +4,6 @@ "email": "sono.arbeit@gmail.com" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all", - "google-site-verification=F90R7qQ2_fVCwUljDPq9iPlyzzKs7-4XovZLDeNAvns" - ] + "NS": ["jasmine.ns.cloudflare.com", "trace.ns.cloudflare.com"] } } diff --git a/domains/sopi.json b/domains/sopi.json new file mode 100644 index 000000000..e409cd30d --- /dev/null +++ b/domains/sopi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sopiseptiansyah", + "email": "sopiseptiansyah@gmail.com" + }, + "record": { + "CNAME": "sopiseptiansyah.vercel.app" + } +} diff --git a/domains/sora-os.json b/domains/sora-os.json new file mode 100644 index 000000000..ad3c6a0b1 --- /dev/null +++ b/domains/sora-os.json @@ -0,0 +1,11 @@ +{ + "description": "Cloud operating system", + "repo": "https://github.com/qloha/Sora-OS", + "owner": { + "username": "qloha", + "youtube": "https://youtube.com/@qloha" + }, + "record": { + "CNAME": "sora-os.up.railway.app" + } +} diff --git a/domains/soraishiro.json b/domains/soraishiro.json new file mode 100644 index 000000000..5cd967793 --- /dev/null +++ b/domains/soraishiro.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Soraishiro" + }, + "record": { + "CNAME": "soraishiro.github.io" + } +} diff --git a/domains/sortalost.json b/domains/sortalost.json new file mode 100644 index 000000000..286fcf564 --- /dev/null +++ b/domains/sortalost.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sortalost", + "email": "sortalost@cock.li" + }, + "record": { + "CNAME": "sortalost.vercel.app" + } +} diff --git a/domains/sosaian.json b/domains/sosaian.json new file mode 100644 index 000000000..ed28c1e88 --- /dev/null +++ b/domains/sosaian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sosaian", + "email": "is-a.dev.unworthy202@passinbox.com" + }, + "record": { + "CNAME": "sosaian.github.io" + } +} diff --git a/domains/soul.json b/domains/soul.json new file mode 100644 index 000000000..7bfa67701 --- /dev/null +++ b/domains/soul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SoulDevs", + "email": "soulcosmic1406@proton.me" + }, + "record": { + "CNAME": "main-protfolio-seven.vercel.app" + } +} diff --git a/domains/sourabh.json b/domains/sourabh.json new file mode 100644 index 000000000..c4c3f2aba --- /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" + }, + "record": { + "CNAME": "yadavsourabhgh.github.io" + } +} diff --git a/domains/sourav-parida.json b/domains/sourav-parida.json index 5e0fb91df..94766d715 100644 --- a/domains/sourav-parida.json +++ b/domains/sourav-parida.json @@ -6,6 +6,6 @@ "email": "souravparida170@gmail.com" }, "record": { - "CNAME": "Sourav-Parida.github.io" + "CNAME": "sourav-parida.github.io" } } diff --git a/domains/sourav.json b/domains/sourav.json index 2a495c383..f188c86c7 100644 --- a/domains/sourav.json +++ b/domains/sourav.json @@ -3,8 +3,7 @@ "repo": "https://github.com/itzsouravkumar/itzsouravkumar.github.io", "owner": { "username": "itzsouravkumar", - "discord": "quipxninja", - "email": "oyesourav05012006@gmail.com" + "discord": "itz_sour4v" }, "record": { "CNAME": "itzsouravkumar.github.io" diff --git a/domains/sourov-khan-nahid.json b/domains/sourov-khan-nahid.json index 2acefc029..d1b707373 100644 --- a/domains/sourov-khan-nahid.json +++ b/domains/sourov-khan-nahid.json @@ -4,6 +4,6 @@ "email": "SourovKhanNahid@gmail.com" }, "record": { - "CNAME": "SOUROVKHANNAHID.github.io" + "CNAME": "sourovkhannahid.github.io" } } diff --git a/domains/soymadip.json b/domains/soymadip.json new file mode 100644 index 000000000..10abda764 --- /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" + }, + "record": { + "CNAME": "soymadip.github.io" + } +} diff --git a/domains/spacecraft.hexaa.json b/domains/spacecraft.hexaa.json deleted file mode 100644 index b12456c77..000000000 --- a/domains/spacecraft.hexaa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "hexaaagon", - "email": "me@hexagonn.my.id", - "discord": "scoooolzs", - "twitter": "Scoooolzs" - }, - "record": { - "URL": "https://spacecraft.hexagonn.my.id" - } -} diff --git a/domains/spaxly.json b/domains/spaxly.json index 6e1da3f96..e78e6d9eb 100644 --- a/domains/spaxly.json +++ b/domains/spaxly.json @@ -11,9 +11,7 @@ "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 533b534a5..0e09c60f0 100644 --- a/domains/spechide.json +++ b/domains/spechide.json @@ -6,6 +6,6 @@ "twitter": "SpEcHiDe" }, "record": { - "CNAME": "SpEcHiDe.github.io" + "CNAME": "spechide.github.io" } } diff --git a/domains/speedindeed1.json b/domains/speedindeed1.json new file mode 100644 index 000000000..4b66ab415 --- /dev/null +++ b/domains/speedindeed1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rohan-ingle", + "email": "rohaningle911@gmail.com" + }, + "record": { + "CNAME": "rohan-ingle.github.io" + } +} diff --git a/domains/spencer.json b/domains/spencer.json new file mode 100644 index 000000000..43484de0f --- /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" + }, + "record": { + "CNAME": "leespencer.github.io" + } +} diff --git a/domains/spider-development.json b/domains/spider-development.json new file mode 100644 index 000000000..a6edbdbc5 --- /dev/null +++ b/domains/spider-development.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "spider-development01" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/spoozy.json b/domains/spoozy.json index d9e7d42e9..d1f16fd34 100644 --- a/domains/spoozy.json +++ b/domains/spoozy.json @@ -6,6 +6,6 @@ "email": "gaspardlebreton@outlook.com" }, "record": { - "CNAME": "Spoozy.github.io" + "CNAME": "spoozy.github.io" } } diff --git a/domains/spotify.vornexx.json b/domains/spotify.vornexx.json index 7f05cd5ff..d8566e12d 100644 --- a/domains/spotify.vornexx.json +++ b/domains/spotify.vornexx.json @@ -1,6 +1,6 @@ { "owner": { - "username": "vornex-gh", + "username": "vornexx", "discord": "1149438819834269856", "twitter": "vornexx_" }, diff --git a/domains/spreadsheets600.json b/domains/spreadsheets600.json new file mode 100644 index 000000000..0282c2282 --- /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" + }, + "record": { + "CNAME": "spreadsheets600.github.io" + } +} diff --git a/domains/sq.json b/domains/sq.json index 5f34dd820..e5d58ce32 100644 --- a/domains/sq.json +++ b/domains/sq.json @@ -2,7 +2,6 @@ "description": "sqec's website", "owner": { "username": "SquareScreamYT", - "repo": "https://github.com/SquareScreamYT", "discord": "918475812884344852" }, "record": { diff --git a/domains/squair.json b/domains/squair.json new file mode 100644 index 000000000..2c2e6f506 --- /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" + }, + "record": { + "CNAME": "squairdev.github.io" + } +} diff --git a/domains/sree.json b/domains/sree.json new file mode 100644 index 000000000..4432550c6 --- /dev/null +++ b/domains/sree.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "sreekanthputta", + "email": "srikanthp12896@gmail.com" + }, + "record": { + "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..b58faca18 --- /dev/null +++ b/domains/sreehari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SreehariTS", + "email": "sreeharisudarshan@gmail.com" + }, + "record": { + "CNAME": "sreeharits.github.io" + } +} diff --git a/domains/sri.json b/domains/sri.json new file mode 100644 index 000000000..575e8234a --- /dev/null +++ b/domains/sri.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/srikrishna180/portfolio", + "owner": { + "username": "srikrishna180", + "email": "srikrishnak.dev@gmail.com" + }, + "record": { + "CNAME": "irs.dev" + } +} diff --git a/domains/srp.json b/domains/srp.json new file mode 100644 index 000000000..4c1cc4882 --- /dev/null +++ b/domains/srp.json @@ -0,0 +1,11 @@ +{ + "description": "Personal/portfolio developer website for P. R. Swaroop (aka SRP)", + "owner": { + "username": "SwaroopSRP", + "email": "srp31.swaroop@gmail.com" + }, + "repo": "https://github.com/SwaroopSRP/portfolio-site", + "record": { + "CNAME": "swaroopsrp.github.io" + } +} diff --git a/domains/srujan.json b/domains/srujan.json index 9433376f5..f2f07fecd 100644 --- a/domains/srujan.json +++ b/domains/srujan.json @@ -1,6 +1,5 @@ { "description": "Personal Website", - "repo": "https://github.com/bqwerr", "owner": { "username": "bqwerr", "email": "srujan.t@outlook.com" diff --git a/domains/stargate.json b/domains/stargate.json new file mode 100644 index 000000000..02baccb32 --- /dev/null +++ b/domains/stargate.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "r0ckmix", + "email": "mix155@yandex.ru" + }, + "record": { + "A": ["193.178.210.179"] + } +} diff --git a/domains/stark.json b/domains/stark.json new file mode 100644 index 000000000..ceb61f2e8 --- /dev/null +++ b/domains/stark.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nguyentruongton", + "email": "tonstark.dev@gmail.com" + }, + "record": { + "CNAME": "truongton.vercel.app" + } +} diff --git a/domains/starnumber.json b/domains/starnumber.json index 523cf2832..4e52e365c 100644 --- a/domains/starnumber.json +++ b/domains/starnumber.json @@ -1,6 +1,5 @@ { "description": "StarNumber's blog", - "repo": "https://github.com/starnumber12046", "owner": { "username": "starnumber12046", "email": "starnumber.official12046@gmail.com" diff --git a/domains/status.akshtt.json b/domains/status.akshtt.json new file mode 100644 index 000000000..61d600bfe --- /dev/null +++ b/domains/status.akshtt.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "akshtt-dev", + "discord": "1056531806763102218", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.rO2QcFbFjVqF890hZkgp-vCurdFW-B1GjE_QsbqCCszXMjFWf-o-wBgXBM-ReBw9UIvsHMK-VUWWBoz2OGEM6gH9-akt_7UVyb0rRW7Cf14EsDKlLrGu68NUcloWaKJBmTljShGS53br937l0Fg4C52Xrj-KSt13gUNBqOgipQDLxu6XQDrDDkqSRs_qG2Fj_bwV8aryDtBmeNPpmSccvj_2iBNtakgNrau8Z9MQpyC3cnygPEkHE-TG9B7MLFTUHeUM4aVD6m4m8TiTOMN-8wfQIZGWJRJN63v4CrqwWIVsLdNcLt4LH4QZVDQ9UoxsZ3HmYHnjKZwx9abrvsjE-A.-Fq-Y9GRM5CtqSKSC9_j-g.CLe5PojAjpjIz18t3pjBvFYOqyMX84yHtk9rCgPIKazQ78Oci-Y99APp170QCa7doh5MFbmwGXQ5l8j5pPYqdvsyrS43vV_uXkohYi69oMI.gickB69tvnA1Ag7WXseE9w" + }, + + "record": { + "A": ["173.208.244.13"] + } + } + diff --git a/domains/status.jes.json b/domains/status.jes.json new file mode 100644 index 000000000..85f017016 --- /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" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/status.killuazoldyck.json b/domains/status.killuazoldyck.json new file mode 100644 index 000000000..c03099498 --- /dev/null +++ b/domains/status.killuazoldyck.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "killuazoldyckreal", + "email": "bk1030798@gmail.com" + }, + "record": { + "CNAME": "statuspage.betteruptime.com" + } +} diff --git a/domains/status.vulcanocraft.json b/domains/status.vulcanocraft.json index 53fede4d8..d22f89082 100644 --- a/domains/status.vulcanocraft.json +++ b/domains/status.vulcanocraft.json @@ -4,7 +4,6 @@ "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" }, - "record": { "CNAME": "vulcanostatus.pages.dev" } diff --git a/domains/status.xrap1dx.json b/domains/status.xrap1dx.json index 475702775..ceba36be3 100644 --- a/domains/status.xrap1dx.json +++ b/domains/status.xrap1dx.json @@ -1,6 +1,5 @@ { "description": "making my status page!!!", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "email": "sirrapid155@gmail.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/stebanportfolio.json b/domains/stebanportfolio.json new file mode 100644 index 000000000..e0b3978eb --- /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" + }, + "record": { + "CNAME": "devsteban-portfolio.netlify.app" + } +} diff --git a/domains/steven.json b/domains/steven.json index c01c15f36..daefda47f 100644 --- a/domains/steven.json +++ b/domains/steven.json @@ -6,6 +6,6 @@ "email": "steve.r.frohlich@gmail.com" }, "record": { - "CNAME": "StevenRonnyFrohlich.github.io" + "CNAME": "stevenronnyfrohlich.github.io" } } diff --git a/domains/stevesajeev.json b/domains/stevesajeev.json new file mode 100644 index 000000000..46d06aba0 --- /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" + }, + "record": { + "CNAME": "SteveSajeev.github.io" + } +} diff --git a/domains/sticknologic.json b/domains/sticknologic.json new file mode 100644 index 000000000..b940803a0 --- /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" + }, + "record": { + "NS": ["ns1.heliohost.org", "ns2.heliohost.org"] + } +} diff --git a/domains/stkong.json b/domains/stkong.json new file mode 100644 index 000000000..8727f9102 --- /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" + }, + "record": { + "CNAME": "congltk1234.github.io" + } +} diff --git a/domains/store.json b/domains/store.json deleted file mode 100644 index e2c8dec17..000000000 --- a/domains/store.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/studio.json b/domains/studio.json new file mode 100644 index 000000000..68c44d3ee --- /dev/null +++ b/domains/studio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "record": { + "URL": "https://juststudio.is-a.dev/" + } +} diff --git a/domains/sua.json b/domains/sua.json index 5f5084bdd..2b34ee5b3 100644 --- a/domains/sua.json +++ b/domains/sua.json @@ -4,6 +4,6 @@ "email": "SamiaIslamSua@gmail.com" }, "record": { - "CNAME": "SamiaIslamSua.github.io" + "CNAME": "samiaislamsua.github.io" } } diff --git a/domains/subhan.json b/domains/subhan.json new file mode 100644 index 000000000..c77c29a22 --- /dev/null +++ b/domains/subhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MS1034", + "email": "muhammadsubhan5701@gmail.com" + }, + "record": { + "CNAME": "muhammad-subhan.vercel.app" + } +} \ No newline at end of file diff --git a/domains/suctrebinhthuan.json b/domains/suctrebinhthuan.json new file mode 100644 index 000000000..75308061f --- /dev/null +++ b/domains/suctrebinhthuan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "suctrebth", + "email": "web.insuctre@gmail.com" + }, + "record": { + "CNAME": "suctrebinhthuan.com" + } +} diff --git a/domains/sujal.json b/domains/sujal.json new file mode 100644 index 000000000..86baa237b --- /dev/null +++ b/domains/sujal.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/SuzalShrestha/register", + "owner": { + "username": "suzalshrestha", + "email": "sujalshresthawork@gmail.com" + }, + "record": { + "CNAME": "sujalshrestha.vercel.app" + } +} diff --git a/domains/sukhdevr898.json b/domains/sukhdevr898.json new file mode 100644 index 000000000..01e9a705e --- /dev/null +++ b/domains/sukhdevr898.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SUKHDEVR898", + "email": "sukhdevr898@gmail.com" + }, + "record": { + "CNAME": "ai898.free.nf" + } +} diff --git a/domains/suki.json b/domains/suki.json index 1669d49a0..e6b1e0f73 100644 --- a/domains/suki.json +++ b/domains/suki.json @@ -4,6 +4,7 @@ "email": "sukimayoo@outlook.com" }, "record": { - "CNAME": "portfolio-b8o.pages.dev" - } + "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..d8a57efe9 --- /dev/null +++ b/domains/sulabh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sulabh-npl", + "email": "sulabh.work19@gmail.com" + }, + "record": { + "CNAME": "sulabh.info.np" + } +} diff --git a/domains/sulaiman.json b/domains/sulaiman.json new file mode 100644 index 000000000..70e23ce44 --- /dev/null +++ b/domains/sulaiman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "natsu90", + "email": "github@s.ss.my" + }, + "record": { + "URL": "https://sulai.mn" + } +} diff --git a/domains/summon-the-coder.json b/domains/summon-the-coder.json new file mode 100644 index 000000000..d80088a6d --- /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" + }, + "record": { + "CNAME": "banana6boom.github.io" + } +} diff --git a/domains/sun.json b/domains/sun.json new file mode 100644 index 000000000..fecbc1755 --- /dev/null +++ b/domains/sun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sxn4y", + "discord": "5unn7n" + }, + "record": { + "CNAME": "supern0va.vercel.app" + } +} diff --git a/domains/sunny.json b/domains/sunny.json index e3cae088b..0d18a9400 100644 --- a/domains/sunny.json +++ b/domains/sunny.json @@ -4,6 +4,6 @@ "email": "sunnygandhwani027@gmail.com" }, "record": { - "CNAME": "Sunny-unik.github.io" + "CNAME": "sunny-unik.github.io" } } diff --git a/domains/sunnydsouza.json b/domains/sunnydsouza.json new file mode 100644 index 000000000..1bedf54c2 --- /dev/null +++ b/domains/sunnydsouza.json @@ -0,0 +1,10 @@ +{ + "description": "Sunny Dsouza's GitHub page", + "owner": { + "username": "sunnydsouza", + "email": "dsouzasunny1436@gmail.com" + }, + "record": { + "URL": "https://github.com/sunnydsouza" + } +} diff --git a/domains/sunnyychi.json b/domains/sunnyychi.json new file mode 100644 index 000000000..a313e75b1 --- /dev/null +++ b/domains/sunnyychi.json @@ -0,0 +1,11 @@ +{ + "description": "A personal portfolio website", + "repo": "https://github.com/sunnyychi/Website", + "owner": { + "username": "sunnyychi", + "email": "sunnyychi@lona-development.org" + }, + "record": { + "CNAME": "sunnyychi.github.io" + } +} diff --git a/domains/sunzizhuo.json b/domains/sunzizhuo.json new file mode 100644 index 000000000..b05bd5d7e --- /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" + }, + "record": { + "CNAME": "unidentifiedx.github.io" + } +} diff --git a/domains/supers0n1k.json b/domains/supers0n1k.json new file mode 100644 index 000000000..ffdf6933b --- /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" + }, + "record": { + "CNAME": "supers0n1k.github.io" + } +} diff --git a/domains/supperfreddo.json b/domains/supperfreddo.json new file mode 100644 index 000000000..121f6e599 --- /dev/null +++ b/domains/supperfreddo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "supperfreddo", + "email": "supperfreddoio@gmail.com", + "discord": "supperfreddo" + }, + "record": { + "CNAME": "supperfreddo.vercel.app" + } +} diff --git a/domains/suraez.json b/domains/suraez.json new file mode 100644 index 000000000..5e9c40d9a --- /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" + }, + "record": { + "URL": "https://www.sko.com.np/" + } +} diff --git a/domains/suryababu.json b/domains/suryababu.json new file mode 100644 index 000000000..51e6e007d --- /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" + }, + "record": { + "CNAME": "suryababus.github.io" + } +} diff --git a/domains/sushankghimire.json b/domains/sushankghimire.json new file mode 100644 index 000000000..9f6416ee8 --- /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" + }, + "record": { + "URL": "https://www.ghimiresushank.com.np" + } +} diff --git a/domains/swami.json b/domains/swami.json new file mode 100644 index 000000000..459fb9535 --- /dev/null +++ b/domains/swami.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/aadltya/portfolio-website", + "owner": { + "username": "aadltya", + "email": "adityaedu22@gmail.com" + }, + "record": { + "CNAME": "adityasworld.vercel.app" + } +} diff --git a/domains/swapnil.json b/domains/swapnil.json index f23fddfd6..692bfc0ce 100644 --- a/domains/swapnil.json +++ b/domains/swapnil.json @@ -6,6 +6,6 @@ "email": "swapnilchand51@gmail.com" }, "record": { - "CNAME": "SwapnilChand.github.io" + "CNAME": "swapnilchand.github.io" } } diff --git a/domains/sxi.json b/domains/sxi.json index 28ea33eab..c87b4f43a 100644 --- a/domains/sxi.json +++ b/domains/sxi.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Sxinar", - "email": "oshidev@proton.me", - "discord": "1247896918957490198" - }, - "record": { - "CNAME": "sxi.digitalpress.blog" - } + "owner": { + "username": "Sxinar", + "email": "oshidev@proton.me", + "discord": "1247896918957490198" + }, + "record": { + "URL": "https://sxi.com.tr" + } } diff --git a/domains/sylphin3107.json b/domains/sylphin3107.json new file mode 100644 index 000000000..673d0cd5d --- /dev/null +++ b/domains/sylphin3107.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sylphin3107", + "email": "tqvcontacts@gmail.com" + }, + "record": { + "URL": "https://sylphin3107.uwu.ai/" + } +} diff --git a/domains/synthara.json b/domains/synthara.json new file mode 100644 index 000000000..0c8c720b9 --- /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" + }, + "record": { + "CNAME": "synthara.vercel.app" + } +} diff --git a/domains/vps.quincetart10.json b/domains/szn20221014._domainkey.104.json similarity index 59% rename from domains/vps.quincetart10.json rename to domains/szn20221014._domainkey.104.json index e891351c6..c6292fdf7 100644 --- a/domains/vps.quincetart10.json +++ b/domains/szn20221014._domainkey.104.json @@ -1,10 +1,10 @@ { - "description": "VPS", + "description": "DKIM", "owner": { "username": "QuinceTart10", "discord": "862644161156218891" }, "record": { - "A": ["64.226.124.11"] + "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..c6292fdf7 --- /dev/null +++ b/domains/szn20221014._domainkey.quincetart10.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "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..c6292fdf7 --- /dev/null +++ b/domains/szn20221014._domainkey.rt10.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "CNAME": "szn20221014._domainkey.seznam.cz" + } +} diff --git a/domains/t3vada.json b/domains/t3vada.json new file mode 100644 index 000000000..e64cec5be --- /dev/null +++ b/domains/t3vada.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "wythh24" + }, + "record": { + "CNAME": "devada.vercel.app" + } +} diff --git a/domains/tahseen.json b/domains/tahseen.json index 44c4dfc42..7d65647be 100644 --- a/domains/tahseen.json +++ b/domains/tahseen.json @@ -4,8 +4,6 @@ "email": "itxtahseen@gmail.com" }, "record": { - "A": [ - "75.2.60.5" - ] + "A": ["75.2.60.5"] } } diff --git a/domains/tainguyen.json b/domains/tainguyen.json new file mode 100644 index 000000000..1819fd70e --- /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" + }, + "record": { + "CNAME": "taitai2107.github.io" + } +} diff --git a/domains/tak.json b/domains/tak.json new file mode 100644 index 000000000..c456bb828 --- /dev/null +++ b/domains/tak.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tak-gamingYT", + "email": "tak@tak.io.vn" + }, + "record": { + "A": ["103.221.223.52"] + }, + "proxied": true +} diff --git a/domains/tallerthanshort.json b/domains/tallerthanshort.json index c97bfac10..76b62edfb 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": { - "CNAME": "TallerThanShort.github.io" + "CNAME": "tallerthanshort.github.io" } } diff --git a/domains/tan.json b/domains/tan.json new file mode 100644 index 000000000..85ecae11e --- /dev/null +++ b/domains/tan.json @@ -0,0 +1,10 @@ +{ + "description": "tan.is-a.dev", + "owner": { + "username": "cuno92", + "email": "hoangvannhattan@gmail.com" + }, + "record": { + "CNAME": "white-hill-030c00b00.4.azurestaticapps.net" + } +} diff --git a/domains/tanbaycu.json b/domains/tanbaycu.json new file mode 100644 index 000000000..892edd731 --- /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" + }, + "record": { + "CNAME": "tanbaycu.vercel.app" + }, + "proxied": true +} diff --git a/domains/tandevhtml.json b/domains/tandevhtml.json new file mode 100644 index 000000000..ab2025905 --- /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" + }, + "record": { + "CNAME": "aiview.vercel.app" + }, + "proxied": true +} diff --git a/domains/tanish-chahal.json b/domains/tanish-chahal.json new file mode 100644 index 000000000..af18388a1 --- /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" + }, + "record": { + "URL": "https://tanishchahal.netlify.app" + } +} diff --git a/domains/tanish-poddar.json b/domains/tanish-poddar.json new file mode 100644 index 000000000..ea9a542fd --- /dev/null +++ b/domains/tanish-poddar.json @@ -0,0 +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" + } +} diff --git a/domains/tanishq.json b/domains/tanishq.json new file mode 100644 index 000000000..496cf9902 --- /dev/null +++ b/domains/tanishq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanishqmanuja", + "email": "tanishqmanuja@gmail.com" + }, + "record": { + "CNAME": "tqman.pages.dev" + } +} diff --git a/domains/tanos.json b/domains/tanos.json index 2cb30df04..8fbfaeb3c 100644 --- a/domains/tanos.json +++ b/domains/tanos.json @@ -6,6 +6,6 @@ "email": "opmijloly@gmail.com" }, "record": { - "CNAME": "TacoGit.github.io" + "CNAME": "tacogit.github.io" } } diff --git a/domains/tanquang.json b/domains/tanquang.json new file mode 100644 index 000000000..a7d609d87 --- /dev/null +++ b/domains/tanquang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "quangnlt", + "email": "tanquang2k3@gmail.com" + }, + "record": { + "CNAME": "quangnlt.github.io" + } +} diff --git a/domains/tanuj-nagpal.json b/domains/tanuj-nagpal.json new file mode 100644 index 000000000..be8d09b2d --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/tanveer.json b/domains/tanveer.json new file mode 100644 index 000000000..8ee2b9c5e --- /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" + }, + "record": { + "CNAME": "portfolio-tanveer.netlify.app" + } +} diff --git a/domains/mail.whine.json b/domains/tanvir.json similarity index 52% rename from domains/mail.whine.json rename to domains/tanvir.json index c90d733db..32385ec92 100644 --- a/domains/mail.whine.json +++ b/domains/tanvir.json @@ -1,10 +1,11 @@ { + "description": "Tanvir's personal website", "owner": { - "username": "whinee", - "twitter": "whi_nyaan" + "username": "tnv1r", + "email": "dev@tanvir.io" }, - "description": "whi_ne's mail subdomain", "record": { + "A": ["76.76.21.21"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/tanviyeole.json b/domains/tanviyeole.json new file mode 100644 index 000000000..13d1d4e7d --- /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" + }, + "record": { + "CNAME": "portfolio-nu-eight-80.vercel.app" + } +} \ No newline at end of file diff --git a/domains/taquanminhlong.json b/domains/taquanminhlong.json new file mode 100644 index 000000000..82e5712c8 --- /dev/null +++ b/domains/taquanminhlong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "taquanminhlong", + "email": "taquanminhlong@gmail.com" + }, + "record": { + "URL": "https://tqml.vercel.app/" + } +} diff --git a/domains/tas33n.json b/domains/tas33n.json index 6419580a0..7f0cd7299 100644 --- a/domains/tas33n.json +++ b/domains/tas33n.json @@ -3,8 +3,7 @@ "repo": "https://github.com/tas33n/tas33n.github.io", "owner": { "username": "tas33n", - "email": "tasu.legend@gmail.com", - "twitter": "" + "email": "tasu.legend@gmail.com" }, "record": { "CNAME": "tas33n.pages.dev" diff --git a/domains/tasawar-hussain.json b/domains/tasawar-hussain.json new file mode 100644 index 000000000..a1d52dbbf --- /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" + }, + "record": { + "CNAME": "tasawar-hussain.github.io" + } +} diff --git a/domains/tassio.json b/domains/tassio.json new file mode 100644 index 000000000..00b2d4ba0 --- /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" + }, + "record": { + "CNAME": "tassiovirginio.github.io" + } +} diff --git a/domains/tawhid.json b/domains/tawhid.json index 4a7ab0430..893e43d52 100644 --- a/domains/tawhid.json +++ b/domains/tawhid.json @@ -1,9 +1,11 @@ { - "owner": { - "username": "Dumbo-programmer", - "email": "rony.120285d2k@gmail.com" - }, - "record": { - "CNAME": "dumbo-programmer.github.io" - } + "description": "Personal hobby site", + "repo": "https://github.com/Dumbo-programmer/Dumbo-programmer.github.io", + "owner": { + "username": "Dumbo-programmer", + "email": "rony.120285d2k@gmail.com" + }, + "record": { + "A": ["52.74.232.59"] + } } diff --git a/domains/tawhidislam.json b/domains/tawhidislam.json new file mode 100644 index 000000000..ebcd697f3 --- /dev/null +++ b/domains/tawhidislam.json @@ -0,0 +1,10 @@ +{ + "description": "For my personal portfolio website", + "owner": { + "username": "tawhid404Err", + "email": "xcode.dev@yahoo.com" + }, + "record": { + "A": ["103.62.149.9"] + } +} diff --git a/domains/tawiah.json b/domains/tawiah.json new file mode 100644 index 000000000..7582148ea --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/tcxone.json b/domains/tcxone.json deleted file mode 100644 index b4adeb0d9..000000000 --- a/domains/tcxone.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal homepage", - "repo": "https://github.com/tcxone/tcxone.github.io", - "owner": { - "username": "tcxone", - "email": "tcxone@outlook.com", - "twitter": "tcxone" - }, - "record": { - "CNAME": "tcxone.github.io" - } -} diff --git a/domains/teamfive.sono.json b/domains/teamfive.sono.json deleted file mode 100644 index 0cafc4127..000000000 --- a/domains/teamfive.sono.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "getSono", - "email": "julianwolf2013@outlook.de", - "discord": "1222250424309121145" - }, - "record": { - "CNAME": "getsono.github.io" - } -} diff --git a/domains/techadv.json b/domains/techadv.json new file mode 100644 index 000000000..8ff8fe39f --- /dev/null +++ b/domains/techadv.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/termonoid.json b/domains/termonoid.json index aa459c481..f1d6a4918 100644 --- a/domains/termonoid.json +++ b/domains/termonoid.json @@ -1,6 +1,5 @@ { "description": "Domain for personal server", - "repo": "https://github.com/Termonoid", "owner": { "username": "Termonoid", "email": "termonoid@cumallover.me", diff --git a/domains/terry.json b/domains/terry.json new file mode 100644 index 000000000..e6de06fe4 --- /dev/null +++ b/domains/terry.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realyoterry", + "email": "theterrykim@gmail.com" + }, + "record": { + "CNAME": "realyoterry.vercel.app" + } +} diff --git a/domains/test.cutedog5695.json b/domains/test.cutedog5695.json index 3fb45aabe..a7f05a227 100644 --- a/domains/test.cutedog5695.json +++ b/domains/test.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "CNAME": "glistening-faloodeh-84f4b1.netlify.app" diff --git a/domains/texh.json b/domains/texh.json index b41ddb98b..b1ea1da39 100644 --- a/domains/texh.json +++ b/domains/texh.json @@ -4,6 +4,6 @@ "email": "techtonic709@gmail.com" }, "record": { - "MX": ["mx1.improvmx.com"] + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } } diff --git a/domains/tf.json b/domains/tf.json index c3e6c7971..2e50f73c8 100644 --- a/domains/tf.json +++ b/domains/tf.json @@ -1,7 +1,6 @@ { "owner": { - "username": "WaspZix", - "email": "160319648+WaspZix@users.noreply.github.com" + "username": "WaspZix" }, "record": { "CNAME": "thefirst.glitch.me" diff --git a/domains/thaihung.json b/domains/thaihung.json index f9602ed3f..043acd391 100644 --- a/domains/thaihung.json +++ b/domains/thaihung.json @@ -11,9 +11,7 @@ "185.199.110.153", "185.199.111.153" ], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/thamizh.json b/domains/thamizh.json index e4d2b7a94..cc46ef255 100644 --- a/domains/thamizh.json +++ b/domains/thamizh.json @@ -7,6 +7,6 @@ "twitter": "k_thamizhventhu" }, "record": { - "CNAME": "ThisisThamizh.github.io" + "CNAME": "thisisthamizh.github.io" } } diff --git a/domains/thanh-sang.json b/domains/thanh-sang.json new file mode 100644 index 000000000..5254349b3 --- /dev/null +++ b/domains/thanh-sang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sanG-github", + "email": "sanghuynh20000@gmail.com" + }, + "record": { + "CNAME": "portfolio-logan.netlify.app" + } +} diff --git a/domains/thavirak.json b/domains/thavirak.json new file mode 100644 index 000000000..2ae929ee3 --- /dev/null +++ b/domains/thavirak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thavirak", + "email": "thavirak@gmail.com" + }, + "record": { + "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/thecommandcat.json b/domains/thecommandcat.json new file mode 100644 index 000000000..56e39014d --- /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" + }, + "record": { + "CNAME": "thecommandcat.github.io" + } +} diff --git a/domains/thedt.json b/domains/thedt.json index ca92d70ce..af18ae2b3 100644 --- a/domains/thedt.json +++ b/domains/thedt.json @@ -4,6 +4,6 @@ "email": "duongtuan30306@gmail.com" }, "record": { - "CNAME": "thedt-portfolio.pages.dev" + "CNAME": "thedthomepage.pages.dev" } } diff --git a/domains/thegoofy-guy.json b/domains/thegoofy-guy.json new file mode 100644 index 000000000..19c70cf17 --- /dev/null +++ b/domains/thegoofy-guy.json @@ -0,0 +1,10 @@ +{ + "description": "My personal portfolio website", + "owner": { + "username": "thegoofy-dev", + "email": "pankajtyagi1601@gmail.com" + }, + "record": { + "CNAME": "pankajtyagi-portfolio.vercel.app" + } +} diff --git a/domains/thehackerdude1083.json b/domains/thehackerdude1083.json index 965bd6e5d..02b75fbd7 100644 --- a/domains/thehackerdude1083.json +++ b/domains/thehackerdude1083.json @@ -6,6 +6,6 @@ "email": "shaheeransari57@gmail.com" }, "record": { - "CNAME": "TheHackerDude1083.github.io" + "CNAME": "thehackerdude1083.github.io" } } diff --git a/domains/therookiecoder.json b/domains/therookiecoder.json index 3dec24550..be47f4fa2 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" + "CNAME": "therookiecoder.github.io" } } diff --git a/domains/theveryheavy.json b/domains/theveryheavy.json new file mode 100644 index 000000000..dc792c71b --- /dev/null +++ b/domains/theveryheavy.json @@ -0,0 +1,21 @@ +{ + "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" + ] + } +} diff --git a/domains/thiagotukozaki.json b/domains/thiagotukozaki.json new file mode 100644 index 000000000..8bbca53c8 --- /dev/null +++ b/domains/thiagotukozaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TukozakiT", + "email": "contato.thiagoeiji@gmail.com" + }, + "record": { + "CNAME": "thiagotukozaki.vercel.app" + } +} diff --git a/domains/thien.json b/domains/thien.json new file mode 100644 index 000000000..2ddf8b840 --- /dev/null +++ b/domains/thien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thiennguyen93", + "email": "hi@thiennguyen.dev" + }, + "record": { + "CNAME": "thiennguyen93.github.io" + } +} diff --git a/domains/thinhnguyen.json b/domains/thinhnguyen.json new file mode 100644 index 000000000..4023b9961 --- /dev/null +++ b/domains/thinhnguyen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thinhdnn", + "email": "nguyenvanthinh.dnn@gmail.com" + }, + "record": { + "A": ["152.69.196.244"] + } +} diff --git a/domains/this-guy.json b/domains/this-guy.json index a270af88d..935395343 100644 --- a/domains/this-guy.json +++ b/domains/this-guy.json @@ -1,6 +1,5 @@ { "description": "This Guy is a Dev.", - "owner": { "username": "ochotadariusz", "email": "ochota.dariusz@gmail.com" diff --git a/domains/this.json b/domains/this.json deleted file mode 100644 index 436e7afb0..000000000 --- a/domains/this.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "is-a.dev subdomain for my portfolio", - "repo": "https://github.com/vauth/vauth.github.io", - "owner": { - "username": "vauth", - "email": "ivuxey@gmail.com" - }, - "record": { - "CNAME": "vauth.github.io" - } -} diff --git a/domains/thomasc.json b/domains/thomasc.json deleted file mode 100644 index 93fdb9fbc..000000000 --- a/domains/thomasc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hopefully Thomas Croft's is-a.dev site", - "repo": "https://github.com/thomascf/thomascf.github.io", - "owner": { - "username": "thomascf", - "email": "thomas.croft@pm.me" - }, - "record": { - "CNAME": "thomascf.github.io" - } -} diff --git a/domains/thorito.json b/domains/thorito.json new file mode 100644 index 000000000..f9b31b22d --- /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" + }, + "record": { + "CNAME": "thorito.github.io" + } +} diff --git a/domains/thuc.json b/domains/thuc.json new file mode 100644 index 000000000..5c10b4b73 --- /dev/null +++ b/domains/thuc.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "thucngyyen" + }, + "record": { + "CNAME": "thucngyyen.github.io" + } +} diff --git a/domains/ti3r.json b/domains/ti3r.json new file mode 100644 index 000000000..6ec571e42 --- /dev/null +++ b/domains/ti3r.json @@ -0,0 +1,10 @@ +{ + "description": "Ti3r's Dev Portfolio", + "owner": { + "username": "ti3r", + "email": "ti3r.bubblenet@gmail.com" + }, + "record": { + "CNAME": "ti3r.github.io" + } +} diff --git a/domains/tibebe.json b/domains/tibebe.json deleted file mode 100644 index 87a1843e2..000000000 --- a/domains/tibebe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tibebe is a dev", - "repo": "https://github.com/TibebeJS/tibebejs.github.io", - "owner": { - "username": "TibebeJs", - "email": "tibebes.js@gmail.com" - }, - "record": { - "CNAME": "tibebejs.github.io" - } -} diff --git a/domains/tien.json b/domains/tien.json index 995e7055d..30d5db640 100644 --- a/domains/tien.json +++ b/domains/tien.json @@ -6,6 +6,6 @@ "email": "tientonybest2006@gmail.com" }, "record": { - "CNAME": "TonyN678.github.io" + "CNAME": "tonyn678.github.io" } } diff --git a/domains/miti.json b/domains/tiennm99.json similarity index 76% rename from domains/miti.json rename to domains/tiennm99.json index f09c62708..5efbcd144 100644 --- a/domains/miti.json +++ b/domains/tiennm99.json @@ -4,6 +4,6 @@ "email": "minhtienit99@gmail.com" }, "record": { - "CNAME": "miti.eu.org" + "CNAME": "miti99.pages.dev" } } diff --git a/domains/tiep-dv.json b/domains/tiep-dv.json new file mode 100644 index 000000000..06c89907c --- /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" + }, + "record": { + "URL": "https://github.com/tiep-dv" + } +} diff --git a/domains/tilak.json b/domains/tilak.json index f3b8ca7f6..fd0ed1d11 100644 --- a/domains/tilak.json +++ b/domains/tilak.json @@ -1,11 +1,9 @@ { - "description": "Tilak's personal developer website", - "repo": "https://github.com/Perry-xD/Perry-xD.github.io", "owner": { - "username": "Perry-xD", - "email": "heyahelloji@gmail.com" + "username": "YourTilak", + "email": "rj05tilak@gmail.com" }, "record": { - "CNAME": "Perry-xD.github.io" + "CNAME": "yourtilak.github.io" } } diff --git a/domains/tim-vdb.json b/domains/tim-vdb.json new file mode 100644 index 000000000..2fc8d8e7f --- /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" + }, + "record": { + "CNAME": "tim-vdb.github.io" + } +} diff --git a/domains/timi2506.json b/domains/timi2506.json new file mode 100644 index 000000000..bbd8ef720 --- /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" + }, + "record": { + "CNAME": "timi2506.github.io" + } +} diff --git a/domains/timothy.json b/domains/timothy.json new file mode 100644 index 000000000..acf3c5871 --- /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" + }, + "record": { + "CNAME": "tabrownies.github.io" + } +} diff --git a/domains/tio.json b/domains/tio.json new file mode 100644 index 000000000..39dc91e55 --- /dev/null +++ b/domains/tio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hostinger-bot", + "email": "hostingerbalance@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/tlwbr.json b/domains/tlwbr.json new file mode 100644 index 000000000..2ad4303ca --- /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" + }, + "record": { + "CNAME": "tlwbr.netlify.app" + } +} diff --git a/domains/toantran.json b/domains/toantran.json new file mode 100644 index 000000000..89ddd5725 --- /dev/null +++ b/domains/toantran.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/toantranct94/toantran.github.io", + "owner": { + "username": "toantranct94", + "email": "toantranct94@gmail.com" + }, + "record": { + "CNAME": "toantran.github.io" + } +} diff --git a/domains/toastedstuff.json b/domains/toastedstuff.json new file mode 100644 index 000000000..279bc8f6f --- /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" + }, + "record": { + "CNAME": "bpr1ch3.github.io" + } +} diff --git a/domains/toasty.json b/domains/toasty.json deleted file mode 100644 index 0e06d33b5..000000000 --- a/domains/toasty.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "toastyyyxd", - "email": "asaeasaeasae.x10@gmail.com", - "discord": "577480703302959104" - }, - "record": { - "CNAME": "toasty.pages.dev" - } -} diff --git a/domains/tobi.json b/domains/tobi.json new file mode 100644 index 000000000..b8f1d131f --- /dev/null +++ b/domains/tobi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tobikli", + "email": "tobikli@pm.me" + }, + "record": { + "URL": "https://tobia.sh" + } +} diff --git a/domains/tobias.json b/domains/tobias.json new file mode 100644 index 000000000..bd43dbc9d --- /dev/null +++ b/domains/tobias.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smarterToby", + "discord": "724712767080235049" + }, + "record": { + "CNAME": "tobiasreuss.vercel.app" + } +} diff --git a/domains/todo.alvin.json b/domains/todo.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/todo.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/tofu.json b/domains/tofu.json new file mode 100644 index 000000000..bc813bb58 --- /dev/null +++ b/domains/tofu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yychen1201", + "discord": "1009412927754866728", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cZujVSVhansXZskEDTwKI9pcw2Leo2FuKUY12bFLgBv8degT9VaRgOSn7Z4evuLzwINGhnhaweh-Xgo8pUWGOqrO_bDMRyxcIItpx_mGVTMaSZy5SS_aUqGeWbOpsq1oKDGDBumKjJd82m-KXJFq9VEybWOp2B5CVq_dzFC9tzJu-Uu_-0uuC1qRhPeQJHBl1FIgPlyo_bmFoJ_Ow7p7anUonv3zTkqBwPXSyde_BBMzXYU437yharMqo6kZK7N3CVFHoXIg_4aqipW2x-KwGllezQZI8ig3ZvQfLOXDuAwxDRdlwOHQnGlLpSZSZTfVCToifGo--0X6Ml0YHYry9A.Ch4kkhWBAEOJYbdFZyOxZA.Md97JISmrKUauMgTU3ounghyfbxUYW0-M-dedQA7IMlEUE0L08SaYAxh6z88b-7GtuwpszkbxQM9geUOvIl1H3bXfOJqaDFIRlBDgl_Vp4Q.djUuJgDKO_tQYYX_Sa0vLg" + }, + "record": { + "CNAME": "yychen1201.github.io" + } +} diff --git a/domains/tom.json b/domains/tom.json index f97d865bb..b7cbf3ae3 100644 --- a/domains/tom.json +++ b/domains/tom.json @@ -3,7 +3,6 @@ "username": "tommitchelmore", "email": "tommitchelmore@outlook.com" }, - "repo": "https://github.com/tommitchelmore", "record": { "URL": "https://github.com/tommitchelmore" } diff --git a/domains/tomascornelles.json b/domains/tomascornelles.json new file mode 100644 index 000000000..06934fcd9 --- /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" + }, + "record": { + "CNAME": "tomascornelles.github.io" + } +} diff --git a/domains/tomek.json b/domains/tomek.json new file mode 100644 index 000000000..defbebbd1 --- /dev/null +++ b/domains/tomek.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "tomek-i" + }, + "record": { + "CNAME": "tomek-i.github.io" + } +} diff --git a/domains/tong09.json b/domains/tong09.json new file mode 100644 index 000000000..dd9bcb161 --- /dev/null +++ b/domains/tong09.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tong09", + "email": "mdrochana93@gmail.com" + }, + "record": { + "CNAME": "383zyrozcr38d.ahost.marscode.site" + } +} diff --git a/domains/tortilla.json b/domains/tortilla.json new file mode 100644 index 000000000..cbec180a0 --- /dev/null +++ b/domains/tortilla.json @@ -0,0 +1,11 @@ +{ + "description": "tortilla.is-a.dev", + "owner": { + "username": "Colbster937", + "email": "colbster937@colbster937.dev" + }, + "record": { + "CNAME": "dns.tortillagames.org" + }, + "proxied": true +} diff --git a/domains/toster.json b/domains/toster.json index c8b4f3c38..5bb5b5341 100644 --- a/domains/toster.json +++ b/domains/toster.json @@ -4,6 +4,6 @@ "email": "matiz.rafal@gmail.com" }, "record": { - "CNAME": "Rafau04.github.io" + "CNAME": "rafau04.github.io" } } diff --git a/domains/trademark.json b/domains/trademark.json new file mode 100644 index 000000000..59d91b0bb --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/tranduytoan.json b/domains/tranduytoan.json new file mode 100644 index 000000000..9c327da91 --- /dev/null +++ b/domains/tranduytoan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tranduytoan", + "email": "toandeptraibodoiqua.10a4@gmail.com" + }, + "record": { + "CNAME": "tranduytoan.github.io" + } +} diff --git a/domains/tranminhtan.json b/domains/tranminhtan.json new file mode 100644 index 000000000..f0ffe91e4 --- /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" + }, + "record": { + "CNAME": "trituenhantao.vercel.app" + }, + "proxied": true +} diff --git a/domains/transfer.creeperita104.json b/domains/transfer.creeperita104.json deleted file mode 100644 index 66df526f1..000000000 --- a/domains/transfer.creeperita104.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "creeperita09", - "email": "creeperita.09@gmail.com" - }, - "record": { - "CNAME": "icahomesvr2022.freeddns.org" - } -} diff --git a/domains/tristan.json b/domains/tristan.json index 44416c51b..ae74a1e92 100644 --- a/domains/tristan.json +++ b/domains/tristan.json @@ -1,6 +1,5 @@ { "description": "Tristans personal Website", - "repo": "https://github.com/holymarcell", "owner": { "username": "holymarcell", "email": "is-a.dev@holy-mail.de" diff --git a/domains/trix.json b/domains/trix.json index 94dff565e..a4724b7ea 100644 --- a/domains/trix.json +++ b/domains/trix.json @@ -4,6 +4,12 @@ "email": "admin@trixsly.xyz" }, "record": { - "CNAME": "superuser-l.github.io" + "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/trucpham.json b/domains/trucpham.json new file mode 100644 index 000000000..af42286f9 --- /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" + }, + "record": { + "CNAME": "trucpham.pages.dev" + }, + "proxied": true +} diff --git a/domains/trungz.json b/domains/trungz.json new file mode 100644 index 000000000..911383c15 --- /dev/null +++ b/domains/trungz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lehuutrung1412", + "email": "me@lehuutrung.dev" + }, + "record": { + "URL": "https://lehuutrung.dev" + } +} diff --git a/domains/truongvanthong.json b/domains/truongvanthong.json new file mode 100644 index 000000000..835cd40cc --- /dev/null +++ b/domains/truongvanthong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "truongvanthong", + "email": "thongvanpro2002@gmail.com" + }, + "record": { + "CNAME": "truongvanthong.github.io" + } +} diff --git a/domains/tsania.json b/domains/tsania.json new file mode 100644 index 000000000..bfb6df136 --- /dev/null +++ b/domains/tsania.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tsnzzhr", + "email": "tsnzzhr102@gmail.com" + }, + "record": { + "CNAME": "tsanias.vercel.app" + } +} diff --git a/domains/tstark.json b/domains/tstark.json new file mode 100644 index 000000000..cce907b7a --- /dev/null +++ b/domains/tstark.json @@ -0,0 +1,11 @@ +{ + "subdomain": "tstark", + "owner": { + "username": "t-starks", + "email": "sr.shelby.lp@gmail.com" + }, + "record": { + "CNAME": "t-stark.netlify.app" + }, + "proxied": false +} diff --git a/domains/tsu.json b/domains/tsu.json new file mode 100644 index 000000000..e020b0875 --- /dev/null +++ b/domains/tsu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dot-tsu", + "email": "lucanahtsu@gmail.com" + }, + "record": { + "CNAME": "dot-tsu.github.io" + } +} diff --git a/domains/ttkt.json b/domains/ttkt.json new file mode 100644 index 000000000..7dea7e8b7 --- /dev/null +++ b/domains/ttkt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/tuankiet.json b/domains/tuankiet.json new file mode 100644 index 000000000..48df29e5e --- /dev/null +++ b/domains/tuankiet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harrytien107", + "email": "sigmatien@duck.com" + }, + "record": { + "CNAME": "harrytien107.github.io" + } +} diff --git a/domains/tuantestdashboard.json b/domains/tuantestdashboard.json new file mode 100644 index 000000000..c3d130000 --- /dev/null +++ b/domains/tuantestdashboard.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "latuan2710", + "email": "tuan.la.cit19@eiu.edu.vn" + }, + "record": { + "CNAME": "admin-dashboard-latuan.vercel.app" + } +} diff --git a/domains/tuanthu1.json b/domains/tuanthu1.json new file mode 100644 index 000000000..e17321f16 --- /dev/null +++ b/domains/tuanthu1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tuanthu1", + "email": "hoangtuanthu981@gmail.com" + }, + "record": { + "CNAME": "tuanthu1.github.io" + } +} diff --git a/domains/tulasidhar.json b/domains/tulasidhar.json new file mode 100644 index 000000000..323dd95dc --- /dev/null +++ b/domains/tulasidhar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tulasidharm", + "email": "tulasidharmulakaluri@gmail.com" + }, + "record": { + "CNAME": "tulasidharm.github.io" + } +} diff --git a/domains/tullio.json b/domains/tullio.json new file mode 100644 index 000000000..0abbe2cfe --- /dev/null +++ b/domains/tullio.json @@ -0,0 +1,10 @@ +{ + "description": "Tullio Sebastiani's Home Page", + "owner": { + "username": "tsebastiani", + "email": "github.sensitize723@passinbox.com" + }, + "record": { + "CNAME": "tsebastiani.github.io" + } +} diff --git a/domains/tungbt.json b/domains/tungbt.json new file mode 100644 index 000000000..c4a66578f --- /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" + }, + "record": { + "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/tunnel.vulcanocraft.json b/domains/tunnel.vulcanocraft.json index 839f03fd4..fbb3269d4 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" }, - "record": { "A": ["147.185.221.23"] }, diff --git a/domains/tunzankies.json b/domains/tunzankies.json new file mode 100644 index 000000000..ca7973568 --- /dev/null +++ b/domains/tunzankies.json @@ -0,0 +1,10 @@ +{ + "owner": { + "description": "tunzankies.is-a.dev", + "username": "Tuan-Dang05", + "discord": "703136026595426305" + }, + "record": { + "CNAME": "portfolio-3-d-nu.vercel.app" + } +} diff --git a/domains/tweets.clyron.json b/domains/tweets.clyron.json new file mode 100644 index 000000000..284409427 --- /dev/null +++ b/domains/tweets.clyron.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website of Clyron", + "repo": "https://github.com/theclyron/theclyron.github.io", + "owner": { + "username": "theclyron", + "email": "onenonlyclyron@gmail.com" + }, + "record": { + "CNAME": "theclyron.github.io" + } +} diff --git a/domains/twistedtransistor.json b/domains/twistedtransistor.json new file mode 100644 index 000000000..2ce8dc325 --- /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" + }, + "record": { + "CNAME": "mikeisfree.github.io" + } +} diff --git a/domains/tykea.json b/domains/tykea.json new file mode 100644 index 000000000..02f73924c --- /dev/null +++ b/domains/tykea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tykealy", + "email": "tykeaboyloy@gmail.com" + }, + "record": { + "CNAME": "tykea.dev" + } +} diff --git a/domains/ud.json b/domains/ud.json new file mode 100644 index 000000000..74ceec910 --- /dev/null +++ b/domains/ud.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "umanga907", + "email": "umanga.907@gmail.com", + "discord": "ud907" + }, + "record": { + "CNAME": "umanga-portfolio.vercel.app" + } +} diff --git a/domains/udit.json b/domains/udit.json new file mode 100644 index 000000000..b80065b9a --- /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" + }, + "record": { + "CNAME": "details-five.vercel.app" + } +} diff --git a/domains/uditha.json b/domains/uditha.json new file mode 100644 index 000000000..962512690 --- /dev/null +++ b/domains/uditha.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "udithamanohara" + }, + "record": { + "CNAME": "udithamanohara.github.io" + } +} diff --git a/domains/udyanupal.json b/domains/udyanupal.json new file mode 100644 index 000000000..b257a8a54 --- /dev/null +++ b/domains/udyanupal.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "udyanupal" + }, + "record": { + "CNAME": "usupal.vercel.app" + } +} diff --git a/domains/ujjvaljoshi.json b/domains/ujjvaljoshi.json new file mode 100644 index 000000000..aeffece32 --- /dev/null +++ b/domains/ujjvaljoshi.json @@ -0,0 +1,10 @@ +{ + "description": "Main Page", + "owner": { + "username": "ujjvaljoshi45", + "email": "ujjvaljoshi45@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/umar.json b/domains/umar.json new file mode 100644 index 000000000..063adf298 --- /dev/null +++ b/domains/umar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "umarsidiki", + "email": "siddiquiumar0007@gmail.com" + }, + "record": { + "CNAME": "umarsidiki.github.io" + } +} diff --git a/domains/umerislam.json b/domains/umerislam.json new file mode 100644 index 000000000..b6677d97a --- /dev/null +++ b/domains/umerislam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "umer-islam", + "email": "umer.islam474@gmail.com" + }, + "record": { + "CNAME": "umerislam.netlify.app" + } +} diff --git a/domains/undefined.json b/domains/undefined.json index d860e36c3..d2143d6e5 100644 --- a/domains/undefined.json +++ b/domains/undefined.json @@ -1,8 +1,7 @@ { "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__" }, diff --git a/domains/unicorn.json b/domains/unicorn.json new file mode 100644 index 000000000..139433a9a --- /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" + }, + "record": { + "NS": ["adelaide.ns.cloudflare.com", "arnold.ns.cloudflare.com"] + }, + "proxied": false +} diff --git a/domains/unlux.json b/domains/unlux.json new file mode 100644 index 000000000..48c3d9643 --- /dev/null +++ b/domains/unlux.json @@ -0,0 +1,10 @@ +{ + "description": "Porfolio website link for lux", + "owner": { + "username": "unlux", + "email": "support@unlux.dev" + }, + "record": { + "URL": "https://unlux.dev" + } +} diff --git a/domains/untitled.json b/domains/untitled.json deleted file mode 100644 index 81b800ddc..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/upload.cdn.akk1to.json b/domains/upload.cdn.akk1to.json new file mode 100644 index 000000000..ace2ad7d7 --- /dev/null +++ b/domains/upload.cdn.akk1to.json @@ -0,0 +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" + } +} 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/usamakhalid.json b/domains/usamakhalid.json new file mode 100644 index 000000000..a07a72c04 --- /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" + }, + "record": { + "CNAME": "usama0155.github.io" + } +} diff --git a/domains/usekyber.json b/domains/usekyber.json new file mode 100644 index 000000000..b08eb49b1 --- /dev/null +++ b/domains/usekyber.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "roger-padrell", + "discord": "1335907071287230527", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mUg0h0vs51TZlH_HhPFCqQvSXzhsEa9nWRE_vKRN7AWyU2jSneGFQopQ5Lj__CLtmRDCd60W0wYjH8FEqUjYaquACMvfkG2KrU-F6Ht8efv-g6fvQSnEpFeCy4jaeOI0WqCfwoDY8AAaH2daMX3CrLhrJAVD-CNm5sjssElj77cmDhU1Z0m2WCp__Akt-uDNc2VUVlUpDfqhV9b8pgEX-NfSMAU0kL-v1B037PVUCBPj_obfJyOUDj72lTcl5uYoJlkIiUbsfvWAIvbP2i_0xxAXXhuyfTnD1a_2FAXmKegzUmM9kjgao1RNWUAXo_sgydw0IxevpVgI-GhZgl09CA.WkO0f1qjPnhPD4YI1U_buA.Vj5CjME69F7g0jEiXmgD0OUNf7GpLBCRuI0Ap5sE67A0D0dWYoKPyE6c5Jy-8U5UuCic01BnIhP3SKeQ4u3ZiCjXkjfeYaXba_UIcOdWBpw.Qm7MtmHkzZBCmWtDpIMY7g" + }, + "record": { + "CNAME": "0fd7817ec6-hosting.gitbook.io" + } +} diff --git a/domains/user0.json b/domains/user0.json index f20cd0911..a4d0c0619 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" + "CNAME": "user0-07161.codeberg.page" } } diff --git a/domains/ushnish.json b/domains/ushnish.json new file mode 100644 index 000000000..104afd249 --- /dev/null +++ b/domains/ushnish.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "UshnishG", + "email": "ghosalushnish@gmail.com" + }, + "record": { + "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/usmanbaig.json b/domains/usmanbaig.json new file mode 100644 index 000000000..0753fd396 --- /dev/null +++ b/domains/usmanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UsmanBaig001", + "email": "usmanbaig1572@gmail.com" + }, + "record": { + "CNAME": "usmanbaig-dev.vercel.app" + } +} diff --git a/domains/utkarsh-singhal.json b/domains/utkarsh-singhal.json new file mode 100644 index 000000000..9def37f05 --- /dev/null +++ b/domains/utkarsh-singhal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Utkarsh-Singhal-26", + "email": "singhalutkarsh26@gmail.com" + }, + "record": { + "CNAME": "utkarsh-singhal.vercel.app" + } +} diff --git a/domains/utkarsh.json b/domains/utkarsh.json index 27aa394c1..e234891d3 100644 --- a/domains/utkarsh.json +++ b/domains/utkarsh.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/utkarshkrsingh/website", - "owner": { - "username": "Utkarshkrsingh", - "email": "utkarshkrsingh@proton.me" - }, - "record": { - "CNAME": "utkarshkrsingh.github.io" - } + "repo": "https://github.com/utkarshkrsingh/website", + "owner": { + "username": "Utkarshkrsingh", + "email": "utkarsh.isa.dev@gmail.com" + }, + "record": { + "CNAME": "utkarshkrsingh.github.io" + } } diff --git a/domains/utsabadhikari.json b/domains/utsabadhikari.json index c7915f182..a76bf227f 100644 --- a/domains/utsabadhikari.json +++ b/domains/utsabadhikari.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "utsab1231", - "email": "", - "discord": "573163740309094413", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J8Zs7sfsirMCXNl8iuUK7xdq5hrLgPvMdrbhp1XfqXBrego8HGcVBEaKNzqZu16DXgMlcJUFJylKY6C7TUPYheXfPDP0Wh66NT6o7wFUsWFuQ6g5NSiU8ctXlI1K7f1_PXwO0iLw5rQOmgh4iw7NCOYti3rF1RXuae3OtNWWQnxgVEv9jieBwtsDhmhjgY2LZxPNJmqvoYCsR9-ytJoNgKYnjxwFqd_bCOKsBBRUAFGKMY031aNZRQTO5EoLOilDOfpznb_DtVmQCZZ_FI56mkKgJhupqIOxJ_bJgKNF6GbvAjSElMdWoVq_YsLU1ivao7sFdXjecje9yOzcBkOuPA.papQF2Ih2vL7uZ8R2B0Dug.2QknjUZW3VXKfWNhnEG5x7GBXEMg1cowfgNMQYmdyPZ64cc5hq6xtB_ENmlpEu7_QzddxpAqxqeKUGTgxwP2ksbAsDFoV02SUMjyiGlYADE.ljIgAJ8-syYcHV1cKeLziA" - }, - - "record": { - "CNAME": "personportfolio-e25d4.web.app" - } - } - \ No newline at end of file + "owner": { + "username": "utsab1231", + "discord": "573163740309094413", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J8Zs7sfsirMCXNl8iuUK7xdq5hrLgPvMdrbhp1XfqXBrego8HGcVBEaKNzqZu16DXgMlcJUFJylKY6C7TUPYheXfPDP0Wh66NT6o7wFUsWFuQ6g5NSiU8ctXlI1K7f1_PXwO0iLw5rQOmgh4iw7NCOYti3rF1RXuae3OtNWWQnxgVEv9jieBwtsDhmhjgY2LZxPNJmqvoYCsR9-ytJoNgKYnjxwFqd_bCOKsBBRUAFGKMY031aNZRQTO5EoLOilDOfpznb_DtVmQCZZ_FI56mkKgJhupqIOxJ_bJgKNF6GbvAjSElMdWoVq_YsLU1ivao7sFdXjecje9yOzcBkOuPA.papQF2Ih2vL7uZ8R2B0Dug.2QknjUZW3VXKfWNhnEG5x7GBXEMg1cowfgNMQYmdyPZ64cc5hq6xtB_ENmlpEu7_QzddxpAqxqeKUGTgxwP2ksbAsDFoV02SUMjyiGlYADE.ljIgAJ8-syYcHV1cKeLziA" + }, + "record": { + "CNAME": "personportfolio-e25d4.web.app" + } +} diff --git a/domains/uukelele.json b/domains/uukelele.json new file mode 100644 index 000000000..124d822cc --- /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" + }, + "record": { + "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 f5b369bce..4e82f95b6 100644 --- a/domains/uwu.json +++ b/domains/uwu.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "CNAME": "edge.redirect.pizza" + "URL": "https://orangc.net" } } diff --git a/domains/uwunotislove.json b/domains/uwunotislove.json index ed9b30cfc..abccaf63c 100644 --- a/domains/uwunotislove.json +++ b/domains/uwunotislove.json @@ -1,6 +1,6 @@ { "owner": { - "username": "@uwunotislove", + "username": "uwunotislove", "email": "moody761@hotmail.com" }, "record": { diff --git a/domains/v.json b/domains/v.json index e3cb8bea1..486915299 100644 --- a/domains/v.json +++ b/domains/v.json @@ -1,7 +1,6 @@ { "owner": { - "username": "leofelix908", - "email": "" + "username": "leofelix908" }, "record": { "CNAME": "xproject-xi.vercel.app" diff --git a/domains/vaishnavi.json b/domains/vaishnavi.json new file mode 100644 index 000000000..23d6b9cbb --- /dev/null +++ b/domains/vaishnavi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vaishnavid07", + "email": "vaishnavi.deshmukh201@gmail.com" + }, + "record": { + "CNAME": "vaishnavid07.github.io" + } +} diff --git a/domains/valdoyking.json b/domains/valdoyking.json new file mode 100644 index 000000000..14b8e19b1 --- /dev/null +++ b/domains/valdoyking.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "valdoyking", + "email": "osvaldovillalba-02@hotmail.com" + }, + "record": { + "CNAME": "valdoyking.github.io" + } +} diff --git a/domains/valentin-nicheglod.json b/domains/valentin-nicheglod.json new file mode 100644 index 000000000..08cf9c30c --- /dev/null +++ b/domains/valentin-nicheglod.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "valentinnicheglod", + "email": "nicheglod69@gmail.com" + }, + "record": { + "CNAME": "valentinnicheglod.github.io" + } +} diff --git a/domains/valenvivaldi.json b/domains/valenvivaldi.json new file mode 100644 index 000000000..e4dae1730 --- /dev/null +++ b/domains/valenvivaldi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "valenvivaldi" + }, + "record": { + "URL": "https://github.com/valenvivaldi" + } +} diff --git a/domains/valerius.json b/domains/valerius.json new file mode 100644 index 000000000..e9bdb8679 --- /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" + }, + "record": { + "CNAME": "valerius.me" + } +} diff --git a/domains/vampirepapi.json b/domains/vampirepapi.json new file mode 100644 index 000000000..27854e7c8 --- /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" + }, + "record": { + "CNAME": "vampirepapi.github.io" + } +} \ No newline at end of file diff --git a/domains/vanmanh.json b/domains/vanmanh.json new file mode 100644 index 000000000..6b456da69 --- /dev/null +++ b/domains/vanmanh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vanmanhdev", + "email": "vanmanh2763@gmail.com" + }, + "record": { + "CNAME": "vanmanhdev.github.io" + } +} diff --git a/domains/vansh.json b/domains/vansh.json index 99919fe4e..233743bc4 100644 --- a/domains/vansh.json +++ b/domains/vansh.json @@ -4,7 +4,7 @@ "email": "goelvansh2@gmail.com" }, "record": { - "CNAME": "vansh-goel.github.io" + "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..9e12a4808 --- /dev/null +++ b/domains/vanshaggarwal.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aggarwalvansh", + "email": "aggvans@gmail.com" + }, + "record": { + "CNAME": "portfolio-rho-one-46.vercel.app" + }, + "proxied": true +} diff --git a/domains/vantage.json b/domains/vantage.json new file mode 100644 index 000000000..f9e58b06a --- /dev/null +++ b/domains/vantage.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "blaze-099", + "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" + } +} diff --git a/domains/vapr.json b/domains/vapr.json new file mode 100644 index 000000000..39ba7b6ae --- /dev/null +++ b/domains/vapr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bitsamedida", + "email": "bitsamedida@gmail.com" + }, + "record": { + "CNAME": "vapr.vercel.app" + } +} diff --git a/domains/varad.json b/domains/varad.json new file mode 100644 index 000000000..10ddc1443 --- /dev/null +++ b/domains/varad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Qvme", + "email": "varad.pi@proton.me" + }, + "record": { + "CNAME": "qvme.github.io" + } +} diff --git a/domains/varun-kumar.json b/domains/varun-kumar.json new file mode 100644 index 000000000..be2a09ca9 --- /dev/null +++ b/domains/varun-kumar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "varun-kumar-code", + "email": "varunkumar1329@gmail.com" + }, + "record": { + "CNAME": "varun-kumar-code.github.io" + } +} diff --git a/domains/vasanth.json b/domains/vasanth.json new file mode 100644 index 000000000..df36647d1 --- /dev/null +++ b/domains/vasanth.json @@ -0,0 +1,12 @@ +{ + "description": "Vasanth personal Blog", + "owner": { + "username": "62d2", + "email": "itsparser@gmail.com", + "twitter": "itsparser", + "discord": "itsparser" + }, + "record": { + "CNAME": "itsparser.github.io" + } +} diff --git a/domains/vasu-xd.json b/domains/vasu-xd.json new file mode 100644 index 000000000..9deb83c2c --- /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" + }, + "record": { + "CNAME": "vasu-xd.github.io" + } +} diff --git a/domains/vasuxd.json b/domains/vasuxd.json new file mode 100644 index 000000000..aab28af31 --- /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" + }, + "record": { + "CNAME": "vasuxd.github.io" + } +} diff --git a/domains/vault.server.drpleaserespect.json b/domains/vault.server.drpleaserespect.json deleted file mode 100644 index ee0613c67..000000000 --- a/domains/vault.server.drpleaserespect.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DrPleaseRespect", - "email": "juliannayr2007@gmail.com" - }, - "record": { - "A": ["146.19.100.135"], - "AAAA": ["2a05:dfc1:4400:6c00::a"] - } -} diff --git a/domains/vdevanarayan.json b/domains/vdevanarayan.json new file mode 100644 index 000000000..149ef15b8 --- /dev/null +++ b/domains/vdevanarayan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CodeTitan7", + "email": "octavius1983bc@gmail.com" + }, + "record": { + "A": ["76.76.21.21"], + "TXT": "google-site-verification=NcQI-OpciiCC6SO5bs1ws-ptlIZ9AEZskMszLGwFcOY" + } +} diff --git a/domains/vedant.json b/domains/vedant.json new file mode 100644 index 000000000..15624eabb --- /dev/null +++ b/domains/vedant.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "theonlyvedu" + }, + "record": { + "CNAME": "theonlyvedu.github.io" + } +} diff --git a/domains/veen.json b/domains/veen.json index 396e7563a..c7826462d 100644 --- a/domains/veen.json +++ b/domains/veen.json @@ -4,6 +4,6 @@ "email": "vmikki7207@gmail.com" }, "record": { - "CNAME": "Vihaan7207.github.io" + "CNAME": "vihaan7207.github.io" } } diff --git a/domains/vela.json b/domains/vela.json new file mode 100644 index 000000000..53454a43c --- /dev/null +++ b/domains/vela.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "v3laDev", + "email": "27khero@proton.me" + }, + "record": { + "CNAME": "v3laDev.github.io" + } +} diff --git a/domains/venkat.json b/domains/venkat.json new file mode 100644 index 000000000..f95983656 --- /dev/null +++ b/domains/venkat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "venkatk-git", + "email": "venkatkumar.profiles@gmail.com" + }, + "record": { + "CNAME": "v3nkat.vercel.app" + } +} diff --git a/domains/vercel.cutedog5695.json b/domains/vercel.cutedog5695.json index 6d8c85f5a..2b34a2843 100644 --- a/domains/vercel.cutedog5695.json +++ b/domains/vercel.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "CNAME": "cutedog5695test.vercel.app" diff --git a/domains/vercel.uwu.json b/domains/vercel.uwu.json index 304ea2a5c..c76f22995 100644 --- a/domains/vercel.uwu.json +++ b/domains/vercel.uwu.json @@ -1,6 +1,6 @@ { "owner": { - "username": "orxngc", + "username": "orangci", "discord": "orangc", "email": "orangc@proton.me" }, diff --git a/domains/verify.alora.json b/domains/verify.alora.json new file mode 100644 index 000000000..f5cfc756b --- /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" + }, + "record": { + "CNAME": "europaverification.vercel.app" + } +} diff --git a/domains/verkyana.json b/domains/verkyana.json new file mode 100644 index 000000000..9348ec7f8 --- /dev/null +++ b/domains/verkyana.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Keiyanas", + "email": "katzswax@gmail.com" + }, + "record": { + "CNAME": "keiyanas.github.io" + } +} diff --git a/domains/veronicacamarzana.json b/domains/veronicacamarzana.json new file mode 100644 index 000000000..0d425e9ae --- /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" + }, + "record": { + "CNAME": "vcamarzana.github.io" + } +} diff --git a/domains/veygax.json b/domains/veygax.json new file mode 100644 index 000000000..d07e62baf --- /dev/null +++ b/domains/veygax.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "veygax", + "email": "veyga@checkpoint.llc", + "discord": "1119938236245094521" + + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/vgwarden.json b/domains/vgwarden.json new file mode 100644 index 000000000..cb2b3886e --- /dev/null +++ b/domains/vgwarden.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "VGWARDEN" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/vicentelopez.json b/domains/vicentelopez.json new file mode 100644 index 000000000..a3e4a1e2a --- /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.", + "record": { + "CNAME": "lopezvcnt.github.io" + } +} diff --git a/domains/victordev.json b/domains/victordev.json new file mode 100644 index 000000000..99d626d43 --- /dev/null +++ b/domains/victordev.json @@ -0,0 +1,9 @@ + { + "owner": { + "username": "VictorHumberto01", + "email": "victor.humberto.dev@gmail.com" + }, + "record": { + "CNAME": "victor-humberto.vercel.app" + } + } diff --git a/domains/victoria.json b/domains/victoria.json index 42888f702..6fad7fc3e 100644 --- a/domains/victoria.json +++ b/domains/victoria.json @@ -1,7 +1,6 @@ { "owner": { - "username": "itahseen", - "email": "" + "username": "itahseen" }, "record": { "CNAME": "viktoriaa.vercel.app" diff --git a/domains/viernes.json b/domains/viernes.json new file mode 100644 index 000000000..a738e08c8 --- /dev/null +++ b/domains/viernes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "br0k3r", + "email": "br0k3r@protonmail.com" + }, + "record": { + "CNAME": "viernes.surge.sh" + } +} diff --git a/domains/viet.json b/domains/viet.json new file mode 100644 index 000000000..8ed672915 --- /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" + }, + "record": { + "NS": ["evangeline.ns.cloudflare.com", "salvador.ns.cloudflare.com"] + } +} diff --git a/domains/vighnesh153.json b/domains/vighnesh153.json new file mode 100644 index 000000000..68a2d64b4 --- /dev/null +++ b/domains/vighnesh153.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vighnesh153", + "email": "pikachu@vighnesh153.dev" + }, + "record": { + "CNAME": "vighnesh153-app.web.app" + } +} diff --git a/domains/vigikaran.json b/domains/vigikaran.json new file mode 100644 index 000000000..39e3b609f --- /dev/null +++ b/domains/vigikaran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vigikaran", + "email": "vigikaran.php@gmail.com" + }, + "record": { + "URL": "https://www.linkedin.com/in/vigikaran/" + } +} diff --git a/domains/vignesh.json b/domains/vignesh.json new file mode 100644 index 000000000..c80386d58 --- /dev/null +++ b/domains/vignesh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Vignesh025", + "email": "vigneshjayakumar9221@gmail.com", + "discord": "vignesh025" + }, + "record": { + "CNAME": "vigneshportfolio1.vercel.app" + } +} diff --git a/domains/vikas.json b/domains/vikas.json new file mode 100644 index 000000000..26b9387ee --- /dev/null +++ b/domains/vikas.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kvikas063", + "email": "vikas_063@hotmail.com" + }, + "description": "portofolio website.", + "record": { + "CNAME": "kvikas063.github.io" + } +} diff --git a/domains/vikipranata.json b/domains/vikipranata.json new file mode 100644 index 000000000..1bdca1386 --- /dev/null +++ b/domains/vikipranata.json @@ -0,0 +1,12 @@ +{ + "description": "Domain for personal web pages", + "owner": { + "username": "vikipranata", + "email": "helovikipranata@gmail.com" + }, + "record": { + "CNAME": "vikipranata.github.io", + "TXT": "google-site-verification=P0NDXXGrIMQIApUCl70HKX0nLphXZtzeW2B4qckwuLE" + }, + "proxied": true +} diff --git a/domains/vinay.json b/domains/vinay.json new file mode 100644 index 000000000..12bca45a2 --- /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" + }, + "record": { + "CNAME": "vinux.in" + } +} diff --git a/domains/vinayaka.json b/domains/vinayaka.json new file mode 100644 index 000000000..9f6fe25fc --- /dev/null +++ b/domains/vinayaka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinayaka-iyer", + "email": "vinayakaiyer999@gmail.com" + }, + "record": { + "CNAME": "vinayaka-portfolio.vercel.app" + } +} diff --git a/domains/vinceale7082.json b/domains/vinceale7082.json index 26229f2d0..4d7391ffa 100644 --- a/domains/vinceale7082.json +++ b/domains/vinceale7082.json @@ -1,13 +1,11 @@ { - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "A": [ - "5.94.2.75" - ] - } + "owner": { + "username": "VinceAle7082", + "email": "vinceale7082@gmail.com", + "discord": "1078447459900063816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + }, + "record": { + "URL": "https://vinceale7082.com" + } } diff --git a/domains/vincent.json b/domains/vincent.json new file mode 100644 index 000000000..882de9792 --- /dev/null +++ b/domains/vincent.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinvin27", + "email": "simsichepac+is-a@gmail.com" + }, + "record": { + "CNAME": "vincent-homepage.pages.dev" + } +} diff --git a/domains/vineeth.json b/domains/vineeth.json new file mode 100644 index 000000000..c523be526 --- /dev/null +++ b/domains/vineeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vineeth-motati", + "email": "vineethmotati@duck.com" + }, + "record": { + "CNAME": "vineeth-reddy-motati.vercel.app" + } +} \ No newline at end of file diff --git a/domains/vinicius.json b/domains/vinicius.json index 5f4e477f5..d58a4aa03 100644 --- a/domains/vinicius.json +++ b/domains/vinicius.json @@ -1,6 +1,5 @@ { "description": "My personal website", - "repo": "https://github.com/vncsmnl", "owner": { "username": "vncsmnl", "twitter": "vncsmnl", diff --git a/domains/vinitshah.json b/domains/vinitshah.json new file mode 100644 index 000000000..a40cd92da --- /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" + }, + "record": { + "CNAME": "vinitshah101.github.io" + } +} diff --git a/domains/vintheweirdass.json b/domains/vintheweirdass.json new file mode 100644 index 000000000..77d233378 --- /dev/null +++ b/domains/vintheweirdass.json @@ -0,0 +1,17 @@ +{ + "description": "redirect. js that", + "repo": "https://github.com/vintheweirdass/vintheweirdass.github.io", + "owner": { + "username": "vintheweirdass", + "twitter": "vintheweirdass", + "discord": "vintheweirdass" + }, + "record": { + "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..a10d39420 --- /dev/null +++ b/domains/vinvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vinvin27", + "email": "simsichepac@gmail.com" + }, + "record": { + "CNAME": "vincent-homepage.pages.dev" + } +} diff --git a/domains/violet.json b/domains/violet.json new file mode 100644 index 000000000..62f245b5e --- /dev/null +++ b/domains/violet.json @@ -0,0 +1,10 @@ +{ + "description": "My Main Portfolio Page", + "owner": { + "username": "violetlaire", + "email": "violetlaire@proton.me" + }, + "record": { + "CNAME": "violetmainpage.vercel.app" + } +} diff --git a/domains/vipul.json b/domains/vipul.json index 645e0f455..b6e147d96 100644 --- a/domains/vipul.json +++ b/domains/vipul.json @@ -5,6 +5,6 @@ "email": "vipultyagi386+github@gmail.com" }, "record": { - "CNAME": "VipulOG.github.io" + "CNAME": "vipulog.github.io" } } diff --git a/domains/viral-soni.json b/domains/viral-soni.json new file mode 100644 index 000000000..bfcc3e11e --- /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" + }, + "record": { + "CNAME": "r-okje.github.io" + } +} diff --git a/domains/virtual.json b/domains/virtual.json new file mode 100644 index 000000000..38940393e --- /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" + }, + "record": { + "URL": "https://virtual-dev.netlify.app/" + } +} diff --git a/domains/vishal.json b/domains/vishal.json index 91946b3e8..aecce9f41 100644 --- a/domains/vishal.json +++ b/domains/vishal.json @@ -1,6 +1,5 @@ { "description": "Welcome to Vishal Sharma's Space on Web", - "repo": "https://github.com/makeavish", "owner": { "username": "makeavish", "email": "hi@vishalsharma.dev" diff --git a/domains/vishalanarase.json b/domains/vishalanarase.json new file mode 100644 index 000000000..a04642c1d --- /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" + }, + "record": { + "CNAME": "vishalanarase.github.io" + } +} diff --git a/domains/visionmate.akshit-jain.json b/domains/visionmate.akshit-jain.json new file mode 100644 index 000000000..736a47c01 --- /dev/null +++ b/domains/visionmate.akshit-jain.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akshitjain16", + "email": "gang.akshitjain@gmail.com" + }, + "record": { + "URL": "https://vision-mate.netlify.app/" + } + } + \ No newline at end of file diff --git a/domains/vivekkumar.json b/domains/vivekkumar.json index 6721f848f..55ee2bb09 100644 --- a/domains/vivekkumar.json +++ b/domains/vivekkumar.json @@ -6,6 +6,6 @@ "email": "vivek-kumar@live.in" }, "record": { - "CNAME": "VivekKumarNeu.github.io" + "CNAME": "vivekkumarneu.github.io" } } diff --git a/domains/vlad.json b/domains/vlad.json new file mode 100644 index 000000000..cfc329f7e --- /dev/null +++ b/domains/vlad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "uladkaminski", + "email": "i@uladkaminski.com" + }, + "record": { + "CNAME": "uladkaminski.com" + } +} diff --git a/domains/vldm.json b/domains/vldm.json new file mode 100644 index 000000000..9e4d1ea05 --- /dev/null +++ b/domains/vldm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VLDeMenezes", + "email": "victorleandrodemenezes@gmail.com" + }, + "record": { + "CNAME": "vldm-portafolio.vercel.app" + } +} diff --git a/domains/voidvault.json b/domains/voidvault.json new file mode 100644 index 000000000..0c15c0ec7 --- /dev/null +++ b/domains/voidvault.json @@ -0,0 +1,10 @@ +{ + "domain": "voidvault.is-a.dev", + "owner": { + "username": "Dev-Rajeshkumar", + "email": "rajesh8778354586@gmail.com" + }, + "record": { + "CNAME": "nova-blog-tech.vercel.app" + } +} diff --git a/domains/vornexx.json b/domains/vornexx.json index 1fba37111..4a7f7f58a 100644 --- a/domains/vornexx.json +++ b/domains/vornexx.json @@ -1,6 +1,6 @@ { "owner": { - "username": "vornex-gh", + "username": "vornexx", "discord": "1149438819834269856", "twitter": "vornexx_" }, diff --git a/domains/votiendung.json b/domains/votiendung.json new file mode 100644 index 000000000..683fe810d --- /dev/null +++ b/domains/votiendung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dungxibo123", + "email": "votiendung0805@gmail.com" + }, + "record": { + "CNAME": "dungxibo123.github.io" + } +} diff --git a/domains/voucan.json b/domains/voucan.json new file mode 100644 index 000000000..a61ce1080 --- /dev/null +++ b/domains/voucan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voucan", + "email": "vcn4313@gmail.com" + }, + "record": { + "CNAME": "voucan.pages.dev" + } +} diff --git a/domains/voxxdevv.json b/domains/voxxdevv.json new file mode 100644 index 000000000..6e783b671 --- /dev/null +++ b/domains/voxxdevv.json @@ -0,0 +1,11 @@ +{ + "description": "A simple website showcasing projects crafted by my development team.", + "repo": "https://github.com/voxxdevv/voxxdevv.github.io/lmdesigns", + "owner": { + "username": "voxxdevv", + "email": "aminrh@icloud.com" + }, + "record": { + "CNAME": "voxxdevv.github.io" + } +} diff --git a/domains/vra.json b/domains/vra.json new file mode 100644 index 000000000..213335b04 --- /dev/null +++ b/domains/vra.json @@ -0,0 +1,15 @@ +{ + "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"] + } +} diff --git a/domains/vrachit.json b/domains/vrachit.json new file mode 100644 index 000000000..c26784391 --- /dev/null +++ b/domains/vrachit.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Rachitverma2006", + "email": "vrachit@proton.me" + }, + "record": { + "TXT": [ + "zoho-verification=zb12977056.zmverify.zoho.in" + ], + "CNAME": "vrachit.pages.dev" + }, + "proxied": true + } diff --git a/domains/vrivera.json b/domains/vrivera.json new file mode 100644 index 000000000..7b6f0f6f7 --- /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" + }, + "record": { + "CNAME": "vcntttt.github.io" + } +} diff --git a/domains/vs206.json b/domains/vs206.json new file mode 100644 index 000000000..28fded3f2 --- /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" + }, + "record": { + "CNAME": "vs206.github.io" + } +} diff --git a/domains/vsnu.json b/domains/vsnu.json new file mode 100644 index 000000000..43d4363ef --- /dev/null +++ b/domains/vsnu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VishnuKMi", + "email": "vsnuoffc@gmail.com" + }, + "record": { + "CNAME": "portfolio-ten-gamma-18.vercel.app" + } +} diff --git a/domains/vtwa.json b/domains/vtwa.json new file mode 100644 index 000000000..c9d554823 --- /dev/null +++ b/domains/vtwa.json @@ -0,0 +1,12 @@ +{ + "description": "My base website. Very epik tbh 💥💥", + "repo": "https://github.com/vintheweirdass/vintheweirdass.github.io", + "owner": { + "username": "vintheweirdass", + "twitter": "vintheweirdass", + "discord": "vintheweirdass" + }, + "record": { + "NS": ["christina.ns.cloudflare.com", "mustafa.ns.cloudflare.com"] + } +} diff --git a/domains/vugx.json b/domains/vugx.json new file mode 100644 index 000000000..522ba37b9 --- /dev/null +++ b/domains/vugx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheVugx", + "email": "thevugx@gmail.com" + }, + "record": { + "CNAME": "thevugx.github.io" + } +} diff --git a/domains/vukhoi.json b/domains/vukhoi.json new file mode 100644 index 000000000..e71f148b4 --- /dev/null +++ b/domains/vukhoi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khoivt", + "email": "khoidragonslayer+is-a-dev@gmail.com" + }, + "record": { + "CNAME": "vukhoidev.vercel.app" + }, + "proxied": false + } diff --git a/domains/vulehuan.json b/domains/vulehuan.json new file mode 100644 index 000000000..4676646d1 --- /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" + }, + "record": { + "URL": "https://vulehuan.com" + } +} diff --git a/domains/vuri.json b/domains/vuri.json new file mode 100644 index 000000000..2e62d39d4 --- /dev/null +++ b/domains/vuri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "record": { + "CNAME": "vurihuang.github.io" + } +} diff --git a/domains/vurihuang.json b/domains/vurihuang.json new file mode 100644 index 000000000..2e62d39d4 --- /dev/null +++ b/domains/vurihuang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "record": { + "CNAME": "vurihuang.github.io" + } +} diff --git a/domains/vvp.json b/domains/vvp.json index 22761e781..d4626792f 100644 --- a/domains/vvp.json +++ b/domains/vvp.json @@ -1,6 +1,5 @@ { "description": "VVP's Website", - "repo": "https://github.com/VVP3215", "owner": { "username": "VVP", "email": "jamesmentes.management@gmail.com" diff --git a/domains/vyductan.json b/domains/vyductan.json new file mode 100644 index 000000000..fd12147df --- /dev/null +++ b/domains/vyductan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vyductan", + "email": "vdt5snet@gmail.com", + "discord": "370012050316984321" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/vyfor.json b/domains/vyfor.json new file mode 100644 index 000000000..669219e08 --- /dev/null +++ b/domains/vyfor.json @@ -0,0 +1,11 @@ +{ + "description": "minimal portfolio", + "repo": "https://github.com/vyfor/page", + "owner": { + "username": "vyfor", + "discord": "vyfor" + }, + "record": { + "CNAME": "vyfor.pages.dev" + } +} diff --git a/domains/w0l1d.json b/domains/w0l1d.json new file mode 100644 index 000000000..f96d1bd90 --- /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" + }, + "record": { + "CNAME": "www.w0l1d.me" + }, + "proxied": true +} diff --git a/domains/w3teal.json b/domains/w3teal.json new file mode 100644 index 000000000..d8afb6325 --- /dev/null +++ b/domains/w3teal.json @@ -0,0 +1,16 @@ +{ + "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" + }, + "record": { + "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/wahid7852.json b/domains/wahid7852.json index 9e204221e..f922c2c83 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" + "URL": "https://wahid-portfolio-tczb-wahid-khans-projects.vercel.app/" } } diff --git a/domains/waki.json b/domains/waki.json index df7555f45..b0c864305 100644 --- a/domains/waki.json +++ b/domains/waki.json @@ -4,6 +4,6 @@ "discord": "351012170839883776" }, "record": { - "CNAME": "waki.pages.dev" + "CNAME": "aiwaki.vercel.app" } } diff --git a/domains/walkercito.json b/domains/walkercito.json new file mode 100644 index 000000000..8629e93c1 --- /dev/null +++ b/domains/walkercito.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Walkercito" + }, + "record": { + "CNAME": "walkercitodev.vercel.app" + } +} diff --git a/domains/wallsified.json b/domains/wallsified.json new file mode 100644 index 000000000..8a14eb7ff --- /dev/null +++ b/domains/wallsified.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wallsified", + "email": "danielparedes@ciencias.unam.mx" + }, + "record": { + "CNAME": "portafolio-gamma-mauve.vercel.app" + } +} diff --git a/domains/waltersonna.json b/domains/waltersonna.json new file mode 100644 index 000000000..f84d6a2e1 --- /dev/null +++ b/domains/waltersonna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RichestHumanAlive", + "email": "walter.n.sonna@gmail.com" + }, + "record": { + "CNAME": "diagram-portfolio.vercel.app" + } +} diff --git a/domains/waradu.json b/domains/waradu.json new file mode 100644 index 000000000..1a169251c --- /dev/null +++ b/domains/waradu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "waradu", + "email": "me@waradu.dev", + "discord": "waradu" + }, + "record": { + "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..f67152f1d --- /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" + }, + "record": { + "CNAME": "somethingwentwell.github.io" + } +} diff --git a/domains/wasd228.json b/domains/wasd228.json new file mode 100644 index 000000000..a12d159cc --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/wasi.json b/domains/wasi.json index aec9c3eec..05b3ffc31 100644 --- a/domains/wasi.json +++ b/domains/wasi.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "WasiTC", - "email": "", - "discord": "802128241280286761", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VfdMN3KkHv14UEuHSosP1YXOQh38Re1VEsdiCZFNaOYSQNgJrEVseI4eaY5gIUbR8tyN6IUDDjxYBe8JtgvTYVABOJfEYtNN-IWfErm5kSm_AhBXrqorhc5wIIuC1iBjlJX86x2iZPy0QUMUWvMcommb_enf4V8IfPkU4ByMqWmjgpLD26gKdoBcWbWprsI-_J_TdZIAeksbnaW0fhu_dqVD8H0Jc-o_DdMkdGOqIZBw49ThqiOTn9_ykXcFS7E5FPOcaPawNgH74ztkuMQEiuO2gLp-ibiILiNTniLoMRGJBB9YppR3o1dIWbg1AaPaUU4q0Hd8WBhIHgCbvQBlmw.FPAyefTCWSW9Cn4Re6vGBQ.xfrpDjbf0Gb63fo5C5zJTA5pM5aur7a-Ue6sEaEhskpEdMHWzOJETtyjSnyl6n9APyhOudlvWwFIXRmp7CNvx_hGMtMXNDj8XhRE5W1YXXU.3tdoXncw4wvTz5QDGvN4FA" - }, - "record": { - "A": [ - "59.152.96.163" - ] - } + "owner": { + "username": "WasiTC", + "discord": "802128241280286761", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VfdMN3KkHv14UEuHSosP1YXOQh38Re1VEsdiCZFNaOYSQNgJrEVseI4eaY5gIUbR8tyN6IUDDjxYBe8JtgvTYVABOJfEYtNN-IWfErm5kSm_AhBXrqorhc5wIIuC1iBjlJX86x2iZPy0QUMUWvMcommb_enf4V8IfPkU4ByMqWmjgpLD26gKdoBcWbWprsI-_J_TdZIAeksbnaW0fhu_dqVD8H0Jc-o_DdMkdGOqIZBw49ThqiOTn9_ykXcFS7E5FPOcaPawNgH74ztkuMQEiuO2gLp-ibiILiNTniLoMRGJBB9YppR3o1dIWbg1AaPaUU4q0Hd8WBhIHgCbvQBlmw.FPAyefTCWSW9Cn4Re6vGBQ.xfrpDjbf0Gb63fo5C5zJTA5pM5aur7a-Ue6sEaEhskpEdMHWzOJETtyjSnyl6n9APyhOudlvWwFIXRmp7CNvx_hGMtMXNDj8XhRE5W1YXXU.3tdoXncw4wvTz5QDGvN4FA" + }, + "record": { + "A": ["59.152.96.163"] + } } diff --git a/domains/wasim.json b/domains/wasim.json new file mode 100644 index 000000000..fdae2d706 --- /dev/null +++ b/domains/wasim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simbaig", + "email": "wasimbaig000@gmail.com" + }, + "record": { + "CNAME": "wasimb.vercel.app" + } +} diff --git a/domains/wassim.json b/domains/wassim.json index 73e182235..93b577aa2 100644 --- a/domains/wassim.json +++ b/domains/wassim.json @@ -1,6 +1,5 @@ { "description": "Github profile of wassimbenzarti", - "repo": "https://github.com/wassimbenzarti", "owner": { "username": "wassimbenzarti", "email": "wass11121996@gmail.com" diff --git a/domains/wave.json b/domains/wave.json new file mode 100644 index 000000000..61d82cb6f --- /dev/null +++ b/domains/wave.json @@ -0,0 +1,10 @@ +{ + "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" + } +} 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 5e3498443..f0c01aea2 100644 --- a/domains/web.vulcanocraft.json +++ b/domains/web.vulcanocraft.json @@ -1,13 +1,10 @@ { - "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" - }, - - "record": { - "CNAME": "vulcanoweb.pages.dev" - } - } - \ No newline at end of file + "owner": { + "username": "VulcanoSoftware", + "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" + }, + "record": { + "CNAME": "vulcanoweb.pages.dev" + } +} diff --git a/domains/webcubed.json b/domains/webcubed.json new file mode 100644 index 000000000..775b9a884 --- /dev/null +++ b/domains/webcubed.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "webcubed", + "email": "lainathannlaiv2@gmail.com" + }, + "record": { + "CNAME": "webcubed.pages.dev" + }, + "proxied": true +} diff --git a/domains/whisp.json b/domains/whisp.json deleted file mode 100644 index 1af8c7df8..000000000 --- a/domains/whisp.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "itswhisp", - "email": "ag.whisp@gmail.com", - "discord": "1276688713434529854" - }, - "record": { - "A": ["76.76.21.21"] - } -} diff --git a/domains/whitekj.json b/domains/whitekj.json index 9a259cd9e..6471cd07f 100644 --- a/domains/whitekj.json +++ b/domains/whitekj.json @@ -6,6 +6,6 @@ "email": "whitekj1221@gmail.com" }, "record": { - "CNAME": "CwhiteKJ.github.io" + "CNAME": "cwhitekj.github.io" } } diff --git a/domains/who.json b/domains/who.json index 52c7e7f39..cf6752f4f 100644 --- a/domains/who.json +++ b/domains/who.json @@ -1,6 +1,5 @@ { "description": "references for my npm packages", - "repo": "https://github.com/teamjoelee", "owner": { "username": "teamjoelee", "email": "tojoeleeofficial@gmail.com" diff --git a/domains/whois.json b/domains/whois.json deleted file mode 100644 index 1570b3e57..000000000 --- a/domains/whois.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "is-a-dev", - "email": "admin@is-a.dev" - }, - "record": {}, - "reserved": true -} diff --git a/domains/wiki.chuyentinorz.json b/domains/wiki.chuyentinorz.json new file mode 100644 index 000000000..78190f999 --- /dev/null +++ b/domains/wiki.chuyentinorz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "record": { + "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..374936a5c --- /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" + }, + "record": { + "CNAME": "wildchamo.github.io" + } +} diff --git a/domains/william.json b/domains/william.json index b31c5b05f..fcec296e5 100644 --- a/domains/william.json +++ b/domains/william.json @@ -4,14 +4,12 @@ "email": "william@is-a.dev" }, "record": { - "NS": ["bingo.ns.cloudflare.com", "matias.ns.cloudflare.com"], - "DS": [ - { - "key_tag": 2371, - "algorithm": 13, - "digest_type": 2, - "digest": "CC332225EB1A226C72D83767ACC3834FE20C129CBD8B1A74FBDCBAD36624B2E0" - } - ] + "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..89d6ca4f9 --- /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" + }, + "record": { + "A": ["76.76.21.21"] + }, + "proxied": false +} diff --git a/domains/williamwei.json b/domains/williamwei.json new file mode 100644 index 000000000..3c5db8571 --- /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" + }, + "record": { + "CNAME": "willwell.netlify.app" + } +} diff --git a/domains/willymateo.json b/domains/willymateo.json new file mode 100644 index 000000000..c608366c4 --- /dev/null +++ b/domains/willymateo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "willymateo", + "email": "matheoowilly@gmail.com", + "discord": "willycocolon" + }, + "record": { + "CNAME": "willymateo.vercel.app" + } +} diff --git a/domains/wilson-cordova.json b/domains/wilson-cordova.json new file mode 100644 index 000000000..6adad4a17 --- /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" + }, + "record": { + "CNAME": "wsteeven.github.io" + } +} diff --git a/domains/wilson.json b/domains/wilson.json new file mode 100644 index 000000000..b3e2bcb9d --- /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" + }, + "record": { + "CNAME": "wmoralesl.github.io" + } +} diff --git a/domains/win11-tutorial.notaperson535.json b/domains/win11-tutorial.notaperson535.json index b4219735a..a50968197 100644 --- a/domains/win11-tutorial.notaperson535.json +++ b/domains/win11-tutorial.notaperson535.json @@ -6,6 +6,6 @@ "email": "notAperson939@gmail.com" }, "record": { - "CNAME": "notAperson535.github.io" + "CNAME": "notaperson535.github.io" } } diff --git a/domains/win11.notaperson535.json b/domains/win11.notaperson535.json index f27c20197..573710bc3 100644 --- a/domains/win11.notaperson535.json +++ b/domains/win11.notaperson535.json @@ -6,6 +6,6 @@ "email": "notAperson939@gmail.com" }, "record": { - "CNAME": "notAperson535.github.io" + "CNAME": "notaperson535.github.io" } } diff --git a/domains/winter.json b/domains/winter.json new file mode 100644 index 000000000..3ffb543bf --- /dev/null +++ b/domains/winter.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "virtualwinter", + "discord": "vwinter", + "email": "me@vwinter.moe" + }, + "record": { + "NS": [ + "blakely.ns.cloudflare.com", + "rocco.ns.cloudflare.com" + ] + } +} diff --git a/domains/wipad.json b/domains/wipad.json new file mode 100644 index 000000000..04908da06 --- /dev/null +++ b/domains/wipad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wipad0310", + "email": "nguyenlab2007@gmail.com" + }, + "record": { + "CNAME": "wipad0310.github.io" + } +} diff --git a/domains/wirisungs.json b/domains/wirisungs.json new file mode 100644 index 000000000..f0a181248 --- /dev/null +++ b/domains/wirisungs.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "wirisungs" + }, + "record": { + "CNAME": "wirisungs.github.io" + } +} diff --git a/domains/wisit.json b/domains/wisit.json new file mode 100644 index 000000000..4eb4e8447 --- /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" + }, + "record": { + "CNAME": "wisit.vercel.app" + }, + "proxied": true +} diff --git a/domains/witchboo.json b/domains/witchboo.json index 965a7c682..53865792f 100644 --- a/domains/witchboo.json +++ b/domains/witchboo.json @@ -4,6 +4,6 @@ "email": "soconfirmo@hotmail.com" }, "record": { - "CNAME": "witchboo.github.io" + "URL": "https://witchboo.me" } } diff --git a/domains/wizardsword.json b/domains/wizardsword.json index 2d669e7e2..a8bf76bee 100644 --- a/domains/wizardsword.json +++ b/domains/wizardsword.json @@ -4,6 +4,6 @@ "discord": "1115658967012626542" }, "record": { - "A": ["216.24.57.1"] + "A": ["76.76.21.21"] } } diff --git a/domains/wizcann.json b/domains/wizcann.json new file mode 100644 index 000000000..10abfdfb4 --- /dev/null +++ b/domains/wizcann.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "wizcann" + }, + "record": { + "CNAME": "wizcann.github.io" + } +} diff --git a/domains/wizzybot.joe50097.json b/domains/wizzybot.joe50097.json new file mode 100644 index 000000000..832d78797 --- /dev/null +++ b/domains/wizzybot.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "CNAME": "wizzybot.netlify.app" + } +} diff --git a/domains/woogi.json b/domains/woogi.json new file mode 100644 index 000000000..deea32542 --- /dev/null +++ b/domains/woogi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "woogi-kang", + "email": "woogi.dev@gmail.com" + }, + "record": { + "CNAME": "portfolio-whbd.vercel.app" + } +} diff --git a/domains/woosh.json b/domains/woosh.json index 9123c1bb7..d6dd9b785 100644 --- a/domains/woosh.json +++ b/domains/woosh.json @@ -1,6 +1,5 @@ { "description": "idk just a domain i guess", - "repo": "https://github.com/LetMeWoosh", "owner": { "username": "LetMeWoosh", "email": "me@letmewoosh.xyz" diff --git a/domains/works.arnxv.json b/domains/works.arnxv.json new file mode 100644 index 000000000..5ffe17247 --- /dev/null +++ b/domains/works.arnxv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } +} diff --git a/domains/worldsavior.json b/domains/worldsavior.json new file mode 100644 index 000000000..def794982 --- /dev/null +++ b/domains/worldsavior.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Worldsavior", + "email": "kajuki27@gmail.com" + }, + "record": { + "CNAME": "worldsavior.me" + } +} diff --git a/domains/wouter.json b/domains/wouter.json new file mode 100644 index 000000000..4f5a6c765 --- /dev/null +++ b/domains/wouter.json @@ -0,0 +1,10 @@ +{ + "description": "Wouter's personal website", + "owner": { + "username": "wouter173", + "email": "wouter@debruijn.dev" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/fenrir.json b/domains/wrothmir.json similarity index 91% rename from domains/fenrir.json rename to domains/wrothmir.json index e4d569834..b3d140d6e 100644 --- a/domains/fenrir.json +++ b/domains/wrothmir.json @@ -1,10 +1,10 @@ { "owner": { - "username": "fenrir-san", + "username": "wrothmir", "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" + "CNAME": "wrothmir.github.io" } } diff --git a/domains/wuyuan.json b/domains/wuyuan.json index 83cf32431..bf1a0f844 100644 --- a/domains/wuyuan.json +++ b/domains/wuyuan.json @@ -4,6 +4,6 @@ "email": "1847261658@qq.com" }, "record": { - "CNAME": "wuyuan.dev" + "CNAME": "sunwuyuan.github.io" } } diff --git a/domains/www.all.json b/domains/www.all.json new file mode 100644 index 000000000..425e8bf7e --- /dev/null +++ b/domains/www.all.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "record": { + "URL": "https://all.is-a.dev/" + } +} diff --git a/domains/www.angganix.json b/domains/www.angganix.json new file mode 100644 index 000000000..e7078cf3b --- /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" + }, + "record": { + "URL": "https://angganix.is-a.dev" + } +} diff --git a/domains/www.aswinmahesh.json b/domains/www.aswinmahesh.json index 6272bc668..d266113c5 100644 --- a/domains/www.aswinmahesh.json +++ b/domains/www.aswinmahesh.json @@ -1,6 +1,5 @@ { "description": "Aswin Mahesh Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" diff --git a/domains/www.aswinmaheshc.json b/domains/www.aswinmaheshc.json index ad48739bf..1e793d181 100644 --- a/domains/www.aswinmaheshc.json +++ b/domains/www.aswinmaheshc.json @@ -1,6 +1,5 @@ { "description": "Aswin Mahesh C Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" diff --git a/domains/www.bao.json b/domains/www.bao.json new file mode 100644 index 000000000..712d7588f --- /dev/null +++ b/domains/www.bao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bphamict", + "email": "bphamict@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/www.bteamapp.json b/domains/www.bteamapp.json new file mode 100644 index 000000000..7dea7e8b7 --- /dev/null +++ b/domains/www.bteamapp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/www.chat.alvin.json b/domains/www.chat.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/www.chat.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/www.dhlcgd.json b/domains/www.dhlcgd.json new file mode 100644 index 000000000..84adf8b6e --- /dev/null +++ b/domains/www.dhlcgd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/www.encoder.js.json b/domains/www.encoder.js.json new file mode 100644 index 000000000..78d2124d6 --- /dev/null +++ b/domains/www.encoder.js.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "record": { + "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..50a39e83b --- /dev/null +++ b/domains/www.fungaming.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "CNAME": "fungaming-discord-server.netlify.app" + } +} diff --git a/domains/www.harunabdullah.json b/domains/www.harunabdullah.json new file mode 100644 index 000000000..f535533c9 --- /dev/null +++ b/domains/www.harunabdullah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harunabdullahrakin" + }, + + "record": { + "A": ["185.31.40.12"] + } +} diff --git a/domains/www.joe50097.json b/domains/www.joe50097.json index f5c662b6a..7f5cfbe96 100644 --- a/domains/www.joe50097.json +++ b/domains/www.joe50097.json @@ -5,6 +5,5 @@ }, "record": { "CNAME": "joe50097.netlify.app" - }, - "proxied": false + } } diff --git a/domains/www.justdeveloper.json b/domains/www.justdeveloper.json new file mode 100644 index 000000000..a2dd570b7 --- /dev/null +++ b/domains/www.justdeveloper.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "record": { + "URL": "https://justdeveloper.is-a.dev/" + } +} diff --git a/domains/www.juststudio.json b/domains/www.juststudio.json new file mode 100644 index 000000000..68c44d3ee --- /dev/null +++ b/domains/www.juststudio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev" + }, + "record": { + "URL": "https://juststudio.is-a.dev/" + } +} diff --git a/domains/www.myforum.json b/domains/www.myforum.json new file mode 100644 index 000000000..e3f1896a0 --- /dev/null +++ b/domains/www.myforum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "myforum.mydiscussion.net" + } +} diff --git a/domains/www.paylink.joe50097.json b/domains/www.paylink.joe50097.json new file mode 100644 index 000000000..8e8189e0c --- /dev/null +++ b/domains/www.paylink.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "CNAME": "paylink-comming-soon.netlify.app" + } +} diff --git a/domains/www.sign.alvin.json b/domains/www.sign.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/www.sign.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "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..b174bda4e --- /dev/null +++ b/domains/www.tanuj-nagpal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanuj101", + "email": "tanujnagpal999@gmail.com" + }, + "record": { + "CNAME": "tanuj101.netlify.app" + } +} diff --git a/domains/www.todo.alvin.json b/domains/www.todo.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/www.todo.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/www.ttkt.json b/domains/www.ttkt.json new file mode 100644 index 000000000..7dea7e8b7 --- /dev/null +++ b/domains/www.ttkt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/www.vikipranata.json b/domains/www.vikipranata.json new file mode 100644 index 000000000..6f71cbfe9 --- /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" + }, + "record": { + "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..832d78797 --- /dev/null +++ b/domains/www.wizzybot.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "CNAME": "wizzybot.netlify.app" + } +} diff --git a/domains/wyatt.json b/domains/wyatt.json new file mode 100644 index 000000000..83dca1eb9 --- /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" + }, + "record": { + "CNAME": "ws998116.github.io" + } +} diff --git a/domains/x.json b/domains/x.json deleted file mode 100644 index beb04f342..000000000 --- a/domains/x.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "jvideo-sk", - "discord": "1030204181207859260" - }, - "record": { - "CNAME": "jvideo.github.io" - } -} diff --git a/domains/xavier.json b/domains/xavier.json new file mode 100644 index 000000000..e8c7047f4 --- /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" + }, + "record": { + "CNAME": "mrsiir.github.io" + } +} diff --git a/domains/xdevman.json b/domains/xdevman.json new file mode 100644 index 000000000..63b31eb54 --- /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" + }, + "record": { + "CNAME": "xdevman1.github.io" + } +} diff --git a/domains/xelkomy.json b/domains/xelkomy.json new file mode 100644 index 000000000..20fc3c873 --- /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" + }, + "record": { + "URL": "https://blog.xelkomy.com" + } +} diff --git a/domains/xelxen.json b/domains/xelxen.json index 870ca2b9c..cacb57e08 100644 --- a/domains/xelxen.json +++ b/domains/xelxen.json @@ -1,6 +1,5 @@ { "description": "I am a dev ig", - "repo": "https://github.com/xelxen.github.io", "owner": { "username": "XelXen", "email": "xelxenfox@gmail.com", diff --git a/domains/xen.json b/domains/xen.json deleted file mode 100644 index 2e6040a49..000000000 --- a/domains/xen.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Website for my projects", - "repo": "https://github.com/xenmods/xenmods.github.io", - "owner": { - "username": "xenmods", - "email": "ilumomin04@gmail.com", - "twitter": "momin_ilf" - }, - "record": { - "CNAME": "xenmods.github.io" - } -} diff --git a/domains/xenonrexo.json b/domains/xenonrexo.json new file mode 100644 index 000000000..61d5d10fb --- /dev/null +++ b/domains/xenonrexo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shshams", + "email": "shahadathossenshams@gmail.com" + }, + "record": { + "CNAME": "xenonrexo.vercel.app" + } +} diff --git a/domains/xgeneric.json b/domains/xgeneric.json new file mode 100644 index 000000000..53f4098c4 --- /dev/null +++ b/domains/xgeneric.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/xhide341.json b/domains/xhide341.json new file mode 100644 index 000000000..4d5e23169 --- /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" + }, + "record": { + "CNAME": "xhide341.netlify.app" + } +} diff --git a/domains/xiaoxi-tw.json b/domains/xiaoxi-tw.json index b0ed3594a..e84042a04 100644 --- a/domains/xiaoxi-tw.json +++ b/domains/xiaoxi-tw.json @@ -4,7 +4,7 @@ "owner": { "username": "jimmy20180130", "email": "jimmy20180130@gmail.com", - "twitter": "@jimmyyo45639462" + "twitter": "jimmyyo45639462" }, "record": { "CNAME": "jimmy20180130.github.io" diff --git a/domains/xkotelek.json b/domains/xkotelek.json index 18dd7be1e..0fa0378af 100644 --- a/domains/xkotelek.json +++ b/domains/xkotelek.json @@ -1,7 +1,6 @@ { "owner": { "username": "xKotelek", - "email": "98203141+xKotelek@users.noreply.github.com", "discord": "803159847641284640" }, "record": { diff --git a/domains/xmars.json b/domains/xmars.json new file mode 100644 index 000000000..845463ae9 --- /dev/null +++ b/domains/xmars.json @@ -0,0 +1,10 @@ +{ + "description": "My personal info", + "owner": { + "username": "xmars4", + "email": "xtruongptit@gmail.com" + }, + "record": { + "CNAME": "xmars4.github.io" + } +} 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..0c8b6392d --- /dev/null +++ b/domains/xperian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xperian48", + "discord": "xperian_48" + }, + "record": { + "CNAME": "xperian48.github.io" + } +} diff --git a/domains/xpugno.json b/domains/xpugno.json new file mode 100644 index 000000000..00fe20474 --- /dev/null +++ b/domains/xpugno.json @@ -0,0 +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"] + } +} diff --git a/domains/xrap1dx.json b/domains/xrap1dx.json index 3ce54e246..e5caaa0eb 100644 --- a/domains/xrap1dx.json +++ b/domains/xrap1dx.json @@ -1,6 +1,5 @@ { "description": "making a cool portfolio website.", - "repo": "https://github.com/xrap1dx?tab=repositories", "owner": { "username": "xrap1dx", "email": "sirrapid155@gmail.com" diff --git a/domains/xrendani.json b/domains/xrendani.json new file mode 100644 index 000000000..f4eeb53bf --- /dev/null +++ b/domains/xrendani.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "xrendani" + }, + "record": { + "CNAME": "xrendani.github.io" + } +} diff --git a/domains/xrvuloepjriu.sevinda-herath.json b/domains/xrvuloepjriu.sevinda-herath.json new file mode 100644 index 000000000..a4e12249d --- /dev/null +++ b/domains/xrvuloepjriu.sevinda-herath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "record": { + "CNAME": "gv-alvrz5ytmlhjh6.dv.googlehosted.com" + } +} diff --git a/domains/xryshirfxn.json b/domains/xryshirfxn.json deleted file mode 100644 index c2da6e5dc..000000000 --- a/domains/xryshirfxn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website", - "repo": "https://github.com/xryshirfxn/xryshirfxn.github.io", - "owner": { - "username": "xryshirfxn", - "twitter": "xryshirfxn" - }, - "record": { - "CNAME": "xryshirfxn.github.io" - } -} diff --git a/domains/xsamivs.json b/domains/xsamivs.json index faf0102a8..28e0af625 100644 --- a/domains/xsamivs.json +++ b/domains/xsamivs.json @@ -1,6 +1,5 @@ { "description": "Development Website of xSamiVS", - "repo": "https://github.com/xSamiVS", "owner": { "username": "xSamiVS", "discord": "xSamiVS - 455335173748162563" diff --git a/domains/xshubhamg.json b/domains/xshubhamg.json new file mode 100644 index 000000000..ffe57de9e --- /dev/null +++ b/domains/xshubhamg.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio site", + "owner": { + "username": "xshubhamg", + "email": "shubhammgiri3@gmail.com" + }, + "record": { + "URL": "https://nerd-cv.netlify.app/" + } +} 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/xuxxi.json b/domains/xuxxi.json deleted file mode 100644 index 271f5d7bb..000000000 --- a/domains/xuxxi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "XUXXI", - "repo": "https://github.com/XUXXI/xuxxi.github.io", - "owner": { - "username": "methaine", - "email": "keter@keemail.me" - }, - "record": { - "CNAME": "xuxxi.github.io" - } -} diff --git a/domains/xvannn07.json b/domains/xvannn07.json new file mode 100644 index 000000000..7ba5ec189 --- /dev/null +++ b/domains/xvannn07.json @@ -0,0 +1,10 @@ +{ + "owner": { + "email": "xvannn07@example.com", + "username": "Xvannn07" + }, + "record": { + "CNAME": "silly-arithmetic-ef452c.netlify.app" + }, + "proxy": false +} diff --git a/domains/xvrtech.json b/domains/xvrtech.json new file mode 100644 index 000000000..1172adb43 --- /dev/null +++ b/domains/xvrtech.json @@ -0,0 +1,11 @@ +{ + "description": "Toy website xvrtech.is-a.dev", + "repo": "https://github.com/FullStackedRVC/Agency.git", + "owner": { + "username": "FullStackedRVC", + "email": "robertocarov2@gmail.com" + }, + "record": { + "CNAME": "fullstackedrvc.github.io" + } +} diff --git a/domains/yahli.json b/domains/yahli.json new file mode 100644 index 000000000..94473bb32 --- /dev/null +++ b/domains/yahli.json @@ -0,0 +1,10 @@ +{ + "description": "Personal dev website", + "owner": { + "username": "yahligitzi", + "email": "yahligitzi2@gmail.com" + }, + "record": { + "CNAME": "yahligitzi.github.io" + } +} diff --git a/domains/yakate.json b/domains/yakate.json index aceacfc2d..941169dd5 100644 --- a/domains/yakate.json +++ b/domains/yakate.json @@ -7,6 +7,6 @@ "discord": "842070971669544982" }, "record": { - "CNAME": "oYakate.github.io" + "CNAME": "oyakate.github.io" } } diff --git a/domains/yamenher.json b/domains/yamenher.json new file mode 100644 index 000000000..c6654d8c5 --- /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" + }, + "record": { + "CNAME": "yamenher.github.io" + } +} \ No newline at end of file diff --git a/domains/yas.json b/domains/yas.json new file mode 100644 index 000000000..d3b5a8a8b --- /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" + }, + "record": { + "CNAME": "yashokuu.github.io" + } +} diff --git a/domains/yashas.json b/domains/yashas.json index 0aab88392..18ff198fd 100644 --- a/domains/yashas.json +++ b/domains/yashas.json @@ -1,6 +1,5 @@ { "description": "yashas.is-a.dev.", - "repo": "https://github.com/yashas9492", "owner": { "username": "Yashas9492", "email": "yashas.codes@gmail.com" diff --git a/domains/yashasviallen.json b/domains/yashasviallen.json index 84e098024..8932b058f 100644 --- a/domains/yashasviallen.json +++ b/domains/yashasviallen.json @@ -4,7 +4,6 @@ "email": "yashasviallen@gmail.com" }, "record": { - "CNAME": "yashasviallen.dynv6.net" - }, - "proxied": true + "NS": ["bethany.ns.cloudflare.com", "miles.ns.cloudflare.com"] + } } diff --git a/domains/yashita.json b/domains/yashita.json new file mode 100644 index 000000000..2fbb83dc3 --- /dev/null +++ b/domains/yashita.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashita1512", + "email": "yashita1512939@gmail.com" + }, + "record": { + "CNAME": "yashita1512.github.io" + } +} diff --git a/domains/yashnerkar.json b/domains/yashnerkar.json new file mode 100644 index 000000000..dcee824d0 --- /dev/null +++ b/domains/yashnerkar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashnerkar", + "email": "yashnerkar512@gmail.com" + }, + "record": { + "CNAME": "yashnerkar.github.io" + } +} diff --git a/domains/yashsachdev.json b/domains/yashsachdev.json new file mode 100644 index 000000000..ee20acfea --- /dev/null +++ b/domains/yashsachdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashsachdev", + "email": "yashsachdev5677@gmail.com" + }, + "record": { + "CNAME": "yashsachdevblog.azureedge.net" + } +} diff --git a/domains/yatharth.json b/domains/yatharth.json new file mode 100644 index 000000000..33f4922a8 --- /dev/null +++ b/domains/yatharth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yatharthbhatia", + "email": "yatharthbhatia2004@gmail.com" + }, + "record": { + "CNAME": "yatharth-bhatia.vercel.app" + } +} diff --git a/domains/yatinmalhotra.json b/domains/yatinmalhotra.json new file mode 100644 index 000000000..251d4a10c --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/yatsuki.json b/domains/yatsuki.json new file mode 100644 index 000000000..5e975566f --- /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." + }, + "record": { + "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..5302cfbe0 --- /dev/null +++ b/domains/yaxh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yaxhcodes", + "email": "meyashjoshi3101@gmail.com", + "discord": "965845932782526495" + }, + "record": { + "CNAME": "yaxhcodes.vercel.app" + } +} diff --git a/domains/yeasin.json b/domains/yeasin.json new file mode 100644 index 000000000..9cb2a9e92 --- /dev/null +++ b/domains/yeasin.json @@ -0,0 +1,11 @@ +{ + "description": "yeasin.is-a.dev", + "owner": { + "username": "yeasiin", + "email": "iamyeasiin@gmail.com" + }, + "record": { + "CNAME": "yeasiin.github.io" + }, + "proxied": true +} diff --git a/domains/yedu.json b/domains/yedu.json index 0d7d0b4ee..dd7837db0 100644 --- a/domains/yedu.json +++ b/domains/yedu.json @@ -6,6 +6,6 @@ "discord": "Chandler._bing__#8780" }, "record": { - "CNAME": "YeduKrishnanTY.github.io" + "CNAME": "yedukrishnanty.github.io" } } diff --git a/domains/yellososa.json b/domains/yellososa.json new file mode 100644 index 000000000..5673378fa --- /dev/null +++ b/domains/yellososa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dn1w", + "discord": "923208452581511199", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UYEThSdIZTWX2_fHUJL6USuvkXNHtizdv6i6tq7VlLbxQ8hB9ShSrlEvwEbAL7xapElXx-Zjn9-DeeQLlpD6evOb-qeUOLp2bBA_TK9RmLnJnQEfTNsnjZAJwkd_IZUWtSoPVISyooLfEIFROAalmyBvOqO4jo6f_VS62akDJjFkpNHGizyTy3Ap4o4ECYhw3DJDpj70ZUfYlMym4IR9vBx-FENksCdRszGj9uSnCqrut0ebez8BhS4orxwF3iyh2zjOJ9RnvZdaBUM_T0bovHD-4W26p4PiOXVlJG-TPiLAA1oJrpRTjO4pIOeokstysYJWCfZMtz8Vzf1wsAXUnw.AtmbV8Ll8uA5ExuCKoLJAA.rw-ak74Tw-ynZRDyHMgKIwwy6-i-RNUSCEHQrvr4lK24iT5nsdqkqzBPFbIAnpbL-UT9VjlXF5JE-VDkg4p9iXaTPcNm11FSaqOEFSwEPIY.LbsXNr4vTuO14AqbVrEXJA" + }, + + "record": { + "CNAME": "yellososa.github.io" + } +} diff --git a/domains/yfa.json b/domains/yfa.json index 15957ae73..97d460533 100644 --- a/domains/yfa.json +++ b/domains/yfa.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "URL": "https://github.com/YouFoundAlpha" diff --git a/domains/yfadev.json b/domains/yfadev.json index de728ae0b..b8fb29fda 100644 --- a/domains/yfadev.json +++ b/domains/yfadev.json @@ -1,11 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "URL": "https://github.com/yfadev" diff --git a/domains/yhkz.json b/domains/yhkz.json new file mode 100644 index 000000000..9b655ee3f --- /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" + }, + "record": { + "CNAME": "yhkz.github.io" + } +} diff --git a/domains/yigit.json b/domains/yigit.json index 3ad236f3b..7054ab487 100644 --- a/domains/yigit.json +++ b/domains/yigit.json @@ -1,12 +1,12 @@ { "description": "My Portfolio", - "repo": "https://github.com/yigitdev05/yigitdev05.github.io", + "repo": "https://github.com/devyigit/devyigit.github.io", "owner": { - "username": "yigitdev05", - "email": "yigitkabak@proton.me", + "username": "devyigit", + "email": "yigitkabak05@hotmail.com", "discord": "yigit.dev" }, "record": { - "CNAME": "yigitdev05.github.io" + "CNAME": "devyigit.github.io" } } diff --git a/domains/yisraeldov.json b/domains/yisraeldov.json new file mode 100644 index 000000000..f8d326cc0 --- /dev/null +++ b/domains/yisraeldov.json @@ -0,0 +1,10 @@ +{ + "description": "Yisrael Dov Lebow", + "owner": { + "username": "yisraeldov", + "email": "lebow@lebowtech.com" + }, + "record": { + "URL": "https://yisraeldov.gitlab.io" + } +} diff --git a/domains/yoan.json b/domains/yoan.json new file mode 100644 index 000000000..ab5b4d3ea --- /dev/null +++ b/domains/yoan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yoan-gilliand", + "email": "yoangilliand@gmail.com" + }, + "record": { + "CNAME": "yoan-gilliand.vercel.app" + } +} diff --git a/domains/yohanesrioirsan.json b/domains/yohanesrioirsan.json new file mode 100644 index 000000000..dcc978126 --- /dev/null +++ b/domains/yohanesrioirsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yohanesrioirsan", + "email": "rioirsan8@gmail.com" + }, + "record": { + "CNAME": "yohanesrioirsan.vercel.app" + } +} diff --git a/domains/youcef.json b/domains/youcef.json new file mode 100644 index 000000000..860152629 --- /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" + }, + "record": { + "CNAME": "youcef-addou.netlify.app" + } +} diff --git a/domains/youfoundalpha.json b/domains/youfoundalpha.json index 567d3dba5..0d0a81148 100644 --- a/domains/youfoundalpha.json +++ b/domains/youfoundalpha.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "URL": "https://github.com/YouFoundAlpha", diff --git a/domains/youfoundalpha.youfoundalpha.json b/domains/youfoundalpha.youfoundalpha.json index 291af052a..17b87a959 100644 --- a/domains/youfoundalpha.youfoundalpha.json +++ b/domains/youfoundalpha.youfoundalpha.json @@ -1,10 +1,9 @@ { "owner": { "username": "YouFoundAlpha", - "Discord": "661121998830960651", - "GitHub": "YouFoundAlpha", - "GitLab": "YouFoundAlpha", - "Mastodon": "@YouFoundAlpha@mastodon.social" + "discord": "661121998830960651", + "gitlab": "YouFoundAlpha", + "mastodon": "@YouFoundAlpha@mastodon.social" }, "record": { "URL": "https://youfoundalpha.is-a.dev" diff --git a/domains/your-dad.json b/domains/your-dad.json new file mode 100644 index 000000000..7f288db42 --- /dev/null +++ b/domains/your-dad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Satindar31", + "email": "satindar@satindar-is.me" + }, + "record": { + "URL": "https://cloud.satindar-is.me/s/gHJfbiyhVJzy3Vs" + } +} diff --git a/domains/your-mom.json b/domains/your-mom.json new file mode 100644 index 000000000..3921c95de --- /dev/null +++ b/domains/your-mom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me" + }, + "record": { + "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/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/yousef.json b/domains/yousef.json new file mode 100644 index 000000000..28ce8749c --- /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" + }, + "record": { + "CNAME": "yys-yss.github.io" + } +} diff --git a/domains/youssef.json b/domains/youssef.json index c27748e3d..94f62f7dc 100644 --- a/domains/youssef.json +++ b/domains/youssef.json @@ -1,9 +1,9 @@ { "owner": { - "username": "youssefsiam38", - "email": "youssef1yasser38@gmail.com" + "username": "YoussefDevPro", + "email": "youssef.pro.coding@gmail.com" }, "record": { - "CNAME": "youssefsiam38.github.io" + "CNAME": "youssef-portfolio-sigma-youssefdevpros-projects.vercel.app" } } diff --git a/domains/ysfchn.json b/domains/ysfchn.json index 4ba9d55af..05a75f816 100644 --- a/domains/ysfchn.json +++ b/domains/ysfchn.json @@ -1,6 +1,5 @@ { "description": "ysfchn's personal website", - "repo": "https://github.com/ysfchn", "owner": { "username": "ysfchn", "email": "hi@ysfchn.com" diff --git a/domains/ysoseriouz.json b/domains/ysoseriouz.json new file mode 100644 index 000000000..ed5fa1f31 --- /dev/null +++ b/domains/ysoseriouz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ysoseriouz", + "email": "thanh.nguyen.ntt2612@gmail.com" + }, + "record": { + "CNAME": "ysoseriouz.com" + } +} diff --git a/domains/ysyz.json b/domains/ysyz.json new file mode 100644 index 000000000..3d34c0eb3 --- /dev/null +++ b/domains/ysyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yishuiyizhong", + "email": "sife@sife.is-a.dev" + }, + "record": { + "CNAME": "yishuiyizhong.github.io" + } +} diff --git a/domains/yt.anw.json b/domains/yt.anw.json new file mode 100644 index 000000000..dd1eb6c91 --- /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" + }, + "record": { + "URL": "https://www.youtube.com/@ANormalWintrovert" + } +} diff --git a/domains/ai-y.yunexiz.json b/domains/yu.json similarity index 70% rename from domains/ai-y.yunexiz.json rename to domains/yu.json index 0ab726729..47b754fa2 100644 --- a/domains/ai-y.yunexiz.json +++ b/domains/yu.json @@ -4,6 +4,6 @@ "discord": "1040303561847881729" }, "record": { - "CNAME": "yunexiz.github.io" + "CNAME": "redirecting-for-yu.pages.dev" } } diff --git a/domains/yujia.json b/domains/yujia.json index 515025c08..6822324d1 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": { - "CNAME": "YujiaY.github.io" + "CNAME": "yujiay.github.io" } } diff --git a/domains/yunexiz.json b/domains/yunexiz.json index f7ee5f81c..ba62230ec 100644 --- a/domains/yunexiz.json +++ b/domains/yunexiz.json @@ -17,8 +17,7 @@ "2606:50c0:8003::153" ], "TXT": [ - "v=spf1 include:spf.improvmx.com ~all", - "google-site-verification=JaMCz_HK22wQhiZbF-51XTXAzEEt3qBYCMo2g_86BWo" + "v=spf1 include:spf.improvmx.com ~all" ], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] } diff --git a/domains/yurei.json b/domains/yurei.json new file mode 100644 index 000000000..02bc168eb --- /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" + }, + "record": { + "A": ["75.2.60.5"] + }, +"proxied": true +} diff --git a/domains/yurimontero.json b/domains/yurimontero.json new file mode 100644 index 000000000..e8e38480c --- /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" + }, + "record": { + "CNAME": "yurimontero.github.io" + } +} diff --git a/domains/yxz.json b/domains/yxz.json index 1e964a44c..3aea970b6 100644 --- a/domains/yxz.json +++ b/domains/yxz.json @@ -2,9 +2,22 @@ "repo": "https://github.com/yz9551/blog", "owner": { "username": "yz9551", - "email": "yixuan0808@gmail.com" + "discord": "yz9551" }, "record": { - "CNAME": "yz9551.github.io" + "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 d82d37d1e..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/zahid.json b/domains/zahid.json new file mode 100644 index 000000000..8a0a68eb4 --- /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" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/zalex.json b/domains/zalex.json new file mode 100644 index 000000000..fd77b578a --- /dev/null +++ b/domains/zalex.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/zalnars.json b/domains/zalnars.json new file mode 100644 index 000000000..e25d17105 --- /dev/null +++ b/domains/zalnars.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "zalnars", + "email": "zalnars@proton.me", + "discord": "zalnars" + }, + "record": { + "CNAME": "zalnars.vercel.app" + } +} diff --git a/domains/zara.json b/domains/zara.json new file mode 100644 index 000000000..b5b4b0676 --- /dev/null +++ b/domains/zara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tutupharirabu", + "email": "code.zharaurien@gmail.com" + }, + "record": { + "CNAME": "portofolio-pribadi-irfan-zharauri.vercel.app" + } +} diff --git a/domains/zehao.json b/domains/zehao.json new file mode 100644 index 000000000..d2f99bc95 --- /dev/null +++ b/domains/zehao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "2eha0", + "email": "zehao93@outlook.com" + }, + "record": { + "CNAME": "blog-pi-eight.vercel.app" + } +} diff --git a/domains/zenpai.json b/domains/zenpai.json deleted file mode 100644 index 94baaf6a8..000000000 --- a/domains/zenpai.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "zenpai.is-a.dev", - "repo": "https://github.com/ZenpaiAng/ZenpaiAng.github.io", - "owner": { - "username": "ZenpaiAng", - "email": "zenpaiang@gmail.com", - "discord": "zenpaiang" - }, - "record": { - "CNAME": "ZenpaiAng.github.io" - } -} diff --git a/domains/zerot69.json b/domains/zerot69.json new file mode 100644 index 000000000..1b2d17044 --- /dev/null +++ b/domains/zerot69.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zerot69", + "email": "ngo.vo.hoang.tuan.69@gmail.com" + }, + "record": { + "CNAME": "zerot69.github.io" + } +} diff --git a/domains/zevobla.json b/domains/zevobla.json index d0896aa96..972a02784 100644 --- a/domains/zevobla.json +++ b/domains/zevobla.json @@ -5,6 +5,7 @@ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Yl52Rrzzsl6pjhBgVkYA_NfGUZUHIp18-pe5PQVvoVI_7U_nksgv91HNcy56xoSJ9A8WUJCeE8qwfsenu9qwHVyWlAuNuWKfEMdM4vAI0V_AuW_1YaIm-0ObrxQsOPMohv9n7e6b5vSLz3f7EKsbiqtebvwF1ebxxqN85t64ZrfCSEBATl3sCjR-vLAORej4Kj3MpgKe7Le1qsoey3u5SR1FvGezQh3PLljcKlR72g0TKvkn8WnF2JicERNDNFJYnwipt-G0HyvibpTsh7trMrcrSEfDYFxGkDLYhgHo02RvUhXer4mtCCvMUX2MgsGraqxDBdASwfk62Jn2EINU6Q.PxrZtoeRnAFNvkmvd0vAMg.xokePgy944ELwFNV_7CzH4K_ylDYFqd_rC-XnvJAt22K2dYKk5SVjftxmLJhwib-BcZh-Aqx7FkRmR3bytAKic2a_vdnmkV6c_tuDbSsJviXViBKpPDPhDF2DoWRBvTI.b2HHi1Vk1_cUmFDkZOclbw" }, "record": { - "A": ["77.238.238.131"] + "A": ["46.23.81.157"], + "AAAA": ["2a03:6000:1813:1337::157"] } } diff --git a/domains/zhangximufeng.json b/domains/zhangximufeng.json index 9d323e515..6a913196a 100644 --- a/domains/zhangximufeng.json +++ b/domains/zhangximufeng.json @@ -1,6 +1,5 @@ { "description": "Link to my github", - "repo": "https://github.com/zhangximufeng", "owner": { "username": "zhangximufeng", "email": "zhangximufeng@gmail.com" diff --git a/domains/zilu.json b/domains/zilu.json new file mode 100644 index 000000000..14752d628 --- /dev/null +++ b/domains/zilu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zilurrane", + "email": "zilurrane@gmail.com" + }, + "record": { + "CNAME": "zilu.dev" + } +} diff --git a/domains/zinko.json b/domains/zinko.json new file mode 100644 index 000000000..66fa3689a --- /dev/null +++ b/domains/zinko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zink0", + "email": "zinko.it@outlook.com" + }, + "record": { + "CNAME": "zink0.github.io" + } +} diff --git a/domains/ziyn.json b/domains/ziyn.json index 46eb37803..5ae5c5423 100644 --- a/domains/ziyn.json +++ b/domains/ziyn.json @@ -1,7 +1,7 @@ { "owner": { - "username": "ziyndev", - "email": "is-a-dev@ziyn.us.kg" + "username": "chromapher", + "email": "notziyn@gmail.com" }, "record": { "CNAME": "ziyn.pages.dev" diff --git a/domains/zk.json b/domains/zk.json index dc7c9fa51..4572116c9 100644 --- a/domains/zk.json +++ b/domains/zk.json @@ -1,6 +1,5 @@ { "description": "ZK's Website", - "repo": "https://github.com/p55d2k", "owner": { "username": "p55d2k", "email": "peanutandscuffy1@gmail.com" diff --git a/domains/zmail._domainkey.ante.json b/domains/zmail._domainkey.ante.json new file mode 100644 index 000000000..b5835f7ca --- /dev/null +++ b/domains/zmail._domainkey.ante.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "record": { + "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..33b32cc16 --- /dev/null +++ b/domains/zmail._domainkey.aruria.json @@ -0,0 +1,10 @@ +{ + "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": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDKr1YCFtXzTufNgvRlYuDw72rzN8WBF+F8xNRtI5PwvfVyFEAS7saeRf6hqQ28hdqH8FFmJ9479UkP0023gyUyQcpRQnqu01InfoyPCIicCRv/WQBTKyb0YXMtrF3ANZHBDq0p2lcp/naUtPs2oQEuSI5Ih+SfsCs5HnCRTyV2DQIDAQABl" + } +} diff --git a/domains/zmail._domainkey.joe50097.json b/domains/zmail._domainkey.joe50097.json new file mode 100644 index 000000000..95c73521b --- /dev/null +++ b/domains/zmail._domainkey.joe50097.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCWPXItvPXEQh/zTsZCFkEcBEObetcpbthrO74OK/zYR+wCk9gHurppJw0nTPcqVVW92Iq78R1b85s6bmGQvFCdMXPM/kM4eWlKKrMcs4QMr8muioEtbyCKu1YenXHZYlns7dfpf5JN2PNnC3cXTTW5uu3F2GNSDXcy/IjhnuSJAwIDAQAB" + } +} diff --git a/domains/zmail._domainkey.lohit.json b/domains/zmail._domainkey.lohit.json new file mode 100644 index 000000000..d02c5d24a --- /dev/null +++ b/domains/zmail._domainkey.lohit.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "lohitkolluri", + "email": "lohitkolluri@gmail.com", + "discord": "drxven" + }, + "record": { + "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..20b5d4dd5 --- /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" + }, + "record": { + "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 44b0f9478..ef878b082 100644 --- a/domains/zmail._domainkey.m.ps.json +++ b/domains/zmail._domainkey.m.ps.json @@ -4,7 +4,7 @@ "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": { + "record": { "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCJ+VFtI0MbKtqwscVOmrqxUWdUDP0e1sMefD/t/AW5YhlGZVkMWGtJ8f/AMx3wIdZXZbvxORpwip1V6wTC45+NbuIToOArp+S4Su9Z0uKF5IyC/3y07XchKFePXpp0gCAjMuLby+gOGlaXp61Uxfcnt1ZyUR7hydVppAwXSoYrrwIDAQAB" } } diff --git a/domains/zmail._domainkey.mail.mrstickypiston.json b/domains/zmail._domainkey.mail.mrstickypiston.json new file mode 100644 index 000000000..052b699ad --- /dev/null +++ b/domains/zmail._domainkey.mail.mrstickypiston.json @@ -0,0 +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=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQzqCyycL/D4W2wxwRFdiQuDNf0ityvD6KD71b67nse9rbSgQ+03F/Yt7F19nPvnmgSElmaf7yUcQajw2Nhr4xAK95NUgBkjuF4ofkXZnqw7fyVz5JdVU504yPXzLCj5SxSU2Rbu5WS+rXr0P86jjUfNWVPs30p3RTgJDJRoQgBQIDAQAB" + } +} diff --git a/domains/zold.json b/domains/zold.json new file mode 100644 index 000000000..b963d5b52 --- /dev/null +++ b/domains/zold.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AhmedOsamaMath", + "email": "ahmedosamamath@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/zoldyako.json b/domains/zoldyako.json new file mode 100644 index 000000000..d5caacef2 --- /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" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/zuhair.json b/domains/zuhair.json index 98f8a7368..1b1596be4 100644 --- a/domains/zuhair.json +++ b/domains/zuhair.json @@ -4,6 +4,6 @@ "email": "20-42115-1@student.aiub.edu" }, "record": { - "CNAME": "ZuhairTarif.github.io" + "CNAME": "zuhairtarif.github.io" } } diff --git a/domains/zvdxc.json b/domains/zvdxc.json index 2d357bd7c..977b7c3b9 100644 --- a/domains/zvdxc.json +++ b/domains/zvdxc.json @@ -4,6 +4,6 @@ "email": "zvdxc11@gmail.com" }, "record": { - "CNAME": "mysite-e7j.pages.dev" + "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] } } diff --git a/domains/zwel.json b/domains/zwel.json new file mode 100644 index 000000000..b831f6698 --- /dev/null +++ b/domains/zwel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zwelhtetyan", + "email": "zwelhtetyandev@gmail.com" + }, + "record": { + "CNAME": "zwel.pages.dev" + } +} diff --git a/domains/zxlbni.json b/domains/zxlbni.json index 3c8e46783..78ad5c23b 100644 --- a/domains/zxlbni.json +++ b/domains/zxlbni.json @@ -4,6 +4,6 @@ "email": "dolabani46@gmail.com" }, "record": { - "CNAME": "ZxLbni.github.io" + "CNAME": "zxlbni.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/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 eddb7833c..43395fcda 100644 --- a/tests/domains.test.js +++ b/tests/domains.test.js @@ -3,33 +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")); + +const domainCache = {}; + +function getDomainData(subdomain) { + if (domainCache[subdomain]) { + return domainCache[subdomain]; + } + + try { + 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}`); + } +} t("Nested subdomains should not exist without a parent subdomain", (t) => { files.forEach((file) => { - const subdomain = file.replace(".json", ""); + const subdomain = file.replace(/\.json$/, ""); + const parts = subdomain.split("."); - if (subdomain.split(".").length > 1) { - const parentSubdomain = subdomain.split(".").pop(); + for (let i = 1; i < parts.length; i++) { + const parent = parts.slice(i).join("."); + if (parent.startsWith("_")) continue; - t.true(files.includes(`${parentSubdomain}.json`), `${file}: Parent subdomain does not exist`); + 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) => { +t("Nested subdomains should not exist if any parent subdomain has NS records", (t) => { files.forEach((file) => { - const subdomain = file.replace(".json", ""); + const subdomain = file.replace(/\.json$/, ""); + const parts = subdomain.split("."); - if (subdomain.split(".").length > 1) { - const parentSubdomain = subdomain.split(".").pop(); - const parentDomain = fs.readJsonSync(path.join(domainsPath, `${parentSubdomain}.json`)); + 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.is(parentDomain.record.NS, undefined, `${file}: Parent subdomain has NS records`); + t.true(!parentData.record.NS, `${file}: Parent subdomain "${parent}" has NS records`); + } + }); +}); + +t("Nested subdomains should be owned by the parent subdomain's owner", (t) => { + files.forEach((file) => { + const subdomain = file.replace(/\.json$/, ""); + const parentDomain = subdomain.split(".").reverse()[0]; + + if (parentDomain !== subdomain) { + const data = getDomainData(subdomain); + const parentData = getDomainData(parentDomain); + + t.true( + data.owner.username.toLowerCase() === parentData.owner.username.toLowerCase(), + `${file}: Owner does not match the parent subdomain` + ); + } + }); +}); + +t("Users are limited to one single character subdomain", (t) => { + const results = []; + + files.forEach((file) => { + const subdomain = file.replace(/\.json$/, ""); + const data = getDomainData(subdomain); + + 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 1a737900e..4da5b896f 100644 --- a/tests/json.test.js +++ b/tests/json.test.js @@ -2,6 +2,8 @@ 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" @@ -9,7 +11,7 @@ const requiredFields = { const optionalFields = { proxied: "boolean", - reserved: "boolean" + redirect_config: "object" }; const requiredOwnerFields = { @@ -20,76 +22,154 @@ const optionalOwnerFields = { email: "string" }; +const optionalRedirectConfigFields = { + custom_paths: "object", + redirect_paths: "boolean" +}; + 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 exceptedDomains = require("../util/excepted.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) { + 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.false(file.startsWith("_redirect."), `${file}: File name should not start with _redirect`); -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`); + if (file !== "@.json") { + const subdomain = file.replace(/\.json$/, ""); - // Ignore root domain - if (file !== "@.json") { - t.regex( - file.replace(/\.json$/, "") + ".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(reservedDomains.includes(subdomain), `${file}: Subdomain name is reserved`); + t.true( + !reservedDomains.some((reserved) => subdomain.endsWith(`.${reserved}`)), + `${file}: Subdomain name is reserved` + ); + + const rootSubdomain = subdomain.split(".").pop(); + + if (!exceptedDomains.includes(rootSubdomain)) { + t.false(rootSubdomain.startsWith("_"), `${file}: Root subdomains should not start with an underscore`); } - }); + } +} + +async function processFile(file, t) { + const filePath = path.join(domainsPath, file); + const data = await fs.readJson(filePath); + + validateFileName(t, file); + + // Validate fields and duplicates + validateFields(t, data, requiredFields, file); + validateFields(t, data.owner, requiredOwnerFields, file, "owner"); + validateFields(t, data.owner, optionalOwnerFields, file, "owner"); + validateFields(t, data, optionalFields, file); + + if (data.redirect_config) { + validateFields(t, data.redirect_config, optionalRedirectConfigFields, file, "redirect_config"); + } + + 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` + ); + } + + 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("JSON files should not be in the root directory", (t) => { + const rootFiles = fs + .readdirSync(path.resolve()) + .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 have the required fields", (t) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); - - validateRequiredFields(t, data, requiredFields, file); - validateRequiredFields(t, data.owner, requiredOwnerFields, file); - - if (!data.reserved) { - t.true(Object.keys(data.record).length > 0, `${file}: No record types found`); - } - }); +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 optional fields", (t) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); +t("All files should have valid file names", async (t) => { + await Promise.all(files.map((file) => validateFileName(t, file))); +}); - validateOptionalFields(t, data, optionalFields, file); - validateOptionalFields(t, data.owner, optionalOwnerFields, file); - - if (data.owner.email) { - t.regex(data.owner.email, emailRegex, `${file}: Owner email should be a valid email address`); - } - }); +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 7e8299c70..4a193a5d5 100644 --- a/tests/proxy.test.js +++ b/tests/proxy.test.js @@ -2,24 +2,50 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); -const requiredRecordsToProxy = ["A", "AAAA", "CNAME"]; -// URL records are not listed here because they are proxied by default, so they don't need the proxied flag +const requiredRecordsToProxy = new Set(["A", "AAAA", "CNAME"]); + +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) { - if (data.proxied) { - const hasProxiedRecord = Object.keys(data.record).some((key) => requiredRecordsToProxy.includes(key)); + const recordTypes = Array.from(requiredRecordsToProxy).join(", "); - t.true(hasProxiedRecord, `${file}: Proxied is true but there are no records that can be proxied`); + // 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)); + + t.true( + hasProxiedRecord, + `${file}: Proxied is true but there are no records that can be proxied (${recordTypes} expected)` + ); } } const domainsPath = path.resolve("domains"); -const files = fs.readdirSync(domainsPath); +const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json")); -t("Domains with proxy enabled should have 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 90011493e..573e0604e 100644 --- a/tests/records.test.js +++ b/tests/records.test.js @@ -2,28 +2,39 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); -const validRecordTypes = ["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) { - // Split into segments by ":" let segments = ip.split(":"); - - // Count the number of segments that are empty due to "::" shorthand const emptyIndex = segments.indexOf(""); + if (emptyIndex !== -1) { - // Calculate how many "0000" segments are missing const nonEmptySegments = segments.filter((seg) => seg !== ""); const missingSegments = 8 - nonEmptySegments.length; - // Insert the missing "0000" segments into the position of the empty segment segments = [ ...nonEmptySegments.slice(0, emptyIndex), ...Array(missingSegments).fill("0000"), @@ -31,333 +42,291 @@ function expandIPv6(ip) { ]; } - // Expand each segment to 4 characters, padding with leading zeros - const expandedSegments = segments.map((segment) => segment.padStart(4, "0")); - - // Join the segments back together - return expandedSegments.join(":"); + return segments.map((segment) => segment.padStart(4, "0")).join(":"); } -function isPublicIPv4(ip, proxied) { +function validateIPv4(ip, proxied) { const parts = ip.split(".").map(Number); - // Validate IPv4 address format - if (parts.length !== 4 || parts.some((part) => isNaN(part) || part < 0 || part > 255)) { - return false; - } + if (parts.length !== 4 || parts.some((part) => isNaN(part) || part < 0 || part > 255)) return false; + if (ip === "192.0.2.1" && proxied) return true; - // Exception for 192.0.2.1, assuming the domain is proxied - if (ip === "192.0.2.1" && proxied) { - return true; - } - - // Check for private and reserved IPv4 ranges return !( - // Private ranges - ( - parts[0] === 10 || - (parts[0] === 172 && parts[1] >= 16 && parts[1] <= 31) || - (parts[0] === 192 && parts[1] === 168) || - // Reserved or special-use ranges - (parts[0] === 100 && parts[1] >= 64 && parts[1] <= 127) || // Carrier-grade NAT - (parts[0] === 169 && parts[1] === 254) || // Link-local - (parts[0] === 192 && parts[1] === 0 && parts[2] === 0) || // IETF Protocol Assignments - (parts[0] === 192 && parts[1] === 0 && parts[2] === 2) || // Documentation (TEST-NET-1) - (parts[0] === 198 && parts[1] === 18) || // Network Interconnect Devices - (parts[0] === 198 && parts[1] === 51 && parts[2] === 100) || // Documentation (TEST-NET-2) - (parts[0] === 203 && parts[1] === 0 && parts[2] === 113) || // Documentation (TEST-NET-3) - parts[0] >= 224 - ) // Multicast and reserved ranges + parts[0] === 10 || + (parts[0] === 172 && parts[1] >= 16 && parts[1] <= 31) || + (parts[0] === 192 && parts[1] === 168) || + (parts[0] === 100 && parts[1] >= 64 && parts[1] <= 127) || + (parts[0] === 169 && parts[1] === 254) || + (parts[0] === 192 && parts[1] === 0 && parts[2] === 0) || + (parts[0] === 192 && parts[1] === 0 && parts[2] === 2) || + (parts[0] === 198 && parts[1] === 18) || + (parts[0] === 198 && parts[1] === 51 && parts[2] === 100) || + (parts[0] === 203 && parts[1] === 0 && parts[2] === 113) || + parts[0] >= 224 ); } -function isPublicIPv6(ip) { - const normalizedIP = ip.toLowerCase(); - - // Check for private or special-use IPv6 ranges +function validateIPv6(ip) { return !( - ( - normalizedIP.startsWith("fc") || // Unique Local Address (ULA) - normalizedIP.startsWith("fd") || // Unique Local Address (ULA) - normalizedIP.startsWith("fe80") || // Link-local - normalizedIP.startsWith("::1") || // Loopback address (::1) - normalizedIP.startsWith("2001:db8") - ) // Documentation range + ip.toLowerCase().startsWith("fc") || + ip.toLowerCase().startsWith("fd") || + ip.toLowerCase().startsWith("fe80") || + ip.toLowerCase().startsWith("::1") || + ip.toLowerCase().startsWith("2001:db8") ); } +function validateRecordType(recordType) { + return validRecordTypes.has(recordType); +} + +function isValidHostname(hostname) { + return hostnameRegex.test(hostname); +} + +function isValidHexadecimal(value) { + return /^[0-9a-fA-F]+$/.test(value); +} + +function validateRecordValues(t, data, file) { + const subdomain = file.replace(/\.json$/, ""); + + Object.entries(data.record).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 !== file, `${file}: CNAME cannot point to itself`); + } 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}`); + + const urlHost = new URL(value).host; + const isSelfReferencing = + file === "@.json" ? urlHost === "is-a.dev" : urlHost === `${subdomain}.is-a.dev`; + + t.false(isSelfReferencing, `${file}: URL 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.record.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; + const isSelfReferencing = file === "@.json" ? urlHost === "is-a.dev" : urlHost === `${subdomain}.is-a.dev`; + t.false(isSelfReferencing, `${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 data = getDomainData(file); const recordKeys = Object.keys(data.record); recordKeys.forEach((key) => { - t.true(validRecordTypes.includes(key), `${file}: Invalid record type: ${key}`); + t.true(validateRecordType(key), `${file}: Invalid record type: ${key}`); }); - // CNAME records cannot be combined with any other record type - if (recordKeys.includes("CNAME")) { - t.is(recordKeys.length, Number(1), `${file}: CNAME records cannot be combined with other records`); + // 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`); } - - // NS records cannot be combined with any other record type, except for DS records 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` ); } - - // DS records must be combined with NS 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) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); +t("Root subdomains should have at least one usable record", (t) => { + const usableRecordTypes = ["A", "AAAA", "CNAME", "MX", "NS", "URL"]; + files.forEach((file) => { + const subdomain = file.replace(/\.json$/, ""); + if (subdomain.includes(".") || subdomain.startsWith("_")) return; + + const data = getDomainData(file); const recordKeys = Object.keys(data.record); - const uniqueRecordKeys = new Set(recordKeys); - 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]; - - // *: string[] - if (["A", "AAAA", "MX", "NS"].includes(key)) { - t.true(Array.isArray(value), `${file}: Record value should be an array for ${key}`); - - value.forEach((record) => { - t.true( - typeof record === "string", - `${file}: Record value should be a string for ${key} at index ${value.indexOf(record)}` - ); - }); - - // A: string[] - if (key === "A") { - value.forEach((record) => { - t.regex( - record, - ipv4Regex, - `${file}: Record value should be a valid IPv4 address for ${key} at index ${value.indexOf( - record - )}` - ); - - t.true( - isPublicIPv4(record, data.proxied), - `${file}: Record value should be a public IPv4 address for ${key} at index ${value.indexOf( - record - )}` - ); - }); - } - - // AAAA: string[] - if (key === "AAAA") { - value.forEach((record) => { - t.regex( - expandIPv6(record), - ipv6Regex, - `${file}: Record value should be a valid IPv6 address for ${key} at index ${value.indexOf( - record - )}` - ); - - t.true( - isPublicIPv6(record), - `${file}: Record value should be a public IPv6 address for ${key} at index ${value.indexOf( - record - )}` - ); - }); - } - - // *: string[] - if (["MX", "NS"].includes(key)) { - value.forEach((record) => { - t.regex( - record, - hostnameRegex, - `${file}: Record value should be a valid hostname for ${key} at index ${value.indexOf( - record - )}` - ); - }); - } - } - - // *: string - if (["CNAME", "URL"].includes(key)) { - t.true(typeof value === "string", `${file}: Record value should be a string for ${key}`); - - if (key === "CNAME") { - t.regex(value, hostnameRegex, `${file}: Record value should be a valid hostname for ${key}`); - - if(file === "@.json") { - t.false( - value === "is-a.dev", - `${file}: Record value should not reference itself for ${key}` - ); - } else { - t.false( - value === file.replace(/\.json$/, "") + ".is-a.dev", - `${file}: Record value should not reference itself for ${key}` - ); - } - } - - if (key === "URL") { - t.notThrows(() => new URL(value), `${file}: Record value should be a valid URL for ${key}`); - - if(file === "@.json") { - t.false( - value === "http://is-a.dev", - `${file}: Record value should not reference itself for ${key}` - ); - t.false( - value === "https://is-a.dev", - `${file}: Record value should not reference itself for ${key}` - ); - } else { - t.false( - value === "http://" + file.replace(/\.json$/, "") + ".is-a.dev", - `${file}: Record value should not reference itself for ${key}` - ); - t.false( - value === "https://" + file.replace(/\.json$/, "") + ".is-a.dev", - `${file}: Record value should not reference itself for ${key}` - ); - } - } - } - - // *: {}[] - if (["CAA", "DS", "SRV"].includes(key)) { - t.true(Array.isArray(value), `${file}: Record value should be an array for ${key}`); - - value.forEach((record) => { - t.true( - typeof record === "object", - `${file}: Record value should be an object for ${key} at index ${value.indexOf(record)}` - ); - }); - - // CAA: { flags: number, tag: string, value: string }[] - if (key === "CAA") { - value.forEach((record) => { - t.true( - typeof record.flags === "number", - `${file}: CAA record value should have a number for flags at index ${value.indexOf(record)}` - ); - - t.true( - typeof record.tag === "string", - `${file}: CAA record value should have a string for tag at index ${value.indexOf(record)}` - ); - - t.true( - typeof record.value === "string", - `${file}: CAA record value should have a string for value at index ${value.indexOf(record)}` - ); - }); - } - - // DS: { key_tag: number, algorithm: number, digest_type: number, digest: string }[] - if (key === "DS") { - value.forEach((record) => { - t.true( - typeof record.key_tag === "number", - `${file}: DS record value should have a number for key_tag at index ${value.indexOf( - record - )}` - ); - - t.true( - typeof record.algorithm === "number", - `${file}: DS record value should have a number for algorithm at index ${value.indexOf( - record - )}` - ); - - t.true( - typeof record.digest_type === "number", - `${file}: DS record value should have a number for digest_type at index ${value.indexOf( - record - )}` - ); - - t.true( - typeof record.digest === "string", - `${file}: DS record value should have a string for digest at index ${value.indexOf(record)}` - ); - }); - } - - // SRV: { priority: number, weight: number, port: number, target: string }[] - if (key === "SRV") { - value.forEach((record) => { - t.true( - typeof record.priority === "number", - `${file}: SRV record value should have a number for priority at index ${value.indexOf( - record - )}` - ); - - t.true( - typeof record.weight === "number", - `${file}: SRV record value should have a number for weight at index ${value.indexOf( - record - )}` - ); - - t.true( - typeof record.port === "number", - `${file}: SRV record value should have a number for port at index ${value.indexOf(record)}` - ); - - t.true( - typeof record.target === "string", - `${file}: SRV record value should have a string for target at index ${value.indexOf( - record - )}` - ); - - t.regex( - value.target, - hostnameRegex, - `${file}: SRV record value should be a valid hostname for target at index ${value.indexOf( - record - )}` - ); - }); - } - } - - // TXT: string | string[] - if (key === "TXT") { - if (Array.isArray(value)) { - value.forEach((record) => { - t.true( - typeof record === "string", - `${file}: Record value should be a string for ${key} at index ${value.indexOf(record)}` - ); - }); - } else { - t.true(typeof value === "string", `${file}: Record value should be a string for ${key}`); - } - } - }); + 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/excepted.json b/util/excepted.json new file mode 100644 index 000000000..9f7268d2e --- /dev/null +++ b/util/excepted.json @@ -0,0 +1,6 @@ +[ + "_discord", + "_psl", + "_gh-is-a-dev-o", + "_github-pages-challenge-is-a-dev" +] diff --git a/util/reserved.json b/util/reserved.json new file mode 100644 index 000000000..66153768a --- /dev/null +++ b/util/reserved.json @@ -0,0 +1,167 @@ +[ + "_zone-updated", + "about", + "account", + "accounts", + "admin", + "api", + "apis", + "app", + "apps", + "assets", + "auth", + "authentication", + "authorisation", + "authorise", + "authorization", + "authorize", + "ad", + "ads", + "billing", + "blog", + "board", + "bot", + "cdn", + "chat", + "checkout", + "cname", + "co", + "com", + "con", + "contribute", + "contributing", + "dash", + "dashboard", + "dns", + "doc", + "documentation", + "domain", + "email", + "example", + "feedback", + "file", + "files", + "get", + "help", + "helper", + "helpers", + "home", + "hostmaster", + "http", + "https", + "info", + "int", + "internal", + "legal", + "license", + "login", + "lpt1", + "lpt2", + "lpt3", + "lpt4", + "lpt5", + "lpt6", + "lpt7", + "lpt8", + "lpt9", + "m", + "mail", + "maintainer", + "maintainers", + "media", + "mobile", + "moderator", + "moderators", + "net", + "network", + "news", + "nic", + "noc", + "notification", + "notifications", + "ns", + "ns0", + "ns1", + "ns2", + "ns3", + "ns4", + "ns5", + "ns6", + "ns7", + "ns8", + "ns9", + "oauth", + "online", + "ops", + "org", + "owner", + "pay", + "payment", + "payments", + "portal", + "postmaster", + "preview", + "private", + "prod", + "production", + "r", + "redirect", + "register", + "registrar", + "registry", + "reserved", + "root", + "secure", + "security", + "service", + "services", + "shop", + "staff", + "staging", + "static", + "statistics", + "stats", + "status", + "store", + "subdomain", + "support", + "sys", + "system", + "test", + "terms", + "token", + "tokens", + "tos", + "url", + "vote", + "web", + "webmail", + "webmaster", + "website", + "whois", + "ww", + "ww0", + "ww1", + "ww2", + "ww3", + "ww4", + "ww5", + "ww6", + "ww7", + "ww8", + "ww9", + "www0", + "www1", + "www2", + "www3", + "www4", + "www5", + "www6", + "www7", + "www8", + "www9", + "wwww", + "your-domain-name", + "zone", + "zone-updated" +] diff --git a/util/trusted.json b/util/trusted.json new file mode 100644 index 000000000..f8b95d666 --- /dev/null +++ b/util/trusted.json @@ -0,0 +1,8 @@ +[ + { "username": "iostpa", "id": 69630113 }, + { "username": "is-a-dev-bot", "id": 106927495 }, + { "username": "orangci", "id": 90866414 }, + { "username": "Stef-00012", "id": 81536172 }, + { "username": "WDH-2", "id": 115670568 }, + { "username": "wdhdev", "id": 87287585 } +]