diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 080e54b65..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -custom: ["https://donate.is-a.dev"] diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e7eb65913..46ec6ab67 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. +Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain **MUST** pass **ALL** the indicated requirements below. -Please note that we reserve the rights not to accept any domain at our own discretion. + +- [ ] I have **read** and **understood** the [Terms of Service](https://is-a.dev/terms). +- [ ] My domain is **not** for commercial use. +- [ ] My file is in the `domains` folder and is in the JSON format. +- [ ] My file's name is all lowercased and alphanumeric. +- [ ] The website is **reachable**. +- [ ] I have **completed** my website. +- [ ] My website is related to **software development**. +- [ ] I have provided contact information in the `owner` key. +- [ ] I have **followed** the [documentation](https://docs.is-a.dev). +- [ ] I understand my domain may be removed if I violate the [Terms of Service](https://is-a.dev/terms). -- [ ] 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. - -## Website Link/Preview - +## Website Preview + 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/.github/workflows/validation.yml b/.github/workflows/validation.yml index d48c9a347..fa0fa8f5f 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -19,14 +19,13 @@ concurrency: cancel-in-progress: true jobs: - dns: - name: DNS + dnscontrol: + name: DNSControl runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Check - uses: is-a-dev/dnscontrol-action@main + - uses: is-a-dev/dnscontrol-action@main with: args: check @@ -38,4 +37,4 @@ jobs: - run: npm install - - run: npm test + - run: npx ava tests/*.test.js diff --git a/.gitignore b/.gitignore index c6bba5913..8e8fae3d9 100644 --- a/.gitignore +++ b/.gitignore @@ -128,3 +128,6 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* + +# Custom +.DS_Store diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 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/README.md b/README.md index 6629d8c78..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. @@ -21,47 +21,39 @@ Not all of these will be posted on GitHub, however they will always be posted in Discord Server # Register -### NS Records -When applying for NS records, please consider if you *actually* need them. -In your PR, please provide *extensive* reasoning, with evidence/examples, of why you need NS records. -You can see a good example of this [here](https://github.com/is-a-dev/register/pull/17592). - -***Pull requests adding NS records without valid reasoning will be closed.*** - -**Instant Denials**: -- I don't want to create a pull request everytime I want to update my DNS records. - - Over 3,000 people have to create PRs for updating their records, you can too. -- It is easier to manage DNS records on *(insert DNS provider name)*. - - It isn't too difficult to open a pull request to update your DNS records. We aim for PRs to be merged with-in 24 hours. -- I want to use DDoS protection. - - You can simply add `"proxied": true` to your file, to enable Cloudflare's Enterprise-level DDoS protection for your subdomain. - -> [!NOTE] -> You can skip these requirements by [supporting the service](https://wdh.gg/pvNCdvs) with a small amount of $2. -> -> If you decide to donate, please email william@is-a.dev with your payment confirmation and your pull request link to receive your NS records. - -## Manual Registration +## 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! -## Automated Registration -***Returning soon.*** Join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for updates. +### NS Records +When applying for NS records, please be aware we already support a [wide range of DNS records](https://docs.is-a.dev/faq/#which-records-are-supported), so you may not need them. -# Issues -If you have any problems, feel free to [open an issue](https://github.com/is-a-dev/register/issues/new/choose). +In your PR, please explain why you need NS records, including examples, to help mitigate potential abuse. Refer to the [FAQ](https://docs.is-a.dev/faq/#who-can-use-ns-records) for guidelines on allowed usage. 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). -If you have an issue that contains confidental infomation, send an email to security@is-a.dev. +***Pull requests adding NS records without sufficient reasoning will be closed.*** + +> Also see: [Why are you so strict with NS records?](https://docs.is-a.dev/faq/#why-are-you-so-strict-with-ns-records) + +> [!NOTE] +> You can bypass these requirements[^1] by donating just $2 [here](https://wdh.gg/pvNCdvs), or via [GitHub Sponsors](https://wdh.gg/sponsor). As a thank-you, you'll also receive a special role in our [Discord server](https://discord.gg/is-a-dev-830872854677422150)! +> +> If you donate, email william@is-a.dev or DM `@williamharrison` on Discord with your receipt and PR link. + +[^1]: Requests deemed to be made with malicious intent may be denied, with a refund provided. + +## Report Abuse +If you find any subdomains being used for abusive purposes, please report them by [creating an issue](https://github.com/is-a-dev/register/issues/new?assignees=&labels=report-abuse&projects=&template=report-abuse.md&title=Report+abuse) with the relevant evidence. --- -We are proud to announce that we are fully supported by Cloudflare's [Project Alexandria](https://www.cloudflare.com/lp/project-alexandria) sponsorship program. We would not be able to operate without their help! 💖 +We are proud to announce that we are supported by Cloudflare's [Project Alexandria](https://www.cloudflare.com/lp/project-alexandria) sponsorship program. We would not be able to operate without their help! 💖 Cloudflare Logo diff --git a/SECURITY.md b/SECURITY.md index 4c96d8394..5879949ab 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,6 +1,4 @@ # Security Policy ## Reporting a vulnerability -You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repository. - -However, for **higher severity vulnerabilities and bugs**, please email security@is-a.dev. +Please report all vulnerabilities to security@is-a.dev. diff --git a/TERMS_OF_SERVICE.md b/TERMS_OF_SERVICE.md new file mode 100644 index 000000000..f8f1482ae --- /dev/null +++ b/TERMS_OF_SERVICE.md @@ -0,0 +1,79 @@ +# Terms of Service +Welcome to **is-a.dev**, a free subdomain service provided to developers and individuals. By using our service, you agree to the following Terms of Service ("Terms"). Please read them carefully. + +## 1. Acceptance of Terms +By accessing or using the is-a.dev subdomain service, you acknowledge that you have read, understood, and agree to be bound by these Terms. If you do not agree, you may not use the service. + +## 2. Eligibility +To use the is-a.dev service, you must: + +1. Be at least 13 years old. +2. Use the service for lawful purposes only. +3. Provide accurate and truthful information during the registration process. + +## 3. Service Description +The is-a.dev service allows users to register a subdomain under the "is-a.dev" domain. This service is offered "as-is" without guarantees of uptime, support, or permanence. Subdomains are intended solely for developers and non-commercial projects. Commercial use is strictly prohibited. + +We reserve the right to deny any subdomain registration request for any reason. + +## 4. Prohibited Activities +You agree not to use the is-a.dev service for: + +- Hosting illegal content, including but not limited to pirated software, malware, or copyrighted materials without authorization. +- Conducting phishing, spam, or other malicious activities. +- Promoting hate speech, violence, or discrimination. +- Impersonating individuals, organizations, or entities without consent. +- Engaging in activities that violate local, national, or international laws. +- Any commercial purposes, including advertising, selling products, or hosting e-commerce platforms. +- Online stores/shopping websites. +- Gambling websites. +- Game cheat sites. +- CDNs distributing potentially malicious content (e.g., APKs, executables). +- 'Unblocked' gaming websites. +- Alternate URLs for commonly blocked websites (e.g., gambling/casino websites). +- Websites containing 18+ content. +- Mass emailing (e.g., newsletters, mailing lists). +- File-sharing or torrenting websites distributing copyrighted material. +- Cryptocurrency mining sites or tools. +- Hacking or cybersecurity exploit websites. +- Phishing or fraudulent websites. +- Websites hosting illegal or pirated software. +- Proxy or VPN services bypassing network restrictions. +- Online services for identity theft or forgery. +- Platforms promoting self-harm or violence. +- Illegal drug marketplaces. +- Proxy sites (e.g., embedding other websites). + +Additionally, users must comply with [GitHub’s Terms of Service](https://docs.github.com/en/site-policy/github-terms/github-terms-of-service) where applicable. + +Violation of these terms may result in the immediate termination of your subdomain. + +## 5. Ownership and Intellectual Property +1. **Subdomain Ownership**: While you are granted the right to use a subdomain, ownership of the "is-a.dev" domain remains with the service provider. +2. **Content Ownership**: You retain ownership of any content you host on your subdomain. However, you grant us a license to use your subdomain registration data (e.g., DNS records) to operate the service. + +## 6. Termination of Service +We reserve the right to suspend, terminate, or revoke your subdomain at any time, for any reason, including but not limited to violations of these Terms, operational considerations, or at our sole discretion. + +## 7. Privacy +For privacy-related inquiries, please contact us at privacy@is-a.dev. We are not responsible for any data or privacy breaches resulting from the use of our service. + +## 8. Disclaimer of Warranties +The is-a.dev service is provided "as-is" and "as available." We make no warranties, expressed or implied, regarding the service’s functionality, reliability, or suitability for any particular purpose. + +## 9. Limitation of Liability +To the fullest extent permitted by law, is-a.dev and its operators shall not be liable for any direct, indirect, incidental, special, or consequential damages arising from your use or inability to use the service. + +## 10. Indemnification +You agree to indemnify and hold harmless is-a.dev, its operators, and affiliates from any claims, losses, liabilities, or expenses arising from your use of the service or violation of these Terms. + +## 11. Modification of Terms +We reserve the right to update or modify these Terms at any time. Changes will be effective immediately upon posting. Your continued use of the service constitutes acceptance of the updated Terms. + +## 12. Governing Law +These Terms are governed by and construed in accordance with the laws of Australia. Any disputes shall be resolved exclusively in the courts of Australia. + +## 13. Contact Information +For questions or concerns about these Terms, please contact us at support@is-a.dev. + +By using the is-a.dev service, you agree to these Terms of Service. diff --git a/dnsconfig.js b/dnsconfig.js index 2c80fcee4..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 + ".") ); } } @@ -153,7 +116,8 @@ var ignored = [ IGNORE("_dmarc", "TXT"), IGNORE("autoconfig", "CNAME"), IGNORE("autodiscover", "CNAME"), - IGNORE("dkim._domainkey", "TXT") + IGNORE("dkim._domainkey", "TXT"), + IGNORE("ns[1-4]", "A,AAAA"), ]; // Push TXT record of when the zone was last updated diff --git a/domains/1-train-ride-in-germany-is-300-euros.json b/domains/1-train-ride-in-germany-is-300-euros.json deleted file mode 100644 index e809964fb..000000000 --- a/domains/1-train-ride-in-germany-is-300-euros.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "owner": { - "username": "Yunexiz", - "discord": "1040303561847881729" - }, - "record": { - "A": [ - "185.199.109.153", - "185.199.108.153", - "185.199.110.153", - "185.199.111.153" - ] - } -} diff --git a/domains/1tfr.json b/domains/1tfr.json index 20975ec1c..d79fb5ceb 100644 --- a/domains/1tfr.json +++ b/domains/1tfr.json @@ -1,12 +1,11 @@ { - "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 new file mode 100644 index 000000000..35f77f4ad --- /dev/null +++ b/domains/2.json @@ -0,0 +1,10 @@ +{ + "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/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/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..867de6280 100644 --- a/domains/7z.json +++ b/domains/7z.json @@ -1,12 +1,11 @@ { - "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 new file mode 100644 index 000000000..cfac4330a --- /dev/null +++ b/domains/_atproto.hcj.json @@ -0,0 +1,10 @@ +{ + "description": "domain verification for bluesky", + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + } +} diff --git a/domains/_atproto.horibyte.json b/domains/_atproto.horibyte.json new file mode 100644 index 000000000..98cc66879 --- /dev/null +++ b/domains/_atproto.horibyte.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "horibyte", + "email": "thehoribyte@gmail.com" + }, + "record": { + "TXT": "did=did:plc:5ls3iv54vrppjxbs5ztocd75" + } +} diff --git a/domains/_atproto.jumanji.json b/domains/_atproto.jumanji.json new file mode 100644 index 000000000..d63b4e6bd --- /dev/null +++ b/domains/_atproto.jumanji.json @@ -0,0 +1,10 @@ +{ + "description": "domain verification for bluesky", + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge50@silomails.com" + }, + "record": { + "TXT": "did=did:plc:nrjpabfv3zoxd6kiwr6fs4lq" + } +} diff --git a/domains/_atproto.ligmatv.json b/domains/_atproto.ligmatv.json new file mode 100644 index 000000000..1d0d9b048 --- /dev/null +++ b/domains/_atproto.ligmatv.json @@ -0,0 +1,10 @@ +{ + "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.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.thehcj.json b/domains/_atproto.thehcj.json deleted file mode 100644 index 40a3999bd..000000000 --- a/domains/_atproto.thehcj.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "domain verification for bluesky", - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - } - } \ No newline at end of file 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.aruria.json b/domains/_discord.aruria.json new file mode 100644 index 000000000..cda1d0491 --- /dev/null +++ b/domains/_discord.aruria.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "cjolivier123" + }, + "record": { + "TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"] + } +} diff --git a/domains/_discord.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.cutedog5695.json b/domains/_discord.cutedog5695.json index 1d0239aa3..92dfb8f79 100644 --- a/domains/_discord.cutedog5695.json +++ b/domains/_discord.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "TXT": "dh=f85ce7cf4e6ff1f6136767a12c041fbbcb446045" diff --git a/domains/_discord.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.gabek.json b/domains/_discord.gabek.json deleted file mode 100644 index f72b8b148..000000000 --- a/domains/_discord.gabek.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "gabekgfx", - "email": "bussines.gabrys@gmail.com" - }, - "record": { - "TXT": "dh=02ed193dbc1e396517abe81c2c5d9a007a4a6e25" - } -} diff --git a/domains/_discord.hcj.json b/domains/_discord.hcj.json new file mode 100644 index 000000000..298d1c187 --- /dev/null +++ b/domains/_discord.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": "dh=4d34d136feda8f0fade8d9cbf34cfb3ff0adee15" + } +} diff --git a/domains/_discord.heath.json b/domains/_discord.heath.json new file mode 100644 index 000000000..7b20b22e1 --- /dev/null +++ b/domains/_discord.heath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minodab492", + "email": "heath.garvin@minodabproductions.dev" + }, + "record": { + "TXT": ["dh=5a45b7cd26a9cd21f027e4bbf1c010cac0b78204"] + } +} diff --git a/domains/_discord.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..0962f55b7 --- /dev/null +++ b/domains/_discord.jeff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PentSec", + "email": "jeffreysfu@gmail.com" + }, + "record": { + "TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824" + } +} \ No newline at end of file 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.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.niclqs.json b/domains/_discord.niclqs.json new file mode 100644 index 000000000..8a5527596 --- /dev/null +++ b/domains/_discord.niclqs.json @@ -0,0 +1,12 @@ +{ + "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" + } +} 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.osho.json b/domains/_discord.osho.json new file mode 100644 index 000000000..0c43a577b --- /dev/null +++ b/domains/_discord.osho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "record": { + "TXT": ["dh=35ca5646ff4cbe25158bef568c0e26c7224f5a61"] + } +} diff --git a/domains/_discord.privatekey.json b/domains/_discord.privatekey.json index b5925c9cf..5fc237354 100644 --- a/domains/_discord.privatekey.json +++ b/domains/_discord.privatekey.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "keydevelops", - "email": "rumaevvadim@gmail.com" - }, - "record": { - "TXT": "dh=be4a0fbe37df16fa2d25e29ec7bc4f669703a71d" - } + "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..b8e5e35c2 100644 --- a/domains/_discord.rouf0x.json +++ b/domains/_discord.rouf0x.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Roufox", - "email": "gabrielruf.fr@gmail.com", - "discord": "Roufox" - }, - "record": { - "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271" - } + "owner": { + "username": "Roufox", + "email": "gabrielruf.fr@gmail.com", + "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.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.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.thehcj.json b/domains/_discord.thehcj.json deleted file mode 100644 index 48958ca46..000000000 --- a/domains/_discord.thehcj.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "TheHCJ", - "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" - }, - "record": { - "TXT": "dh=d8213a7b69c2c71bfc2cdddc2744080847a4b0da" - } - } \ No newline at end of file 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.voxxdevv.json b/domains/_discord.voxxdevv.json new file mode 100644 index 000000000..3b379ef5b --- /dev/null +++ b/domains/_discord.voxxdevv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voxxdevv", + "email": "aminrh@icloud.com" + }, + "record": { + "TXT": "dh=6d817006952096ed75c9c1c84fab50783bad46ac" + } +} diff --git a/domains/_discord.webcubed.json b/domains/_discord.webcubed.json new file mode 100644 index 000000000..0bb35c5cb --- /dev/null +++ b/domains/_discord.webcubed.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "webcubed" + }, + "record": { + "TXT": ["dh=1612c48236f97b2a8b0fc79833cd7e46cf0c512d"] + } +} diff --git a/domains/_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.peme969.json b/domains/_dmarc.peme969.json new file mode 100644 index 000000000..c6b62d20f --- /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..c3592124b 100644 --- a/domains/_dmarc.yxz.json +++ b/domains/_dmarc.yxz.json @@ -1,12 +1,12 @@ { - "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", + "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" + ] + } } diff --git a/domains/_gh-is-a-dev-docs-o.docs.json b/domains/_gh-is-a-dev-docs-o.docs.json new file mode 100644 index 000000000..077a631e7 --- /dev/null +++ b/domains/_gh-is-a-dev-docs-o.docs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "TXT": "2aeb08f313" + } +} diff --git a/domains/_gh-is-a-dev-docs-o.json b/domains/_gh-is-a-dev-docs-o.json new file mode 100644 index 000000000..627d1c417 --- /dev/null +++ b/domains/_gh-is-a-dev-docs-o.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "TXT": "30e221e0a1" + } +} diff --git a/domains/_gh-juststudio7-o.juststudio.json b/domains/_gh-juststudio7-o.juststudio.json new file mode 100644 index 000000000..b73ca4a8b --- /dev/null +++ b/domains/_gh-juststudio7-o.juststudio.json @@ -0,0 +1,13 @@ +{ + "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..28eedd71a --- /dev/null +++ b/domains/_gh-lumidevelopment-o.lumi.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "LUMIDevelopment" + }, + "record": { + "TXT": ["eade7c5be7"] + } +} 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..1f8b2a198 --- /dev/null +++ b/domains/_github-pages-challenge-256javy.256javy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "256javy", + "email": "256javiervillalba@gmail.com" + }, + "record": { + "TXT": "5274c84dbbf074d67b53fc4305ced5" + } +} diff --git a/domains/_github-pages-challenge-abiapp789.json b/domains/_github-pages-challenge-abiapp789.json deleted file mode 100644 index 5726a4a9a..000000000 --- a/domains/_github-pages-challenge-abiapp789.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "abiapp789", - "email": "abiapp2024@gmail.com" - }, - "record": { - "TXT": "5bcd2d69c4cca15abd91d504a5b72a" - } -} diff --git a/domains/_github-pages-challenge-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-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-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-devhammed.hammed.json b/domains/_github-pages-challenge-devhammed.hammed.json new file mode 100644 index 000000000..44413c068 --- /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-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-gabekgfx.gabek.json b/domains/_github-pages-challenge-gabekgfx.gabek.json deleted file mode 100644 index 775a7b416..000000000 --- a/domains/_github-pages-challenge-gabekgfx.gabek.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "gabekgfx", - "email": "bussines.gabrys@gmail.com" - }, - "record": { - "TXT": "e9b873f6071bb8f4c1384efe52d14d" - } -} diff --git a/domains/_github-pages-challenge-cutedog5695.cutedog5695.json b/domains/_github-pages-challenge-iostpa.cutedog5695.json similarity index 66% rename from domains/_github-pages-challenge-cutedog5695.cutedog5695.json rename to domains/_github-pages-challenge-iostpa.cutedog5695.json index 251128d4e..bc809f8d4 100644 --- a/domains/_github-pages-challenge-cutedog5695.cutedog5695.json +++ b/domains/_github-pages-challenge-iostpa.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "TXT": "cd8aac10494e4b5b76656163a11508" diff --git a/domains/_github-pages-challenge-is-a-dev-docs.docs.json b/domains/_github-pages-challenge-is-a-dev-docs.docs.json new file mode 100644 index 000000000..68c26dcdc --- /dev/null +++ b/domains/_github-pages-challenge-is-a-dev-docs.docs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "admin@is-a.dev" + }, + "record": { + "TXT": "18b49a8904257ea06c3595614d9a4e" + } +} 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-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-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-l6174.l6174.json b/domains/_github-pages-challenge-l6174.l6174.json deleted file mode 100644 index 97dae4a78..000000000 --- a/domains/_github-pages-challenge-l6174.l6174.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "l6174", - "email": "l6174@proton.me" - }, - "record": { - "TXT": "239afcf7406892899a65a396dc024f" - } -} diff --git a/domains/_github-pages-challenge-manugeni.manugeni.json b/domains/_github-pages-challenge-manugeni.manugeni.json new file mode 100644 index 000000000..e19b0b538 --- /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-mohamadoday.bn3di.json b/domains/_github-pages-challenge-mohamadoday.bn3di.json new file mode 100644 index 000000000..ad61da66f --- /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-narasimapandiyan.narasima.json b/domains/_github-pages-challenge-narasimapandiyan.narasima.json new file mode 100644 index 000000000..8b779a899 --- /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-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-pentsec.jeff.json b/domains/_github-pages-challenge-pentsec.jeff.json new file mode 100644 index 000000000..fe5225e38 --- /dev/null +++ b/domains/_github-pages-challenge-pentsec.jeff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PentSec", + "email": "jeffreysfu@gmail.com" + }, + "record": { + "TXT": "c1f0e5d392a06b64a632b42f794b1a" + } +} \ No newline at end of file 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..7ea91e9c2 --- /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-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-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 new file mode 100644 index 000000000..dd0dd0c64 --- /dev/null +++ b/domains/_github-pages-challenge-webcubed.webcubed.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "webcubed" + }, + "record": { + "TXT": ["d4d8fdb1fea56bbbf4470d4e6f5e40"] + } +} diff --git a/domains/_github-pages-challenge-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-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-yunexiz.ai-y.yunexiz.json b/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json deleted file mode 100644 index 5e584ec99..000000000 --- a/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "yunexiz", - "discord": "1040303561847881729" - }, - "record": { - "TXT": "44acf50d05a09c5bdcb82f64551e6c" - } -} diff --git a/domains/_github-pages-challenge-yz9551.yxz.json b/domains/_github-pages-challenge-yz9551.yxz.json index 3e6b82cd8..7e91dc657 100644 --- a/domains/_github-pages-challenge-yz9551.yxz.json +++ b/domains/_github-pages-challenge-yz9551.yxz.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "yz9551", - "email": "", - "discord": "yz9551" - }, - "record": { - "TXT": [ - "1b83953af6bc9eb40dc5ccfb434238" - ] - } + "owner": { + "username": "yz9551", + "email": "", + "discord": "yz9551" + }, + "record": { + "TXT": ["1b83953af6bc9eb40dc5ccfb434238"] + } } diff --git a/domains/_minecraft._tcp.mc.3gee.json b/domains/_minecraft._tcp.mc.3gee.json index bafac6205..692541beb 100644 --- a/domains/_minecraft._tcp.mc.3gee.json +++ b/domains/_minecraft._tcp.mc.3gee.json @@ -1,21 +1,18 @@ -{ - - "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.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.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.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.alvin.json b/domains/_vercel.alvin.json index 3ac30aa3a..73cbbec62 100644 --- a/domains/_vercel.alvin.json +++ b/domains/_vercel.alvin.json @@ -9,7 +9,9 @@ "vc-domain-verify=hive.alvin.is-a.dev,c60034f22ad745c15021", "vc-domain-verify=www.hive.alvin.is-a.dev,682186731d1f9275c277", "vc-domain-verify=chat.alvin.is-a.dev,520a1452a367459dd568", - "vc-domain-verify=www.chat.alvin.is-a.dev,df452600790ef98fd42e" + "vc-domain-verify=www.chat.alvin.is-a.dev,df452600790ef98fd42e", + "vc-domain-verify=todo.alvin.is-a.dev,08b2734d859de7c855c5", + "vc-domain-verify=www.todo.alvin.is-a.dev,affd5e1204871843ebb8" ] } } 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.app.vyductan.json b/domains/_vercel.app.vyductan.json new file mode 100644 index 000000000..6904ef7ee --- /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.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/_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.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.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.cutedog5695.json b/domains/_vercel.cutedog5695.json index 2c2a0bb11..aadb56683 100644 --- a/domains/_vercel.cutedog5695.json +++ b/domains/_vercel.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "TXT": "vc-domain-verify=vercel.cutedog5695.is-a.dev,92820276b2029f5426ec" diff --git a/domains/_vercel.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.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.deadshot.json b/domains/_vercel.deadshot.json new file mode 100644 index 000000000..8c2959e8b --- /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.dhika.json b/domains/_vercel.dhika.json new file mode 100644 index 000000000..f73592c19 --- /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" + } +} \ No newline at end of file diff --git a/domains/_vercel.ebooks.json b/domains/_vercel.ebooks.json new file mode 100644 index 000000000..440fdeaf2 --- /dev/null +++ b/domains/_vercel.ebooks.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tuannguyen2002", + "email": "", + "discord": "minhtuan9039" + }, + "record": { + "TXT": "vc-domain-verify=ebooks.is-a.dev,5fa4e0aa7b17c9f52a9d" + } +} diff --git a/domains/_vercel.fabien.json b/domains/_vercel.fabien.json new file mode 100644 index 000000000..73c8d7fb0 --- /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.felipe.json b/domains/_vercel.felipe.json new file mode 100644 index 000000000..354af504a --- /dev/null +++ b/domains/_vercel.felipe.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "felipecalderon", + "email": "hola@felipe.bio" + }, + "record": { + "TXT": ["vc-domain-verify=felipe.is-a.dev,07f2247f0a80372e5d48"] + } + } + \ No newline at end of file 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.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.guidocaru.json b/domains/_vercel.guidocaru.json new file mode 100644 index 000000000..8ce33f45b --- /dev/null +++ b/domains/_vercel.guidocaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "guidocaru", + "discord": "696554384817127486" + }, + "record": { + "TXT": "vc-domain-verify=guidocaru.is-a.dev,6106f8de674c39bfb732" + } +} diff --git a/domains/_vercel.gunman.json b/domains/_vercel.gunman.json new file mode 100644 index 000000000..c8c084f3e --- /dev/null +++ b/domains/_vercel.gunman.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MukuJhansi", + "email": "mukundagrawal800@gmail.com", + "discord": "1115658967012626542" + }, + "record": { + "TXT": ["vc-domain-verify=gunman.is-a.dev,a31e97770fb8c89e3b57"] + } +} diff --git a/domains/_vercel.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.harshshah.json b/domains/_vercel.harshshah.json new file mode 100644 index 000000000..cc345b0c9 --- /dev/null +++ b/domains/_vercel.harshshah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "harshshah-codes", + "email": "harshshah.dev@gmail.com", + "discord": "889700837520199761" + }, + "record": { + "TXT": "vc-domain-verify=harshshah.is-a.dev,42f8ad923b9e4a9aa010" + } +} diff --git a/domains/_vercel.hcj.json b/domains/_vercel.hcj.json new file mode 100644 index 000000000..e1f49df66 --- /dev/null +++ b/domains/_vercel.hcj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHCJ", + "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" + }, + "record": { + "TXT": ["vc-domain-verify=hcj.is-a.dev,010396202f45aacdad27"] + } +} diff --git a/domains/_vercel.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.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.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.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.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.jorge-lopz.json b/domains/_vercel.jorge-lopz.json new file mode 100644 index 000000000..551776f98 --- /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.juan-morales.json b/domains/_vercel.juan-morales.json new file mode 100644 index 000000000..c74476673 --- /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.jumanji.json b/domains/_vercel.jumanji.json index d82ad7099..cf5987dea 100644 --- a/domains/_vercel.jumanji.json +++ b/domains/_vercel.jumanji.json @@ -1,8 +1,9 @@ { - "owner": { - "username": "heyjumanji" - }, - "record": { - "TXT": ["vc-domain-verify=blog.jumanji.is-a.dev,27db21bc7b1a8b952003"] - } + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge50@silomails.com" + }, + "record": { + "TXT": "vc-domain-verify=jumanji.is-a.dev,291766e76a7ab5de1bc7" + } } diff --git a/domains/_vercel.justwinstuff.json b/domains/_vercel.justwinstuff.json new file mode 100644 index 000000000..e93831283 --- /dev/null +++ b/domains/_vercel.justwinstuff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "enderfoxbg", + "discord": "970380468090437672" + }, + "record": { + "TXT": ["vc-domain-verify=justwinstuff.is-a.dev,f7737c243dc3c1080dd7"] + } +} diff --git a/domains/_vercel.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.khoacao.json b/domains/_vercel.khoacao.json new file mode 100644 index 000000000..a3ae78ba0 --- /dev/null +++ b/domains/_vercel.khoacao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khoacao2k4", + "email": "cqnhatkhoa@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=khoacao.is-a.dev,9b86aeda2d7aa9f99748"] + } +} diff --git a/domains/_vercel.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.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.lobo.json b/domains/_vercel.lobo.json new file mode 100644 index 000000000..01c0e7920 --- /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.maanripe.json b/domains/_vercel.maanripe.json new file mode 100644 index 000000000..ed7cec914 --- /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..0043881ee --- /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.markasaad.json b/domains/_vercel.markasaad.json new file mode 100644 index 000000000..b9c1c5fb4 --- /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.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.mrincer.json b/domains/_vercel.mrincer.json new file mode 100644 index 000000000..31a83093c --- /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" + } +} \ No newline at end of file diff --git a/domains/_vercel.muthomi.json b/domains/_vercel.muthomi.json new file mode 100644 index 000000000..bc371aa55 --- /dev/null +++ b/domains/_vercel.muthomi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "michaelmuthomi", + "email": "", + "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..a66f070e0 --- /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" + } +} \ No newline at end of file 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.namansrivastava.json b/domains/_vercel.namansrivastava.json new file mode 100644 index 000000000..5cc5e18db --- /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.nguyenminhtuan.json b/domains/_vercel.nguyenminhtuan.json new file mode 100644 index 000000000..8a846ef4a --- /dev/null +++ b/domains/_vercel.nguyenminhtuan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tuannguyen2002", + "email": "", + "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.peme969.json b/domains/_vercel.peme969.json new file mode 100644 index 000000000..0abe61db6 --- /dev/null +++ b/domains/_vercel.peme969.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "peme969", + "email": "mrcoderpeme@gmail.com" + }, + "record": { + "TXT":[ + "vc-domain-verify=beta.peme969.is-a.dev,3478ddbc826d30476c3c" + ] + } +} \ No newline at end of file diff --git a/domains/_vercel.princeprajapati.json b/domains/_vercel.princeprajapati.json index 827de3b7f..0fd5b463f 100644 --- a/domains/_vercel.princeprajapati.json +++ b/domains/_vercel.princeprajapati.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "notreallyprince", - "email": "prince30112001@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=princeprajapati.is-a.dev,9b919407776e11ecff7a" + "owner": { + "username": "notreallyprince", + "email": "prince30112001@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=princeprajapati.is-a.dev,f0d9843f925488ed34bb" } -} +} \ No newline at end of file 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.raghu.json b/domains/_vercel.raghu.json new file mode 100644 index 000000000..01d30a211 --- /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.ranjityadav.json b/domains/_vercel.ranjityadav.json new file mode 100644 index 000000000..1629bcb21 --- /dev/null +++ b/domains/_vercel.ranjityadav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "13yadav", + "email": "yadavranjit521@gmail.com", + "discord": "529604454908035083" + }, + "record": { + "TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43" + } +} diff --git a/domains/_vercel.rashed.json b/domains/_vercel.rashed.json new file mode 100644 index 000000000..0cc4de9b5 --- /dev/null +++ b/domains/_vercel.rashed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rashed360", + "email": "ruman.rush+isadev@gmail.com" + }, + "record": { + "TXT": ["vc-domain-verify=rashed.is-a.dev,b900d35114e0f3394b8c"] + } +} diff --git a/domains/_vercel.renzcole.json b/domains/_vercel.renzcole.json new file mode 100644 index 000000000..62940b594 --- /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.ronaldo.json b/domains/_vercel.ronaldo.json new file mode 100644 index 000000000..59dcce99d --- /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.ryanbaig.json b/domains/_vercel.ryanbaig.json new file mode 100644 index 000000000..0e7a80730 --- /dev/null +++ b/domains/_vercel.ryanbaig.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "RyanBaig" + }, + "record": { + "TXT": ["vc-domain-verify=ryanbaig.is-a.dev,6611c040f39e1689070b"] + } +} diff --git a/domains/_vercel.samirkhanal.json b/domains/_vercel.samirkhanal.json new file mode 100644 index 000000000..c089a90bd --- /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..df08f3129 --- /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" + } + } \ No newline at end of file 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.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.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..cbb01c6af --- /dev/null +++ b/domains/_vercel.skibidi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bananaking6", + "email": "", + "discord": "skibidibagel" + }, + "record": { + "TXT": "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d" + } +} diff --git a/domains/_vercel.snowy.json b/domains/_vercel.snowy.json new file mode 100644 index 000000000..4810ff204 --- /dev/null +++ b/domains/_vercel.snowy.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "HayBael" + }, + "record": { + "TXT": ["vc-domain-verify=snowy.is-a.dev,710433a43c7209070848"] + } +} diff --git a/domains/_vercel.sun.json b/domains/_vercel.sun.json new file mode 100644 index 000000000..c41aa041b --- /dev/null +++ b/domains/_vercel.sun.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sxn4y", + "email": "", + "discord": "5unn7n" + }, + "record": { + "TXT": "vc-domain-verify=sun.is-a.dev,3d30eed3d9b17b680b03" + } +} diff --git a/domains/_vercel.swami.json b/domains/_vercel.swami.json new file mode 100644 index 000000000..debf61bf7 --- /dev/null +++ b/domains/_vercel.swami.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "aadltya" + }, + "record": { + "TXT": ["vc-domain-verify=swami.is-a.dev,ebd6de23b5512663a728"] + } +} diff --git a/domains/_vercel.usmanbaig.json b/domains/_vercel.usmanbaig.json new file mode 100644 index 000000000..2cc27102c --- /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" + } + } \ No newline at end of file diff --git a/domains/_vercel.vantage.json b/domains/_vercel.vantage.json index 084102fc1..f0ed414e0 100644 --- a/domains/_vercel.vantage.json +++ b/domains/_vercel.vantage.json @@ -1,13 +1,11 @@ { - "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", + "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"] + } } diff --git a/domains/_vercel.vyductan.json b/domains/_vercel.vyductan.json new file mode 100644 index 000000000..7088311dc --- /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..d272bf08b --- /dev/null +++ b/domains/_vercel.wallsified.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wallsified", + "email": "danielparedes@ciencias.unam.mx", + "discord": "" + }, + "record": { + "TXT": "vc-domain-verify=wallsified.is-a.dev,a6e231e5e5b6733aba43" + } +} diff --git a/domains/_vercel.willymateo.json b/domains/_vercel.willymateo.json new file mode 100644 index 000000000..e04aa1f68 --- /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/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/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..14c416640 --- /dev/null +++ b/domains/aaronfort.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation website for Aaron Fort", + "repo": "https://github.com/AaronFortG", + "owner": { + "username": "AaronFortG", + "email": "aaronfortg@gmail.com" + }, + "record": { + "CNAME": "mycurriculum.salleurl.edu" + } +} \ No newline at end of file diff --git a/domains/aasoft.json b/domains/aasoft.json new file mode 100644 index 000000000..7a1b6c67c --- /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/abdelghani.json b/domains/abdelghani.json index 37b3275b7..8c01127ca 100644 --- a/domains/abdelghani.json +++ b/domains/abdelghani.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "abdessattar23", - "discord": "1226143665567567954", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.eU0sigYFTiUmRSsjTm8HIpmuwsrshbwh3EHiAN0We7TPTvlwMZxh3Yf7G9dkLOygXKomX08LOA1ELcJB9vK2OWbbK2k6fOJQQCKr6S7pV9ZU4HifKGXPxQKoPAmo72Zqenp9PBZ0USq0j05eprWD5deGY3YvW_L6o38wcDJdSD2k8ivwPFxvY3PUA1ntL8tHVAhq-oMPXUVXVpsHjZqDGbatQEHyUe0vQhc7dbmJF5HlvRVXOw3M-1EQmBURw_5tEAKDxZSzn2G0zu2hGnzT_vqgi-OAu9cSM1br4ytgLbUHG1VnuU9VQtEXLF1Rvp8aWPUwxq_1ojm07mzXBChM4g.JuGnrwrSF9PLG44nC_dtRA.Lb1j-9z9OQiV-bS8d0vSFUqV367FZpYp2wZmKlodkAagnu8suFiGz2DzxT086wdpucbFOCRJD4l1jjBVcNDq7R12hdcpu5_o-zh8r5JwpbDVyjC4Mjdxs4hLpwZH5OEp.OmkfnGL8CjO_8IJtjAfnwQ" - }, + "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" - } - } + "record": { + "CNAME": "king255-del.github.io" + } +} diff --git a/domains/abdi.json b/domains/abdi.json new file mode 100644 index 000000000..4734115bf --- /dev/null +++ b/domains/abdi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abdiopp", + "email": "ginnieabdullah007@gmail.com" + }, + "record": { + "CNAME": "abdi-portfolio.web.app" + } + } + \ No newline at end of file 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/abineethan.json b/domains/abineethan.json new file mode 100644 index 000000000..8974b1073 --- /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/account.juststudio.json b/domains/account.juststudio.json new file mode 100644 index 000000000..0e9c53ba8 --- /dev/null +++ b/domains/account.juststudio.json @@ -0,0 +1,11 @@ +{ + "description": "It will be redirect to accounts.juststudio.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "CNAME": "juststudio-account.web.app" + } +} diff --git a/domains/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/adib.json b/domains/adib.json new file mode 100644 index 000000000..eaec424cc --- /dev/null +++ b/domains/adib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adib23704", + "email": "adib23704@gmail.com" + }, + "record": { + "URL": "https://adib23704.com" + } +} diff --git a/domains/adithyapaib.json b/domains/adithyapaib.json new file mode 100644 index 000000000..c422eddee --- /dev/null +++ b/domains/adithyapaib.json @@ -0,0 +1,13 @@ +{ + "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" + } + } + \ No newline at end of file diff --git a/domains/adrianqr.json b/domains/adrianqr.json new file mode 100644 index 000000000..7fc598c3d --- /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/aespada.json b/domains/aespada.json new file mode 100644 index 000000000..524a967b1 --- /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" + } +} \ No newline at end of file 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/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/ahmedeldin.json b/domains/ahmedeldin.json deleted file mode 100644 index cc2ba7a1d..000000000 --- a/domains/ahmedeldin.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Portfolio Website", - "owner": { - "username": "ahmed-eldin", - "email": "ahmedeldin98@gmail.com" - }, - "record": { - "CNAME": "ahmed-eldin.github.io" - } -} diff --git a/domains/ahyalfan.json b/domains/ahyalfan.json new file mode 100644 index 000000000..868823761 --- /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/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/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/akira.json b/domains/akira.json new file mode 100644 index 000000000..db31f3514 --- /dev/null +++ b/domains/akira.json @@ -0,0 +1,11 @@ +{ + "description": "Akira's Dev Webpage", + "repo": "https://github.com/cakira/cakira.github.io.git", + "owner": { + "username": "cakira", + "email": "cleber.akira@gmail.com" + }, + "record": { + "CNAME": "cakira.github.io" + } +} diff --git a/domains/akiraxd.json b/domains/akiraxd.json deleted file mode 100644 index cd01cd838..000000000 --- a/domains/akiraxd.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "akiraxdxd", - "email": "ekereymen451+645675476345635573454309@gmail.com", - "discord": "1241059919377989695" - }, - "record": { - "CNAME": "akiraxdxd.github.io" - } -} diff --git a/domains/akk1to.json b/domains/akk1to.json index 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/akzana.json b/domains/akzana.json new file mode 100644 index 000000000..d8fefc099 --- /dev/null +++ b/domains/akzana.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Site for Akzana. I want to host small projects on Akzana.Is-A.Dev to showcase my software engineering skills.", + "repo": "https://github.com/akzana/akzana.github.io", + "owner": { + "username": "akzana", + "email": "akzanaklepsch@outlook.com" + }, + "record": { + "CNAME": "akzana.github.io" + } +} diff --git a/domains/al-bagra.json b/domains/al-bagra.json deleted file mode 100644 index 45f5a05d1..000000000 --- a/domains/al-bagra.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "UtsaVy", - "email": "utsavk681@gmail.com" - }, - "record": { - "CNAME": "utsav.github.io" - } -} diff --git a/domains/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-smith.json b/domains/alan-smith.json index c1cc6c8df..ea72e2a79 100644 --- a/domains/alan-smith.json +++ b/domains/alan-smith.json @@ -1,11 +1,11 @@ { - "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", + "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" + } } 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/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/alemi.json b/domains/alemi.json new file mode 100644 index 000000000..d9ab7c13e --- /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/alexandre-machado.json b/domains/alexandre-machado.json new file mode 100644 index 000000000..4c7d9afd5 --- /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" + } +} \ No newline at end of file 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/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..6736be273 --- /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/alvindennis.json b/domains/alvindennis.json index 2605e68a7..ee7783f80 100644 --- a/domains/alvindennis.json +++ b/domains/alvindennis.json @@ -1,10 +1,10 @@ { - "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/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/amirhossein-esanezhad.json b/domains/amirhossein-esanezhad.json deleted file mode 100644 index 868b32dab..000000000 --- a/domains/amirhossein-esanezhad.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "esa-zz", - "email": "amirhossein6055@gmail.com" - }, - "record": { - "A": ["51.38.127.41"] - } -} diff --git a/domains/amjad.json b/domains/amjad.json deleted file mode 100644 index 81953551c..000000000 --- a/domains/amjad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/amjadAH/amjadAH.github.io", - "owner": { - "username": "amjadAH", - "email": "amjad_ah_@hotmail.com", - "tiwtter": "amjad_ah_" - }, - "record": { - "CNAME": "amjadah.github.io" - } -} diff --git a/domains/ammar.json b/domains/ammar.json new file mode 100644 index 000000000..b8af925a9 --- /dev/null +++ b/domains/ammar.json @@ -0,0 +1,11 @@ +{ + "description": "Ammar's personal website", + "repo": "https://github.com/Ammaryasser1998/ammaryasser1998.github.io", + "owner": { + "username": "Ammaryasser1998", + "email": "amyss1910@gmail.com" + }, + "record": { + "CNAME": "ammaryasser1998.github.io" + } +} diff --git a/domains/anbuinfosec.json b/domains/anbuinfosec.json index 781f9dcaa..b9a26f6f2 100644 --- a/domains/anbuinfosec.json +++ b/domains/anbuinfosec.json @@ -1,10 +1,6 @@ { - "description": "Portfolio for anbuinfosec..", - "repo": "https://github.com/anbuinfosec/anbuinfosec.github.io", "owner": { - "username": "anbuinfosec", - "email": "anbuinfosec@gmail.com", - "twitter": "" + "username": "anbuinfosec" }, "record": { "CNAME": "anbuinfosec.github.io" diff --git a/domains/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/anger.json b/domains/anger.json deleted file mode 100644 index 3db92ec84..000000000 --- a/domains/anger.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Will be used to show my page showing stuff about me", - "repo": "https://github.com/angerminecraftyt/aboutme", - "owner": { - "username": "AngerminecraftYT", - "discord": "AngerMinecraftYT#3051" - }, - "record": { - "CNAME": "angerminecraftyt.github.io" - } -} diff --git a/domains/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/anibalbastiass.json b/domains/anibalbastiass.json new file mode 100644 index 000000000..f6ce6b89d --- /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/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/annant.json b/domains/annant.json new file mode 100644 index 000000000..c01c76a56 --- /dev/null +++ b/domains/annant.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ThatNerdyKun", + "discord": "629851641579044874" + }, + + "record": { + "CNAME": "annant.pages.dev" + } +} 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/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/anuraglimbu.json b/domains/anuraglimbu.json new file mode 100644 index 000000000..772c14094 --- /dev/null +++ b/domains/anuraglimbu.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain is for my personal portfolio website.", + "repo": "https://github.com/anuraglimbu", + "owner": { + "username": "auraglimbu", + "email": "anuraglimbu2018@gmail.com" + }, + "record": { + "URL": "https://anuraglimbu.com.np" + } +} diff --git a/domains/aocsa.json b/domains/aocsa.json new file mode 100644 index 000000000..35a2d6f1e --- /dev/null +++ b/domains/aocsa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aocsa", + "email": "alexander.ocsa@gmail.com" + }, + "record": { + "CNAME": "aocsa.github.io" + } +} \ No newline at end of file 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.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.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-giua.json b/domains/app-giua.json new file mode 100644 index 000000000..26d28e91c --- /dev/null +++ b/domains/app-giua.json @@ -0,0 +1,11 @@ +{ + "description": "Giua-App è l'applicazione non ufficiale dei registri elettronici giua@school", + "repo": "https://github.com/Milanstarkk/Giua-App", + "owner": { + "username": "Milanstarkk", + "email": "milanstark09yt@gmail.com" + }, + "record": { + "CNAME": "milanstarkk.github.io" + } +} diff --git a/domains/app.vyductan.json b/domains/app.vyductan.json new file mode 100644 index 000000000..b824e266a --- /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/ardox.json b/domains/ardox.json deleted file mode 100644 index 24d080fbb..000000000 --- a/domains/ardox.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "LeVraiArdox", - "email": "adrian.arjoca18@gmail.com" - }, - "record": { - "CNAME": "levraiardox.github.io" - } -} diff --git a/domains/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/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/arson.json b/domains/arson.json new file mode 100644 index 000000000..3935fc0e3 --- /dev/null +++ b/domains/arson.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Smartlinuxcoder", + "email": "smartcoder@linuxmail.org", + "discord": "694986201739952229" + }, + "record": { + "NS": ["ignacio.ns.cloudflare.com", "nicole.ns.cloudflare.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/aruria.json b/domains/aruria.json new file mode 100644 index 000000000..31b173665 --- /dev/null +++ b/domains/aruria.json @@ -0,0 +1,13 @@ +{ + "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/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/ashikmuhammed.json b/domains/ashikmuhammed.json index 9a7c933cf..92de684d9 100644 --- a/domains/ashikmuhammed.json +++ b/domains/ashikmuhammed.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/professorSergioMarquina/professorSergioMarquina.github.io", - "owner": { - "username": "professorSergioMarquina", - "email": "mrjinnoftg@gmail.com" - }, - "record": { - "CNAME": "professorsergiomarquina.github.io" - }, - "proxied": true + "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/ashl3y.json b/domains/ashl3y.json deleted file mode 100644 index 7b97aacb9..000000000 --- a/domains/ashl3y.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My personal developer portfolio.", - "repo": "https://github.com/ashl3ycodes/ashl3ycodes.github.io", - "owner": { - "username": "ashl3ycodes", - "email": "ashl3ycodes@protonmail.com", - "twitter": "ashl3ycodes" - }, - "record": { - "CNAME": "ashl3ycodes.github.io" - } -} diff --git a/domains/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..465f0f759 --- /dev/null +++ b/domains/aswin-m-v.json @@ -0,0 +1,12 @@ + +{ + "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/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/auras.json b/domains/auras.json deleted file mode 100644 index abb5350e6..000000000 --- a/domains/auras.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "agnesmonret", - "email": "agnesmoret@proton.me", - "discord": "694917200720429066" - }, - "record": { - "CNAME": "agnesmonret.github.io" - } -} diff --git a/domains/awais.json b/domains/awais.json new file mode 100644 index 000000000..8674395ab --- /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/axioris.json b/domains/axioris.json new file mode 100644 index 000000000..e4f04f53e --- /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..26071f6d0 100644 --- a/domains/axo.json +++ b/domains/axo.json @@ -1,12 +1,11 @@ { - "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/aynonyme.json b/domains/aynonyme.json index a7e2709de..66a84dbb0 100644 --- a/domains/aynonyme.json +++ b/domains/aynonyme.json @@ -6,6 +6,6 @@ "email": "aynonyme@proton.me" }, "record": { - "A": ["93.95.117.183"] + "A": ["69.30.249.53"] } } 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/banana.json b/domains/banana.json deleted file mode 100644 index de86f28d1..000000000 --- a/domains/banana.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "banana's website", - "repo": "https://github.com/BANanaD3V/bananadev-ml", - "owner": { - "username": "BANanaD3V", - "email": "banana@bananadev.ml" - }, - "record": { - "CNAME": "bananad3v.github.io" - } -} diff --git a/domains/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/beta.peme969.json b/domains/beta.peme969.json new file mode 100644 index 000000000..759e1dc8f --- /dev/null +++ b/domains/beta.peme969.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "peme969", + "email": "mrcoderpeme@gmail.com" + }, + "record": { + "CNAME":"beta-nine-taupe.vercel.app" + } +} 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..0b41919b5 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" + } } 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/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.sanooj.json b/domains/blog.sanooj.json deleted file mode 100644 index aca9695ac..000000000 --- a/domains/blog.sanooj.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Sanoojes", - "email": "sanoojes6371@gmail.com" - }, - "record": { - "CNAME": "sanoojes.github.io" - } -} diff --git a/domains/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..ddb995f26 --- /dev/null +++ b/domains/boo.json @@ -0,0 +1,12 @@ +{ + "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": ["191.101.148.239"] + } + } + \ No newline at end of file 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..5245ccf27 --- /dev/null +++ b/domains/borismoreno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "borismoreno", + "email": "boris_marco_moreno@hotmail.com" + }, + "record": { + "CNAME": "borismoreno.com" + } +} \ No newline at end of file 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..f7f82317a --- /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/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/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/bundler.skibidi.json b/domains/bundler.skibidi.json new file mode 100644 index 000000000..2e21d7501 --- /dev/null +++ b/domains/bundler.skibidi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bananaking6", + "email": "", + "discord": "skibidibagel" + }, + "record": { + "CNAME": "sandpack-jet.vercel.app" + } +} 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..16ce509a3 100644 --- a/domains/caenjones.json +++ b/domains/caenjones.json @@ -1,12 +1,12 @@ { "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", + "username": "vcc3v", "email": "cj@caenjones.com", "twitter": "" }, "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/carmelo.json b/domains/carmelo.json deleted file mode 100644 index d2c332114..000000000 --- a/domains/carmelo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Carmelo Velardo", - "repo": "https://github.com/2dvisio/2dvisio.github.io", - "owner": { - "username": "2dvisio", - "twitter": "2dvisio" - }, - "record": { - "CNAME": "2dvisio.github.io" - } -} diff --git a/domains/carterrpham23.json b/domains/carterrpham23.json new file mode 100644 index 000000000..d5809bfb2 --- /dev/null +++ b/domains/carterrpham23.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sonpt-afk", + "email": "sonbappe89@gmail.com" + }, + "record": { + "CNAME": "sonpts-landingfolio.vercel.app" + } + } + \ No newline at end of file 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/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/chromesec.json b/domains/chromesec.json index 5554d73f5..711512fc0 100644 --- a/domains/chromesec.json +++ b/domains/chromesec.json @@ -1,12 +1,12 @@ { - "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", + "twitter": "" + }, + "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/mail.whine.json b/domains/clarenisme.json similarity index 59% rename from domains/mail.whine.json rename to domains/clarenisme.json index c90d733db..ed3477f52 100644 --- a/domains/mail.whine.json +++ b/domains/clarenisme.json @@ -1,9 +1,8 @@ { "owner": { - "username": "whinee", - "twitter": "whi_nyaan" + "username": "razelleclaren", + "email": "gracela.claren1@gmail.com" }, - "description": "whi_ne's mail subdomain", "record": { "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" diff --git a/domains/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 new file mode 100644 index 000000000..fe05c2050 --- /dev/null +++ b/domains/clipping.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "hazelvert" + }, + "record": { + "CNAME": "hazelvert.github.io" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..7ce8810b1 --- /dev/null +++ b/domains/co.ligmatv.json @@ -0,0 +1,14 @@ +{ + "description": "This sub-subdomain will i use for my Zoho email.", + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "record": { + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"], + "TXT": [ + "zoho-verification=zb21447312.zmverify.zoho.com", + "v=spf1 include:zoho.com ~all" + ] + } +} diff --git a/domains/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/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/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/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/crpaiz.json b/domains/crpaiz.json new file mode 100644 index 000000000..7d57ba8fd --- /dev/null +++ b/domains/crpaiz.json @@ -0,0 +1,10 @@ +{ + "$schema": "../schemas/domain.json", + "owner": { + "username": "CristopherPaiz", + "email": "choperpaiz1@gmail.com" + }, + "record": { + "CNAME": "crpaiz.netlify.app" + } +} 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/cutedog5695.json b/domains/cutedog5695.json index 87f0cea66..fa85df0c6 100644 --- a/domains/cutedog5695.json +++ b/domains/cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "A": ["89.106.200.1"], diff --git a/domains/cvrvmebj6qss.bteamapp.json b/domains/cvrvmebj6qss.bteamapp.json 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/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/danielzambrano.json b/domains/danielzambrano.json new file mode 100644 index 000000000..8372b3402 --- /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/" + } +} \ No newline at end of file diff --git a/domains/dano.json b/domains/dano.json deleted file mode 100644 index 5a8e0e933..000000000 --- a/domains/dano.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Dano's resume", - "repo": "https://github.com/dano-syrus/dano-syrus.github.io", - "owner": { - "username": "dano-syrus", - "email": "danosyrus@tuta.io", - "discord": "dano#6811" - }, - "record": { - "CNAME": "dano-syrus.github.io" - } -} diff --git a/domains/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/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/data.accounts.juststudio.json b/domains/data.accounts.juststudio.json new file mode 100644 index 000000000..b0f3eb83b --- /dev/null +++ b/domains/data.accounts.juststudio.json @@ -0,0 +1,11 @@ +{ + "description": "For account system's database", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "CNAME": "juststudio-account.web.app" + } +} diff --git a/domains/davechbga.json b/domains/davechbga.json new file mode 100644 index 000000000..944c0a0ce --- /dev/null +++ b/domains/davechbga.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "davechbga", + "email": "davechbga@gmail.com" + }, + "record": { + "CNAME": "davechbga.vercel.app" + } +} diff --git a/domains/davemp.json b/domains/davemp.json new file mode 100644 index 000000000..04daa84ce --- /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" + } +} \ No newline at end of file diff --git a/domains/dawnbreaker.json b/domains/dawnbreaker.json index 92b0a6e03..aaca4345d 100644 --- a/domains/dawnbreaker.json +++ b/domains/dawnbreaker.json @@ -4,6 +4,6 @@ "email": "dawnbreaker0013@gmail.com" }, "record": { - "A": ["34.168.171.130"] + "A": ["35.199.176.130"] } } diff --git a/domains/de.whine.json b/domains/de.whine.json deleted file mode 100644 index 25b3d7131..000000000 --- a/domains/de.whine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "whinee", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's deno subdomain", - "record": { - "A": ["34.120.54.55"], - "TXT": "deno-com-validation=572b9c00ebc922b6f8367944" - } -} diff --git a/domains/deadshot.json b/domains/deadshot.json index 87b118666..23e7c38af 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", - "owner": { - "username": "deadshotofficial", - "email": "deadshot3r@pm.me", - "twitter": "deadshot3r" - }, - "record": { - "CNAME": "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", + "discord": "416952474587496449" + }, + "record": { + "CNAME": "deadshotdev.vercel.app" + } } diff --git a/domains/default._domainkey.yxz.json b/domains/default._domainkey.yxz.json index db0fb2718..6ce67104f 100644 --- a/domains/default._domainkey.yxz.json +++ b/domains/default._domainkey.yxz.json @@ -6,9 +6,9 @@ }, "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/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..b36d00326 100644 --- a/domains/deniz.json +++ b/domains/deniz.json @@ -4,10 +4,23 @@ "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/devbx.json b/domains/devbx.json deleted file mode 100644 index 9c921ebc9..000000000 --- a/domains/devbx.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "devbx", - "email": "pangys0306@hotmail.com" - }, - "record": { - "CNAME": "devbx.github.io" - } -} diff --git a/domains/devmatei.json b/domains/devmatei.json index 55f31f084..6e3df9b17 100644 --- a/domains/devmatei.json +++ b/domains/devmatei.json @@ -1,20 +1,15 @@ { - "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" - ] - } + "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 } diff --git a/domains/dhika.json b/domains/dhika.json new file mode 100644 index 000000000..bfc71ba0b --- /dev/null +++ b/domains/dhika.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thisisdhika", + "email": "dhikaardana87@gmail.com" + }, + "record": { + "CNAME": "thisisdhika.vercel.app" + } +} \ No newline at end of file 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/dilshad.json b/domains/dilshad.json deleted file mode 100644 index 06a3542a5..000000000 --- a/domains/dilshad.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "for portfolio website", - "repo": "https://github.com/dilshad0101/portfolio.website", - "owner": { - "username": "dilshad0101", - "email": "dilshadmuhammed0101@gmail.com" - }, - "record": { - "CNAME": "dilshad0101.github.io" - } -} diff --git a/domains/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/dmc.json b/domains/dmc.json new file mode 100644 index 000000000..5b82649b2 --- /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/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/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..05604e539 --- /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/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..d7a467d09 --- /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/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/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/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/duyhung.json b/domains/duyhung.json index 0d86aa3dc..05736e1f2 100644 --- a/domains/duyhung.json +++ b/domains/duyhung.json @@ -4,6 +4,6 @@ "email": "hungwt334@gmail.com" }, "record": { - "A": ["109.228.48.107"] + "A": ["31.186.83.254"] } } 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/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..f5c93222d --- /dev/null +++ b/domains/ebooks.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tuannguyen2002", + "email": "", + "discord": "minhtuan9039" + }, + "record": { + "CNAME": "ebooks-online-opal.vercel.app" + } +} diff --git a/domains/educatedsuddenbucket.json b/domains/educatedsuddenbucket.json index d49d77c7f..e35d7591e 100644 --- a/domains/educatedsuddenbucket.json +++ b/domains/educatedsuddenbucket.json @@ -5,10 +5,7 @@ }, "record": { "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" + "185.199.108.153" ], "TXT": [ "google-site-verification=hS8B2hSz-rNk6gLRnwaZjxuJE9rCLU_25X65JsLEczE", diff --git a/domains/egor.json b/domains/egor.json new file mode 100644 index 000000000..56ea1d014 --- /dev/null +++ b/domains/egor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "egor-xyz", + "discord": "egor.xyz" + }, + "record": { + "CNAME": "egor.xyz" + } +} diff --git a/domains/ehmad.json b/domains/ehmad.json deleted file mode 100644 index 5057b013a..000000000 --- a/domains/ehmad.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "mrxehmad", - "email": "mrxehmad@naver.com" - }, - "record": { - "CNAME": "mrxehmad.github.io" - } -} diff --git a/domains/ela.json b/domains/ela.json 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/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/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/em550384.vinceale7082.json b/domains/em550384.vinceale7082.json deleted file mode 100644 index 11876b874..000000000 --- a/domains/em550384.vinceale7082.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "CNAME": "return.smtp2go.net" - } -} diff --git a/domains/em697376.yxz.json b/domains/em697376.yxz.json 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/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/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/ermal.json b/domains/ermal.json index 0b14c85c0..1d12d243e 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" - } + "owner": { + "username": "ErmalHasani", + "email": "ermalhasani15@gmail.com" + }, + "record": { + "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/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/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/fabianf4.json b/domains/fabianf4.json new file mode 100644 index 000000000..c50d834f8 --- /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..2637b381c --- /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/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/federico.json b/domains/federico.json new file mode 100644 index 000000000..1ba721c64 --- /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..dc9003f65 --- /dev/null +++ b/domains/felipe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "felipecalderon", + "email": "hola@felipe.bio" + }, + "repo": "https://github.com/felipecalderon", + "record": { + "CNAME": "porfoliofelipe.vercel.app" + } + } + diff --git a/domains/felipecampos.json b/domains/felipecampos.json new file mode 100644 index 000000000..088b17ca0 --- /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/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/frankra.json b/domains/frankra.json new file mode 100644 index 000000000..030d73215 --- /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" + } +} \ No newline at end of file diff --git a/domains/franky.json b/domains/franky.json new file mode 100644 index 000000000..2d1e8abc6 --- /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/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/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/gabek.json b/domains/gabek.json deleted file mode 100644 index faaf0b447..000000000 --- a/domains/gabek.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal Website", - "repo": "https://github.com/gabekgfx/gabekgfx.github.io", - "owner": { - "username": "gabekgfx", - "email": "bussines.gabrys@gmail.com", - "twitter": "gabek_gfx" - }, - "record": { - "CNAME": "gabekgfx.github.io" - } -} diff --git a/domains/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/ganesh-g.json b/domains/ganesh-g.json new file mode 100644 index 000000000..e033b8b6d --- /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/gary.json b/domains/gary.json new file mode 100644 index 000000000..57bd8f6e5 --- /dev/null +++ b/domains/gary.json @@ -0,0 +1,11 @@ +{ + "description": "gary site", + "repo": "https://github.com/Zach11111/garysite", + "owner": { + "username": "zach11111", + "email": "contact@garybot.dev" + }, + "record": { + "CNAME": "garylovesclimbingtreesexploringplacesandchasingbutterflies.garythecatisanadorablefelinealwaysseekingfunandadventure.site" + } +} diff --git a/domains/generic2.json b/domains/generic2.json new file mode 100644 index 000000000..72307e914 --- /dev/null +++ b/domains/generic2.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xgeneric", + "discord": "1194494419064328296", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.MTsG19pQNdLCwl95D9NzxouR4mZ-7y2uRcBVVIqCc9Tal1P0D-Qt4JsDR7K-YJWNqRZpTx3-BZzMXweeteboVNF3fDlh06XENgnd2PoxjeGZzovR9sMqn4Ngl9dpGgYsmZgWf7rTjSzzePZx5h-GbTD5mI6ysxda0zrpR-cwjKVv92Lf6T0XTCwxH10DgAXZ_CtUrDq9Sn5pO-ONbUnnRgVDqBW9unD4qSCcKOAAJurGfYfLNX8qYZWfD-Hcs_wptS8fJpjpXIGkP_JF1qsj95pG0t4Bp7hhIXeXm1jmJm2-C-WQkKdZLdBDQ1gIsDhP0fLNfmSyyy532aIbR1FDqA.qX2TYd3WzaYOeAOktSXu5A.7ojhiDUioav23zhWk7sP9yLVAfNvOxL6bTAn78ILURWTwI5pEQWJloCfImCpjwGuoteHerCQNTJLRD8Vvhvd87X6YvbCiJqRPJp77J-VeJICLN5DAFlzeCNGUX4g8c_t.VThkX88tara8h8WKOXlreg" + }, + + "record": { + "CNAME": "paulswebhelp.com" + } +} diff --git a/domains/genericx.json b/domains/genericx.json new file mode 100644 index 000000000..7d56b2a34 --- /dev/null +++ b/domains/genericx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xgeneric", + "discord": "1194494419064328296", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DNr2jxeR-0YVkAChAl4uPX31TrkGI4S8REI18sZvz4gGrL9c2LRtnnHlJfq0fMntFjAvLoD2lvb-kbjDq-INycXI0YHr-MG4YIvJmccyAmaxmtfhIqSWQc6EwMRar7mx0aE3NaOXJSKZQSpH86MVHqO4X9TZMGxkCfq9IAaXHmAVBazCNPFySzCY2jHo3LRmDFsJyTf0mWm_RwaYuPlS7__slgs2XQnWCYNP_kdMwENR7dDFVG9IjwSXQI-D12nyqquN_oM6WDg2ajfwMdbfd3aOpNkLOvAj-slpw81v2zccP040MrQJdTlN_LiMGFMqUPqNqev3lDwu-up8xDKIzQ.Fq8v4wlDvYQWahwdgcSXPQ.b_b4xs8S2pJNAPSPFJfZ6u5nMlNfAnxnm0UbH_LrqXCGIMX5ymm54wsnWFrymwp9OSqTbotZeYMFXWZlCouMxXOqrOmLHb58OJmsRZarQ0lqSOduCvFnonngL6gTpa1s.1o8XkyzrR4qKrVrinRJhzQ" + }, + + "record": { + "CNAME": "paulswebhelp.com" + } +} diff --git a/domains/generix.json b/domains/generix.json new file mode 100644 index 000000000..5ed469896 --- /dev/null +++ b/domains/generix.json @@ -0,0 +1,11 @@ +{ + "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/gg.json b/domains/gg.json new file mode 100644 index 000000000..0a7d8e227 --- /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 new file mode 100644 index 000000000..4b4e043f7 --- /dev/null +++ b/domains/ghostman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ghostMan-pac", + "email": "asifp3104@gmail.com" + }, + "record": { + "CNAME": "ghostMan-pac.github.io" + } +} diff --git a/domains/gifaldyazka.json b/domains/gifaldyazka.json deleted file mode 100644 index 3493f8b6d..000000000 --- a/domains/gifaldyazka.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Just my personal website", - "repo": "https://github.com/gifaldyazkaa/gifaldyazkaa.github.io", - "owner": { - "username": "gifaldyazkaa", - "email": "official.gifaldy@gmail.com" - }, - "record": { - "CNAME": "gifaldyazkaa.github.io" - } -} diff --git a/domains/gifflet.json b/domains/gifflet.json 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/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/gitea.vinceale7082.json b/domains/gitea.vinceale7082.json index 4f86901b5..717a9d3ea 100644 --- a/domains/gitea.vinceale7082.json +++ b/domains/gitea.vinceale7082.json @@ -6,6 +6,6 @@ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" }, "record": { - "A": ["37.183.142.194"] + "URL": "https://gitea.vinceale7082.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 new file mode 100644 index 000000000..8911738be --- /dev/null +++ b/domains/glyphtones.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "firu115", + "email": "firu-glyphtones@proton.me" + }, + "record": { + "A": ["5.75.148.17"], + "AAAA": ["2a01:04f8:0c0c:947e:0000:0000:0000:0001"] + }, + "description": "Glyphtones is a website that I made for sharing Nothing Phone ringtones that feature glyph light effects. https://nothing.tech/", + "repo": "https://github.com/Firu115/nothing_glyphtones" +} diff --git a/domains/gokul.json b/domains/gokul.json deleted file mode 100644 index b8f0b9839..000000000 --- a/domains/gokul.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal Page", - "repo": "https://github.com/gkdskp/gkdskp.github.io", - "owner": { - "username": "gkdskp", - "email": "gokuldskp@gmail.com" - }, - "record": { - "CNAME": "gkdskp.github.io" - } -} diff --git a/domains/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/grapeapplefruit.json b/domains/grapeapplefruit.json deleted file mode 100644 index db8e0dd64..000000000 --- a/domains/grapeapplefruit.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/grapeapplefruit/grapeapplefruit.github.io", - "owner": { - "username": "grapeapplefruit", - "email": "jaxenreiter957@gmail.com" - }, - "record": { - "CNAME": "grapeapplefruit.github.io" - } -} diff --git a/domains/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..485f4edc0 --- /dev/null +++ b/domains/guidocaru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "guidocaru", + "discord": "696554384817127486" + }, + "record": { + "CNAME": "guidocaru.vercel.app" + } +} diff --git a/domains/gulsah.json b/domains/gulsah.json new file mode 100644 index 000000000..a2b1f07bc --- /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/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/hammed.json b/domains/hammed.json new file mode 100644 index 000000000..8db9ef285 --- /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/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/harrison.json b/domains/harrison.json new file mode 100644 index 000000000..55dcef36b --- /dev/null +++ b/domains/harrison.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/harshd.json b/domains/harshd.json new file mode 100644 index 000000000..56aed2491 --- /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/harshshah.json b/domains/harshshah.json new file mode 100644 index 000000000..d2e6a4130 --- /dev/null +++ b/domains/harshshah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "harshshah-codes", + "email": "harshshah.dev@gmail.com", + "discord": "889700837520199761" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/hasan.json b/domains/hasan.json new file mode 100644 index 000000000..62f9df7c5 --- /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/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/hate.json b/domains/hate.json new file mode 100644 index 000000000..4b150d5ab --- /dev/null +++ b/domains/hate.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/hating.devmatei.json b/domains/hating.devmatei.json new file mode 100644 index 000000000..4b150d5ab --- /dev/null +++ b/domains/hating.devmatei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/thehcj.json b/domains/hcj.json similarity index 78% rename from domains/thehcj.json rename to domains/hcj.json index 8f312d4f1..4dd713154 100644 --- a/domains/thehcj.json +++ b/domains/hcj.json @@ -4,6 +4,6 @@ "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg" }, "record": { - "CNAME": "thehcj.github.io" + "A": ["76.76.21.21"] } } diff --git a/domains/heatblock.json b/domains/heatblock.json new file mode 100644 index 000000000..157684753 --- /dev/null +++ b/domains/heatblock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "URL": "https://heatblock.esb.is-a.dev" + } +} diff --git a/domains/heath.json b/domains/heath.json new file mode 100644 index 000000000..006fbf0a9 --- /dev/null +++ b/domains/heath.json @@ -0,0 +1,10 @@ +{ + "description": "A simple link shortener page used for the minodabproductions.dev website.", + "owner": { + "username": "minodab492", + "email": "heath.garvin@minodabproductions.dev" + }, + "record": { + "CNAME": "mdp-linkshortener.pages.dev" + } +} diff --git a/domains/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/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/hongson.json b/domains/hongson.json index 44d0ed479..67d32b7d2 100644 --- a/domains/hongson.json +++ b/domains/hongson.json @@ -1,12 +1,11 @@ { - "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/hotfix.saftec.json b/domains/hotfix.saftec.json deleted file mode 100644 index 1b5d366c3..000000000 --- a/domains/hotfix.saftec.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } -} diff --git a/domains/houloude9.json b/domains/houloude9.json new file mode 100644 index 000000000..b812b452c --- /dev/null +++ b/domains/houloude9.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Houloude9IOfficial" + }, + "record": { + "CNAME": "houloude9.pages.dev" + } +} diff --git a/domains/hsn.json b/domains/hsn.json new file mode 100644 index 000000000..80a8ce99e --- /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/hung319.json b/domains/hung319.json new file mode 100644 index 000000000..3cc16e42c --- /dev/null +++ b/domains/hung319.json @@ -0,0 +1,10 @@ +{ + "description": "hung319 profile", + "owner": { + "username": "hung319", + "email": "hungh6122@gmail.com" + }, + "record": { + "CNAME": "hung319.github.io" + } +} diff --git a/domains/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/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/imlauera.json b/domains/imlauera.json deleted file mode 100644 index 494048efe..000000000 --- a/domains/imlauera.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "imlauera", - "email": "suurrend3r@gmail.com" - }, - "record": { - "CNAME": "imlauera.github.io" - } -} diff --git a/domains/imran.json b/domains/imran.json deleted file mode 100644 index 834373c01..000000000 --- a/domains/imran.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "imranmollajoy", - "email": "imranmollajoy@gmail.com" - }, - "record": { - "CNAME": "imranmollajoy.github.io" - } -} diff --git a/domains/iostpa.json b/domains/iostpa.json new file mode 100644 index 000000000..e3792dc3a --- /dev/null +++ b/domains/iostpa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "iostpa", + "discord": "716306888492318790", + "twitter": "iostpa" + }, + "record": { + "URL": "https://iostpa.com" + } +} diff --git a/domains/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/ishh.json b/domains/ishh.json index d4ef01652..6ac82e27e 100644 --- a/domains/ishh.json +++ b/domains/ishh.json @@ -6,6 +6,8 @@ "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/isturiz.json b/domains/isturiz.json new file mode 100644 index 000000000..7eec194f1 --- /dev/null +++ b/domains/isturiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "isturiz", + "email": "" + }, + "record": { + "CNAME": "isturiz.vercel.app" + } +} diff --git a/domains/itsmepvr.json b/domains/itsmepvr.json new file mode 100644 index 000000000..e5f5ce90a --- /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/ivo.json b/domains/ivo.json new file mode 100644 index 000000000..36cf1be60 --- /dev/null +++ b/domains/ivo.json @@ -0,0 +1,14 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/ifayala", + "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/j.json b/domains/j.json index 9469a066e..49769b580 100644 --- a/domains/j.json +++ b/domains/j.json @@ -7,6 +7,13 @@ "discord": "1117482901353812088" }, "record": { - "CNAME": "juststudio7.github.io" + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] } } diff --git a/domains/jabbdev.json b/domains/jabbdev.json new file mode 100644 index 000000000..ff2e396cf --- /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/jackiso.json b/domains/jackiso.json deleted file mode 100644 index 0139cf692..000000000 --- a/domains/jackiso.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "JaCkIsO is a Developer!", - "owner": { - "username": "JaCkIsO", - "email": "jackisodev@gmail.com" - }, - "record": { - "CNAME": "jackiso.github.io" - } -} diff --git a/domains/jaennova.json b/domains/jaennova.json new file mode 100644 index 000000000..6168c9db2 --- /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..70684c460 --- /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" + } + } \ No newline at end of file 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/jasondevgm.json b/domains/jasondevgm.json new file mode 100644 index 000000000..c3bfd4765 --- /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/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/jbmbhs.json b/domains/jbmbhs.json new file mode 100644 index 000000000..ab99ab6c1 --- /dev/null +++ b/domains/jbmbhs.json @@ -0,0 +1,11 @@ +{ + "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/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/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/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/jeremiah.json b/domains/jeremiah.json new file mode 100644 index 000000000..93bab3499 --- /dev/null +++ b/domains/jeremiah.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "1tsJeremiah", + "email": "jmatdesigns@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } +} + diff --git a/domains/jesusdmedinac.json b/domains/jesusdmedinac.json new file mode 100644 index 000000000..a12850181 --- /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" + } +} \ No newline at end of file diff --git a/domains/jeydin.json b/domains/jeydin.json deleted file mode 100644 index 38aeaf458..000000000 --- a/domains/jeydin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "I like code, but code does not like me", - "repo": "https://github.com/Jeydin/jeydin.github.io", - "owner": { - "username": "Jeydin", - "email": "JeyPham21@gmail.com" - }, - "record": { - "CNAME": "jeydin.github.io" - } -} diff --git a/domains/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/joe50097.json b/domains/joe50097.json index 7c9bf8e54..78316bf5e 100644 --- a/domains/joe50097.json +++ b/domains/joe50097.json @@ -4,8 +4,8 @@ "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/joesbrandt.json b/domains/joesbrandt.json deleted file mode 100644 index 003bd944a..000000000 --- a/domains/joesbrandt.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "joesbrandt", - "owner": { - "username": "joesbrandt", - "email": "joesbrandt@icloud.com" - }, - "record": { - "CNAME": "joesbrandt.github.io" - } -} diff --git a/domains/jojiyzo.json b/domains/jojiyzo.json new file mode 100644 index 000000000..651cd8950 --- /dev/null +++ b/domains/jojiyzo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jojipanackal", + "email": "alphaa41@protonmail.com" + }, + "record": { + "CNAME": "jojipanackal.github.io" + } +} diff --git a/domains/jonatandb.json b/domains/jonatandb.json new file mode 100644 index 000000000..ab12955cb --- /dev/null +++ b/domains/jonatandb.json @@ -0,0 +1,10 @@ +{ + "description": "This is for my personal website.", + "owner": { + "username": "jonatandb", + "email": "jonatandb@gmail.com" + }, + "record": { + "CNAME": "jonatandb.github.io" + } +} 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/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..2905547bf --- /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..5b4f456f5 --- /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/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/jqnn.json b/domains/jqnn.json new file mode 100644 index 000000000..95a1cf91a --- /dev/null +++ b/domains/jqnn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jqnn", + "email:": "contact@jqnn.studio" + }, + "record": { + "A": ["144.24.170.49"] + } +} diff --git a/domains/jretamal.json b/domains/jretamal.json new file mode 100644 index 000000000..d66b618cf --- /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..ad91c8618 --- /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/juan-morales.json b/domains/juan-morales.json new file mode 100644 index 000000000..f7cec6977 --- /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/julianwe17.json b/domains/julianwe17.json index a75522363..a3dbbc5c4 100644 --- a/domains/julianwe17.json +++ b/domains/julianwe17.json @@ -1,12 +1,11 @@ { - "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/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/juststudio.json b/domains/juststudio.json index 2eeed3689..287ea66c3 100644 --- a/domains/juststudio.json +++ b/domains/juststudio.json @@ -17,7 +17,8 @@ "TXT": [ "v=spf1 include:zohomail.eu ~all", "google-site-verification=qUvCromdvfxnS6LXzcxcha5rEsHUzBxl9nZH6sT3Dk4", - "yandex-verification: aac5928d8d57ade9" + "yandex-verification: aac5928d8d57ade9", + "yandex-verification: 75d6e8d99eae89d4" ] } } 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/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/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/karl95.json b/domains/karl95.json new file mode 100644 index 000000000..4bd4c0da0 --- /dev/null +++ b/domains/karl95.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Karel95/karldev95", + "owner": { + "username": "Karel95", + "email": "karelh2207@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/kars.json b/domains/kars.json deleted file mode 100644 index 4bd7355f8..000000000 --- a/domains/kars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website.", - "repo": "https://github.com/lean-cc/lean-cc.github.io", - "owner": { - "username": "lean-cc", - "email": "leancc3020@gmail.com" - }, - "record": { - "CNAME": "lean-cc.github.io" - } -} diff --git a/domains/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/kd.json b/domains/kd.json deleted file mode 100644 index 572be3e22..000000000 --- a/domains/kd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal Developer Website", - "repo": "https://github.com/KejdiKoci/kejdikoci.github.io", - "owner": { - "username": "KejdiKoci", - "email": "kejdikoci.mail@gmail.com" - }, - "record": { - "CNAME": "kejdikoci.github.io" - } -} diff --git a/domains/keshav.json b/domains/keshav.json new file mode 100644 index 000000000..a434464a2 --- /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/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/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/khoacao.json b/domains/khoacao.json new file mode 100644 index 000000000..e70254090 --- /dev/null +++ b/domains/khoacao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khoacao2k4", + "email": "cqnhatkhoa@gmail.com" + }, + "record": { + "CNAME": "khoa-cao-website.vercel.app" + } +} diff --git a/domains/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/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/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/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..3c4652da4 100644 --- a/domains/korigamik.json +++ b/domains/korigamik.json @@ -1,12 +1,12 @@ { - "description": "The Portfolio of KorigamiK", - "repo": "https://github.com/KorigamiK/korigamik.github.io", + "description": "goto website of KorigamiK", + "repo": "https://github.com/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/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/krish.json b/domains/krish.json deleted file mode 100644 index f0f501d88..000000000 --- a/domains/krish.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "krish858", - "email": "unknowmortal57@gmail.com", - "discord": "789102469345968131" - }, - "record": { - "CNAME": "krish858.github.io" - } -} diff --git a/domains/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/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/l6174.json b/domains/l6174.json index c3c4ae97f..db7f0b6bd 100644 --- a/domains/l6174.json +++ b/domains/l6174.json @@ -6,13 +6,6 @@ "email": "l6174@proton.me" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] } } diff --git a/domains/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/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/lautaro-molina.json b/domains/lautaro-molina.json new file mode 100644 index 000000000..9ce3aee49 --- /dev/null +++ b/domains/lautaro-molina.json @@ -0,0 +1,11 @@ +{ + "description": "json for the domain is-a.dev", + "repo": "https://github.com/LautaroMol", + "owner": { + "username": "LautaroMol", + "email": "Laumol159@gmail.com" + }, + "record": { + "URL": "https://lautaroportfolio.vercel.app/" + } +} 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/lester.json b/domains/lester.json new file mode 100644 index 000000000..ebc939b52 --- /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/lightsys32.json b/domains/lightsys32.json deleted file mode 100644 index a80725cfc..000000000 --- a/domains/lightsys32.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "not-amplify", - "email": "not.amplify.x@gmail.com", - "discord": "1202067094360035353" - }, - "record": { - "A": ["104.243.45.193"] - } -} diff --git a/domains/lime360.json b/domains/lime360.json deleted file mode 100644 index dee22033f..000000000 --- a/domains/lime360.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "lime360", - "email": "emeraldlime@protonmail.com" - }, - "record": { - "CNAME": "lime360.github.io" - } -} diff --git a/domains/link.krunch.json b/domains/link.krunch.json deleted file mode 100644 index 75476d8e7..000000000 --- a/domains/link.krunch.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "RadioactivePotato", - "discord": "krunchiekrunch._." - }, - "record": { - "CNAME": "cname.short.io" - } -} diff --git a/domains/link.vinceale7082.json b/domains/link.vinceale7082.json deleted file mode 100644 index 253d1a64a..000000000 --- a/domains/link.vinceale7082.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "CNAME": "track.smtp2go.net" - } -} diff --git a/domains/link.yxz.json b/domains/link.yxz.json 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/lioo.json b/domains/lioo.json new file mode 100644 index 000000000..673fcd59f --- /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/lobo.json b/domains/lobo.json new file mode 100644 index 000000000..a583a0216 --- /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/lonelil.json b/domains/lonelil.json deleted file mode 100644 index aac002461..000000000 --- a/domains/lonelil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This will be used for my portfolio.", - "repo": "https://github.com/lonelil/lonelil.github.io", - "owner": { - "username": "lonelil", - "discord": "lonelil#0001" - }, - "record": { - "CNAME": "lonelil.github.io" - } -} diff --git a/domains/longnt.json b/domains/longnt.json new file mode 100644 index 000000000..33b59ff66 --- /dev/null +++ b/domains/longnt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simel0", + "email": "longnt2204+dev@gmail.com" + }, + "record": { + "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"] + } +} diff --git a/domains/love.json b/domains/love.json new file mode 100644 index 000000000..56da804a4 --- /dev/null +++ b/domains/love.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zx155", + "email": "laiquanguy82@gmail.com" + }, + "record": { + "CNAME": "zx155.github.io" + } +} 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/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..e39bfe2ba --- /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..37ea9789e --- /dev/null +++ b/domains/luisgerardovillanueva.json @@ -0,0 +1,12 @@ +{ + "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" + } + + } \ No newline at end of file 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/m3o.json b/domains/m3o.json new file mode 100644 index 000000000..63c65284a --- /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/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/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/magedibrahim.json b/domains/magedibrahim.json new file mode 100644 index 000000000..234c0ff4c --- /dev/null +++ b/domains/magedibrahim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maqed", + "email": "magedibra@yahoo.com", + "discord": "272808689688248320" + }, + "record": { + "CNAME": "magedibrahim.vercel.app" + } +} diff --git a/domains/magic.json b/domains/magic.json deleted file mode 100644 index d413f2da7..000000000 --- a/domains/magic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Website for skyallaround", - "repo": "https://github.com/skyallaround/skyallaround.github.io", - "owner": { - "username": "skyallaround", - "email": "jr1264464@gmail.com" - }, - "record": { - "CNAME": "skyallaround.github.io" - } -} diff --git a/domains/maheshpaul.json b/domains/maheshpaul.json new file mode 100644 index 000000000..bde230e65 --- /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/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.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.mrstickypiston.json b/domains/mail.mrstickypiston.json index 2179d6b97..d4c2593e6 100644 --- a/domains/mail.mrstickypiston.json +++ b/domains/mail.mrstickypiston.json @@ -1,11 +1,11 @@ { - "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" - }, + "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 + "record": { + "TXT": "v=spf1 include:_spf.mailersend.net ~all" + } +} diff --git a/domains/mail.toasty.json b/domains/mail.toasty.json deleted file mode 100644 index 921d356bb..000000000 --- a/domains/mail.toasty.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "toastyyyxd", - "email": "asaeasaeasae.x10@gmail.com", - "discord": "577480703302959104" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/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/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/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/marcos.json b/domains/marcos.json new file mode 100644 index 000000000..ee2c00027 --- /dev/null +++ b/domains/marcos.json @@ -0,0 +1,11 @@ +{ + "description": "Developer portfolio", + "repo": "https://github.com/mtoranzo", + "owner": { + "username": "mtoranzo", + "email": "mtoranzo@gmail.com" + }, + "record": { + "CNAME": "mtoranzo.github.io" + } +} \ No newline at end of file diff --git a/domains/mardino.json b/domains/mardino.json new file mode 100644 index 000000000..c1b801ae9 --- /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..e13296f01 --- /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/markasaad.json b/domains/markasaad.json new file mode 100644 index 000000000..d300f8cd6 --- /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/martinvruiz.json b/domains/martinvruiz.json new file mode 100644 index 000000000..31d7a0e9a --- /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/matt-murdock.json b/domains/matt-murdock.json new file mode 100644 index 000000000..0fd6ae72b --- /dev/null +++ b/domains/matt-murdock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xr-coder", + "email": "nryadav7412@gmail.com" + }, + "record": { + "CNAME": "xr-coder.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/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/mekota.json b/domains/mekota.json deleted file mode 100644 index 056da1b64..000000000 --- a/domains/mekota.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "mikotohime", - "email": "exosk1ll.twl@gmail.com" - }, - "record": { - "A": ["194.28.226.129"] - } -} diff --git a/domains/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/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/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/michaelmuthomi.json b/domains/michaelmuthomi.json new file mode 100644 index 000000000..0c538ba37 --- /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/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/minhtuan-1.json b/domains/minhtuan-1.json new file mode 100644 index 000000000..b7f2b9ffc --- /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/minify.json b/domains/minify.json new file mode 100644 index 000000000..4b150d5ab --- /dev/null +++ b/domains/minify.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevMatei", + "email": "contact@devmatei.is-a.dev" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/minitor.json b/domains/minitor.json 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/mlsend2._domainkey.mail.mrstickypiston.json b/domains/mlsend2._domainkey.mail.mrstickypiston.json index 5f6b5488c..e52a60a2d 100644 --- a/domains/mlsend2._domainkey.mail.mrstickypiston.json +++ b/domains/mlsend2._domainkey.mail.mrstickypiston.json @@ -1,12 +1,11 @@ { - "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 + "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" + } +} 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/mostypc123.json b/domains/mostypc123.json new file mode 100644 index 000000000..7e3e28653 --- /dev/null +++ b/domains/mostypc123.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "mostypc123" + }, + "record": { + "CNAME": "mostypc123.github.io" + } +} diff --git a/domains/mrcorpz.json b/domains/mrcorpz.json deleted file mode 100644 index 18696553f..000000000 --- a/domains/mrcorpz.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Mrcorpz's Website", - "repo": "https://github.com/mrcorpz/mrcorpz.github.io", - "owner": { - "username": "mrcorpz", - "email": "mrcorpzpro@gmail.com", - "twitter": "mrcorpz" - }, - "record": { - "CNAME": "mrcorpz.github.io" - } -} diff --git a/domains/mrincer.json b/domains/mrincer.json new file mode 100644 index 000000000..feddafd67 --- /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" + } +} \ No newline at end of file diff --git a/domains/mta.mail.mrstickypiston.json b/domains/mta.mail.mrstickypiston.json index 748577693..379243411 100644 --- a/domains/mta.mail.mrstickypiston.json +++ b/domains/mta.mail.mrstickypiston.json @@ -1,12 +1,11 @@ { - "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 + "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" + } +} diff --git a/domains/mu.json b/domains/mu.json new file mode 100644 index 000000000..1e8929625 --- /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/muhammadabdullah.json b/domains/muhammadabdullah.json new file mode 100644 index 000000000..407a77bdc --- /dev/null +++ b/domains/muhammadabdullah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Abdullah9715", + "email": "muftimuhammadabdullah225@gmail.com" + }, + "record": { + "URL": "https://latest-porfolio-website.web.app" + } + } + 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..4d05dcc6d --- /dev/null +++ b/domains/muthomi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "michaelmuthomi", + "email": "", + "discord": "michaelgikunda" + }, + "record": { + "CNAME": "michael-portfolio-green.vercel.app" + } +} 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..d9fbd8a84 --- /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..eac14a170 --- /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/mzaman.json b/domains/mzaman.json new file mode 100644 index 000000000..d38ee56b5 --- /dev/null +++ b/domains/mzaman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mirzazaman", + "email": "mirzazaman828@gmail.com" + }, + "record": { + "CNAME": "zaman-portfolio.vercel.app" + } +} \ No newline at end of file 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/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..daf551898 --- /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/namansrivastava.json b/domains/namansrivastava.json new file mode 100644 index 000000000..2a10e2029 --- /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..29eb301d3 --- /dev/null +++ b/domains/narasima.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NarasimaPandiyan", + "email": "cs42059@gmail.com", + "discord": "gamingdoodle" + }, + "record": { + "CNAME": "NarasimaPandiyan.github.io" + } +} diff --git a/domains/navistar.json b/domains/navistar.json new file mode 100644 index 000000000..acf6185df --- /dev/null +++ b/domains/navistar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AShuba", + "email": "anatoliy.shuba@gmail.com" + }, + + "record": { + "A": ["138.68.159.126"] + } +} 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/neelsani.json b/domains/neelsani.json deleted file mode 100644 index 055a8cf69..000000000 --- a/domains/neelsani.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Neel Dev", - "repo": "https://github.com/neelsani/neelsani.github.io", - "owner": { - "username": "neelsani", - "email": "neel2645s@gmail.com" - }, - "record": { - "CNAME": "neelsani.github.io" - } -} diff --git a/domains/nef.json b/domains/nef.json new file mode 100644 index 000000000..5b355907d --- /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..50234a6e6 --- /dev/null +++ b/domains/neil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nxl22", + "email": "lien.dev.22@gmail.com" + }, + "record": { + "CNAME": "nxl22.github.io" + } +} \ No newline at end of file diff --git a/domains/ngqkhai.json b/domains/ngqkhai.json index 45da83466..a50fbc1d1 100644 --- a/domains/ngqkhai.json +++ b/domains/ngqkhai.json @@ -1,11 +1,11 @@ { - "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", + "repo": "", + "owner": { + "username": "ngqkhai", + "email": "nguyenquangkhai2509@gmail.com" + }, + "record": { + "URL": "https://github.com/ngqkhai" + } } diff --git a/domains/nguyenminhtuan.json b/domains/nguyenminhtuan.json new file mode 100644 index 000000000..f6d72d0e3 --- /dev/null +++ b/domains/nguyenminhtuan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tuannguyen2002", + "email": "", + "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/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/niclqs.json b/domains/niclqs.json new file mode 100644 index 000000000..5aa8d348b --- /dev/null +++ b/domains/niclqs.json @@ -0,0 +1,12 @@ +{ + "description": "niclqs.is-a.dev --> niclqs.dev", + "record": { + "URL": "https://niclqs.dev" + }, + "repo": "https://github.com/niclqsger", + "owner": { + "discord": "niclqs", + "email": "discord@push-den-weg.de", + "username": "NiclqsGER" + } +} diff --git a/domains/nicojsuarez.json b/domains/nicojsuarez.json new file mode 100644 index 000000000..75acb28f2 --- /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/nifle.json b/domains/nifle.json index e2459a572..ad944bd8c 100644 --- a/domains/nifle.json +++ b/domains/nifle.json @@ -1,13 +1,12 @@ { - "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", + "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"] + } +} diff --git a/domains/nikolas.json b/domains/nikolas.json deleted file mode 100644 index ab016d33d..000000000 --- a/domains/nikolas.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Personal Landing Page!", - "repo": "https://github.com/MuhekoNikolas/p2", - "owner": { - "username": "MuhekoNikolas", - "email": "13nikolusmuheko@gmail.com", - "twitter": "MuhekoNikolas" - }, - "record": { - "CNAME": "muhekonikolas.github.io" - } -} diff --git a/domains/nikolus.json b/domains/nikolus.json deleted file mode 100644 index 0840f61ce..000000000 --- a/domains/nikolus.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Personal Landing Page!", - "repo": "https://github.com/MuhekoNikolas/MuhekoNikolas.github.io", - "owner": { - "username": "MuhekoNikolas", - "email": "13nikolusmuheko@gmail.com", - "twitter": "MuhekoNikolas" - }, - "record": { - "CNAME": "muhekonikolas.github.io" - } -} diff --git a/domains/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/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/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/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/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/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/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..046ab477f --- /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/nyexoi.json b/domains/nyexoi.json new file mode 100644 index 000000000..d9b3d5a64 --- /dev/null +++ b/domains/nyexoi.json @@ -0,0 +1,12 @@ +{ + "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/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/okinea.json b/domains/okinea.json index c5f1904d5..2f586da5b 100644 --- a/domains/okinea.json +++ b/domains/okinea.json @@ -3,7 +3,8 @@ "repo": "https://github.com/okineadev-website", "owner": { "username": "okineadev", - "telegram": "@stadius_lucioni", + "telegram": "https://telegram.okinea.dev", + "email": "hi@okinea.dev", "discord": "okineadev" }, "record": { 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/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/osho.json b/domains/osho.json new file mode 100644 index 000000000..825030894 --- /dev/null +++ b/domains/osho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "profxadke", + "email": "xadkeg@duck.com" + }, + "record": { + "CNAME": "profxadke.github.io" + } +} diff --git a/domains/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/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/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/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/peme969.json b/domains/peme969.json index cab3805f5..daade0c2a 100644 --- a/domains/peme969.json +++ b/domains/peme969.json @@ -1,9 +1,22 @@ { - "owner": { - "username": "peme969", - "email": "mrcoderpeme@gmail.com" - }, - "record": { - "CNAME": "peme969.github.io" - } + "owner": { + "username": "peme969", + "email": "mrcoderpeme@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "TXT":[ + "forward-email=YjJhNjc0ZTA4YjVjNmRjMC02YTEyYTY4MWJiZjhhYTViODU3YjdkNDFjYzJlMWMwOWVlZjIwYzkzNmVkMDE5ZmE4Mzk2YzUzZjVkM2Y0YmVkMWIwMGM0NzQ0ZDcwMTJkYWJiZjgwNTNiZTAxM2U3YjdiNjgyNGRlNDQwOWMwN2Q2Y2YxNzliNTZkZjBiYzllODQ0MjJjMmQ0MDYxN2EwZjdiNGNkYWJkZGU3ZDgwMTc1YmQzZmMyN2VjYTI4ZjE5MjczOGE2NTk1YWNlNTIxYTM=", + "google-site-verification=AP1OTNgnMeJljiJnuxShC74Uw-ygmmvr8s_SdohPRcI" + ], + "MX":[ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ] + } } 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/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/pilagonzalez.json b/domains/pilagonzalez.json new file mode 100644 index 000000000..11fe7abd3 --- /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/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/podcodar.json b/domains/podcodar.json new file mode 100644 index 000000000..1c82e8e8a --- /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/pr.whine.json b/domains/pr.whine.json deleted file mode 100644 index 6ecd2c338..000000000 --- a/domains/pr.whine.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "whinee", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's projects' subdomain", - "record": { - "CNAME": "whnya.github.io" - } -} diff --git a/domains/prabin.json b/domains/prabin.json index 48207704a..be6412422 100644 --- a/domains/prabin.json +++ b/domains/prabin.json @@ -6,6 +6,6 @@ "email": "prabinsubedi2016@gmail.com" }, "record": { - "URL": "https://prabincankod.me" + "URL": "https://www.prabinsubedi.tech" } } diff --git a/domains/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/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/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/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/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/r00t3d.json b/domains/r00t3d.json index 59c07423e..0e81130dd 100644 --- a/domains/r00t3d.json +++ b/domains/r00t3d.json @@ -1,13 +1,11 @@ { - "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", + "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"] + } } diff --git a/domains/rafael.json b/domains/rafael.json new file mode 100644 index 000000000..2bbc8d123 --- /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/raghu.json b/domains/raghu.json new file mode 100644 index 000000000..ae3043664 --- /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/rahuldeka.json b/domains/rahuldeka.json deleted file mode 100644 index cf2e78c32..000000000 --- a/domains/rahuldeka.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "iamRahul21", - "discord": "638400369986240512", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZMyYId6tCsMQhHzUAOlANYLXeW88v_xaqFXMDdMPrqbSyX16JTShxlY0bNRfVYeRimLlJvguE6_3-gc1mROCpZ9oni5o9Qm8HxbGBe2QlxNmbgSnrn-RIt4pcbD1_uG2eD0SDOCNzypFDvEysML2oEZKYPkbKmKrngdlaBemUWrHo264DQyFquLW3D58wL-kWHUPlKHf-4yMoPGBrryoXjgBUGSH5UO6n4P7tpuWnvdWu_GV-qcW4Pnf9Rz8Ar3Zb0duzVCl3gjNplhDf-7BGrT4BJ2Hb0Pj8v7V5BidxlHw6TLX-2arnvkUFGQ-TXjAwr-rok5XHMsMU0rceZb9MQ.alqDzZf8wzEiNCDlxL1NCA.dC9TK-YXvpycR7cIeWnEXChuRKikVtMV3UqmjgMDJSZwJQMtAT2l_imAFj8cU8RRt7waSyKJJ8WusFaga33G2RMvd6KVeyrDS8cqWQMydvQ.qy4nN5DrABw1t_QsuWF3qg" - }, - "record": { - "CNAME": "iamrahul21.github.io" - } -} diff --git a/domains/rakib.json b/domains/rakib.json new file mode 100644 index 000000000..0190bf6ec --- /dev/null +++ b/domains/rakib.json @@ -0,0 +1,11 @@ +{ + "description": "for my portfolio website", + "repo": "https://github.com/rakibmia7254/portfolio", + "owner": { + "username": "rakibmia7254", + "email": "rakib4ggp@gmail.com" + }, + "record": { + "CNAME": "rakibmia7254.github.io" + } +} diff --git a/domains/rakibhossain.json b/domains/rakibhossain.json new file mode 100644 index 000000000..ec82edab9 --- /dev/null +++ b/domains/rakibhossain.json @@ -0,0 +1,11 @@ +{ + "description": "for my portfolio website", + "repo": "https://github.com/rakibmia7254/portfolio", + "owner": { + "username": "rakibmia7254", + "email": "rakib4ggp@gmail.com" + }, + "record": { + "CNAME": "rakibmia7254.github.io" + } +} diff --git a/domains/rakshit.json b/domains/rakshit.json new file mode 100644 index 000000000..85a57f51f --- /dev/null +++ b/domains/rakshit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "spuckhafte", + "email": "rakshit240405@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/raksix.json b/domains/raksix.json deleted file mode 100644 index 966d241f0..000000000 --- a/domains/raksix.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A personel blog website", - "repo": "https://github.com/Raksixoffical", - "owner": { - "username": "Raksix", - "email": "raksixoffical@gmail.com" - }, - "record": { - "A": ["138.68.111.28"] - } -} diff --git a/domains/ramakant.json b/domains/ramakant.json 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/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/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/rashed.json b/domains/rashed.json new file mode 100644 index 000000000..c6dc12fec --- /dev/null +++ b/domains/rashed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rashed360", + "email": "ruman.rush+isadev@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/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/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/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..d8ad7ef03 100644 --- a/domains/redolent.json +++ b/domains/redolent.json @@ -1,12 +1,11 @@ { - "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/region.json b/domains/region.json index b28fa3c47..f9cd5da52 100644 --- a/domains/region.json +++ b/domains/region.json @@ -1,12 +1,11 @@ { - "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/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/renzcole.json b/domains/renzcole.json new file mode 100644 index 000000000..b967a85d3 --- /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..d15d05ae2 --- /dev/null +++ b/domains/rescenic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rescenic", + "email": "admin@rescenic.my.id" + }, + "record": { + "CNAME": "rescenic.github.io" + } +} diff --git a/domains/researcx.json b/domains/researcx.json index 0cfe4cd96..297b432c8 100644 --- a/domains/researcx.json +++ b/domains/researcx.json @@ -6,6 +6,9 @@ "record": { "A": ["207.127.95.80"], "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], - "TXT": ["v=spf1 include:zoho.eu ~all"] + "TXT": [ + "v=spf1 include:zoho.eu ~all", + "oa1:xmr recipient_address=86PHZTrVFtRMqPvM4F6k5BKYz5EKD1eoTepvqpNGEcktEkQ9xuVt98biL4QzCCsENFKJP58nPTPbyB6CG33gy5FWDxacA1A; recipient_name=researcx;" + ] } } diff --git a/domains/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/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/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/roger.json b/domains/roger.json deleted file mode 100644 index 4d0d24f82..000000000 --- a/domains/roger.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Roger's website to host mostly useless projects", - "repo": "https://github.com/rogerpanza/rogerpanza.github.io", - "owner": { - "username": "rogerpanza", - "email": "rogerpanza-ed@protonmail.com", - "twitter": "rogerpanza_" - }, - "record": { - "CNAME": "rogerpanza.github.io" - } -} diff --git a/domains/rohan-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/rohanjaiswal.json b/domains/rohanjaiswal.json new file mode 100644 index 000000000..d6fd5078f --- /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/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/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/ronaldo.json b/domains/ronaldo.json new file mode 100644 index 000000000..d3f5275e6 --- /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/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/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/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/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..1fa8545be --- /dev/null +++ b/domains/ryanbaig.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "RyanBaig" + }, + "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/spicy.json b/domains/s1ow.json similarity index 54% rename from domains/spicy.json rename to domains/s1ow.json index f50b70ba4..2a21df10f 100644 --- a/domains/spicy.json +++ b/domains/s1ow.json @@ -1,13 +1,16 @@ { + "description": "! s1owmotion.0 profile page", + "repository": "https://github.com/H4iPh0ngM1enB4c/Web", "owner": { - "username": "oyepriyansh", - "email": "oyepriyansh@hotmail.com" + "username": "H4iPh0ngM1enB4c", + "email": "noobdownload2@gmail.com", + "discord": "1027559943462727740" }, "record": { "A": [ "185.199.108.153", - "185.199.109.153", "185.199.110.153", + "185.199.109.153", "185.199.111.153" ], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], diff --git a/domains/s550384._domainkey.vinceale7082.json b/domains/s550384._domainkey.vinceale7082.json deleted file mode 100644 index 38230f9c5..000000000 --- a/domains/s550384._domainkey.vinceale7082.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "VinceAle7082", - "email": "vinceale7082@gmail.com", - "discord": "1078447459900063816", - "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" - }, - "record": { - "CNAME": "dkim.smtp2go.net" - } -} diff --git a/domains/s697376._domainkey.yxz.json b/domains/s697376._domainkey.yxz.json 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/saammaaeel.json b/domains/saammaaeel.json deleted file mode 100644 index 04e9c1664..000000000 --- a/domains/saammaaeel.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "saammaaeel", - "email": "codenamesamael@gmail.com", - "twitter": "codenamesamael" - }, - "record": { - "CNAME": "saammaaeel.github.io" - } -} diff --git a/domains/saert.json b/domains/saert.json new file mode 100644 index 000000000..9a52c6583 --- /dev/null +++ b/domains/saert.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "saert3311", + "email": "jose.duarte@trinum.xyz" + }, + "record": { + "CNAME": "trinum.xyz" + } +} \ No newline at end of file diff --git a/domains/safety.json b/domains/safety.json index 2973f4f65..bae202e84 100644 --- a/domains/safety.json +++ b/domains/safety.json @@ -1,10 +1,10 @@ { - "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 deleted file mode 100644 index 1b5d366c3..000000000 --- a/domains/saftec.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Samuraiflamesf", - "email": "Samuraiflamesf@gmail.com" - }, - "record": { - "A": [ - "100.42.189.124" - ] - } -} diff --git a/domains/samirkhanal.json b/domains/samirkhanal.json new file mode 100644 index 000000000..e118b18f0 --- /dev/null +++ b/domains/samirkhanal.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "khanal-samir", + "email": "gdssamir@gmail.com" + + }, + "record": { + "CNAME": "samir-khanal-portfolio.vercel.app" + } +} diff --git a/domains/samishoukat.json b/domains/samishoukat.json new file mode 100644 index 000000000..0b683aab6 --- /dev/null +++ b/domains/samishoukat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samishoukat12", + "email": "samishoukat12@gmail.com" + }, + "record": { + "CNAME": "dev-samishoukat.vercel.app" + } + } \ No newline at end of file diff --git a/domains/samrat.json b/domains/samrat.json new file mode 100644 index 000000000..c9c453bd4 --- /dev/null +++ b/domains/samrat.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "ogsamrat" + }, + "record": { + "CNAME": "ogsamrat.github.io" + } +} diff --git a/domains/sana.json b/domains/sana.json new file mode 100644 index 000000000..936ce2b9c --- /dev/null +++ b/domains/sana.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sana-afk", + "email": "srijita3010@gmail.com" + }, + "record": { + "CNAME": "sana-afk.github.io" + } +} diff --git a/domains/sankalp.json b/domains/sankalp.json deleted file mode 100644 index 8af5afc14..000000000 --- a/domains/sankalp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Sankalp Pathak Website", - "repo": "https://github.com/k144u/k144u.github.io", - "owner": { - "username": "k144u", - "email": "pathaksankalp04@gmail.com" - }, - "record": { - "CNAME": "k144u.github.io" - } -} diff --git a/domains/sanketborade.json b/domains/sanketborade.json deleted file mode 100644 index 8ec6edfe8..000000000 --- a/domains/sanketborade.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "boradesanket13", - "email": "boradesanket13@gmail.com" - }, - "record": { - "CNAME": "boradesanket13.github.io" - } -} diff --git a/domains/santa.json b/domains/santa.json 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/sarthak-malhotra.json b/domains/sarthak-malhotra.json new file mode 100644 index 000000000..6d0eb390c --- /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/satyam.json b/domains/satyam.json new file mode 100644 index 000000000..6d0e49eb5 --- /dev/null +++ b/domains/satyam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lostboysatyam", + "email": "lostboysatyam54@gmail.com" + }, + "record": { + "NS": ["braden.ns.cloudflare.com", "diana.ns.cloudflare.com"] + } +} diff --git a/domains/sebastianriveros.json b/domains/sebastianriveros.json new file mode 100644 index 000000000..5bed8a35b --- /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/seqyu.json b/domains/seqyu.json index 1276538d5..fe4591038 100644 --- a/domains/seqyu.json +++ b/domains/seqyu.json @@ -1,12 +1,12 @@ { - "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", + "email": "", + "discord": "@seqyu." + }, + "record": { + "CNAME": "nvct-website.github.io" + } } 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/sethpython.json b/domains/sethpython.json deleted file mode 100644 index c4748789d..000000000 --- a/domains/sethpython.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "An Useless Website", - "repo": "https://github.com/SethTheDev/seththedev.github.io", - "owner": { - "username": "SethTheDev", - "email": "spccmbseth@gmail.com" - }, - "record": { - "CNAME": "seththedev.github.io" - } -} diff --git a/domains/sevinda-herath._domainkey.sevinda-herath.json b/domains/sevinda-herath._domainkey.sevinda-herath.json new file mode 100644 index 000000000..b974a12ec --- /dev/null +++ b/domains/sevinda-herath._domainkey.sevinda-herath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCAhBt3btz/Lvou5WOJo+eF4YYWNZHxX0h5vPCfcP0IVtxOcicEhpvuY8DZ86ooVAptJeXKeuXVOz0J3SkAeGu2OAPZdHwKmBXTxvIx040Qhb3plS3T1iQXj3gu8SjkZk2w6X/07iQB+KkUYD8wvAT6UUIyNugQPd74LRYpOV1pRQIDAQAB" + } +} diff --git a/domains/sevinda-herath.json b/domains/sevinda-herath.json new file mode 100644 index 000000000..73109ff2b --- /dev/null +++ b/domains/sevinda-herath.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "Sevinda-Herath", + "email": "sevindaherath@gmail.com" + }, + "record": { + "CNAME": "sevinda-herath.github.io", + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"], + "TXT": "v=spf1 include:zohomail.com ~all" + }, + "redirect_config": { + "custom_paths": { + "/github": "https://github.com/Sevinda-Herath", + "/linkedin": "https://www.linkedin.com/in/sevindaherath", + "/youtube": "https://www.youtube.com/channel/UCz3Xgf25_heOC86kxdqunkA" + } + }, + "proxied": true +} diff --git a/domains/sewt.json b/domains/sewt.json index 2c903a19a..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/shan.json b/domains/shan.json index e39234069..03348e755 100644 --- a/domains/shan.json +++ b/domains/shan.json @@ -7,7 +7,7 @@ "twitter": "lordlinux69" }, "record": { - "A": ["45.90.12.31"], + "A": ["45.90.12.31", "37.114.46.37"], "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/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/shrpp.json b/domains/shrpp.json new file mode 100644 index 000000000..0eaf6370c --- /dev/null +++ b/domains/shrpp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shrpp", + "email": "lucius.2906@gmail.com" + }, + "record": { + "URL": "https://github.com/Shrpp" + } + } \ No newline at end of file diff --git a/domains/shubhamsharma.json b/domains/shubhamsharma.json new file mode 100644 index 000000000..bce910b05 --- /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" + } + } \ No newline at end of file diff --git a/domains/shubhhh.json b/domains/shubhhh.json new file mode 100644 index 000000000..e0d64b3f0 --- /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/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/siama.json b/domains/siama.json deleted file mode 100644 index e10c1a395..000000000 --- a/domains/siama.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "siam3h", - "email": "philosiama@gmail.com" - }, - "record": { - "CNAME": "siam3h.github.io" - } -} diff --git a/domains/siamrahman.json b/domains/siamrahman.json deleted file mode 100644 index 25c6f6713..000000000 --- a/domains/siamrahman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/siamrahman000/siamrahman000.github.io", - "owner": { - "username": "siamrahman000", - "email": "s14mshell@gmail.com", - "twitter": "skillsiam" - }, - "record": { - "CNAME": "siamrahman000.github.io" - } -} diff --git a/domains/sidd.json b/domains/sidd.json new file mode 100644 index 000000000..2f9c071c1 --- /dev/null +++ b/domains/sidd.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/sidx04/sidx04.github.io", + "owner": { + "username": "sidx04", + "email": "siddpal04@gmail.com" + }, + "record": { + "CNAME": "sidx04.github.io" + } +} diff --git a/domains/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/skid.json b/domains/skid.json new file mode 100644 index 000000000..036f035b1 --- /dev/null +++ b/domains/skid.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "PlOszukiwaczDEV" + }, + "record": { + "CNAME": "website-4ej.pages.dev" + } +} diff --git a/domains/slime.json b/domains/slime.json deleted file mode 100644 index 00a7810c8..000000000 --- a/domains/slime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "purpleblueslime", - "email": "purpleblueslime@gmail.com" - }, - "record": { - "CNAME": "purpleblueslime.github.io" - } -} diff --git a/domains/smartlinuxcoder.json b/domains/smartlinuxcoder.json index d6ae1c7a0..8034acf7f 100644 --- a/domains/smartlinuxcoder.json +++ b/domains/smartlinuxcoder.json @@ -4,6 +4,6 @@ "email": "smartcoder@linuxmail.org" }, "record": { - "CNAME": "proxytwo.smartlinux.xyz" + "CNAME": "smartlinuxcoder.github.io" } } diff --git a/domains/smhemel.json b/domains/smhemel.json new file mode 100644 index 000000000..9b5a2bc60 --- /dev/null +++ b/domains/smhemel.json @@ -0,0 +1,11 @@ +{ + "description": "A Full-Stack Developer", + "repo": "https://github.com/smhemel", + "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/snowy.json b/domains/snowy.json index 8f7de18f7..bbe363e7c 100644 --- a/domains/snowy.json +++ b/domains/snowy.json @@ -1,9 +1,8 @@ { "owner": { - "username": "HayBael", - "email": "rakhakhairydarka801@gmail.com" + "username": "HayBael" }, "record": { - "URL": "https://homepage-revisiakhir.vercel.app" + "CNAME": "homepage-revisitrus.vercel.app" } } diff --git a/domains/socials.chiragnahata.json b/domains/socials.chiragnahata.json deleted file mode 100644 index 726befd50..000000000 --- a/domains/socials.chiragnahata.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "chiragnahata", - "email": "chiragnahata05@gmail.com" - }, - "record": { - "A": ["129.213.151.29"] - } -} diff --git a/domains/socordia.json b/domains/socordia.json new file mode 100644 index 000000000..8ad67b74b --- /dev/null +++ b/domains/socordia.json @@ -0,0 +1,12 @@ +{ + "description": "Documentation site for the socordia programming language", + "repo": "https://github.com/Socordia-Org/Socordia", + "owner": { + "username": "furesoft", + "email": "chris.anders@outlook.de" + }, + "record": { + "URL": "https://furesoft.gitbook.io/socordia" + }, + "proxied": false +} diff --git a/domains/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/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/sora-os.json b/domains/sora-os.json index 4ca1b2332..adeb8c7b9 100644 --- a/domains/sora-os.json +++ b/domains/sora-os.json @@ -1,12 +1,12 @@ -{ - "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", + "email": "", + "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..ae792c568 --- /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/sourav.json b/domains/sourav.json index 2a495c383..a37eacc31 100644 --- a/domains/sourav.json +++ b/domains/sourav.json @@ -3,8 +3,8 @@ "repo": "https://github.com/itzsouravkumar/itzsouravkumar.github.io", "owner": { "username": "itzsouravkumar", - "discord": "quipxninja", - "email": "oyesourav05012006@gmail.com" + "email": "", + "discord": "itz_sour4v" }, "record": { "CNAME": "itzsouravkumar.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/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/sticknologic.json b/domains/sticknologic.json new file mode 100644 index 000000000..0a6a40d50 --- /dev/null +++ b/domains/sticknologic.json @@ -0,0 +1,16 @@ +{ + "description": "Simple Portfolio and Blog Website", + "repo": "https://github.com/sticknologic", + "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..3cfa3d825 --- /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/sun.json b/domains/sun.json new file mode 100644 index 000000000..ee30e75de --- /dev/null +++ b/domains/sun.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sxn4y", + "email": "", + "discord": "5unn7n" + }, + "record": { + "CNAME": "supern0va.vercel.app" + } +} 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/swami.json b/domains/swami.json new file mode 100644 index 000000000..459fb9535 --- /dev/null +++ b/domains/swami.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/aadltya/portfolio-website", + "owner": { + "username": "aadltya", + "email": "adityaedu22@gmail.com" + }, + "record": { + "CNAME": "adityasworld.vercel.app" + } +} diff --git a/domains/vps.quincetart10.json b/domains/szn20221014._domainkey.104.json similarity index 59% rename from domains/vps.quincetart10.json rename to domains/szn20221014._domainkey.104.json index e891351c6..c6292fdf7 100644 --- a/domains/vps.quincetart10.json +++ b/domains/szn20221014._domainkey.104.json @@ -1,10 +1,10 @@ { - "description": "VPS", + "description": "DKIM", "owner": { "username": "QuinceTart10", "discord": "862644161156218891" }, "record": { - "A": ["64.226.124.11"] + "CNAME": "szn20221014._domainkey.seznam.cz" } } diff --git a/domains/szn20221014._domainkey.quincetart10.json b/domains/szn20221014._domainkey.quincetart10.json new file mode 100644 index 000000000..c6292fdf7 --- /dev/null +++ b/domains/szn20221014._domainkey.quincetart10.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "CNAME": "szn20221014._domainkey.seznam.cz" + } +} diff --git a/domains/szn20221014._domainkey.rt10.json b/domains/szn20221014._domainkey.rt10.json new file mode 100644 index 000000000..c6292fdf7 --- /dev/null +++ b/domains/szn20221014._domainkey.rt10.json @@ -0,0 +1,10 @@ +{ + "description": "DKIM", + "owner": { + "username": "QuinceTart10", + "discord": "862644161156218891" + }, + "record": { + "CNAME": "szn20221014._domainkey.seznam.cz" + } +} diff --git a/domains/t3vada.json b/domains/t3vada.json 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/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/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/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/tcxone.json b/domains/tcxone.json deleted file mode 100644 index b4adeb0d9..000000000 --- a/domains/tcxone.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal homepage", - "repo": "https://github.com/tcxone/tcxone.github.io", - "owner": { - "username": "tcxone", - "email": "tcxone@outlook.com", - "twitter": "tcxone" - }, - "record": { - "CNAME": "tcxone.github.io" - } -} diff --git a/domains/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/test.cutedog5695.json b/domains/test.cutedog5695.json index 3fb45aabe..a7f05a227 100644 --- a/domains/test.cutedog5695.json +++ b/domains/test.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "CNAME": "glistening-faloodeh-84f4b1.netlify.app" diff --git a/domains/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/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/this.json b/domains/this.json deleted file mode 100644 index 436e7afb0..000000000 --- a/domains/this.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "is-a.dev subdomain for my portfolio", - "repo": "https://github.com/vauth/vauth.github.io", - "owner": { - "username": "vauth", - "email": "ivuxey@gmail.com" - }, - "record": { - "CNAME": "vauth.github.io" - } -} diff --git a/domains/thomasc.json b/domains/thomasc.json deleted file mode 100644 index 93fdb9fbc..000000000 --- a/domains/thomasc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hopefully Thomas Croft's is-a.dev site", - "repo": "https://github.com/thomascf/thomascf.github.io", - "owner": { - "username": "thomascf", - "email": "thomas.croft@pm.me" - }, - "record": { - "CNAME": "thomascf.github.io" - } -} diff --git a/domains/tibebe.json b/domains/tibebe.json deleted file mode 100644 index 87a1843e2..000000000 --- a/domains/tibebe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tibebe is a dev", - "repo": "https://github.com/TibebeJS/tibebejs.github.io", - "owner": { - "username": "TibebeJs", - "email": "tibebes.js@gmail.com" - }, - "record": { - "CNAME": "tibebejs.github.io" - } -} diff --git a/domains/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/toasty.json b/domains/toasty.json deleted file mode 100644 index 0e06d33b5..000000000 --- a/domains/toasty.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "toastyyyxd", - "email": "asaeasaeasae.x10@gmail.com", - "discord": "577480703302959104" - }, - "record": { - "CNAME": "toasty.pages.dev" - } -} diff --git a/domains/todo.alvin.json b/domains/todo.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/todo.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/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/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/tstark.json b/domains/tstark.json new file mode 100644 index 000000000..582a7ccb9 --- /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/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/ud.json b/domains/ud.json new file mode 100644 index 000000000..b0ab06c7e --- /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/umerislam.json b/domains/umerislam.json new file mode 100644 index 000000000..9e46ad79b --- /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/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/usmanbaig.json b/domains/usmanbaig.json new file mode 100644 index 000000000..db087c533 --- /dev/null +++ b/domains/usmanbaig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UsmanBaig001", + "email": "usmanbaig1572@gmail.com" + }, + "record": { + "CNAME": "usmanbaig-dev.vercel.app" + } + } \ No newline at end of file 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/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..7afc96ef5 100644 --- a/domains/vantage.json +++ b/domains/vantage.json @@ -1,11 +1,11 @@ { - "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", + "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" + } } 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/vercel.cutedog5695.json b/domains/vercel.cutedog5695.json index 6d8c85f5a..2b34a2843 100644 --- a/domains/vercel.cutedog5695.json +++ b/domains/vercel.cutedog5695.json @@ -1,8 +1,8 @@ { "owner": { - "username": "CuteDog5695", + "username": "iostpa", "discord": "716306888492318790", - "twitter": "cutedog5695" + "twitter": "iostpa" }, "record": { "CNAME": "cutedog5695test.vercel.app" diff --git a/domains/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..bf83b0cf9 --- /dev/null +++ b/domains/vicentelopez.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lopezvcnt", + "email": "lopezvcnt@gmail.com" + }, + "description": "Vicente López portfolio showcasing skills and projects for profesional purpose.", + "repo": "https://github.com/lopezvcnt", + "record": { + "CNAME": "lopezvcnt.github.io" + } +} diff --git a/domains/vinceale7082.json b/domains/vinceale7082.json index 4f86901b5..4d7391ffa 100644 --- a/domains/vinceale7082.json +++ b/domains/vinceale7082.json @@ -6,6 +6,6 @@ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" }, "record": { - "A": ["37.183.142.194"] + "URL": "https://vinceale7082.com" } } diff --git a/domains/vintheweirdass.json b/domains/vintheweirdass.json index f001e5992..f1fffe798 100644 --- a/domains/vintheweirdass.json +++ b/domains/vintheweirdass.json @@ -1,13 +1,12 @@ { - "description": "My base website. Very epik tbh 💥💥", + "description": "redirect. js that", "repo": "https://github.com/vintheweirdass/vintheweirdass.github.io", "owner": { "username": "vintheweirdass", "twitter": "vintheweirdass", - "discord": "vintheweirdass", - "lahelu": "https://lahelu.com/user/cupglassdev" + "discord": "vintheweirdass" }, "record": { - "NS": ["christina.ns.cloudflare.com", "mustafa.ns.cloudflare.com"] + "URL": "https://vtwa.is-a.dev" } } 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/voxxdevv.json b/domains/voxxdevv.json new file mode 100644 index 000000000..6e783b671 --- /dev/null +++ b/domains/voxxdevv.json @@ -0,0 +1,11 @@ +{ + "description": "A simple website showcasing projects crafted by my development team.", + "repo": "https://github.com/voxxdevv/voxxdevv.github.io/lmdesigns", + "owner": { + "username": "voxxdevv", + "email": "aminrh@icloud.com" + }, + "record": { + "CNAME": "voxxdevv.github.io" + } +} diff --git a/domains/vra.json b/domains/vra.json 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..9821c3c38 --- /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/vtwa.json b/domains/vtwa.json new file mode 100644 index 000000000..c9d554823 --- /dev/null +++ b/domains/vtwa.json @@ -0,0 +1,12 @@ +{ + "description": "My base website. Very epik tbh 💥💥", + "repo": "https://github.com/vintheweirdass/vintheweirdass.github.io", + "owner": { + "username": "vintheweirdass", + "twitter": "vintheweirdass", + "discord": "vintheweirdass" + }, + "record": { + "NS": ["christina.ns.cloudflare.com", "mustafa.ns.cloudflare.com"] + } +} diff --git a/domains/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/vyductan.json b/domains/vyductan.json new file mode 100644 index 000000000..b824e266a --- /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/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/wallsified.json b/domains/wallsified.json new file mode 100644 index 000000000..51cc568a6 --- /dev/null +++ b/domains/wallsified.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wallsified", + "email": "danielparedes@ciencias.unam.mx", + "discord": "" + }, + "record": { + "CNAME": "portafolio-gamma-mauve.vercel.app" + } +} diff --git a/domains/wave.json b/domains/wave.json new file mode 100644 index 000000000..fa08df710 --- /dev/null +++ b/domains/wave.json @@ -0,0 +1,11 @@ +{ + "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/webcubed.json b/domains/webcubed.json new file mode 100644 index 000000000..80535f977 --- /dev/null +++ b/domains/webcubed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "webcubed", + "email": "lainathannlaiv2@gmail.com" + }, + "record": { + "CNAME": "webcubed.github.io" + } +} 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/whine.json b/domains/whine.json deleted file mode 100644 index a0b0bdeb5..000000000 --- a/domains/whine.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "description": "whi_ne's personal site", - "repo": "https://github.com/whinee/whinee.github.io", - "owner": { - "username": "whinee", - "twitter": "whi_nyaan" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/wiki.chuyentinorz.json b/domains/wiki.chuyentinorz.json new file mode 100644 index 000000000..6b2ef87e4 --- /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/william.json b/domains/william.json index a5d02227b..fcec296e5 100644 --- a/domains/william.json +++ b/domains/william.json @@ -4,7 +4,12 @@ "email": "william@is-a.dev" }, "record": { - "CNAME": "hrsn.dev" + "URL": "https://wharrison.com.au" }, - "proxied": true + "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..6816fa297 --- /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/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 new file mode 100644 index 000000000..f0a181248 --- /dev/null +++ b/domains/wirisungs.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "wirisungs" + }, + "record": { + "CNAME": "wirisungs.github.io" + } +} diff --git a/domains/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/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/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.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.todo.alvin.json b/domains/www.todo.alvin.json new file mode 100644 index 000000000..810c13865 --- /dev/null +++ b/domains/www.todo.alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinsjoy", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/www.ttkt.json b/domains/www.ttkt.json 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/xen.json b/domains/xen.json deleted file mode 100644 index 2e6040a49..000000000 --- a/domains/xen.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Website for my projects", - "repo": "https://github.com/xenmods/xenmods.github.io", - "owner": { - "username": "xenmods", - "email": "ilumomin04@gmail.com", - "twitter": "momin_ilf" - }, - "record": { - "CNAME": "xenmods.github.io" - } -} diff --git a/domains/xgeneric.json b/domains/xgeneric.json new file mode 100644 index 000000000..62bace35a --- /dev/null +++ b/domains/xgeneric.json @@ -0,0 +1,11 @@ +{ + "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/xmars.json b/domains/xmars.json new file mode 100644 index 000000000..9e7cecfe4 --- /dev/null +++ b/domains/xmars.json @@ -0,0 +1,11 @@ +{ + "description": "My personal info", + "repo": "https://github.com/xmars4", + "owner": { + "username": "xmars4", + "email": "xtruongptit@gmail.com" + }, + "record": { + "CNAME": "xmars4.github.io" + } +} 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/xryshirfxn.json b/domains/xryshirfxn.json deleted file mode 100644 index c2da6e5dc..000000000 --- a/domains/xryshirfxn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website", - "repo": "https://github.com/xryshirfxn/xryshirfxn.github.io", - "owner": { - "username": "xryshirfxn", - "twitter": "xryshirfxn" - }, - "record": { - "CNAME": "xryshirfxn.github.io" - } -} diff --git a/domains/xuxxi.json b/domains/xuxxi.json deleted file mode 100644 index 271f5d7bb..000000000 --- a/domains/xuxxi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "XUXXI", - "repo": "https://github.com/XUXXI/xuxxi.github.io", - "owner": { - "username": "methaine", - "email": "keter@keemail.me" - }, - "record": { - "CNAME": "xuxxi.github.io" - } -} diff --git a/domains/xvannn07.json b/domains/xvannn07.json new file mode 100644 index 000000000..7ba5ec189 --- /dev/null +++ b/domains/xvannn07.json @@ -0,0 +1,10 @@ +{ + "owner": { + "email": "xvannn07@example.com", + "username": "Xvannn07" + }, + "record": { + "CNAME": "silly-arithmetic-ef452c.netlify.app" + }, + "proxy": false +} diff --git a/domains/xvrtech.json b/domains/xvrtech.json 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/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/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/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/youssef.json b/domains/youssef.json deleted file mode 100644 index c27748e3d..000000000 --- a/domains/youssef.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "youssefsiam38", - "email": "youssef1yasser38@gmail.com" - }, - "record": { - "CNAME": "youssefsiam38.github.io" - } -} diff --git a/domains/yxz.json b/domains/yxz.json index 87095b3fe..d434786ca 100644 --- a/domains/yxz.json +++ b/domains/yxz.json @@ -1,28 +1,24 @@ { - "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", + "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"] + } } diff --git a/domains/zalex.json b/domains/zalex.json index 1fafd707a..006338ddf 100644 --- a/domains/zalex.json +++ b/domains/zalex.json @@ -1,12 +1,11 @@ { - "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/zenpai.json b/domains/zenpai.json deleted file mode 100644 index 2fee81ec6..000000000 --- a/domains/zenpai.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "zenpai.is-a.dev", - "repo": "https://github.com/ZenpaiAng/ZenpaiAng.github.io", - "owner": { - "username": "ZenpaiAng", - "email": "zenpaiang@gmail.com", - "discord": "zenpaiang" - }, - "record": { - "CNAME": "zenpaiang.github.io" - } -} diff --git a/domains/ziyn.json b/domains/ziyn.json index 7851a9219..9a726ef96 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": "254thheli", + "email": "is-a-dev@ziyn.us.kg" + }, + "record": { + "CNAME": "ziyn.pages.dev" + } } diff --git a/domains/zmail._domainkey.aruria.json b/domains/zmail._domainkey.aruria.json new file mode 100644 index 000000000..0e81d6b0f --- /dev/null +++ b/domains/zmail._domainkey.aruria.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cjolivier123", + "discord": "1175481072088268920", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XlWqBdmbdUC_mgDhKMY0Hcl1_FRp5IxKkBD1UF2bGowx-BgYpv7UnElAdcrktTrHjJLD75zzEWNR8A_1UH7-4abrnY4lsqu2p9GIScw9j-9zrNZi_EeTmN8XRuD2fVvPFEVmzAQ7O9jE-B6fkMl4GybJB6td05nxzwHi5J-cDGzT1Wg2qu5ierWuHe7P8TI4tq-SwshaxpNTWkMJN9mgGie6QD7zXBo76G7lbFWTOJHM65UK81I2N8nmyttlD2E5ncNgMTyspkR0hmKeIb1cQvR4lVXu3n-NmJg4-PIOMP3BJ_FgiZFQEDps_opWCA-XhcET7C_EjCbZPEJlBfuTxQ.GFEDQow6ltp5UmM6d7EqfA.xoHXb_B_eC2HGsJ-7iTlZ0FAagE6icNiiVRILA3y5YPiC8chzN3t1JpWEP-uyODEUi7HDGVJzPhRwtTBSbY4S4lx4ZxVOIMr2-l5v50hTjo.ebOtxNCyuP2tf0zsqTg8Hg" + }, + + "record": { + "TXT":"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDKr1YCFtXzTufNgvRlYuDw72rzN8WBF+F8xNRtI5PwvfVyFEAS7saeRf6hqQ28hdqH8FFmJ9479UkP0023gyUyQcpRQnqu01InfoyPCIicCRv/WQBTKyb0YXMtrF3ANZHBDq0p2lcp/naUtPs2oQEuSI5Ih+SfsCs5HnCRTyV2DQIDAQABl" + } +} diff --git a/domains/zmail._domainkey.co.ligmatv.json b/domains/zmail._domainkey.co.ligmatv.json new file mode 100644 index 000000000..cd08c7a23 --- /dev/null +++ b/domains/zmail._domainkey.co.ligmatv.json @@ -0,0 +1,10 @@ +{ + "description": "This sub-subdomain will i use for my Zoho email.", + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDO+5yaTA58OpZCT1ejrzPxjO4xNvsImCfvA2UigeVQwtFbl5QbwcdZUf6ga0LE6VOIDA3bMzHmVgTSZfYizmYDxNZ3TOobKEiT3TaaMcZj1sM2zWFVCpuYCHZ3WYPJj7rFF/PKZK9gCPPr1eLgao2SFkXnpwL/BWGL+uQ5OHZvlQIDAQAB" + } +} diff --git a/domains/zmail._domainkey.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/tests/domains.test.js b/tests/domains.test.js index 4c4dc25d6..46a4339fb 100644 --- a/tests/domains.test.js +++ b/tests/domains.test.js @@ -3,74 +3,54 @@ 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) { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); if (subdomain.split(".").length > 1) { @@ -79,18 +59,15 @@ t("Nested subdomains should not exist if the parent subdomain has NS records", ( t.true(!parentDomain.record.NS, `${file}: Parent subdomain has NS records`); } - } - - t.pass(); + }); }); t("Nested subdomains should be owned by the parent subdomain's owner", (t) => { - for (const file of files) { + files.forEach((file) => { const subdomain = file.replace(/\.json$/, ""); if (subdomain.split(".").length > 1) { const data = getDomainData(subdomain); - const parentSubdomain = getParentSubdomain(subdomain); const parentDomain = getDomainData(parentSubdomain); @@ -99,31 +76,5 @@ t("Nested subdomains should be owned by the parent subdomain's owner", (t) => { `${file}: Owner does not match the parent subdomain` ); } - } -}); - -const reservedDomains = expandReservedDomains(); - -t("Subdomain names must not be reserved", (t) => { - for (const file of files) { - const subdomain = file.replace(/\.json$/, ""); - - t.true(!reservedDomains.includes(subdomain), `${file}: Subdomain name is reserved`); - } - - t.pass(); -}); - -t("Reserved domains file should be valid", (t) => { - const subdomainRegex = /^_?[a-zA-Z0-9]+([-\.][a-zA-Z0-9]+)*(\[\d+-\d+\])?$/; - - for (const item of reservedDomains) { - t.regex( - item, - subdomainRegex, - `[util/reserved-domains.json] Invalid subdomain name "${item}" at index ${reservedDomains.indexOf(item)}` - ); - } - - t.pass(); + }); }); diff --git a/tests/json.test.js b/tests/json.test.js index 1bf3e3f3d..39d293f81 100644 --- a/tests/json.test.js +++ b/tests/json.test.js @@ -2,6 +2,8 @@ const t = require("ava"); const fs = require("fs-extra"); const path = require("path"); +const ignoredRootJSONFiles = ["package-lock.json", "package.json"]; + const requiredFields = { owner: "object", record: "object" @@ -9,7 +11,7 @@ const requiredFields = { const optionalFields = { proxied: "boolean", - reserved: "boolean" + redirect_config: "object" }; const requiredOwnerFields = { @@ -20,94 +22,166 @@ const optionalOwnerFields = { email: "string" }; +const optionalRedirectConfigFields = { + custom_paths: "object", + redirect_paths: "boolean" +}; + const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; const hostnameRegex = /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/; +const exceptedDomains = require("../util/excepted.json"); +const reservedDomains = require("../util/reserved.json"); const domainsPath = path.resolve("domains"); const files = fs.readdirSync(domainsPath); -function validateRequiredFields(t, obj, requiredFields, file) { - Object.keys(requiredFields).forEach((key) => { - t.true(obj.hasOwnProperty(key), `${file}: Missing required field: ${key}`); - t.is(typeof obj[key], requiredFields[key], `${file}: Field ${key} should be of type ${requiredFields[key]}`); +function 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]}` - ); + t.is(typeof obj[key], fields[key], `${file}: Field ${fieldPath} should be of type ${fields[key]}`); + } else if (fields === requiredFields) { + t.true(false, `${file}: Missing required field: ${fieldPath}`); } }); } +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.true(!expandedReservedDomains.includes(subdomain), `${file}: Subdomain name is reserved`); + + if (subdomain.split(".").length === 1 && !exceptedDomains.includes(subdomain)) { + t.false(subdomain.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("All files should have valid file names", (t) => { +t("All files should not have duplicate keys", (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`); + // 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); - // 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.true(!duplicateKeys.length, `${file}: Duplicate keys found: ${duplicateKeys.join(", ")}`); }); }); -t("All files should have the required fields", (t) => { +t("All files should have valid file names", (t) => { + files.forEach((file) => { + validateFileName(t, file); + }); +}); + +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`); } + + // 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..d7c73bc5b 100644 --- a/tests/proxy.test.js +++ b/tests/proxy.test.js @@ -3,10 +3,25 @@ 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) { @@ -22,9 +37,9 @@ function validateProxiedRecords(t, data, file) { const domainsPath = path.resolve("domains"); const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json")); -t("Domains with proxy enabled should have at least one record that can be proxied", (t) => { +t("Domains with proxy enabled must have at least one proxy-able record", (t) => { files.forEach((file) => { - const domain = fs.readJsonSync(path.join(domainsPath, file)); + const domain = getDomainData(file); validateProxiedRecords(t, domain, file); }); diff --git a/tests/records.test.js b/tests/records.test.js index d819fa9b9..223971308 100644 --- a/tests/records.test.js +++ b/tests/records.test.js @@ -3,18 +3,32 @@ 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 ipv6Regex = /^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$|^::(?:[0-9a-fA-F]{1,4}:){0,6}[0-9a-fA-F]{1,4}$|^(?:[0-9a-fA-F]{1,4}:){1,7}:$|^(?:[0-9a-fA-F]{1,4}:){0,6}::(?:[0-9a-fA-F]{1,4}:){0,5}[0-9a-fA-F]{1,4}$/; const domainsPath = path.resolve("domains"); -const files = fs.readdirSync(domainsPath); +const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json")); + +const domainCache = {}; + +function getDomainData(file) { + if (domainCache[file]) { + return domainCache[file]; + } + + try { + const data = fs.readJsonSync(path.join(domainsPath, file)); + domainCache[file] = data; + return data; + } catch (error) { + throw new Error(`Failed to read JSON for ${file}: ${error.message}`); + } +} function expandIPv6(ip) { let segments = ip.split(":"); - const emptyIndex = segments.indexOf(""); if (emptyIndex !== -1) { @@ -31,7 +45,7 @@ function expandIPv6(ip) { return segments.map((segment) => segment.padStart(4, "0")).join(":"); } -function validateIPv4(ip, proxied, file, index) { +function validateIPv4(ip, proxied) { const parts = ip.split(".").map(Number); if (parts.length !== 4 || parts.some((part) => isNaN(part) || part < 0 || part > 255)) return false; @@ -74,140 +88,196 @@ 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.true(!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.true(!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}`); }); - // Specific record rules for CNAME, NS, and DS + // Record type combinations validation if (recordKeys.includes("CNAME") && !data.proxied) { t.is(recordKeys.length, 1, `${file}: CNAME records cannot be combined with other records unless proxied`); } - if (recordKeys.includes("NS")) { t.true( recordKeys.length === 1 || (recordKeys.length === 2 && recordKeys.includes("DS")), `${file}: NS records cannot be combined with other records, except for DS records` ); } - if (recordKeys.includes("DS")) { t.true(recordKeys.includes("NS"), `${file}: DS records must be combined with NS records`); } + if (recordKeys.includes("URL")) { + t.true( + !recordKeys.includes("A") && !recordKeys.includes("AAAA") && !recordKeys.includes("CNAME"), + `${file}: URL records cannot be combined with A, AAAA, or CNAME records` + ); + } + if (data.redirect_config) { + t.true( + recordKeys.includes("URL") || data.proxied, + `${file}: Redirect config must be combined with a URL record or the domain must be proxied` + ); + if (data.redirect_config.redirect_paths) { + t.true(recordKeys.includes("URL"), `${file}: redirect_config.redirect_paths requires a URL record`); + } + } + + validateRecordValues(t, data, file); }); -}); -t("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.notThrows(() => new URL(value), `${file}: Invalid URL for ${key}`); - try { - const urlObj = new URL(value); - t.true(urlObj.hostname !== subdomain, `${file}: URL cannot point to itself`); - } catch { - t.fail(`${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..bd18e3e00 --- /dev/null +++ b/tests/special.test.js @@ -0,0 +1,53 @@ +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..ed9a583ce --- /dev/null +++ b/util/bypassed.json @@ -0,0 +1,4 @@ +[ + "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 91% rename from util/reserved-domains.json rename to util/reserved.json index 67087b209..093fdfa17 100644 --- a/util/reserved-domains.json +++ b/util/reserved.json @@ -1,117 +1,125 @@ -[ - "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" -] +[ + "account", + "accounts", + "admin", + "administrator", + "alert", + "alerts", + "api", + "auth", + "authentication", + "authorisation", + "authorise", + "authorization", + "authorize", + "aux", + "billing", + "blog", + "calendar", + "cart", + "catalog", + "checkout", + "co", + "com", + "com[1-9]", + "con", + "confirm", + "confirmation", + "dashboard", + "default", + "dns", + "doc", + "documentation", + "email", + "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", + "recovery", + "redirect", + "registrar", + "registry", + "reset", + "reset-password", + "root", + "sales", + "schedule", + "secure", + "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", + "webmail", + "webmaster", + "whois", + "www[1-99]", + "wwww", + "your-domain-name" +]