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/validation.yml b/.github/workflows/ci.yml similarity index 62% rename from .github/workflows/validation.yml rename to .github/workflows/ci.yml index d48c9a347..38cf61d44 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Validation +name: CI on: pull_request: @@ -19,17 +19,6 @@ concurrency: cancel-in-progress: true jobs: - dns: - name: DNS - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Check - uses: is-a-dev/dnscontrol-action@main - with: - args: check - tests: name: Tests runs-on: ubuntu-latest @@ -38,4 +27,4 @@ jobs: - run: npm install - - run: npm test + - run: npx ava tests/*.test.js diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 24ffbfc00..e0891daae 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -1,13 +1,13 @@ name: Pull Request Labeler 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 + labeler: + runs-on: ubuntu-latest + steps: + - uses: docker://docker.io/ilyam8/periodic-pr-labeler:v0.1.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY: ${{ github.repository }} + LABEL_MAPPINGS_FILE: .github/labeler.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9622ebd4a..ac9c92abd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,10 +21,15 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Run tests + run: | + npm install + npx ava tests/*.test.js + - 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/stale.yml b/.github/workflows/stale.yml index 9eefecd7b..ad78c7b61 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,21 +1,20 @@ name: StaleBOT on: - workflow_dispatch: - name: 'Force cleanup' - schedule: - - cron: "30 14 * * *" + workflow_dispatch: + schedule: + - cron: "30 14 * * *" 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' + 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" diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index fa62aa12d..eed9af879 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -4,27 +4,9 @@ This is a Code of Conduct for any interactions in this repository. This includes - **Use common sense** - It's not that complicated. Just be nice to people. - **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites. - **No wrongful use** - Do not use this service as a way, to promote hacking, scams, fraud, and other illegal activites. +- **Follow our TOS** - You must follow our [Terms of Service](https://github.com/is-a-dev/register/blob/main/TERMS_OF_SERVICE.md). ## Reporting abuse If you believe a domain that has been registered using this service is abusing our terms, you can report it by creating an issue. -The abuse reports will be investigated and the necessary action will be taken. - -## Explicitly disallowed usage -- Online stores/shopping websites -- Gambling websites -- Game cheat sites -- CDNs distributing potentially malicious content (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 +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/README.md b/README.md index a5983b1c7..6c53a4027 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@

is-a.dev

-

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

+

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

## Announcements & Status Updates Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtimes regarding the service. @@ -24,30 +24,32 @@ Not all of these will be posted on GitHub, however they will always be posted in ## How to Register > If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge). -- [Fork](https://github.com/is-a-dev/register/fork) and star this repository +- [Fork](https://github.com/is-a-dev/register/fork) this repository - Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev` -- [Read the documentation](https://is-a.dev/docs) +- [Read the documentation](https://docs.is-a.dev) - If you are applying for NS records please read [this](#ns-records). - Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!* - After the pull request is merged, please allow up to 24 hours for the changes to propagate -- Enjoy your new `.is-a.dev` domain! +- Enjoy your new `.is-a.dev` domain! Please consider leaving us a star ⭐️ to help support us! ### NS Records -When applying for NS records, please be aware we already support a [wide range of DNS records](https://is-a.dev/docs/faq/#which-records-are-supported), so you may not need them. +When applying for NS records, please be aware we already support a [wide range of DNS records](https://docs.is-a.dev/faq/#which-records-are-supported), so you may not need them. -In your PR, please provide sufficient reasoning of why you need NS records, to help us mitigate potential abuse. It is helpful to refer to the [FAQ](https://is-a.dev/docs/faq/#who-can-use-ns-records) to see if you will likely be approved for NS records or not. You can see a good example of a request for NS records [here](https://github.com/is-a-dev/register/pull/17592). +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. Good examples of NS record requests are [#17592](https://github.com/is-a-dev/register/pull/17592) and [#18026](https://github.com/is-a-dev/register/pull/18026). ***Pull requests adding NS records without sufficient reasoning will be closed.*** -> Also see: [Why are you so strict with NS records?](https://is-a.dev/docs/faq/#why-are-you-so-strict-with-ns-records) +> 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 may bypass these requirements by [donating](https://wdh.gg/pvNCdvs) a small amount of $2 (you can also donate via [GitHub Sponsors](https://wdh.gg/sponsor)). You also get a special role in our [Discord server](https://discord.gg/is-a-dev-830872854677422150)! +> You can bypass these requirements[^1] by donating just $2 [here](https://wdh.gg/pvNCdvs), or via [GitHub Sponsors](https://wdh.gg/sponsor). As a thank-you, you'll also receive a special role in our [Discord server](https://discord.gg/is-a-dev-830872854677422150)! > -> If you decide to donate, please email william@is-a.dev (or DM `@williamharrison` on Discord) with your payment receipt and your pull request link. +> If you donate, email william@is-a.dev or DM `@williamharrison` on Discord with your receipt and PR link. + +[^1]: Requests deemed to be made with malicious intent may be denied, with a refund provided. ## Report Abuse -If you find any subdomains being abused, 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. +If you find any subdomains being used for abusive purposes, please report them by [creating an issue](https://github.com/is-a-dev/register/issues/new?assignees=&labels=report-abuse&projects=&template=report-abuse.md&title=Report+abuse) with the relevant evidence. --- diff --git a/TERMS_OF_SERVICE.md b/TERMS_OF_SERVICE.md new file mode 100644 index 000000000..f8f1482ae --- /dev/null +++ b/TERMS_OF_SERVICE.md @@ -0,0 +1,79 @@ +# Terms of Service +Welcome to **is-a.dev**, a free subdomain service provided to developers and individuals. By using our service, you agree to the following Terms of Service ("Terms"). Please read them carefully. + +## 1. Acceptance of Terms +By accessing or using the is-a.dev subdomain service, you acknowledge that you have read, understood, and agree to be bound by these Terms. If you do not agree, you may not use the service. + +## 2. Eligibility +To use the is-a.dev service, you must: + +1. Be at least 13 years old. +2. Use the service for lawful purposes only. +3. Provide accurate and truthful information during the registration process. + +## 3. Service Description +The is-a.dev service allows users to register a subdomain under the "is-a.dev" domain. This service is offered "as-is" without guarantees of uptime, support, or permanence. Subdomains are intended solely for developers and non-commercial projects. Commercial use is strictly prohibited. + +We reserve the right to deny any subdomain registration request for any reason. + +## 4. Prohibited Activities +You agree not to use the is-a.dev service for: + +- Hosting illegal content, including but not limited to pirated software, malware, or copyrighted materials without authorization. +- Conducting phishing, spam, or other malicious activities. +- Promoting hate speech, violence, or discrimination. +- Impersonating individuals, organizations, or entities without consent. +- Engaging in activities that violate local, national, or international laws. +- Any commercial purposes, including advertising, selling products, or hosting e-commerce platforms. +- Online stores/shopping websites. +- Gambling websites. +- Game cheat sites. +- CDNs distributing potentially malicious content (e.g., APKs, executables). +- 'Unblocked' gaming websites. +- Alternate URLs for commonly blocked websites (e.g., gambling/casino websites). +- Websites containing 18+ content. +- Mass emailing (e.g., newsletters, mailing lists). +- File-sharing or torrenting websites distributing copyrighted material. +- Cryptocurrency mining sites or tools. +- Hacking or cybersecurity exploit websites. +- Phishing or fraudulent websites. +- Websites hosting illegal or pirated software. +- Proxy or VPN services bypassing network restrictions. +- Online services for identity theft or forgery. +- Platforms promoting self-harm or violence. +- Illegal drug marketplaces. +- Proxy sites (e.g., embedding other websites). + +Additionally, users must comply with [GitHub’s Terms of Service](https://docs.github.com/en/site-policy/github-terms/github-terms-of-service) where applicable. + +Violation of these terms may result in the immediate termination of your subdomain. + +## 5. Ownership and Intellectual Property +1. **Subdomain Ownership**: While you are granted the right to use a subdomain, ownership of the "is-a.dev" domain remains with the service provider. +2. **Content Ownership**: You retain ownership of any content you host on your subdomain. However, you grant us a license to use your subdomain registration data (e.g., DNS records) to operate the service. + +## 6. Termination of Service +We reserve the right to suspend, terminate, or revoke your subdomain at any time, for any reason, including but not limited to violations of these Terms, operational considerations, or at our sole discretion. + +## 7. Privacy +For privacy-related inquiries, please contact us at privacy@is-a.dev. We are not responsible for any data or privacy breaches resulting from the use of our service. + +## 8. Disclaimer of Warranties +The is-a.dev service is provided "as-is" and "as available." We make no warranties, expressed or implied, regarding the service’s functionality, reliability, or suitability for any particular purpose. + +## 9. Limitation of Liability +To the fullest extent permitted by law, is-a.dev and its operators shall not be liable for any direct, indirect, incidental, special, or consequential damages arising from your use or inability to use the service. + +## 10. Indemnification +You agree to indemnify and hold harmless is-a.dev, its operators, and affiliates from any claims, losses, liabilities, or expenses arising from your use of the service or violation of these Terms. + +## 11. Modification of Terms +We reserve the right to update or modify these Terms at any time. Changes will be effective immediately upon posting. Your continued use of the service constitutes acceptance of the updated Terms. + +## 12. Governing Law +These Terms are governed by and construed in accordance with the laws of Australia. Any disputes shall be resolved exclusively in the courts of Australia. + +## 13. Contact Information +For questions or concerns about these Terms, please contact us at support@is-a.dev. + +By using the is-a.dev service, you agree to these Terms of Service. diff --git a/dnsconfig.js b/dnsconfig.js index 5ee924a87..3cd55b011 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,7 @@ 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] + "." - ) - ); + records.push(MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + ".")); } } @@ -114,13 +83,7 @@ for (var subdomain in domains) { for (var srv in domainData.record.SRV) { var srvRecord = domainData.record.SRV[srv]; records.push( - SRV( - subdomainName, - srvRecord.priority, - srvRecord.weight, - srvRecord.port, - srvRecord.target + "." - ) + SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".") ); } } 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/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/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/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/1tfr.json b/domains/1tfr.json index 20975ec1c..d53bad6cd 100644 --- a/domains/1tfr.json +++ b/domains/1tfr.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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/2.json b/domains/2.json index d6fc683e0..35f77f4ad 100644 --- a/domains/2.json +++ b/domains/2.json @@ -1,11 +1,10 @@ { - "description": "LIGMATV's URL Manager (aka 2)", - "repo": "https://github.com/LIGMATV/links", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "CNAME": "ligmatv.github.io" - } -} + "description": "LIGMATV's URL Manager (aka 2)", + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "record": { + "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/3gee.json b/domains/3gee.json index 9addba996..45805fb67 100644 --- a/domains/3gee.json +++ b/domains/3gee.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "3geETR", - "email": "egemacun@gmail.com" - }, - "record": { - "CNAME": "3geetr.github.io" - } + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "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/4hmet.json b/domains/4hmet.json new file mode 100644 index 000000000..503098fb1 --- /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/69.json b/domains/69.json deleted file mode 100644 index 0f2d4e83b..000000000 --- a/domains/69.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "maskduck", - "discord": "716134528409665586" - }, - "record": { - "CNAME": "maskduck.pages.dev" - } -} diff --git a/domains/7z.json b/domains/7z.json index 226fd4575..16387d294 100644 --- a/domains/7z.json +++ b/domains/7z.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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/_atproto.hcj.json b/domains/_atproto.hcj.json index 40a3999bd..cfac4330a 100644 --- a/domains/_atproto.hcj.json +++ b/domains/_atproto.hcj.json @@ -1,10 +1,10 @@ { - "description": "domain verification for bluesky", - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - } - } \ No newline at end of file + "description": "domain verification for bluesky", + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "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.ligmatv.json b/domains/_atproto.ligmatv.json index fa991f375..1d0d9b048 100644 --- a/domains/_atproto.ligmatv.json +++ b/domains/_atproto.ligmatv.json @@ -1,10 +1,10 @@ { - "description": "Domain verification for my Bluesky account.", - "owner": { - "username": "LIGMATV", - "email": "ligmatv.id@gmail.com" - }, - "record": { - "TXT": "did=did:plc:pibkszlhfix34y257kqcozix" - } + "description": "Domain verification for my Bluesky account.", + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "record": { + "TXT": "did=did:plc:pibkszlhfix34y257kqcozix" + } } diff --git a/domains/_atproto.lumi.json b/domains/_atproto.lumi.json new file mode 100644 index 000000000..7c80a4563 --- /dev/null +++ b/domains/_atproto.lumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsFatlum", + "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.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/_atproto.razo.json b/domains/_atproto.razo.json new file mode 100644 index 000000000..6186da4d3 --- /dev/null +++ b/domains/_atproto.razo.json @@ -0,0 +1,10 @@ +{ + "description": "Domain verification for my Bluesky account.", + "owner": { + "username": "razobeckett", + "email": "razobeckett@proton.me" + }, + "record": { + "TXT": "did=did:plc:w6h4dilqruly6q4zki2mj5qt" + } +} 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.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.anirbaaaan.json b/domains/_discord.anirbaaaan.json deleted file mode 100644 index f7a613430..000000000 --- a/domains/_discord.anirbaaaan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "TXT": "dh=ef12f3d26e5f641e4a2f956c2a208b8da58b5c47" - } -} diff --git a/domains/_discord.ante.json b/domains/_discord.ante.json index 825a82e84..586b03a99 100644 --- a/domains/_discord.ante.json +++ b/domains/_discord.ante.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "antebrl", - "email": "ahcwnh@gmail.com" - }, - "record": { - "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] - } -} + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "record": { + "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] + } +} diff --git a/domains/_discord.arsenobetaine.json b/domains/_discord.arsenobetaine.json new file mode 100644 index 000000000..cef3ec70a --- /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 index 1e39c54d3..cda1d0491 100644 --- a/domains/_discord.aruria.json +++ b/domains/_discord.aruria.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "cjolivier123" - }, - "record": { - "TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"] - } -} + "owner": { + "username": "cjolivier123" + }, + "record": { + "TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"] + } +} 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.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.colin.json b/domains/_discord.colin.json new file mode 100644 index 000000000..ef66babf0 --- /dev/null +++ b/domains/_discord.colin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ColinLeDev" + }, + "record": { + "TXT": ["dh=f51bcf0f0dac685ca2a69541d3981cd689a1e96a"] + } + } + \ No newline at end of file diff --git a/domains/_discord.computerblade.json b/domains/_discord.computerblade.json index 6e6100da9..a2bd4bc33 100644 --- a/domains/_discord.computerblade.json +++ b/domains/_discord.computerblade.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "computerblade-official" - }, - "record": { - "TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"] - } -} + "owner": { + "username": "computerblade-official" + }, + "record": { + "TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"] + } +} 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 index 0a5dcf453..61463a1fc 100644 --- a/domains/_discord.ela.json +++ b/domains/_discord.ela.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "DXRdev", - "discordID": "335635478684499970", - "discord": "elastrixx" - }, - "record": { - "TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"] - } -} + "owner": { + "username": "DXRdev", + "discordID": "335635478684499970", + "discord": "elastrixx" + }, + "record": { + "TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"] + } +} diff --git a/domains/_discord.hcj.json b/domains/_discord.hcj.json index b227fd8f9..298d1c187 100644 --- a/domains/_discord.hcj.json +++ b/domains/_discord.hcj.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": "dh=4d34d136feda8f0fade8d9cbf34cfb3ff0adee15" - } - } \ No newline at end of file + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "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.infernum.json b/domains/_discord.infernum.json index 63552f868..7a8dafa86 100644 --- a/domains/_discord.infernum.json +++ b/domains/_discord.infernum.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Infernum1" - }, - "record": { - "TXT": ["dh=b25f81ebab2ff999a86bbda2f49f609e03054b39"] - } -} + "owner": { + "username": "Infernum1" + }, + "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.jonathan-russ.json b/domains/_discord.jonathan-russ.json new file mode 100644 index 000000000..85ec5b4c7 --- /dev/null +++ b/domains/_discord.jonathan-russ.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JonathanXDR", + "email": "jonathan.russ@bluewin.ch", + "discord": "494042822320717827" + }, + "record": { + "TXT": "dh=38d522d76c80c10c68fa083f015b65ef2986a91b" + } +} diff --git a/domains/_discord.json b/domains/_discord.json new file mode 100644 index 000000000..7b48822dc --- /dev/null +++ b/domains/_discord.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "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.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 index 82012508a..cb1df48b8 100644 --- a/domains/_discord.keybinds.json +++ b/domains/_discord.keybinds.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "tr1xem" - }, - "record": { - "TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"] - } -} + "owner": { + "username": "tr1xem" + }, + "record": { + "TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"] + } +} 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..99637acbc --- /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.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.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.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.niclqs.json b/domains/_discord.niclqs.json index 059975761..72748fc05 100644 --- a/domains/_discord.niclqs.json +++ b/domains/_discord.niclqs.json @@ -1,12 +1,11 @@ { - "description": "niclqs.is-a.dev discord verify „ownership''", - "repo": "https://github.com/niclqsger", - "owner": { - "discord": "niclqs", - "email": "discord@push-den-weg.de", - "username": "NiclqsGER" - }, - "record": { - "TXT": "dh=0b19779c5bdb5bdc6a6e3a5d7f44996deedab1dc" - } + "description": "niclqs.is-a.dev discord verify ownership", + "owner": { + "discord": "niclqs", + "email": "discord@push-den-weg.de", + "username": "NiclqsGER" + }, + "record": { + "TXT": "dh=0b19779c5bdb5bdc6a6e3a5d7f44996deedab1dc" + } } 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.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.osho.json b/domains/_discord.osho.json index 8375d9a64..0c43a577b 100644 --- a/domains/_discord.osho.json +++ b/domains/_discord.osho.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "profxadke", - "email": "xadkeg@duck.com" - }, - "record": { - "TXT": ["dh=35ca5646ff4cbe25158bef568c0e26c7224f5a61"] - } + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "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.privatekey.json b/domains/_discord.privatekey.json deleted file mode 100644 index b5925c9cf..000000000 --- a/domains/_discord.privatekey.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "keydevelops", - "email": "rumaevvadim@gmail.com" - }, - "record": { - "TXT": "dh=be4a0fbe37df16fa2d25e29ec7bc4f669703a71d" - } -} diff --git a/domains/_discord.rouf0x.json b/domains/_discord.rouf0x.json index 7928bfeb6..c5afbd574 100644 --- a/domains/_discord.rouf0x.json +++ b/domains/_discord.rouf0x.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "Roufox", - "email": "gabrielruf.fr@gmail.com", - "discord": "Roufox" - }, - "record": { - "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271" - } + "owner": { + "username": "Roufox", + "discord": "Roufox" + }, + "record": { + "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271" + } } diff --git a/domains/_discord.sabbir.json b/domains/_discord.sabbir.json index 1ae6b2940..a57a9d97f 100644 --- a/domains/_discord.sabbir.json +++ b/domains/_discord.sabbir.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "s8rr" - }, - "record": { - "TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"] - } -} + "owner": { + "username": "s8rr" + }, + "record": { + "TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"] + } +} diff --git a/domains/_discord.schuh.json b/domains/_discord.schuh.json new file mode 100644 index 000000000..29d469ab3 --- /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 index fa30fc0d0..c2802561b 100644 --- a/domains/_discord.seiko.json +++ b/domains/_discord.seiko.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Delta-0mega" - }, - "record": { - "TXT": ["dh=af891775cf595304f98791bd551966a1c2411fe4"] - } -} + "owner": { + "username": "Delta-0mega" + }, + "record": { + "TXT": ["dh=af891775cf595304f98791bd551966a1c2411fe4"] + } +} diff --git a/domains/_discord.sep.json b/domains/_discord.sep.json new file mode 100644 index 000000000..f1584c0e4 --- /dev/null +++ b/domains/_discord.sep.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sepultrex", + "email": "sepultrex@gmail.com" + }, + "record": { + "TXT": "dh=2f929b7a4935af1795801360d92ba2788e27a2ff" + } +} \ No newline at end of file diff --git a/domains/_discord.shimizu.json b/domains/_discord.shimizu.json new file mode 100644 index 000000000..5ce34aa5e --- /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.thangle.json b/domains/_discord.thangle.json new file mode 100644 index 000000000..06ee5723d --- /dev/null +++ b/domains/_discord.thangle.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ThangLe9999", + "discord": "872078632565215282", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G5BtkuOaAUmFdixUP1IN4ZTmec-NZCllzsliK6q8sggJkBzasXefGfeEh6pBOiZ6ZkV2gr-GCdTN7LkP7QLPgLN6FglXac8BP1DSGDF3Lo8ULvrM-CpLUdeR0mqes6OQVvWdmPhZgVFGF3ItzDXQ7SqB6zrMbEWEwuZeg2KLHyPqvHsdrWLjzNpvVUwZRBuxicPyNTT70oMbPaOn3cvg4J_mVxNywnrIY5F34-T4tmiOEijsHmPwG2RzHsTCzC3cGYfNmokQtAsL0jhIMH4GzYdbTUsjDOrqbLdT-W2y33pQkeQuCjdf8KkeYCfacE0oWAZKFhrW2X0zJLYvGQBeuw.3qY1yT9H2x2WH2DePTziiw.PJvjWBGxfTgCKqZiHuAsRaUEdjld3XeMAw7NwX9P28VSFOS3-xsSiOvbLrCo1n1nTF-4g8EIRkkFJPn2P1T6YUDNuHVqbvnGg2wfhpfdSaM.yxghx67x9iGLMjDEKJdeAw" + }, + + "record": { + "TXT": "dh=8d98fb5fefbb1915e89d5dc43c9fdd9fa801557f" + } +} + diff --git a/domains/_discord.trix.json b/domains/_discord.trix.json index 4f83b7007..071af2ccf 100644 --- a/domains/_discord.trix.json +++ b/domains/_discord.trix.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "tr1xem" - }, - "record": { - "TXT": ["dh=ecefe601258bdf0c1e1e20adb05d84c7b7229995"] - } -} + "owner": { + "username": "tr1xem" + }, + "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.webcubed.json b/domains/_discord.webcubed.json index b5a4d0ec4..0bb35c5cb 100644 --- a/domains/_discord.webcubed.json +++ b/domains/_discord.webcubed.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "webcubed" - }, - "record": { - "TXT": ["dh=1612c48236f97b2a8b0fc79833cd7e46cf0c512d"] - } -} + "owner": { + "username": "webcubed" + }, + "record": { + "TXT": ["dh=1612c48236f97b2a8b0fc79833cd7e46cf0c512d"] + } +} 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.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.yxz.json b/domains/_dmarc.yxz.json index c7fdac868..7a26816d1 100644 --- a/domains/_dmarc.yxz.json +++ b/domains/_dmarc.yxz.json @@ -1,12 +1,11 @@ { - "owner": { - "username": "yz9551", - "email": "", - "discord": "yz9551" - }, - "record": { - "TXT": [ - "v=DMARC1; p=reject; pct=100; rua=mailto:dmarc-reports@yxz.is-a.dev; ruf=mailto:forensic-reports@yxz.is-a.dev; adkim=r; aspf=r" - ] - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "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/_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..93f4e58c2 --- /dev/null +++ b/domains/_gh-lumidevelopment-o.lumi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "LUMIDevelopment" + }, + "record": { + "TXT": ["eade7c5be7"] + } +} 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-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/abiapp789.json b/domains/_github-pages-challenge-abiapp789.abiapp22.json similarity index 76% rename from domains/abiapp789.json rename to domains/_github-pages-challenge-abiapp789.abiapp22.json index 4472f5420..cd681e6b9 100644 --- a/domains/abiapp789.json +++ b/domains/_github-pages-challenge-abiapp789.abiapp22.json @@ -5,6 +5,6 @@ "email": "abiapp2024@gmail.com" }, "record": { - "CNAME": "trytodownloadme.rf.gd" + "TXT": "e8984bf946de59788c1b78b19b8d51" } } 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-akzana.json b/domains/_github-pages-challenge-akzana.json deleted file mode 100644 index 3c3ba1691..000000000 --- a/domains/_github-pages-challenge-akzana.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "akzana" - }, - "record": { - "TXT": ["a9e7df1f4744431d00299a1ca92510"] - } -} diff --git a/domains/_github-pages-challenge-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-anirbaaaan183.anirbaaaan.json b/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json deleted file mode 100644 index aef4a9302..000000000 --- a/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "TXT": "5f8c296170c0f2cd8aa1089b065900" - } -} diff --git a/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json new file mode 100644 index 000000000..ab62a0cc6 --- /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 index e5a97f5a3..5d041ee56 100644 --- a/domains/_github-pages-challenge-aruntechpro.aruntechpro.json +++ b/domains/_github-pages-challenge-aruntechpro.aruntechpro.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "aruntechpro", - "email": "arunkumarakr03@gmail.com" - }, - "record": { - "TXT": "8583e778337112b720ebf6e1ec46a5" - } - } \ No newline at end of file +{ + "owner": { + "username": "aruntechpro", + "email": "arunkumarakr03@gmail.com" + }, + "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-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-baturalp52.baturalp.json b/domains/_github-pages-challenge-baturalp52.baturalp.json new file mode 100644 index 000000000..8907a66a2 --- /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-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-chauvansang.sang.json b/domains/_github-pages-challenge-chauvansang.sang.json new file mode 100644 index 000000000..733c9a150 --- /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-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-fluffythebunny.json b/domains/_github-pages-challenge-fluffythebunny.json deleted file mode 100644 index 3b3919f04..000000000 --- a/domains/_github-pages-challenge-fluffythebunny.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Fluffythebunny", - "email": "puglsytt@gmail.com" - }, - "record": { - "TXT": "beb68ebc988463b8b1753c41c14f9e" - } -} diff --git a/domains/_github-pages-challenge-formunagit.formuna.json b/domains/_github-pages-challenge-formunagit.formuna.json index 348d2f8de..b368cb383 100644 --- a/domains/_github-pages-challenge-formunagit.formuna.json +++ b/domains/_github-pages-challenge-formunagit.formuna.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "FormunaGit", - "discord": "formuna" - }, - "record": { - "TXT": ["f1190641c5391341d1097c3a2a8160"] - } + "owner": { + "username": "FormunaGit", + "discord": "formuna" + }, + "record": { + "TXT": ["f1190641c5391341d1097c3a2a8160"] + } } 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-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-is-a-dev.docs.json b/domains/_github-pages-challenge-is-a-dev.docs.json new file mode 100644 index 000000000..888f8178b --- /dev/null +++ b/domains/_github-pages-challenge-is-a-dev.docs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "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/_github-pages-challenge-jecoh12.jecoh.json b/domains/_github-pages-challenge-jecoh12.jecoh.json new file mode 100644 index 000000000..999b1de72 --- /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-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-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-kellylawrence.kelly.json b/domains/_github-pages-challenge-kellylawrence.kelly.json new file mode 100644 index 000000000..a6f1930f8 --- /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-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-lyaxsh.lyaxsh.json b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json new file mode 100644 index 000000000..796fbda51 --- /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..d1525b872 --- /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-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 index e233c0633..0b84ee7c4 100644 --- a/domains/_github-pages-challenge-mrinjamul.mrinjamul.json +++ b/domains/_github-pages-challenge-mrinjamul.mrinjamul.json @@ -1,10 +1,10 @@ { - "description": "Personal Website", - "owner": { - "username": "mrinjamul", - "email": "injamulmohammadmollah@gmail.com" - }, - "record": { - "TXT": "f89efe65af996d174d8f254c511bf3" - } + "description": "Personal Website", + "owner": { + "username": "mrinjamul", + "email": "injamulmohammadmollah@gmail.com" + }, + "record": { + "TXT": "f89efe65af996d174d8f254c511bf3" + } } diff --git a/domains/_github-pages-challenge-mrsiir.xavier.json b/domains/_github-pages-challenge-mrsiir.xavier.json new file mode 100644 index 000000000..f86ea66ba --- /dev/null +++ b/domains/_github-pages-challenge-mrsiir.xavier.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrSiir", + "email": "mrsiir@gmail.com" + }, + "record": { + "TXT": "137e2b17a723cce89a10e5e245a3b5" + } +} \ No newline at end of file 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..b1edfb72e --- /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-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-parzi-val.bala.json b/domains/_github-pages-challenge-parzi-val.bala.json new file mode 100644 index 000000000..42a5c2b1d --- /dev/null +++ b/domains/_github-pages-challenge-parzi-val.bala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "record": { + "TXT": "ce0aa85ad09c4e53ee08034cd66447" + } +} \ No newline at end of file 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-qavv.qavv.json b/domains/_github-pages-challenge-qavv.qavv.json new file mode 100644 index 000000000..af2da0937 --- /dev/null +++ b/domains/_github-pages-challenge-qavv.qavv.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "qavv" + }, + "record": { + "TXT": "6598155c8cf0929e826409fb38fc02" + } +} 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-ramanandkrgupta.ramanand.json b/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json new file mode 100644 index 000000000..f3502af5c --- /dev/null +++ b/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ramanandkrgupta", + "email": "ramanand@myyahoo.com" + }, + "record": { + "TXT": "07cd3e879dce98546f212f494f50da" + } +} 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-robinjesba.robin.json b/domains/_github-pages-challenge-robinjesba.robin.json new file mode 100644 index 000000000..0019269cc --- /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-sangeeth-606.sangeeth.json b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json new file mode 100644 index 000000000..4a4eb54b2 --- /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..34d0664e8 --- /dev/null +++ b/domains/_github-pages-challenge-sepultrex.sep.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "sepultrex" + }, + "record": { + "TXT": "9d48d99c569b77b148651f4052b25f" + } + } \ No newline at end of file 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..88e6eb8d1 --- /dev/null +++ b/domains/_github-pages-challenge-shukraditya.shukraditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shukraditya", + "email": "shukra12bose@gmail.com" + }, + "record": { + "TXT": "617d0b9d13126957daf657d7396ec2" + } +} \ No newline at end of file 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-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-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-unidentifiedx.sunzizhuo.json b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json new file mode 100644 index 000000000..361474540 --- /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-vurihuang.vuri.json b/domains/_github-pages-challenge-vurihuang.vuri.json index 06ab3fb80..3bf04a569 100644 --- a/domains/_github-pages-challenge-vurihuang.vuri.json +++ b/domains/_github-pages-challenge-vurihuang.vuri.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "TXT": ["2447215d9fcea09574fc1831f99c8d"] - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "record": { + "TXT": ["2447215d9fcea09574fc1831f99c8d"] } - \ No newline at end of file +} diff --git a/domains/_github-pages-challenge-vurihuang.vurihuang.json b/domains/_github-pages-challenge-vurihuang.vurihuang.json index ec6d49879..04054cc65 100644 --- a/domains/_github-pages-challenge-vurihuang.vurihuang.json +++ b/domains/_github-pages-challenge-vurihuang.vurihuang.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "TXT": ["8ba2660c4c9bb5915177df7123d158"] - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "record": { + "TXT": ["8ba2660c4c9bb5915177df7123d158"] } - \ No newline at end of file +} diff --git a/domains/_github-pages-challenge-webcubed.webcubed.json b/domains/_github-pages-challenge-webcubed.webcubed.json index 2de31857f..dd0dd0c64 100644 --- a/domains/_github-pages-challenge-webcubed.webcubed.json +++ b/domains/_github-pages-challenge-webcubed.webcubed.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "webcubed" - }, - "record": { - "TXT": ["d4d8fdb1fea56bbbf4470d4e6f5e40"] - } + "owner": { + "username": "webcubed" + }, + "record": { + "TXT": ["d4d8fdb1fea56bbbf4470d4e6f5e40"] + } } diff --git a/domains/_github-pages-challenge-wizcann.wizcann.json b/domains/_github-pages-challenge-wizcann.wizcann.json index f95b28284..9c5ce79b0 100644 --- a/domains/_github-pages-challenge-wizcann.wizcann.json +++ b/domains/_github-pages-challenge-wizcann.wizcann.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "wizcann" - }, - "record": { - "TXT": ["76bdb40edcf54ac449921a71e3e388"] - } + "owner": { + "username": "wizcann" + }, + "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-yashokuu.yas.json b/domains/_github-pages-challenge-yashokuu.yas.json new file mode 100644 index 000000000..1de373534 --- /dev/null +++ b/domains/_github-pages-challenge-yashokuu.yas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashokuu", + "email": "yas.studios.en@gmail.com" + }, + "record": { + "TXT": "3dc5a3f950e7f70f6535b6bf715042" + } +} diff --git a/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json b/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json deleted file mode 100644 index 73f4376f4..000000000 --- a/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Yunexiz", - "discord": "1040303561847881729" - }, - "record": { - "TXT": "a39a9e9549128753e8f6757a37d2c2" - } -} diff --git a/domains/_github-pages-challenge-yz9551.yxz.json b/domains/_github-pages-challenge-yz9551.yxz.json index 3e6b82cd8..b785aa78b 100644 --- a/domains/_github-pages-challenge-yz9551.yxz.json +++ b/domains/_github-pages-challenge-yz9551.yxz.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "yz9551", - "email": "", - "discord": "yz9551" - }, - "record": { - "TXT": [ - "1b83953af6bc9eb40dc5ccfb434238" - ] - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "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..836e5b1ac --- /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 index bafac6205..ca7a9f426 100644 --- a/domains/_minecraft._tcp.mc.3gee.json +++ b/domains/_minecraft._tcp.mc.3gee.json @@ -1,21 +1,16 @@ -{ - - "owner": { - - "username": "3geETR", - - "email": "egemacun@gmail.com" - - }, - - "record": { - "SRV": [ - { - "priority": 0, - "weight": 5, - "port": 32279, - "target": "gold.magmanode.com" - } - ] - } -} +{ + "owner": { + "username": "3geETR", + "email": "egemacun@gmail.com" + }, + "record": { + "SRV": [ + { + "priority": 0, + "weight": 5, + "port": 32279, + "target": "gold.magmanode.com" + } + ] + } +} 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.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..a11a56cfc --- /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.aakashrawat.json b/domains/_vercel.aakashrawat.json new file mode 100644 index 000000000..0e745a4ff --- /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..f4d8c53a2 --- /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.about.harshshah.json b/domains/_vercel.about.harshshah.json new file mode 100644 index 000000000..20179c209 --- /dev/null +++ b/domains/_vercel.about.harshshah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Harsh-0986", + "email": "harsh2102.dev@gmail.com", + "discord": "889700837520199761" + }, + "record": { + "TXT": "vc-domain-verify=about.harshshah.is-a.dev,f9d8e16efb5cc0d31d96" + } +} diff --git a/domains/_vercel.aeyika.json b/domains/_vercel.aeyika.json index 93f019f86..eb8b6557f 100644 --- a/domains/_vercel.aeyika.json +++ b/domains/_vercel.aeyika.json @@ -1,12 +1,10 @@ { - "description": "Domain for my portfolio website", - "owner": { - "username": "aeyika", - "email": "aeyikastech@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=aeyika.is-a.dev,84418c102cd22e0a172c" - ] - } + "description": "Domain for my portfolio website", + "owner": { + "username": "aeyika", + "email": "aeyikastech@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=aeyika.is-a.dev,84418c102cd22e0a172c"] + } } 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.aitji.json b/domains/_vercel.aitji.json new file mode 100644 index 000000000..ae4360a8f --- /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.akay.json b/domains/_vercel.akay.json index 3f05cfc52..bce09cc70 100644 --- a/domains/_vercel.akay.json +++ b/domains/_vercel.akay.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "AKBORANA3" - }, - "record": { - "TXT": [ - "vc-domain-verify=akay.is-a.dev,f9e6eaccf85abfddae57" - ] - } + "owner": { + "username": "AKBORANA3" + }, + "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.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.alvindennis.json b/domains/_vercel.alvindennis.json index fb39676e5..e58925f51 100644 --- a/domains/_vercel.alvindennis.json +++ b/domains/_vercel.alvindennis.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "alvin-dennis", - "discord": "alvindennis" - }, - "record": { - "TXT": "vc-domain-verify=alvindennis.is-a.dev,0cce0dce190e046ef841" - } + "owner": { + "username": "alvin-dennis", + "discord": "alvindennis" + }, + "record": { + "TXT": "vc-domain-verify=alvindennis.is-a.dev,0cce0dce190e046ef841" } - \ No newline at end of file +} diff --git a/domains/_vercel.aman.json b/domains/_vercel.aman.json new file mode 100644 index 000000000..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.amanraj.json b/domains/_vercel.amanraj.json new file mode 100644 index 000000000..27511e0c9 --- /dev/null +++ b/domains/_vercel.amanraj.json @@ -0,0 +1,13 @@ +{ + "description": "This website is my personal portfolio", + "repo": "https://github.com/huamanraj/Portfolio-v4", + "owner": { + "username": "huamanraj", + "email": "amanraj12.ar@gmail.com", + "discord": "amanraj" + }, + "record": { + "TXT": ["vc-domain-verify=amanraj.is-a.dev,25dd2c58bb98baf55cd4"] + } + } + \ No newline at end of file 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.anand.json b/domains/_vercel.anand.json new file mode 100644 index 000000000..6b53bbfeb --- /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" + } +} \ No newline at end of file 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.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..3f13b6a53 --- /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.arnxv.json b/domains/_vercel.arnxv.json index a950636ca..30f706468 100644 --- a/domains/_vercel.arnxv.json +++ b/domains/_vercel.arnxv.json @@ -1,13 +1,13 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=arnxv.is-a.dev,2b36da5314d05cea9737", - "vc-domain-verify=works.arnxv.is-a.dev,f8b0553cc89bfe7097fa", - "vc-domain-verify=kind-nodes.arnxv.is-a.dev,ba40e23d4384053b8059" - ] - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "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.arvind.json b/domains/_vercel.arvind.json new file mode 100644 index 000000000..dc0b83863 --- /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.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.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.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.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.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/_github-pages-challenge-akk1to.json b/domains/_vercel.blog.chuyentinorz.json similarity index 57% rename from domains/_github-pages-challenge-akk1to.json rename to domains/_vercel.blog.chuyentinorz.json index ccde44cd8..09c735fba 100644 --- a/domains/_github-pages-challenge-akk1to.json +++ b/domains/_vercel.blog.chuyentinorz.json @@ -1,5 +1,5 @@ { - "description": "This website is my personal portfollo XD (let it on rq)", + "description": "This website is blogpost for ChuyenTinORZ", "repo": "https://github.com/akk1to/akk1to.github.io", "owner": { "username": "akk1to", @@ -7,6 +7,6 @@ "discord": "727497287777124414" }, "record": { - "TXT": ["b7205350c0f56235a5eebee2fd1993"] + "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.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.chuyentinorz.json b/domains/_vercel.chuyentinorz.json index f8a6c0b83..12116a6c4 100644 --- a/domains/_vercel.chuyentinorz.json +++ b/domains/_vercel.chuyentinorz.json @@ -1,13 +1,11 @@ { - "description": "Vercel verification of chuyentinorz.is-a.dev", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "TXT": [ - "vc-domain-verify=chuyentinorz.is-a.dev,46d8c5be943cf4eb7cd2" - ] - } + "description": "Vercel verification of chuyentinorz.is-a.dev", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "record": { + "TXT": ["vc-domain-verify=chuyentinorz.is-a.dev,46d8c5be943cf4eb7cd2"] + } } diff --git a/domains/_vercel.codexkun.json b/domains/_vercel.codexkun.json new file mode 100644 index 000000000..11f528470 --- /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 index f4053f971..c488033d5 100644 --- a/domains/_vercel.computerblade.json +++ b/domains/_vercel.computerblade.json @@ -1,8 +1,8 @@ -{ - "owner": { - "username": "computerblade-official" - }, - "record": { - "TXT": ["vc-domain-verify=computerblade.is-a.dev,0b4d70954aeb7d2d0656"] - } -} +{ + "owner": { + "username": "computerblade-official" + }, + "record": { + "TXT": ["vc-domain-verify=computerblade.is-a.dev,0b4d70954aeb7d2d0656"] + } +} 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 index 511e8b8db..d1e15d28b 100644 --- a/domains/_vercel.daim.json +++ b/domains/_vercel.daim.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "sYnceDez41", - "email": "zdaim78@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=daim.is-a.dev,d88985a4876213470d49" - ] - } + "owner": { + "username": "sYnceDez41", + "email": "zdaim78@gmail.com" + }, + "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.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.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.dishant.json b/domains/_vercel.dishant.json new file mode 100644 index 000000000..8e1e08fd2 --- /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.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.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.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.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..341011e42 --- /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.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..c98014cf0 --- /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.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..d450bfd5b --- /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" + } +} \ No newline at end of file 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.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..0ac16eaaa --- /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.goutam.json b/domains/_vercel.goutam.json index 2e3ff7287..d3bd92d50 100644 --- a/domains/_vercel.goutam.json +++ b/domains/_vercel.goutam.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "MatrixCoder0101" - }, - "record": { - "TXT": [ - "vc-domain-verify=goutam.is-a.dev,cde668462cf6a679633f" - ] - } + "owner": { + "username": "MatrixCoder0101" + }, + "record": { + "TXT": ["vc-domain-verify=goutam.is-a.dev,cde668462cf6a679633f"] + } } 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.greeshma.json b/domains/_vercel.greeshma.json new file mode 100644 index 000000000..0d8d151ad --- /dev/null +++ b/domains/_vercel.greeshma.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "greeshhma", + "email": "greeshma864@gmail.com", + "discord": "greeshhma" + }, + "record": { + "TXT": "vc-domain-verify=greeshma.is-a.dev,dcf8eae911029ace6427" + } +} 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 index b63ab8209..c8c084f3e 100644 --- a/domains/_vercel.gunman.json +++ b/domains/_vercel.gunman.json @@ -1,12 +1,10 @@ { - "owner": { + "owner": { "username": "MukuJhansi", "email": "mukundagrawal800@gmail.com", "discord": "1115658967012626542" - }, - "record": { - "TXT": [ - "vc-domain-verify=gunman.is-a.dev,a31e97770fb8c89e3b57" - ] - } + }, + "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.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.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 index c903acfb5..e1f49df66 100644 --- a/domains/_vercel.hcj.json +++ b/domains/_vercel.hcj.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": ["vc-domain-verify=hcj.is-a.dev,010396202f45aacdad27"] - } + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": ["vc-domain-verify=hcj.is-a.dev,010396202f45aacdad27"] } - \ No newline at end of file +} diff --git a/domains/_vercel.hellokhangtran.json b/domains/_vercel.hellokhangtran.json new file mode 100644 index 000000000..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.hien.json b/domains/_vercel.hien.json index e8d7c314e..eaf169fd8 100644 --- a/domains/_vercel.hien.json +++ b/domains/_vercel.hien.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hienlh", - "email": "hienlh1298@gmail.com" - }, - "record": { - "TXT": ["vc-domain-verify=hien.is-a.dev,8c95220c38753532b45f"] - } + "owner": { + "username": "hienlh", + "email": "hienlh1298@gmail.com" + }, + "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 index 263fe3fa1..dc25d5659 100644 --- a/domains/_vercel.hujjat.json +++ b/domains/_vercel.hujjat.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hujjatiii", - "email": "hujjatx@yahoo.com" - }, - "record": { - "TXT": "vc-domain-verify=hujjat.is-a.dev,73fd6f83a3b034bfc044" - } + "owner": { + "username": "hujjatiii", + "email": "hujjatx@yahoo.com" + }, + "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..286c47ce7 --- /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.inputly.json b/domains/_vercel.inputly.json new file mode 100644 index 000000000..37ca7e0ba --- /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" + } +} \ No newline at end of file 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.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..44b1b4050 --- /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.izerr.json b/domains/_vercel.izerr.json index f4cd711b3..f4149a7b2 100644 --- a/domains/_vercel.izerr.json +++ b/domains/_vercel.izerr.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Explodey-Wolf", - "email": "peanutplays61@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=izerr.is-a.dev,16607c905489ac70ec6d" - ] - } + "owner": { + "username": "Explodey-Wolf", + "email": "peanutplays61@gmail.com" + }, + "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.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..75c0aa258 --- /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..ac1990440 --- /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.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.jonathan-russ.json b/domains/_vercel.jonathan-russ.json new file mode 100644 index 000000000..dddf4eabc --- /dev/null +++ b/domains/_vercel.jonathan-russ.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JonathanXDR", + "email": "jonathan.russ@bluewin.ch", + "discord": "494042822320717827" + }, + "record": { + "TXT": "vc-domain-verify=jonathan-russ.is-a.dev,298a207b5f94dffde572" + } +} 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.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.juanpabloleonmaya.json b/domains/_vercel.juanpabloleonmaya.json new file mode 100644 index 000000000..305e434d8 --- /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" + } +} \ No newline at end of file diff --git a/domains/_vercel.jumanji.json b/domains/_vercel.jumanji.json index d82ad7099..f39fdf51e 100644 --- a/domains/_vercel.jumanji.json +++ b/domains/_vercel.jumanji.json @@ -1,8 +1,9 @@ { "owner": { - "username": "heyjumanji" + "username": "heyjumanji", + "email": "madhuchutiya.unhinge50@silomails.com" }, "record": { - "TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"] + "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..fa317c31e --- /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.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..c30ac1bf5 --- /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" + } +} \ No newline at end of file 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.krebinkkj.json b/domains/_vercel.krebinkkj.json index 31db69c73..47b632395 100644 --- a/domains/_vercel.krebinkkj.json +++ b/domains/_vercel.krebinkkj.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "krebinkkj", - "email": "krebinkkj@gmail.com", - "discord": "1041878326169587732" - }, - "record": { - "TXT": [ - "vc-domain-verify=krebinkkj.is-a.dev,dadd7998d7a4c506db3b" - ] - } + "owner": { + "username": "krebinkkj", + "email": "krebinkkj@gmail.com", + "discord": "1041878326169587732" + }, + "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.kushdhingra.json b/domains/_vercel.kushdhingra.json deleted file mode 100644 index 350a577a1..000000000 --- a/domains/_vercel.kushdhingra.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "owner": { - "username": "kushdhingra" - }, - "record": { - "TXT": ["vc-domain-verify=kushdhingra.is-a.dev,a0343a97ff791537efcd"] - } -} diff --git a/domains/_vercel.lakshya.json b/domains/_vercel.lakshya.json new file mode 100644 index 000000000..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..e17243f9c --- /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.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..396c99bad --- /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.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.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 index 18fdbffd3..5ef31e20f 100644 --- a/domains/_vercel.magitian.json +++ b/domains/_vercel.magitian.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "magitian", - "email": "magitian@duck.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=magitian.is-a.dev,645e2d8f0ecf6f802922" - ] - } + "owner": { + "username": "magitian", + "email": "magitian@duck.com" + }, + "record": { + "TXT": ["vc-domain-verify=magitian.is-a.dev,645e2d8f0ecf6f802922"] + } } 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.manishgun.json b/domains/_vercel.manishgun.json new file mode 100644 index 000000000..bf60d0cb8 --- /dev/null +++ b/domains/_vercel.manishgun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "manishgun", + "email": "mail.cto.manish@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=manishgun.is-a.dev,f13d291aacd89c0da59c"] + } +} 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.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..fdfca6250 --- /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.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.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..d3fa8c851 --- /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" + } +} \ No newline at end of file diff --git a/domains/_vercel.mr-julus.json b/domains/_vercel.mr-julus.json new file mode 100644 index 000000000..a1333e074 --- /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.mudasir.json b/domains/_vercel.mudasir.json new file mode 100644 index 000000000..f6281db7a --- /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..3a8cd8152 --- /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.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.n.json b/domains/_vercel.n.json deleted file mode 100644 index 9313a98af..000000000 --- a/domains/_vercel.n.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=n.is-a.dev,8435c76be2d4e8aaa229" - ] - } -} diff --git a/domains/_vercel.nabin.json b/domains/_vercel.nabin.json new file mode 100644 index 000000000..48c57c535 --- /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..fb48c2e36 --- /dev/null +++ b/domains/_vercel.namansethi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "namansethi13", + "discord": "namansethi", + "email": "namansethi1328@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=namansethi.is-a.dev,e0b892773250b43800c9" + } + } + \ No newline at end of file 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.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.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.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.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.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.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.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.princeprajapati.json b/domains/_vercel.princeprajapati.json index 827de3b7f..e97b06de6 100644 --- a/domains/_vercel.princeprajapati.json +++ b/domains/_vercel.princeprajapati.json @@ -4,6 +4,6 @@ "email": "prince30112001@gmail.com" }, "record": { - "TXT": "vc-domain-verify=princeprajapati.is-a.dev,9b919407776e11ecff7a" + "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.pyyupsk.json b/domains/_vercel.pyyupsk.json new file mode 100644 index 000000000..3a9f8b15f --- /dev/null +++ b/domains/_vercel.pyyupsk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pyyupsk", + "email": "pyyupsk@proton.me" + }, + "record": { + "TXT": "vc-domain-verify=pyyupsk.is-a.dev,f537ecd57cc91e12951c" + } +} diff --git a/domains/_vercel.q.json b/domains/_vercel.q.json index bdf225642..78da64be3 100644 --- a/domains/_vercel.q.json +++ b/domains/_vercel.q.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=q.is-a.dev,8798cf095e1f783b5302" - ] - } + "owner": { + "username": "syedtahseen", + "email": "itxtahseen@gmail.com" + }, + "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..0e7768b13 --- /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.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.rajeshkumar.json b/domains/_vercel.rajeshkumar.json new file mode 100644 index 000000000..ea9f3d565 --- /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..f4bfd865c --- /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..038a29181 --- /dev/null +++ b/domains/_vercel.rajputshashank.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rajputshashank003", + "email" : "hariomshashank@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=rajputshashank.is-a.dev,b54453fc10c77cf72c1d"] + } + } + \ No newline at end of file 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.raynaldescala.json b/domains/_vercel.raynaldescala.json new file mode 100644 index 000000000..843e11542 --- /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.renant.json b/domains/_vercel.renant.json new file mode 100644 index 000000000..f1f52c9d5 --- /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.riccardo126.json b/domains/_vercel.riccardo126.json new file mode 100644 index 000000000..9f98c2832 --- /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.risqiahmad.json b/domains/_vercel.risqiahmad.json new file mode 100644 index 000000000..d543a0d55 --- /dev/null +++ b/domains/_vercel.risqiahmad.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "record": { + "TXT": "vc-domain-verify=risqiahmad.is-a.dev,8bd8af8f24fe915c1ac4" + } + } + \ No newline at end of file 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.saif.json b/domains/_vercel.saif.json new file mode 100644 index 000000000..0207cec10 --- /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" + } +} \ No newline at end of file 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.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.shimizu.json b/domains/_vercel.shimizu.json new file mode 100644 index 000000000..f69c8f0a8 --- /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.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.shuhaab.json b/domains/_vercel.shuhaab.json index fd9fac460..521cdd7fb 100644 --- a/domains/_vercel.shuhaab.json +++ b/domains/_vercel.shuhaab.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Shuhaab-coder" - }, - "record": { - "TXT": ["vc-domain-verify=shuhaab.is-a.dev,4f90144524ddbcf1a09b"] - } - } \ No newline at end of file + "owner": { + "username": "Shuhaab-coder" + }, + "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.siya.json b/domains/_vercel.siya.json new file mode 100644 index 000000000..38ec823e9 --- /dev/null +++ b/domains/_vercel.siya.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rajputsiya", + "email" : "siyarajput9258@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=siya.is-a.dev,8b5584a1aeb3bb9a60c5"] + } + } + \ No newline at end of file diff --git a/domains/_vercel.skarwuuu.json b/domains/_vercel.skarwuuu.json index 17b8e20f9..81add54cc 100644 --- a/domains/_vercel.skarwuuu.json +++ b/domains/_vercel.skarwuuu.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "skarwuuu", - "email": "sakshrwt@gmail.com" - }, - "record": { - "TXT": [ - "vc-domain-verify=skarwuuu.is-a.dev,eb14a67d4b3b06f29c5c" - ] - } + "owner": { + "username": "skarwuuu", + "email": "sakshrwt@gmail.com" + }, + "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..3c3d88a30 --- /dev/null +++ b/domains/_vercel.skibidi.json @@ -0,0 +1,9 @@ +{ + "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.sohag.json b/domains/_vercel.sohag.json new file mode 100644 index 000000000..f8bb6eec8 --- /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" + } +} \ No newline at end of file diff --git a/domains/_vercel.sombochea.json b/domains/_vercel.sombochea.json new file mode 100644 index 000000000..ee967eece --- /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" + } +} \ No newline at end of file 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.soul.json b/domains/_vercel.soul.json new file mode 100644 index 000000000..c9f35bd01 --- /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.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.swami.json b/domains/_vercel.swami.json index 96e206351..debf61bf7 100644 --- a/domains/_vercel.swami.json +++ b/domains/_vercel.swami.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "aadltya" - }, - "record": { - "TXT": [ - "vc-domain-verify=swami.is-a.dev,ebd6de23b5512663a728" - ] - } -} \ No newline at end of file + "owner": { + "username": "aadltya" + }, + "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..1c48f3e66 --- /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.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..19e0e060f --- /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..a9d574af4 --- /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.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..9910e6185 --- /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" + } +} \ No newline at end of file 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..5877b6aed --- /dev/null +++ b/domains/_vercel.udit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "uditdev", + "email" : "uditdev0008@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=udit.is-a.dev,8718c1c2a08417265d7e"] + } + } + \ No newline at end of file diff --git a/domains/_vercel.ujjvaljoshi.json b/domains/_vercel.ujjvaljoshi.json new file mode 100644 index 000000000..f19d60b0c --- /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.vantage.json b/domains/_vercel.vantage.json index 084102fc1..05f0c9b90 100644 --- a/domains/_vercel.vantage.json +++ b/domains/_vercel.vantage.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "blaze-099", - "email": "", - "discord": "1186691290759434350", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QLo89mhM4fE7MyI0fwTOoE1gwfqgTROR4XPtssSWrCFKdjAMxwFLRxSVKfTTk47ZdvtFcNQ-9i6zANMmvnKWqb4lk-A_IYDgCTI-rzfl7lIAsff092nh30jydQF4TCaaPwer3yrDZs-cHqnPJe1M9tVGLROeCpH5ndmRFCFCTp0SF5fIlyed9zElmsvmVm1In-pKSTFghIOm7W5A0Y_TGgGRz1GnCd7rUL0y_2Pww__W_JmiPYaqnIaas5YfHZSeSv68f4u6TicVOUFMCmRCAeF17ajRHB8NJJmAZ_5o0pvPs-YTFttOGRRp0MV7AMObacFMFpYufgvFM6amMBuKFA.nFT85dthPK_PLwebqK3zVw.w_dE_O8xeNrfXjtiPx_VM3hBR_p0i8huGEZfvGafCIBBtWm42cuIYAZ_kNh_qai31o3i7oRRi7UXOBGeShlvXW7znEXB9nx6Xy81QrbL878.l30yta1ym3dOqtn8MC7dZA" - }, - "record": { - "TXT": [ - "vc-domain-verify=vantage.is-a.dev,880ae7aaeb22f3419bd0" - ] - } + "owner": { + "username": "blaze-099", + "discord": "1186691290759434350", + "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.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.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..9d09ef071 --- /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.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.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.wasim.json b/domains/_vercel.wasim.json new file mode 100644 index 000000000..82edb123b --- /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.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.wizardsword.json b/domains/_vercel.wizardsword.json index 9d6d33c4a..a5afab226 100644 --- a/domains/_vercel.wizardsword.json +++ b/domains/_vercel.wizardsword.json @@ -1,11 +1,9 @@ -{ - "owner": { - "username": "MukuJhansi", - "discord": "1115658967012626542" - }, - "record": { - "TXT": [ - "vc-domain-verify=wizardsword.is-a.dev,bf203775c8ab97f0aa24" - ] - } -} +{ + "owner": { + "username": "MukuJhansi", + "discord": "1115658967012626542" + }, + "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..2a6c78644 --- /dev/null +++ b/domains/_vercel.xenonrexo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shshahms", + "email": "shahadathossenshams@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=xenonrexo.is-a.dev,8fbb85bd77adeb090add" + } +} 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..0edf88def --- /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.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..e5e0538b0 --- /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" + } +} \ No newline at end of file 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/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/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..24c81cf1a --- /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/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/abby.json b/domains/abby.json deleted file mode 100644 index 70ff7f6dd..000000000 --- a/domains/abby.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "MiloDev123", - "email": "milo@milosantos.com", - "discord": "699318362848886864" - }, - "record": { - "NS": [ - "kristin.ns.cloudflare.com", - "uriah.ns.cloudflare.com" - ] - } -} diff --git a/domains/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 index 37b3275b7..df1731a2d 100644 --- a/domains/abdelghani.json +++ b/domains/abdelghani.json @@ -1,11 +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" - } - } + "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..eecee44a1 --- /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 deleted file mode 100644 index 549ce8855..000000000 --- a/domains/abdullah.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "adistar964", - "email": "adistar964@gmail.com" - }, - "description": "this is for my personal website made.", - "record": { - "CNAME": "adistar964.github.io" - } -} 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/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/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/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..24d2c8bbe --- /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/abineethan.json b/domains/abineethan.json new file mode 100644 index 000000000..d65050360 --- /dev/null +++ b/domains/abineethan.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain hosts my personal portfolio website.", + "repo": "https://github.com/abineethan/abineethan.github.io", + "owner": { + "username": "abineethan", + "email": "abineethan22@gmail.com" + }, + "record": { + "CNAME": "abineethan.github.io" + } +} diff --git a/domains/about.harshshah.json b/domains/about.harshshah.json new file mode 100644 index 000000000..4adaaf31d --- /dev/null +++ b/domains/about.harshshah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Harsh-0986", + "email": "harsh2102.dev@gmail.com", + "discord": "889700837520199761" + }, + "record": { + "A": ["76.76.21.21"] + } +} 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/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/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/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 index ff5c21a4d..eaec424cc 100644 --- a/domains/adib.json +++ b/domains/adib.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Adib23704", - "email": "adib23704@gmail.com" - }, - "record": { - "URL": "https://adib23704.com" - } + "owner": { + "username": "Adib23704", + "email": "adib23704@gmail.com" + }, + "record": { + "URL": "https://adib23704.com" + } } 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/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..d9137efed 100644 --- a/domains/aditya.json +++ b/domains/aditya.json @@ -1,6 +1,5 @@ { "description": "my personal homepage", - "repo": "https://github.com/dedomil", "owner": { "username": "dedomil", "email": "ishqaddy@gmail.com", 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/aeyika.json b/domains/aeyika.json index fcc67f8f7..5daaf7ac9 100644 --- a/domains/aeyika.json +++ b/domains/aeyika.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "aeyika", - "email": "aeyikastech@gmail.com" - }, - "record": { - "CNAME": "portfolio-aeyikas-projects.vercel.app" - } + "owner": { + "username": "aeyika", + "email": "aeyikastech@gmail.com" + }, + "record": { + "CNAME": "portfolio-aeyikas-projects.vercel.app" + } } diff --git a/domains/affan.json b/domains/affan.json new file mode 100644 index 000000000..9930f2698 --- /dev/null +++ b/domains/affan.json @@ -0,0 +1,18 @@ +{ + "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..3974d2c22 --- /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/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/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/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/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/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/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/ai-y.yunexiz.json b/domains/ai-y.yunexiz.json deleted file mode 100644 index 0ab726729..000000000 --- a/domains/ai-y.yunexiz.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "yunexiz", - "discord": "1040303561847881729" - }, - "record": { - "CNAME": "yunexiz.github.io" - } -} diff --git a/domains/aidan.json b/domains/aidan.json index 4c83a2f42..40049af0b 100644 --- a/domains/aidan.json +++ b/domains/aidan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sangnd2x", - "email": "sanguyen128@gmail.com" - }, - "record": { - "A": ["103.211.201.28"] - } + "owner": { + "username": "sangnd2x", + "email": "sanguyen128@gmail.com" + }, + "record": { + "A": ["103.211.201.28"] + } } diff --git a/domains/aishik999.json b/domains/aishik999.json new file mode 100644 index 000000000..2e09e3b16 --- /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..a7c793f2f --- /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/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/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..cf97a0f79 --- /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/akashj.json b/domains/akashj.json new file mode 100644 index 000000000..5e52375e9 --- /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/akay.json b/domains/akay.json index b44511fed..bc171483e 100644 --- a/domains/akay.json +++ b/domains/akay.json @@ -1,17 +1,10 @@ { - "owner": { - "username": "AKBORANA3" - }, - "record": { - "A": [ - "76.76.21.21" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] - } + "owner": { + "username": "AKBORANA3" + }, + "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/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/akk1to.json b/domains/akk1to.json index 95c7591f2..5f3997d5b 100644 --- a/domains/akk1to.json +++ b/domains/akk1to.json @@ -7,15 +7,8 @@ "discord": "727497287777124414" }, "record": { - "A":[ - "185.199.108.153", - "185.199.111.153", - "185.199.110.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], + "A": ["185.199.108.153", "185.199.111.153", "185.199.110.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/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..6beabd313 --- /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/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/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/alan-huynh.json b/domains/alan-huynh.json index 660323ea1..ddfc58b2c 100644 --- a/domains/alan-huynh.json +++ b/domains/alan-huynh.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "hdmquan", - "email": "hdmquan@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } -} \ No newline at end of file + "owner": { + "username": "hdmquan", + "email": "hdmquan@gmail.com" + }, + "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 index c1cc6c8df..e8fb369f0 100644 --- a/domains/alan-smith.json +++ b/domains/alan-smith.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "AlanDoesCS", - "email": "", - "discord": "730009898942988299", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Immp3HgqOvoplEYYoUA3Svp2THkx-M7zYK40QEwo92htoYTIMb06Jr41viIoiS54WxHndFOTfKu8mVfkfBn6Ddvv3NVhj99R__0OtqqiBkyu7F7uBnZwyq-bGRx8y4SNVhek_NKLuEMbIxHnE21lZEMScbTuL6v_C5mjVZ4EYD8KIPOni_PqBDqrgmRd9ECIPuVAs55ekba6in7jiSbm0-ERfrQ7KqAASTpw17VtjXEL99uPVbx45amsbTMKUjcgZJ-xN_Z4heIcPlxnllVYUZ2fCDw4PhJlGGh8Bg2LCyXbLUMVw5vQESFxEpm682p_rruCRSBCNbHdP4TIF6bI2w.5LaEVt0VljKihoKo-ohj5Q.3bF4ihh9j5tyc916AhgbzB6-LdNGzp4l1VsRT390mcE2fvN9mj46niGBDBapwZqjRiNZgNOzAqKKVUwde-gfek6OgLe4ZsGJSATvF-B6YaM.XnzWEJO3I3UYsV1yl5SfYg" - }, - "record": { - "CNAME": "alandoescs.github.io" - } + "owner": { + "username": "AlanDoesCS", + "discord": "730009898942988299", + "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 index 49e8b9333..a6889c508 100644 --- a/domains/albakhet.json +++ b/domains/albakhet.json @@ -1,14 +1,11 @@ -{ - "description": "my email forwarding domain", - "owner": { - "username": "Somaiya-XI", - "discord": "Sen!#0577" - }, - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": ["v=spf1 include:spf.improvmx.com ~all"] - } -} +{ + "description": "my email forwarding domain", + "owner": { + "username": "Somaiya-XI", + "discord": "Sen!#0577" + }, + "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..868ccddca --- /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..8bd61cf74 --- /dev/null +++ b/domains/alec.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "asidsdamad1" + }, + "record": { + "CNAME": "asidsdamad1.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/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/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/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/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..d4ad8d0ea --- /dev/null +++ b/domains/all.json @@ -0,0 +1,17 @@ +{ + "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" + ] + } +} diff --git a/domains/allen-xavier.json b/domains/allen-xavier.json new file mode 100644 index 000000000..9498d4c59 --- /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/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/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..cdc63ec9d --- /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 index 2605e68a7..f4a648ce3 100644 --- a/domains/alvindennis.json +++ b/domains/alvindennis.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "alvin-dennis", - "discord": "732503927940972605" - }, - - "record": { - "CNAME": "alvindennis.vercel.app" - } - } + "owner": { + "username": "alvin-dennis", + "discord": "732503927940972605" + }, + "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/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/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/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/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..9eeb9637a --- /dev/null +++ b/domains/anand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anandd17", + "email": "avdoddamani123@gmail.com" + }, + "record": { + "CNAME": "anandd17.vercel.app" + } +} \ No newline at end of file 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/anbuinfosec.json b/domains/anbuinfosec.json index 8f930e996..b9a26f6f2 100644 --- a/domains/anbuinfosec.json +++ b/domains/anbuinfosec.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "anbuinfosec" - }, - "record": { - "CNAME": "anbuinfosec.github.io" - } -} + "owner": { + "username": "anbuinfosec" + }, + "record": { + "CNAME": "anbuinfosec.github.io" + } +} diff --git a/domains/andrea.json b/domains/andrea.json index 515c2db76..6d86ce8de 100644 --- a/domains/andrea.json +++ b/domains/andrea.json @@ -1,6 +1,5 @@ { "description": "Personal site", - "repo": "https://github.com/andrea-capigiri", "owner": { "username": "andrea-capigiri", "email": "uadopo+isadev@pm.me" diff --git a/domains/andreijiroh.json b/domains/andreijiroh.json index a02dd8b11..a9da6c39e 100644 --- a/domains/andreijiroh.json +++ b/domains/andreijiroh.json @@ -7,6 +7,6 @@ "bsky": "did:plc:wcx4c3osbuzrwmxkqdfqygwv" }, "record": { - "NS": ["kallie.ns.cloudflare.com","tadeo.ns.cloudflare.com"] + "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/andriampeno.json b/domains/andriampeno.json new file mode 100644 index 000000000..e613e77d6 --- /dev/null +++ b/domains/andriampeno.json @@ -0,0 +1,12 @@ +{ + "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" + } + } + \ No newline at end of file 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/angganix.json b/domains/angganix.json new file mode 100644 index 000000000..ab07741ca --- /dev/null +++ b/domains/angganix.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/anhnguyen94.json b/domains/anhnguyen94.json index 498cfa301..cdec6a2ff 100644 --- a/domains/anhnguyen94.json +++ b/domains/anhnguyen94.json @@ -1,10 +1,10 @@ { - "description": "Portfolio redirect for anhnguyen1907", - "owner": { - "username": "anhnguyen1907", - "email": "cau2tomy@gmail.com" - }, - "record": { + "description": "Portfolio redirect for anhnguyen1907", + "owner": { + "username": "anhnguyen1907", + "email": "cau2tomy@gmail.com" + }, + "record": { "CNAME": "anhnguyen1907.github.io" - } + } } diff --git a/domains/anhvt.json b/domains/anhvt.json new file mode 100644 index 000000000..3200b804f --- /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.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/anirbaaaan.json b/domains/anirbaaaan.json deleted file mode 100644 index b2ba80add..000000000 --- a/domains/anirbaaaan.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "AAAA": [ - "2606:50c0:8000::153", - "2606:50c0:8001::153", - "2606:50c0:8002::153", - "2606:50c0:8003::153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] - } -} diff --git a/domains/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/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 index 6b337d13d..2dac10c30 100644 --- a/domains/anshu.json +++ b/domains/anshu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anshu-prakash", - "email": "anshuprakash8445@gmail.com" - }, - "record": { - "CNAME": "anshu-prakash.github.io" - } + "owner": { + "username": "anshu-prakash", + "email": "anshuprakash8445@gmail.com" + }, + "record": { + "CNAME": "anshu-prakash.github.io" + } } diff --git a/domains/ante.json b/domains/ante.json index 3e3cb8301..073531e8a 100644 --- a/domains/ante.json +++ b/domains/ante.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "antebrl", - "email": "ahcwnh@gmail.com" - }, - "record": { - "A": ["130.61.108.36"], - "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] - } + "owner": { + "username": "antebrl", + "email": "ahcwnh@gmail.com" + }, + "record": { + "A": ["130.61.108.36"], + "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"] + } } 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/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/anveshraman.json b/domains/anveshraman.json new file mode 100644 index 000000000..89f6b3639 --- /dev/null +++ b/domains/anveshraman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SA-Army", + "email": "anveshraman.ae@gmail.com" + }, + "record": { + "CNAME": "sa-army.github.io" + } +} 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 index 97223312a..d385390ea 100644 --- a/domains/api-peantastic.json +++ b/domains/api-peantastic.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "peantastic", - "email": "leostark.vndev@gmail.com" - }, - "description": "Hello, my name is Peantastic, and I am a dedicated developer with a passion for creating innovative solutions and enhancing user experiences. It's a pleasure to connect with you!", - "repo": "https://github.com/peantastic/", - "record": { - "CNAME": "tantinh.onrender.com" - } -} \ No newline at end of file + "owner": { + "username": "peantastic", + "email": "leostark.vndev@gmail.com" + }, + "description": "Hello, my name is Peantastic, and I am a dedicated developer with a passion for creating innovative solutions and enhancing user experiences. It's a pleasure to connect with you!", + "repo": "https://github.com/peantastic/", + "record": { + "CNAME": "tantinh.onrender.com" + } +} diff --git a/domains/api.acronical.json b/domains/api.acronical.json index 335fb70a7..fa8380b23 100644 --- a/domains/api.acronical.json +++ b/domains/api.acronical.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "AcronicalYT", - "email": "acronicalbusiness@gmail.com" - }, - "record": { - "A": [ - "138.68.133.84" - ] - } + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "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.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.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/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 index a310d9885..baa01110f 100644 --- a/domains/aquiffoo.json +++ b/domains/aquiffoo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "aquiffoo", - "email": "aquilesffoliveira@gmail.com" - }, - "record": { - "URL": "https://aquiffoo.vercel.app" - } + "owner": { + "username": "aquiffoo", + "email": "aquilesffoliveira@gmail.com" + }, + "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/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..fb16e46e7 --- /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/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/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/armaan44.json b/domains/armaan44.json new file mode 100644 index 000000000..9d9c048e8 --- /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..baae0c54d --- /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 index 2e23bf9fd..5ffe17247 100644 --- a/domains/arnxv.json +++ b/domains/arnxv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } } diff --git a/domains/arsenobetaine.json b/domains/arsenobetaine.json new file mode 100644 index 000000000..f2e96f391 --- /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/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/aruntechpro.json b/domains/aruntechpro.json index b0fab6ae8..dd5077f03 100644 --- a/domains/aruntechpro.json +++ b/domains/aruntechpro.json @@ -1,10 +1,10 @@ -{ - "description": "Personal Website", - "owner": { - "username": "aruntechpro", - "email": "arunkumarakr03@gmail.com" - }, - "record": { - "CNAME": "aruntechpro.github.io" - } -} +{ + "description": "Personal Website", + "owner": { + "username": "aruntechpro", + "email": "arunkumarakr03@gmail.com" + }, + "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 index 262a1aba6..08ddfc722 100644 --- a/domains/aruria.json +++ b/domains/aruria.json @@ -1,12 +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": { - "CNAME": "cjolivier123.github.io" - } - } - \ No newline at end of file + "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..bf9ab69c0 --- /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/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/ashikmuhammed.json b/domains/ashikmuhammed.json deleted file mode 100644 index 9a7c933cf..000000000 --- a/domains/ashikmuhammed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/professorSergioMarquina/professorSergioMarquina.github.io", - "owner": { - "username": "professorSergioMarquina", - "email": "mrjinnoftg@gmail.com" - }, - "record": { - "CNAME": "professorsergiomarquina.github.io" - }, - "proxied": true -} diff --git a/domains/ashish.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..c0f2d160b --- /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/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/astra.json b/domains/astra.json index a18e5fcc9..732e5c81b 100644 --- a/domains/astra.json +++ b/domains/astra.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "MeHiGalatHu", - "email": "jabpadhekaindiatabhitoiitjayga@gmail.com" - - }, - "record": { - "CNAME": "astra-api.glitch.me" - } -} + "owner": { + "username": "MeHiGalatHu", + "email": "jabpadhekaindiatabhitoiitjayga@gmail.com" + }, + "record": { + "CNAME": "astra-api.glitch.me" + } +} 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 4788b16c5..9ff22977f 100644 --- a/domains/aswinmahesh.json +++ b/domains/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/aswinmaheshc.json b/domains/aswinmaheshc.json index 5092baf92..f404b4913 100644 --- a/domains/aswinmaheshc.json +++ b/domains/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/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/atharvd.json b/domains/atharvd.json index eb71cd72c..f2ebcd78a 100644 --- a/domains/atharvd.json +++ b/domains/atharvd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "D-Atharv", - "email": "atharv.dewangan04@gmail.com" - }, - "record": { - "CNAME": "my-portfolio-dusky-six-78.vercel.app" - } + "owner": { + "username": "D-Atharv", + "email": "atharv.dewangan04@gmail.com" + }, + "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/atomtr.json b/domains/atomtr.json new file mode 100644 index 000000000..0cea42150 --- /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/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/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/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/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/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 index 97a4b991f..1b827d480 100644 --- a/domains/axo.json +++ b/domains/axo.json @@ -1,12 +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"] - } - } - \ No newline at end of file + "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/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/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/badnguy.json b/domains/badnguy.json index a2b292f48..f7160af9e 100644 --- a/domains/badnguy.json +++ b/domains/badnguy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nguyenbaduy011", - "email": "nguyenbaduy011@gmail.com" - }, - "record": { - "CNAME": "nguyenbaduy011.github.io" - } + "owner": { + "username": "nguyenbaduy011", + "email": "nguyenbaduy011@gmail.com" + }, + "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..7e2863e38 --- /dev/null +++ b/domains/bala.json @@ -0,0 +1,11 @@ +{ + "description": "For my github page", + "repo": "https://https://github.com/parzi-val/parzi-val", + "owner": { + "username": "parzi-val", + "email": "krbala1511@gmail.com" + }, + "record": { + "CNAME": "parzi-val.github.io" + } +} \ 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/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/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/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..a19403a2b --- /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 index 8a4b322eb..eb9c4c35e 100644 --- a/domains/base-swag.json +++ b/domains/base-swag.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Base-Swag", - "email": "officialnamefier@gmail.com" - }, - "record": { - "CNAME": "base-swag.github.io" - } + "owner": { + "username": "Base-Swag", + "email": "officialnamefier@gmail.com" + }, + "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/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..9707e7d66 --- /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/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/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/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/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/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/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/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/billion.json b/domains/billion.json new file mode 100644 index 000000000..021d46279 --- /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/binh.json b/domains/binh.json index 769861fa6..2c576dfbd 100644 --- a/domains/binh.json +++ b/domains/binh.json @@ -1,6 +1,5 @@ { "description": "Binh Pham's Personal Website", - "repo": "https://github.com/pham-tuan-binh", "owner": { "username": "pham-tuan-binh", "email": "binhpham@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/bio.json b/domains/bio.json new file mode 100644 index 000000000..b76f092fc --- /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..7d6db789d --- /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/blacsheep.json b/domains/blacsheep.json index 7d2f86b7b..f954b0cbc 100644 --- a/domains/blacsheep.json +++ b/domains/blacsheep.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "blacsheep", - "email": "lanzou1.0@gmail.com" - }, - "record": { - "CNAME": "blacsheep.github.io" - } + "owner": { + "username": "blacsheep", + "email": "lanzou1.0@gmail.com" + }, + "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 index b76c1ad1b..faf8bd9bb 100644 --- a/domains/bleemis42.json +++ b/domains/bleemis42.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "BleemIs42", - "description": "BleemIs42.is-a.dev", - "email": "BleemIs42@gmail.com" - }, - "record": { - "CNAME": "BleemIs42.github.io" - } + "owner": { + "username": "BleemIs42", + "description": "BleemIs42.is-a.dev", + "email": "BleemIs42@gmail.com" + }, + "record": { + "CNAME": "BleemIs42.github.io" + } } diff --git a/domains/blkdang1.json b/domains/blkdang1.json new file mode 100644 index 000000000..eea2ecdea --- /dev/null +++ b/domains/blkdang1.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "lmlmdf404" + }, + "record": { + "CNAME": "lmlmdf404.github.io" + } +} diff --git a/domains/blog.anirbaaaan.json b/domains/blog.anirbaaaan.json deleted file mode 100644 index 336288c99..000000000 --- a/domains/blog.anirbaaaan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "anirbaaaan183", - "email": "anirbanrc@proton.me" - }, - "record": { - "CNAME": "anirbaaaan183.github.io" - } -} diff --git a/domains/blog.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.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/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 index 61d6e350d..ae575ba75 100644 --- a/domains/bnfone.json +++ b/domains/bnfone.json @@ -6,9 +6,6 @@ "email": "is-a-dev-registration.zbden@simplelogin.com" }, "record": { - "NS": [ - "desiree.ns.cloudflare.com", - "mcgrory.ns.cloudflare.com" - ] + "NS": ["desiree.ns.cloudflare.com", "mcgrory.ns.cloudflare.com"] } } 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/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.json b/domains/bot.json index f4251255c..19228f791 100644 --- a/domains/bot.json +++ b/domains/bot.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "tanmoythebot" - }, - "record": { - "CNAME": "tanmoythebot.github.io" - } -} \ No newline at end of file + "owner": { + "username": "tanmoythebot" + }, + "record": { + "CNAME": "tanmoythebot.github.io" + } +} 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/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/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/brint.json b/domains/brint.json new file mode 100644 index 000000000..2cc468c60 --- /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/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/bteamapp.json b/domains/bteamapp.json index a71f767a9..7dea7e8b7 100644 --- a/domains/bteamapp.json +++ b/domains/bteamapp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "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/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 index ea5dd30e3..4d459c75e 100644 --- a/domains/bxqrn.json +++ b/domains/bxqrn.json @@ -1,12 +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" - } + "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/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/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/cam.json b/domains/cam.json index 63912f8a7..5743b0afb 100644 --- a/domains/cam.json +++ b/domains/cam.json @@ -1,6 +1,5 @@ { "description": "CAM Website", - "repo": "https://github.com/aswinmahesh", "owner": { "username": "aswinmahesh", "email": "aswinmahesh.com+dns@gmail.com" 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/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/cdn.winbo.json b/domains/cdn.komaru.json similarity index 54% rename from domains/cdn.winbo.json rename to domains/cdn.komaru.json index d2086cfc7..d2da00f19 100644 --- a/domains/cdn.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-cdn.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.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/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..a6b71ceae --- /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/chamo.json b/domains/chamo.json index e943113de..fd54f3c29 100644 --- a/domains/chamo.json +++ b/domains/chamo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "chamzz99", - "email": "chamzz.dev@gmail.com" - }, - "record": { - "CNAME": "chamzz99.github.io" - } + "owner": { + "username": "chamzz99", + "email": "chamzz.dev@gmail.com" + }, + "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/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/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/chez1s.json b/domains/chez1s.json index b60527bfe..3d26e8d73 100644 --- a/domains/chez1s.json +++ b/domains/chez1s.json @@ -1,6 +1,5 @@ { "description": "chez1s's is-a-dev domain", - "repo": "https://github.com/TRIBUI106", "owner": { "username": "TRIBUI106", "discord": "1250225950268850312" 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.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/chromesec.json b/domains/chromesec.json index 5554d73f5..2c08f2c99 100644 --- a/domains/chromesec.json +++ b/domains/chromesec.json @@ -1,12 +1,11 @@ { - "description": "Website for ChromeSEC a guide for admins to secure their chromeOS devices", - "repo": "https://github.com/CaenJones/ChromeSEC", - "owner": { - "username": "CaenJones", - "email": "cj@caenjones.com", - "twitter": "" - }, - "record": { - "URL": "https://caenjones.is-a.dev/ChromeSEC" - } -} + "description": "Website for ChromeSEC a guide for admins to secure their chromeOS devices", + "repo": "https://github.com/CaenJones/ChromeSEC", + "owner": { + "username": "CaenJones", + "email": "cj@caenjones.com" + }, + "record": { + "URL": "https://caenjones.is-a.dev/ChromeSEC" + } +} diff --git a/domains/chubol.json b/domains/chubol.json index 902c76331..748a8f34f 100644 --- a/domains/chubol.json +++ b/domains/chubol.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "chubol", - "email": "husks@tuta.io" - }, - "record": { - "CNAME": "chubol.github.io" - } + "owner": { + "username": "chubol", + "email": "husks@tuta.io" + }, + "record": { + "CNAME": "chubol.github.io" + } } diff --git a/domains/chuyentinorz.json b/domains/chuyentinorz.json index 1f03fe59e..0fabb67d3 100644 --- a/domains/chuyentinorz.json +++ b/domains/chuyentinorz.json @@ -1,18 +1,13 @@ { - "description": "This is the landing page of ChuyenTinORZ", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "A": [ - "216.198.79.65" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "This is the landing page of ChuyenTinORZ", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "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/clarenisme.json b/domains/clarenisme.json new file mode 100644 index 000000000..ed3477f52 --- /dev/null +++ b/domains/clarenisme.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "razelleclaren", + "email": "gracela.claren1@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/clayza.json b/domains/clayza.json index 5f2975dfe..0e3b2ae56 100644 --- a/domains/clayza.json +++ b/domains/clayza.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/ClayzaAubert/clayzaaubert.github.io", - "owner": { - "username": "ClayzaAubert", - "email": "clayzasc@gmail.com" - }, - "record": { - "CNAME": "clayzaaubert.github.io" - } + "repo": "https://github.com/ClayzaAubert/clayzaaubert.github.io", + "owner": { + "username": "ClayzaAubert", + "email": "clayzasc@gmail.com" + }, + "record": { + "CNAME": "clayzaaubert.github.io" + } } diff --git a/domains/clipping.json b/domains/clipping.json index 6fb3d138b..fe05c2050 100644 --- a/domains/clipping.json +++ b/domains/clipping.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "hazelvert" - }, - "record": { - "CNAME": "hazelvert.github.io" - } + "owner": { + "username": "hazelvert" + }, + "record": { + "CNAME": "hazelvert.github.io" + } } 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 index 2c130551d..12b3ec1a1 100644 --- a/domains/cloudy1337.json +++ b/domains/cloudy1337.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "OfficialSmojo17", - "email": "smmojo17@gmail.com", - "discord": "mapperdotexe" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "OfficialSmojo17", + "email": "smmojo17@gmail.com", + "discord": "mapperdotexe" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/co.ligmatv.json b/domains/co.ligmatv.json index ee5fdc4e8..7ce8810b1 100644 --- a/domains/co.ligmatv.json +++ b/domains/co.ligmatv.json @@ -5,11 +5,7 @@ "email": "ligmatv.id@gmail.com" }, "record": { - "MX": [ - "mx.zoho.com", - "mx2.zoho.com", - "mx3.zoho.com" - ], + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"], "TXT": [ "zoho-verification=zb21447312.zmverify.zoho.com", "v=spf1 include:zoho.com ~all" diff --git a/domains/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 index 09bf2c3d8..294c635b7 100644 --- a/domains/codelabworks.json +++ b/domains/codelabworks.json @@ -1,13 +1,10 @@ { - "repo": "https://github.com/shadowgaming-backup/register", - "owner": { - "email": "shadowgaming-backup@proton.me", - "username": "shadowgaming-backup" - }, - "record": { - "NS": [ - "mina.ns.cloudflare.com", - "harlan.ns.cloudflare.com" - ] - } + "repo": "https://github.com/shadowgaming-backup/register", + "owner": { + "email": "shadowgaming-backup@proton.me", + "username": "shadowgaming-backup" + }, + "record": { + "NS": ["mina.ns.cloudflare.com", "harlan.ns.cloudflare.com"] + } } diff --git a/domains/codesoft.json b/domains/codesoft.json new file mode 100644 index 000000000..bf961a1c8 --- /dev/null +++ b/domains/codesoft.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CodeSoftGit", + "email": "codesft@proton.me" + }, + "record": { + "CNAME": "codesoftgit.github.io" + }, + "proxied": true +} diff --git a/domains/codesuthar.json b/domains/codesuthar.json index dde7f4542..e61280157 100644 --- a/domains/codesuthar.json +++ b/domains/codesuthar.json @@ -4,9 +4,6 @@ "email": "AdityaSuthar13@outlook.com" }, "record": { - "NS": [ - "dexter.ns.cloudflare.com", - "fay.ns.cloudflare.com" - ] + "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/codexkun.json b/domains/codexkun.json new file mode 100644 index 000000000..a10cfd30e --- /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..afeee8671 --- /dev/null +++ b/domains/colin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ColinLeDev", + "email": "spam+isadev@col1n.fr" + }, + "record": { + "CNAME": "proxy.col1n.fr" + } + } + \ No newline at end of file diff --git a/domains/computerblade.json b/domains/computerblade.json index 20aab1e9e..1e16f82a0 100644 --- a/domains/computerblade.json +++ b/domains/computerblade.json @@ -1,8 +1,8 @@ -{ - "owner": { - "username": "computerblade-official" - }, - "record": { - "CNAME": "computerblade.vercel.app" - } -} +{ + "owner": { + "username": "computerblade-official" + }, + "record": { + "CNAME": "computerblade.vercel.app" + } +} diff --git a/domains/congnv.json b/domains/congnv.json index ff3ebedc8..faef4e873 100644 --- a/domains/congnv.json +++ b/domains/congnv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "congnv0330", - "email": "congnv3030@gmail.com" - }, - "record": { - "CNAME": "congnv0330.github.io" - } + "owner": { + "username": "congnv0330", + "email": "congnv3030@gmail.com" + }, + "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..bfadfe245 --- /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 +} \ No newline at end of file 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 3f117ee01..e03044749 100644 --- a/domains/count.json +++ b/domains/count.json @@ -1,7 +1,6 @@ { "owner": { "username": "theveryheavy", - "email": "", "discord": "1266113644643614803", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i4iZGukPgos1-y71KygQ_1d4ZPvnuuHgs8csldNT2FxY569U2isi4aCp5AheSznzqXWmPGTo38NmaFn1MelIVOzeFxTz8BHee9bKBcOQ06oxhKLavCiCykNWCjKyfYWHZre251Iv-zsnUgwO0OUbEjToo9PB6YRJ2LkOe1t5ZASxeMeA7QJziuVU5Cv7GWUbg-pZuWODrV4DTW8H6MdRzKFLY4WpxY5jUlnVsWiK6kZG_Wu2z1trzYplfN9T2lN1K1mNIXYgG_CMqNG1jXPQysoKqkhxjr4ItzFVdpAVso0LTmyhYg92ZQatP2SeD5gqZVVxqUKAj7lF6szfnttQbA.uxd1RFhSCU6cdViuiUODvg.NmpM1UKZ5CQ0qoVMplEzRW6yDCp1HsCQVXBQyCTZ3rvaCdPHuzKGnf3IQwMi801cx27D0o8wCiaF0J77whNrnkcMI9VBhajfhc8BrntWu1E.i05R_R9RRIO7RtW-elXkzA" }, 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/creeperita104.json b/domains/creeperita104.json index 1af8f40d5..5d9fecb76 100644 --- a/domains/creeperita104.json +++ b/domains/creeperita104.json @@ -4,6 +4,6 @@ "email": "creeperita.09@gmail.com" }, "record": { - "NS":["kyrie.ns.cloudflare.com","vida.ns.cloudflare.com"] - } + "NS": ["kyrie.ns.cloudflare.com", "vida.ns.cloudflare.com"] + } } 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/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/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 index e54f3c87a..d0d74d5bb 100644 --- a/domains/cursedscrubdaddygang.json +++ b/domains/cursedscrubdaddygang.json @@ -1,10 +1,10 @@ { - "owner": { - "repo": "https://github.com/QuantumMapleQC/quantummapleqc.github.io", - "username": "quantummapleqc", - "discord": "herricksom" - }, - "record": { - "CNAME": "quantummapleqc.github.io" - } -} + "owner": { + "repo": "https://github.com/QuantumMapleQC/quantummapleqc.github.io", + "username": "quantummapleqc", + "discord": "herricksom" + }, + "record": { + "CNAME": "quantummapleqc.github.io" + } +} diff --git a/domains/cvrvmebj6qss.bteamapp.json b/domains/cvrvmebj6qss.bteamapp.json index 5aff5ef1a..293c0c532 100644 --- a/domains/cvrvmebj6qss.bteamapp.json +++ b/domains/cvrvmebj6qss.bteamapp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "gv-g66qqa7lomqvs2.dv.googlehosted.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "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/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 index d279185ab..6cdfaa69b 100644 --- a/domains/daim.json +++ b/domains/daim.json @@ -1,7 +1,7 @@ { "owner": { "username": "sYnceDez41", - "email":"zdaim78@gmail.com" + "email": "zdaim78@gmail.com" }, "record": { "CNAME": "devdaim.vercel.app" diff --git a/domains/dainfloop.json b/domains/dainfloop.json index dc9b403cb..9cb76e3b1 100644 --- a/domains/dainfloop.json +++ b/domains/dainfloop.json @@ -1,22 +1,15 @@ { - "owner": { - "username": "DaInfLoop", - "email": "backupharoongames100@gmail.com" - }, - "record": { - "A": [ - "37.27.51.34" - ], - "AAAA": [ - "2a01:4f9:3081:399c::4" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 ip4:37.27.51.34 ip6:2a01:4f9:3081:399c::/64 include:spf.improvmx.com ~all", - "domain-verification=haroon" - ] - } + "owner": { + "username": "DaInfLoop", + "email": "backupharoongames100@gmail.com" + }, + "record": { + "A": ["37.27.51.34"], + "AAAA": ["2a01:4f9:3081:399c::4"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": [ + "v=spf1 ip4:37.27.51.34 ip6:2a01:4f9:3081:399c::/64 include:spf.improvmx.com ~all", + "domain-verification=haroon" + ] + } } 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/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/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/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/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/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/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.bernardonogueira8.json b/domains/dash.bernardonogueira8.json deleted file mode 100644 index 1b5d366c3..000000000 --- a/domains/dash.bernardonogueira8.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } -} diff --git a/domains/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/dauvet.json b/domains/dauvet.json new file mode 100644 index 000000000..86909dbb3 --- /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/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/davidsneighbour.json b/domains/davidsneighbour.json new file mode 100644 index 000000000..ad352b6a0 --- /dev/null +++ b/domains/davidsneighbour.json @@ -0,0 +1,13 @@ +{ + "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/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/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/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/default._domainkey.yxz.json b/domains/default._domainkey.yxz.json index db0fb2718..c64e4c0a0 100644 --- a/domains/default._domainkey.yxz.json +++ b/domains/default._domainkey.yxz.json @@ -1,14 +1,13 @@ { "owner": { "username": "yz9551", - "email": "", "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" + "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..b639fb837 --- /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/denisklimenko.json b/domains/denisklimenko.json new file mode 100644 index 000000000..b7d688c90 --- /dev/null +++ b/domains/denisklimenko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DenisKlimenko", + "email": "denis.klimenko.92@gmail.com" + }, + "record": { + "NS": ["destiny.ns.cloudflare.com", "kirk.ns.cloudflare.com"] + } +} 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 d0a2ef59c..30e53989e 100644 --- a/domains/devabh.json +++ b/domains/devabh.json @@ -1,7 +1,6 @@ { "owner": { "username": "devabh96", - "email": "", "discord": "760049962544791562", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cj4_MgLnwmfo1F0NcZvbKIKDQ23CcQAIjYT0X3SmU1YAipr02XR4E11TQqZIzlM6hPwbHUbB59OQx_zkcuN9JO2VaTteS_TpZZ8ytvxfdl60QtGhSAD3Q9zm0-oKKAbVEjR-EzEEwpftzw8VwQlQIgiYbXjZibHKp2D3KbKOB3J-C3cl5LBHhMKPFsFj6N12jwFDzrQeDO8mCrTgKX1D3YpiZaVkhMhuKVFwE0V2vXSx-JidQi3yz--KWLsfXZETU8YAVwFsEAroWLcerWOcNPYejvjQ51VMQDqaRz00AkTByNXXWYo1Q4q4wlZJd0wSIoKoK0iuvkPhSacjP6kW4A.yDr4bOjKGS35kiQ-0Tzj5Q.SrpxNDOW7NpFpZmetH-qJMomCelSSw3YTBGL3Vu2AtdYZ1OVQYWk8yhfGU0kVwyB4wAlPIQYaC2UXDqJXrHqSEmcK-P8f0uvKUiwaKHtaEw.Or8kZv4I4r03hoGLMr7MyQ" }, 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/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/devmatei.json b/domains/devmatei.json index 362b85d4b..0f7ac0edf 100644 --- a/domains/devmatei.json +++ b/domains/devmatei.json @@ -1,21 +1,22 @@ { - "owner": { - "username": "DevMatei", - "email": "matei.thoma@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ], - "MX": [ - "mx.zoho.eu", - "mx2.zoho.eu", - "mx3.zoho.eu" - ], - "TXT": [ - "v=spf1 include:zoho.eu ~all", - "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIOzUFPBEQXJA2Rh16fCXNC8YASZtoVbievhK2Wwof2/nd+TGcMiLhr9BT9Iiq7pc0zOlzA5fsCYzxXRpBQqiPvXQT/gYvWaVWIJaDSiQHuiz4mA8s8PEPX/iovSZWy4cCge9Gd1WKkFJLPHqVrFnOeVCPl8xFvcKU4z4uQIDAQAB" - ] - }, - "proxied": true + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev", + "discord": "784443338627612673" + }, + "record": { + "A": ["75.2.60.5"], + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], + "TXT": [ + "v=spf1 include:zoho.eu ~all", + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIOzUFPBEQXJA2Rh16fCXNC8YASZtoVbievhK2Wwof2/nd+TGcMiLhr9BT9Iiq7pc0zOlzA5fsCYzxXRpBQqiPvXQT/gYvWaVWIJaDSiQHuiz4mA8s8PEPX/iovSZWy4cCge9Gd1WKkFJLPHqVrFnOeVCPl8xFvcKU4z4uQIDAQAB" + ] + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/devmatei", + "/hating": "https://hate.is-a.dev" + } + }, + "proxied": true } 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/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/dhlcgd.json b/domains/dhlcgd.json index 0f61df0fe..84adf8b6e 100644 --- a/domains/dhlcgd.json +++ b/domains/dhlcgd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dhlcgd", - "email": "dhlcgdofficial@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/dhruvkoshta.json b/domains/dhruvkoshta.json new file mode 100644 index 000000000..2dc4ca279 --- /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/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/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.winbo.json b/domains/discord.winbo.json index b08208572..8d30e3739 100644 --- a/domains/discord.winbo.json +++ b/domains/discord.winbo.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-discord.github.io" } } diff --git a/domains/dishant.json b/domains/dishant.json new file mode 100644 index 000000000..5d91b89b7 --- /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 index fa95c2b86..3af928284 100644 --- a/domains/diti.json +++ b/domains/diti.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Pixeler5diti", - "email": "ditivasisht@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "Pixeler5diti", + "email": "ditivasisht@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } } diff --git a/domains/divyanshudhruv.json b/domains/divyanshudhruv.json index 4e927568d..7cd988fb0 100644 --- a/domains/divyanshudhruv.json +++ b/domains/divyanshudhruv.json @@ -6,6 +6,6 @@ "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/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/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/doansilinh.json b/domains/doansilinh.json new file mode 100644 index 000000000..9001d14a2 --- /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 index 8c0015644..3ba9f4f18 100644 --- a/domains/doantran.json +++ b/domains/doantran.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Gressi-177", - "email": "vietdoan177@gmail.com" - }, - "record": { - "CNAME": "portfolio-viet-doans-projects.vercel.app" - } + "owner": { + "username": "Gressi-177", + "email": "vietdoan177@gmail.com" + }, + "record": { + "CNAME": "portfolio-viet-doans-projects.vercel.app" + } } diff --git a/domains/docs.devmatei.json b/domains/docs.devmatei.json index fb9d70034..630ec0d94 100644 --- a/domains/docs.devmatei.json +++ b/domains/docs.devmatei.json @@ -4,8 +4,6 @@ "email": "matei.thoma@gmail.com" }, "record": { - "A": [ - "75.2.60.5" - ] + "A": ["75.2.60.5"] } } 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/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 index 192ccf751..103d52c52 100644 --- a/domains/donate.json +++ b/domains/donate.json @@ -5,5 +5,10 @@ }, "record": { "URL": "https://wdh.gg/M0ttgkD" + }, + "redirect_config": { + "custom_paths": { + "/ns": "https://wdh.gg/pvNCdvs" + } } } 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/doom.json b/domains/doom.json index 0812517cd..f9ad902fe 100644 --- a/domains/doom.json +++ b/domains/doom.json @@ -1,12 +1,12 @@ { - "description": "My personal website inspired by 90s personal websites made in Geocities", - "repo": "https://github.com/itsdoomone/itsdoomone.github.io", - "owner": { - "username": "ItsDoomOne", - "email": "leodroid796@gmail.com", - "discord": "527778424392253441" - }, - "record": { - "CNAME": "itsdoomone.github.io" - } + "description": "My personal website inspired by 90s personal websites made in Geocities", + "repo": "https://github.com/itsdoomone/itsdoomone.github.io", + "owner": { + "username": "ItsDoomOne", + "email": "leodroid796@gmail.com", + "discord": "527778424392253441" + }, + "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/drew.json b/domains/drew.json new file mode 100644 index 000000000..bd7232463 --- /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" + } +} diff --git a/domains/drpleaserespect.json b/domains/drpleaserespect.json index 1cbcb88f9..71a2f96e3 100644 --- a/domains/drpleaserespect.json +++ b/domains/drpleaserespect.json @@ -5,9 +5,6 @@ "discord": "300641942646161409" }, "record": { - "NS": [ - "frank.ns.cloudflare.com", - "hope.ns.cloudflare.com" - ] + "NS": ["frank.ns.cloudflare.com", "hope.ns.cloudflare.com"] } -} \ No newline at end of file +} 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..db2e7f5e9 --- /dev/null +++ b/domains/dtdung.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dtdung07" + }, + "record": { + "URL": "https://dtdung.us.to" + } +} diff --git a/domains/duc.json b/domains/duc.json new file mode 100644 index 000000000..dcdd0bddb --- /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 index f248301b0..3221f5f8d 100644 --- a/domains/ducanhng.json +++ b/domains/ducanhng.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ducanhitz", - "email": "ducanhng.dev@gmail.com" - }, - "record": { - "CNAME": "ducanhitz.github.io" - } + "owner": { + "username": "ducanhitz", + "email": "ducanhng.dev@gmail.com" + }, + "record": { + "CNAME": "ducanhitz.github.io" + } } 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 index 77573c131..1071bc285 100644 --- a/domains/ductai05.json +++ b/domains/ductai05.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ductai05", - "email": "ductai.dt05@gmail.com" - }, - "record": { - "CNAME": "ductai05.github.io" - } + "owner": { + "username": "ductai05", + "email": "ductai.dt05@gmail.com" + }, + "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 index 3e48290e3..3b34c1a70 100644 --- a/domains/duydo.json +++ b/domains/duydo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "duydo", - "email": "doquocduy@gmail.com" - }, - "record": { - "CNAME": "duydo.github.io" - } + "owner": { + "username": "duydo", + "email": "doquocduy@gmail.com" + }, + "record": { + "CNAME": "duydo.github.io" + } } diff --git a/domains/duyhandsome.json b/domains/duyhandsome.json new file mode 100644 index 000000000..aaefa83e0 --- /dev/null +++ b/domains/duyhandsome.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "dominhduy09" + }, + "record": { + "URL": "https://dominhduy09.github.io/profile/" + } +} diff --git a/domains/duyminhhello.json b/domains/duyminhhello.json index 762257986..8955fae4e 100644 --- a/domains/duyminhhello.json +++ b/domains/duyminhhello.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tranphamduyminhhello", - "email": "tranphamduyminh.hello@gmail.com" - }, - "record": { + "owner": { + "username": "tranphamduyminhhello", + "email": "tranphamduyminh.hello@gmail.com" + }, + "record": { "CNAME": "tranphamduyminhhello.github.io" } } 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/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 index 670fb7662..0f9a958a1 100644 --- a/domains/dyikes.json +++ b/domains/dyikes.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dyikes", - "email": "f@power.slmail.me" - }, - "record": { - "CNAME": "dyikes.duckdns.org" - } + "owner": { + "username": "dyikes", + "email": "f@power.slmail.me" + }, + "record": { + "CNAME": "dyikes.duckdns.org" + } } 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..76a51d94e 100644 --- a/domains/educatedsuddenbucket.json +++ b/domains/educatedsuddenbucket.json @@ -4,12 +4,7 @@ "email": "educatedsuddenbucket@gmail.com" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "A": ["185.199.108.153"], "TXT": [ "google-site-verification=hS8B2hSz-rNk6gLRnwaZjxuJE9rCLU_25X65JsLEczE", "v=spf1 include:spf.improvmx.com ~all" 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/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/ela.json b/domains/ela.json index 58fb9c211..c4fc3a1f4 100644 --- a/domains/ela.json +++ b/domains/ela.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "DXRdev" - }, - "record": { - "CNAME": "dxrdev.github.io" - } -} + "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/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/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/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/elite.json b/domains/elite.json index 402135049..d1fe4673f 100644 --- a/domains/elite.json +++ b/domains/elite.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "thaihung48", - "email": "contact.hungg+dev@gmail.com" - }, - "record": { - "NS": [ - "dilbert.ns.cloudflare.com", - "fish.ns.cloudflare.com" - ] - } + "owner": { + "username": "thaihung48", + "email": "contact.hungg+dev@gmail.com" + }, + "record": { + "NS": ["dilbert.ns.cloudflare.com", "fish.ns.cloudflare.com"] + } } diff --git a/domains/elulolaito.json b/domains/elulolaito.json index a55764619..ff267d0ca 100644 --- a/domains/elulolaito.json +++ b/domains/elulolaito.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "elulolaito", - "email": "eru.lawliet.death@gmail.com" - }, - "record": { - "CNAME": "elulolaito.github.io" - } + "owner": { + "username": "elulolaito", + "email": "eru.lawliet.death@gmail.com" + }, + "record": { + "CNAME": "elulolaito.github.io" + } } diff --git a/domains/elvis-tran.json b/domains/elvis-tran.json new file mode 100644 index 000000000..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/em697376.yxz.json b/domains/em697376.yxz.json index 7597b4ad3..82bd4c2ea 100644 --- a/domains/em697376.yxz.json +++ b/domains/em697376.yxz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yz9551", - "discord": "yz9551" - }, - "record": { - "CNAME": "return.smtp2go.net" - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "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/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..301fc4a5e --- /dev/null +++ b/domains/encoder.js.json @@ -0,0 +1,17 @@ +{ + "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" + ] + } +} diff --git a/domains/enginecreations.json b/domains/enginecreations.json index 4aec6ab1e..4efdc3b42 100644 --- a/domains/enginecreations.json +++ b/domains/enginecreations.json @@ -1,12 +1,12 @@ { - "description": "Engine Creations(TM) main pages", - "repo": "https://github.com/akk1to/enginecreations.github.io", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "CNAME": "akk1to.github.io" - } + "description": "Engine Creations(TM) main pages", + "repo": "https://github.com/akk1to/enginecreations.github.io", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "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/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/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/ethantran.json b/domains/ethantran.json new file mode 100644 index 000000000..fd2b34f39 --- /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..2765bcc02 --- /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" + } +} \ No newline at end of file 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/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..9444e0ff2 --- /dev/null +++ b/domains/existing.json @@ -0,0 +1,12 @@ +{ + "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..5d3190765 --- /dev/null +++ b/domains/exrand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exrand", + "email": "totallynota903@gmail.com" + }, + "record": { + "A": ["207.180.248.6"] + } +} 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/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/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/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/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 index ba3e36441..b321aa799 100644 --- a/domains/fakhridanishmp.json +++ b/domains/fakhridanishmp.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "fakhridanishmp" - }, - "record": { - "CNAME": "fakhridanishmp.github.io" - } -} + "owner": { + "username": "fakhridanishmp" + }, + "record": { + "CNAME": "fakhridanishmp.github.io" + } +} 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..95a5a3edb --- /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 9344f9dea..000000000 --- a/domains/farzan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Farzan F A is a Dev", - "repo": "https://github.com/Farzanfa/Farzanfa.github.io", - "owner": { - "username": "farzanfa", - "email": "farzanfa007@gmail.com" - }, - "record": { - "CNAME": "farzanfa.github.io" - } -} diff --git a/domains/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/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/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..87039e94e --- /dev/null +++ b/domains/felipecampos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "camposdev", + "email": "felipecamposdev@gmail.com" + }, + "record": { + "CNAME": "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/fendimohamed.json b/domains/fendimohamed.json new file mode 100644 index 000000000..c1298253f --- /dev/null +++ b/domains/fendimohamed.json @@ -0,0 +1,11 @@ +{ + "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/filip.json b/domains/filip.json new file mode 100644 index 000000000..8028dc3cd --- /dev/null +++ b/domains/filip.json @@ -0,0 +1,11 @@ +{ + "description": "Filip's personal site and/or CV", + "repo": "https://github.com/totalolage/totalolage.github.io", + "owner": { + "username": "totalolage", + "email": "filip@kalny.net" + }, + "record": { + "CNAME": "totalolage.github.io" + } +} diff --git a/domains/finch.json b/domains/finch.json new file mode 100644 index 000000000..d074436de --- /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/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/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 index b9f95b574..7de4befb7 100644 --- a/domains/fm7qby6i5y25.ttkt.json +++ b/domains/fm7qby6i5y25.ttkt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "gv-kys3ep4lrotyqc.dv.googlehosted.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "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/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..ebf63ec29 --- /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/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/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..040d16740 --- /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/fsoft72.json b/domains/fsoft72.json new file mode 100644 index 000000000..b97e6ff7d --- /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/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/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..4be4671cb --- /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/fynnlukah.json b/domains/fynnlukah.json new file mode 100644 index 000000000..7b49a8bc8 --- /dev/null +++ b/domains/fynnlukah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fynnlukah", + "discord": "727590288209608824" + }, + "record": { + "CNAME": "fynnlukah.vercel.app" + } +} diff --git a/domains/gabriel-iturre.json b/domains/gabriel-iturre.json new file mode 100644 index 000000000..4876467f9 --- /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/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..1bcc92bed --- /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/gary.json b/domains/gary.json index 7947054c1..57bd8f6e5 100644 --- a/domains/gary.json +++ b/domains/gary.json @@ -6,6 +6,6 @@ "email": "contact@garybot.dev" }, "record": { - "URL": "https://garylovesclimbingtreesexploringplacesandchasingbutterflies.garythecatisanadorablefelinealwaysseekingfunandadventure.site" + "CNAME": "garylovesclimbingtreesexploringplacesandchasingbutterflies.garythecatisanadorablefelinealwaysseekingfunandadventure.site" } } 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/generic.json b/domains/generic.json index 0ff8ccaf6..7109b99d8 100644 --- a/domains/generic.json +++ b/domains/generic.json @@ -1,7 +1,6 @@ { "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" }, diff --git a/domains/generic2.json b/domains/generic2.json index caffa15be..5c812ab87 100644 --- a/domains/generic2.json +++ b/domains/generic2.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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 index 8650a831e..8bc7b0824 100644 --- a/domains/genericx.json +++ b/domains/genericx.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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 index c0cb770ec..f794a11d2 100644 --- a/domains/generix.json +++ b/domains/generix.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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/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/ghostman.json b/domains/ghostman.json index e21c44a0f..4b4e043f7 100644 --- a/domains/ghostman.json +++ b/domains/ghostman.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ghostMan-pac", - "email": "asifp3104@gmail.com" - }, - "record": { - "CNAME": "ghostMan-pac.github.io" - } + "owner": { + "username": "ghostMan-pac", + "email": "asifp3104@gmail.com" + }, + "record": { + "CNAME": "ghostMan-pac.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/gifflet.json b/domains/gifflet.json index 5d9bc73c3..b27fda23f 100644 --- a/domains/gifflet.json +++ b/domains/gifflet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "gifflet", - "email": "guisousa09@hotmail.com" - }, - "record": { - "CNAME": "gifflet.github.io" - } + "owner": { + "username": "gifflet", + "email": "guisousa09@hotmail.com" + }, + "record": { + "CNAME": "gifflet.github.io" + } } diff --git a/domains/gilang.json b/domains/gilang.json index 9cfa123d6..e577cdcf8 100644 --- a/domains/gilang.json +++ b/domains/gilang.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "gilangportofolio", - "email": "gilang.portofolioo@gmail.com", - "description": "Personal Portfolio Website" - }, - "record": { - "CNAME": "gilangportofolio.github.io" - }, - "proxied": true + "owner": { + "username": "gilangportofolio", + "email": "gilang.portofolioo@gmail.com", + "description": "Personal Portfolio Website" + }, + "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 index dc947f5a5..f387a7880 100644 --- a/domains/gin.json +++ b/domains/gin.json @@ -1,10 +1,10 @@ { - "repo": "https://minh0111.github.io/ginny/", - "owner": { - "username": "minh0111", - "email": "kisaver157@gmail.com" - }, - "record": { - "CNAME": "minh0111.github.io" - } + "repo": "https://minh0111.github.io/ginny/", + "owner": { + "username": "minh0111", + "email": "kisaver157@gmail.com" + }, + "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/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..18dc8b2e1 --- /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/glutis.json b/domains/glutis.json index fc02a675f..5b4c759d6 100644 --- a/domains/glutis.json +++ b/domains/glutis.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "huyvu15", - "email": "huyv80313@gmail.com" - }, - "record": { - "CNAME": "huyvu15.github.io" - } + "owner": { + "username": "huyvu15", + "email": "huyv80313@gmail.com" + }, + "record": { + "CNAME": "huyvu15.github.io" + } } diff --git a/domains/glyphtones.json b/domains/glyphtones.json index b80cb23d6..8911738be 100644 --- a/domains/glyphtones.json +++ b/domains/glyphtones.json @@ -1,16 +1,12 @@ { - "owner": { - "username": "firu115", - "email": "firu-glyphtones@proton.me" - }, - "record": { - "A": [ - "5.75.148.17" - ], - "AAAA": [ - "2a01:04f8:0c0c:947e:0000:0000:0000:0001" - ] - }, - "description": "Glyphtones is a website that I made for sharing Nothing Phone ringtones that feature glyph light effects. https://nothing.tech/", - "repo": "https://github.com/Firu115/nothing_glyphtones" + "owner": { + "username": "firu115", + "email": "firu-glyphtones@proton.me" + }, + "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..8c6f689cd --- /dev/null +++ b/domains/goddy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Owinogoddie", + "email": "owinogoddie@gmail.com" + }, + "record": { + "URL": "https://goddy-the-dev.vercel.app" + } + } + \ No newline at end of file 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/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/goutam.json b/domains/goutam.json index d659147b1..dd0dda207 100644 --- a/domains/goutam.json +++ b/domains/goutam.json @@ -1,17 +1,10 @@ { - "owner": { - "username": "MatrixCoder0101" - }, - "record": { - "A": [ - "76.76.21.21" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] - } + "owner": { + "username": "MatrixCoder0101" + }, + "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/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/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..5baef4118 --- /dev/null +++ b/domains/guillelm.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Tech Website...", + "repo": "https://github.com/guilleLM71/portafolio", + "owner": { + "username": "guilleLM71", + "email": "jlauram3@fcpn.edu.bo" + }, + "record": { + "CNAME": "guillelm71.github.io" + } +} 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/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/guvent.json b/domains/guvent.json new file mode 100644 index 000000000..470563897 --- /dev/null +++ b/domains/guvent.json @@ -0,0 +1,12 @@ +{ + "description": "The portfolio site of Guven Topal", + "repo": "https://github.com/guvent/guvent", + "owner": { + "username": "guvent", + "email": "me@guvent.com" + }, + "record": { + "CNAME": "guvent.com" + } + } + \ No newline at end of file diff --git a/domains/gwly.json b/domains/gwly.json new file mode 100644 index 000000000..26e78f64a --- /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/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/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/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..f17d61b10 --- /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 index 3187a2d5e..4d5004fdc 100644 --- a/domains/haolamnm.json +++ b/domains/haolamnm.json @@ -1,10 +1,10 @@ { - "description": "Portfolio redirect for haolamnm", - "owner": { - "username": "haolamnm", - "email": "haolamnm.work@gmail.com" - }, - "record": { - "CNAME": "haolamnm.github.io" - } + "description": "Portfolio redirect for haolamnm", + "owner": { + "username": "haolamnm", + "email": "haolamnm.work@gmail.com" + }, + "record": { + "CNAME": "haolamnm.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/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/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/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..16e71771f --- /dev/null +++ b/domains/harunabdullah.json @@ -0,0 +1,12 @@ +{ + "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 index 3cd3062c8..4b150d5ab 100644 --- a/domains/hate.json +++ b/domains/hate.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "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/hating.devmatei.json b/domains/hating.devmatei.json index 3cd3062c8..4b150d5ab 100644 --- a/domains/hating.devmatei.json +++ b/domains/hating.devmatei.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "DevMatei", - "email": "contact@devmatei.is-a.dev" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } } 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/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..883675cff --- /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/heyaxo.json b/domains/heyaxo.json new file mode 100644 index 000000000..1f3dd451e --- /dev/null +++ b/domains/heyaxo.json @@ -0,0 +1,19 @@ +{ + "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/hien.json b/domains/hien.json index 092a76457..c3cf8f11d 100644 --- a/domains/hien.json +++ b/domains/hien.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hienlh", - "email": "hienlh1298@gmail.com" - }, - "record": { - "CNAME": "hienlh-github-io.vercel.app" - } + "owner": { + "username": "hienlh", + "email": "hienlh1298@gmail.com" + }, + "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/holedev.json b/domains/holedev.json new file mode 100644 index 000000000..25c0f5245 --- /dev/null +++ b/domains/holedev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "holedev", + "email": "contact@holedev.com" + }, + "record": { + "URL": "https://github.com/holedev" + } +} \ No newline at end of file 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/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..bfc84d262 --- /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 index 44d0ed479..98543bc3e 100644 --- a/domains/hongson.json +++ b/domains/hongson.json @@ -1,12 +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" - } - } - + "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/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 a2dfe34c5..d8e3b4cd6 100644 --- a/domains/horu.json +++ b/domains/horu.json @@ -1,7 +1,6 @@ { "owner": { - "username": "HigherOrderLogic", - "email": "73709188+HigherOrderLogic@users.noreply.github.com" + "username": "HigherOrderLogic" }, "record": { "CNAME": "higherorderlogic.github.io" diff --git a/domains/hotfix.saftec.json b/domains/hotfix.saftec.json index 1b5d366c3..29f984f33 100644 --- a/domains/hotfix.saftec.json +++ b/domains/hotfix.saftec.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } + "owner": { + "username": "Samuraiflamesf", + "email": "Samuraiflamesf@gmail.com" + }, + "record": { + "A": ["152.67.45.142"] + } } diff --git a/domains/houloude9.json b/domains/houloude9.json index c0c9c96db..b812b452c 100644 --- a/domains/houloude9.json +++ b/domains/houloude9.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Houloude9IOfficial" - }, - "record": { - "CNAME": "houloude9.pages.dev" - } + "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/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/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/iamdhakrey.json b/domains/iamdhakrey.json new file mode 100644 index 000000000..a9d55f97e --- /dev/null +++ b/domains/iamdhakrey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamdhakrey", + "email": "dhakreyhrithik@gmail.com" + }, + "record": { + "URL": "https://iamdhakrey.dev" + } + } \ No newline at end of file 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/ibru.json b/domains/ibru.json new file mode 100644 index 000000000..a00e3f7d0 --- /dev/null +++ b/domains/ibru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me" + }, + "record": { + "URL": "https://satindar.is-a.dev" + } +} 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/idcesares.json b/domains/idcesares.json new file mode 100644 index 000000000..53cb961d0 --- /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..58db049ff --- /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/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/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/img.devmatei.json b/domains/img.devmatei.json new file mode 100644 index 000000000..b0b7702b5 --- /dev/null +++ b/domains/img.devmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "CNAME": "proxy.iostpa.com" + } +} 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/inputly.json b/domains/inputly.json new file mode 100644 index 000000000..b2685635a --- /dev/null +++ b/domains/inputly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NateNear", + "email": "matternate21@gmail.com" + }, + "record": { + "CNAME": "inputly.vercel.app" + } +} \ No newline at end of file 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/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 index f2123e4a4..bc21f228c 100644 --- a/domains/iscordian.json +++ b/domains/iscordian.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "iscordian", - "email": "iscordian.dev@gmail.com" - }, - "record": { - "CNAME": "iscordian.github.io" - } + "owner": { + "username": "iscordian", + "email": "iscordian.dev@gmail.com" + }, + "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..1ff10640a --- /dev/null +++ b/domains/islandboy.json @@ -0,0 +1,14 @@ +{ + "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/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 ad1448374..000000000 --- a/domains/itsdemongamez.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DemonGamez", - "email": "peterwyneg@gmail.com", - "discord": "1038747272701292584" - }, - "record": { - "CNAME": "demongamez.github.io" - } -} diff --git a/domains/itsjhonalex.json b/domains/itsjhonalex.json new file mode 100644 index 000000000..395fc6a3f --- /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..ae29b4c2f --- /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/iusearchbtw.json b/domains/iusearchbtw.json deleted file mode 100644 index c522d6c12..000000000 --- a/domains/iusearchbtw.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "iamnotmega", - "email": "uksningaken@gmail.com" - }, - "record": { - "CNAME": "iamnotmega.github.io" - } -} diff --git a/domains/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/izerr.json b/domains/izerr.json index acfe3a8db..c54809354 100644 --- a/domains/izerr.json +++ b/domains/izerr.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Explodey-Wolf", - "email": "peanutplays61@gmail.com" - }, - "record": { - "A": [ - "76.76.21.21" - ] - } + "owner": { + "username": "Explodey-Wolf", + "email": "peanutplays61@gmail.com" + }, + "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 6bfc0f035..49769b580 100644 --- a/domains/j.json +++ b/domains/j.json @@ -14,8 +14,6 @@ "185.199.111.153" ], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": [ - "v=spf1 include:spf.improvmx.com ~all" - ] + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/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/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/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/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/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/jamestheflash.json b/domains/jamestheflash.json index bf26d55c6..385f50821 100644 --- a/domains/jamestheflash.json +++ b/domains/jamestheflash.json @@ -5,7 +5,7 @@ "username": "JamesTheFlash", "email": "me@jamestheflash22.is-a.dev" }, -"record": { - "CNAME": "jamestheflash22.github.io" - } -} + "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/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/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..fe8dcd21a --- /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..a0cfc9d51 --- /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 index cc6111d71..7a40c9b69 100644 --- a/domains/jayakrishna.json +++ b/domains/jayakrishna.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jayakrishna-g", - "email": "rareone.jk@gmail.com" - }, - "record": { - "CNAME": "jggandha-30911ba21954.herokuapp.com" - } + "owner": { + "username": "jayakrishna-g", + "email": "rareone.jk@gmail.com" + }, + "record": { + "CNAME": "jggandha-30911ba21954.herokuapp.com" + } } diff --git a/domains/jayasurya.json b/domains/jayasurya.json index d6eff00bf..803aed0ce 100644 --- a/domains/jayasurya.json +++ b/domains/jayasurya.json @@ -4,5 +4,6 @@ }, "record": { "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/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..22f4d0cd7 --- /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..ab21b4c1b --- /dev/null +++ b/domains/jeielmiranda.json @@ -0,0 +1,11 @@ +{ + "description": "Personal subdomain", + "repo": "https://github.com/Jetrom17/jetrom17.github.io", + "owner": { + "username": "Jetrom17", + "email": "jeiel@duck.com" + }, + "record": { + "CNAME": "jetrom17.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/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/kush.json b/domains/jeremiah.json similarity index 56% rename from domains/kush.json rename to domains/jeremiah.json index 185f39166..e84107fae 100644 --- a/domains/kush.json +++ b/domains/jeremiah.json @@ -1,8 +1,7 @@ { "owner": { - "username": "Kush-Dhingra", - "email": "kushdhingra3112@gmail.com", - "discord": "1035869217796403220" + "username": "1tsJeremiah", + "email": "jmatdesigns@gmail.com" }, "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], 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/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/jeymen.json b/domains/jeymen.json deleted file mode 100644 index 681eb900f..000000000 --- a/domains/jeymen.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "owner": { - "username": "Jeymen", - "email": "jeymen11@proton.me" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": "v=spf1 include:zoho.eu ~all" - } -} diff --git a/domains/jg.json b/domains/jg.json new file mode 100644 index 000000000..b8f48c746 --- /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" + } +} \ No newline at end of file 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..b938c448e --- /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..4eca0d1b6 --- /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/johansansebastian.json b/domains/johansansebastian.json index 92a131883..49af64878 100644 --- a/domains/johansansebastian.json +++ b/domains/johansansebastian.json @@ -1,6 +1,5 @@ { "description": "Johan's personal developer website", - "repo": "https://github.com/JohanSanSebastian.github.io", "owner": { "username": "JohanSanSebastian", "email": "johansanju06@gmail.com" 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/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..45a318066 --- /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" + } +} \ No newline at end of file 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/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/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/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/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/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/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/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/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..fcd0b2390 --- /dev/null +++ b/domains/juanpabloleonmaya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juanleon8581", + "email": "juanleon8581@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} \ No newline at end of file diff --git a/domains/juantito.json b/domains/juantito.json new file mode 100644 index 000000000..779db68dd --- /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..076d28baa --- /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 index a75522363..6b28bb722 100644 --- a/domains/julianwe17.json +++ b/domains/julianwe17.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "Julianwe17", - "email": "julian.in.hbr@gmail.com", - "discord": "1055740356764901437" - }, - - "record": { - "CNAME": "julianwe17.github.io" - } - } - + "owner": { + "username": "Julianwe17", + "email": "julian.in.hbr@gmail.com", + "discord": "1055740356764901437" + }, + "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/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/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/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/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/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..760ed1e29 --- /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/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/kartikshriwas.json b/domains/kartikshriwas.json index 5934ebdcc..6305788fd 100644 --- a/domains/kartikshriwas.json +++ b/domains/kartikshriwas.json @@ -1,7 +1,6 @@ { "owner": { "username": "kartikshriwas", - "email": "", "discord": "756002965323645069", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pJe5J41LBdrD2xDWudBiVp66kIxdQIj60sraae1BOQ-SQ27mGzfBzsGjxzPfvEFSOFZd2sceXvK87x15PvOXRtdYvfUKNAFmt-oxcbfAfSmaiH4YtSFe7re3F5QEDNfYvYH96QsMwHQoj2CP5-5CceqWULYFvkusOL_4ScO8yYYYCRrDCKCJ8nP80wUT2ltwAikLqY6iJTwJvWS1LqiInC1qAn8VfA5-0Z6pgXCL7sMIsLWO-GZKXOqGUE_b5zV8LOgRml_RQgOlCZ306TVpOE2eF7M37nZ3ETbY3OWQo125q43oiisPZGo89sfL3jRxzd4OpaC56sEvEjj5_eXE6w.Bo1EpPh6LJSpWzAWSiqEYA.IHIiJ7JdCyD6CYg9bjHxHuBTJPluhpe2PGzmCR8A9RPmRcCitK4H5bTCXCw1R3qw6gIy2IugE9-Bt5iHulfHLHgPOmeg5xN8SHo5ea-Z7U4.1LJXKyAg2vnLjmnCoxQvGQ" }, diff --git a/domains/katumbapaul.json b/domains/katumbapaul.json new file mode 100644 index 000000000..33aab8e61 --- /dev/null +++ b/domains/katumbapaul.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kpaool", + "email": "jonathapkatumba@gmail.com" + }, + "record": { + "CNAME": "katumbapaul.com" + } + } + \ No newline at end of file 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/kelly.json b/domains/kelly.json new file mode 100644 index 000000000..b6edc2131 --- /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/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..4f15f284c --- /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..5d1d0baa9 --- /dev/null +++ b/domains/kevinmolina.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kevinmolinadev", + "email": "kevinmolina.dev@gmail.com" + }, + "record": { + "CNAME": "kevinmolinadev.vercel.app" + } +} \ No newline at end of file diff --git a/domains/keybinds.json b/domains/keybinds.json index b9512c5cd..39bb6215f 100644 --- a/domains/keybinds.json +++ b/domains/keybinds.json @@ -1,18 +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" - ] - } + "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/keys.devmatei.json b/domains/keys.devmatei.json new file mode 100644 index 000000000..10dc9ea92 --- /dev/null +++ b/domains/keys.devmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "matei.thoma@gmail.com" + }, + "record": { + "A": ["176.100.37.70"] + } +} 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/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/khuong.json b/domains/khuong.json new file mode 100644 index 000000000..3959d95a7 --- /dev/null +++ b/domains/khuong.json @@ -0,0 +1,10 @@ +{ + "description": "khuong.is-a.dev : This is my personal notebook", + "owner": { + "username": "lamngockhuong", + "email": "me@ngockhuong.com" + }, + "record": { + "URL": "https://dev.ngockhuong.com" + } +} 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/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/kind-nodes.arnxv.json b/domains/kind-nodes.arnxv.json index 2e23bf9fd..5ffe17247 100644 --- a/domains/kind-nodes.arnxv.json +++ b/domains/kind-nodes.arnxv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "record": { + "CNAME": "cname.vercel-dns.com" + } } 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 index 3e040c29f..51718cb2f 100644 --- a/domains/kitb2romjbz3.dhlcgd.json +++ b/domains/kitb2romjbz3.dhlcgd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dhlcgd", - "email": "dhlcgdofficial@gmail.com" - }, - "record": { - "CNAME": "gv-zz3nklni3izils.dv.googlehosted.com" - } + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "record": { + "CNAME": "gv-zz3nklni3izils.dv.googlehosted.com" + } } 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/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 index fbb9808a8..fb8dfcd0a 100644 --- a/domains/kn0tzer.json +++ b/domains/kn0tzer.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Kn0tzer", - "email": "g4marchi@gmail.com" - }, - "record": { - "CNAME": "kn0tzer.github.io" - } -} + "owner": { + "username": "Kn0tzer", + "email": "g4marchi@gmail.com" + }, + "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/konnn04.json b/domains/konnn04.json new file mode 100644 index 000000000..97a66b43e --- /dev/null +++ b/domains/konnn04.json @@ -0,0 +1,11 @@ +{ + "description": "Hello World!", + "repo": "https://github.com/konnn04/konnn04.github.io", + "owner": { + "username": "konnn04", + "email": "trieukon1011@gmail.com" + }, + "record": { + "CNAME": "konnn04.github.io" + } +} diff --git a/domains/konstantin-ivanov.json b/domains/konstantin-ivanov.json index 1c6418840..eea7f765f 100644 --- a/domains/konstantin-ivanov.json +++ b/domains/konstantin-ivanov.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "KonstanTinoVino", - "email": "koiv.work@gmail.com" - }, - "record": { - "CNAME": "konstantinovino.github.io" - } -} + "owner": { + "username": "KonstanTinoVino", + "email": "koiv.work@gmail.com" + }, + "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 index 827dd575f..892dd259a 100644 --- a/domains/krebinkkj.json +++ b/domains/krebinkkj.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "krebinkkj", - "email": "krebinkkj@gmail.com", - "discord": "1041878326169587732" - }, - "record": { - "CNAME": "krebinkkj.vercel.app" - } + "owner": { + "username": "krebinkkj", + "email": "krebinkkj@gmail.com", + "discord": "1041878326169587732" + }, + "record": { + "CNAME": "krebinkkj.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/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/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 94d0dfea3..000000000 --- a/domains/kushdhingra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "kushdhingra", - "email": "kushdhingra3112@gmail.com", - "discord": "1035869217796403220", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJTReSXxF-8BxDH8rn6i_DIx0XuVrc4yYnOEN1Awfp7mZcYPIgcPt4mvsScPbJYhZLN5XtDlxl0DcdU8Za12GCk-aIWegJ9-_32bdjw3agBzaJ-ltaslRoVpNJ3zfLaQ9V-BrhwVMEJhpz5-0eYeEiikL4tHAoPzzKMlYIf8f5l7IL6aMfhBZvIFf0B3upGg2FeOpFCXAsttU5QiKkjUt4BjetuYb29UJoNzDco1ZExLdudlKd_fz6IcaAsw2K1u6MMDDs2khsic9M42AE3pRFCP_hacdllY5Z66ATlmKhYAxFryJYWrgbfpGX2PxSrQalAao_IP1TIGgiq7ugiBDw.Lg-WIZSH_nzEfnLZct78Cg.soPtqjy32EA2Ew63dHQ8P8-dt4ZihvZpipBVkHyX_rlnv-y5YpS5v2-2d3O5hGHRfCKnfxQsvewDfcPSGa4_Oq8BN01Kzhbet8AXRCK6uOM.ouoa2YqHKAeX9lKWZoFaog" - }, - "record": { - "CNAME": "kushdhingra.vercel.app" - } -} diff --git a/domains/meenbeese.json b/domains/kuzey.json similarity index 100% rename from domains/meenbeese.json rename to domains/kuzey.json diff --git a/domains/l0ser.json b/domains/l0ser.json index d1b55020d..67b442d2e 100644 --- a/domains/l0ser.json +++ b/domains/l0ser.json @@ -1,6 +1,5 @@ { "description": "L0SER's personal developer website", - "repo": "https://github.com/L0SER8228", "owner": { "username": "L0SER8228", "email": "loserlackey@gmail.com" diff --git a/domains/l6174.json b/domains/l6174.json index 505eb5de7..db7f0b6bd 100644 --- a/domains/l6174.json +++ b/domains/l6174.json @@ -6,9 +6,6 @@ "email": "l6174@proton.me" }, "record": { - "NS": [ - "armfazh.ns.cloudflare.com", - "stella.ns.cloudflare.com" - ] + "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..87130f2ba --- /dev/null +++ b/domains/la-pyae-oo.json @@ -0,0 +1,11 @@ +{ + "description": "For my static portfolio website", + "owner": { + "username": "LaPyaeOo", + "email": "lapyaeootharthar@gmail.com" + }, + "record": { + "CNAME": "lapyaeoo.github.io" + }, + "proxied": true +} 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/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/lamnguyenz.json b/domains/lamnguyenz.json index e3f2ffe57..795e9046a 100644 --- a/domains/lamnguyenz.json +++ b/domains/lamnguyenz.json @@ -1,11 +1,11 @@ { - "description": "Personal Blog Site", - "repo": "https://github.com/LamNguyenz/lamnguyenz.github.io", - "owner": { - "username": "LamNguyenz", - "email": "lamnguyen11e@gmail.com" - }, - "record": { - "CNAME": "lamnguyenz.github.io" - } + "description": "Personal Blog Site", + "repo": "https://github.com/LamNguyenz/lamnguyenz.github.io", + "owner": { + "username": "LamNguyenz", + "email": "lamnguyen11e@gmail.com" + }, + "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/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/layhout.json b/domains/layhout.json new file mode 100644 index 000000000..c36c03fa1 --- /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 index 0a4eadf66..ad1bda352 100644 --- a/domains/ldt.json +++ b/domains/ldt.json @@ -1,9 +1,9 @@ { "owner": { - "username": "luongductrong", - "email": "luongductrong2004@gmail.com" + "username": "luongductrong", + "email": "luongductrong2004@gmail.com" }, "record": { - "CNAME": "luongductrong.github.io" + "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/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/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/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/liam.json b/domains/liam.json new file mode 100644 index 000000000..596537c09 --- /dev/null +++ b/domains/liam.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "liamatienza", + "email": "liamdev@duck.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" + }, + "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/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/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.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.yxz.json b/domains/link.yxz.json index caf22b944..af2b7f4ee 100644 --- a/domains/link.yxz.json +++ b/domains/link.yxz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yz9551", - "discord": "yz9551" - }, - "record": { - "CNAME": "track.smtp2go.net" - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "record": { + "CNAME": "track.smtp2go.net" + } } diff --git a/domains/linkman.json b/domains/linkman.json index a855040ca..94aeb6a12 100644 --- a/domains/linkman.json +++ b/domains/linkman.json @@ -1,11 +1,11 @@ { - "description": "Website to put information about my projects", - "repo": "https://github.com/linkman8912/website", - "owner": { - "username": "linkman8912", - "email": "linkman8912@proton.me" - }, - "record": { - "CNAME": "website-1i7.pages.dev" - } + "description": "Website to put information about my projects", + "repo": "https://github.com/linkman8912/website", + "owner": { + "username": "linkman8912", + "email": "linkman8912@proton.me" + }, + "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/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/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/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 index b6be86811..2e991fa5d 100644 --- a/domains/loinguyende.json +++ b/domains/loinguyende.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "loinguyen3108", - "email": "ntloic3tbt@gmail.com" - }, - "record": { - "CNAME": "my-second-brain-omega.vercel.app" - } + "owner": { + "username": "loinguyen3108", + "email": "ntloic3tbt@gmail.com" + }, + "record": { + "CNAME": "my-second-brain-omega.vercel.app" + } } diff --git a/domains/lololand.json b/domains/lololand.json new file mode 100644 index 000000000..aeb4627b9 --- /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/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/lorenzobautista.json b/domains/lorenzobautista.json new file mode 100644 index 000000000..9f2b103a1 --- /dev/null +++ b/domains/lorenzobautista.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lorenbaucas", + "discord": "Draklum#3847" + }, + "record": { + "CNAME": "myblog-e3n6qwsjfj.live-website.com" + } +} diff --git a/domains/lqhuy.json b/domains/lqhuy.json index 13a49f7ca..e7b0355fe 100644 --- a/domains/lqhuy.json +++ b/domains/lqhuy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Lqhuy125", - "email": "lequanghuy1252206@gmail.com" - }, - "record": { - "CNAME": "lqhuy125.github.io" - } + "owner": { + "username": "Lqhuy125", + "email": "lequanghuy1252206@gmail.com" + }, + "record": { + "CNAME": "lqhuy125.github.io" + } } 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..5d94b96db --- /dev/null +++ b/domains/luanvu.json @@ -0,0 +1,13 @@ +{ + "description": "My portfolio website", + "repo": "https://github.com/zthanhluan/luan.is-a.dev", + "owner": { + "username": "zthanhluan", + "email": "dientu078@gmail.com" + }, + "record": { + "A": ["46.17.172.206"] + }, + + "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/ludolua.json b/domains/ludolua.json new file mode 100644 index 000000000..ed49f49cf --- /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 a5fef5c3b..54d42ba90 100644 --- a/domains/luihh.json +++ b/domains/luihh.json @@ -6,5 +6,16 @@ }, "record": { "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..acfa30b90 --- /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 91d0b04f2..c98b1cb19 100644 --- a/domains/lumi.json +++ b/domains/lumi.json @@ -1,7 +1,6 @@ { "owner": { "username": "itsFatlum", - "email": "", "discord": "563697359423406082" }, "record": { diff --git a/domains/lumidevelopment.json b/domains/lumidevelopment.json index e8cd32dc5..ad38854dc 100644 --- a/domains/lumidevelopment.json +++ b/domains/lumidevelopment.json @@ -1,7 +1,6 @@ { "owner": { "username": "itsFatlum", - "email": "", "discord": "563697359423406082" }, "record": { diff --git a/domains/lunah.json b/domains/lunah.json index bb6a54ddf..3b4e37b1e 100644 --- a/domains/lunah.json +++ b/domains/lunah.json @@ -1,6 +1,5 @@ { "description": "VPS hosted domain", - "repo": "https://github.com/piotr25691", "owner": { "username": "piotr25691", "discord": "b4.lunah" diff --git a/domains/luoduyu.json b/domains/luoduyu.json index 6eba634d5..084c99d34 100644 --- a/domains/luoduyu.json +++ b/domains/luoduyu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "luoduyu", - "email": "luoduyu@hotmail.com" - }, - "record": { - "CNAME":"luoduyu.github.io" - } + "owner": { + "username": "luoduyu", + "email": "luoduyu@hotmail.com" + }, + "record": { + "CNAME": "luoduyu.github.io" + } } diff --git a/domains/luvtoxic.json b/domains/luvtoxic.json new file mode 100644 index 000000000..65029ed5f --- /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/lyaxsh.json b/domains/lyaxsh.json new file mode 100644 index 000000000..7c4c61b87 --- /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/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/mackenzie.json b/domains/mackenzie.json index 69ca93fba..10f0a44a3 100644 --- a/domains/mackenzie.json +++ b/domains/mackenzie.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jojocraftde-dev", - "email": "jojocraftde@proton.me" - }, - "record": { - "A": ["91.200.103.154"] - } + "owner": { + "username": "jojocraftde-dev", + "email": "jojocraftde@proton.me" + }, + "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/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/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/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..46eff1630 --- /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/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.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.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.minmit.json b/domains/mail.minmit.json index 9c375418a..bee099b5c 100644 --- a/domains/mail.minmit.json +++ b/domains/mail.minmit.json @@ -1,6 +1,5 @@ { "description": "Mail For My Website", - "repo": "https://github.com/MinMitCoder", "owner": { "username": "MinMitCoder", "email": "minmitgamer@gmail.com" diff --git a/domains/mail.mrstickypiston.json b/domains/mail.mrstickypiston.json index 2179d6b97..c120e7523 100644 --- a/domains/mail.mrstickypiston.json +++ b/domains/mail.mrstickypiston.json @@ -1,11 +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": "v=spf1 include:_spf.mailersend.net ~all" - } -} \ No newline at end of file + "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/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/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/manoj.json b/domains/manoj.json new file mode 100644 index 000000000..149c49b63 --- /dev/null +++ b/domains/manoj.json @@ -0,0 +1,12 @@ +{ + "description": "Manoj's portfolio website", + "repo": "https://github.com/ManojINaik/portfolio", + "owner": { + "username": "ManojINaik", + "email": "naik97059@gmail.com" + }, + "record": { + "CNAME": "manojinaik.github.io" + } + } + \ No newline at end of file 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/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/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/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/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/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/mateogariboglio.json b/domains/mateogariboglio.json new file mode 100644 index 000000000..3b73f89dc --- /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..260df4beb --- /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/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/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..376e8374c --- /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/mcalec.json b/domains/mcalec.json new file mode 100644 index 000000000..cd7664694 --- /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/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/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..3649fe4d8 --- /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/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/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 index 7af06d425..70b203dc4 100644 --- a/domains/melatonin.json +++ b/domains/melatonin.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "heheleo", - "email": "leowasntfound@gmail.com" - }, - "record": { - "CNAME": "heheleo.github.io" - } + "owner": { + "username": "heheleo", + "email": "leowasntfound@gmail.com" + }, + "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/mertdemir.json b/domains/mertdemir.json new file mode 100644 index 000000000..ca349c00b --- /dev/null +++ b/domains/mertdemir.json @@ -0,0 +1,12 @@ +{ + "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/mew.json b/domains/mew.json index b620c7f01..922728d65 100644 --- a/domains/mew.json +++ b/domains/mew.json @@ -1,12 +1,9 @@ -{ - "owner": { - "username": "meewmeew", - "email": "mauminh.nguyen@gmail.com" - }, - "record": { - "NS": [ - "bart.ns.cloudflare.com", - "karina.ns.cloudflare.com" - ] - } -} \ No newline at end of file +{ + "owner": { + "username": "meewmeew", + "email": "mauminh.nguyen@gmail.com" + }, + "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/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/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/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/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/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/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 index 0a2e96ce5..4b150d5ab 100644 --- a/domains/minify.json +++ b/domains/minify.json @@ -4,8 +4,6 @@ "email": "contact@devmatei.is-a.dev" }, "record": { - "A": [ - "75.2.60.5" - ] + "A": ["75.2.60.5"] } } diff --git a/domains/minitor.json b/domains/minitor.json index e10eeb8af..1b9c58667 100644 --- a/domains/minitor.json +++ b/domains/minitor.json @@ -1,11 +1,11 @@ { - "description": "Self hosted service", - "repo": "https://github.com/MinitorMHS/register", - "owner": { - "username": "minitormhs", - "email": "me@minitor.eu.org" - }, - "record": { - "CNAME": "cf-repl.pages.dev" - } + "description": "Self hosted service", + "repo": "https://github.com/MinitorMHS/register", + "owner": { + "username": "minitormhs", + "email": "me@minitor.eu.org" + }, + "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/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/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/mlsend2._domainkey.mail.mrstickypiston.json b/domains/mlsend2._domainkey.mail.mrstickypiston.json deleted file mode 100644 index 5f6b5488c..000000000 --- a/domains/mlsend2._domainkey.mail.mrstickypiston.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "MrStickyPiston", - "discord": "700766242268774471", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag" - }, - - "record": { - "CNAME": "mlsend2._domainkey.mailersend.net" - } - } - \ No newline at end of file diff --git a/domains/mmondragon.json b/domains/mmondragon.json new file mode 100644 index 000000000..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/mod.s4il.json b/domains/mod.s4il.json index 6d450044b..e4788bcf6 100644 --- a/domains/mod.s4il.json +++ b/domains/mod.s4il.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "S4IL21", - "email": "s4il.is.a.dev@gmail.com" - }, - "record": { - "CNAME": "s4il21.github.io" - } + "owner": { + "username": "S4IL21", + "email": "s4il.is.a.dev@gmail.com" + }, + "record": { + "CNAME": "s4il21.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/mohammedobaid.json b/domains/mohammedobaid.json new file mode 100644 index 000000000..a01a57d5a --- /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..a25cce59a --- /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/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..835aa5627 --- /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/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/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..c24841fc2 --- /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" + } +} \ No newline at end of file diff --git a/domains/mostypc123.json b/domains/mostypc123.json index 705dcd965..7e3e28653 100644 --- a/domains/mostypc123.json +++ b/domains/mostypc123.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "mostypc123" - }, - "record": { - "CNAME": "mostypc123.github.io" - } -} + "owner": { + "username": "mostypc123" + }, + "record": { + "CNAME": "mostypc123.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/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/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/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 efbb3b648..11c5a8828 100644 --- a/domains/mrkos.json +++ b/domains/mrkos.json @@ -2,8 +2,7 @@ "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" 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/mta.mail.mrstickypiston.json b/domains/mta.mail.mrstickypiston.json deleted file mode 100644 index 748577693..000000000 --- a/domains/mta.mail.mrstickypiston.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "MrStickyPiston", - "discord": "700766242268774471", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag" - }, - - "record": { - "CNAME": "mailersend.net" - } - } - \ No newline at end of file diff --git a/domains/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/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..8ad64b0cd --- /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..d2076691b --- /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/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 25d27f193..f9adf01d1 100644 --- a/domains/murasame-san-ddl.json +++ b/domains/murasame-san-ddl.json @@ -1,11 +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": { - "CNAME": "cylindrical-gardlic-8jekw3mlfaoniohl2i7wdokz.herokudns.com" - } -} \ No newline at end of file + "owner": { + "username": "comderzaid", + "email": "diazkhan66@gmail.com", + "discord": "544461226499899393", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h5XfBb-IScJHFReqzLw1Or84zoOq6R4ypGCyDQDYsW-wijccncffZxnRm0UaPov4GHyypLM3kEYvOGymNCuAl-ipzDQrAkRIpD8Je8_thCTShwt06ftADHWrFc-UQgFhEOTwLiaaaz4z3Q0Jp6dNlqVCXnyIkk_V7A6-FQQS19oUQUCW0Vv-DC-XJO3GWvFPy31WFaYP8FIUwnkQH49CRO-CtdMZdbMsJ5kuAYKM_wSVnGeOK9qCJce8cP_oMO7b-XLkKGlHwymb0Qyn5r1vbCTk6gAd_A6PoPHYH8JmjEnexk9L8r2nkelP5Us1ZgrraBKMOvAP9QDI8U8iDtajrA.esKVpOzITWARO4xxpboB_A.ebg8aH85QLWwPoiYCm87y7baFdxdCKV48Ufs0esjY9wYpBtWpIHR-NJ1VCZ6vQGxzal8KrV11osN4PGYexSLSTgOiTdE3d48Yd753FS7_uE.LNSomkDjTx3uuscJhq48cg" + }, + "record": { + "CNAME": "cylindrical-gardlic-8jekw3mlfaoniohl2i7wdokz.herokudns.com" + } +} 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/myforum.json b/domains/myforum.json index 72a2fee0a..e3f1896a0 100644 --- a/domains/myforum.json +++ b/domains/myforum.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "myforum.mydiscussion.net" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "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/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/n.json b/domains/n.json deleted file mode 100644 index 26ddb97a0..000000000 --- a/domains/n.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "CNAME": "xproject-xi.vercel.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/nabin.json b/domains/nabin.json new file mode 100644 index 000000000..4ccee6dd2 --- /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/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/namansethi.json b/domains/namansethi.json new file mode 100644 index 000000000..4bfb8065a --- /dev/null +++ b/domains/namansethi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "namansethi13", + "email": "heynamansethi@gmail.com" + }, + "record": { + "CNAME": "namansethi.vercel.app" + } + } + \ No newline at end of file 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/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/nashnc.json b/domains/nashnc.json new file mode 100644 index 000000000..6fc930732 --- /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/nathanospino.json b/domains/nathanospino.json new file mode 100644 index 000000000..af1590821 --- /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/naveenxd.json b/domains/naveenxd.json index 3d986bfa2..249cef31e 100644 --- a/domains/naveenxd.json +++ b/domains/naveenxd.json @@ -1,6 +1,5 @@ { "description": "naveenxd.is-a.dev", - "repo": "https://github.com/Naveen-X", "owner": { "username": "Naveen-X", "email": "naveen@ourclg.tech" 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/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 index 4ea2e37de..1048340fe 100644 --- a/domains/neebooo.json +++ b/domains/neebooo.json @@ -4,8 +4,6 @@ "email": "dev.cnamew@gmail.com" }, "record": { - "A": [ - "193.187.255.169" - ] + "A": ["193.187.255.169"] } } 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/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/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/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/ngockhuong.json b/domains/ngockhuong.json new file mode 100644 index 000000000..0288067de --- /dev/null +++ b/domains/ngockhuong.json @@ -0,0 +1,10 @@ +{ + "description": "ngockhuong.is-a.dev : This is my personal notebook", + "owner": { + "username": "lamngockhuong", + "email": "me@ngockhuong.com" + }, + "record": { + "URL": "https://dev.ngockhuong.com" + } +} diff --git a/domains/ngocphung.json b/domains/ngocphung.json new file mode 100644 index 000000000..2aee1f5fe --- /dev/null +++ b/domains/ngocphung.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "nguyenngocphung2000" + }, + "record": { + "CNAME": "nguyenngocphung2000.github.io" + } +} diff --git a/domains/ngqkhai.json b/domains/ngqkhai.json index 45da83466..d10806c80 100644 --- a/domains/ngqkhai.json +++ b/domains/ngqkhai.json @@ -1,11 +1,10 @@ { - "description": "Documentation website for is-a.dev", - "repo": "", - "owner": { - "username": "ngqkhai", - "email": "nguyenquangkhai2509@gmail.com" - }, - "record": { - "URL": "https://github.com/ngqkhai" - } + "description": "Documentation website for is-a.dev", + "owner": { + "username": "ngqkhai", + "email": "nguyenquangkhai2509@gmail.com" + }, + "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..de6f86e58 --- /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/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 index 9a5666540..52000b33b 100644 --- a/domains/nh.json +++ b/domains/nh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nonxistnt", - "email": "khtyiscooler@gmail.com" - }, - "record": { - "CNAME": "nonxistnt.github.io" - } + "owner": { + "username": "nonxistnt", + "email": "khtyiscooler@gmail.com" + }, + "record": { + "CNAME": "nonxistnt.github.io" + } } diff --git a/domains/nhatphan.json b/domains/nhatphan.json index 6a3043e6a..d303ca397 100644 --- a/domains/nhatphan.json +++ b/domains/nhatphan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "minaphan2815", - "email": "nhatphan2815@gmail.com" - }, - "record": { - "CNAME": "minaphan2815.github.io" - } + "owner": { + "username": "minaphan2815", + "email": "nhatphan2815@gmail.com" + }, + "record": { + "CNAME": "minaphan2815.github.io" + } } diff --git a/domains/nhim411.json b/domains/nhim411.json new file mode 100644 index 000000000..32eae7f4f --- /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" + } +} \ No newline at end of file diff --git a/domains/nic.json b/domains/nic.json new file mode 100644 index 000000000..c78690f36 --- /dev/null +++ b/domains/nic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "URL": "https://is-a.dev" + } +} 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/niclqs.json b/domains/niclqs.json index 5aa8d348b..e9f983367 100644 --- a/domains/niclqs.json +++ b/domains/niclqs.json @@ -3,7 +3,6 @@ "record": { "URL": "https://niclqs.dev" }, - "repo": "https://github.com/niclqsger", "owner": { "discord": "niclqs", "email": "discord@push-den-weg.de", 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/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 index e2459a572..fa016c2f0 100644 --- a/domains/nifle.json +++ b/domains/nifle.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "Nifle-CGE", - "email": "", - "discord": "553939229475078154", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRTs07oBPtm7QihIkDqo1f3eBQwtYmpzZZYebo3UsxrJ9gpmPnY42WdO-H0r8XRAwYiwzZjZ8GnmRrG2xwz_8dw49VD0UvvWyJKTR7SSN1XxznSkbGJ3wthb384seNE_Fhg-E6Q6qV9vW8B1U6GD39blKsURHcgpTrSa-qopwXDeFctAo-RcxbmFwr-Mw0Cwr9ia3L1wnqvOSjQbU0a92oVv6293QbSvqgupXkS1ttXoBR9rpDPp8tH9oIXbCK4AhVTKowgIYAYh2iZT41nlkFKeus10yRKw5GqyokBXBdA70qKnU3lCd9VFZ4Eq4DxbSoMNBqk8FADig2MtA5RBFg.CqfMnrP60ibdRwfM4yUB8A.HZl3zu19tbnEz2j4hlejxUJfoEkCk0qsLeHlqLzc1-qXAnH1984_R8joN9l3WWA0Jgr13m8qr-GQsAEcjjdiog.vUXuNT3B9rjoE606ZfrRRA" - }, - - "record": { - "A": ["172.234.178.155"] - } - } - \ No newline at end of file + "owner": { + "username": "Nifle-CGE", + "discord": "553939229475078154", + "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/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/nikyofficial.json b/domains/nikyofficial.json new file mode 100644 index 000000000..561752de2 --- /dev/null +++ b/domains/nikyofficial.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nikyy2", + "email": "anhky581@gmail.com" + }, + "record": { + "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/nitesh.json b/domains/nitesh.json index 99d5d9035..742820f23 100644 --- a/domains/nitesh.json +++ b/domains/nitesh.json @@ -1,6 +1,5 @@ { "description": "My personal portfolio site", - "repo": "https://github.com/Niteshballa", "owner": { "username": "Niteshballa", "email": "nithesh.mom@gmail.com" diff --git a/domains/niyakipham.json b/domains/niyakipham.json index 241c092d9..feee6752f 100644 --- a/domains/niyakipham.json +++ b/domains/niyakipham.json @@ -1,11 +1,11 @@ { - "description": "niyakipham.is-a.dev", - "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io", - "owner": { - "username": "niyakipham", - "email": "niyakipham@gmail.com" - }, - "record": { - "CNAME": "niyakipham.github.io" - } + "description": "niyakipham.is-a.dev", + "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io", + "owner": { + "username": "niyakipham", + "email": "niyakipham@gmail.com" + }, + "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 index 8d4030b8e..de21756e2 100644 --- a/domains/noah.json +++ b/domains/noah.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "noahprm", - "email": "contact.noahprm@gmail.com", - "discord": "949273553168121856" - }, - "record": { - "A": [ - "217.145.72.79" - ] - } + "owner": { + "username": "noahprm", + "email": "contact.noahprm@gmail.com", + "discord": "949273553168121856" + }, + "record": { + "A": ["217.145.72.79"] + } } diff --git a/domains/node.devmatei.json b/domains/node.devmatei.json new file mode 100644 index 000000000..10dc9ea92 --- /dev/null +++ b/domains/node.devmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "matei.thoma@gmail.com" + }, + "record": { + "A": ["176.100.37.70"] + } +} 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/nolan-mai.json b/domains/nolan-mai.json index 9af8b5603..5a940810f 100644 --- a/domains/nolan-mai.json +++ b/domains/nolan-mai.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "PotBorger", - "email": "khanhtrinh232005@gmail.com" - }, - "record": { - "CNAME": "potborger.github.io" - } + "owner": { + "username": "PotBorger", + "email": "khanhtrinh232005@gmail.com" + }, + "record": { + "CNAME": "potborger.github.io" + } } diff --git a/domains/noob.json b/domains/noob.json new file mode 100644 index 000000000..a5d63400c --- /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/not.json b/domains/not.json index d139592ba..a930938e5 100644 --- a/domains/not.json +++ b/domains/not.json @@ -1,12 +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" - ] - } + "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/notaproton.json b/domains/notaproton.json new file mode 100644 index 000000000..a7763e212 --- /dev/null +++ b/domains/notaproton.json @@ -0,0 +1,12 @@ +{ + "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" + } + } + \ No newline at end of file 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/nova.json b/domains/nova.json index 6dfa7862f..4d94af0ef 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": ["130.51.94.101"] } } 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 index f2f45ddb8..dd0ff0e8a 100644 --- a/domains/ntrs05.json +++ b/domains/ntrs05.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ntrs05", - "email": "tukheo123@gmail.com" - }, - "record": { - "CNAME": "ntrs05.github.io" - } + "owner": { + "username": "ntrs05", + "email": "tukheo123@gmail.com" + }, + "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/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/nvhai272.json b/domains/nvhai272.json new file mode 100644 index 000000000..ff4640aed --- /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 index 2b6b5849d..e4b352ee5 100644 --- a/domains/nvhmadridista.json +++ b/domains/nvhmadridista.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "nvhmadridista", - "email": "nvh.madridista@email.address" - }, - "record": { - "CNAME": "nvhmadridista.github.io" - } + "owner": { + "username": "nvhmadridista", + "email": "nvh.madridista@email.address" + }, + "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 cef1c4605..4e82f95b6 100644 --- a/domains/oc.json +++ b/domains/oc.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "URL": "https://orangc.xyz" + "URL": "https://orangc.net" } } 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 2f586da5b..32605b493 100644 --- a/domains/okinea.json +++ b/domains/okinea.json @@ -1,6 +1,5 @@ { "description": "Okinea Dev website", - "repo": "https://github.com/okineadev-website", "owner": { "username": "okineadev", "telegram": "https://telegram.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/oliver.json b/domains/oliver.json new file mode 100644 index 000000000..0f16d3134 --- /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/omardotdev.json b/domains/omardotdev.json new file mode 100644 index 000000000..1fc9ec116 --- /dev/null +++ b/domains/omardotdev.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "omardotdev", + "email": "om749843@tutanota.de", + "discord": "1135918173959491595" + }, + "record": { + "CNAME": "pages.omardotdev.codeberg.page" + } +} 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/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/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/orange.json b/domains/orange.json index cef1c4605..4e82f95b6 100644 --- a/domains/orange.json +++ b/domains/orange.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "URL": "https://orangc.xyz" + "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 index f947a746a..825030894 100644 --- a/domains/osho.json +++ b/domains/osho.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "profxadke", - "email": "xadkeg@duck.com" - }, - "record": { - "CNAME": "profxadke.github.io" - } + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "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..0332c732d --- /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/owo.json b/domains/owo.json index cef1c4605..4e82f95b6 100644 --- a/domains/owo.json +++ b/domains/owo.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "URL": "https://orangc.xyz" + "URL": "https://orangc.net" } } 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/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..88535ae2c --- /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..88535ae2c --- /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.devmatei.json b/domains/panel.devmatei.json new file mode 100644 index 000000000..10dc9ea92 --- /dev/null +++ b/domains/panel.devmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "matei.thoma@gmail.com" + }, + "record": { + "A": ["176.100.37.70"] + } +} 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 index 9a6a16246..451ad5fea 100644 --- a/domains/pankaj.json +++ b/domains/pankaj.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "1719pankaj", - "email": "1719pankaj@gmail.com" - }, - "record": { - "URL": "https://1719pankaj.github.io" - } +{ + "owner": { + "username": "1719pankaj", + "email": "1719pankaj@gmail.com" + }, + "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/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/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..f25da9045 --- /dev/null +++ b/domains/pavanc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pavancos", + "email": "pavankc005@gmail.com" + }, + "record": { + "URL": "https://pavanc.me" + } + } + \ No newline at end of file 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/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/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 index 417f24900..907a2656e 100644 --- a/domains/peantastic.json +++ b/domains/peantastic.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "peantastic", - "email": "leostark.vndev@gmail.com" - }, - "description": "👋 Hello! I'm Do Tan Tinh, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.", - "repo": "https://github.com/peantastic/", - "record": { - "CNAME": "dotantinh.onrender.com" - } -} \ No newline at end of file + "owner": { + "username": "peantastic", + "email": "leostark.vndev@gmail.com" + }, + "description": "👋 Hello! I'm Do Tan Tinh, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.", + "repo": "https://github.com/peantastic/", + "record": { + "CNAME": "dotantinh.onrender.com" + } +} diff --git a/domains/pedrofff.json b/domains/pedrofff.json new file mode 100644 index 000000000..f007edb28 --- /dev/null +++ b/domains/pedrofff.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/Pedrofff23/Portfolio", + "owner": { + "username": "Pedrofff", + "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/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 index 2378ce50d..ac3047847 100644 --- a/domains/phamthanhnghia.json +++ b/domains/phamthanhnghia.json @@ -1,11 +1,11 @@ { - "description": "phamthanhnghia.is-a.dev", - "repo": "https://github.com/phamthanhnghia/phamthanhnghia.github.io", - "owner": { - "username": "phamthanhnghia", - "email": "phamthanhnghia.it@gmail.com" - }, - "record": { - "CNAME": "phamthanhnghia.github.io" - } + "description": "phamthanhnghia.is-a.dev", + "repo": "https://github.com/phamthanhnghia/phamthanhnghia.github.io", + "owner": { + "username": "phamthanhnghia", + "email": "phamthanhnghia.it@gmail.com" + }, + "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..9a7ddbf0e --- /dev/null +++ b/domains/phi.json @@ -0,0 +1,12 @@ +{ + "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/pikachu.json b/domains/pikachu.json new file mode 100644 index 000000000..8f9c2cf8d --- /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/pixelbend.json b/domains/pixelbend.json new file mode 100644 index 000000000..b3d2b2822 --- /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/ploszukiwacz.json b/domains/ploszukiwacz.json index dd1d68a42..2223f7b4c 100644 --- a/domains/ploszukiwacz.json +++ b/domains/ploszukiwacz.json @@ -1,5 +1,4 @@ { - "description": "Personal Website for PlOszukiwacz", "repo": "https://github.com/PlOszukiwaczDEV/ploszukiwaczdev.github.io", "owner": { @@ -7,9 +6,6 @@ "email": "ploszukiwacz1@gmail.com" }, "record": { - "NS": [ - "jake.ns.cloudflare.com", - "stephane.ns.cloudflare.com" - ] + "NS": ["jake.ns.cloudflare.com", "stephane.ns.cloudflare.com"] } } 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/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/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/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/prakhar.json b/domains/prakhar.json index a1953b0d2..64d94060b 100644 --- a/domains/prakhar.json +++ b/domains/prakhar.json @@ -1,6 +1,5 @@ { "description": "Prakhar| Portfolio", - "repo": "https://github.com/Prakhar-commits.github.io", "owner": { "username": "Prakhar-commits", "email": "prakharb56@gmail.com" 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/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/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..e7f6582ed --- /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"] + } +} \ No newline at end of file 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/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..56e62a18a --- /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-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/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/privatekey.json b/domains/privatekey.json deleted file mode 100644 index 39624ad33..000000000 --- a/domains/privatekey.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "keydevelops", - "email": "rumaevvadim@gmail.com" - }, - "record": { - "CNAME": "keydevelops.github.io" - } -} diff --git a/domains/proficode.json b/domains/proficode.json index ab1555bf5..c64a9954f 100644 --- a/domains/proficode.json +++ b/domains/proficode.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "profic0de", - "email": "anonymou3489@gmail.com" - }, - "record": { - "CNAME": "239581.site.bot-hosting.net" - } + "owner": { + "username": "profic0de", + "email": "anonymou3489@gmail.com" + }, + "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 index a0b9b2cc7..8b498e6cd 100644 --- a/domains/project-jam.json +++ b/domains/project-jam.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "Omarplayz233", - "email": "mrbouiri@gmail.com" - }, - "record": { - "NS": [ - "elsa.ns.cloudflare.com", - "roan.ns.cloudflare.com" - ] - } + "owner": { + "username": "Omarplayz233", + "email": "mrbouiri@gmail.com" + }, + "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/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/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/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/pyyupsk.json b/domains/pyyupsk.json index 467897efe..8fc257f3a 100644 --- a/domains/pyyupsk.json +++ b/domains/pyyupsk.json @@ -3,9 +3,9 @@ "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.", + "description": "I'm a passionate software engineer with 6 years of experience in building web applications. I specialize in React, Node.js, and cloud technologies. My goal is to create efficient, scalable, and user-friendly solutions that make a positive impact.", "repo": "https://github.com/pyyupsk/personal-website", "record": { - "CNAME": "pyyupsk.pages.dev" + "CNAME": "pyyupsk.vercel.app" } } diff --git a/domains/q.json b/domains/q.json index 26ddb97a0..d0ef77563 100644 --- a/domains/q.json +++ b/domains/q.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "syedtahseen", - "email": "itxtahseen@gmail.com" - }, - "record": { - "CNAME": "xproject-xi.vercel.app" - } + "owner": { + "username": "syedtahseen", + "email": "itxtahseen@gmail.com" + }, + "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 index 91951a17f..5b8aa7378 100644 --- a/domains/qloha.json +++ b/domains/qloha.json @@ -2,11 +2,11 @@ "description": "Portfolio", "repo": "https://github.com/qloha/qloha.github.io", "owner": { - "username": "qloha", - "youtube": "https://youtube.com/@qloha", - "email": "sirfigaloha@gmail.com" + "username": "qloha", + "youtube": "https://youtube.com/@qloha", + "email": "sirfigaloha@gmail.com" }, "record": { - "CNAME": "qloha.github.io" + "CNAME": "qloha.github.io" } -} \ No newline at end of file +} 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..ac920f3da --- /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/r00t3d.json b/domains/r00t3d.json index 59c07423e..9dc0cc8bf 100644 --- a/domains/r00t3d.json +++ b/domains/r00t3d.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "percioandrade", - "email": "", - "discord": "521918790951501843", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Z4DxbZ0HkguwBNihF_uYcYo6F90LU8_TxIWyvfSaynKVyfIULpKkPpKppLgxlDlTbnog7UqK1L5Q78CwzFZmIve_-rK3T7jmQSoXLVi9eZsnRj9DgVLjM3tWwiHdNnP-A_hIzW4A9zUwU6kSzo0yqI1XCgxadcm_O6YXUWVJ7hWjRHEMe_KQsiyd8EJCIEuG1mb5vHpSGueIpdchmNfK42chf8gWhl267t6H4fXg--HlSxbCTdD0a6IS5dfg8FdZFmhjhSUsPMFDcqBObtm1-As6lbVmLYfnQdJv4bV_YJkdYetGZ2B1edMLP99dRN1-kgmn3dzu40EIHJrjJgApdg.lqR4yiVU5IkKqRPkzJPSiA.EhOlPjq7MutxeLsxjNz5R3yuNP5gnZ2vIKz8v9gc8OC1g0RtEwXDLsbD2tjVkgn5wIsC2oG4lOUAKX1OVpO7n2HECDSil6gD3UF_t4bp_-I.P-A-L2t0f6vu2o-dn5M_XQ" - }, - "record": { - "A": [ - "144.126.135.27" - ] - } + "owner": { + "username": "percioandrade", + "discord": "521918790951501843", + "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/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/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..dd7b9099d --- /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 +} \ No newline at end of file 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/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..69887d408 --- /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/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..b15963b2e --- /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..d048f6c2f --- /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" + } +} \ No newline at end of file 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/ramakant.json b/domains/ramakant.json index d9524acd3..e51c43d2d 100644 --- a/domains/ramakant.json +++ b/domains/ramakant.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ramakantbot", - "email": "ramakantbot@duck.com" - }, - "record": { - "CNAME": "ramakantbot.github.io" - } + "owner": { + "username": "ramakantbot", + "email": "ramakantbot@duck.com" + }, + "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/rammeghe.json b/domains/rammeghe.json index 1c6deff23..1a948b6c5 100644 --- a/domains/rammeghe.json +++ b/domains/rammeghe.json @@ -1,7 +1,6 @@ { "owner": { - "username": "kartikshriwas", - "email": "" + "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/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/raspicloud.json b/domains/raspicloud.json new file mode 100644 index 000000000..cd400dd65 --- /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/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.json b/domains/raw.json new file mode 100644 index 000000000..cc2562542 --- /dev/null +++ b/domains/raw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "URL": "https://raw-api.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..a2dc696f9 --- /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/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/realmzersdomain.json b/domains/realmzersdomain.json index 41956e605..8d0e9c3da 100644 --- a/domains/realmzersdomain.json +++ b/domains/realmzersdomain.json @@ -1,11 +1,11 @@ { - "description": "Realmzers Page", - "repo": "https://github.com/Realmzer/realmzer.github.io", - "owner": { - "username": "Realmzer", - "email": "therealm4mc@gmail.com" - }, - "record": { - "URL": "https://realmzer.github.io" - } + "description": "Realmzers Page", + "repo": "https://github.com/Realmzer/realmzer.github.io", + "owner": { + "username": "Realmzer", + "email": "therealm4mc@gmail.com" + }, + "record": { + "URL": "https://realmzer.github.io" + } } diff --git a/domains/redirect.akk1to.json b/domains/redirect.akk1to.json index 2b819373c..a1cb4ca47 100644 --- a/domains/redirect.akk1to.json +++ b/domains/redirect.akk1to.json @@ -1,12 +1,12 @@ { - "description": "This website is for redirect server", - "repo": "https://github.com/akk1to/redirect", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "CNAME": "akk1to.github.io" - } + "description": "This website is for redirect server", + "repo": "https://github.com/akk1to/redirect", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "record": { + "CNAME": "akk1to.github.io" + } } diff --git a/domains/redolent.json b/domains/redolent.json index 009222c74..5512e045b 100644 --- a/domains/redolent.json +++ b/domains/redolent.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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/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 index b28fa3c47..2434bc609 100644 --- a/domains/region.json +++ b/domains/region.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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/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/renant.json b/domains/renant.json new file mode 100644 index 000000000..c3fdf18a9 --- /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/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 eed68c8a6..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", "oa1:xmr recipient_address=86PHZTrVFtRMqPvM4F6k5BKYz5EKD1eoTepvqpNGEcktEkQ9xuVt98biL4QzCCsENFKJP58nPTPbyB6CG33gy5FWDxacA1A; recipient_name=researcx;"] + "TXT": [ + "v=spf1 include:zoho.eu ~all", + "oa1:xmr recipient_address=86PHZTrVFtRMqPvM4F6k5BKYz5EKD1eoTepvqpNGEcktEkQ9xuVt98biL4QzCCsENFKJP58nPTPbyB6CG33gy5FWDxacA1A; recipient_name=researcx;" + ] } } diff --git a/domains/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/rhythm.json b/domains/rhythm.json index 7218cb504..a323394ae 100644 --- a/domains/rhythm.json +++ b/domains/rhythm.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ms7ru", - "email": "rhythm.upa@gmail.com" - }, - "record": { - "CNAME": "ms7ru.github.io" - } + "owner": { + "username": "ms7ru", + "email": "rhythm.upa@gmail.com" + }, + "record": { + "CNAME": "ms7ru.github.io" + } } diff --git a/domains/riccardo126.json b/domains/riccardo126.json new file mode 100644 index 000000000..f7a201342 --- /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/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 index a79f3f3e4..bc7680c91 100644 --- a/domains/riskyprsty.json +++ b/domains/riskyprsty.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "riskyprsty" - }, - "record": { - "CNAME": "riskyprsty.github.io" - } -} + "owner": { + "username": "riskyprsty" + }, + "record": { + "CNAME": "riskyprsty.github.io" + } +} diff --git a/domains/risqiahmad.json b/domains/risqiahmad.json new file mode 100644 index 000000000..325cc3b83 --- /dev/null +++ b/domains/risqiahmad.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "risqi17", + "email": "ahmadreys@gmail.com", + "discord": "risqi_ahmad9230" + }, + "record": { + "CNAME": "nextjs-notion-starter-kit-transitive-bullshit.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/rizqi.json b/domains/rizqi.json new file mode 100644 index 000000000..99046675f --- /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" + } +} \ No newline at end of file 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..7a4e83fd0 --- /dev/null +++ b/domains/rodolfo.json @@ -0,0 +1,9 @@ +{ + "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..33710d976 --- /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 new file mode 100644 index 000000000..472585806 --- /dev/null +++ b/domains/roger.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/rogerHuntGauntlet/registerisadev", + "owner": { + "username": "rogerHuntGauntlet", + "email": "regorhunt02052@gmail.com", + "discord": "roger_jgs404040" + }, + "record": { + "CNAME": "rogerbhuntiii.vercel.app" + } +} 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 index 4ba84944c..b0cb1d534 100644 --- a/domains/rohith-jv.json +++ b/domains/rohith-jv.json @@ -1,10 +1,8 @@ { - "owner": { - "username": "0mnichan" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "0mnichan" + }, + "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/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..40b727fdc --- /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/roohullah.kazmi.json b/domains/roohullah.kazmi.json new file mode 100644 index 000000000..74b6cab92 --- /dev/null +++ b/domains/roohullah.kazmi.json @@ -0,0 +1,11 @@ +{ + "description": "roohullah.kazmi", + "owner": { + "username": "r-kazmi", + "email": "smrkamzi@gmail.com" + }, + "record": { + "URL": "https://linktr.ee/roohullah.kazmi" + }, + "proxied": false +} 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/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/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/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/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/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..d968cb51b --- /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 index 1059afc61..d88d4005c 100644 --- a/domains/rvc11.json +++ b/domains/rvc11.json @@ -1,11 +1,11 @@ { - "description": "RedVelvetCake11's website", - "repo": "https://github.com/redvelvetcake11/redvelvetcake11.github.io", - "owner": { - "username": "redvelvetcake11", - "email": "membermadde.insiddev25120@hotmail.com" - }, - "record": { - "CNAME": "redvelvetcake11.github.io" - } + "description": "RedVelvetCake11's website", + "repo": "https://github.com/redvelvetcake11/redvelvetcake11.github.io", + "owner": { + "username": "redvelvetcake11", + "email": "membermadde.insiddev25120@hotmail.com" + }, + "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 3c79f866c..a4093f03c 100644 --- a/domains/ryanzam.json +++ b/domains/ryanzam.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ryanzam", - "email": "ryanzam2005@yahoo.com" - }, - "record": { - "CNAME": "orange-island-07b3bb803.5.azurestaticapps.net" - } + "owner": { + "username": "ryanzam", + "email": "ryanzam2005@yahoo.com" + }, + "record": { + "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/s1ow.json b/domains/s1ow.json index e26a5106b..2a21df10f 100644 --- a/domains/s1ow.json +++ b/domains/s1ow.json @@ -1,22 +1,19 @@ { - "description": "! s1owmotion.0 profile page", - "repository": "https://github.com/H4iPh0ngM1enB4c/Web", - "owner": { - "username": "H4iPh0ngM1enB4c", - "email": "noobdownload2@gmail.com", - "discord": "1027559943462727740" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.110.153", - "185.199.109.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "! s1owmotion.0 profile page", + "repository": "https://github.com/H4iPh0ngM1enB4c/Web", + "owner": { + "username": "H4iPh0ngM1enB4c", + "email": "noobdownload2@gmail.com", + "discord": "1027559943462727740" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.110.153", + "185.199.109.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/s697376._domainkey.yxz.json b/domains/s697376._domainkey.yxz.json index ce2fbe673..bc4ea4f04 100644 --- a/domains/s697376._domainkey.yxz.json +++ b/domains/s697376._domainkey.yxz.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "yz9551", - "discord": "yz9551" - }, - "record": { - "CNAME": "dkim.smtp2go.net" - } + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "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/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/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 index 2973f4f65..f4fdcb48e 100644 --- a/domains/safety.json +++ b/domains/safety.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "HackingYZ", - "email": "sifed@qq.com" - }, - - "record": { - "CNAME": "safety22w413a.github.io" - } - } \ No newline at end of file + "owner": { + "username": "HackingYZ", + "email": "sifed@qq.com" + }, + "record": { + "CNAME": "safety22w413a.github.io" + } +} diff --git a/domains/saftec.json b/domains/saftec.json index 1b5d366c3..29f984f33 100644 --- a/domains/saftec.json +++ b/domains/saftec.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } + "owner": { + "username": "Samuraiflamesf", + "email": "Samuraiflamesf@gmail.com" + }, + "record": { + "A": ["152.67.45.142"] + } } diff --git a/domains/saif.json b/domains/saif.json new file mode 100644 index 000000000..d547e534c --- /dev/null +++ b/domains/saif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saifkhanz", + "email": "saif137.khan@gmail.com" + }, + "record": { + "CNAME": "saif-two.vercel.app" + } +} \ No newline at end of file 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/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/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/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/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/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/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 index e78a9c374..936ce2b9c 100644 --- a/domains/sana.json +++ b/domains/sana.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sana-afk", - "email": "srijita3010@gmail.com" - }, - "record": { - "CNAME": "sana-afk.github.io" - } + "owner": { + "username": "sana-afk", + "email": "srijita3010@gmail.com" + }, + "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/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..178d24f73 --- /dev/null +++ b/domains/sangeeth.json @@ -0,0 +1,12 @@ +{ + "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 aa398a0c4..f78904011 100644 --- a/domains/sangelo.json +++ b/domains/sangelo.json @@ -4,7 +4,6 @@ "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.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/santa.json b/domains/santa.json index 9c9bf9bf8..4c3b15b77 100644 --- a/domains/santa.json +++ b/domains/santa.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "StefanoMantero", - "email": "eldrazichiodo@gmail.com" - }, - "description": "Fun project for santa", - "record": { - "CNAME": "seal-app-up9wg.ondigitalocean.app" - } + "owner": { + "username": "StefanoMantero", + "email": "eldrazichiodo@gmail.com" + }, + "description": "Fun project for santa", + "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/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/satindar.json b/domains/satindar.json index cb46edd97..9ed1644bd 100644 --- a/domains/satindar.json +++ b/domains/satindar.json @@ -7,6 +7,12 @@ "twitter": "satindar31" }, "record": { - "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"] + "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 index 205dcec52..6d0e49eb5 100644 --- a/domains/satyam.json +++ b/domains/satyam.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lostboysatyam", - "email": "lostboysatyam54@gmail.com" - }, - "record": { - "NS": ["braden.ns.cloudflare.com","diana.ns.cloudflare.com"] - } + "owner": { + "username": "lostboysatyam", + "email": "lostboysatyam54@gmail.com" + }, + "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/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/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/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..896579524 --- /dev/null +++ b/domains/schuh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "schuh", + "email": "theschuhofyou@gmail.com" + }, + "record": { + "CNAME": "vqpe.github.io" + } +} 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..e35bf9625 --- /dev/null +++ b/domains/secsum.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NgoQuangThien", + "email": "quangthien18032000@gmail.com" + }, + "record": { + "A": [ + "3.24.49.246" + ] + } +} diff --git a/domains/sep.json b/domains/sep.json new file mode 100644 index 000000000..47a8c1a97 --- /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" + } +} \ No newline at end of file diff --git a/domains/seqyu.json b/domains/seqyu.json index 1276538d5..7e341aef9 100644 --- a/domains/seqyu.json +++ b/domains/seqyu.json @@ -1,12 +1,11 @@ { - "description": "I'm just some guy who enjoys Linux a bit too much", - "repo": "https://github.com/nvct-website/nvct-website.github.io", - "owner": { - "username": "nvct-website", - "email": "", - "discord": "@seqyu." - }, - "record": { - "CNAME": "nvct-website.github.io" - } + "description": "I'm just some guy who enjoys Linux a bit too much", + "repo": "https://github.com/nvct-website/nvct-website.github.io", + "owner": { + "username": "nvct-website", + "discord": "@seqyu." + }, + "record": { + "CNAME": "nvct-website.github.io" + } } diff --git a/domains/sergarsilla.json b/domains/sergarsilla.json new file mode 100644 index 000000000..33486348a --- /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/serhii-koba.json b/domains/serhii-koba.json index 4027c1e6b..b7a85ae65 100644 --- a/domains/serhii-koba.json +++ b/domains/serhii-koba.json @@ -1,11 +1,11 @@ { - "description": "A personal blog website", - "repo": "https://github.com/sergey-koba-mobidev/static_blog", - "owner": { - "username": "sergey-koba-mobidev", - "email": "desgnkiss@gmail.com" - }, - "record": { - "CNAME": "static-blog-o3omu.ondigitalocean.app" - } + "description": "A personal blog website", + "repo": "https://github.com/sergey-koba-mobidev/static_blog", + "owner": { + "username": "sergey-koba-mobidev", + "email": "desgnkiss@gmail.com" + }, + "record": { + "CNAME": "static-blog-o3omu.ondigitalocean.app" + } } diff --git a/domains/server.mrdiamond.json b/domains/server.mrdiamond.json index 9081face6..5fafbf9d2 100644 --- a/domains/server.mrdiamond.json +++ b/domains/server.mrdiamond.json @@ -6,5 +6,5 @@ "record": { "A": ["129.146.51.207"] }, - "proxied": true + "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/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/seven.json b/domains/seven.json index 5762d7f61..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": { 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 index b5202b92c..8c9b52842 100644 --- a/domains/sevinda-herath.json +++ b/domains/sevinda-herath.json @@ -1,10 +1,19 @@ { - "owner": { - "username": "Sevinda-Herath", - "email": "sevindaherath@gmail.com" - }, - "record": { - "CNAME": "sevinda-herath.github.io" - }, - "proxied": true + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "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..1823b48d7 100644 --- a/domains/sewt.json +++ b/domains/sewt.json @@ -4,9 +4,13 @@ "discord": "1049263707177353247" }, "record": { - "A": ["82.67.68.228"], + "A": ["37.27.51.34"], + "AAAA": ["2a01:4f9:3081:399c::4"], "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": ["v=spf1 include:zohomail.eu ~all"] + "TXT": [ + "v=spf1 include:zohomail.eu ~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/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 7d003ab99..03348e755 100644 --- a/domains/shan.json +++ b/domains/shan.json @@ -1,20 +1,14 @@ { - "description": "My Personal Website ", - "repo": "https://github.com/Adwaith-Shan-Pk/Adwaith-Shan-Pk.github.io", - "owner": { - "username": "Adwaith-Shan-Pk", - "email": "mail@adwaithshan.rf.gd", - "twitter": "lordlinux69" - }, - "record": { - "A": [ - "45.90.12.31", - "37.114.46.37" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "My Personal Website ", + "repo": "https://github.com/Adwaith-Shan-Pk/Adwaith-Shan-Pk.github.io", + "owner": { + "username": "Adwaith-Shan-Pk", + "email": "mail@adwaithshan.rf.gd", + "twitter": "lordlinux69" + }, + "record": { + "A": ["45.90.12.31", "37.114.46.37"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } 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/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..819cecd6d --- /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..da5b1d4e5 --- /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/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/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/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/shomy.json b/domains/shomy.json index cd117b45d..596da9668 100644 --- a/domains/shomy.json +++ b/domains/shomy.json @@ -13,8 +13,8 @@ ], "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], "TXT": [ - "forward-email=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA==", - "google-site-verification=86zZ55mR4x8nTO3sV5iWvq92pg8sikARK7f1Q_Gw7pI" - ] + "forward-email=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA==", + "google-site-verification=86zZ55mR4x8nTO3sV5iWvq92pg8sikARK7f1Q_Gw7pI" + ] } } diff --git a/domains/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/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/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..2141e8dc9 --- /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 index 6db00e090..fe1efec86 100644 --- a/domains/shuhaab.json +++ b/domains/shuhaab.json @@ -1,9 +1,8 @@ { - "owner": { - "username": "Shuhaab-coder" - }, - "record": { - "CNAME": "shuhaab.vercel.app" - } + "owner": { + "username": "Shuhaab-coder" + }, + "record": { + "CNAME": "shuhaab.vercel.app" } - +} diff --git a/domains/shukraditya.json b/domains/shukraditya.json new file mode 100644 index 000000000..c0ba14a62 --- /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" + } +} \ No newline at end of file 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..3043e5a4d --- /dev/null +++ b/domains/si458.json @@ -0,0 +1,14 @@ +{ + "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/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..8b97b2a63 --- /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 index fa3b6e974..2f9c071c1 100644 --- a/domains/sidd.json +++ b/domains/sidd.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/sidx04/sidx04.github.io", - "owner": { - "username": "sidx04", - "email": "siddpal04@gmail.com" - }, - "record": { - "CNAME": "sidx04.github.io" - } + "repo": "https://github.com/sidx04/sidx04.github.io", + "owner": { + "username": "sidx04", + "email": "siddpal04@gmail.com" + }, + "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/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/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/silva.json b/domains/silva.json new file mode 100644 index 000000000..412f8402c --- /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/siritas.json b/domains/siritas.json new file mode 100644 index 000000000..f036001d6 --- /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/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/siya.json b/domains/siya.json new file mode 100644 index 000000000..23d0afd79 --- /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" + } +} \ No newline at end of file diff --git a/domains/skarwuuu.json b/domains/skarwuuu.json index e7035720e..d47821bb2 100644 --- a/domains/skarwuuu.json +++ b/domains/skarwuuu.json @@ -1,10 +1,10 @@ { - "description": "skarwuuu.is-a.dev", - "owner": { - "username": "skarwuuu", - "email": "sakshrwt@gmail.com" - }, - "record": { - "CNAME": "skarwuuu.vercel.app" - } + "description": "skarwuuu.is-a.dev", + "owner": { + "username": "skarwuuu", + "email": "sakshrwt@gmail.com" + }, + "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 index 8a97aef4e..036f035b1 100644 --- a/domains/skid.json +++ b/domains/skid.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "PlOszukiwaczDEV" - }, - "record": { - "CNAME": "website-4ej.pages.dev" - } + "owner": { + "username": "PlOszukiwaczDEV" + }, + "record": { + "CNAME": "website-4ej.pages.dev" + } } 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/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 index 0a4f8dffa..d004c9342 100644 --- a/domains/smilos.json +++ b/domains/smilos.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "smilos71" - }, - "record": { - "CNAME": "smilos71.github.io" - } + "owner": { + "username": "smilos71" + }, + "record": { + "CNAME": "smilos71.github.io" + } } 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/soccer.json b/domains/soccer.json new file mode 100644 index 000000000..86423c1a1 --- /dev/null +++ b/domains/soccer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "soccer", + "email": "soccer1992.is.a.dev@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} 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..cd06c3546 --- /dev/null +++ b/domains/sohag.json @@ -0,0 +1,10 @@ +{ + "description": "For my portfolio", + "owner": { + "username": "sohag02", + "discord": "sohagjabed" + }, + "record": { + "CNAME": "sohagj.vercel.app" + } +} \ No newline at end of file diff --git a/domains/solarskripts.json b/domains/solarskripts.json index bf4bcc296..208683a50 100644 --- a/domains/solarskripts.json +++ b/domains/solarskripts.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "SolarSkripts", - "email": "0hexius0@gmail.com" - }, - "record": { - "CNAME": "solarskripts.net" - } + "owner": { + "username": "SolarSkripts", + "email": "0hexius0@gmail.com" + }, + "record": { + "CNAME": "solarskripts.net" + } } diff --git a/domains/sombochea.json b/domains/sombochea.json new file mode 100644 index 000000000..41182a1db --- /dev/null +++ b/domains/sombochea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sombochea", + "email": "sombochea100@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} \ No newline at end of file diff --git a/domains/sono.json b/domains/sono.json index 18f3e021d..6536bd70e 100644 --- a/domains/sono.json +++ b/domains/sono.json @@ -1,12 +1,9 @@ { - "owner": { - "username": "getSono", - "email": "sono.arbeit@gmail.com" - }, - "record": { - "NS": [ - "jasmine.ns.cloudflare.com", - "trace.ns.cloudflare.com" - ] - } + "owner": { + "username": "getSono", + "email": "sono.arbeit@gmail.com" + }, + "record": { + "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 index 4ca1b2332..ad3c6a0b1 100644 --- a/domains/sora-os.json +++ b/domains/sora-os.json @@ -1,12 +1,11 @@ -{ - "description": "Cloud operating system", - "repo": "https://github.com/qloha/Sora-OS", - "owner": { - "username": "qloha", - "email": "", - "youtube": "https://youtube.com/@qloha" - }, - "record": { - "CNAME": "sora-os.up.railway.app" - } -} +{ + "description": "Cloud operating system", + "repo": "https://github.com/qloha/Sora-OS", + "owner": { + "username": "qloha", + "youtube": "https://youtube.com/@qloha" + }, + "record": { + "CNAME": "sora-os.up.railway.app" + } +} diff --git a/domains/soraishiro.json b/domains/soraishiro.json index 6c9db0df6..5cd967793 100644 --- a/domains/soraishiro.json +++ b/domains/soraishiro.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Soraishiro" - }, - "record": { - "CNAME": "soraishiro.github.io" - } -} + "owner": { + "username": "Soraishiro" + }, + "record": { + "CNAME": "soraishiro.github.io" + } +} 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..bc18daee4 --- /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.json b/domains/sourav.json index a37eacc31..f188c86c7 100644 --- a/domains/sourav.json +++ b/domains/sourav.json @@ -3,7 +3,6 @@ "repo": "https://github.com/itzsouravkumar/itzsouravkumar.github.io", "owner": { "username": "itzsouravkumar", - "email": "", "discord": "itz_sour4v" }, "record": { 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/speedindeed1.json b/domains/speedindeed1.json new file mode 100644 index 000000000..202eaadd3 --- /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/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/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/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/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 index 0e1638ab1..02baccb32 100644 --- a/domains/stargate.json +++ b/domains/stargate.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "r0ckmix", - "email": "mix155@yandex.ru" - }, - "record": { - "A": [ - "193.178.210.179" - ] - } + "owner": { + "username": "r0ckmix", + "email": "mix155@yandex.ru" + }, + "record": { + "A": ["193.178.210.179"] + } } diff --git a/domains/stark.json b/domains/stark.json new file mode 100644 index 000000000..582d30863 --- /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.killuazoldyck.json b/domains/status.killuazoldyck.json new file mode 100644 index 000000000..137660aee --- /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.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/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/suctrebinhthuan.json b/domains/suctrebinhthuan.json index 5c36bc453..75308061f 100644 --- a/domains/suctrebinhthuan.json +++ b/domains/suctrebinhthuan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "suctrebth", - "email": "web.insuctre@gmail.com" - }, - "record": { - "CNAME": "suctrebinhthuan.com" - } + "owner": { + "username": "suctrebth", + "email": "web.insuctre@gmail.com" + }, + "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/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/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/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/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/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 index 8c60a7970..459fb9535 100644 --- a/domains/swami.json +++ b/domains/swami.json @@ -1,11 +1,11 @@ { - "description": "Portfolio Website", - "repo": "https://github.com/aadltya/portfolio-website", - "owner": { - "username": "aadltya", - "email": "adityaedu22@gmail.com" - }, + "description": "Portfolio Website", + "repo": "https://github.com/aadltya/portfolio-website", + "owner": { + "username": "aadltya", + "email": "adityaedu22@gmail.com" + }, "record": { - "CNAME": "adityasworld.vercel.app" - } - } \ No newline at end of file + "CNAME": "adityasworld.vercel.app" + } +} 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..7aee4a82d --- /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/szn20221014._domainkey.104.json b/domains/szn20221014._domainkey.104.json new file mode 100644 index 000000000..c6292fdf7 --- /dev/null +++ b/domains/szn20221014._domainkey.104.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "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 index 512bcff16..e64cec5be 100644 --- a/domains/t3vada.json +++ b/domains/t3vada.json @@ -5,4 +5,4 @@ "record": { "CNAME": "devada.vercel.app" } -} \ No newline at end of file +} diff --git a/domains/tafviet.json b/domains/tafviet.json new file mode 100644 index 000000000..e28823b63 --- /dev/null +++ b/domains/tafviet.json @@ -0,0 +1,11 @@ +{ + "description": "Landing page for tafviet.is-a.dev", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "is-a-dev", + "email": "meccar@protonmail.com" + }, + "record": { + "CNAME": "meccar.github.io" + } +} diff --git a/domains/tak.json b/domains/tak.json index 8a647b45f..4b6963878 100644 --- a/domains/tak.json +++ b/domains/tak.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "tak-gamingYT", - "email": "tak@tak.io.vn" - }, - "record": { - "CNAME": "tak-gamingyt.github.io" - }, - "proxied": true + "owner": { + "username": "tak-gamingYT", + "email": "tak@tak.io.vn" + }, + "record": { + "CNAME": "tak-gamingyt.github.io" + }, + "proxied": true } diff --git a/domains/tallerthanshort.json b/domains/tallerthanshort.json index 41e7f061a..76b62edfb 100644 --- a/domains/tallerthanshort.json +++ b/domains/tallerthanshort.json @@ -1,6 +1,5 @@ { "description": "TallerThanShort made site", - "repo": "https://github.com/TallerThanShort", "owner": { "username": "TallerThanShort", "email": "TallerThanShort@duck.com" diff --git a/domains/tanish-chahal.json b/domains/tanish-chahal.json new file mode 100644 index 000000000..332880c13 --- /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 index 4c64749fe..ea9a542fd 100644 --- a/domains/tanish-poddar.json +++ b/domains/tanish-poddar.json @@ -1,11 +1,11 @@ { - "description": "Documentation website for is-a.dev", - "repo": "https://github.com/tanishpoddar/tanishpoddar.github.io", - "owner": { - "username": "tanishpoddar", - "email": "tanishpoddar.18@gmail.com" - }, - "record": { - "CNAME": "tanishpoddar.github.io" - } + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/tanishpoddar/tanishpoddar.github.io", + "owner": { + "username": "tanishpoddar", + "email": "tanishpoddar.18@gmail.com" + }, + "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/tanquang.json b/domains/tanquang.json index 778eff53f..a7d609d87 100644 --- a/domains/tanquang.json +++ b/domains/tanquang.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "quangnlt", - "email": "tanquang2k3@gmail.com" - }, - "record": { - "CNAME": "quangnlt.github.io" - } + "owner": { + "username": "quangnlt", + "email": "tanquang2k3@gmail.com" + }, + "record": { + "CNAME": "quangnlt.github.io" + } } 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/tanvir.json b/domains/tanvir.json new file mode 100644 index 000000000..32385ec92 --- /dev/null +++ b/domains/tanvir.json @@ -0,0 +1,12 @@ +{ + "description": "Tanvir's personal website", + "owner": { + "username": "tnv1r", + "email": "dev@tanvir.io" + }, + "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/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/tawiah.json b/domains/tawiah.json new file mode 100644 index 000000000..cf4f34eec --- /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/techadv.json b/domains/techadv.json index 35f2e64b9..8ff8fe39f 100644 --- a/domains/techadv.json +++ b/domains/techadv.json @@ -1,10 +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" - } + "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..264442cfd --- /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/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/thangle.json b/domains/thangle.json new file mode 100644 index 000000000..521a29d38 --- /dev/null +++ b/domains/thangle.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thangle9999", + "discord": "thangle9999" + }, + "record": { + "TXT": "vc-domain-verify=thangle.is-a.dev,bd6f80914ee2949ce900" + } +} diff --git a/domains/thanh-sang.json b/domains/thanh-sang.json new file mode 100644 index 000000000..b5ba21e8f --- /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..c1bf93590 --- /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/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/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 index 17a1cc7e7..dc792c71b 100644 --- a/domains/theveryheavy.json +++ b/domains/theveryheavy.json @@ -1,24 +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" - ] - } + "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/thuc.json b/domains/thuc.json new file mode 100644 index 000000000..1bf1a2bbb --- /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/tictactoe.json b/domains/tictactoe.json deleted file mode 100644 index 6e1582f7e..000000000 --- a/domains/tictactoe.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Ciao287", - "discord": "687333016921440317" - }, - "record": { - "A": ["144.91.115.195"] - } -} 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/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 index 77cb243d7..89ddd5725 100644 --- a/domains/toantran.json +++ b/domains/toantran.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/toantranct94/toantran.github.io", - "owner": { - "username": "toantranct94", - "email": "toantranct94@gmail.com" - }, - "record": { - "CNAME": "toantran.github.io" - } + "repo": "https://github.com/toantranct94/toantran.github.io", + "owner": { + "username": "toantranct94", + "email": "toantranct94@gmail.com" + }, + "record": { + "CNAME": "toantran.github.io" + } } diff --git a/domains/tobias.json b/domains/tobias.json new file mode 100644 index 000000000..238276223 --- /dev/null +++ b/domains/tobias.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smarterToby", + "discord": "724712767080235049" + }, + "record": { + "CNAME": "tobiasreuss.vercel.app" + } +} \ No newline at end of file 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/tortilla.json b/domains/tortilla.json index 977c39694..cbec180a0 100644 --- a/domains/tortilla.json +++ b/domains/tortilla.json @@ -1,11 +1,11 @@ { - "description": "tortilla.is-a.dev", - "owner": { - "username": "Colbster937", - "email": "colbster937@colbster937.dev" - }, - "record": { - "CNAME": "dns.tortillagames.org" - }, - "proxied": true + "description": "tortilla.is-a.dev", + "owner": { + "username": "Colbster937", + "email": "colbster937@colbster937.dev" + }, + "record": { + "CNAME": "dns.tortillagames.org" + }, + "proxied": true } diff --git a/domains/trademark.json b/domains/trademark.json new file mode 100644 index 000000000..116efdcd4 --- /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..a53d5ed79 --- /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/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 13a85cc35..a4724b7ea 100644 --- a/domains/trix.json +++ b/domains/trix.json @@ -1,18 +1,15 @@ { - "owner": { - "username": "tr1xem", - "email": "admin@trixsly.xyz" - }, - "record": { - "A": [ - "185.199.110.153", - "185.199.109.153", - "185.199.111.153", - "185.199.108.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } + "owner": { + "username": "tr1xem", + "email": "admin@trixsly.xyz" + }, + "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/truongvanthong.json b/domains/truongvanthong.json new file mode 100644 index 000000000..432565ec8 --- /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/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 index 29c62defb..e020b0875 100644 --- a/domains/tsu.json +++ b/domains/tsu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dot-tsu", - "email": "lucanahtsu@gmail.com" - }, - "record": { - "CNAME": "dot-tsu.github.io" - } + "owner": { + "username": "dot-tsu", + "email": "lucanahtsu@gmail.com" + }, + "record": { + "CNAME": "dot-tsu.github.io" + } } diff --git a/domains/ttkt.json b/domains/ttkt.json index a71f767a9..7dea7e8b7 100644 --- a/domains/ttkt.json +++ b/domains/ttkt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/tuankiet.json b/domains/tuankiet.json index 17a92e331..48df29e5e 100644 --- a/domains/tuankiet.json +++ b/domains/tuankiet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "harrytien107", - "email": "sigmatien@duck.com" - }, - "record": { - "CNAME": "harrytien107.github.io" - } + "owner": { + "username": "harrytien107", + "email": "sigmatien@duck.com" + }, + "record": { + "CNAME": "harrytien107.github.io" + } } diff --git a/domains/tuantestdashboard.json b/domains/tuantestdashboard.json index d0254f2bf..c3d130000 100644 --- a/domains/tuantestdashboard.json +++ b/domains/tuantestdashboard.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "latuan2710", - "email": "tuan.la.cit19@eiu.edu.vn" - }, - "record": { - "CNAME": "admin-dashboard-latuan.vercel.app" - } + "owner": { + "username": "latuan2710", + "email": "tuan.la.cit19@eiu.edu.vn" + }, + "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/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/tunnel.vulcanocraft.json b/domains/tunnel.vulcanocraft.json index e038d3c7d..fbb3269d4 100644 --- a/domains/tunnel.vulcanocraft.json +++ b/domains/tunnel.vulcanocraft.json @@ -1,7 +1,6 @@ { "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" }, diff --git a/domains/tunzankies.json b/domains/tunzankies.json index 519c87449..ca7973568 100644 --- a/domains/tunzankies.json +++ b/domains/tunzankies.json @@ -1,10 +1,10 @@ { - "owner": { - "description": "tunzankies.is-a.dev", - "username": "Tuan-Dang05", - "discord": "703136026595426305" - }, - "record": { - "CNAME": "portfolio-3-d-nu.vercel.app" - } + "owner": { + "description": "tunzankies.is-a.dev", + "username": "Tuan-Dang05", + "discord": "703136026595426305" + }, + "record": { + "CNAME": "portfolio-3-d-nu.vercel.app" + } } 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..1583fe5c4 --- /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" + } +} \ No newline at end of file diff --git a/domains/uditha.json b/domains/uditha.json new file mode 100644 index 000000000..b3ffe8963 --- /dev/null +++ b/domains/uditha.json @@ -0,0 +1,9 @@ + +{ + "owner": { + "username": "udithamanohara" + }, + "record": { + "CNAME": "udithamanohara.github.io" + } +} diff --git a/domains/udyanupal.json b/domains/udyanupal.json new file mode 100644 index 000000000..5c569ad40 --- /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..de9b455a7 --- /dev/null +++ b/domains/umar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "umarsidiki", + "email": "siddiquiumar0007@gmail.com" + }, + "record": { + "CNAME": "umarsidiki.github.io" + } +} \ No newline at end of file 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 d5342d887..000000000 --- a/domains/untitled.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hosting my website", - "repo": "https://github.com/VihaanAnand/VihaanAnand.github.io", - "owner": { - "username": "VihaanAnand", - "email": "macos14sonoma@gmail.com" - }, - "record": { - "CNAME": "vihaananand.github.io" - } -} diff --git a/domains/upload.cdn.akk1to.json b/domains/upload.cdn.akk1to.json index ea77451e4..ace2ad7d7 100644 --- a/domains/upload.cdn.akk1to.json +++ b/domains/upload.cdn.akk1to.json @@ -1,12 +1,12 @@ { - "description": "file uploader of akk1to.dev", - "repo": "https://github.com/akk1to/upload.cdn", - "owner": { - "username": "akk1to", - "email": "akk1to.dev@gmail.com", - "discord": "727497287777124414" - }, - "record": { - "CNAME": "akk1to.github.io" - } + "description": "file uploader of akk1to.dev", + "repo": "https://github.com/akk1to/upload.cdn", + "owner": { + "username": "akk1to", + "email": "akk1to.dev@gmail.com", + "discord": "727497287777124414" + }, + "record": { + "CNAME": "akk1to.github.io" + } } diff --git a/domains/url.aditya.json b/domains/url.aditya.json index 18dab9f28..bdf74b007 100644 --- a/domains/url.aditya.json +++ b/domains/url.aditya.json @@ -1,6 +1,5 @@ { "description": "subdomain for link redirection", - "repo": "https://github.com/dedomil", "owner": { "username": "dedomil", "email": "ishqaddy@gmail.com", diff --git a/domains/usamakhalid.json b/domains/usamakhalid.json new file mode 100644 index 000000000..45f90bddc --- /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/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/utsabadhikari.json b/domains/utsabadhikari.json index 136a2dd1f..a76bf227f 100644 --- a/domains/utsabadhikari.json +++ b/domains/utsabadhikari.json @@ -1,7 +1,6 @@ { "owner": { "username": "utsab1231", - "email": "", "discord": "573163740309094413", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J8Zs7sfsirMCXNl8iuUK7xdq5hrLgPvMdrbhp1XfqXBrego8HGcVBEaKNzqZu16DXgMlcJUFJylKY6C7TUPYheXfPDP0Wh66NT6o7wFUsWFuQ6g5NSiU8ctXlI1K7f1_PXwO0iLw5rQOmgh4iw7NCOYti3rF1RXuae3OtNWWQnxgVEv9jieBwtsDhmhjgY2LZxPNJmqvoYCsR9-ytJoNgKYnjxwFqd_bCOKsBBRUAFGKMY031aNZRQTO5EoLOilDOfpznb_DtVmQCZZ_FI56mkKgJhupqIOxJ_bJgKNF6GbvAjSElMdWoVq_YsLU1ivao7sFdXjecje9yOzcBkOuPA.papQF2Ih2vL7uZ8R2B0Dug.2QknjUZW3VXKfWNhnEG5x7GBXEMg1cowfgNMQYmdyPZ64cc5hq6xtB_ENmlpEu7_QzddxpAqxqeKUGTgxwP2ksbAsDFoV02SUMjyiGlYADE.ljIgAJ8-syYcHV1cKeLziA" }, diff --git a/domains/uuphoria2.json b/domains/uuphoria2.json deleted file mode 100644 index f429aa66c..000000000 --- a/domains/uuphoria2.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This is to be used on my blog.", - "repo": "https://github.com/uuphoria2/uuphoria2.github.io", - "owner": { - "username": "uuphoria2", - "email": "gman36147@gmail.com" - }, - "record": { - "CNAME": "uuphoria2.github.io" - } -} diff --git a/domains/uwu.json b/domains/uwu.json index cef1c4605..4e82f95b6 100644 --- a/domains/uwu.json +++ b/domains/uwu.json @@ -4,6 +4,6 @@ "discord": "orangc" }, "record": { - "URL": "https://orangc.xyz" + "URL": "https://orangc.net" } } 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/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/vanmanh.json b/domains/vanmanh.json index 84c017a28..6b456da69 100644 --- a/domains/vanmanh.json +++ b/domains/vanmanh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vanmanhdev", - "email": "vanmanh2763@gmail.com" - }, - "record": { - "CNAME": "vanmanhdev.github.io" - } + "owner": { + "username": "vanmanhdev", + "email": "vanmanh2763@gmail.com" + }, + "record": { + "CNAME": "vanmanhdev.github.io" + } } diff --git a/domains/vantage.json b/domains/vantage.json index 78848c6a7..f9e58b06a 100644 --- a/domains/vantage.json +++ b/domains/vantage.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "blaze-099", - "email": "", - "discord": "1186691290759434350", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QLo89mhM4fE7MyI0fwTOoE1gwfqgTROR4XPtssSWrCFKdjAMxwFLRxSVKfTTk47ZdvtFcNQ-9i6zANMmvnKWqb4lk-A_IYDgCTI-rzfl7lIAsff092nh30jydQF4TCaaPwer3yrDZs-cHqnPJe1M9tVGLROeCpH5ndmRFCFCTp0SF5fIlyed9zElmsvmVm1In-pKSTFghIOm7W5A0Y_TGgGRz1GnCd7rUL0y_2Pww__W_JmiPYaqnIaas5YfHZSeSv68f4u6TicVOUFMCmRCAeF17ajRHB8NJJmAZ_5o0pvPs-YTFttOGRRp0MV7AMObacFMFpYufgvFM6amMBuKFA.nFT85dthPK_PLwebqK3zVw.w_dE_O8xeNrfXjtiPx_VM3hBR_p0i8huGEZfvGafCIBBtWm42cuIYAZ_kNh_qai31o3i7oRRi7UXOBGeShlvXW7znEXB9nx6Xy81QrbL878.l30yta1ym3dOqtn8MC7dZA" - }, - "record": { - "CNAME": "valorant-overlay-phi.vercel.app" - } + "owner": { + "username": "blaze-099", + "discord": "1186691290759434350", + "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/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..747ee4f16 --- /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 index 07f5aa342..df36647d1 100644 --- a/domains/vasanth.json +++ b/domains/vasanth.json @@ -1,6 +1,5 @@ { "description": "Vasanth personal Blog", - "repo": "https://github.com/itsparser", "owner": { "username": "62d2", "email": "itsparser@gmail.com", diff --git a/domains/vela.json b/domains/vela.json index c46c8660c..53454a43c 100644 --- a/domains/vela.json +++ b/domains/vela.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "v3laDev", - "email": "27khero@proton.me" - }, - "record": { - "CNAME": "v3laDev.github.io" - } + "owner": { + "username": "v3laDev", + "email": "27khero@proton.me" + }, + "record": { + "CNAME": "v3laDev.github.io" + } } 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/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/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..d8a7a2d67 --- /dev/null +++ b/domains/viernes.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "br0k3r", + "email": "br0k3r@protonmail.com" + }, + "record": { + "CNAME": "viernes.surge.sh" + } + } + \ No newline at end of file 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/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/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/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/vintheweirdass.json b/domains/vintheweirdass.json index f1fffe798..77d233378 100644 --- a/domains/vintheweirdass.json +++ b/domains/vintheweirdass.json @@ -7,6 +7,11 @@ "discord": "vintheweirdass" }, "record": { - "URL": "https://vtwa.is-a.dev" + "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/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/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/vm.sevinda-herath.json b/domains/vm.sevinda-herath.json deleted file mode 100644 index f827aefb3..000000000 --- a/domains/vm.sevinda-herath.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "sevinda-herath", - "email": "sevindaherath@gmail.com" - }, - "record": { - "A": ["170.64.240.215"] - }, - "proxied": true -} diff --git a/domains/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/votiendung.json b/domains/votiendung.json index 03111a07b..683fe810d 100644 --- a/domains/votiendung.json +++ b/domains/votiendung.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dungxibo123", - "email": "votiendung0805@gmail.com" - }, - "record": { - "CNAME": "dungxibo123.github.io" - } + "owner": { + "username": "dungxibo123", + "email": "votiendung0805@gmail.com" + }, + "record": { + "CNAME": "dungxibo123.github.io" + } } diff --git a/domains/vra.json b/domains/vra.json index 144d40066..213335b04 100644 --- a/domains/vra.json +++ b/domains/vra.json @@ -1,18 +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" - ] - } + "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/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/vuri.json b/domains/vuri.json index fc7d3838f..2e62d39d4 100644 --- a/domains/vuri.json +++ b/domains/vuri.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "CNAME": "vurihuang.github.io" - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "record": { + "CNAME": "vurihuang.github.io" + } } diff --git a/domains/vurihuang.json b/domains/vurihuang.json index fc7d3838f..2e62d39d4 100644 --- a/domains/vurihuang.json +++ b/domains/vurihuang.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vurihuang", - "email": "vengeancehuang@gmail.com" - }, - "record": { - "CNAME": "vurihuang.github.io" - } + "owner": { + "username": "vurihuang", + "email": "vengeancehuang@gmail.com" + }, + "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/w.json b/domains/w.json index 159f1b048..55dcef36b 100644 --- a/domains/w.json +++ b/domains/w.json @@ -5,5 +5,8 @@ }, "record": { "URL": "https://william.is-a.dev" + }, + "redirect_config": { + "redirect_paths": true } } 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/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 f46f7e635..05b3ffc31 100644 --- a/domains/wasi.json +++ b/domains/wasi.json @@ -1,7 +1,6 @@ { "owner": { "username": "WasiTC", - "email": "", "discord": "802128241280286761", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VfdMN3KkHv14UEuHSosP1YXOQh38Re1VEsdiCZFNaOYSQNgJrEVseI4eaY5gIUbR8tyN6IUDDjxYBe8JtgvTYVABOJfEYtNN-IWfErm5kSm_AhBXrqorhc5wIIuC1iBjlJX86x2iZPy0QUMUWvMcommb_enf4V8IfPkU4ByMqWmjgpLD26gKdoBcWbWprsI-_J_TdZIAeksbnaW0fhu_dqVD8H0Jc-o_DdMkdGOqIZBw49ThqiOTn9_ykXcFS7E5FPOcaPawNgH74ztkuMQEiuO2gLp-ibiILiNTniLoMRGJBB9YppR3o1dIWbg1AaPaUU4q0Hd8WBhIHgCbvQBlmw.FPAyefTCWSW9Cn4Re6vGBQ.xfrpDjbf0Gb63fo5C5zJTA5pM5aur7a-Ue6sEaEhskpEdMHWzOJETtyjSnyl6n9APyhOudlvWwFIXRmp7CNvx_hGMtMXNDj8XhRE5W1YXXU.3tdoXncw4wvTz5QDGvN4FA" }, diff --git a/domains/wasim.json b/domains/wasim.json new file mode 100644 index 000000000..0543bf374 --- /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 75126b879..f0c01aea2 100644 --- a/domains/web.vulcanocraft.json +++ b/domains/web.vulcanocraft.json @@ -1,7 +1,6 @@ { "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" }, diff --git a/domains/webcubed.json b/domains/webcubed.json index 1bc3caa49..775b9a884 100644 --- a/domains/webcubed.json +++ b/domains/webcubed.json @@ -1,9 +1,10 @@ { - "owner": { - "username": "webcubed", - "email": "lainathannlaiv2@gmail.com" - }, - "record": { - "CNAME": "webcubed.github.io" - } -} + "owner": { + "username": "webcubed", + "email": "lainathannlaiv2@gmail.com" + }, + "record": { + "CNAME": "webcubed.pages.dev" + }, + "proxied": true +} diff --git a/domains/wh.json b/domains/wh.json new file mode 100644 index 000000000..55dcef36b --- /dev/null +++ b/domains/wh.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@is-a.dev" + }, + "record": { + "URL": "https://william.is-a.dev" + }, + "redirect_config": { + "redirect_paths": true + } +} 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/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 6f3d1268b..fcec296e5 100644 --- a/domains/william.json +++ b/domains/william.json @@ -4,6 +4,12 @@ "email": "william@is-a.dev" }, "record": { - "URL": "https://github.com/wdhdev" + "URL": "https://wharrison.com.au" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/wdhdev" + }, + "redirect_paths": true } } 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..737221366 --- /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" + } +} \ No newline at end of file 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/wipad.json b/domains/wipad.json index a63a5a642..04908da06 100644 --- a/domains/wipad.json +++ b/domains/wipad.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "wipad0310", - "email": "nguyenlab2007@gmail.com" - }, - "record": { - "CNAME": "wipad0310.github.io" - } + "owner": { + "username": "wipad0310", + "email": "nguyenlab2007@gmail.com" + }, + "record": { + "CNAME": "wipad0310.github.io" + } } diff --git a/domains/wirisungs.json b/domains/wirisungs.json index 0bd4f92cf..f0a181248 100644 --- a/domains/wirisungs.json +++ b/domains/wirisungs.json @@ -1,8 +1,8 @@ { "owner": { - "username": "wirisungs" + "username": "wirisungs" }, "record": { - "CNAME": "wirisungs.github.io" + "CNAME": "wirisungs.github.io" } } diff --git a/domains/wizcann.json b/domains/wizcann.json index cc4df51b5..10abfdfb4 100644 --- a/domains/wizcann.json +++ b/domains/wizcann.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "wizcann" - }, - "record": { - "CNAME": "wizcann.github.io" - } -} + "owner": { + "username": "wizcann" + }, + "record": { + "CNAME": "wizcann.github.io" + } +} 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 index 2e23bf9fd..5ffe17247 100644 --- a/domains/works.arnxv.json +++ b/domains/works.arnxv.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ArnavBarway", - "email": "arnav@sagaraga.com" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } + "owner": { + "username": "ArnavBarway", + "email": "arnav@sagaraga.com" + }, + "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/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.bteamapp.json b/domains/www.bteamapp.json index a71f767a9..7dea7e8b7 100644 --- a/domains/www.bteamapp.json +++ b/domains/www.bteamapp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } } diff --git a/domains/www.dhlcgd.json b/domains/www.dhlcgd.json index 0f61df0fe..84adf8b6e 100644 --- a/domains/www.dhlcgd.json +++ b/domains/www.dhlcgd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "dhlcgd", - "email": "dhlcgdofficial@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "dhlcgd", + "email": "dhlcgdofficial@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } } 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..8a2ef2a61 --- /dev/null +++ b/domains/www.harunabdullah.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "harunabdullahrakin" + }, + + "record": { + "A": [ + "185.31.40.12" + ] + } + +} diff --git a/domains/www.joe50097.json b/domains/www.joe50097.json index 544b87710..7f5cfbe96 100644 --- a/domains/www.joe50097.json +++ b/domains/www.joe50097.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "Joe50097", - "email": "zcell9500@gmail.com" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "CNAME": "joe50097.netlify.app" + } } diff --git a/domains/www.myforum.json b/domains/www.myforum.json index 72a2fee0a..e3f1896a0 100644 --- a/domains/www.myforum.json +++ b/domains/www.myforum.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "myforum.mydiscussion.net" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "myforum.mydiscussion.net" + } } diff --git a/domains/www.ttkt.json b/domains/www.ttkt.json index a71f767a9..7dea7e8b7 100644 --- a/domains/www.ttkt.json +++ b/domains/www.ttkt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bteamapp", - "email": "helpapp.bta@gmail.com" - }, - "record": { - "CNAME": "ghs.google.com" - } + "owner": { + "username": "bteamapp", + "email": "helpapp.bta@gmail.com" + }, + "record": { + "CNAME": "ghs.google.com" + } } 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/xavier.json b/domains/xavier.json new file mode 100644 index 000000000..fa5b6efeb --- /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" + } +} \ No newline at end of file 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/xenonrexo.json b/domains/xenonrexo.json new file mode 100644 index 000000000..ac46d78de --- /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 index 4ffc90339..53f4098c4 100644 --- a/domains/xgeneric.json +++ b/domains/xgeneric.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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/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--3s9h.json b/domains/xn--3s9h.json new file mode 100644 index 000000000..e401bb43f --- /dev/null +++ b/domains/xn--3s9h.json @@ -0,0 +1,11 @@ +{ + "description": "I own unicorn.is-a.dev, so I thought it would be funny if I also own xn--3s9h.is-a.dev which is a unicorn-emoji.is-a.dev", + "repo": "https://github.com/6nf0n3/is-a-dev_register", + "owner": { + "username": "bnfone", + "email": "is-a-dev-registration.zbden@simplelogin.com" + }, + "record": { + "URL": "https://unicorn.is-a.dev" + } +} diff --git a/domains/xn--ol8h.json b/domains/xn--ol8h.json new file mode 100644 index 000000000..322469f54 --- /dev/null +++ b/domains/xn--ol8h.json @@ -0,0 +1,10 @@ +{ + "description": "emoji redirect", + "owner": { + "username": "saxophone-dev", + "email": "itsarchit@keemail.me" + }, + "record": { + "URL": "https://saxophone.is-a.dev" + } +} diff --git a/domains/xpugno.json b/domains/xpugno.json index 19148b752..00fe20474 100644 --- a/domains/xpugno.json +++ b/domains/xpugno.json @@ -1,13 +1,11 @@ { - "description": "Personal website for xPugno, hosted on Netlify at https://xpugno.netlify.app", - "repo": "https://github.com/xPugnocode/sillywebsite", - "owner": { - "username": "xPugnocode", - "discord": "567924760370085899" - }, - "record": { - "A": [ - "75.2.60.5" - ] - } + "description": "Personal website for xPugno, hosted on Netlify at https://xpugno.netlify.app", + "repo": "https://github.com/xPugnocode/sillywebsite", + "owner": { + "username": "xPugnocode", + "discord": "567924760370085899" + }, + "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/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/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/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 index 516612771..1172adb43 100644 --- a/domains/xvrtech.json +++ b/domains/xvrtech.json @@ -1,12 +1,11 @@ { - "description": "Toy website xvrtech.is-a.dev", - "repo": "https://github.com/FullStackedRVC/Agency.git", - "owner": { - "username": "FullStackedRVC", - "email": "robertocarov2@gmail.com" - }, - "record": { + "description": "Toy website xvrtech.is-a.dev", + "repo": "https://github.com/FullStackedRVC/Agency.git", + "owner": { + "username": "FullStackedRVC", + "email": "robertocarov2@gmail.com" + }, + "record": { "CNAME": "fullstackedrvc.github.io" - - } - } \ No newline at end of file + } +} diff --git a/domains/yas.json b/domains/yas.json new file mode 100644 index 000000000..e22f156c1 --- /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/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/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/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/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/yellososa.json b/domains/yellososa.json new file mode 100644 index 000000000..d5141d19b --- /dev/null +++ b/domains/yellososa.json @@ -0,0 +1,12 @@ +{ + "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" + } + } + \ No newline at end of file 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/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..b3386cce7 --- /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/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/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-lmouden.json b/domains/youssef-lmouden.json index 62c8bf2dc..922756d8c 100644 --- a/domains/youssef-lmouden.json +++ b/domains/youssef-lmouden.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "YoussefDevPro" - }, - "record": { - "CNAME": "youssefdevpro.github.io" - } -} + "owner": { + "username": "YoussefDevPro" + }, + "record": { + "CNAME": "youssefdevpro.github.io" + } +} 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/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/yujia.json b/domains/yujia.json index 9eabe930a..6822324d1 100644 --- a/domains/yujia.json +++ b/domains/yujia.json @@ -1,6 +1,5 @@ { "description": "Yujia's Magic", - "repo": "https://github.com/YujiaY", "owner": { "username": "YujiaY", "email": "aujackyuan@gmail.com" 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 87095b3fe..3aea970b6 100644 --- a/domains/yxz.json +++ b/domains/yxz.json @@ -1,28 +1,23 @@ { - "repo": "https://github.com/yz9551/blog", - "owner": { - "username": "yz9551", - "email": "", - "discord": "yz9551" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "AAAA": [ - "2606:50c0:8000::153", - "2606:50c0:8001::153", - "2606:50c0:8002::153", - "2606:50c0:8003::153" - ], - "MX": [ - "tourmaline.uksouth.cloudapp.azure.com" - ], - "TXT": [ - "v=spf1 mx -all" - ] - } + "repo": "https://github.com/yz9551/blog", + "owner": { + "username": "yz9551", + "discord": "yz9551" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], + "MX": ["tourmaline.uksouth.cloudapp.azure.com"], + "TXT": ["v=spf1 mx -all"] + } } 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 index 1fafd707a..fd77b578a 100644 --- a/domains/zalex.json +++ b/domains/zalex.json @@ -1,12 +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" - } - } - \ No newline at end of file + "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..521b04e19 --- /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" + } +} \ No newline at end of file diff --git a/domains/zehao.json b/domains/zehao.json new file mode 100644 index 000000000..dd9f8938b --- /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/zerot69.json b/domains/zerot69.json new file mode 100644 index 000000000..c4654bd07 --- /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/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 7851a9219..5ae5c5423 100644 --- a/domains/ziyn.json +++ b/domains/ziyn.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "254thheli", - "email": "is-a-dev@ziyn.us.kg" - }, - "record": { - "CNAME": "ziyn.pages.dev" - } + "owner": { + "username": "chromapher", + "email": "notziyn@gmail.com" + }, + "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.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.devarnav.json b/domains/zmail._domainkey.devarnav.json index 336d7eb0e..baa38f9b5 100644 --- a/domains/zmail._domainkey.devarnav.json +++ b/domains/zmail._domainkey.devarnav.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "ArnavBarway", - "email": "playnav.yt@gmail.com" - }, - "record": { - "TXT": [ - "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDSshIz5JRWquCDisgpRtbtWwMhzi2asXOamXxO6G80r4cNYll2/7AWSIxEKGV8t/eoGo9xiryfUXi0W5P5jHY6TWcdawPE/xBoBySt58dQtOElHEplukCYxyTotrvdQp1nH9w2jmexZfjXzOS97sGwUXHDWxNZjwT7hYf5Kzif+QIDAQAB" - ] - } + "owner": { + "username": "ArnavBarway", + "email": "playnav.yt@gmail.com" + }, + "record": { + "TXT": [ + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDSshIz5JRWquCDisgpRtbtWwMhzi2asXOamXxO6G80r4cNYll2/7AWSIxEKGV8t/eoGo9xiryfUXi0W5P5jHY6TWcdawPE/xBoBySt58dQtOElHEplukCYxyTotrvdQp1nH9w2jmexZfjXzOS97sGwUXHDWxNZjwT7hYf5Kzif+QIDAQAB" + ] + } } diff --git a/domains/zmail._domainkey.joe50097.json b/domains/zmail._domainkey.joe50097.json new file mode 100644 index 000000000..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.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/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/package-lock.json b/package-lock.json index b471fdeb1..32b170be4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,25 +9,100 @@ "fs-extra": "^11.2.0" } }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/fs-minipass": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.4" + }, + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", - "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz", + "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { + "consola": "^3.2.3", "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", + "https-proxy-agent": "^7.0.5", "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" + "nopt": "^8.0.0", + "semver": "^7.5.3", + "tar": "^7.4.0" }, "bin": { "node-pre-gyp": "bin/node-pre-gyp" + }, + "engines": { + "node": ">=18" } }, "node_modules/@nodelib/fs.scandir": { @@ -68,31 +143,38 @@ "node": ">= 8" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", + "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", "dev": true, "license": "MIT", "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" }, "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/@rollup/pluginutils/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, "node_modules/@sindresorhus/merge-streams": { @@ -108,15 +190,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, "node_modules/@vercel/nft": { - "version": "0.27.6", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.6.tgz", - "integrity": "sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==", + "version": "0.27.10", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.10.tgz", + "integrity": "sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==", "dev": true, "license": "MIT", "dependencies": { - "@mapbox/node-pre-gyp": "^1.0.11", - "@rollup/pluginutils": "^4.0.0", + "@mapbox/node-pre-gyp": "^2.0.0-rc.0", + "@rollup/pluginutils": "^5.1.3", "acorn": "^8.6.0", "acorn-import-attributes": "^1.9.5", "async-sema": "^3.1.1", @@ -124,8 +213,8 @@ "estree-walker": "2.0.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "micromatch": "^4.0.8", "node-gyp-build": "^4.2.2", + "picomatch": "^4.0.2", "resolve-from": "^5.0.0" }, "bin": { @@ -136,11 +225,14 @@ } }, "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz", + "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==", "dev": true, - "license": "ISC" + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } }, "node_modules/acorn": { "version": "8.14.0", @@ -179,16 +271,13 @@ } }, "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", "dev": true, "license": "MIT", - "dependencies": { - "debug": "4" - }, "engines": { - "node": ">= 6.0.0" + "node": ">= 14" } }, "node_modules/ansi-regex": { @@ -217,28 +306,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "deprecated": "This package is no longer supported.", - "dev": true, - "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -427,9 +494,9 @@ } }, "node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", "dev": true, "license": "MIT", "engines": { @@ -440,13 +507,13 @@ } }, "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/chunkd": { @@ -457,9 +524,9 @@ "license": "MIT" }, "node_modules/ci-info": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", - "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz", + "integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==", "dev": true, "funding": [ { @@ -599,16 +666,6 @@ "dev": true, "license": "MIT" }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "license": "ISC", - "bin": { - "color-support": "bin.js" - } - }, "node_modules/common-path-prefix": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", @@ -643,12 +700,15 @@ "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14" } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "node_modules/consola": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", + "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", "dev": true, - "license": "ISC" + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } }, "node_modules/convert-to-spaces": { "version": "2.0.1", @@ -660,6 +720,21 @@ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/currently-unhandled": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", @@ -687,9 +762,9 @@ } }, "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dev": true, "license": "MIT", "dependencies": { @@ -704,13 +779,6 @@ } } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true, - "license": "MIT" - }, "node_modules/detect-libc": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", @@ -721,10 +789,17 @@ "node": ">=8" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, "node_modules/emittery": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.0.3.tgz", - "integrity": "sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.1.0.tgz", + "integrity": "sha512-rsX7ktqARv/6UQDgMaLfIqUWAEzzbCQiVh7V9rhDXp6c37yoJcks12NVD+XPkgl4AEavmNhVfrhGoqYwIsMYYA==", "dev": true, "license": "MIT", "engines": { @@ -803,9 +878,9 @@ "license": "Apache-2.0" }, "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "license": "MIT", "dependencies": { @@ -813,16 +888,16 @@ "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" } }, "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz", + "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==", "dev": true, "license": "ISC", "dependencies": { @@ -878,10 +953,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", + "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", "dev": true, "license": "MIT", "dependencies": { @@ -893,32 +985,6 @@ "node": ">=14.14" } }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -926,83 +992,6 @@ "dev": true, "license": "ISC" }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "deprecated": "This package is no longer supported.", - "dev": true, - "license": "ISC", - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gauge/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/gauge/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/gauge/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/gauge/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gauge/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -1062,18 +1051,18 @@ } }, "node_modules/globby": { - "version": "14.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", - "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", + "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", "dev": true, "license": "MIT", "dependencies": { "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", + "fast-glob": "^3.3.3", + "ignore": "^7.0.3", + "path-type": "^6.0.0", "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" + "unicorn-magic": "^0.3.0" }, "engines": { "node": ">=18" @@ -1089,31 +1078,24 @@ "dev": true, "license": "ISC" }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true, - "license": "ISC" - }, "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, "license": "MIT", "dependencies": { - "agent-base": "6", + "agent-base": "^7.1.2", "debug": "4" }, "engines": { - "node": ">= 6" + "node": ">= 14" } }, "node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz", + "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==", "dev": true, "license": "MIT", "engines": { @@ -1258,6 +1240,29 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/js-string-escape": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", @@ -1315,31 +1320,12 @@ "dev": true, "license": "MIT" }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } + "license": "ISC" }, "node_modules/matcher": { "version": "5.0.0", @@ -1450,53 +1436,43 @@ } }, "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, "license": "ISC", "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz", + "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==", "dev": true, "license": "MIT", "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "minipass": "^7.0.4", + "rimraf": "^5.0.5" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" + "node": ">= 18" } }, "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", "dev": true, "license": "MIT", "bin": { - "mkdirp": "bin/cmd.js" + "mkdirp": "dist/cjs/src/bin.js" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/ms": { @@ -1528,9 +1504,9 @@ } }, "node_modules/node-gyp-build": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", - "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", + "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "dev": true, "license": "MIT", "bin": { @@ -1550,43 +1526,19 @@ } }, "node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz", + "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==", "dev": true, "license": "ISC", "dependencies": { - "abbrev": "1" + "abbrev": "^3.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { - "node": ">=6" - } - }, - "node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "deprecated": "This package is no longer supported.", - "dev": true, - "license": "ISC", - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || >=20.5.0" } }, "node_modules/once": { @@ -1600,9 +1552,9 @@ } }, "node_modules/p-map": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.2.tgz", - "integrity": "sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", + "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", "dev": true, "license": "MIT", "engines": { @@ -1629,6 +1581,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, "node_modules/parse-ms": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", @@ -1652,14 +1611,41 @@ "node": ">=0.10.0" } }, - "node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", + "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1695,9 +1681,9 @@ } }, "node_modules/pretty-ms": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.1.0.tgz", - "integrity": "sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", + "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", "dev": true, "license": "MIT", "dependencies": { @@ -1731,21 +1717,6 @@ ], "license": "MIT" }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -1791,17 +1762,63 @@ } }, "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", "dev": true, "license": "ISC", "dependencies": { - "glob": "^7.1.3" + "glob": "^10.3.7" }, "bin": { - "rimraf": "bin.js" + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -1831,31 +1848,10 @@ "queue-microtask": "^1.2.2" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", "dev": true, "license": "ISC", "bin": { @@ -1881,19 +1877,41 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/set-blocking": { + "node_modules/shebang-command": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "license": "ISC" + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } }, "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "license": "ISC" + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, "node_modules/slash": { "version": "5.1.0", @@ -1955,16 +1973,6 @@ "node": ">=8" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/string-width": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", @@ -1983,6 +1991,62 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-ansi": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", @@ -1999,6 +2063,30 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/supertap": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz", @@ -2016,21 +2104,21 @@ } }, "node_modules/tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", + "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", "dev": true, "license": "ISC", "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.0.1", + "mkdirp": "^3.0.1", + "yallist": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/temp-dir": { @@ -2087,9 +2175,9 @@ } }, "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", "dev": true, "license": "MIT", "engines": { @@ -2109,13 +2197,6 @@ "node": ">= 10.0.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true, - "license": "MIT" - }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", @@ -2144,69 +2225,20 @@ "webidl-conversions": "^3.0.0" } }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "license": "ISC", "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/wide-align/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/wide-align/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" + "node": ">= 8" } }, "node_modules/wrap-ansi": { @@ -2227,6 +2259,96 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/wrap-ansi/node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -2319,19 +2441,6 @@ "node": "^18.17.0 || >=20.5.0" } }, - "node_modules/write-file-atomic/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -2343,11 +2452,14 @@ } }, "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", "dev": true, - "license": "ISC" + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } }, "node_modules/yargs": { "version": "17.7.2", diff --git a/tests/domains.test.js b/tests/domains.test.js index 4c4dc25d6..90262cdef 100644 --- a/tests/domains.test.js +++ b/tests/domains.test.js @@ -3,127 +3,132 @@ 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}`, + ); + } +} function getParentSubdomain(subdomain) { const parts = subdomain.split("."); if (parts.length <= 1) return null; // No parent for top-level subdomains - // Attempt to find the parent subdomain by removing the last part + // Try to find the parent subdomain by iterating over the parts for (let i = parts.length - 1; i > 0; i--) { const potentialParent = parts.slice(i - 1).join("."); + if (files.includes(`${potentialParent}.json`)) { - return potentialParent; // Return the parent subdomain if it exists + return potentialParent; } } - return null; // Return null if no valid parent is found -} - -function getDomainData(subdomain) { - try { - return fs.readJsonSync(path.join(domainsPath, `${subdomain}.json`)); - } catch (error) { - throw new Error(`Failed to read JSON for ${subdomain}: ${error.message}`); - } -} - -function expandReservedDomains() { - const reserved = require("../util/reserved-domains.json"); - const expandedList = [...reserved]; - - for (const item of reserved) { - const rangeMatch = item.match(/\[(\d+)-(\d+)\]/); // Matches [min-max] - - if (rangeMatch) { - const prefix = item.split("[")[0]; - const start = parseInt(rangeMatch[1], 10); - const end = parseInt(rangeMatch[2], 10); - - if (start < end) { - for (let i = start; i <= end; i++) { - expandedList.push(prefix + i); - } - - expandedList.splice(expandedList.indexOf(item), 1); - } else { - throw new Error(`[util/reserved-domains.json] Invalid range [${start}-${end}] in "${item}"`); - } - } - } - - return expandedList; + return null; } t("Nested subdomains should not exist without a parent subdomain", (t) => { - for (const file of files) { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); if (subdomain.split(".").length > 1) { const parentSubdomain = getParentSubdomain(subdomain); - t.true(files.includes(`${parentSubdomain}.json`), `${file}: Parent subdomain does not exist`); + t.true( + parentSubdomain && files.includes(`${parentSubdomain}.json`), + `${file}: Parent subdomain does not exist`, + ); } - } - - t.pass(); + }); }); -t("Nested subdomains should not exist if the parent subdomain has NS records", (t) => { - for (const file of files) { - const subdomain = file.replace(/\.json$/, ""); +t( + "Nested subdomains should not exist if the parent subdomain has NS records", + (t) => { + files.forEach((file) => { + const subdomain = file.replace(/\.json$/, ""); - if (subdomain.split(".").length > 1) { - const parentSubdomain = getParentSubdomain(subdomain); - const parentDomain = getDomainData(parentSubdomain); + if (subdomain.split(".").length > 1) { + const parentSubdomain = getParentSubdomain(subdomain); + const parentDomain = getDomainData(parentSubdomain); - t.true(!parentDomain.record.NS, `${file}: Parent subdomain has NS records`); - } - } - - t.pass(); -}); + t.true( + !parentDomain.record.NS, + `${file}: Parent subdomain has NS records`, + ); + } + }); + }, +); t("Nested subdomains should be owned by the parent subdomain's owner", (t) => { - for (const file of files) { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); if (subdomain.split(".").length > 1) { const data = getDomainData(subdomain); - const parentSubdomain = getParentSubdomain(subdomain); const parentDomain = getDomainData(parentSubdomain); t.true( - data.owner.username.toLowerCase() === parentDomain.owner.username.toLowerCase(), - `${file}: Owner does not match the parent subdomain` + data.owner.username.toLowerCase() === + parentDomain.owner.username.toLowerCase(), + `${file}: Owner does not match the parent subdomain`, ); } - } + }); }); -const reservedDomains = expandReservedDomains(); - -t("Subdomain names must not be reserved", (t) => { - for (const file of files) { +t("Subdomains containing an underscore can only have specific records", (t) => { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); - t.true(!reservedDomains.includes(subdomain), `${file}: Subdomain name is reserved`); - } + if (subdomain.includes("_")) { + const data = getDomainData(subdomain); + const recordKeys = Object.keys(data.record); - t.pass(); -}); - -t("Reserved domains file should be valid", (t) => { - const subdomainRegex = /^_?[a-zA-Z0-9]+([-\.][a-zA-Z0-9]+)*(\[\d+-\d+\])?$/; - - for (const item of reservedDomains) { - t.regex( - item, - subdomainRegex, - `[util/reserved-domains.json] Invalid subdomain name "${item}" at index ${reservedDomains.indexOf(item)}` - ); - } - - t.pass(); + if ( + subdomain.startsWith("_acme-challenge.") || + subdomain.includes("._domainkey.") + ) { + t.true( + recordKeys.every((key) => + new Set(["TXT", "CNAME"]).has(key), + ), + `${file}: This type of subdomain can only have TXT or CNAME records`, + ); + } else if ( + subdomain.includes("._tcp.") || + subdomain.includes("._udp.") + ) { + t.deepEqual( + recordKeys, + ["SRV"], + `${file}: This type of subdomain can only have SRV records`, + ); + } else { + t.deepEqual( + recordKeys, + ["TXT"], + `${file}: Subdomains with underscores can only have TXT records`, + ); + } + } + }); }); diff --git a/tests/json.test.js b/tests/json.test.js index 1bf3e3f3d..847cf0259 100644 --- a/tests/json.test.js +++ b/tests/json.test.js @@ -2,112 +2,243 @@ 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" + record: "object", }; const optionalFields = { proxied: "boolean", - reserved: "boolean" + redirect_config: "object", }; const requiredOwnerFields = { - username: "string" + username: "string", }; const optionalOwnerFields = { - email: "string" + 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 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 expandReservedDomains(reserved) { + const expandedList = [...reserved]; + + reserved.forEach((item) => { + const rangeMatch = item.match(/\[(\d+)-(\d+)\]/); + + if (rangeMatch) { + const prefix = item.split("[")[0]; + const start = parseInt(rangeMatch[1], 10); + const end = parseInt(rangeMatch[2], 10); + + if (start < end) { + for (let i = start; i <= end; i++) { + expandedList.push(prefix + i); + } + expandedList.splice(expandedList.indexOf(item), 1); + } else { + throw new Error( + `[util/reserved.json] Invalid range [${start}-${end}] in "${item}"`, + ); + } + } }); + + return expandedList; } -function validateOptionalFields(t, obj, optionalFields, file) { - Object.keys(optionalFields).forEach((key) => { +const expandedReservedDomains = expandReservedDomains(reservedDomains); + +function findDuplicateKeys(jsonString) { + const keyPattern = /"([^"]+)"(?=\s*:)/g; + const keys = []; + let match; + + // Find all keys in the JSON string + while ((match = keyPattern.exec(jsonString)) !== null) { + keys.push(match[1]); + } + + // Count occurrences of each key + const keyCount = {}; + keys.forEach((key) => { + keyCount[key] = (keyCount[key] || 0) + 1; + }); + + // Return keys that occur more than once + return Object.keys(keyCount).filter((key) => keyCount[key] > 1); +} + +function validateFields(t, obj, fields, file, prefix = "") { + Object.keys(fields).forEach((key) => { + 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]}` + fields[key], + `${file}: Field ${fieldPath} should be of type ${fields[key]}`, ); + } else if (fields === requiredFields) { + t.true(false, `${file}: Missing required field: ${fieldPath}`); } }); } +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`, + ); + + // Ignore root domain + if (file !== "@.json") { + const subdomain = file.replace(/\.json$/, ""); + + t.regex( + subdomain + ".is-a.dev", + hostnameRegex, + `${file}: FQDN must be 1-253 characters, use letters, numbers, dots, or hyphens, and not start or end with a hyphen.`, + ); + t.false( + expandedReservedDomains.includes(subdomain), + `${file}: Subdomain name is reserved`, + ); + // Disallow nested subdomains above reserved domains + t.true( + !expandedReservedDomains.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`, + ); + } + } +} + +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 be valid JSON", (t) => { files.forEach((file) => { - t.notThrows(() => fs.readJsonSync(path.join(domainsPath, file)), `${file}: Invalid JSON file`); + t.notThrows( + () => fs.readJsonSync(path.join(domainsPath, file)), + `${file}: Invalid JSON file`, + ); + }); +}); + +t("All files should not have duplicate keys", (t) => { + files.forEach((file) => { + // Parse JSON as a string because JS automatically gets the last key if there are duplicates + const rawData = fs.readFileSync(`${domainsPath}/${file}`, "utf8"); + const duplicateKeys = findDuplicateKeys(rawData); + + t.true( + !duplicateKeys.length, + `${file}: Duplicate keys found: ${duplicateKeys.join(", ")}`, + ); }); }); 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`); - - // Ignore root domain - if (file !== "@.json") { - const subdomain = file.replace(/\.json$/, ""); - t.regex( - subdomain + ".is-a.dev", - hostnameRegex, - `${file}: FQDN must be 1-253 characters, use letters, numbers, dots, or hyphens, and not start or end with a hyphen.` - ); - } + validateFileName(t, file); }); }); -t("All files should have the required fields", (t) => { +t("All files should have valid required and optional fields", (t) => { files.forEach((file) => { const data = fs.readJsonSync(path.join(domainsPath, file)); // Validate top-level required fields - validateRequiredFields(t, data, requiredFields, file); + validateFields(t, data, requiredFields, file); - // Validate owner object fields - validateRequiredFields(t, data.owner, requiredOwnerFields, file); + // Validate owner fields + validateFields(t, data.owner, requiredOwnerFields, file, "owner"); + validateFields(t, data.owner, optionalOwnerFields, file, "owner"); - // Ensure 'record' field is not empty unless reserved - if (!data.reserved) { - t.true(Object.keys(data.record).length > 0, `${file}: No record types found`); + // Validate optional fields for top-level and redirect config + validateFields(t, data, optionalFields, file); + if (data.redirect_config) { + validateFields( + t, + data.redirect_config, + optionalRedirectConfigFields, + file, + "redirect_config", + ); } - }); -}); -t("All files should have valid optional fields", (t) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, file)); - - // Validate optional fields at top level - validateOptionalFields(t, data, optionalFields, file); - - // Validate optional fields for owner object - validateOptionalFields(t, data.owner, optionalOwnerFields, file); - - // Email validation (if provided) + // Validate email format if (data.owner.email) { - t.regex(data.owner.email, emailRegex, `${file}: Owner email should be a valid email address`); + 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`, + ); } + + // Ensure 'record' field is not empty + t.true( + Object.keys(data.record).length > 0, + `${file}: Missing DNS records`, + ); }); }); -const ignoredJSONFiles = ["package-lock.json", "package.json"]; +t("Reserved domains file should be valid", (t) => { + const subdomainRegex = /^_?[a-zA-Z0-9]+([-\.][a-zA-Z0-9]+)*(\[\d+-\d+\])?$/; -t("JSON files should not be in the root directory", (t) => { - const rootFiles = fs - .readdirSync(path.resolve()) - .filter((file) => file.endsWith(".json") && !ignoredJSONFiles.includes(file)); - t.is(rootFiles.length, 0, "JSON files should not be in the root directory"); + expandedReservedDomains.forEach((item, index) => { + t.regex( + item, + subdomainRegex, + `[util/reserved-domains.json] Invalid subdomain name "${item}" at index ${index}`, + ); + }); + + t.pass(); }); diff --git a/tests/proxy.test.js b/tests/proxy.test.js index 2bb64b48c..0f1c65039 100644 --- a/tests/proxy.test.js +++ b/tests/proxy.test.js @@ -3,29 +3,51 @@ const fs = require("fs-extra"); const path = require("path"); const requiredRecordsToProxy = new Set(["A", "AAAA", "CNAME"]); -// URL records are not listed here because they are proxied by default, so they don't need the proxied flag + +const domainCache = {}; + +function getDomainData(file) { + if (domainCache[file]) { + return domainCache[file]; + } + + try { + const data = fs.readJsonSync(path.join(domainsPath, file)); + domainCache[file] = data; + return data; + } catch (error) { + throw new Error(`Failed to read JSON for ${file}: ${error.message}`); + } +} function validateProxiedRecords(t, data, file) { - // Convert the Set to an array for message display + // Convert the Set to an array for message display (moved outside the loop to optimize performance) const recordTypes = Array.from(requiredRecordsToProxy).join(", "); if (data.proxied) { - const hasProxiedRecord = Object.keys(data.record).some((key) => requiredRecordsToProxy.has(key)); + 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)` + `${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).filter((file) => file.endsWith(".json")); +const files = fs + .readdirSync(domainsPath) + .filter((file) => file.endsWith(".json")); -t("Domains with proxy enabled should have at least one record that can be proxied", (t) => { - files.forEach((file) => { - const domain = fs.readJsonSync(path.join(domainsPath, file)); +t( + "Domains with proxy enabled must have at least one proxy-able record", + (t) => { + files.forEach((file) => { + const domain = getDomainData(file); - validateProxiedRecords(t, domain, file); - }); -}); + validateProxiedRecords(t, domain, file); + }); + }, +); diff --git a/tests/records.test.js b/tests/records.test.js index de5ecbadc..9f05a650b 100644 --- a/tests/records.test.js +++ b/tests/records.test.js @@ -2,19 +2,48 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); -const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TXT", "URL"]); - -const 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 validRecordTypes = new Set([ + "A", + "AAAA", + "CAA", + "CNAME", + "DS", + "MX", + "NS", + "SRV", + "TXT", + "URL", +]); +const hostnameRegex = + /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/; +const ipv4Regex = + /^(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}$/; const ipv6Regex = /^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$|^::(?:[0-9a-fA-F]{1,4}:){0,6}[0-9a-fA-F]{1,4}$|^(?:[0-9a-fA-F]{1,4}:){1,7}:$|^(?:[0-9a-fA-F]{1,4}:){0,6}::(?:[0-9a-fA-F]{1,4}:){0,5}[0-9a-fA-F]{1,4}$/; const domainsPath = path.resolve("domains"); -const files = fs.readdirSync(domainsPath); +const files = fs + .readdirSync(domainsPath) + .filter((file) => file.endsWith(".json")); + +const domainCache = {}; + +function getDomainData(file) { + if (domainCache[file]) { + return domainCache[file]; + } + + try { + const data = fs.readJsonSync(path.join(domainsPath, file)); + domainCache[file] = data; + return data; + } catch (error) { + throw new Error(`Failed to read JSON for ${file}: ${error.message}`); + } +} function expandIPv6(ip) { let segments = ip.split(":"); - const emptyIndex = segments.indexOf(""); if (emptyIndex !== -1) { @@ -24,17 +53,21 @@ function expandIPv6(ip) { segments = [ ...nonEmptySegments.slice(0, emptyIndex), ...Array(missingSegments).fill("0000"), - ...nonEmptySegments.slice(emptyIndex) + ...nonEmptySegments.slice(emptyIndex), ]; } return segments.map((segment) => segment.padStart(4, "0")).join(":"); } -function validateIPv4(ip, proxied, file, index) { +function validateIPv4(ip, proxied) { const parts = ip.split(".").map(Number); - if (parts.length !== 4 || parts.some((part) => isNaN(part) || part < 0 || part > 255)) return false; + if ( + parts.length !== 4 || + parts.some((part) => isNaN(part) || part < 0 || part > 255) + ) + return false; if (ip === "192.0.2.1" && proxied) return true; return !( @@ -74,135 +107,281 @@ 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", + `${file}: Record value for ${key} should be a string 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 (["MX", "NS"].includes(key)) { + 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 validations + if (["CAA", "DS", "SRV"].includes(key)) { + t.true( + Array.isArray(value), + `${file}: Record value for ${key} should be an array`, + ); + + value.forEach((record, idx) => { + t.true( + typeof record === "object", + `${file}: Record value for ${key} should be an object at index ${idx}`, + ); + + if (key === "CAA") { + t.true( + ["issue", "issuewild", "iodef"].includes(record.tag), + `${file}: Invalid tag for CAA at index ${idx}`, + ); + t.true( + typeof record.value === "string", + `${file}: Invalid value for CAA at index ${idx}`, + ); + t.true( + isValidHostname(record.value) || record.value === ";", + `${file}: Value must be a hostname or semicolon for CAA 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 DS at index ${idx}`, + ); + t.true( + Number.isInteger(record.algorithm) && + record.algorithm >= 0 && + record.algorithm <= 255, + `${file}: Invalid algorithm for DS at index ${idx}`, + ); + t.true( + Number.isInteger(record.digest_type) && + record.digest_type >= 0 && + record.digest_type <= 255, + `${file}: Invalid digest_type for DS at index ${idx}`, + ); + t.true( + isValidHexadecimal(record.digest), + `${file}: Invalid digest for DS at index ${idx}`, + ); + } else if (key === "SRV") { + t.true( + Number.isInteger(record.priority) && + record.priority >= 0 && + record.priority <= 65535, + `${file}: Invalid priority for SRV at index ${idx}`, + ); + t.true( + Number.isInteger(record.weight) && + record.weight >= 0 && + record.weight <= 65535, + `${file}: Invalid weight for SRV at index ${idx}`, + ); + t.true( + Number.isInteger(record.port) && + record.port >= 0 && + record.port <= 65535, + `${file}: Invalid port for SRV at index ${idx}`, + ); + t.true( + isValidHostname(record.target), + `${file}: Invalid target for SRV 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(validateRecordType(key), `${file}: Invalid record type: ${key}`); + t.true( + validateRecordType(key), + `${file}: Invalid record type: ${key}`, + ); }); - // Specific record rules for CNAME, NS, and DS + // Record type combinations validation if (recordKeys.includes("CNAME") && !data.proxied) { - t.is(recordKeys.length, 1, `${file}: CNAME records cannot be combined with other records unless proxied`); - } - - if (recordKeys.includes("NS")) { - t.true( - recordKeys.length === 1 || (recordKeys.length === 2 && recordKeys.includes("DS")), - `${file}: NS records cannot be combined with other records, except for DS records` + t.is( + recordKeys.length, + 1, + `${file}: CNAME records cannot be combined with other records unless proxied`, ); } - - if (recordKeys.includes("DS")) { - t.true(recordKeys.includes("NS"), `${file}: DS records must be combined with NS 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`, + ); } + 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("All files should not have duplicate record keys", (t) => { - files.forEach((file) => { - const data = fs.readJsonSync(path.join(domainsPath, 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]; - const subdomain = file.replace(/\.json$/, ""); // Get the subdomain from the filename - - // Validate A, AAAA, MX, NS records: Array of strings - if (["A", "AAAA", "MX", "NS"].includes(key)) { - t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`); - - value.forEach((record, idx) => { - t.true( - typeof record === "string", - `${file}: Record value for ${key} should be a string at index ${idx}` - ); - - if (key === "A") { - t.regex(record, ipv4Regex, `${file}: Invalid IPv4 address for ${key} at index ${idx}`); - t.true( - validateIPv4(record, data.proxied, file, idx), - `${file}: Invalid IPv4 address for ${key} at index ${idx}` - ); - } - - if (key === "AAAA") { - t.regex( - expandIPv6(record), - ipv6Regex, - `${file}: Invalid IPv6 address for ${key} at index ${idx}` - ); - t.true(validateIPv6(record), `${file}: Invalid IPv6 address for ${key} at index ${idx}`); - } - - if (["MX", "NS"].includes(key)) { - t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`); - } - }); - } - - // Validate CNAME and URL records: Single string - if (["CNAME", "URL"].includes(key)) { - t.true(typeof value === "string", `${file}: Record value for ${key} should be a string`); - - if (key === "CNAME") { - t.true(isValidHostname(value), `${file}: Invalid hostname for ${key}`); - t.true(value !== file, `${file}: CNAME cannot point to itself`); - if (file === "@.json") { - t.true(value !== "is-a.dev", `${file}: CNAME cannot point to itself`); - } - } - - if (key === "URL") { - t.true(value.startsWith("http://") || value.startsWith("https://"), `${file}: Record value for ${key} must start with http:// or https://`) - t.notThrows(() => new URL(value), `${file}: Invalid URL for ${key}`); - } - } - - // Validate CAA, DS, SRV records: Array of objects - if (["CAA", "DS", "SRV"].includes(key)) { - t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`); - - value.forEach((record, idx) => { - t.true( - typeof record === "object", - `${file}: Record value for ${key} should be an object at index ${idx}` - ); - - if (key === "DS") { - t.true( - Number.isInteger(record.key_tag) && record.key_tag >= 0 && record.key_tag <= 65535, - `${file}: Invalid key_tag for DS at index ${idx}` - ); - t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for DS at index ${idx}`); - } - }); - } - - // TXT: Single string or array of strings - if (key === "TXT") { - if (Array.isArray(value)) { - value.forEach((record, idx) => { - t.true( - typeof record === "string", - `${file}: TXT record value should be a string at index ${idx}` - ); - }); - } else { - t.true(typeof value === "string", `${file}: TXT record value should be a string`); - } - } - }); - }); + + t.pass(); }); diff --git a/tests/special.test.js b/tests/special.test.js new file mode 100644 index 000000000..3a5f8aeef --- /dev/null +++ b/tests/special.test.js @@ -0,0 +1,66 @@ +const t = require("ava"); +const fs = require("fs-extra"); +const path = require("path"); + +const domainsPath = path.resolve("domains"); +const files = fs + .readdirSync(domainsPath) + .filter((file) => file.endsWith(".json")); + +const bypassedUsernames = require("../util/bypassed.json").map((username) => + username.toLowerCase(), +); + +function getDomainData(subdomain) { + try { + const data = fs.readJsonSync( + path.join(domainsPath, `${subdomain}.json`), + ); + return data; + } catch (error) { + throw new Error( + `Failed to read JSON for ${subdomain}: ${error.message}`, + ); + } +} + +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 && + !bypassedUsernames.includes(data.owner.username.toLowerCase()) + ) { + 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/util/bypassed.json b/util/bypassed.json new file mode 100644 index 000000000..31fe6be0d --- /dev/null +++ b/util/bypassed.json @@ -0,0 +1 @@ +["is-a-dev", "wdhdev"] diff --git a/util/excepted.json b/util/excepted.json new file mode 100644 index 000000000..fd68638d8 --- /dev/null +++ b/util/excepted.json @@ -0,0 +1,7 @@ +[ + "_discord", + "_psl", + "_gh-is-a-dev-docs-o", + "_gh-is-a-dev-o", + "_github-pages-challenge-is-a-dev" +] diff --git a/util/reserved-domains.json b/util/reserved.json similarity index 79% rename from util/reserved-domains.json rename to util/reserved.json index 67087b209..98267ebff 100644 --- a/util/reserved-domains.json +++ b/util/reserved.json @@ -1,117 +1,142 @@ -[ - "account", - "accounts", - "admin", - "administrator", - "alert", - "alerts", - "api", - "auth", - "authentication", - "authorise", - "authorize", - "aux", - "billing", - "blog", - "calendar", - "cart", - "catalog", - "checkout", - "com", - "com[1-9]", - "con", - "confirm", - "confirmation", - "dashboard", - "default", - "dns", - "doc", - "documentation", - "email", - "error", - "errors", - "event", - "events", - "example", - "feedback", - "finance", - "forgot", - "forgot-password", - "gtld", - "guest", - "help", - "helpdesk", - "hostmaster", - "info", - "infos", - "login", - "logout", - "lpt[1-9]", - "m", - "mail", - "maintainer", - "maintainers", - "marketing", - "mobile", - "net", - "news", - "nic", - "noc", - "notification", - "notifications", - "notify", - "ns", - "ns[1-99]", - "nul", - "oauth", - "official", - "operations", - "ops", - "org", - "organisation", - "pay", - "payment", - "payments", - "portal", - "postmaster", - "prn", - "recovery", - "redirect", - "registrar", - "registry", - "reset", - "reset-password", - "root", - "sales", - "schedule", - "security", - "service", - "services", - "session", - "sessions", - "shop", - "signin", - "signout", - "signup", - "staff", - "store", - "superuser", - "support", - "sys", - "system", - "teams", - "test", - "test[1-9999]", - "tld", - "token", - "tokens", - "url", - "url[1-9999]", - "user", - "users", - "webmaster", - "whois", - "www[1-99]", - "wwww", - "your-domain-name" -] +[ + "_acme-challenge.www", + "_atproto.www", + "_discord.www", + "_vercel.www", + "account", + "accounts", + "admin", + "administrator", + "alert", + "alerts", + "api", + "auth", + "authentication", + "authorisation", + "authorise", + "authorization", + "authorize", + "aux", + "billing", + "blog", + "calendar", + "cart", + "catalog", + "chat", + "checkout", + "cname", + "cname[1-99]", + "co", + "com", + "com[1-9]", + "con", + "confirm", + "confirmation", + "dashboard", + "default", + "dns", + "doc", + "documentation", + "email", + "emails", + "error", + "errors", + "event", + "events", + "example", + "feedback", + "finance", + "forgot", + "forgot-password", + "gtld", + "guest", + "help", + "helpdesk", + "hostmaster", + "info", + "infos", + "int", + "internal", + "login", + "logout", + "lpt[1-9]", + "m", + "mail", + "maintainer", + "maintainers", + "marketing", + "media", + "mobile", + "net", + "network", + "news", + "noc", + "notification", + "notifications", + "notify", + "ns", + "ns[1-99]", + "nul", + "oauth", + "official", + "operations", + "ops", + "org", + "organisation", + "pay", + "payment", + "payments", + "portal", + "postmaster", + "prod", + "production", + "recovery", + "redirect", + "registrar", + "registry", + "reset", + "reset-password", + "root", + "sales", + "schedule", + "secure", + "security", + "service", + "services", + "session", + "sessions", + "shop", + "signin", + "signout", + "signup", + "srv", + "srv[1-99]", + "staff", + "staging", + "statistics", + "stats", + "status", + "store", + "superuser", + "support", + "sys", + "system", + "teams", + "test", + "test[1-9999]", + "tld", + "token", + "tokens", + "txt", + "txt[1-9999]", + "url", + "url[1-9999]", + "user", + "users", + "webmail", + "webmaster", + "whois", + "www[1-99]", + "wwww", + "your-domain-name" +]