diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md
index 37adf2e0a..d46f275d0 100644
--- a/.github/ISSUE_TEMPLATE/bug.md
+++ b/.github/ISSUE_TEMPLATE/bug.md
@@ -1,9 +1,8 @@
---
name: bug
about: Use this template to report any bugs you've encountered related to the project
-title: 'What bug did you encounter?'
+title: "What bug did you encounter?"
labels: bug
-
---
### Your subdomain
diff --git a/.github/ISSUE_TEMPLATE/questions.md b/.github/ISSUE_TEMPLATE/questions.md
index 1e1a07a33..54ce34840 100644
--- a/.github/ISSUE_TEMPLATE/questions.md
+++ b/.github/ISSUE_TEMPLATE/questions.md
@@ -1,9 +1,8 @@
---
name: question
about: Use this template to ask any questions about the service
-title: 'Whats your question'
+title: "Whats your question"
labels: question
-
---
### Your question
diff --git a/.github/ISSUE_TEMPLATE/report-abuse.md b/.github/ISSUE_TEMPLATE/report-abuse.md
index c25ca4e37..3e1a09807 100644
--- a/.github/ISSUE_TEMPLATE/report-abuse.md
+++ b/.github/ISSUE_TEMPLATE/report-abuse.md
@@ -1,9 +1,8 @@
---
name: report-abuse
about: Use this template to report abusive domains
-title: 'Report abuse'
+title: "Report abuse"
labels: report-abuse
-
---
### Domain
diff --git a/.github/ISSUE_TEMPLATE/suggestions.md b/.github/ISSUE_TEMPLATE/suggestions.md
index d30835232..e59941e31 100644
--- a/.github/ISSUE_TEMPLATE/suggestions.md
+++ b/.github/ISSUE_TEMPLATE/suggestions.md
@@ -1,9 +1,8 @@
---
name: suggestion
about: Use this template for feedbacks and suggestions
-title: 'Feedback/suggestion'
+title: "Feedback/suggestion"
labels: suggestion
-
---
### What do you want added?
diff --git a/.github/ISSUE_TEMPLATE/support.md b/.github/ISSUE_TEMPLATE/support.md
index dbe3c3030..e75c23499 100644
--- a/.github/ISSUE_TEMPLATE/support.md
+++ b/.github/ISSUE_TEMPLATE/support.md
@@ -1,9 +1,8 @@
---
name: support
about: Use this template if you need any support with your domain
-title: 'Support'
+title: "Support"
labels: support
-
---
### Your subdomain
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 46ec6ab67..7d76cec72 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,21 +1,21 @@
-## Requirements
-Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain **MUST** pass **ALL** the indicated requirements below.
+# Requirements
+
+
+
-
- [ ] 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).
+- [ ] I understand my domain will be removed if I violate the [Terms of Service](https://is-a.dev/terms).
+- [ ] My file is in the `domains` directory and has the `.json` file extension.
+- [ ] My file's name is lowercased and alphanumeric.
+- [ ] My website is **reachable** and **completed**.
+- [ ] I have provided sufficient contact information in the `owner` key.
-## Website Preview
-
+# Website Preview
+
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 7dc30bf5a..829d5e003 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -1,6 +1,6 @@
domain:
- - domains/*.json
+ - domains/*.json
documentation:
- - ./*.md
- - ./**/*.md
+ - ./*.md
+ - ./**/*.md
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 000000000..91d81f6e7
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,47 @@
+name: CI
+
+on:
+ pull_request:
+
+ push:
+ branches: [main]
+ paths:
+ - "domains/*"
+ - "tests/*"
+ - "util/*"
+ - ".github/workflows/ci.yml"
+
+ workflow_dispatch:
+
+concurrency:
+ group: ${{ github.ref }}-ci
+ cancel-in-progress: true
+
+jobs:
+ tests:
+ name: Tests
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - run: npm install
+
+ - name: Fetch PR information
+ if: github.event_name == 'pull_request'
+ run: |
+ echo "PR_AUTHOR=${{ github.event.pull_request.user.login }}" >> $GITHUB_ENV
+ echo "PR_AUTHOR_ID=${{ github.event.pull_request.user.id }}" >> $GITHUB_ENV
+
+ LABELS=$(gh api --jq '[.labels[].name]' /repos/{owner}/{repo}/pulls/${{ github.event.number }})
+ echo "PR_LABELS=$LABELS" >> $GITHUB_ENV
+
+ FILES=$(gh api --jq '[.[] | select(.status != "removed") | .filename]' /repos/{owner}/{repo}/pulls/${{ github.event.number }}/files)
+ echo "CHANGED_FILES=$FILES" >> $GITHUB_ENV
+
+ REMOVED_FILE_DATA=$(gh api --jq '[.[] | select(.status == "removed") | {name: .filename, data: .patch}]' /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files)
+ echo "DELETED_FILES=$REMOVED_FILE_DATA" >> $GITHUB_ENV
+ env:
+ GH_TOKEN: ${{ github.token }}
+
+ - name: Run tests
+ run: npx ava tests/*.test.js --timeout=1m
diff --git a/.github/workflows/dnscontrol.yml b/.github/workflows/dnscontrol.yml
new file mode 100644
index 000000000..847aae8cb
--- /dev/null
+++ b/.github/workflows/dnscontrol.yml
@@ -0,0 +1,25 @@
+name: DNSControl
+
+on:
+ push:
+ branches: [main]
+ paths:
+ - ".github/workflows/dnscontrol.yml"
+ - "dnsconfig.js"
+
+ workflow_dispatch:
+
+concurrency:
+ group: ${{ github.ref }}-dnscontrol
+ cancel-in-progress: true
+
+jobs:
+ tests:
+ name: Tests
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: is-a-dev/dnscontrol-action@main
+ with:
+ args: check
diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml
index 24ffbfc00..415277fbe 100644
--- a/.github/workflows/label.yml
+++ b/.github/workflows/label.yml
@@ -1,13 +1,16 @@
-name: Pull Request Labeler
+name: Label
+
on:
- schedule:
- - cron: '*/10 * * * *'
+ schedule:
+ - cron: "*/10 * * * *"
+
jobs:
- labeler:
- runs-on: ubuntu-latest
- steps:
- - uses: docker://docker.io/ilyam8/periodic-pr-labeler:v0.1.1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- GITHUB_REPOSITORY: ${{ github.repository }}
- LABEL_MAPPINGS_FILE: .github/labeler.yml
+ pull-requests:
+ name: Pull Requests
+ runs-on: ubuntu-latest
+ steps:
+ - uses: ilyam8/periodic-pr-labeler@v0.3.0
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_REPOSITORY: ${{ github.repository }}
+ LABEL_MAPPINGS_FILE: .github/labeler.yml
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index ac9c92abd..157d73bfc 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -6,6 +6,7 @@ on:
paths:
- "domains/*"
- ".github/workflows/publish.yml"
+ - "util/reserved.json"
- "dnsconfig.js"
workflow_dispatch:
@@ -21,11 +22,6 @@ 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
diff --git a/.github/workflows/raw-api.yml b/.github/workflows/raw-api.yml
index 4ba2bd85d..227e6100e 100644
--- a/.github/workflows/raw-api.yml
+++ b/.github/workflows/raw-api.yml
@@ -6,6 +6,7 @@ on:
paths:
- "domains/*"
- ".github/workflows/raw-api.yml"
+ - "util/reserved.json"
workflow_dispatch:
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index ad78c7b61..815d5ace0 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -1,12 +1,14 @@
-name: StaleBOT
+name: Stale
on:
- workflow_dispatch:
schedule:
- - cron: "30 14 * * *"
+ - cron: "0 12 * * *"
+
+ workflow_dispatch:
jobs:
- stale:
+ label:
+ name: Label
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml
deleted file mode 100644
index fa0fa8f5f..000000000
--- a/.github/workflows/validation.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-name: Validation
-
-on:
- pull_request:
-
- push:
- branches: [main]
- paths:
- - "domains/*"
- - "tests/*"
- - "util/*"
- - ".github/workflows/validation.yml"
- - "dnsconfig.js"
-
- workflow_dispatch:
-
-concurrency:
- group: ${{ github.ref }}-validation
- cancel-in-progress: true
-
-jobs:
- dnscontrol:
- name: DNSControl
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
-
- - uses: is-a-dev/dnscontrol-action@main
- with:
- args: check
-
- tests:
- name: Tests
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
-
- - run: npm install
-
- - run: npx ava tests/*.test.js
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 4fa514e5b..7fc864a51 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,17 +1,8 @@
# Contributing
-When contributing to this repository, please first discuss the change you wish to make via issue before making a change.
-
-You should also read up on this project's [code of conduct](https://github.com/is-a-dev/register/blob/main/CODE_OF_CONDUCT.md).
## Pull requests
-- Adding, changing or removing a domain file you own.
-- Fixing a bug in the scripts or CI.
-- Fix an error in the documentation.
-
-#### Domains
-- Your pull request will be reviewed and merged into `main` branch.
-- The records will be published as soon as the PR is merged.
-- The changes should reflect soon after publishing.
+- If the PR template is updated, any pre-existing PRs must follow the updated template, in order to be merged.
+- We reserve the right to deny any pull request for any reason.
## Issues
- **Report an abusive domain** - Create a new issue with the label `report-abuse`.
diff --git a/DISCORD_RULES.md b/DISCORD_RULES.md
new file mode 100644
index 000000000..af2efef88
--- /dev/null
+++ b/DISCORD_RULES.md
@@ -0,0 +1,88 @@
+# Discord Server Rules
+
+## Introduction
+This document is intended for staff and community members. It covers what is and isn’t allowed in the server, along with punishment lengths and more.
+
+## Server Rules
+
+1. Follow Discord's [ToS](https://discord.com/terms) and [Community Guidelines](https://discord.com/guidelines).
+ 1. Modified clients are allowed, however abusing them may result in a ban.
+2. Show human decency and use common sense above all else. Keep our server clean and be respectful of others.
+ 1. No NSFW. This includes, images, discussions of anything on the topic or "funny" jokes, gore, role playing etc.
+ 2. Do not discuss mutes, bans, warnings, or any related topics in public chats. They do not serve as a topic of discussion.
+ 3. Refrain from mini modding. You aren't a moderator; use */report* or ping one staff member.
+ 4. No slurs, excessive swearing, abuse, bait, harassment, etc.
+3. Do not post malicious links and/or files.
+4. No attempting to bypass, intentionally misinterpret, or find loopholes in the rules.
+ 1. A moderator's word is final. When told to cease, cease.
+5. Refrain from asking for support in non-support channels; you will not receive help there. If you need help, then open a ticket in \#get-help only after you have read the is-a.dev documentation and weren't answered there.
+6. Do not beg for your pull request to be merged or for anything else. Send a link to your pull request *once* in \#pull-requests and patiently wait for a maintainer to get to it. Do *not* ping maintainers to merge pull requests.
+7. Your account is your responsibility.
+ 1. If someone else is using your account and breaks these rules, you are responsible.
+ 2. If your account gets compromised and gets banned from this server, you may request an unban once you recover it.
+8. Do not attempt to bypass our auto moderation system.
+9. Do not advertise your website, bot or anything else outside of \#showcase.
+ 1. Bot invite links are not allowed in \#showcase.
+10. Do not attempt to bypass a punishment on your account.
+ 1. This will result in an immediate ban on your account.
+11. Do not use bot commands outside of \#commands.
+12. English only.
+13. Where applicable, this server is governed by our [Terms of Service](https://is-a.dev/terms).
+
+## Moderation Ethic
+
+1. Don't allow yourself to show bias or prejudice. For example, don't “let something slide” solely because the member in question is a respected person within the community. It is not harsh or wrong to call someone out and request somebody to cease something that isn't allowed on the server.
+2. Don't be rude. A problem that is fairly common in the server is that some maintainers are rude to new members. It's ridiculous and sets a horrible example.
+3. Don't abuse your privileges. You were granted them for a reason \- because we trusted you. Please don't abuse that trust and use them for things they aren't meant for, *even as a joke*. Simply put, it's fair to nobody.
+4. Follow the rules. Especially regarding NSFW language and content.
+5. Staff are not immune to punishment. If you are caught breaking the rules, you will be punished, just like any other regular member.
+
+## Staff Team Respect
+
+**Being respectful to each other**:
+We are working together, this is not a competition, so act like it. Everyone here should be mature enough to be able to at least respect each other, regardless of any differences or issues we have between us. If you have an issue with another staff member, take it to DMs, do not share your problems with the rest of the server.
+
+**Regarding roles and permissions**:
+If someone receives a certain role or position that is higher than you, do not go complaining about it. We are old enough to talk it out properly and not have to argue. What matters is that the service and server runs peacefully, all this does is create drama. If you disagree with someone receiving a specific role or permission, you can talk about it in **private** channels, do not talk about these topics outside of staff channels, and try not to argue.
+
+## Enforcing the Rules
+
+* ***Miscellaneous offences***:
+ * Extremely flashy or earrape media and memes: 3 hour mute
+ * Hoisting: Change nickname to *Moderated Nickname*
+ * Begging for roles/PR merging: 1-3 hour mute
+ * Asking for support in a non-support channel *after* being told it is the wrong channel: 30 minute mute
+ * Impersonation of a staff member: Ban
+ * Mention spam, chat flooding, text walls, command spam: 1-3 hour mute
+ * Arguing after being asked to stop: 1 hour mute, if continued, 1 day mute
+ * Breaking Discord's [ToS](https://discord.com/terms)/[Guidelines](https://discord.com/guidelines): Ban
+ * Modified clients are allowed, assuming they are not using them for abusive purposes. This is because they are extremely hard to moderate.
+ * Doxxing/raiding (including threats): Ban \+ report to Discord
+ * Posting malicious links, files: Ban
+ * Harassment of a user: 3 hour mute
+ * Bypassing mutes/bans: Ban
+* ***Death threats***:
+ * kill yourself/kill myself jokes (including GIFs): 12 hour mute
+ * Severe offence (above, but not a joke) Ban
+* ***Slurs***:
+ * Racial slurs: Ban
+ * LGBT slurs: 1 day mute
+ * *“retard”* is allowed, however it cannot be targeted towards a user
+ * Permitted uses: “that's retarded”
+ * Disallowed uses: “@user is retarded”
+ * 1 day mute
+* ***Trolling***:
+ * Non-severe offence (e.g. just being stupid, asking dumb questions)
+ * 3 hour mute
+ * Severe offence (e.g. abusing moderator permissions)
+ * Ban
+* ***Advertising***:
+ * DM advertising: Ban
+ * Malicious advertising: Ban
+ * Advertising in server: 1 hour mute, if continued, ban
+ * *Advertising is allowed in \#showcase, but mainly only websites and bots.*
+* ***NSFW***:
+ * NSFW jokes/humour: 1-3 hour mute
+ * NSFW content/media: Ban
+ * CP: Ban \+ report to Discord
+ * CP jokes: Ban \+ report messages
diff --git a/README.md b/README.md
index 6c53a4027..0c3a0828f 100644
--- a/README.md
+++ b/README.md
@@ -7,46 +7,46 @@
-
is-a.dev
-is-a.dev is a service that allows developers to get a sweet-looking .is-a.dev domain for their personal websites.
+is-a.dev is a service that allows developers to get a sweet-looking .is-a.dev subdomain for their personal websites.
## Announcements & Status Updates
-Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtimes regarding the service.
-Not all of these will be posted on GitHub, however they will always be posted in our Discord server.
+Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtime notifications regarding the service.
+Not all of these will be posted on GitHub[^1], however they will always be posted in our Discord server.
+
+[^1]: We usually only post announcements on GitHub in the case of a serious incident. In that case, you'll likely see it at the top of this README file.
# Register
-## How to Register
> If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge).
-- [Fork](https://github.com/is-a-dev/register/fork) this repository
-- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`
-- [Read the documentation](https://docs.is-a.dev)
+- [Fork](https://github.com/is-a-dev/register/fork) this repository.
+- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`.
+- [Read the documentation](https://docs.is-a.dev).
- If you are applying for NS records please read [this](#ns-records).
-- Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!*
-- After the pull request is merged, please allow up to 24 hours for the changes to propagate
-- Enjoy your new `.is-a.dev` domain! Please consider leaving us a star ⭐️ to help support us!
+- Your pull request will be reviewed and merged. *Make sure to keep an eye on it in case we need you to make any changes!*
+- After the pull request is merged, please allow up to 24 hours for the changes to propagate.
+- Enjoy your new `.is-a.dev` subdomain! Please consider leaving us a star ⭐️ to help support us!
### NS Records
When applying for NS records, please be aware we already support a [wide range of DNS records](https://docs.is-a.dev/faq/#which-records-are-supported), so you may not need them.
-In your PR, please explain why you need NS records, including examples, to help mitigate potential abuse. Refer to the [FAQ](https://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).
+In your PR, please explain why you need NS records, including examples, to help mitigate potential abuse. Refer to the [FAQ](https://docs.is-a.dev/faq/#who-can-use-ns-records) for guidelines on allowed usage.
***Pull requests adding NS records without sufficient reasoning will be closed.***
-> Also see: [Why are you so strict with NS records?](https://docs.is-a.dev/faq/#why-are-you-so-strict-with-ns-records)
+> Also see: [Why are you so strict with NS records](https://docs.is-a.dev/faq/#why-are-you-so-strict-with-ns-records)?
> [!NOTE]
-> You 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)!
+> You can bypass these requirements[^2] by donating just $2 [here](https://wdh.gg/pvNCdvs), or via [GitHub Sponsors](https://wdh.gg/sponsor). As a thank you, you'll also receive a special role in our [Discord server](https://discord.gg/is-a-dev-830872854677422150)!
>
> If you donate, email william@is-a.dev or DM `@williamharrison` on Discord with your receipt and PR link.
-[^1]: Requests deemed to be made with malicious intent may be denied, with a refund provided.
+[^2]: Requests deemed to be made with malicious intent may be denied, with a refund provided.
## Report Abuse
If you find any subdomains being used for abusive purposes, please report them by [creating an issue](https://github.com/is-a-dev/register/issues/new?assignees=&labels=report-abuse&projects=&template=report-abuse.md&title=Report+abuse) with the relevant evidence.
diff --git a/dnsconfig.js b/dnsconfig.js
index 3cd55b011..ae7905e0f 100644
--- a/dnsconfig.js
+++ b/dnsconfig.js
@@ -67,7 +67,21 @@ for (var subdomain in domains) {
// Handle MX records
if (domainData.record.MX) {
for (var mx in domainData.record.MX) {
- records.push(MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + "."));
+ var mxRecord = domainData.record.MX[mx];
+
+ if (typeof mxRecord === "string") {
+ records.push(
+ MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + ".")
+ );
+ } else {
+ records.push(
+ MX(
+ subdomainName,
+ parseInt(mxRecord.priority),
+ mxRecord.target + "."
+ )
+ );
+ }
}
}
@@ -88,6 +102,23 @@ for (var subdomain in domains) {
}
}
+ // Handle TLSA records
+ if (domainData.record.TLSA) {
+ for (var tlsa in domainData.record.TLSA) {
+ var tlsaRecord = domainData.record.TLSA[tlsa];
+
+ records.push(
+ TLSA(
+ subdomainName,
+ tlsaRecord.usage,
+ tlsaRecord.selector,
+ tlsaRecord.matchingType,
+ tlsaRecord.certificate
+ )
+ );
+ }
+ }
+
// Handle TXT records
if (domainData.record.TXT) {
if (Array.isArray(domainData.record.TXT)) {
@@ -105,6 +136,21 @@ for (var subdomain in domains) {
}
}
+var reserved = require("./util/reserved.json");
+
+// Handle reserved domains
+for (var i = 0; i < reserved.length; i++) {
+ var subdomainName = reserved[i];
+ if (
+ subdomainName !== "ns1" &&
+ subdomainName !== "ns2" &&
+ subdomainName !== "ns3" &&
+ subdomainName !== "ns4"
+ ) {
+ records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON));
+ }
+}
+
var options = {
no_ns: "true"
};
diff --git a/domains/0.json b/domains/0.json
index d8bc41832..e4788bcf6 100644
--- a/domains/0.json
+++ b/domains/0.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "S4IL21",
- "email": "s4il.is.a.dev@gmail.com"
- },
- "record": {
- "CNAME": "s4il21.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "S4IL21",
+ "email": "s4il.is.a.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "s4il21.github.io"
+ }
+}
diff --git a/domains/00.json b/domains/00.json
index a2d6f1ff1..fe125c21b 100644
--- a/domains/00.json
+++ b/domains/00.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Rayrsn",
- "email": "rayrsn@proton.me"
- },
- "record": {
- "URL": "https://rayrsn.me/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Rayrsn",
+ "email": "rayrsn@proton.me"
+ },
+ "record": {
+ "URL": "https://rayrsn.me/"
+ }
+}
diff --git a/domains/00001.json b/domains/00001.json
index fb92d784b..4fb2c2b47 100644
--- a/domains/00001.json
+++ b/domains/00001.json
@@ -1,11 +1,11 @@
{
- "description": "SatyamV7.is-a.dev",
- "repo": "https://github.com/SatyamV7/SatyamV7.github.io",
- "owner": {
- "username": "SatyamV7",
- "email": "satyamverma46@outlook.com"
- },
- "record": {
- "CNAME": "satyamv7.github.io"
- }
-}
\ No newline at end of file
+ "description": "SatyamV7.is-a.dev",
+ "repo": "https://github.com/SatyamV7/SatyamV7.github.io",
+ "owner": {
+ "username": "SatyamV7",
+ "email": "satyamverma46@outlook.com"
+ },
+ "record": {
+ "CNAME": "satyamv7.github.io"
+ }
+}
diff --git a/domains/01.json b/domains/01.json
index a2d6f1ff1..fe125c21b 100644
--- a/domains/01.json
+++ b/domains/01.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Rayrsn",
- "email": "rayrsn@proton.me"
- },
- "record": {
- "URL": "https://rayrsn.me/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Rayrsn",
+ "email": "rayrsn@proton.me"
+ },
+ "record": {
+ "URL": "https://rayrsn.me/"
+ }
+}
diff --git a/domains/011.json b/domains/011.json
index 2078a0977..ace8aeeb8 100644
--- a/domains/011.json
+++ b/domains/011.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "iamxani",
- "email": "xenpei11@gmail.com"
- },
- "record": {
- "CNAME": "iamxani.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "iamxani",
+ "email": "xenpei11@gmail.com"
+ },
+ "record": {
+ "CNAME": "iamxani.github.io"
+ }
+}
diff --git a/domains/026.json b/domains/026.json
index db3b704f6..87fb5e171 100644
--- a/domains/026.json
+++ b/domains/026.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "conaitus",
- "discord": "772867638920609823",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYStWS9u7kn8H-BJLNUxA0PsFkP5qxGPZm-HYknRfHbFc6c3X2z3Fyz2NQcDz1Du3xpCP58mQsd4lEB9ZBYuzYy8f0xpwr_NeZ1H8l8qIrcekOv3znNXBzfEb5f_jY9lzqUCqD-1f3_X-9J-Q403qxVvx3Tg-7rtUNNtuy4nGPWQK92f1MQva2K2mtFjcvwQyKJLhf1hYakfULm_1UnknYTnfcBmsUZL42CzCeZia9ofvahOGjl4tapLWMbcb3gKtY2cIm37aF3bAXvIIpd50BOv8k4J0NAiKB_1pTcPJlIjvPasoD7-sZBTZ9b5gjjIpajuJaJrh2L5ZN5L4c3X8A.T8PosqQdCtq5qKzL_90vWQ.UCrMJwoBu-vRd5Wj4oS-B63aoapDpka6A0x31G1GpIbzUO-7kHBO1uK7c9rDPpAnuHkOSEp0evh9PJ2-7E1xI-UDIjVkLlE6KUL0eBD8oO0.U0OIRYK4tTs9GV6b1FiarQ"
- },
- "record": {
- "A": [
- "77.175.38.88"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "conaitus",
+ "discord": "772867638920609823",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYStWS9u7kn8H-BJLNUxA0PsFkP5qxGPZm-HYknRfHbFc6c3X2z3Fyz2NQcDz1Du3xpCP58mQsd4lEB9ZBYuzYy8f0xpwr_NeZ1H8l8qIrcekOv3znNXBzfEb5f_jY9lzqUCqD-1f3_X-9J-Q403qxVvx3Tg-7rtUNNtuy4nGPWQK92f1MQva2K2mtFjcvwQyKJLhf1hYakfULm_1UnknYTnfcBmsUZL42CzCeZia9ofvahOGjl4tapLWMbcb3gKtY2cIm37aF3bAXvIIpd50BOv8k4J0NAiKB_1pTcPJlIjvPasoD7-sZBTZ9b5gjjIpajuJaJrh2L5ZN5L4c3X8A.T8PosqQdCtq5qKzL_90vWQ.UCrMJwoBu-vRd5Wj4oS-B63aoapDpka6A0x31G1GpIbzUO-7kHBO1uK7c9rDPpAnuHkOSEp0evh9PJ2-7E1xI-UDIjVkLlE6KUL0eBD8oO0.U0OIRYK4tTs9GV6b1FiarQ"
+ },
+ "record": {
+ "A": ["77.175.38.88"]
+ }
+}
diff --git a/domains/0ad.json b/domains/0ad.json
index df796f27b..e6ec978b1 100644
--- a/domains/0ad.json
+++ b/domains/0ad.json
@@ -1,11 +1,11 @@
{
- "description": "0ad.is-a.dev",
- "owner": {
- "username": "broduer40",
- "email": "broduer@aogamers.net",
- "discord": "[AoG+] Broduer#0331"
- },
- "record": {
- "URL": "https://play0ad.com"
- }
-}
\ No newline at end of file
+ "description": "0ad.is-a.dev",
+ "owner": {
+ "username": "broduer40",
+ "email": "broduer@aogamers.net",
+ "discord": "[AoG+] Broduer#0331"
+ },
+ "record": {
+ "URL": "https://play0ad.com"
+ }
+}
diff --git a/domains/0l1v3r.json b/domains/0l1v3r.json
index f38adbcfb..79315f6d5 100644
--- a/domains/0l1v3r.json
+++ b/domains/0l1v3r.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "chuckchicken100",
- "discord": "815256243786350594",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T8bRgPEutjHjEjKjSZNHRhoeLZVxW_dxgWIwpTe7r5vVqdbx-MtV23kRR7ZKYKO5fyRcvR0i-rxyVTqWyk141vjXvjvx0-op0G2EzSBfPUif_y9VrSXOe03MuIk0fE8J8QVxN5nYNFR4-mhamlVOml5EzQh2NJYtL0y6jyV2NNZn6xn0L2E_6wpNiszZoxCt7lmBmbN9r5pEA8n3CPca8XY9nDqSNwQIufuVkGoifmbluGWKMCJl1NJYBtBqtF70_5fDOTGAGi2aWqJ3ZRmJENvdnafjSOxK4HNYu1rqa7HeCSIW0EBsTfvcHZAyqVqMAXkaK-2wKJbWgsZmV7iaEQ.-i_4qpIVnvNZiYt-GHAjew.RPKfuVCpY1wTAP-uBHPZs-kduKC-cCB_rovn1uOJyIEgEZeOU3BQiHgzDdTNiitXiPKhLaWfg7A9VGYqEfJQt9aIoSoDGdWv_e46o4aKMhQ.TIzGWSSO6JchPkdCTKqn9g"
- },
- "record": {
- "A": [
- "103.97.126.29"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "chuckchicken100",
+ "discord": "815256243786350594",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T8bRgPEutjHjEjKjSZNHRhoeLZVxW_dxgWIwpTe7r5vVqdbx-MtV23kRR7ZKYKO5fyRcvR0i-rxyVTqWyk141vjXvjvx0-op0G2EzSBfPUif_y9VrSXOe03MuIk0fE8J8QVxN5nYNFR4-mhamlVOml5EzQh2NJYtL0y6jyV2NNZn6xn0L2E_6wpNiszZoxCt7lmBmbN9r5pEA8n3CPca8XY9nDqSNwQIufuVkGoifmbluGWKMCJl1NJYBtBqtF70_5fDOTGAGi2aWqJ3ZRmJENvdnafjSOxK4HNYu1rqa7HeCSIW0EBsTfvcHZAyqVqMAXkaK-2wKJbWgsZmV7iaEQ.-i_4qpIVnvNZiYt-GHAjew.RPKfuVCpY1wTAP-uBHPZs-kduKC-cCB_rovn1uOJyIEgEZeOU3BQiHgzDdTNiitXiPKhLaWfg7A9VGYqEfJQt9aIoSoDGdWv_e46o4aKMhQ.TIzGWSSO6JchPkdCTKqn9g"
+ },
+ "record": {
+ "A": ["103.97.126.29"]
+ }
+}
diff --git a/domains/0spol.json b/domains/0spol.json
new file mode 100644
index 000000000..bba32eb60
--- /dev/null
+++ b/domains/0spol.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/0spol/0spol.github.io",
+ "owner": {
+ "username": "0spol",
+ "email": "gaparicio368@gmail.com"
+ },
+ "record": {
+ "CNAME": "0spol.github.io"
+ }
+}
diff --git a/domains/0v90.json b/domains/0v90.json
index 80a04a29c..3df4851e1 100644
--- a/domains/0v90.json
+++ b/domains/0v90.json
@@ -1,16 +1,16 @@
{
- "description": "Personal Portfolio Website",
- "repo": "https://github.com/0v90/0v90.github.io",
- "owner": {
- "username": "0v90",
- "discord": "651519394673065989"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio Website",
+ "repo": "https://github.com/0v90/0v90.github.io",
+ "owner": {
+ "username": "0v90",
+ "discord": "651519394673065989"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/0w0.json b/domains/0w0.json
index b563b9618..5e5027109 100644
--- a/domains/0w0.json
+++ b/domains/0w0.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "SkyExploreWasTaken",
- "discord": "1049263707177353247",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ae9lxcsRx9K7NJv-AcRXmgm-8sWQp-2e6Pxly82K9_797Wy3RjBtVGaq9snYtOkL-Qm9Oj845TiS8DV-ae7fPyWYwHgzrDj99tuRjVFyrvWfCbglvOWWHODsjV5lJpJZQjuHQn08O1Ptv69N5E2-imTQegZhcn5pkMiTCW8VpuXNXD_1Viu5_xSUYXYaAsaY-G0QYNLK3IPky8zorgdC4-5w23htVxmbiAMTtqHHOJx-wqv2R-xya96-BlQ_P8GtCTG5XJQzdqrqz630012T_tdD5VL5wbBbsCcWI4EoHqGZcBt4LhUL0GPnr9jnWuTcoBVyMSevG6plNjPF9wc6WQ.cOsFit33h3r9GZdCYQ8B3Q.iOkTaYYCBBWaWv9ZtDxpCL4ix4zMWwIYcIMuje17bYUcWom6plFOQFmG24WCucDMgbeMd_eM0NdttpHYRdl7VaM_E4zTUMViGInDWEO1ucI2whNYUt3Cf1Zev1851l44.eoIzam49yND7K-OzfY6Rag"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "SkyExploreWasTaken",
+ "discord": "1049263707177353247",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ae9lxcsRx9K7NJv-AcRXmgm-8sWQp-2e6Pxly82K9_797Wy3RjBtVGaq9snYtOkL-Qm9Oj845TiS8DV-ae7fPyWYwHgzrDj99tuRjVFyrvWfCbglvOWWHODsjV5lJpJZQjuHQn08O1Ptv69N5E2-imTQegZhcn5pkMiTCW8VpuXNXD_1Viu5_xSUYXYaAsaY-G0QYNLK3IPky8zorgdC4-5w23htVxmbiAMTtqHHOJx-wqv2R-xya96-BlQ_P8GtCTG5XJQzdqrqz630012T_tdD5VL5wbBbsCcWI4EoHqGZcBt4LhUL0GPnr9jnWuTcoBVyMSevG6plNjPF9wc6WQ.cOsFit33h3r9GZdCYQ8B3Q.iOkTaYYCBBWaWv9ZtDxpCL4ix4zMWwIYcIMuje17bYUcWom6plFOQFmG24WCucDMgbeMd_eM0NdttpHYRdl7VaM_E4zTUMViGInDWEO1ucI2whNYUt3Cf1Zev1851l44.eoIzam49yND7K-OzfY6Rag"
+ },
+ "record": {
+ "CNAME": "edge.redirect.pizza"
+ }
+}
diff --git a/domains/0x0.json b/domains/0x0.json
index 9eb86ab72..050170310 100644
--- a/domains/0x0.json
+++ b/domains/0x0.json
@@ -1,13 +1,13 @@
{
- "owner": {
- "username": "pythonmcpi",
- "email": "user3456@insomnia247.nl",
- "irc": "user3456@irc.insomnia247.nl/#shells",
- "discord": "Little Furret#7901",
- "note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
- },
- "description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
- "record": {
- "CNAME": "insomnia247.nl"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "pythonmcpi",
+ "email": "user3456@insomnia247.nl",
+ "irc": "user3456@irc.insomnia247.nl/#shells",
+ "discord": "Little Furret#7901",
+ "note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
+ },
+ "description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
+ "record": {
+ "CNAME": "insomnia247.nl"
+ }
+}
diff --git a/domains/0x1026.json b/domains/0x1026.json
index 3f7348f7d..268a804f7 100644
--- a/domains/0x1026.json
+++ b/domains/0x1026.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "0x1026",
- "email": "me@hugovidafe.dev"
- },
- "record": {
- "URL": "https://hugovidafe.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "0x1026",
+ "email": "me@hugovidafe.dev"
+ },
+ "record": {
+ "URL": "https://hugovidafe.dev"
+ }
+}
diff --git a/domains/0x3st.json b/domains/0x3st.json
index d61e03301..a9a3f8263 100644
--- a/domains/0x3st.json
+++ b/domains/0x3st.json
@@ -1,12 +1,12 @@
{
- "description": "Yamaishi's website",
- "repo": "https://github.com/0x3st/0x3st.github.io",
- "owner": {
- "username": "0x3st",
- "email": "t.yamaishi@qq.com",
- "twitter": "TenkutiYamaishi"
- },
- "record": {
- "CNAME": "0x3st.github.io"
- }
-}
\ No newline at end of file
+ "description": "Yamaishi's website",
+ "repo": "https://github.com/0x3st/0x3st.github.io",
+ "owner": {
+ "username": "0x3st",
+ "email": "t.yamaishi@qq.com",
+ "twitter": "TenkutiYamaishi"
+ },
+ "record": {
+ "CNAME": "0x3st.github.io"
+ }
+}
diff --git a/domains/0xarchit.json b/domains/0xarchit.json
new file mode 100644
index 000000000..965e8b8ad
--- /dev/null
+++ b/domains/0xarchit.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "0xarchit",
+ "email": "0xarchit@proton.me"
+ },
+ "record": {
+ "NS": [
+ "brenna.ns.cloudflare.com",
+ "cartman.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/0xbit.json b/domains/0xbit.json
new file mode 100644
index 000000000..97cf85c15
--- /dev/null
+++ b/domains/0xbit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "0xbitx",
+ "email": "0xbit25125@gmail.com"
+ },
+ "record": {
+ "CNAME": "0xbitx.github.io"
+ }
+}
diff --git a/domains/0xflotus.json b/domains/0xflotus.json
index 81e2e4341..ac0e446cc 100644
--- a/domains/0xflotus.json
+++ b/domains/0xflotus.json
@@ -1,11 +1,11 @@
{
- "description": "0xflotus' personal developer website",
- "repo": "https://github.com/0xflotus/0xflotus.github.io",
- "owner": {
- "username": "0xflotus",
- "email": "0xflotus@gmail.com"
- },
- "record": {
- "CNAME": "0xflotus.github.io"
- }
-}
\ No newline at end of file
+ "description": "0xflotus' personal developer website",
+ "repo": "https://github.com/0xflotus/0xflotus.github.io",
+ "owner": {
+ "username": "0xflotus",
+ "email": "0xflotus@gmail.com"
+ },
+ "record": {
+ "CNAME": "0xflotus.github.io"
+ }
+}
diff --git a/domains/0xviel.json b/domains/0xviel.json
index 519226a65..32f519919 100644
--- a/domains/0xviel.json
+++ b/domains/0xviel.json
@@ -1,12 +1,12 @@
{
- "description": "0xviel github page",
- "repo": "https://github.com/nobuyaki/nobuyaki.github.io",
- "owner": {
- "username": "nobuyaki",
- "email": "contact@0xviel.my.id",
- "discord": "445073800850046977"
- },
- "record": {
- "CNAME": "nobuyaki.github.io"
- }
-}
\ No newline at end of file
+ "description": "0xviel github page",
+ "repo": "https://github.com/nobuyaki/nobuyaki.github.io",
+ "owner": {
+ "username": "nobuyaki",
+ "email": "contact@0xviel.my.id",
+ "discord": "445073800850046977"
+ },
+ "record": {
+ "CNAME": "nobuyaki.github.io"
+ }
+}
diff --git a/domains/0xzer0x.json b/domains/0xzer0x.json
index e9fa05a7e..51d264430 100644
--- a/domains/0xzer0x.json
+++ b/domains/0xzer0x.json
@@ -1,16 +1,13 @@
{
- "owner": {
- "username": "0xzer0x",
- "email": "youssefessamasu@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.forwardemail.net",
- "mx2.forwardemail.net"
- ],
- "TXT": [
- "forward-email=youssefessamasu@gmail.com",
- "v=spf1 a include:spf.forwardemail.net include:_spf.google.com -all"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "0xzer0x",
+ "email": "youssefessamasu@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": [
+ "forward-email=youssefessamasu@gmail.com",
+ "v=spf1 a include:spf.forwardemail.net include:_spf.google.com -all"
+ ]
+ }
+}
diff --git a/domains/1.json b/domains/1.json
index 48c47754b..ccf0df602 100644
--- a/domains/1.json
+++ b/domains/1.json
@@ -1,12 +1,10 @@
{
- "description": "1.is-a.dev",
- "owner": {
- "username": "i-am-is-a-dev",
- "email": "lx737456@gmail.com"
- },
- "record": {
- "A": [
- "89.106.200.1"
- ]
- }
-}
\ No newline at end of file
+ "description": "1.is-a.dev",
+ "owner": {
+ "username": "i-am-is-a-dev",
+ "email": "lx737456@gmail.com"
+ },
+ "record": {
+ "A": ["89.106.200.1"]
+ }
+}
diff --git a/domains/1024.json b/domains/1024.json
new file mode 100644
index 000000000..d102db14c
--- /dev/null
+++ b/domains/1024.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "leopku",
+ "discord": "1168846640464019570"
+ },
+ "record": {
+ "URL": "https://www.himysql.com"
+ }
+}
diff --git a/domains/104.json b/domains/104.json
index 9f2b8f4c7..dfbcd6dcd 100644
--- a/domains/104.json
+++ b/domains/104.json
@@ -1,14 +1,14 @@
{
- "description": "Email thingy",
- "owner": {
- "username": "QuinceTart10",
- "discord": "862644161156218891"
- },
- "record": {
- "MX": [
- "a8aacaa795f68ffd.mx1.emailprofi.seznam.cz",
- "a8aacaa795f68ffd.mx2.emailprofi.seznam.cz"
- ],
- "TXT": "v=spf1 include:spf.seznam.cz ~all"
- }
-}
\ No newline at end of file
+ "description": "Email thingy",
+ "owner": {
+ "username": "QuinceTart10",
+ "discord": "862644161156218891"
+ },
+ "record": {
+ "MX": [
+ "a8aacaa795f68ffd.mx1.emailprofi.seznam.cz",
+ "a8aacaa795f68ffd.mx2.emailprofi.seznam.cz"
+ ],
+ "TXT": "v=spf1 include:spf.seznam.cz ~all"
+ }
+}
diff --git a/domains/111.json b/domains/111.json
new file mode 100644
index 000000000..a1c7d22df
--- /dev/null
+++ b/domains/111.json
@@ -0,0 +1,11 @@
+{
+ "description": "This domain is my bios webpage created using html, js and css",
+ "repo": "https://github.com/jaycuh/jaycuh.github.io",
+ "owner": {
+ "username": "joaawd",
+ "email": "fmodeteam@gmail.com"
+ },
+ "record": {
+ "CNAME": "jaycuh.github.io"
+ }
+}
diff --git a/domains/1111.json b/domains/1111.json
index 190c8cb22..03845c585 100644
--- a/domains/1111.json
+++ b/domains/1111.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "PogMaster9001",
- "discord": "1190052608346435597"
- },
- "record": {
- "CNAME": "projectdevs.net"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "PogMaster9001",
+ "discord": "1190052608346435597"
+ },
+ "record": {
+ "CNAME": "projectdevs.net"
+ }
+}
diff --git a/domains/13nn07.json b/domains/13nn07.json
index b1a4cebc1..ddf8a01a7 100644
--- a/domains/13nn07.json
+++ b/domains/13nn07.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Website",
- "repo": "https://github.com/navandarnidhi/navandarnidhi.github.io",
- "owner": {
- "username": "navandarnidhi",
- "email": "nidhi.navandar@mescoeorg.onmicrsoft.com"
- },
- "record": {
- "CNAME": "navandarnidhi.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Website",
+ "repo": "https://github.com/navandarnidhi/navandarnidhi.github.io",
+ "owner": {
+ "username": "navandarnidhi",
+ "email": "nidhi.navandar@mescoeorg.onmicrsoft.com"
+ },
+ "record": {
+ "CNAME": "navandarnidhi.github.io"
+ }
+}
diff --git a/domains/1995parham.json b/domains/1995parham.json
new file mode 100644
index 000000000..a5dbabef4
--- /dev/null
+++ b/domains/1995parham.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website",
+ "owner": {
+ "username": "1995parham",
+ "email": "parham.alvani@gmail.com"
+ },
+ "record": {
+ "CNAME": "1995parham.github.io"
+ }
+}
diff --git a/domains/1ndrajeet.json b/domains/1ndrajeet.json
new file mode 100644
index 000000000..e03a271ba
--- /dev/null
+++ b/domains/1ndrajeet.json
@@ -0,0 +1,12 @@
+{
+ "description": "Applying for an is-a.dev domain for my portfolio. (1ndrajeet.vercel.app)",
+ "repo": "https://github.com/1ndrajeet/1ndrajeet.github.io",
+ "owner": {
+ "username": "1ndrajeet",
+ "email": "omkar.kulkarni.3174@gmail.com"
+ },
+ "record": {
+ "CNAME": "1ndrajeet.vercel.app"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/1rogman.json b/domains/1rogman.json
index c19edc907..573650b56 100644
--- a/domains/1rogman.json
+++ b/domains/1rogman.json
@@ -1,11 +1,11 @@
{
- "description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.",
- "repo": "https://github.com/EndingPencil/EndingPencil.github.io",
- "owner": {
- "username": "EndingPencil",
- "email": "watsonsohil@gmail.com"
- },
- "record": {
- "CNAME": "endingpencil.github.io"
- }
-}
\ No newline at end of file
+ "description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.",
+ "repo": "https://github.com/EndingPencil/EndingPencil.github.io",
+ "owner": {
+ "username": "EndingPencil",
+ "email": "watsonsohil@gmail.com"
+ },
+ "record": {
+ "CNAME": "endingpencil.github.io"
+ }
+}
diff --git a/domains/1tfr.json b/domains/1tfr.json
index 9e26ff316..d53bad6cd 100644
--- a/domains/1tfr.json
+++ b/domains/1tfr.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "gimmywashere",
- "discord": "792467650038857748",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G8bQtlAC_K5K-sdnpRQFXtq9H-BJAxXswVmMcZl9dCd4Mx8utIM-wKg-rI20met2wnfK6SNI1dMIFOkdSflITyde93ET8gWwAJNGp18vBl7f416oU7agxTocIXnYiEepVXe2xAqu42dz5eazX_3e_TGFAayBW6mFynhUd2WvFFFIv-BQX1Lh2kTETnV0LBC27Zeiy3J2Nb-9zFyIGgx-I9qars-Q3W2gPwioDbyTc34HWrZrb-v4gDGGEkzCGaO2ct9W7b8BFdWHqsUua3SD59Yec6r8ytCLRpfJp-griYtdKprGl1Md71alh2ntZc8bjXJ6f4dZl_sLvPAArFfvUw.1H7oEmNDK3MLdFoNadP2Kg.xDYLtCuquekDlq9YaIxM63iY2YMEFWd91CxxwuO7uwk8qc9hbQWqBuXA0MQfG_3NRyarb8nNgMGEj0ghKyfxSm1YWQ8M4PK5OPQTub54LiU.8CgG1B1Jv04SYfXkFJhAZQ"
- },
- "record": {
- "CNAME": "ammo.lol"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "gimmywashere",
+ "discord": "792467650038857748",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G8bQtlAC_K5K-sdnpRQFXtq9H-BJAxXswVmMcZl9dCd4Mx8utIM-wKg-rI20met2wnfK6SNI1dMIFOkdSflITyde93ET8gWwAJNGp18vBl7f416oU7agxTocIXnYiEepVXe2xAqu42dz5eazX_3e_TGFAayBW6mFynhUd2WvFFFIv-BQX1Lh2kTETnV0LBC27Zeiy3J2Nb-9zFyIGgx-I9qars-Q3W2gPwioDbyTc34HWrZrb-v4gDGGEkzCGaO2ct9W7b8BFdWHqsUua3SD59Yec6r8ytCLRpfJp-griYtdKprGl1Md71alh2ntZc8bjXJ6f4dZl_sLvPAArFfvUw.1H7oEmNDK3MLdFoNadP2Kg.xDYLtCuquekDlq9YaIxM63iY2YMEFWd91CxxwuO7uwk8qc9hbQWqBuXA0MQfG_3NRyarb8nNgMGEj0ghKyfxSm1YWQ8M4PK5OPQTub54LiU.8CgG1B1Jv04SYfXkFJhAZQ"
+ },
+ "record": {
+ "CNAME": "ammo.lol"
+ }
+}
diff --git a/domains/2.json b/domains/2.json
index 673f0eaf2..35f77f4ad 100644
--- a/domains/2.json
+++ b/domains/2.json
@@ -1,10 +1,10 @@
{
- "description": "LIGMATV's URL Manager (aka 2)",
- "owner": {
- "username": "LIGMATV",
- "email": "ligmatv.id@gmail.com"
- },
- "record": {
- "CNAME": "ligmatv-links.vercel.app"
- }
-}
\ No newline at end of file
+ "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/200anxy.json b/domains/200anxy.json
index 42aac12cc..476e8e5f6 100644
--- a/domains/200anxy.json
+++ b/domains/200anxy.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "200anxy",
- "email": "aadarshnair.p@gmail.com"
- },
- "record": {
- "CNAME": "200anxy.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "200anxy",
+ "email": "aadarshnair.p@gmail.com"
+ },
+ "record": {
+ "CNAME": "200anxy.github.io"
+ }
+}
diff --git a/domains/207.json b/domains/207.json
index 3b42dda9d..92fec3e09 100644
--- a/domains/207.json
+++ b/domains/207.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "merakesh207",
- "email": "merakesh207@gmail.com"
- },
- "record": {
- "URL": "https://behance.net/merakesh207"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "merakesh207",
+ "email": "merakesh207@gmail.com"
+ },
+ "record": {
+ "URL": "https://behance.net/merakesh207"
+ }
+}
diff --git a/domains/2096779623.json b/domains/2096779623.json
index d1e12983c..f474ee3dc 100644
--- a/domains/2096779623.json
+++ b/domains/2096779623.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "2096779623",
- "email": "2096779623@qq.com",
- "telegram": "utermux_blog"
- },
- "record": {
- "URL": "https://www.utermux.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "2096779623",
+ "email": "2096779623@qq.com",
+ "telegram": "utermux_blog"
+ },
+ "record": {
+ "URL": "https://www.utermux.dev"
+ }
+}
diff --git a/domains/20zzy19.json b/domains/20zzy19.json
new file mode 100644
index 000000000..87fa27e4d
--- /dev/null
+++ b/domains/20zzy19.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio and Blog for 20zzy19",
+ "repo": "https://github.com/20zzy19/Portfolioy",
+ "owner": {
+ "username": "20zzy19",
+ "email": "a620zzy@gmail.com"
+ },
+ "record": {
+ "A": ["98.43.59.193"]
+ }
+}
diff --git a/domains/21z.json b/domains/21z.json
index 576233f5c..17b36cb16 100644
--- a/domains/21z.json
+++ b/domains/21z.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "21Z",
- "discord": "780356848737058857"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "21Z",
+ "discord": "780356848737058857"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/256javy.json b/domains/256javy.json
index 274bc666d..08d4f614c 100644
--- a/domains/256javy.json
+++ b/domains/256javy.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/256javy/256javy.github.io",
- "owner": {
- "username": "256javy",
- "email": "256javiervillalba@gmail.com"
- },
- "record": {
- "CNAME": "256javy.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/256javy/256javy.github.io",
+ "owner": {
+ "username": "256javy",
+ "email": "256javiervillalba@gmail.com"
+ },
+ "record": {
+ "CNAME": "256javy.github.io"
+ }
+}
diff --git a/domains/2giosangmitom.json b/domains/2giosangmitom.json
index 314f5d37c..48468e286 100644
--- a/domains/2giosangmitom.json
+++ b/domains/2giosangmitom.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "2giosangmitom",
- "email": "yeuxacucodon.dev@proton.me"
- },
- "record": {
- "CNAME": "2giosangmitom.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "2giosangmitom",
+ "email": "2giosangmitom@gmail.com"
+ },
+ "record": {
+ "CNAME": "blog-o7t.pages.dev"
+ }
+}
diff --git a/domains/37cut.json b/domains/37cut.json
index 90b2b32df..9a9bc8d7f 100644
--- a/domains/37cut.json
+++ b/domains/37cut.json
@@ -1,11 +1,11 @@
{
- "description": "Url redirect to cutt37.is-a.dev",
- "repo": "https://github.com/37cut/37cut.github.io",
- "owner": {
- "username": "37cut",
- "email": "cutt37@outlook.com"
- },
- "record": {
- "URL": "https://cutt37.is-a.dev"
- }
-}
\ No newline at end of file
+ "description": "Url redirect to cutt37.is-a.dev",
+ "repo": "https://github.com/37cut/37cut.github.io",
+ "owner": {
+ "username": "37cut",
+ "email": "cutt37@outlook.com"
+ },
+ "record": {
+ "URL": "https://cutt37.is-a.dev"
+ }
+}
diff --git a/domains/3gee.json b/domains/3gee.json
index 18b2563a6..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "3geETR",
+ "email": "egemacun@gmail.com"
+ },
+ "record": {
+ "CNAME": "3geetr.github.io"
+ }
+}
diff --git a/domains/3pls0de.json b/domains/3pls0de.json
index 0a9ceb2ec..ac8a733b0 100644
--- a/domains/3pls0de.json
+++ b/domains/3pls0de.json
@@ -1,11 +1,10 @@
{
- "description": "3pls0de.is-a.dev.",
- "repo": "https://github.com/3pls0de",
- "owner": {
- "username": "3pls0de",
- "email": "naji.aka58@gmail.com"
- },
- "record": {
- "URL": "https://lostpipel.blogspot.com"
- }
-}
\ No newline at end of file
+ "description": "3pls0de.is-a.dev.",
+ "owner": {
+ "username": "3pls0de",
+ "email": "naji.aka58@gmail.com"
+ },
+ "record": {
+ "URL": "https://lostpipel.blogspot.com"
+ }
+}
diff --git a/domains/4-m4t.json b/domains/4-m4t.json
index c1d3fe0ab..9a6c53bf3 100644
--- a/domains/4-m4t.json
+++ b/domains/4-m4t.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "4-m4t",
- "email": "e_serhat@hotmail.com"
- },
- "record": {
- "CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "4-m4t",
+ "email": "e_serhat@hotmail.com"
+ },
+ "record": {
+ "CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net"
+ }
+}
diff --git a/domains/404.json b/domains/404.json
index 89e91367f..2ef34e830 100644
--- a/domains/404.json
+++ b/domains/404.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "404Dev-404",
- "email": "anthonyvaldes318+404@gmail.com"
- },
- "record": {
- "CNAME": "404dev-404.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "404Dev-404",
+ "email": "anthonyvaldes318+404@gmail.com"
+ },
+ "record": {
+ "CNAME": "404dev-404.github.io"
+ }
+}
diff --git a/domains/44.json b/domains/44.json
index 13e343811..348a95092 100644
--- a/domains/44.json
+++ b/domains/44.json
@@ -1,11 +1,11 @@
{
- "description": "44.is-a.dev",
- "repo": "https://github.com/9xN/9xN.github.io",
- "owner": {
- "username": "9xN",
- "email": "0@fbi.ac"
- },
- "record": {
- "CNAME": "9xn.github.io"
- }
-}
\ No newline at end of file
+ "description": "44.is-a.dev",
+ "repo": "https://github.com/9xN/9xN.github.io",
+ "owner": {
+ "username": "9xN",
+ "email": "0@fbi.ac"
+ },
+ "record": {
+ "CNAME": "9xn.github.io"
+ }
+}
diff --git a/domains/45i.json b/domains/45i.json
index 729040503..85d56fc8e 100644
--- a/domains/45i.json
+++ b/domains/45i.json
@@ -1,11 +1,11 @@
{
- "description": "45i.is-a.dev",
- "repo": "https://github.com/45i/things",
- "owner": {
- "username": "45i",
- "email": "sayakpalit61@gmail.com"
- },
- "record": {
- "CNAME": "45i.github.io"
- }
-}
\ No newline at end of file
+ "description": "45i.is-a.dev",
+ "repo": "https://github.com/45i/things",
+ "owner": {
+ "username": "45i",
+ "email": "sayakpalit61@gmail.com"
+ },
+ "record": {
+ "CNAME": "45i.github.io"
+ }
+}
diff --git a/domains/4hmet.json b/domains/4hmet.json
new file mode 100644
index 000000000..d2172911f
--- /dev/null
+++ b/domains/4hmet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ahmetunsal",
+ "email": "web.unsalahmet@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/4k5h4y.json b/domains/4k5h4y.json
index cb097ed3a..4a6670734 100644
--- a/domains/4k5h4y.json
+++ b/domains/4k5h4y.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Akshay-Arjun",
- "email": "akshayvollala779@gmail.com"
- },
- "record": {
- "URL": "https://akshay-arjun.github.io/Akshay-Arjun"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Akshay-Arjun",
+ "email": "akshayvollala779@gmail.com"
+ },
+ "record": {
+ "URL": "https://akshay-arjun.github.io/Akshay-Arjun"
+ }
+}
diff --git a/domains/50x.json b/domains/50x.json
index 032d39215..753d855b4 100644
--- a/domains/50x.json
+++ b/domains/50x.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "MullerIsabella",
- "email": "AlpineDreamer92@protonmail.com"
- },
- "record": {
- "CNAME": "suisse.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "MullerIsabella",
+ "email": "AlpineDreamer92@protonmail.com"
+ },
+ "record": {
+ "CNAME": "suisse.onrender.com"
+ }
+}
diff --git a/domains/57.json b/domains/57.json
index 1e9c960a2..6b4cd2492 100644
--- a/domains/57.json
+++ b/domains/57.json
@@ -1,11 +1,20 @@
{
- "owner": {
- "username": "fiftys7vencode",
- "email": "potatogamer34579@gmail.com"
- },
- "record": {
- "A": [
- "185.199.108.153"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "fiftys7vencode",
+ "email": "potatogamer34579@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ]
+ }
+}
diff --git a/domains/6.json b/domains/6.json
index 2f2acf16b..ecafdb143 100644
--- a/domains/6.json
+++ b/domains/6.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "shockbs",
- "discord": "880084860327313459"
- },
- "record": {
- "URL": "https://shockbs.is-a.dev/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "shockbs",
+ "discord": "880084860327313459"
+ },
+ "record": {
+ "URL": "https://shockbs.is-a.dev/"
+ }
+}
diff --git a/domains/600.json b/domains/600.json
index 40700f3e7..6df43d890 100644
--- a/domains/600.json
+++ b/domains/600.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/5rq/5rq.github.io",
- "owner": {
- "username": "5rq",
- "email": "600@fbi.ac"
- },
- "record": {
- "CNAME": "5rq.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/5rq/5rq.github.io",
+ "owner": {
+ "username": "5rq",
+ "email": "600@fbi.ac"
+ },
+ "record": {
+ "CNAME": "5rq.github.io"
+ }
+}
diff --git a/domains/62radio.json b/domains/62radio.json
index 7e9953c6e..5d3264644 100644
--- a/domains/62radio.json
+++ b/domains/62radio.json
@@ -1,12 +1,12 @@
{
- "description": "62radio.is-a.dev",
- "repo": "https://github.com/radio-indonesia/radio-indonesia.github.io",
- "owner": {
- "username": "lrmn7",
- "email": "lrmn.dev@gmail.com",
- "discord": "romanromannya#0"
- },
- "record": {
- "CNAME": "radio-indonesia.github.io"
- }
-}
\ No newline at end of file
+ "description": "62radio.is-a.dev",
+ "repo": "https://github.com/radio-indonesia/radio-indonesia.github.io",
+ "owner": {
+ "username": "lrmn7",
+ "email": "lrmn.dev@gmail.com",
+ "discord": "romanromannya#0"
+ },
+ "record": {
+ "CNAME": "radio-indonesia.github.io"
+ }
+}
diff --git a/domains/6502.json b/domains/6502.json
index 2b2c77456..8843bd54d 100644
--- a/domains/6502.json
+++ b/domains/6502.json
@@ -1,11 +1,11 @@
{
- "description": "Portfolio website for 6502",
- "repo": "https://github.com/nobody5050/nobody5050.github.io",
- "owner": {
- "username": "Nobody5050",
- "email": "levibelland@gmail.com"
- },
- "record": {
- "CNAME": "nobody5050.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio website for 6502",
+ "repo": "https://github.com/nobody5050/nobody5050.github.io",
+ "owner": {
+ "username": "Nobody5050",
+ "email": "levibelland@gmail.com"
+ },
+ "record": {
+ "CNAME": "nobody5050.github.io"
+ }
+}
diff --git a/domains/7.json b/domains/7.json
index 5f3fc3f41..ac6d8be91 100644
--- a/domains/7.json
+++ b/domains/7.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "realSunyz",
- "discord": "800186537719365662",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lcA-FDIDxbODMySbmJgJOi2oJl04JAODrUgFTVwXa0w-jncbJ6Frvykm7oGVxqKmtOMnRJD7wVTl1Sfr-Y-nOAmN0ZY6FNW1vR1kwY1x_sXLnko9S_t-p0dgZ7lo1cVI1TcL2Z0C7yGOgK06U02dB7tN-m9piRa2cf09QM35oLm8_UZvTeZeCLRJnzTG3FVK0yosy38oXIk0c3oNgEkgufTQZDJgmh4lU4Ws8qmCdrqzRCFFUoNarx_6Q3y22we1x_zr4fGGqarv2lVZOz7DR0_zDK7jrsoC4-42sM_WnECfCVGxyMPeWbNlQyrfqzJjcM2MvKwodx5KbJBHOkRhoA.6n1HQotWwFwdkIu61eaz4A.T-S96mKQwHRD78Xq-8h1htrsFx8PI5XxRneVrP_yed28BIRAtjcNLNvj4CwwaewrNeRp8MBDVYAjKKl79gDZSvnX7SuusOU2Cj82tFkpdJeR_vyqTyODUx5rIIMtD2p5.5MxztQbJrVaqmRuW6e57Cg"
- },
- "record": {
- "CNAME": "pub-seven-intro.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "realSunyz",
+ "discord": "800186537719365662",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lcA-FDIDxbODMySbmJgJOi2oJl04JAODrUgFTVwXa0w-jncbJ6Frvykm7oGVxqKmtOMnRJD7wVTl1Sfr-Y-nOAmN0ZY6FNW1vR1kwY1x_sXLnko9S_t-p0dgZ7lo1cVI1TcL2Z0C7yGOgK06U02dB7tN-m9piRa2cf09QM35oLm8_UZvTeZeCLRJnzTG3FVK0yosy38oXIk0c3oNgEkgufTQZDJgmh4lU4Ws8qmCdrqzRCFFUoNarx_6Q3y22we1x_zr4fGGqarv2lVZOz7DR0_zDK7jrsoC4-42sM_WnECfCVGxyMPeWbNlQyrfqzJjcM2MvKwodx5KbJBHOkRhoA.6n1HQotWwFwdkIu61eaz4A.T-S96mKQwHRD78Xq-8h1htrsFx8PI5XxRneVrP_yed28BIRAtjcNLNvj4CwwaewrNeRp8MBDVYAjKKl79gDZSvnX7SuusOU2Cj82tFkpdJeR_vyqTyODUx5rIIMtD2p5.5MxztQbJrVaqmRuW6e57Cg"
+ },
+ "record": {
+ "CNAME": "pub-seven-intro.pages.dev"
+ }
+}
diff --git a/domains/7z.json b/domains/7z.json
index 98b8d9bcb..16387d294 100644
--- a/domains/7z.json
+++ b/domains/7z.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "XikiZxGS",
- "discord": "1015654462334971925",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kNjv0EEp6UIN8_jPk0TdLMyTslpHdTnysn-P5MDOuH0LfVqLDOyN99OFSrg2vYYuiUM5-4DcKlgbkkL0058Fq241CIaKmwnabVQ2tcEch4QNl3jEbUDUP9sNp6h-D7_AQjHPTnW8P297FrZ2sNkJLabJ5hTgeEuns8CypzoVOy8I6GwdC6aL2OXLwl21L-CEUKHrO0CvLi-OGWp4Lkx1IowXksW8o-y91NKgmal6t7Qxp2K89pJ0byiXIpu9L1aNBYKNfR_Q5_rPmr9XWMiVBojgyog8YPmmweAYO1kViNPJLSZHIth1pOEM2fjZQzaWAUdqK-AgRYyPld0RuutfDw.3zQYmH_sLC-vr73VkslM0A.LDOyObkmMtZ3W48zwT9bVwhqMZsy21eW2CfjUy4k9tRm0XYJqT6GQLt-PeQ9yPcP9TIFDm4TvyZTrMewZCOs1hHrRKHbJnxSdekzx2Hnb_Y.ZglWFD_r-t4Zwp9ojse5Gg"
- },
- "record": {
- "CNAME": "xikizxgs.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "XikiZxGS",
+ "discord": "1015654462334971925",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kNjv0EEp6UIN8_jPk0TdLMyTslpHdTnysn-P5MDOuH0LfVqLDOyN99OFSrg2vYYuiUM5-4DcKlgbkkL0058Fq241CIaKmwnabVQ2tcEch4QNl3jEbUDUP9sNp6h-D7_AQjHPTnW8P297FrZ2sNkJLabJ5hTgeEuns8CypzoVOy8I6GwdC6aL2OXLwl21L-CEUKHrO0CvLi-OGWp4Lkx1IowXksW8o-y91NKgmal6t7Qxp2K89pJ0byiXIpu9L1aNBYKNfR_Q5_rPmr9XWMiVBojgyog8YPmmweAYO1kViNPJLSZHIth1pOEM2fjZQzaWAUdqK-AgRYyPld0RuutfDw.3zQYmH_sLC-vr73VkslM0A.LDOyObkmMtZ3W48zwT9bVwhqMZsy21eW2CfjUy4k9tRm0XYJqT6GQLt-PeQ9yPcP9TIFDm4TvyZTrMewZCOs1hHrRKHbJnxSdekzx2Hnb_Y.ZglWFD_r-t4Zwp9ojse5Gg"
+ },
+ "record": {
+ "CNAME": "xikizxgs.github.io"
+ }
+}
diff --git a/domains/8bit.json b/domains/8bit.json
index f36547d7e..3645a0037 100644
--- a/domains/8bit.json
+++ b/domains/8bit.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "8-bittt",
- "email": "8botted@gmail.com"
- },
- "record": {
- "URL": "https://replit.com/@8bittt?path="
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "8-bittt",
+ "email": "8botted@gmail.com"
+ },
+ "record": {
+ "URL": "https://replit.com/@8bittt?path="
+ }
+}
diff --git a/domains/@.json b/domains/@.json
index ff7792d10..1a39a92d6 100644
--- a/domains/@.json
+++ b/domains/@.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "is-a-dev",
- "email": "admin@is-a.dev"
- },
- "record": {
- "CNAME": "is-a-dev.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "is-a-dev",
+ "email": "admin@is-a.dev"
+ },
+ "record": {
+ "CNAME": "is-a-dev.github.io"
+ }
+}
diff --git a/domains/_acme-challenge.analytics.juststudio.json b/domains/_acme-challenge.analytics.juststudio.json
new file mode 100644
index 000000000..6e9fc4a9c
--- /dev/null
+++ b/domains/_acme-challenge.analytics.juststudio.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "CNAME": "78515120d374647d2302076e._acme.deno.dev"
+ }
+}
diff --git a/domains/_atproto.exyxz.json b/domains/_atproto.exyxz.json
new file mode 100644
index 000000000..74596a070
--- /dev/null
+++ b/domains/_atproto.exyxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "exyxz",
+ "discord": "exyxz"
+ },
+ "record": {
+ "TXT": "did=did:plc:73r55srxmmlhhiof7fnllisy"
+ }
+}
\ No newline at end of file
diff --git a/domains/_atproto.ligmatv.json b/domains/_atproto.ligmatv.json
deleted file mode 100644
index 1d0d9b048..000000000
--- a/domains/_atproto.ligmatv.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Domain verification for my Bluesky account.",
- "owner": {
- "username": "LIGMATV",
- "email": "ligmatv.id@gmail.com"
- },
- "record": {
- "TXT": "did=did:plc:pibkszlhfix34y257kqcozix"
- }
-}
diff --git a/domains/_atproto.lua.json b/domains/_atproto.lua.json
new file mode 100644
index 000000000..3a8344b22
--- /dev/null
+++ b/domains/_atproto.lua.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "notxlua",
+ "email": "notxlua@gmail.com"
+ },
+ "record": {
+ "TXT": "did=did:plc:j7iap5lpvblnrr7lygisgjzp"
+ }
+}
diff --git a/domains/_atproto.lumi.json b/domains/_atproto.lumi.json
index 7c80a4563..1a19c7d60 100644
--- a/domains/_atproto.lumi.json
+++ b/domains/_atproto.lumi.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "itsFatlum",
+ "username": "itssfatlum",
"email": "fatlum@lumi.is-a.dev"
},
"record": {
diff --git a/domains/_atproto.narasima.json b/domains/_atproto.narasima.json
index d59d2c77f..4b2ed47b1 100644
--- a/domains/_atproto.narasima.json
+++ b/domains/_atproto.narasima.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "NarasimaPandiyan",
- "email": "cs42059@gmail.com",
- "discord": "gamingdoodle"
- },
- "record": {
- "TXT": "did=did:plc:u5uxl7mjlywolajtgso2ouoe"
- }
+ "owner": {
+ "username": "NarasimaPandiyan",
+ "email": "cs42059@gmail.com",
+ "discord": "gamingdoodle"
+ },
+ "record": {
+ "TXT": "did=did:plc:u5uxl7mjlywolajtgso2ouoe"
+ }
}
diff --git a/domains/_atproto.notcoded.json b/domains/_atproto.notcoded.json
new file mode 100644
index 000000000..293c22341
--- /dev/null
+++ b/domains/_atproto.notcoded.json
@@ -0,0 +1,11 @@
+{
+ "description": "domain verification for bluesky",
+ "owner": {
+ "username": "not-coded",
+ "discord": "notcoded",
+ "discordUserID": "620662953347121163"
+ },
+ "record": {
+ "TXT": "did=did:plc:hvgfiqmdl5sqcba2453dfpxe"
+ }
+}
diff --git a/domains/_atproto.priyanshu.json b/domains/_atproto.priyanshu.json
new file mode 100644
index 000000000..d56ee1548
--- /dev/null
+++ b/domains/_atproto.priyanshu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Priyansxu",
+ "email": "priyansxu@yahoo.com"
+ },
+ "record": {
+ "TXT": "did=did:plc:psimj7hgshwoets2jvd6caib"
+ }
+}
diff --git a/domains/_discord.abeja.json b/domains/_discord.abeja.json
new file mode 100644
index 000000000..7bf6c29ae
--- /dev/null
+++ b/domains/_discord.abeja.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "TheRealCrazyfuy",
+ "discord": "realabeja",
+ "reddit": "crazyfuy"
+ },
+ "record": {
+ "TXT": "dh=af03f42bbbaaca145280cdd080f105feb02a9145"
+ }
+}
diff --git a/domains/_discord.agent.json b/domains/_discord.agent.json
new file mode 100644
index 000000000..78a6dde33
--- /dev/null
+++ b/domains/_discord.agent.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "relentiousdragon",
+ "email": "relentoor@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=a261e0bde9e7d78a88462fda3c35222a35a348de"
+ }
+}
diff --git a/domains/_discord.amitkr.json b/domains/_discord.amitkr.json
new file mode 100644
index 000000000..3c48a408a
--- /dev/null
+++ b/domains/_discord.amitkr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "buddhhu",
+ "email": "amitsharma123234@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=5b4d2c16d6e0595278e1eb813028b9de2e442e4c"
+ }
+}
\ No newline at end of file
diff --git a/domains/_discord.arlan.json b/domains/_discord.arlan.json
new file mode 100644
index 000000000..6ce9e19e6
--- /dev/null
+++ b/domains/_discord.arlan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "handikatriarlan",
+ "email": "handikaarlan@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=bc2dcf8fbcb6ee4e4d77621a0f2369571bc03416"
+ }
+}
diff --git a/domains/_discord.arsenobetaine.json b/domains/_discord.arsenobetaine.json
new file mode 100644
index 000000000..d7c22bf47
--- /dev/null
+++ b/domains/_discord.arsenobetaine.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "arsenobetaine",
+ "email": "arsenobetaine@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=a7836fe0f1ee1642624faaa1e95fedba6f53f907"
+ }
+}
diff --git a/domains/_discord.bio.json b/domains/_discord.bio.json
new file mode 100644
index 000000000..b13b582ed
--- /dev/null
+++ b/domains/_discord.bio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "octyn-yt",
+ "email": "simplelogin-newsletter.idealize471@simplelogin.com"
+ },
+ "record": {
+ "TXT": "dh=501251d3fa61ce8fb7a761606b9aa5e707eacd96"
+ }
+}
diff --git a/domains/_discord.bladimir.json b/domains/_discord.bladimir.json
new file mode 100644
index 000000000..ef601dc8a
--- /dev/null
+++ b/domains/_discord.bladimir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Esbruiz",
+ "email": "esbruizc@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=5421aaf1ad1aa267e9aa3d19c55d3762a0c5d8f8"
+ }
+}
diff --git a/domains/_discord.bryce.json b/domains/_discord.bryce.json
new file mode 100644
index 000000000..16056b449
--- /dev/null
+++ b/domains/_discord.bryce.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GitHubFanTest",
+ "email": "feelingbloxyburger24@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=7b870ea5ded2a7388f1def1fda8cfbf816f3dfe0"
+ }
+}
diff --git a/domains/_discord.cally.json b/domains/_discord.cally.json
new file mode 100644
index 000000000..efb6a94ad
--- /dev/null
+++ b/domains/_discord.cally.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cally-jt",
+ "email": "callumjt@proton.me"
+ },
+ "record": {
+ "TXT": "dh=ad9865a1b510eca9917556bd35b8e60d089d3888"
+ }
+}
diff --git a/domains/_discord.codesoft.json b/domains/_discord.codesoft.json
new file mode 100644
index 000000000..4053bf018
--- /dev/null
+++ b/domains/_discord.codesoft.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CodeSoftGit",
+ "email": "codesft@proton.me"
+ },
+ "record": {
+ "TXT": "dh=1d1f0586f56693138d2014b13312d7467fa4e497"
+ }
+}
diff --git a/domains/_discord.colin.json b/domains/_discord.colin.json
new file mode 100644
index 000000000..44e17ad6b
--- /dev/null
+++ b/domains/_discord.colin.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "ColinLeDev"
+ },
+ "record": {
+ "TXT": ["dh=f51bcf0f0dac685ca2a69541d3981cd689a1e96a"]
+ }
+}
diff --git a/domains/_discord.devmatei.json b/domains/_discord.devmatei.json
deleted file mode 100644
index 839e96167..000000000
--- a/domains/_discord.devmatei.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "devmatei",
- "email": "matei.thoma@gmail.com"
- },
- "record": {
- "TXT": ["dh=7b59d54719ce94db5cc653b7439d2e090f724c7a"]
- }
-}
diff --git a/domains/_discord.ducky.json b/domains/_discord.ducky.json
index 3a1d57fca..dd1dc9dbd 100644
--- a/domains/_discord.ducky.json
+++ b/domains/_discord.ducky.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ducky4life",
- "email": "duckylai@proton.me"
- },
- "record": {
- "TXT": "dh=925876829c7314b41fe3c2a412b7a4250214febf"
- }
+ "owner": {
+ "username": "ducky4life",
+ "email": "duckylai@proton.me"
+ },
+ "record": {
+ "TXT": "dh=925876829c7314b41fe3c2a412b7a4250214febf"
+ }
}
diff --git a/domains/_discord.exyxz.json b/domains/_discord.exyxz.json
new file mode 100644
index 000000000..45579e273
--- /dev/null
+++ b/domains/_discord.exyxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "exyxz",
+ "discord": "exyxz"
+ },
+ "record": {
+ "TXT": "dh=529be62f885915368b4b5c20beaef95a1c55ea98"
+ }
+}
\ No newline at end of file
diff --git a/domains/_discord.fryvex.json b/domains/_discord.fryvex.json
new file mode 100644
index 000000000..e332679da
--- /dev/null
+++ b/domains/_discord.fryvex.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "x1yl",
+ "discord": "627947214576025610"
+ },
+ "record": {
+ "TXT": "dh=8ce5db15dc011d17526c81dfeccab48d20447344"
+ }
+}
diff --git a/domains/_discord.harunabdullah.json b/domains/_discord.harunabdullah.json
new file mode 100644
index 000000000..e1922283a
--- /dev/null
+++ b/domains/_discord.harunabdullah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "harunabdullahrakin",
+ "email": "harunabdullahrakin@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=08ca7b2a348ba12437193e6d84e9b819dc75da31"
+ }
+}
diff --git a/domains/_discord.heyaxo.json b/domains/_discord.heyaxo.json
new file mode 100644
index 000000000..2f93a079e
--- /dev/null
+++ b/domains/_discord.heyaxo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "verygafanhot",
+ "email": "verygafanhot@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=772e8981e6a0b8bc4e30ac4af5160be7fd175c8a"
+ }
+}
diff --git a/domains/_discord.imm0nv1nhtv.json b/domains/_discord.imm0nv1nhtv.json
deleted file mode 100644
index dcce76bce..000000000
--- a/domains/_discord.imm0nv1nhtv.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "imm0nv1nhtv",
- "email": "windows10phamvinh+github@gmail.com"
- },
- "record": {
- "TXT": "dh=05d77c5d6895f487e96ea956a6a985fa532fa0ee"
- }
-}
diff --git a/domains/_discord.imnahn.json b/domains/_discord.imnahn.json
new file mode 100644
index 000000000..b917f3bb1
--- /dev/null
+++ b/domains/_discord.imnahn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "imnotnahn",
+ "email": "thanhnhan.contact.work@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=04c429a9247eee97c4db2597f0bdf22e28a949a1"
+ }
+}
diff --git a/domains/_discord.jeff.json b/domains/_discord.jeff.json
index 0962f55b7..9b3b55a93 100644
--- a/domains/_discord.jeff.json
+++ b/domains/_discord.jeff.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "PentSec",
- "email": "jeffreysfu@gmail.com"
- },
- "record": {
- "TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "PentSec",
+ "email": "jeffreysfu@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824"
+ }
+}
diff --git a/domains/_discord.jumanji.json b/domains/_discord.jumanji.json
new file mode 100644
index 000000000..345aa2749
--- /dev/null
+++ b/domains/_discord.jumanji.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "heyjumanji",
+ "email": "madhuchutiya.unhinge650@silomails.com"
+ },
+ "record": {
+ "TXT": "dh=aa51fc97861c871fc4daece76efa42c15712f116"
+ }
+}
diff --git a/domains/_discord.justdeveloper.json b/domains/_discord.justdeveloper.json
index dd6ef3666..9dfa8c4ff 100644
--- a/domains/_discord.justdeveloper.json
+++ b/domains/_discord.justdeveloper.json
@@ -1,7 +1,7 @@
{
"owner": {
"username": "JustDeveloper1",
- "email": "lk.qq@ya.ru"
+ "email": "justdeveloper@juststudio.is-a.dev"
},
"record": {
"TXT": "dh=a468556178a0bac462fa84043545b67b982e7fe0"
diff --git a/domains/_discord.kona.json b/domains/_discord.kona.json
new file mode 100644
index 000000000..dc6eb3c5f
--- /dev/null
+++ b/domains/_discord.kona.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "konaa0",
+ "discord": "1149438819834269856",
+ "bluesky": "vornexx.has.fish"
+ },
+ "record": {
+ "TXT": "dh=8e7a42d430aa6c34dc619b79f7d6fc1f3ca69845"
+ }
+}
diff --git a/domains/_discord.liam.json b/domains/_discord.liam.json
new file mode 100644
index 000000000..61b416831
--- /dev/null
+++ b/domains/_discord.liam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "liamatienza",
+ "email": "liamdev@duck.com"
+ },
+ "record": {
+ "TXT": "dh=c53cce4432aa366f65bd320ab681d468c8cea968"
+ }
+}
diff --git a/domains/_discord.lumi.json b/domains/_discord.lumi.json
index 94a9a1b26..774b92f31 100644
--- a/domains/_discord.lumi.json
+++ b/domains/_discord.lumi.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "itsFatlum",
+ "username": "itssfatlum",
"discord": "563697359423406082"
},
"record": {
diff --git a/domains/_discord.lver.json b/domains/_discord.lver.json
new file mode 100644
index 000000000..6441d8735
--- /dev/null
+++ b/domains/_discord.lver.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lverx",
+ "email": "profoundlvr@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=2e24b5f5d9aa41852614d8b5760748d097b138b9"
+ }
+}
diff --git a/domains/_discord.mehulpathak.json b/domains/_discord.mehulpathak.json
new file mode 100644
index 000000000..e4691142d
--- /dev/null
+++ b/domains/_discord.mehulpathak.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "m3hu1",
+ "email": "pathakkmehul@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=bb5a0d412e8f7f0b02dbf56d27610f20b99ac8a9"
+ }
+}
diff --git a/domains/_discord.moddatei.json b/domains/_discord.moddatei.json
new file mode 100644
index 000000000..0f2871c2c
--- /dev/null
+++ b/domains/_discord.moddatei.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "moddatei",
+ "email": "moddatei@proton.me"
+ },
+ "record": {
+ "TXT": "dh=61bcf3ed41433d6b179422a6b0bd4fc2b95acf4e"
+ }
+}
diff --git a/domains/_discord.narasima.json b/domains/_discord.narasima.json
index 640a59c94..aac166607 100644
--- a/domains/_discord.narasima.json
+++ b/domains/_discord.narasima.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NarasimaPandiyan",
- "email": "cs42059@gmail.com"
- },
- "record": {
- "TXT": "dh=d54feeb331611626de2134ef368bdcf7691cbbb3"
- }
+ "owner": {
+ "username": "NarasimaPandiyan",
+ "email": "cs42059@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=d54feeb331611626de2134ef368bdcf7691cbbb3"
+ }
}
diff --git a/domains/_discord.nek0zyx.json b/domains/_discord.nek0zyx.json
new file mode 100644
index 000000000..b409d2807
--- /dev/null
+++ b/domains/_discord.nek0zyx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nek0zyx",
+ "email": "nek0zyx@costmiku.space"
+ },
+ "record": {
+ "TXT": "dh=540cae67bbdffb46fb380c384823dda2270a28f0"
+ }
+}
diff --git a/domains/_discord.nekomyaa.json b/domains/_discord.nekomyaa.json
new file mode 100644
index 000000000..b96aebc77
--- /dev/null
+++ b/domains/_discord.nekomyaa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lolinekord",
+ "email": "contact@lolineko3.net"
+ },
+ "record": {
+ "TXT": "dh=a761b99a6a7d449df2e423a119eab9a4ec773e7e"
+ }
+}
diff --git a/domains/_discord.nick.json b/domains/_discord.nick.json
new file mode 100644
index 000000000..8b6b71024
--- /dev/null
+++ b/domains/_discord.nick.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "PrinceBunBun981",
+ "email": "me@nick.cool",
+ "discord": "nickwoah"
+ },
+ "record": {
+ "TXT": "dh=b9e9ee170ceabd5d201a50225be187e055b9bbb6"
+ }
+}
diff --git a/domains/_discord.nickibreeki.json b/domains/_discord.nickibreeki.json
new file mode 100644
index 000000000..d3b54f4f7
--- /dev/null
+++ b/domains/_discord.nickibreeki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "n1ckibreeki",
+ "email": "nickibreeki@outlook.com"
+ },
+ "record": {
+ "TXT": "dh=14acda3ef13ac5d15f7cf8e8cfd3a8556fc227eb"
+ }
+}
diff --git a/domains/_discord.niclqs.json b/domains/_discord.niclqs.json
index 8a5527596..72748fc05 100644
--- a/domains/_discord.niclqs.json
+++ b/domains/_discord.niclqs.json
@@ -1,6 +1,5 @@
{
- "description": "niclqs.is-a.dev discord verify „ownership''",
- "repo": "https://github.com/niclqsger",
+ "description": "niclqs.is-a.dev discord verify ownership",
"owner": {
"discord": "niclqs",
"email": "discord@push-den-weg.de",
diff --git a/domains/_discord.noob.json b/domains/_discord.noob.json
new file mode 100644
index 000000000..7ced2a9c6
--- /dev/null
+++ b/domains/_discord.noob.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "IMXNOOBX",
+ "email": "me@noob.bio"
+ },
+ "record": {
+ "TXT": "dh=4bda89987e4e232aac78bb9d0a0e973c96166119"
+ }
+}
diff --git a/domains/_discord.notcoded.json b/domains/_discord.notcoded.json
new file mode 100644
index 000000000..4b0d5f267
--- /dev/null
+++ b/domains/_discord.notcoded.json
@@ -0,0 +1,11 @@
+{
+ "description": "domain verification for discord",
+ "owner": {
+ "username": "not-coded",
+ "discord": "notcoded",
+ "discordUserID": "620662953347121163"
+ },
+ "record": {
+ "TXT": "dh=0a6a5afd3a6ee9b2709a43a77e6679a2e9969384"
+ }
+}
diff --git a/domains/_discord.notzer0two.json b/domains/_discord.notzer0two.json
new file mode 100644
index 000000000..690fc331e
--- /dev/null
+++ b/domains/_discord.notzer0two.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NotZer0Two",
+ "email": "lyonfan2010@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=89504c863f0365fd5e214e695141b54b8d44c6c7"
+ }
+}
diff --git a/domains/_discord.nuggew.json b/domains/_discord.nuggew.json
new file mode 100644
index 000000000..39d8df00c
--- /dev/null
+++ b/domains/_discord.nuggew.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Nuggew",
+ "email": "contato.guilherme.silva.araujo@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=a5d33ae1ddbac9692e675b562538f6b316f1aa1f"
+ }
+}
diff --git a/domains/_discord.okinea.json b/domains/_discord.okinea.json
index cdd471c33..78010e42d 100644
--- a/domains/_discord.okinea.json
+++ b/domains/_discord.okinea.json
@@ -2,8 +2,7 @@
"owner": {
"username": "okineadev",
"discord": "okineadev",
- "telegram": "okinea",
- "email": "81070564+okineadev@users.noreply.github.com"
+ "telegram": "okinea"
},
"record": {
"TXT": "dh=72f6dea86d79bda34d2c61e1edb3037954caac82"
diff --git a/domains/_discord.oliverg.json b/domains/_discord.oliverg.json
new file mode 100644
index 000000000..3fec1055d
--- /dev/null
+++ b/domains/_discord.oliverg.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "oliver720",
+ "email": "olivergarro2017@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=9a0dc7af9a4d5bafe658ebee92cff00b08d46270"
+ }
+}
diff --git a/domains/_discord.piker.json b/domains/_discord.piker.json
index e5d3f576b..a2b688600 100644
--- a/domains/_discord.piker.json
+++ b/domains/_discord.piker.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "piker98988",
- "email": "iker.pavcur@gmail.com"
- },
- "record": {
- "TXT": "dh=fbea31b6c973108788a610db21edd08f23d92801"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "piker98988",
+ "email": "iker.pavcur@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=fbea31b6c973108788a610db21edd08f23d92801"
+ }
+}
diff --git a/domains/_discord.privatekey.json b/domains/_discord.privatekey.json
deleted file mode 100644
index 5fc237354..000000000
--- a/domains/_discord.privatekey.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "keydevelops",
- "email": "rumaevvadim@gmail.com"
- },
- "record": {
- "TXT": "dh=be4a0fbe37df16fa2d25e29ec7bc4f669703a71d"
- }
-}
diff --git a/domains/_discord.priyanshu.json b/domains/_discord.priyanshu.json
index de00307ca..9acf6b2e0 100644
--- a/domains/_discord.priyanshu.json
+++ b/domains/_discord.priyanshu.json
@@ -1,7 +1,7 @@
{
"owner": {
"username": "Priyansxu",
- "email": "cloudypriyanshu@gmail.com",
+ "email": "priyansxu@yahoo.com",
"discord": "priyansxu"
},
"record": {
diff --git a/domains/_discord.qing762.json b/domains/_discord.qing762.json
new file mode 100644
index 000000000..29b423eda
--- /dev/null
+++ b/domains/_discord.qing762.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "qing762",
+ "email": "q1ng762@outlook.com"
+ },
+ "record": {
+ "TXT": "dh=c798ccabffa36b2206669860c46efe903852e675"
+ }
+}
diff --git a/domains/_discord.quantum.json b/domains/_discord.quantum.json
new file mode 100644
index 000000000..8778cc0dd
--- /dev/null
+++ b/domains/_discord.quantum.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lakshinhemachandran",
+ "email": "lh140313@outlook.com"
+ },
+ "record": {
+ "TXT": "dh=5a5f9d502ca98ef9d724b197609538f5b5379c83"
+ }
+}
diff --git a/domains/_discord.roki.json b/domains/_discord.roki.json
new file mode 100644
index 000000000..f829530db
--- /dev/null
+++ b/domains/_discord.roki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Roki100",
+ "discord": "289479495444987904"
+ },
+ "record": {
+ "TXT": "dh=7c71f3dd265b7bae0e9a7383a779bddc4e8adf62"
+ }
+}
diff --git a/domains/_discord.rouf0x.json b/domains/_discord.rouf0x.json
index b8e5e35c2..b9cd3eb35 100644
--- a/domains/_discord.rouf0x.json
+++ b/domains/_discord.rouf0x.json
@@ -1,8 +1,7 @@
{
"owner": {
- "username": "Roufox",
- "email": "gabrielruf.fr@gmail.com",
- "discord": "Roufox"
+ "username": "Rouf0x",
+ "discord": "roufox"
},
"record": {
"TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271"
diff --git a/domains/_discord.sabbir.json b/domains/_discord.sabbir.json
deleted file mode 100644
index a57a9d97f..000000000
--- a/domains/_discord.sabbir.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "owner": {
- "username": "s8rr"
- },
- "record": {
- "TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"]
- }
-}
diff --git a/domains/_discord.schuh.json b/domains/_discord.schuh.json
new file mode 100644
index 000000000..b7db211c7
--- /dev/null
+++ b/domains/_discord.schuh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vqpe",
+ "email": "theschuhofyou@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=7e4702912048b4ff69b652081db69782cd50ccf3"
+ }
+}
diff --git a/domains/_discord.sep.json b/domains/_discord.sep.json
new file mode 100644
index 000000000..801b76c44
--- /dev/null
+++ b/domains/_discord.sep.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sepultrex",
+ "email": "sepultrex@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=2f929b7a4935af1795801360d92ba2788e27a2ff"
+ }
+}
diff --git a/domains/_discord.shimizu.json b/domains/_discord.shimizu.json
new file mode 100644
index 000000000..027445582
--- /dev/null
+++ b/domains/_discord.shimizu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mikofoxie",
+ "email": "shimizulazy@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=a24d14132caded8f17f5e4fdd4222378e8df2b89"
+ }
+}
diff --git a/domains/_discord.status.ciaobot.json b/domains/_discord.status.ciaobot.json
deleted file mode 100644
index 88fa15427..000000000
--- a/domains/_discord.status.ciaobot.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Ciao287",
- "discord": "687333016921440317"
- },
- "record": {
- "TXT": "dh=5b1ae56adf1959519abbb008b4803ee9911ff1b6"
- }
-}
diff --git a/domains/_discord.tat2008.json b/domains/_discord.tat2008.json
deleted file mode 100644
index ef90431f4..000000000
--- a/domains/_discord.tat2008.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tat2008",
- "email": "tuan.trananh2008@gmail.com"
- },
- "record": {
- "TXT": "dh=9abe38f80f0a7adbf9ef20a7048ff7dd399d984b"
- }
-}
diff --git a/domains/_discord.untitled.json b/domains/_discord.untitled.json
deleted file mode 100644
index 6d57baa9a..000000000
--- a/domains/_discord.untitled.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "VihaanAnand",
- "email": "macos14sonoma@gmail.com"
- },
- "record": {
- "TXT": "dh=635f70c64c210c98011d4391e0ba6a69adfedc89"
- }
-}
diff --git a/domains/_discord.voxxdevv.json b/domains/_discord.voxxdevv.json
index 3b379ef5b..89619e1df 100644
--- a/domains/_discord.voxxdevv.json
+++ b/domains/_discord.voxxdevv.json
@@ -4,6 +4,6 @@
"email": "aminrh@icloud.com"
},
"record": {
- "TXT": "dh=6d817006952096ed75c9c1c84fab50783bad46ac"
+ "TXT": "dh=86ca7e3af41dae9a1eea4036e19ff63c8417dca0"
}
}
diff --git a/domains/_discord.whisp.json b/domains/_discord.whisp.json
deleted file mode 100644
index e84b61faf..000000000
--- a/domains/_discord.whisp.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "itswhisp",
- "email": "ag.whisp@gmail.com"
- },
- "record": {
- "TXT": "dh=f98e45bf000905131a5ee712210c9561d2079b24"
- }
-}
diff --git a/domains/_discord.yurei.json b/domains/_discord.yurei.json
new file mode 100644
index 000000000..d9f85bd4e
--- /dev/null
+++ b/domains/_discord.yurei.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yurehito",
+ "discord": "https://discord.com/users/998608551431897170"
+ },
+ "record": {
+ "TXT": "dh=5d5daac60e8c6f56c8c57a3cdf244a294049c273"
+ }
+}
diff --git a/domains/_dmarc.ciaobot.json b/domains/_dmarc.ciaobot.json
deleted file mode 100644
index 454f80712..000000000
--- a/domains/_dmarc.ciaobot.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Ciao287",
- "discord": "687333016921440317"
- },
- "record": {
- "TXT": "v=DMARC1; p=none; rua=mailto:dmarc.report@ciaobot.is-a.dev; ruf=mailto:dmarc.report@ciaobot.is-a.dev; fo=0; adkim=r; aspf=r; pct=100; ri=86400; sp=none"
- }
-}
diff --git a/domains/_dmarc.peme969.json b/domains/_dmarc.peme969.json
index c6b62d20f..c1f65bbe6 100644
--- a/domains/_dmarc.peme969.json
+++ b/domains/_dmarc.peme969.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "peme969",
- "email": "mrcoderpeme@gmail.com"
- },
- "record": {
- "TXT":[
- "forward-email=NjNhNjJlMjMzOGJhMWUxNy1hOTk2MzljYmY0ZDczZWViZDY2NTljZmUwMDc4OTM5MmQ3YmVjN2RmYWEyMjFlN2VhODAxZWUwOWI5ODhhNDY2"
- ]
- }
+ "owner": {
+ "username": "peme969",
+ "email": "mrcoderpeme@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "forward-email=NjNhNjJlMjMzOGJhMWUxNy1hOTk2MzljYmY0ZDczZWViZDY2NTljZmUwMDc4OTM5MmQ3YmVjN2RmYWEyMjFlN2VhODAxZWUwOWI5ODhhNDY2"
+ ]
+ }
}
diff --git a/domains/_dmarc.sewt.json b/domains/_dmarc.sewt.json
new file mode 100644
index 000000000..e0d29af48
--- /dev/null
+++ b/domains/_dmarc.sewt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SkyExploreWasTaken",
+ "discord": "1049263707177353247"
+ },
+ "record": {
+ "TXT": "v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s"
+ }
+}
diff --git a/domains/_dmarc.yxz.json b/domains/_dmarc.yxz.json
index c3592124b..7a26816d1 100644
--- a/domains/_dmarc.yxz.json
+++ b/domains/_dmarc.yxz.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "yz9551",
- "email": "",
"discord": "yz9551"
},
"record": {
diff --git a/domains/_dnslink.daoch4n.json b/domains/_dnslink.daoch4n.json
new file mode 100644
index 000000000..9e429a414
--- /dev/null
+++ b/domains/_dnslink.daoch4n.json
@@ -0,0 +1,11 @@
+{
+ "description": "IPFS DNSLink integration for Web3-enabled video player",
+ "repo": "https://github.com/dtub3/DaokoTube",
+ "owner": {
+ "username": "daoch4n",
+ "email": "digitaimadness@pm.me"
+ },
+ "record": {
+ "TXT": "/ipfs/bafybeictsmpmyy5cbtc52hr3awxgsl6gojyfgr3b23uudte4i7gmeof6om"
+ }
+}
\ No newline at end of file
diff --git a/domains/_gh-is-a-dev-docs-o.docs.json b/domains/_gh-is-a-dev-docs-o.docs.json
deleted file mode 100644
index 077a631e7..000000000
--- a/domains/_gh-is-a-dev-docs-o.docs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "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
deleted file mode 100644
index 627d1c417..000000000
--- a/domains/_gh-is-a-dev-docs-o.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "is-a-dev",
- "email": "admin@is-a.dev"
- },
- "record": {
- "TXT": "30e221e0a1"
- }
-}
diff --git a/domains/_gh-juststudio7-o.js.json b/domains/_gh-juststudio7-o.js.json
new file mode 100644
index 000000000..4ed5dadd5
--- /dev/null
+++ b/domains/_gh-juststudio7-o.js.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "TXT": ["53741b79f9"]
+ }
+}
diff --git a/domains/_gh-juststudio7-o.juststudio.json b/domains/_gh-juststudio7-o.juststudio.json
index b73ca4a8b..923030093 100644
--- a/domains/_gh-juststudio7-o.juststudio.json
+++ b/domains/_gh-juststudio7-o.juststudio.json
@@ -6,8 +6,6 @@
"discord": "1117482901353812088"
},
"record": {
- "TXT": [
- "d878bca923"
- ]
+ "TXT": ["d878bca923"]
}
}
diff --git a/domains/_gh-lumidevelopment-o.lumi.json b/domains/_gh-lumidevelopment-o.lumi.json
index 28eedd71a..9053f020f 100644
--- a/domains/_gh-lumidevelopment-o.lumi.json
+++ b/domains/_gh-lumidevelopment-o.lumi.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "LUMIDevelopment"
- },
- "record": {
- "TXT": ["eade7c5be7"]
- }
+ "owner": {
+ "username": "itssfatlum"
+ },
+ "record": {
+ "TXT": ["eade7c5be7"]
+ }
}
diff --git a/domains/_github-challenge-spicydevs-org.spicy.json b/domains/_github-challenge-spicydevs-org.spicy.json
deleted file mode 100644
index b38b357ca..000000000
--- a/domains/_github-challenge-spicydevs-org.spicy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "oyepriyansh",
- "email": "oyepriyansh@hotmail.com"
- },
- "record": {
- "TXT": "0e84f14f3a"
- }
-}
diff --git a/domains/_github-challenge-thenoppy12-org.thenoppy12.json b/domains/_github-challenge-thenoppy12-org.thenoppy12.json
index 1613186f9..cce40adeb 100644
--- a/domains/_github-challenge-thenoppy12-org.thenoppy12.json
+++ b/domains/_github-challenge-thenoppy12-org.thenoppy12.json
@@ -1,6 +1,5 @@
{
"description": "Github Orgs Verify",
- "repo": "https://github.com/thenoppy12",
"owner": {
"username": "BussyBakks",
"email": "lengochuykiengiang@gmail.com",
diff --git a/domains/_github-pages-challenge-256javy.256javy.json b/domains/_github-pages-challenge-256javy.256javy.json
index 1f8b2a198..d0c273e54 100644
--- a/domains/_github-pages-challenge-256javy.256javy.json
+++ b/domains/_github-pages-challenge-256javy.256javy.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "256javy",
- "email": "256javiervillalba@gmail.com"
- },
- "record": {
- "TXT": "5274c84dbbf074d67b53fc4305ced5"
- }
+ "owner": {
+ "username": "256javy",
+ "email": "256javiervillalba@gmail.com"
+ },
+ "record": {
+ "TXT": "5274c84dbbf074d67b53fc4305ced5"
+ }
}
diff --git a/domains/_github-pages-challenge-abiapp789.abiapp22.json b/domains/_github-pages-challenge-abiapp789.abiapp22.json
deleted file mode 100644
index cd681e6b9..000000000
--- a/domains/_github-pages-challenge-abiapp789.abiapp22.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "domain": "abiapp1789.is-a.dev",
- "owner": {
- "username": "abiapp789",
- "email": "abiapp2024@gmail.com"
- },
- "record": {
- "TXT": "e8984bf946de59788c1b78b19b8d51"
- }
-}
diff --git a/domains/_github-pages-challenge-adil-uddin.adil.json b/domains/_github-pages-challenge-adil-uddin.adil.json
new file mode 100644
index 000000000..ece12b69a
--- /dev/null
+++ b/domains/_github-pages-challenge-adil-uddin.adil.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "adil-uddin",
+ "email": "adilaryan786@gmail.com"
+ },
+ "record": {
+ "TXT": "82f634e6b8d39d1a42bf48f2a2ccd3"
+ }
+}
diff --git a/domains/_github-pages-challenge-akpi816218.akpi.json b/domains/_github-pages-challenge-akpi816218.akpi.json
deleted file mode 100644
index 030db64ef..000000000
--- a/domains/_github-pages-challenge-akpi816218.akpi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "akpi816218",
- "discord": "equus_quagga"
- },
- "record": {
- "TXT": "83f74e3c71720aa4514d32cabe7324"
- }
-}
diff --git a/domains/_github-pages-challenge-alenseeman.alen.json b/domains/_github-pages-challenge-alenseeman.alen.json
new file mode 100644
index 000000000..2af91df99
--- /dev/null
+++ b/domains/_github-pages-challenge-alenseeman.alen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alenseeman",
+ "email": "alenseeman@hotmail.com"
+ },
+ "record": {
+ "TXT": "8a6132b9777f26ea1a3f2a892f92f6"
+ }
+}
diff --git a/domains/_github-pages-challenge-alpha-og.athulanoop.json b/domains/_github-pages-challenge-alpha-og.athulanoop.json
new file mode 100644
index 000000000..1aab4b74e
--- /dev/null
+++ b/domains/_github-pages-challenge-alpha-og.athulanoop.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alpha-og",
+ "email": "athulanoop2020@gmail.com"
+ },
+ "record": {
+ "TXT": "f39f5fde5d918c2ca297b843c5776b"
+ }
+}
diff --git a/domains/_github-pages-challenge-am333n.ameen.json b/domains/_github-pages-challenge-am333n.ameen.json
new file mode 100644
index 000000000..28f16b90c
--- /dev/null
+++ b/domains/_github-pages-challenge-am333n.ameen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "am333n",
+ "email": "muhammedameen752@gmail.com"
+ },
+ "record": {
+ "TXT": "ae46785afb026d6f57c4eb85f644eb"
+ }
+}
diff --git a/domains/_github-pages-challenge-amosmurmu.amosmurmu.json b/domains/_github-pages-challenge-amosmurmu.amosmurmu.json
new file mode 100644
index 000000000..b25f93b52
--- /dev/null
+++ b/domains/_github-pages-challenge-amosmurmu.amosmurmu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amosmurmu",
+ "email": "amosmurmu002@gmail.com"
+ },
+ "record": {
+ "TXT": "6cd31a4dfd2ef9242a7478f015b26b"
+ }
+}
diff --git a/domains/_github-pages-challenge-animeshkotka.animesh-kotka.json b/domains/_github-pages-challenge-animeshkotka.animesh-kotka.json
new file mode 100644
index 000000000..3adf90e4d
--- /dev/null
+++ b/domains/_github-pages-challenge-animeshkotka.animesh-kotka.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AnimeshKotka",
+ "email": "animeshkotka520@gmail.com"
+ },
+ "record": {
+ "TXT": "516e1afaa96818228e8a61bf901188"
+ }
+}
diff --git a/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json
new file mode 100644
index 000000000..62bf5d789
--- /dev/null
+++ b/domains/_github-pages-challenge-arsenobetaine.arsenobetaine.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "arsenobetaine",
+ "email": "arsenobetaine@gmail.com"
+ },
+ "record": {
+ "TXT": "02ff8b21eeaed5e8333376fc244485"
+ }
+}
diff --git a/domains/_github-pages-challenge-asbp.asbp.json b/domains/_github-pages-challenge-asbp.asbp.json
new file mode 100644
index 000000000..ec3dea7c9
--- /dev/null
+++ b/domains/_github-pages-challenge-asbp.asbp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asbp",
+ "email": "guungofficial@gmail.com"
+ },
+ "record": {
+ "TXT": "31b576be5fd342aa2473ebb2fb2816"
+ }
+}
diff --git a/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json b/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json
new file mode 100644
index 000000000..c2f6a56e1
--- /dev/null
+++ b/domains/_github-pages-challenge-ashishkingdom.ashishkingdom.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AshishKingdom",
+ "email": "ashishkingdom@proton.me"
+ },
+ "record": {
+ "TXT": "4281866da89d9e1bd20fcdb44adca3"
+ }
+}
diff --git a/domains/_github-pages-challenge-aw09.agung.json b/domains/_github-pages-challenge-aw09.agung.json
new file mode 100644
index 000000000..34a9c9884
--- /dev/null
+++ b/domains/_github-pages-challenge-aw09.agung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aw09",
+ "email": "agungwck.99@gmail.com"
+ },
+ "record": {
+ "TXT": "ec0ab3911b2f62b7dcad33e6fdd5f4"
+ }
+}
diff --git a/domains/_github-pages-challenge-axioris.axioris.json b/domains/_github-pages-challenge-axioris.axioris.json
index bb94aad47..c4bc04852 100644
--- a/domains/_github-pages-challenge-axioris.axioris.json
+++ b/domains/_github-pages-challenge-axioris.axioris.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "axioris",
- "email": "dane.foster.collins@gmail.com"
- },
- "record": {
- "TXT": "3e68551b5f5903030133fb460e57db"
- }
+ "owner": {
+ "username": "axioris",
+ "email": "dane.foster.collins@gmail.com"
+ },
+ "record": {
+ "TXT": "3e68551b5f5903030133fb460e57db"
+ }
}
diff --git a/domains/_github-pages-challenge-ayberktandogan.ayberk.json b/domains/_github-pages-challenge-ayberktandogan.ayberk.json
new file mode 100644
index 000000000..7d2dd41e0
--- /dev/null
+++ b/domains/_github-pages-challenge-ayberktandogan.ayberk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ayberktandogan",
+ "email": "ayberk.tandogan@outlook.com"
+ },
+ "record": {
+ "TXT": "6fe6a3695f856260a2fa97ce9dfe94"
+ }
+}
diff --git a/domains/_github-pages-challenge-baturalp52.baturalp.json b/domains/_github-pages-challenge-baturalp52.baturalp.json
new file mode 100644
index 000000000..4bdbd3237
--- /dev/null
+++ b/domains/_github-pages-challenge-baturalp52.baturalp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Baturalp52",
+ "email": "baturalpsonmez2002@gmail.com"
+ },
+ "record": {
+ "TXT": "8e1fd82942a7ceae35f62019e370aa"
+ }
+}
diff --git a/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json b/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json
deleted file mode 100644
index d32c795e4..000000000
--- a/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "boredcodebyk",
- "email": "khromabyk+dev@gmail.com"
- },
- "record": {
- "TXT": "18eddbb722418d4b62eb8976f91621"
- }
-}
diff --git a/domains/_github-pages-challenge-breakertws.breakertws.json b/domains/_github-pages-challenge-breakertws.breakertws.json
new file mode 100644
index 000000000..1f660b9b6
--- /dev/null
+++ b/domains/_github-pages-challenge-breakertws.breakertws.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BreakerTWS",
+ "email": "breakingtws@gmail.com"
+ },
+ "record": {
+ "TXT": "dcde9a29c9e10cbea2e47c46805b57"
+ }
+}
diff --git a/domains/_github-pages-challenge-xxtgamerxx.brin.json b/domains/_github-pages-challenge-brinterwastaken.brin.json
similarity index 82%
rename from domains/_github-pages-challenge-xxtgamerxx.brin.json
rename to domains/_github-pages-challenge-brinterwastaken.brin.json
index 359257854..cacdcdb1d 100644
--- a/domains/_github-pages-challenge-xxtgamerxx.brin.json
+++ b/domains/_github-pages-challenge-brinterwastaken.brin.json
@@ -1,7 +1,7 @@
{
"description": "Github verification",
"owner": {
- "username": "xXTgamerXx",
+ "username": "brinterwastaken",
"email": "trin.n2848@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-btleffler.btleffler.json b/domains/_github-pages-challenge-btleffler.btleffler.json
new file mode 100644
index 000000000..9496e0060
--- /dev/null
+++ b/domains/_github-pages-challenge-btleffler.btleffler.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "btleffler",
+ "email": "btleffler@gmail.com"
+ },
+ "record": {
+ "TXT": "6c3fe486c491afe19b9ba3bbb03d2a"
+ }
+}
diff --git a/domains/_github-pages-challenge-cantcode023.bd.json b/domains/_github-pages-challenge-cantcode023.bd.json
new file mode 100644
index 000000000..20351b873
--- /dev/null
+++ b/domains/_github-pages-challenge-cantcode023.bd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CantCode023",
+ "email": "cantcode023@gmail.com"
+ },
+ "record": {
+ "TXT": "f1b87d5986bd9abd22ca7fc5da79ad"
+ }
+}
diff --git a/domains/_github-pages-challenge-caodoc.caodoc.json b/domains/_github-pages-challenge-caodoc.caodoc.json
deleted file mode 100644
index 514a61b1d..000000000
--- a/domains/_github-pages-challenge-caodoc.caodoc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "caodoc",
- "discord": "caodoc"
- },
- "record": {
- "TXT": "c3aa36c2b7f2e2bf94a92b760760ca"
- }
-}
diff --git a/domains/_github-pages-challenge-cc4dev.cc4dev.json b/domains/_github-pages-challenge-cc4dev.cc4dev.json
new file mode 100644
index 000000000..5358fa1b3
--- /dev/null
+++ b/domains/_github-pages-challenge-cc4dev.cc4dev.json
@@ -0,0 +1,11 @@
+{
+ "owner":
+ {
+ "username": "cc4dev",
+ "email": "cc4dev@proton.me"
+ },
+ "record":
+ {
+ "TXT": "dc5371ee1973414c03ef5e837646e6"
+ }
+}
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-chauvansang.sang.json b/domains/_github-pages-challenge-chauvansang.sang.json
new file mode 100644
index 000000000..4ddffeb83
--- /dev/null
+++ b/domains/_github-pages-challenge-chauvansang.sang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chauvansang",
+ "email": "cvansang94@gmail.com"
+ },
+ "record": {
+ "TXT": "8a2d191d582a62b817e10aa08b67f5"
+ }
+}
diff --git a/domains/_github-pages-challenge-d-pow.devon.json b/domains/_github-pages-challenge-d-pow.devon.json
index 875c3aa2e..2a9ecd3fb 100644
--- a/domains/_github-pages-challenge-d-pow.devon.json
+++ b/domains/_github-pages-challenge-d-pow.devon.json
@@ -1,8 +1,7 @@
{
"description": "GitHub Pages verification for devon.is-a.dev",
"owner": {
- "username": "D-Pow",
- "email": "D-Pow@users.noreply.github.com"
+ "username": "D-Pow"
},
"record": {
"TXT": "cec54b510828f770750c1b17cad7f2"
diff --git a/domains/_github-pages-challenge-daspete.pete.json b/domains/_github-pages-challenge-daspete.pete.json
new file mode 100644
index 000000000..64ef791c7
--- /dev/null
+++ b/domains/_github-pages-challenge-daspete.pete.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "daspete",
+ "email": "daspetemail@gmail.com"
+ },
+ "record": {
+ "TXT": "ece69b9f0bf2d6d1bda512b8af30fa"
+ }
+}
diff --git a/domains/_github-pages-challenge-debkanchan.debkanchan.json b/domains/_github-pages-challenge-debkanchan.debkanchan.json
new file mode 100644
index 000000000..fcbb78a08
--- /dev/null
+++ b/domains/_github-pages-challenge-debkanchan.debkanchan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "debkanchan",
+ "email": "debu.samadder@gmail.com"
+ },
+ "record": {
+ "TXT": "36f31b49ddb71ca70a8cb3dd21e61d"
+ }
+}
diff --git a/domains/_github-pages-challenge-devhammed.hammed.json b/domains/_github-pages-challenge-devhammed.hammed.json
index 44413c068..1b613a46d 100644
--- a/domains/_github-pages-challenge-devhammed.hammed.json
+++ b/domains/_github-pages-challenge-devhammed.hammed.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "devhammed",
- "email": "hey@hammed.dev"
- },
- "record": {
- "TXT": "7672b068b3140a9fbaaf9bfe0ab136"
- }
+ "owner": {
+ "username": "devhammed",
+ "email": "hey@hammed.dev"
+ },
+ "record": {
+ "TXT": "7672b068b3140a9fbaaf9bfe0ab136"
+ }
}
diff --git a/domains/_github-pages-challenge-drssoccer55.doug.json b/domains/_github-pages-challenge-drssoccer55.doug.json
new file mode 100644
index 000000000..c5cca34b9
--- /dev/null
+++ b/domains/_github-pages-challenge-drssoccer55.doug.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "drssoccer55",
+ "email": "sextondouglas@pm.me"
+ },
+ "record": {
+ "TXT": "6605758124fbb4085b1687476d067b"
+ }
+}
diff --git a/domains/_github-pages-challenge-duc-ios.duc.json b/domains/_github-pages-challenge-duc-ios.duc.json
new file mode 100644
index 000000000..4a017f679
--- /dev/null
+++ b/domains/_github-pages-challenge-duc-ios.duc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "duc-ios",
+ "email": "hi@duk.one"
+ },
+ "record": {
+ "TXT": "91c9fd955fd906fab980881cb5f477"
+ }
+}
diff --git a/domains/_github-pages-challenge-ducky4life.ducky.json b/domains/_github-pages-challenge-ducky4life.ducky.json
index 257d533cd..7c76603f9 100644
--- a/domains/_github-pages-challenge-ducky4life.ducky.json
+++ b/domains/_github-pages-challenge-ducky4life.ducky.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ducky4life",
- "email": "duckylai@proton.me"
- },
- "record": {
- "TXT": "7b577ecd19bde96461d7b480a5f0a4"
- }
+ "owner": {
+ "username": "ducky4life",
+ "email": "duckylai@proton.me"
+ },
+ "record": {
+ "TXT": "7b577ecd19bde96461d7b480a5f0a4"
+ }
}
diff --git a/domains/_github-pages-challenge-exyxz.exyxz.json b/domains/_github-pages-challenge-exyxz.exyxz.json
new file mode 100644
index 000000000..4b0c1d6c2
--- /dev/null
+++ b/domains/_github-pages-challenge-exyxz.exyxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "exyxz",
+ "discord": "exyxz"
+ },
+ "record": {
+ "TXT": "38873ba2da582e531282026e6fb4bf"
+ }
+}
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json b/domains/_github-pages-challenge-fa-fifi.fa-fifi.json
deleted file mode 100644
index e68a19e0e..000000000
--- a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Github page domain verification",
- "owner": {
- "username": "fa-fifi",
- "email": "fafifi1997@gmail.com"
- },
- "record": {
- "TXT": "4076c15aac94a89c1a131d252cf368"
- }
-}
diff --git a/domains/_github-pages-challenge-ganesh76.ganesh-g.json b/domains/_github-pages-challenge-ganesh76.ganesh-g.json
index 394a74ceb..32d77b30c 100644
--- a/domains/_github-pages-challenge-ganesh76.ganesh-g.json
+++ b/domains/_github-pages-challenge-ganesh76.ganesh-g.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ganesh76",
- "email": "ganesh.g.cse@gmail.com"
- },
- "record": {
- "TXT": "94df711e9b048a87929864206a479a"
- }
+ "owner": {
+ "username": "ganesh76",
+ "email": "ganesh.g.cse@gmail.com"
+ },
+ "record": {
+ "TXT": "94df711e9b048a87929864206a479a"
+ }
}
diff --git a/domains/_github-pages-challenge-gegendepressed.sairaj.json b/domains/_github-pages-challenge-gegendepressed.sairaj.json
new file mode 100644
index 000000000..960df4e0e
--- /dev/null
+++ b/domains/_github-pages-challenge-gegendepressed.sairaj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gegendepressed",
+ "email": "sairaj09pai@gmail.com"
+ },
+ "record": {
+ "TXT": "c6a67c35d8e7aac91ac5afce904ad6"
+ }
+}
diff --git a/domains/_github-pages-challenge-gewaleelek.gewalee.json b/domains/_github-pages-challenge-gewaleelek.gewalee.json
new file mode 100644
index 000000000..3cd79d42b
--- /dev/null
+++ b/domains/_github-pages-challenge-gewaleelek.gewalee.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "gewaleelek"
+ },
+ "record": {
+ "TXT": "06e9ec8a834fc5e6c09ded6c524be4"
+ }
+}
diff --git a/domains/_github-pages-challenge-githubfantest.bryce.json b/domains/_github-pages-challenge-githubfantest.bryce.json
new file mode 100644
index 000000000..49c437702
--- /dev/null
+++ b/domains/_github-pages-challenge-githubfantest.bryce.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GitHubFanTest",
+ "email": "feelingbloxyburger24@gmail.com"
+ },
+ "record": {
+ "TXT": "68769d2d26832aca71242d59740d72"
+ }
+}
diff --git a/domains/_github-pages-challenge-uuphoria2.uuphoria2.json b/domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json
similarity index 62%
rename from domains/_github-pages-challenge-uuphoria2.uuphoria2.json
rename to domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json
index f65e6dc95..bfedfd088 100644
--- a/domains/_github-pages-challenge-uuphoria2.uuphoria2.json
+++ b/domains/_github-pages-challenge-gmanthemarioguy.gmanthemarioguy.json
@@ -1,10 +1,10 @@
{
"description": "Verification for my personal site",
"owner": {
- "username": "uuphoria2",
+ "username": "GManTheMarioGuy",
"email": "gman36147@gmail.com"
},
"record": {
- "TXT": "e102771c99f70130190148a2d00ee0"
+ "TXT": "20f23b82e045272d36fadd99a6e464"
}
}
diff --git a/domains/_github-pages-challenge-gokay05.gokay.json b/domains/_github-pages-challenge-gokay05.gokay.json
new file mode 100644
index 000000000..6a2c2ebc0
--- /dev/null
+++ b/domains/_github-pages-challenge-gokay05.gokay.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gokay05",
+ "email": "gyamankurt@gmail.com"
+ },
+ "record": {
+ "TXT": "7c83467aa6d55ff736d77d66a6f94e"
+ }
+}
diff --git a/domains/_github-pages-challenge-herwingx.ghsearch.json b/domains/_github-pages-challenge-herwingx.ghsearch.json
new file mode 100644
index 000000000..6c38dd1e4
--- /dev/null
+++ b/domains/_github-pages-challenge-herwingx.ghsearch.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "herwingx",
+ "email": "herwingmacias@gmail.com"
+ },
+ "record": {
+ "TXT": "2a006f5ffbfb592d6001e215d479da"
+ }
+}
diff --git a/domains/_github-pages-challenge-hungthai1401.hungthai.json b/domains/_github-pages-challenge-hungthai1401.hungthai.json
new file mode 100644
index 000000000..04d99debd
--- /dev/null
+++ b/domains/_github-pages-challenge-hungthai1401.hungthai.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hungthai1401",
+ "email": "hungthai1401.it@gmail.com"
+ },
+ "record": {
+ "TXT": "693e3be4f1121fc00f2fbad65439d0"
+ }
+}
diff --git a/domains/_github-pages-challenge-i-jer.jer.json b/domains/_github-pages-challenge-i-jer.jer.json
index ba868f179..cc0be384e 100644
--- a/domains/_github-pages-challenge-i-jer.jer.json
+++ b/domains/_github-pages-challenge-i-jer.jer.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "JerBlox",
+ "username": "i-Jer",
"email": "chen.fuyuan07@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-imnotnahn.imnahn.json b/domains/_github-pages-challenge-imnotnahn.imnahn.json
new file mode 100644
index 000000000..c4fdd1958
--- /dev/null
+++ b/domains/_github-pages-challenge-imnotnahn.imnahn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "imnotnahn",
+ "email": "thanhnhan.contact.work@gmail.com"
+ },
+ "record": {
+ "TXT": "0078b8f8494de41ef1c90903f745c5"
+ }
+}
diff --git a/domains/_github-pages-challenge-imrmnabil.nabil.json b/domains/_github-pages-challenge-imrmnabil.nabil.json
new file mode 100644
index 000000000..bb1866bdf
--- /dev/null
+++ b/domains/_github-pages-challenge-imrmnabil.nabil.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "imrmnabil",
+ "email": "imrmnabil@gmail.com"
+ },
+ "record": {
+ "TXT": "ce38bed94bccbf581a0efa569f006a"
+ }
+}
diff --git a/domains/_github-pages-challenge-is-a-dev-docs.docs.json b/domains/_github-pages-challenge-is-a-dev-docs.docs.json
deleted file mode 100644
index 68c26dcdc..000000000
--- a/domains/_github-pages-challenge-is-a-dev-docs.docs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "is-a-dev",
- "email": "admin@is-a.dev"
- },
- "record": {
- "TXT": "18b49a8904257ea06c3595614d9a4e"
- }
-}
diff --git a/domains/nic.json b/domains/_github-pages-challenge-is-a-dev.raw.json
similarity index 69%
rename from domains/nic.json
rename to domains/_github-pages-challenge-is-a-dev.raw.json
index c78690f36..586d27003 100644
--- a/domains/nic.json
+++ b/domains/_github-pages-challenge-is-a-dev.raw.json
@@ -4,6 +4,6 @@
"email": "admin@is-a.dev"
},
"record": {
- "URL": "https://is-a.dev"
+ "TXT": "451887dc71c60fef6eb91e9b1ac27d"
}
}
diff --git a/domains/_github-pages-challenge-jd1.jd1.json b/domains/_github-pages-challenge-jd1.jd1.json
new file mode 100644
index 000000000..7b4144043
--- /dev/null
+++ b/domains/_github-pages-challenge-jd1.jd1.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github verification",
+ "owner": {
+ "username": "jd1",
+ "email": "isadev@mail.dilli.me"
+ },
+ "record": {
+ "TXT": "a3c21c7b2bda6160f0f072afcb5d67"
+ }
+}
diff --git a/domains/_github-pages-challenge-jecoh12.jecoh.json b/domains/_github-pages-challenge-jecoh12.jecoh.json
new file mode 100644
index 000000000..be579d34b
--- /dev/null
+++ b/domains/_github-pages-challenge-jecoh12.jecoh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jecoh12",
+ "email": "jecoh12@gmail.com"
+ },
+ "record": {
+ "TXT": "06b17cb3b27f897547ef636ec8189d"
+ }
+}
diff --git a/domains/_github-pages-challenge-jesusvala.jesusvaladez.json b/domains/_github-pages-challenge-jesusvala.jesusvaladez.json
new file mode 100644
index 000000000..1b82a5c20
--- /dev/null
+++ b/domains/_github-pages-challenge-jesusvala.jesusvaladez.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JesusVala",
+ "email": "jesusvaladezf@outlook.com"
+ },
+ "record": {
+ "TXT": "0d3d73c2f3c76a7ec6bb5484d88e97"
+ }
+}
diff --git a/domains/_github-pages-challenge-jeymen.jeymen.json b/domains/_github-pages-challenge-jeymen.jeymen.json
deleted file mode 100644
index 3075b9884..000000000
--- a/domains/_github-pages-challenge-jeymen.jeymen.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Jeymen",
- "email": "jeymen11@proton.me"
- },
- "record": {
- "TXT": "d01c3f5f2e886990f511ffb0dc7fcb"
- }
-}
diff --git a/domains/_github-pages-challenge-jlai403.joey.json b/domains/_github-pages-challenge-jlai403.joey.json
new file mode 100644
index 000000000..21df29414
--- /dev/null
+++ b/domains/_github-pages-challenge-jlai403.joey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jlai403",
+ "discord": "120522740590575616"
+ },
+ "record": {
+ "TXT": "f6ab04a95a9197df0b4d38f5426824"
+ }
+}
diff --git a/domains/_github-pages-challenge-jlwisedev.joshuawise.json b/domains/_github-pages-challenge-jlwisedev.joshuawise.json
new file mode 100644
index 000000000..7899753f5
--- /dev/null
+++ b/domains/_github-pages-challenge-jlwisedev.joshuawise.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jlwisedev",
+ "email": "jlwiseeha24@gmail.com"
+ },
+ "record": {
+ "TXT": "6e82c24d04ec14cccaaf2398dfd0c2"
+ }
+}
diff --git a/domains/_github-pages-challenge-juanpython1.juandev.json b/domains/_github-pages-challenge-juanpython1.juandev.json
new file mode 100644
index 000000000..6ecb54622
--- /dev/null
+++ b/domains/_github-pages-challenge-juanpython1.juandev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JuanPython1",
+ "email": "kamilo201025@gmail.com"
+ },
+ "record": {
+ "TXT": "0342f0aeddf970dce791538a82f3b4"
+ }
+}
diff --git a/domains/_github-pages-challenge-juansamayoa.juan-samayoa.json b/domains/_github-pages-challenge-juansamayoa.juan-samayoa.json
new file mode 100644
index 000000000..90fc9e6a8
--- /dev/null
+++ b/domains/_github-pages-challenge-juansamayoa.juan-samayoa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JuanSamayoa",
+ "email": "juancho1705@gmail.com"
+ },
+ "record": {
+ "TXT": "fc8f871bfa593a9c2c21cc89bc2a84"
+ }
+}
diff --git a/domains/_github-pages-challenge-kajpio.kajetan.json b/domains/_github-pages-challenge-kajpio.kajetan.json
new file mode 100644
index 000000000..351dd400a
--- /dev/null
+++ b/domains/_github-pages-challenge-kajpio.kajetan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Kajpio",
+ "email": "thugmichel14@gmail.com"
+ },
+ "record": {
+ "TXT": "22a0972632a2df28e644ae320025b9"
+ }
+}
diff --git a/domains/_github-pages-challenge-kellylawrence.kelly.json b/domains/_github-pages-challenge-kellylawrence.kelly.json
new file mode 100644
index 000000000..b9c8eb85b
--- /dev/null
+++ b/domains/_github-pages-challenge-kellylawrence.kelly.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kellylawrence",
+ "email": "kelly@kellylawrence.ca"
+ },
+ "record": {
+ "TXT": "26237ec72d51f1ba56e371e8e3fef9"
+ }
+}
diff --git a/domains/_github-pages-challenge-knowgaurav.gauravsingh.json b/domains/_github-pages-challenge-knowgaurav.gauravsingh.json
new file mode 100644
index 000000000..ee1f70eac
--- /dev/null
+++ b/domains/_github-pages-challenge-knowgaurav.gauravsingh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "knowgaurav",
+ "email": "qj1b83fmt@mozmail.com"
+ },
+ "record": {
+ "TXT": "eaf70c3b4e96a8417de6d506d64c88"
+ }
+}
diff --git a/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json
new file mode 100644
index 000000000..c3623095c
--- /dev/null
+++ b/domains/_github-pages-challenge-kunalpurandare.kunalpurandare.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kunalpurandare",
+ "email": "kunalpurandare1703@gmail.com"
+ },
+ "record": {
+ "TXT": "6ab808f578d906f3b0fe8333da9b57"
+ }
+}
diff --git a/domains/_github-pages-challenge-lakshinhemachandran.quantum.json b/domains/_github-pages-challenge-lakshinhemachandran.quantum.json
new file mode 100644
index 000000000..26a717f21
--- /dev/null
+++ b/domains/_github-pages-challenge-lakshinhemachandran.quantum.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lakshinhemachandran",
+ "email": "lh140313@outlook.com"
+ },
+ "record": {
+ "TXT": "00db49f0b434dd009acb3da9e09700"
+ }
+}
diff --git a/domains/_github-pages-challenge-lean-cc.kars.json b/domains/_github-pages-challenge-lean-cc.kars.json
deleted file mode 100644
index 3b0f43bdf..000000000
--- a/domains/_github-pages-challenge-lean-cc.kars.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal website.",
- "repo": "https://github.com/lean-cc/Personal-site",
- "owner": {
- "username": "lean-cc",
- "email": "leancc3020@gmail.com"
- },
- "record": {
- "TXT": "3c11059b471a5b5163437912c020df"
- }
-}
diff --git a/domains/_github-pages-challenge-leespencer.spencer.json b/domains/_github-pages-challenge-leespencer.spencer.json
new file mode 100644
index 000000000..9ad6bbbfe
--- /dev/null
+++ b/domains/_github-pages-challenge-leespencer.spencer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LeeSpencer",
+ "email": "mr.lee.spencer@gmail.com"
+ },
+ "record": {
+ "TXT": "d2ec009b06395dafb0b2a7cb525a3a"
+ }
+}
diff --git a/domains/_github-pages-challenge-liamatienza.liam.json b/domains/_github-pages-challenge-liamatienza.liam.json
new file mode 100644
index 000000000..ed1b27c24
--- /dev/null
+++ b/domains/_github-pages-challenge-liamatienza.liam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "liamatienza",
+ "email": "liamdev@duck.com"
+ },
+ "record": {
+ "TXT": "21465fcb0d62d07a3c97587145ebea"
+ }
+}
diff --git a/domains/_github-pages-challenge-ligmatv.ligmatv.json b/domains/_github-pages-challenge-ligmatv.ligmatv.json
deleted file mode 100644
index 7e27b7ac0..000000000
--- a/domains/_github-pages-challenge-ligmatv.ligmatv.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "LIGMATV",
- "email": "ligmatv.id@gmail.com"
- },
- "record": {
- "TXT": "de8560c4ea3c0f753266b402385c50"
- }
-}
diff --git a/domains/_github-pages-challenge-lyaxsh.lyaxsh.json b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json
new file mode 100644
index 000000000..8ab20d7e9
--- /dev/null
+++ b/domains/_github-pages-challenge-lyaxsh.lyaxsh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lyaxsh",
+ "email": "lakshnahar.forwork@gmail.com"
+ },
+ "record": {
+ "TXT": "052e15826ee7e1723c713d222b1bcc"
+ }
+}
diff --git a/domains/_github-pages-challenge-m0m0k4s4n.momoka.json b/domains/_github-pages-challenge-m0m0k4s4n.momoka.json
new file mode 100644
index 000000000..f54df7b46
--- /dev/null
+++ b/domains/_github-pages-challenge-m0m0k4s4n.momoka.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "M0M0K4S4N",
+ "email": "momokasan@proton.me"
+ },
+ "record": {
+ "TXT": "5d381e72b5a25f499b81b5956c56c7"
+ }
+}
diff --git a/domains/_github-pages-challenge-machip3r.machip3r.json b/domains/_github-pages-challenge-machip3r.machip3r.json
new file mode 100644
index 000000000..212bf05a0
--- /dev/null
+++ b/domains/_github-pages-challenge-machip3r.machip3r.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "machip3r",
+ "email": "mac_258@hotmail.com"
+ },
+ "record": {
+ "TXT": "cfc7c8e9fa922388850fe07ad3a7da"
+ }
+}
diff --git a/domains/_github-pages-challenge-manugeni.manugeni.json b/domains/_github-pages-challenge-manugeni.manugeni.json
index e19b0b538..f749aa6ee 100644
--- a/domains/_github-pages-challenge-manugeni.manugeni.json
+++ b/domains/_github-pages-challenge-manugeni.manugeni.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "manugeni",
- "email": "rendaniman@outlook.com"
- },
- "record": {
- "TXT": "c43b4f0460a8d8b9c05affa2da77ef"
- }
+ "owner": {
+ "username": "manugeni",
+ "email": "rendaniman@outlook.com"
+ },
+ "record": {
+ "TXT": "c43b4f0460a8d8b9c05affa2da77ef"
+ }
}
diff --git a/domains/_github-pages-challenge-mateuseap.mateuseap.json b/domains/_github-pages-challenge-mateuseap.mateuseap.json
new file mode 100644
index 000000000..0901a96fb
--- /dev/null
+++ b/domains/_github-pages-challenge-mateuseap.mateuseap.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mateuseap",
+ "email": "mateuseap@mateuseap.com"
+ },
+ "record": {
+ "TXT": "ce7a3cbd81e6cafe34709d195aa0ed"
+ }
+}
diff --git a/domains/_github-pages-challenge-mcalec-dev.mcalec.json b/domains/_github-pages-challenge-mcalec-dev.mcalec.json
new file mode 100644
index 000000000..be12871f5
--- /dev/null
+++ b/domains/_github-pages-challenge-mcalec-dev.mcalec.json
@@ -0,0 +1,12 @@
+{
+ "description": "mcalec.is-a.dev",
+ "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev",
+ "owner": {
+ "username": "mcalec-dev",
+ "email": "hello@mcalec.dev",
+ "discord": "mcalec"
+ },
+ "record": {
+ "TXT": "015fcfab7237a3342e028237414716"
+ }
+}
diff --git a/domains/_github-pages-challenge-mh0386.mohamedhisham.json b/domains/_github-pages-challenge-mh0386.mohamedhisham.json
new file mode 100644
index 000000000..269c64d04
--- /dev/null
+++ b/domains/_github-pages-challenge-mh0386.mohamedhisham.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MH0386",
+ "email": "mohamed.hisham.abdelzaher@gmail.com"
+ },
+ "record": {
+ "TXT": "c6abd6e81620b17a3fc408bfbbbe06"
+ }
+}
diff --git a/domains/_github-pages-challenge-mkblane.mkblane.json b/domains/_github-pages-challenge-mkblane.mkblane.json
new file mode 100644
index 000000000..2fec1f244
--- /dev/null
+++ b/domains/_github-pages-challenge-mkblane.mkblane.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mkblane",
+ "email": "rendaniman@outlook.com"
+ },
+ "record": {
+ "TXT": "1bd7f45bbafab3d1735f40245f5f6c"
+ }
+}
diff --git a/domains/_github-pages-challenge-mnhtng.mnhtng.json b/domains/_github-pages-challenge-mnhtng.mnhtng.json
new file mode 100644
index 000000000..20bde4b60
--- /dev/null
+++ b/domains/_github-pages-challenge-mnhtng.mnhtng.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "mnhtng"
+ },
+ "record": {
+ "TXT": "d3bfa02a77af7eec2db5df3a4d98da"
+ }
+}
diff --git a/domains/_github-pages-challenge-mohamadoday.bn3di.json b/domains/_github-pages-challenge-mohamadoday.bn3di.json
index ad61da66f..45d7cf5c4 100644
--- a/domains/_github-pages-challenge-mohamadoday.bn3di.json
+++ b/domains/_github-pages-challenge-mohamadoday.bn3di.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "MohamadOday",
- "email": "adada133321t@gmail.com"
- },
- "record": {
- "TXT": "a67c1c7ad9e8f589a22c5c161548f8"
- }
+ "owner": {
+ "username": "MohamadOday",
+ "email": "adada133321t@gmail.com"
+ },
+ "record": {
+ "TXT": "a67c1c7ad9e8f589a22c5c161548f8"
+ }
}
diff --git a/domains/_github-pages-challenge-mrsanjaya.jasa.json b/domains/_github-pages-challenge-mrsanjaya.jasa.json
new file mode 100644
index 000000000..f4c19e493
--- /dev/null
+++ b/domains/_github-pages-challenge-mrsanjaya.jasa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mrsanjaya",
+ "email": "sandhysanjaya0110@gmail.com"
+ },
+ "record": {
+ "TXT": "d8a383c1e9f79f3d08781238025862"
+ }
+}
diff --git a/domains/_github-pages-challenge-mrsiir.xavier.json b/domains/_github-pages-challenge-mrsiir.xavier.json
new file mode 100644
index 000000000..c68522f20
--- /dev/null
+++ b/domains/_github-pages-challenge-mrsiir.xavier.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MrSiir",
+ "email": "mrsiir@gmail.com"
+ },
+ "record": {
+ "TXT": "137e2b17a723cce89a10e5e245a3b5"
+ }
+}
diff --git a/domains/_github-pages-challenge-muazsrc.muaz.json b/domains/_github-pages-challenge-muazsrc.muaz.json
new file mode 100644
index 000000000..27ddc6fcd
--- /dev/null
+++ b/domains/_github-pages-challenge-muazsrc.muaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "muazsrc",
+ "email": "muazsrc17@gmail.com"
+ },
+ "record": {
+ "TXT": "fbd85152dbc991f3daa13d534b5875"
+ }
+}
diff --git a/domains/_github-pages-challenge-muizu.muiz.json b/domains/_github-pages-challenge-muizu.muiz.json
new file mode 100644
index 000000000..cb3975ea9
--- /dev/null
+++ b/domains/_github-pages-challenge-muizu.muiz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MuizU",
+ "email": "muizuvais99@gmail.com"
+ },
+ "record": {
+ "TXT": "8cf896945b34d5309a335f41eb2000"
+ }
+}
diff --git a/domains/_github-pages-challenge-mysterv.my5ter.json b/domains/_github-pages-challenge-mysterv.my5ter.json
new file mode 100644
index 000000000..f02e48e27
--- /dev/null
+++ b/domains/_github-pages-challenge-mysterv.my5ter.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MysterV",
+ "email": "myster@ik.me"
+ },
+ "record": {
+ "TXT": "b3c336392a691368a55de53cff8fd8"
+ }
+}
diff --git a/domains/_github-pages-challenge-mysterv.myster.json b/domains/_github-pages-challenge-mysterv.myster.json
new file mode 100644
index 000000000..07a1e707c
--- /dev/null
+++ b/domains/_github-pages-challenge-mysterv.myster.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MysterV",
+ "email": "myster@ik.me"
+ },
+ "record": {
+ "TXT": "e87fc6899d83da116cebe8335835d2"
+ }
+}
diff --git a/domains/_github-pages-challenge-narasimapandiyan.narasima.json b/domains/_github-pages-challenge-narasimapandiyan.narasima.json
index 8b779a899..035c5e3e6 100644
--- a/domains/_github-pages-challenge-narasimapandiyan.narasima.json
+++ b/domains/_github-pages-challenge-narasimapandiyan.narasima.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NarasimaPandiyan",
- "email": "cs42059@gmail.com"
- },
- "record": {
- "TXT": "0cd2fb39489f7652da9a4942df4a75"
- }
+ "owner": {
+ "username": "NarasimaPandiyan",
+ "email": "cs42059@gmail.com"
+ },
+ "record": {
+ "TXT": "0cd2fb39489f7652da9a4942df4a75"
+ }
}
diff --git a/domains/_github-pages-challenge-natedog2424.nd24.json b/domains/_github-pages-challenge-natedog2424.nd24.json
new file mode 100644
index 000000000..1be329a14
--- /dev/null
+++ b/domains/_github-pages-challenge-natedog2424.nd24.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "natedog2424",
+ "email": "natedog2424mail@gmail.com"
+ },
+ "record": {
+ "TXT": "277ecd07aa6d1593b09b96c9329e3b"
+ }
+}
diff --git a/domains/_github-pages-challenge-nayanjd.nayandas.json b/domains/_github-pages-challenge-nayanjd.nayandas.json
new file mode 100644
index 000000000..10b2f2d75
--- /dev/null
+++ b/domains/_github-pages-challenge-nayanjd.nayandas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NayanJD",
+ "email": "dastms@gmail.com"
+ },
+ "record": {
+ "TXT": "1f61f6ce0b038f2d48a6d726e715f5"
+ }
+}
diff --git a/domains/_github-pages-challenge-nduartech.nathan.json b/domains/_github-pages-challenge-nduartech.nathan.json
new file mode 100644
index 000000000..4b689eb3b
--- /dev/null
+++ b/domains/_github-pages-challenge-nduartech.nathan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nduartech",
+ "email": "nduartech101@gmail.com"
+ },
+ "record": {
+ "TXT": "79d3051264abe353b91b26d27d0e42"
+ }
+}
diff --git a/domains/_github-pages-challenge-ninja-5000.canavan.json b/domains/_github-pages-challenge-ninja-5000.canavan.json
new file mode 100644
index 000000000..24f6512d9
--- /dev/null
+++ b/domains/_github-pages-challenge-ninja-5000.canavan.json
@@ -0,0 +1,10 @@
+{
+ "description": "GitHub pages verification",
+ "owner": {
+ "username": "Ninja-5000",
+ "discord": "707170199861854209"
+ },
+ "record": {
+ "TXT": "1b6dcad6637eb7ef2c5de98714aff4"
+ }
+}
diff --git a/domains/_github-pages-challenge-nuraly-v.nuraly.json b/domains/_github-pages-challenge-nuraly-v.nuraly.json
new file mode 100644
index 000000000..3407dc574
--- /dev/null
+++ b/domains/_github-pages-challenge-nuraly-v.nuraly.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nuraly-v",
+ "email": "mescorpx@gmail.com"
+ },
+ "record": {
+ "TXT": "aecce766c2f539c48be6e59e611020"
+ }
+}
diff --git a/domains/_github-pages-challenge-okineadev.okinea.json b/domains/_github-pages-challenge-okineadev.okinea.json
index 08e93918c..d8490b54a 100644
--- a/domains/_github-pages-challenge-okineadev.okinea.json
+++ b/domains/_github-pages-challenge-okineadev.okinea.json
@@ -1,9 +1,7 @@
{
"description": "Okinea Dev website",
- "repo": "https://github.com/okineadev",
"owner": {
- "username": "okineadev",
- "email": "81070564+okineadev@users.noreply.github.com"
+ "username": "okineadev"
},
"record": {
"TXT": "a4553ebffa6a3356fc37fb4f8e8a14"
diff --git a/domains/_github-pages-challenge-onkarsathe007.onkarsathe.json b/domains/_github-pages-challenge-onkarsathe007.onkarsathe.json
new file mode 100644
index 000000000..3c45e68a8
--- /dev/null
+++ b/domains/_github-pages-challenge-onkarsathe007.onkarsathe.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Onkarsathe007",
+ "email": "onkarsathe96k@gmail.com"
+ },
+ "record": {
+ "TXT": "8d02480f39dc3dfcfa2ebc8104135c"
+ }
+}
diff --git a/domains/_github-pages-challenge-owentechv.owentech.json b/domains/_github-pages-challenge-owentechv.owentech.json
deleted file mode 100644
index 927cddd9f..000000000
--- a/domains/_github-pages-challenge-owentechv.owentech.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "owentechv",
- "email": "dowenx83@gmail.com"
- },
- "record": {
- "TXT": "c07b3c627d33a0c9fe4cbc593a2234"
- }
-}
diff --git a/domains/_github-pages-challenge-pavan-ambekar.pa1.json b/domains/_github-pages-challenge-pavan-ambekar.pa1.json
new file mode 100644
index 000000000..6a9050644
--- /dev/null
+++ b/domains/_github-pages-challenge-pavan-ambekar.pa1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pavan-ambekar",
+ "email": "pavan479ec@gmail.com"
+ },
+ "record": {
+ "TXT": "703d6f0036517a3bad381ba97d5e8e"
+ }
+}
diff --git a/domains/_github-pages-challenge-peme969.peme969.json b/domains/_github-pages-challenge-peme969.peme969.json
new file mode 100644
index 000000000..0129092e6
--- /dev/null
+++ b/domains/_github-pages-challenge-peme969.peme969.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "peme969",
+ "email": "me@peme969.dev"
+ },
+ "record": {
+ "TXT": "cd6136f17efbca44cec061b3fd6121"
+ }
+}
diff --git a/domains/_github-pages-challenge-pentsec.jeff.json b/domains/_github-pages-challenge-pentsec.jeff.json
index fe5225e38..d6ac23511 100644
--- a/domains/_github-pages-challenge-pentsec.jeff.json
+++ b/domains/_github-pages-challenge-pentsec.jeff.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "PentSec",
- "email": "jeffreysfu@gmail.com"
- },
- "record": {
- "TXT": "c1f0e5d392a06b64a632b42f794b1a"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "PentSec",
+ "email": "jeffreysfu@gmail.com"
+ },
+ "record": {
+ "TXT": "c1f0e5d392a06b64a632b42f794b1a"
+ }
+}
diff --git a/domains/_github-pages-challenge-peterbuga.peterbuga.json b/domains/_github-pages-challenge-peterbuga.peterbuga.json
new file mode 100644
index 000000000..5049a8aea
--- /dev/null
+++ b/domains/_github-pages-challenge-peterbuga.peterbuga.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "peterbuga",
+ "discord": "902580031044325407"
+ },
+ "record": {
+ "TXT": "02d47f8f8f4e0b58658a80eff34a66"
+ }
+}
diff --git a/domains/_github-pages-challenge-prs96.pranavs.json b/domains/_github-pages-challenge-prs96.pranavs.json
new file mode 100644
index 000000000..92df3ec58
--- /dev/null
+++ b/domains/_github-pages-challenge-prs96.pranavs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Prs96",
+ "email": "pranavsudheesh34@gmail.com"
+ },
+ "record": {
+ "TXT": "191a26c6879278f22117451ad5d91c"
+ }
+}
diff --git a/domains/_github-pages-challenge-qavv.qavv.json b/domains/_github-pages-challenge-qavv.qavv.json
new file mode 100644
index 000000000..af2da0937
--- /dev/null
+++ b/domains/_github-pages-challenge-qavv.qavv.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "qavv"
+ },
+ "record": {
+ "TXT": "6598155c8cf0929e826409fb38fc02"
+ }
+}
diff --git a/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json b/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json
deleted file mode 100644
index 7ea91e9c2..000000000
--- a/domains/_github-pages-challenge-ramanandkrgupta.ramanand.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ramanandkrgupta",
- "email": "ramanand@myyahoo.com"
- },
- "record": {
- "TXT": "07cd3e879dce98546f212f494f50da"
- }
-}
diff --git a/domains/_github-pages-challenge-ravikhokhar23.ravi.json b/domains/_github-pages-challenge-ravikhokhar23.ravi.json
new file mode 100644
index 000000000..47c732492
--- /dev/null
+++ b/domains/_github-pages-challenge-ravikhokhar23.ravi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ravikhokhar23",
+ "email": "khokhar.ravikumar@gmail.com"
+ },
+ "record": {
+ "TXT": "48fae48f04aa23f0be9bb8b052c7d0"
+ }
+}
diff --git a/domains/_github-pages-challenge-razobeckett.mayurraut.json b/domains/_github-pages-challenge-razobeckett.mayurraut.json
new file mode 100644
index 000000000..1c7e80175
--- /dev/null
+++ b/domains/_github-pages-challenge-razobeckett.mayurraut.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "razobeckett",
+ "email": "mayurraut.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "e104db834f904b13e65dd9337ae48e"
+ }
+}
diff --git a/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json
deleted file mode 100644
index 844946459..000000000
--- a/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "riviox",
- "email": "rivioxyt@hotmail.com"
- },
- "record": {
- "TXT": "15bce163359555d636e6bd2cc5903f"
- }
-}
diff --git a/domains/_github-pages-challenge-robinjesba.robin.json b/domains/_github-pages-challenge-robinjesba.robin.json
new file mode 100644
index 000000000..eafe3866e
--- /dev/null
+++ b/domains/_github-pages-challenge-robinjesba.robin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RobinJesba",
+ "email": "jb.robinm@gmail.com"
+ },
+ "record": {
+ "TXT": "eed44d532373578471a0fb245336c4"
+ }
+}
diff --git a/domains/_github-pages-challenge-roger-padrell.rpadrell.json b/domains/_github-pages-challenge-roger-padrell.rpadrell.json
new file mode 100644
index 000000000..bb5a9c3c6
--- /dev/null
+++ b/domains/_github-pages-challenge-roger-padrell.rpadrell.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roger-padrell",
+ "email": "padrell.roger@gmail.com"
+ },
+ "record": {
+ "TXT": "814c8119eaa1cf941877c3cacea189"
+ }
+}
diff --git a/domains/_github-pages-challenge-rudwolf.rodolfo.json b/domains/_github-pages-challenge-rudwolf.rodolfo.json
new file mode 100644
index 000000000..a3d1d3b7d
--- /dev/null
+++ b/domains/_github-pages-challenge-rudwolf.rodolfo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rudwolf",
+ "email": "rudwolf@gmail.com"
+ },
+ "record": {
+ "TXT": "549d8e2eaf3753b07362c99c2eb240"
+ }
+}
diff --git a/domains/_github-pages-challenge-saganaki22.drbaph.json b/domains/_github-pages-challenge-saganaki22.drbaph.json
new file mode 100644
index 000000000..8c27fc546
--- /dev/null
+++ b/domains/_github-pages-challenge-saganaki22.drbaph.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Saganaki22",
+ "email": "info@drbaph.dev"
+ },
+ "record": {
+ "TXT": "5aa90f589281a20522ec58d7b8a739"
+ }
+}
diff --git a/domains/_github-pages-challenge-sajidshahriar72543.sajid.json b/domains/_github-pages-challenge-sajidshahriar72543.sajid.json
new file mode 100644
index 000000000..00e1cf0c5
--- /dev/null
+++ b/domains/_github-pages-challenge-sajidshahriar72543.sajid.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sajidshahriar72543",
+ "email": "sazidshahriar39@gmail.com"
+ },
+ "record": {
+ "TXT": "d93567f4844049ce8f6ba59b0c42ab"
+ }
+}
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-sandunmadhushan.sandun.json b/domains/_github-pages-challenge-sandunmadhushan.sandun.json
new file mode 100644
index 000000000..a26c14771
--- /dev/null
+++ b/domains/_github-pages-challenge-sandunmadhushan.sandun.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sandunMadhushan",
+ "email": "sandunhmadushan9330@gmail.com"
+ },
+ "record": {
+ "TXT": "6f8cbcd17af6f3e277eb864f78cfeb"
+ }
+}
diff --git a/domains/_github-pages-challenge-sangeeth-606.sangeeth.json b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json
new file mode 100644
index 000000000..f02e58941
--- /dev/null
+++ b/domains/_github-pages-challenge-sangeeth-606.sangeeth.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sangeeth-606",
+ "email": "sangeeth999123@gmail.com"
+ },
+ "record": {
+ "TXT": "db86cdabc094732729851d093e4c47"
+ }
+}
diff --git a/domains/_github-pages-challenge-satyamissatyam.satyamjha.json b/domains/_github-pages-challenge-satyamissatyam.satyamjha.json
new file mode 100644
index 000000000..d741b1b2d
--- /dev/null
+++ b/domains/_github-pages-challenge-satyamissatyam.satyamjha.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SatyamIsSatyam",
+ "email": "realsatyam02@gmail.com"
+ },
+ "record": {
+ "TXT": "cfb164b676b453b9258240ca419ce0"
+ }
+}
diff --git a/domains/_github-pages-challenge-sepultrex.sep.json b/domains/_github-pages-challenge-sepultrex.sep.json
new file mode 100644
index 000000000..2d9d5dca9
--- /dev/null
+++ b/domains/_github-pages-challenge-sepultrex.sep.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "sepultrex"
+ },
+ "record": {
+ "TXT": "9d48d99c569b77b148651f4052b25f"
+ }
+}
diff --git a/domains/_github-pages-challenge-sh770.sh770.json b/domains/_github-pages-challenge-sh770.sh770.json
new file mode 100644
index 000000000..21e6557da
--- /dev/null
+++ b/domains/_github-pages-challenge-sh770.sh770.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sh770",
+ "email": "sh770h@gmail.com"
+ },
+ "record": {
+ "TXT": "ece6eb427012a2050ec0a76cf9c7a6"
+ }
+}
diff --git a/domains/_github-pages-challenge-shukraditya.shukraditya.json b/domains/_github-pages-challenge-shukraditya.shukraditya.json
new file mode 100644
index 000000000..3719166a9
--- /dev/null
+++ b/domains/_github-pages-challenge-shukraditya.shukraditya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shukraditya",
+ "email": "shukra12bose@gmail.com"
+ },
+ "record": {
+ "TXT": "617d0b9d13126957daf657d7396ec2"
+ }
+}
diff --git a/domains/_github-pages-challenge-siddhant385.sid385.json b/domains/_github-pages-challenge-siddhant385.sid385.json
new file mode 100644
index 000000000..430937121
--- /dev/null
+++ b/domains/_github-pages-challenge-siddhant385.sid385.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "siddhant385",
+ "email": "ssiddhant.ssharma@gmail.com"
+ },
+ "record": {
+ "TXT": "7ab62ad1edbe21138f130dba9bc89b"
+ }
+}
diff --git a/domains/_github-pages-challenge-sidhant947.sidhant.json b/domains/_github-pages-challenge-sidhant947.sidhant.json
new file mode 100644
index 000000000..24fcbb24b
--- /dev/null
+++ b/domains/_github-pages-challenge-sidhant947.sidhant.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sidhant947",
+ "email": "khatkarsidhant@gmail.com"
+ },
+ "record": {
+ "TXT": "6c4f29a8923a09d9e9c36a95669015"
+ }
+}
diff --git a/domains/_github-pages-challenge-sneh-al.snehal.json b/domains/_github-pages-challenge-sneh-al.snehal.json
new file mode 100644
index 000000000..c66047ab2
--- /dev/null
+++ b/domains/_github-pages-challenge-sneh-al.snehal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sneh-al",
+ "email": "snehal1380@gmail.com"
+ },
+ "record": {
+ "TXT": "c0b50465868652285e959813c2b5c9"
+ }
+}
diff --git a/domains/_github-pages-challenge-soymadip.soymadip.json b/domains/_github-pages-challenge-soymadip.soymadip.json
new file mode 100644
index 000000000..a4cdcfdb3
--- /dev/null
+++ b/domains/_github-pages-challenge-soymadip.soymadip.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "soymadip",
+ "email": "soumadip@zohomail.in"
+ },
+ "record": {
+ "TXT": "5d04ea047efd00f6377e5ad12bb373"
+ }
+}
diff --git a/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json b/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json
new file mode 100644
index 000000000..c85597389
--- /dev/null
+++ b/domains/_github-pages-challenge-spreadsheets600.spreadsheets600.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SpreadSheets600",
+ "email": "sohammaity006@gmail.com"
+ },
+ "record": {
+ "TXT": "b1bfc537d107d9e43ad2afd111fe3d"
+ }
+}
diff --git a/domains/_github-pages-challenge-squairdev.squair.json b/domains/_github-pages-challenge-squairdev.squair.json
new file mode 100644
index 000000000..ca54aa383
--- /dev/null
+++ b/domains/_github-pages-challenge-squairdev.squair.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "squairdev",
+ "email": "squairyt@gmail.com"
+ },
+ "record": {
+ "TXT": "ba54cb9cae1e4213228abf2e39cbb0"
+ }
+}
diff --git a/domains/_github-pages-challenge-therealcrazyfuy.abeja.json b/domains/_github-pages-challenge-therealcrazyfuy.abeja.json
new file mode 100644
index 000000000..d690b8812
--- /dev/null
+++ b/domains/_github-pages-challenge-therealcrazyfuy.abeja.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "TheRealCrazyfuy",
+ "discord": "realabeja",
+ "reddit": "crazyfuy"
+ },
+ "record": {
+ "TXT": "57fda717044e3715b197fe293216f9"
+ }
+}
diff --git a/domains/_github-pages-challenge-therookiecoder.therookiecoder.json b/domains/_github-pages-challenge-therookiecoder.therookiecoder.json
new file mode 100644
index 000000000..fbf7295f8
--- /dev/null
+++ b/domains/_github-pages-challenge-therookiecoder.therookiecoder.json
@@ -0,0 +1,12 @@
+{
+ "description": "GitHub domain verification for my personal website",
+ "repo": "https://github.com/theRookieCoder/theRookieCoder.github.io",
+ "owner": {
+ "username": "theRookieCoder",
+ "email": "ileshkt@gmail.com",
+ "discord": "therookiecoder"
+ },
+ "record": {
+ "TXT": "11a49aa635c8bc15e62134fbd34a46"
+ }
+}
diff --git a/domains/_github-pages-challenge-thorito.thorito.json b/domains/_github-pages-challenge-thorito.thorito.json
new file mode 100644
index 000000000..517999f9c
--- /dev/null
+++ b/domains/_github-pages-challenge-thorito.thorito.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thorito",
+ "email": "victor.villar.misa@gmail.com"
+ },
+ "record": {
+ "TXT": "900d61c3e5e63880bf2f15832064bc"
+ }
+}
diff --git a/domains/_github-pages-challenge-tim-vdb.tim-vdb.json b/domains/_github-pages-challenge-tim-vdb.tim-vdb.json
new file mode 100644
index 000000000..e272031a9
--- /dev/null
+++ b/domains/_github-pages-challenge-tim-vdb.tim-vdb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tim-vdb",
+ "email": "timotheevdbosch@gmail.com"
+ },
+ "record": {
+ "TXT": "ccd9ff03f723b201d75c2ae79c3245"
+ }
+}
diff --git a/domains/_github-pages-challenge-timi2506.timi2506.json b/domains/_github-pages-challenge-timi2506.timi2506.json
new file mode 100644
index 000000000..dec98fcff
--- /dev/null
+++ b/domains/_github-pages-challenge-timi2506.timi2506.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "timi2506",
+ "email": "tim@glos-omu.uk"
+ },
+ "record": {
+ "TXT": "592f4627c522780ea398a91a6c1d59"
+ }
+}
diff --git a/domains/_github-pages-challenge-totalolage.filip.json b/domains/_github-pages-challenge-totalolage.filip.json
new file mode 100644
index 000000000..01eff4575
--- /dev/null
+++ b/domains/_github-pages-challenge-totalolage.filip.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "totalolage",
+ "email": "filip@kalny.net"
+ },
+ "record": {
+ "TXT": "7023b937e5e580da1a941ec57734df"
+ }
+}
diff --git a/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json
new file mode 100644
index 000000000..2373cfd05
--- /dev/null
+++ b/domains/_github-pages-challenge-unidentifiedx.sunzizhuo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "UnidentifiedX",
+ "email": "sunzizhuo33@gmail.com"
+ },
+ "record": {
+ "TXT": "82c071e58d59a58ca0ac52f3240f65"
+ }
+}
diff --git a/domains/_github-pages-challenge-vcntttt.vrivera.json b/domains/_github-pages-challenge-vcntttt.vrivera.json
new file mode 100644
index 000000000..55c499a94
--- /dev/null
+++ b/domains/_github-pages-challenge-vcntttt.vrivera.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vcntttt",
+ "email": "vrivera.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "f2d624f5252ae88e5308c9098ae958"
+ }
+}
diff --git a/domains/_github-pages-challenge-verygafanhot.heyaxo.json b/domains/_github-pages-challenge-verygafanhot.heyaxo.json
new file mode 100644
index 000000000..5666a2e22
--- /dev/null
+++ b/domains/_github-pages-challenge-verygafanhot.heyaxo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "verygafanhot",
+ "email": "verygafanhot@gmail.com"
+ },
+ "record": {
+ "TXT": "e3ae5ee11a576cc86f89140043ca2b"
+ }
+}
diff --git a/domains/_github-pages-challenge-vihaananand.untitled.json b/domains/_github-pages-challenge-vihaananand.untitled.json
deleted file mode 100644
index e5fe95813..000000000
--- a/domains/_github-pages-challenge-vihaananand.untitled.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "VihaanAnand",
- "email": "macos14sonoma@gmail.com"
- },
- "record": {
- "TXT": "53234a8871b871e94e29adff5a8e91"
- }
-}
diff --git a/domains/_github-pages-challenge-vncsmnl.vinicius.json b/domains/_github-pages-challenge-vncsmnl.vinicius.json
index f678da650..75df081e9 100644
--- a/domains/_github-pages-challenge-vncsmnl.vinicius.json
+++ b/domains/_github-pages-challenge-vncsmnl.vinicius.json
@@ -1,6 +1,5 @@
{
"description": "My personal website",
- "repo": "https://github.com/vncsmnl",
"owner": {
"username": "vncsmnl",
"twitter": "vncsmnl",
diff --git a/domains/_github-pages-challenge-weebneedweed.harley.json b/domains/_github-pages-challenge-weebneedweed.harley.json
new file mode 100644
index 000000000..94d74d30d
--- /dev/null
+++ b/domains/_github-pages-challenge-weebneedweed.harley.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "weebNeedWeed",
+ "email": "rivenmle@gmail.com"
+ },
+ "record": {
+ "TXT": "659c12dc6e08a166dc1e88780bd87d"
+ }
+}
diff --git a/domains/_github-pages-challenge-wmoralesl.wilson.json b/domains/_github-pages-challenge-wmoralesl.wilson.json
new file mode 100644
index 000000000..e35c53374
--- /dev/null
+++ b/domains/_github-pages-challenge-wmoralesl.wilson.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wmoralesl",
+ "email": "wilsonm57wm@gmail.com"
+ },
+ "record": {
+ "TXT": "10f8fd2a05d93142f03d2a6ee4142e"
+ }
+}
diff --git a/domains/_github-pages-challenge-xrendani.xrendani.json b/domains/_github-pages-challenge-xrendani.xrendani.json
new file mode 100644
index 000000000..ec841f538
--- /dev/null
+++ b/domains/_github-pages-challenge-xrendani.xrendani.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "xrendani",
+ "email": "rendaniman@outlook.com"
+ },
+ "record": {
+ "TXT": "32d8f1c5a015e17af51e00beed50cc"
+ }
+}
diff --git a/domains/_github-pages-challenge-yashokuu.yas.json b/domains/_github-pages-challenge-yashokuu.yas.json
new file mode 100644
index 000000000..17656bd55
--- /dev/null
+++ b/domains/_github-pages-challenge-yashokuu.yas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yashoukuu",
+ "email": "yas.studios.en@gmail.com"
+ },
+ "record": {
+ "TXT": "3dc5a3f950e7f70f6535b6bf715042"
+ }
+}
diff --git a/domains/_github-pages-challenge-yz9551.yxz.json b/domains/_github-pages-challenge-yz9551.yxz.json
index 7e91dc657..b785aa78b 100644
--- a/domains/_github-pages-challenge-yz9551.yxz.json
+++ b/domains/_github-pages-challenge-yz9551.yxz.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "yz9551",
- "email": "",
"discord": "yz9551"
},
"record": {
diff --git a/domains/_github-pages-challenge.wildchamo.json b/domains/_github-pages-challenge.wildchamo.json
new file mode 100644
index 000000000..ea0ece3d4
--- /dev/null
+++ b/domains/_github-pages-challenge.wildchamo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wildchamo",
+ "email": "wildchamo@gmail.com"
+ },
+ "record": {
+ "TXT": "5b9a158bcd9821a7a78b5b362bccf0"
+ }
+}
diff --git a/domains/_minecraft._tcp.mc.3gee.json b/domains/_minecraft._tcp.mc.3gee.json
index 692541beb..b717967fb 100644
--- a/domains/_minecraft._tcp.mc.3gee.json
+++ b/domains/_minecraft._tcp.mc.3gee.json
@@ -1,17 +1,15 @@
{
"owner": {
"username": "3geETR",
-
"email": "egemacun@gmail.com"
},
-
"record": {
"SRV": [
{
"priority": 0,
"weight": 5,
"port": 32279,
- "target": "gold.magmanode.com"
+ "target": "mc.3gee.is-a.dev"
}
]
}
diff --git a/domains/_vercel.1ndrajeet.json b/domains/_vercel.1ndrajeet.json
new file mode 100644
index 000000000..b0a4687de
--- /dev/null
+++ b/domains/_vercel.1ndrajeet.json
@@ -0,0 +1,12 @@
+{
+ "description": "Applying for an is-a.dev domain for my portfolio. (1ndrajeet.vercel.app)",
+ "repo": "https://github.com/1ndrajeet/1ndrajeet.github.io",
+
+ "owner": {
+ "username": "1ndrajeet",
+ "email": "omkar.kulkarni.3174@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=1ndrajeet.is-a.dev,00cac18202bfab99e890"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.4hmet.json b/domains/_vercel.4hmet.json
new file mode 100644
index 000000000..548534f94
--- /dev/null
+++ b/domains/_vercel.4hmet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ahmetunsal",
+ "email": "web.unsalahmet@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=4hmet.is-a.dev,c313bc7151ebff9a1f1f"
+ }
+}
diff --git a/domains/_vercel.aadityaa.json b/domains/_vercel.aadityaa.json
new file mode 100644
index 000000000..58ad65db3
--- /dev/null
+++ b/domains/_vercel.aadityaa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aadityaa2606",
+ "email": "aadityaa2606@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aadityaa.is-a.dev,ac8d0d70ecad184cddfa"
+ }
+}
diff --git a/domains/_vercel.aakashrawat.json b/domains/_vercel.aakashrawat.json
new file mode 100644
index 000000000..b92e69e32
--- /dev/null
+++ b/domains/_vercel.aakashrawat.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "aakashrawat04",
+ "email": "2004rawataakash@gmail.com",
+ "discord": "759817307957493800"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aakashrawat.is-a.dev,d80839eb94f222e03728"
+ }
+}
diff --git a/domains/_vercel.aaqif.json b/domains/_vercel.aaqif.json
new file mode 100644
index 000000000..5ad57169b
--- /dev/null
+++ b/domains/_vercel.aaqif.json
@@ -0,0 +1,10 @@
+{
+ "description": "React Portfolio",
+ "owner": {
+ "username": "aaqifshafi",
+ "email": "aaqifshafi@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=aaqif.is-a.dev,77eef1ecff0a4bec5f86"]
+ }
+}
diff --git a/domains/_vercel.abdullah-al-mridul.json b/domains/_vercel.abdullah-al-mridul.json
new file mode 100644
index 000000000..178199aa9
--- /dev/null
+++ b/domains/_vercel.abdullah-al-mridul.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abdullah-al-mridul",
+ "email": "rim89987@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=abdullah-al-mridul.is-a.dev,28add02b5250c0339353"
+ }
+}
diff --git a/domains/_vercel.abdullah.maqbool.json b/domains/_vercel.abdullah.maqbool.json
new file mode 100644
index 000000000..7079b6e33
--- /dev/null
+++ b/domains/_vercel.abdullah.maqbool.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Abdullah-Maqbool",
+ "email": "abdullah.maqbool.ahmad@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=abdullah.maqbool.is-a.dev,7d30d66cf0ff8ca544ba"
+ }
+}
diff --git a/domains/_vercel.abdullahcxd.json b/domains/_vercel.abdullahcxd.json
new file mode 100644
index 000000000..9d91dd155
--- /dev/null
+++ b/domains/_vercel.abdullahcxd.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "abdullahcxd",
+ "email": "sabdullahcxd@gmail.com",
+ "discord": "sabdullahcxd"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=docs.abdullahcxd.is-a.dev,88eae4c1971934256cdf"
+ }
+}
diff --git a/domains/_vercel.abranico.json b/domains/_vercel.abranico.json
new file mode 100644
index 000000000..ff678a2e3
--- /dev/null
+++ b/domains/_vercel.abranico.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abranico",
+ "email": "abranico011@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=abranico.is-a.dev,82f8209e355477d34c12"
+ }
+}
diff --git a/domains/_vercel.adam.json b/domains/_vercel.adam.json
new file mode 100644
index 000000000..fd6913440
--- /dev/null
+++ b/domains/_vercel.adam.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio",
+ "owner": {
+ "username": "adamrexo",
+ "email": "rexosheesh@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=adam.is-a.dev,98e3c00d5bc75fc35a57"]
+ }
+}
diff --git a/domains/_vercel.adiii3692.json b/domains/_vercel.adiii3692.json
new file mode 100644
index 000000000..8ad7df240
--- /dev/null
+++ b/domains/_vercel.adiii3692.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "adiii3692",
+ "email": "adinair0206@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=adiii3692.is-a.dev,be704332b1928225a1ce"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.aditya.json b/domains/_vercel.aditya.json
new file mode 100644
index 000000000..69fd750da
--- /dev/null
+++ b/domains/_vercel.aditya.json
@@ -0,0 +1,10 @@
+{
+ "description": "Aditya portfolio",
+ "owner": {
+ "username": "raghav-45",
+ "email": "raghavbhai4545@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aditya.is-a.dev,bb0fe79d43ee24597631"
+ }
+}
diff --git a/domains/_vercel.aessaputra.json b/domains/_vercel.aessaputra.json
new file mode 100644
index 000000000..9594c7197
--- /dev/null
+++ b/domains/_vercel.aessaputra.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aessaputra",
+ "twitter": "pioonrey"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aessaputra.is-a.dev,e4ae1f9f5dd0538d0b82"
+ }
+}
diff --git a/domains/_vercel.ahios.json b/domains/_vercel.ahios.json
new file mode 100644
index 000000000..eec2a6e3e
--- /dev/null
+++ b/domains/_vercel.ahios.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ahios",
+ "email": "ahios.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ahios.is-a.dev,4937fc5cde05797c4fc3"
+ }
+}
diff --git a/domains/_vercel.ahmad.json b/domains/_vercel.ahmad.json
new file mode 100644
index 000000000..86074dd7e
--- /dev/null
+++ b/domains/_vercel.ahmad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "azrelic",
+ "email": "ahmadking78654@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ahmad.is-a.dev,c01e9cd660fc60d75301"
+ }
+}
diff --git a/domains/_vercel.ahmed.json b/domains/_vercel.ahmed.json
new file mode 100644
index 000000000..79609535e
--- /dev/null
+++ b/domains/_vercel.ahmed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ahmed.is-a.dev,e3140ad99c613cbd32f1"
+ }
+}
diff --git a/domains/_vercel.ahmedosama.json b/domains/_vercel.ahmedosama.json
new file mode 100644
index 000000000..ca3b1d64a
--- /dev/null
+++ b/domains/_vercel.ahmedosama.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ahmedosama.is-a.dev,5b628779e8a3ff964dbb"
+ }
+}
diff --git a/domains/_vercel.ahmedosamamath.json b/domains/_vercel.ahmedosamamath.json
new file mode 100644
index 000000000..82c7b01c4
--- /dev/null
+++ b/domains/_vercel.ahmedosamamath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ahmedosamamath.is-a.dev,796151d584bede738264"
+ }
+}
diff --git a/domains/_vercel.aishik999.json b/domains/_vercel.aishik999.json
new file mode 100644
index 000000000..f1d7e4b23
--- /dev/null
+++ b/domains/_vercel.aishik999.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aishik999",
+ "email": "aishikm2002@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aishik999.is-a.dev,ee81dd1464c614776855"
+ }
+}
diff --git a/domains/_vercel.aitji.json b/domains/_vercel.aitji.json
new file mode 100644
index 000000000..3b7104481
--- /dev/null
+++ b/domains/_vercel.aitji.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "aitji",
+ "email": "ait.suriya@gmail.com",
+ "discord": "aitji"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aitji.is-a.dev,0a05468b82f542c74dea"
+ }
+}
diff --git a/domains/_vercel.akanksha.json b/domains/_vercel.akanksha.json
new file mode 100644
index 000000000..da88a23d8
--- /dev/null
+++ b/domains/_vercel.akanksha.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AkankshaMishra2",
+ "email": "akankshamishra20042@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=akanksha.is-a.dev,b1e4bbe531cb73a59644"
+ }
+}
diff --git a/domains/_vercel.akashkumar.json b/domains/_vercel.akashkumar.json
new file mode 100644
index 000000000..e35f85f2b
--- /dev/null
+++ b/domains/_vercel.akashkumar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "akash-kumar-dev",
+ "email": "akashkumar.dev00@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=akashkumar.is-a.dev,844132b059abdd5bd808"
+ }
+}
diff --git a/domains/_vercel.akib.json b/domains/_vercel.akib.json
new file mode 100644
index 000000000..fce6165bc
--- /dev/null
+++ b/domains/_vercel.akib.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akibsaleh",
+ "email": "akibsaleh.dev@gmail.com",
+ "discord": "akibsalehzihan"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=akib.is-a.dev,3605c2dfdaf80295f8b3"
+ }
+}
diff --git a/domains/_vercel.akk1to.json b/domains/_vercel.akk1to.json
new file mode 100644
index 000000000..52ae857e8
--- /dev/null
+++ b/domains/_vercel.akk1to.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=blogs.akk1to.is-a.dev,18b784bd5f6ecb5feeb8"
+ }
+}
diff --git a/domains/_vercel.akshtt.json b/domains/_vercel.akshtt.json
new file mode 100644
index 000000000..e9ab85e92
--- /dev/null
+++ b/domains/_vercel.akshtt.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "akshtt-dev",
+ "discord": "1056531806763102218",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QWFzHtRqwC1CI4y4jw5OHgSry05ulJH01mIzxx9bGg0fS3KE5iyHw5hPaj-OBoYST_btyPsaSP8JNUKM-gI-7nDBBgckoaArcTiDMfDmSo3-_mFRRB2jtqfBoVJ83egjdsOo-I5N9_78-oajU7Tumk6ce2Ch3_DiTxgMflK_mJmSZgcWuo0gL3bj2haLaZyd1qW-68fW3r52H-W8T1sMJZympTPLiMXVXjo20TBcpctYMv8G3_O5US_wmMx5QLrw9TimpJB-4mGH3n0WpawZj7tTf4lnf00w0tt0rqQ3nnnp5NTYXjRyeRN48P48IcOHwzJop34_fB4hsnROKbaxuQ.sD9gxAoazhppPtKnBaQziA.rf6S62c9Xs-WkMBUfRFba2G8ht_lzrAKfmkK508kyIUJA5NSRHBlULdRzTz-tTs5JByTNT1KMipzqEbg6mdikUVUKyPSRKJw9rSvcG1ZdVA.4-qT7_3j-LGiWaancLS80A"
+ },
+
+ "record": {
+ "TXT": "vc-domain-verify=akshtt.is-a.dev,456706754e19d95b29f0"
+ }
+ }
+
diff --git a/domains/_vercel.al-nahianhasan.json b/domains/_vercel.al-nahianhasan.json
new file mode 100644
index 000000000..1ebe7ff40
--- /dev/null
+++ b/domains/_vercel.al-nahianhasan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nahianhasan161",
+ "email": "nahianhasan161@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=al-nahianhasan.is-a.dev,1deeff67e64c983a1be6"
+ }
+}
diff --git a/domains/_vercel.alimad.json b/domains/_vercel.alimad.json
new file mode 100644
index 000000000..5b8c4ab97
--- /dev/null
+++ b/domains/_vercel.alimad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Alimadcorp",
+ "email": "alimad.co.ltd@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=alimad.is-a.dev,f6e1ccbe103767db5c66"
+ }
+}
diff --git a/domains/_vercel.alora.json b/domains/_vercel.alora.json
index d203c2aef..87384fd58 100644
--- a/domains/_vercel.alora.json
+++ b/domains/_vercel.alora.json
@@ -8,7 +8,8 @@
"TXT": [
"vc-domain-verify=drive.alora.is-a.dev,395400702612ae6db6a8",
"vc-domain-verify=profile.alora.is-a.dev,71bd18cc5db61dc75f91",
- "vc-domain-verify=blog.alora.is-a.dev,39b11f87634c4710b9ab"
+ "vc-domain-verify=blog.alora.is-a.dev,39b11f87634c4710b9ab",
+ "vc-domain-verify=verify.alora.is-a.dev,df9b78e72bc7a2889bc8"
]
}
}
diff --git a/domains/_vercel.alrakib.json b/domains/_vercel.alrakib.json
new file mode 100644
index 000000000..d764d097f
--- /dev/null
+++ b/domains/_vercel.alrakib.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alrakibthedev",
+ "email": "alrakibthedev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=alrakib.is-a.dev,3a2663fe979960b1dad2"
+ }
+}
diff --git a/domains/_vercel.alvin.json b/domains/_vercel.alvin.json
index 73cbbec62..acb3eafa7 100644
--- a/domains/_vercel.alvin.json
+++ b/domains/_vercel.alvin.json
@@ -11,7 +11,9 @@
"vc-domain-verify=chat.alvin.is-a.dev,520a1452a367459dd568",
"vc-domain-verify=www.chat.alvin.is-a.dev,df452600790ef98fd42e",
"vc-domain-verify=todo.alvin.is-a.dev,08b2734d859de7c855c5",
- "vc-domain-verify=www.todo.alvin.is-a.dev,affd5e1204871843ebb8"
+ "vc-domain-verify=www.todo.alvin.is-a.dev,affd5e1204871843ebb8",
+ "vc-domain-verify=sign.alvin.is-a.dev,2563e8f2f9edc85132ac",
+ "vc-domain-verify=www.sign.alvin.is-a.dev,94900e209df86ce94741"
]
}
}
diff --git a/domains/_vercel.aman.json b/domains/_vercel.aman.json
new file mode 100644
index 000000000..d22f3413a
--- /dev/null
+++ b/domains/_vercel.aman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amang9446",
+ "email": "dev.aman7571@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aman.is-a.dev,d6447d0d30e57c351c44"
+ }
+}
diff --git a/domains/_vercel.amandajauregui.json b/domains/_vercel.amandajauregui.json
new file mode 100644
index 000000000..9a269efa5
--- /dev/null
+++ b/domains/_vercel.amandajauregui.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "jauregao",
+ "email": "amandajauregui.dev@gmail.com",
+ "discord": "jauregao"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=amandajauregui.is-a.dev,a3853c2f774bcc618d55"
+ }
+}
diff --git a/domains/_vercel.amardeep.json b/domains/_vercel.amardeep.json
new file mode 100644
index 000000000..175986068
--- /dev/null
+++ b/domains/_vercel.amardeep.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amardeeplakshkar",
+ "email": "amardeep.devs@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=amardeep.is-a.dev,3d113f019450ce88d3a8"
+ }
+}
diff --git a/domains/_vercel.amitkr.json b/domains/_vercel.amitkr.json
new file mode 100644
index 000000000..5746f962e
--- /dev/null
+++ b/domains/_vercel.amitkr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "buddhhu",
+ "email": "amitsharma123234@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=amitkr.is-a.dev,ee59d7888c4ddd580b2a"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.anand.json b/domains/_vercel.anand.json
new file mode 100644
index 000000000..01f2379f5
--- /dev/null
+++ b/domains/_vercel.anand.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anandd17",
+ "email": "avdoddamani123@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=anand.is-a.dev,3a42c86f85216132b3ef"
+ }
+}
diff --git a/domains/_vercel.andres-jaramillo.json b/domains/_vercel.andres-jaramillo.json
index fe061360e..f458d6895 100644
--- a/domains/_vercel.andres-jaramillo.json
+++ b/domains/_vercel.andres-jaramillo.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "andresfer1799",
- "email": "andresfer1799@gmail.com",
- "discord": ""
- },
- "record": {
- "TXT": "vc-domain-verify=andres-jaramillo.is-a.dev,19f46a0dbb75aa279425"
- }
+ "owner": {
+ "username": "andresfer1799",
+ "email": "andresfer1799@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=andres-jaramillo.is-a.dev,19f46a0dbb75aa279425"
+ }
}
diff --git a/domains/_vercel.andresarr.json b/domains/_vercel.andresarr.json
new file mode 100644
index 000000000..b95184791
--- /dev/null
+++ b/domains/_vercel.andresarr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Anonymous1223334444",
+ "email": "replit005@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=andresarr.is-a.dev,c7c6b930211214eb12c5"
+ }
+}
diff --git a/domains/_vercel.aneeqkhurram007.json b/domains/_vercel.aneeqkhurram007.json
new file mode 100644
index 000000000..e7d5d06fb
--- /dev/null
+++ b/domains/_vercel.aneeqkhurram007.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aneeqkhurram007",
+ "email": "aneeqkhurram007@yahoo.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aneeqkhurram007.is-a.dev,a2ee93d3908119d926c6"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.aneeshraskar.json b/domains/_vercel.aneeshraskar.json
new file mode 100644
index 000000000..5c5902489
--- /dev/null
+++ b/domains/_vercel.aneeshraskar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Zephyrus02",
+ "email": "aneeshraskar@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aneeshraskar.is-a.dev,15a32ae23fd15bc3d6ff"
+ }
+}
diff --git a/domains/_vercel.ansh.json b/domains/_vercel.ansh.json
new file mode 100644
index 000000000..4d1b1a3f7
--- /dev/null
+++ b/domains/_vercel.ansh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anshaneja5",
+ "email": "anshanejaa@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ansh.is-a.dev,074c2e585d197374e108"
+ }
+}
diff --git a/domains/_vercel.anujer.json b/domains/_vercel.anujer.json
new file mode 100644
index 000000000..e5a5ec3f3
--- /dev/null
+++ b/domains/_vercel.anujer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Anuj-er",
+ "email": "anujkumar142000@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=anujer.is-a.dev,5f217a3fd00ee5fff7bc"
+ }
+}
diff --git a/domains/_vercel.anushi.json b/domains/_vercel.anushi.json
new file mode 100644
index 000000000..c7ff41d2d
--- /dev/null
+++ b/domains/_vercel.anushi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Anushi13prsnl",
+ "email": "anushi4849@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=anushi.is-a.dev,714e2ca17c98df2b9c74"
+ }
+}
diff --git a/domains/_vercel.anw.json b/domains/_vercel.anw.json
new file mode 100644
index 000000000..26ce60cda
--- /dev/null
+++ b/domains/_vercel.anw.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SubhrajitSain",
+ "email": "subhrajitsain34@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=anw.is-a.dev,311da8db0edf384b5617"
+ }
+}
diff --git a/domains/_vercel.app.vyductan.json b/domains/_vercel.app.vyductan.json
index 6904ef7ee..1ba7308b6 100644
--- a/domains/_vercel.app.vyductan.json
+++ b/domains/_vercel.app.vyductan.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "vyductan",
- "email": "vdt5snet@gmail.com",
- "discord": "370012050316984321"
- },
- "record": {
- "TXT": "vc-domain-verify=*.vyductan.is-a.dev,f7fc15db084fa96cf967"
- }
+ "owner": {
+ "username": "vyductan",
+ "email": "vdt5snet@gmail.com",
+ "discord": "370012050316984321"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=*.vyductan.is-a.dev,f7fc15db084fa96cf967"
+ }
}
diff --git a/domains/_vercel.arhanansari.json b/domains/_vercel.arhanansari.json
new file mode 100644
index 000000000..47ca6fa78
--- /dev/null
+++ b/domains/_vercel.arhanansari.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ArhanAnsari",
+ "email": "arhanansari2009@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=arhanansari.is-a.dev,73384f1ab64fc8f50509"
+ }
+}
diff --git a/domains/_vercel.arkan.json b/domains/_vercel.arkan.json
new file mode 100644
index 000000000..5f5b0866f
--- /dev/null
+++ b/domains/_vercel.arkan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ArizalArkan",
+ "email": "arizalarkan@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=arkan.is-a.dev,1950c16be793b47f3a76"
+ }
+}
diff --git a/domains/_vercel.arlan.json b/domains/_vercel.arlan.json
new file mode 100644
index 000000000..35c1f87c6
--- /dev/null
+++ b/domains/_vercel.arlan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "handikatriarlan",
+ "email": "handikaarlan@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=arlan.is-a.dev,0ab1dd26cecd05574326"
+ }
+}
diff --git a/domains/_vercel.arshman.json b/domains/_vercel.arshman.json
index 3d42d54ea..9bb0feb4a 100644
--- a/domains/_vercel.arshman.json
+++ b/domains/_vercel.arshman.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "syedtahseen",
- "email": ""
+ "username": "syedtahseen"
},
"record": {
"TXT": ["vc-domain-verify=arshman.is-a.dev,b92115f7845437a44890"]
diff --git a/domains/_vercel.arunlorenz.json b/domains/_vercel.arunlorenz.json
new file mode 100644
index 000000000..b8c556459
--- /dev/null
+++ b/domains/_vercel.arunlorenz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "arunlorenz",
+ "email": "nsak1763@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=arunlorenz.is-a.dev,066c5320af2515eb11a3"
+ }
+}
diff --git a/domains/_vercel.arvind.json b/domains/_vercel.arvind.json
new file mode 100644
index 000000000..f429e44c3
--- /dev/null
+++ b/domains/_vercel.arvind.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "coderman400",
+ "email": "achurox1121@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=arvind.is-a.dev,6078db13fb7b19c2e83d"
+ }
+}
diff --git a/domains/_vercel.aryan.json b/domains/_vercel.aryan.json
new file mode 100644
index 000000000..b44dde075
--- /dev/null
+++ b/domains/_vercel.aryan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "aryanpatel142006",
+ "email": "aryanpatel142006@gmail.com",
+ "discord": "aryanpatel142006"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aryan.is-a.dev,589c160d472fa2b93174"
+ }
+}
diff --git a/domains/_vercel.aryann.json b/domains/_vercel.aryann.json
index f40837ddd..4af5f87c6 100644
--- a/domains/_vercel.aryann.json
+++ b/domains/_vercel.aryann.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aryanm830",
- "email": "aryanm830@proton.me",
- "discord": "riftfiree"
- },
- "record": {
- "TXT": "vc-domain-verify=aryann.is-a.dev,055a43d91c6031804886"
- }
+ "owner": {
+ "username": "aryanm830",
+ "email": "aryanm830@proton.me",
+ "discord": "riftfiree"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=aryann.is-a.dev,055a43d91c6031804886"
+ }
}
diff --git a/domains/_vercel.at-muhammad.json b/domains/_vercel.at-muhammad.json
new file mode 100644
index 000000000..e505df9ed
--- /dev/null
+++ b/domains/_vercel.at-muhammad.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "xgovernor",
+ "email": "abutahermuhammad@outlook.com",
+ "description": "Portfolio website of Abu Taher Muhammad"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=at-muhammad.is-a.dev,398740ea0c7de20b1a80"
+ }
+}
diff --git a/domains/_vercel.awhvish.json b/domains/_vercel.awhvish.json
new file mode 100644
index 000000000..bf0b12539
--- /dev/null
+++ b/domains/_vercel.awhvish.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "awhvish",
+ "email": "avislowha9@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=awhvish.is-a.dev,f4fbe002837b72638f88"]
+ }
+}
diff --git a/domains/_vercel.ayushk.json b/domains/_vercel.ayushk.json
new file mode 100644
index 000000000..5c11b1d7e
--- /dev/null
+++ b/domains/_vercel.ayushk.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ayushk-1801",
+ "email": "ayush.kumara1801@gmail.com",
+ "discord": "ayushk_1801"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ayushk.is-a.dev,339b6861f1513bf39684"
+ }
+}
diff --git a/domains/_vercel.azrifatihah.json b/domains/_vercel.azrifatihah.json
new file mode 100644
index 000000000..8c3ce80ef
--- /dev/null
+++ b/domains/_vercel.azrifatihah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "muhAzri",
+ "email": "muhammad.azri.f.s@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=azrifatihah.is-a.dev,99b5bc49dc0a636f9bcf"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.baibhav.json b/domains/_vercel.baibhav.json
new file mode 100644
index 000000000..f37fa278a
--- /dev/null
+++ b/domains/_vercel.baibhav.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Baibhavos",
+ "email": "baibhavkumar303@gmal.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=baibhav.is-a.dev,b652350d2b3b8f0bef49"
+ }
+}
diff --git a/domains/_vercel.bala.json b/domains/_vercel.bala.json
new file mode 100644
index 000000000..a5860b39f
--- /dev/null
+++ b/domains/_vercel.bala.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "parzi-val",
+ "email": "krbala1511@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=bala.is-a.dev,7d0037d117e48bf24960"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.balaji.json b/domains/_vercel.balaji.json
new file mode 100644
index 000000000..2e7a018ba
--- /dev/null
+++ b/domains/_vercel.balaji.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "balaji-atoa",
+ "discord": "popz06"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=balaji.is-a.dev,b4898f8e7508d5de541e"
+ }
+}
diff --git a/domains/_vercel.banda.json b/domains/_vercel.banda.json
new file mode 100644
index 000000000..4516c134e
--- /dev/null
+++ b/domains/_vercel.banda.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bandabahariputra",
+ "discord": "banda"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=banda.is-a.dev,e684b7e614c3912ba446"]
+ }
+}
diff --git a/domains/_vercel.barnacl437.json b/domains/_vercel.barnacl437.json
new file mode 100644
index 000000000..1960b5e20
--- /dev/null
+++ b/domains/_vercel.barnacl437.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Barnacl437",
+ "email": "barnacl437@proton.me"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=barnacl437.is-a.dev,3f01ae10ed626c14894b"
+ }
+}
diff --git a/domains/_vercel.bdn-fr.json b/domains/_vercel.bdn-fr.json
new file mode 100644
index 000000000..f7437b28f
--- /dev/null
+++ b/domains/_vercel.bdn-fr.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "bdn-fr"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=bdn-fr.is-a.dev,85271b1cab848c134027"
+ }
+}
diff --git a/domains/_vercel.bhavyagupta.json b/domains/_vercel.bhavyagupta.json
new file mode 100644
index 000000000..dd14aaf1f
--- /dev/null
+++ b/domains/_vercel.bhavyagupta.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "BhavyaGupta315",
+ "email": "bhavyagupta315@gmail.com",
+ "discord": "bhavya_gupta_"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=bhavyagupta.is-a.dev,6ad4b583ec5dfd020162"
+ }
+}
diff --git a/domains/_vercel.bilalmansuri.json b/domains/_vercel.bilalmansuri.json
new file mode 100644
index 000000000..c4184f17d
--- /dev/null
+++ b/domains/_vercel.bilalmansuri.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "bilal-23",
+ "email": "work.bilalmansuri@gmail.com",
+ "discord": "bilal_23"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=bilal.is-a.dev,de7575c2e6976d25ab24"
+ }
+}
diff --git a/domains/_vercel.bladimir.json b/domains/_vercel.bladimir.json
new file mode 100644
index 000000000..9e9d67911
--- /dev/null
+++ b/domains/_vercel.bladimir.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Esbruiz",
+ "discord": "190241825540276245",
+ "email": "esbruizc@gmail.com",
+ "bluesky": "did:plc:xkczclld4e5vvpypnu5z6m2g"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=bladimir.is-a.dev,e64e9cb20c3d9e344c18"
+ }
+}
diff --git a/domains/_vercel.bm.json b/domains/_vercel.bm.json
new file mode 100644
index 000000000..90038acea
--- /dev/null
+++ b/domains/_vercel.bm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BM87006",
+ "email": "bm.is.a.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=bm.is-a.dev,d8bab26fdcf36f857b96"
+ }
+}
diff --git a/domains/_vercel.bumidenpasar.json b/domains/_vercel.bumidenpasar.json
new file mode 100644
index 000000000..5495d630d
--- /dev/null
+++ b/domains/_vercel.bumidenpasar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BumiDenpasar",
+ "instagram": "ibummmbumi"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=bumidenpasar.is-a.dev,2acace80e7ea336fd678"
+ }
+}
diff --git a/domains/_vercel.caelan.json b/domains/_vercel.caelan.json
new file mode 100644
index 000000000..465c2daff
--- /dev/null
+++ b/domains/_vercel.caelan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CaeCur",
+ "email": "caelan.curry+isadev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=caelan.is-a.dev,8b8aef79a843715439f0"
+ }
+}
diff --git a/domains/_vercel.cgmuros.json b/domains/_vercel.cgmuros.json
new file mode 100644
index 000000000..ec663559d
--- /dev/null
+++ b/domains/_vercel.cgmuros.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cgmuros",
+ "email": "cgmuros@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=cgmuros.is-a.dev,12145ac3f3c3d53d6095"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.chamal1120.json b/domains/_vercel.chamal1120.json
new file mode 100644
index 000000000..0502b7c71
--- /dev/null
+++ b/domains/_vercel.chamal1120.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Chamal1120",
+ "email": "kenway213beep@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=chamal1120.is-a.dev,cfcb568d46b4ccb8601f"
+ }
+}
diff --git a/domains/_vercel.charly.json b/domains/_vercel.charly.json
new file mode 100644
index 000000000..831e2c934
--- /dev/null
+++ b/domains/_vercel.charly.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "soy-charly",
+ "email": "carlos.scarrasco08@gmail.com",
+ "discord": "charly0572"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=charly.is-a.dev,ecb785240907dd83c0cc"
+ }
+}
diff --git a/domains/_vercel.chirxg.json b/domains/_vercel.chirxg.json
new file mode 100644
index 000000000..6838e3501
--- /dev/null
+++ b/domains/_vercel.chirxg.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "definitelynotchirag",
+ "email": "chiragdave1888@gmail.com",
+ "discord": "hellchirag"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=chirxg.is-a.dev,701cf9d2a75e9216fd53"
+ }
+}
diff --git a/domains/_vercel.chriscent.json b/domains/_vercel.chriscent.json
new file mode 100644
index 000000000..79319a336
--- /dev/null
+++ b/domains/_vercel.chriscent.json
@@ -0,0 +1,11 @@
+{
+ "description": "A practice portfolio for web design challenges.",
+ "repo": "https://github.com/KishonShrill/website-portfolio",
+ "owner": {
+ "username": "KishonShrill",
+ "email": "crystalbluew@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=chriscent.is-a.dev,0bd491999fe494552e50"
+ }
+}
diff --git a/domains/_vercel.coderzen.json b/domains/_vercel.coderzen.json
new file mode 100644
index 000000000..54da6fbe2
--- /dev/null
+++ b/domains/_vercel.coderzen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Realtrickz",
+ "email": "isamismail8273@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=coderzen.is-a.dev,5ccfa8ada71ce5978b97"
+ }
+}
diff --git a/domains/_vercel.codesoft.json b/domains/_vercel.codesoft.json
new file mode 100644
index 000000000..1e332b1c0
--- /dev/null
+++ b/domains/_vercel.codesoft.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CodeSoftGit",
+ "email": "codesft@proton.me"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=codesoft.is-a.dev,18c04513308f15b350a9"
+ }
+}
diff --git a/domains/_vercel.codexkun.json b/domains/_vercel.codexkun.json
new file mode 100644
index 000000000..4b909ef1d
--- /dev/null
+++ b/domains/_vercel.codexkun.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KunalBishwal",
+ "email": "kunalbishwal2004@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=codexkun.is-a.dev,0c262cd5c5e3a73e7717"
+ }
+}
diff --git a/domains/_vercel.crystal.json b/domains/_vercel.crystal.json
new file mode 100644
index 000000000..cd4c8821e
--- /dev/null
+++ b/domains/_vercel.crystal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "crystalbajgai",
+ "email": "crystalbajgai@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=crystal.is-a.dev,ef573673a0e376748ea9"
+ }
+}
diff --git a/domains/_vercel.cynik.json b/domains/_vercel.cynik.json
new file mode 100644
index 000000000..0df2030ff
--- /dev/null
+++ b/domains/_vercel.cynik.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "criticic",
+ "email": "acriticalcynic@outlook.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=cynik.is-a.dev,c3bf65e6e52c2bd9ce40"
+ }
+}
diff --git a/domains/_vercel.damian.json b/domains/_vercel.damian.json
new file mode 100644
index 000000000..37e2f7411
--- /dev/null
+++ b/domains/_vercel.damian.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "meliadamian17",
+ "email": "meliadamian17@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=damian.is-a.dev,4dce4cc5e2ccdbc3e472"
+ }
+}
diff --git a/domains/_vercel.dang.json b/domains/_vercel.dang.json
new file mode 100644
index 000000000..a7e380c22
--- /dev/null
+++ b/domains/_vercel.dang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chanhdangcom",
+ "email": "ncdang@quaric.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=dang.is-a.dev,75e81b9a2a5ada157a8e"]
+ }
+}
diff --git a/domains/_vercel.danieltampe.json b/domains/_vercel.danieltampe.json
new file mode 100644
index 000000000..598a54b4f
--- /dev/null
+++ b/domains/_vercel.danieltampe.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DanielTampeCaamano",
+ "email": "danieltampe@hotmail.com",
+ "discord": "246811015285571586"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=danieltampe.is-a.dev,0d68ec9f81c4e5ed7837"
+ }
+}
diff --git a/domains/_vercel.darkyzhou.json b/domains/_vercel.darkyzhou.json
new file mode 100644
index 000000000..2280d6a62
--- /dev/null
+++ b/domains/_vercel.darkyzhou.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "darkyzhou",
+ "email": "me@zqy.io"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=darkyzhou.is-a.dev,811f7082bde4a2cf77b8"
+ }
+}
diff --git a/domains/_vercel.davechbga.json b/domains/_vercel.davechbga.json
index db6de388c..6940aacb1 100644
--- a/domains/_vercel.davechbga.json
+++ b/domains/_vercel.davechbga.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "davechbga"
- },
- "record": {
- "TXT": "vc-domain-verify=davechbga.is-a.dev,54fb1a1b8fbc8affd8f7"
- }
+ "owner": {
+ "username": "davechbga"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=davechbga.is-a.dev,54fb1a1b8fbc8affd8f7"
+ }
}
diff --git a/domains/_vercel.davr.json b/domains/_vercel.davr.json
new file mode 100644
index 000000000..c40474376
--- /dev/null
+++ b/domains/_vercel.davr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cernoh",
+ "email": "davincey06@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=davr.is-a.dev,ac46906b38acef6b29bf"
+ }
+}
diff --git a/domains/_vercel.deadshot.json b/domains/_vercel.deadshot.json
index 8c2959e8b..ea0f954fe 100644
--- a/domains/_vercel.deadshot.json
+++ b/domains/_vercel.deadshot.json
@@ -1,12 +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"
- }
+ "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.deeptanshu.json b/domains/_vercel.deeptanshu.json
new file mode 100644
index 000000000..d8567ddde
--- /dev/null
+++ b/domains/_vercel.deeptanshu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Deeptanshuu",
+ "email": "laldeeptanshu96@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=deeptanshu.is-a.dev,28a4f0adf29f7fd2f9c3"
+ }
+}
diff --git a/domains/_vercel.devanshu.json b/domains/_vercel.devanshu.json
index fc955ce53..680504562 100644
--- a/domains/_vercel.devanshu.json
+++ b/domains/_vercel.devanshu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "DevanshuTripathi",
- "email": "aditheprince120@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=devanshu.is-a.dev,e278253baf18d3dda9c1"
- }
+ "owner": {
+ "username": "DevanshuTripathi",
+ "email": "aditheprince120@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=devanshu.is-a.dev,e278253baf18d3dda9c1"
+ }
}
diff --git a/domains/_vercel.devmatei.json b/domains/_vercel.devmatei.json
deleted file mode 100644
index 3d3f09f75..000000000
--- a/domains/_vercel.devmatei.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "owner": {
- "username": "devmatei"
- },
- "record": {
- "TXT": ["vc-domain-verify=chatbot.devmatei.is-a.dev,6928d211a16fe5cd94d1"]
- }
-}
diff --git a/domains/_vercel.dhika.json b/domains/_vercel.dhika.json
index f73592c19..3a6d09a0d 100644
--- a/domains/_vercel.dhika.json
+++ b/domains/_vercel.dhika.json
@@ -1,9 +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
+ "owner": {
+ "username": "thisisdhika",
+ "email": "dhikaardana87@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=dhika.is-a.dev,3b4f3c565c41289d2f66"
+ }
+}
diff --git a/domains/_vercel.dilpreetgrover.json b/domains/_vercel.dilpreetgrover.json
new file mode 100644
index 000000000..11a62cb79
--- /dev/null
+++ b/domains/_vercel.dilpreetgrover.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "dfordp",
+ "email": "dilpreetgrover2@gmail.com",
+ "discord": "dfordp"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=dilpreetgrover.is-a.dev,a46f6b3fc877e4d2cbcc"
+ }
+}
diff --git a/domains/_vercel.dishant.json b/domains/_vercel.dishant.json
new file mode 100644
index 000000000..00eb62c4a
--- /dev/null
+++ b/domains/_vercel.dishant.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Dishant402955",
+ "email": "dishantradadiya3036@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=dishant.is-a.dev,cfc2c6cd0ad49054757b"
+ }
+}
diff --git a/domains/_vercel.divyanshudhruv.json b/domains/_vercel.divyanshudhruv.json
new file mode 100644
index 000000000..98afe396e
--- /dev/null
+++ b/domains/_vercel.divyanshudhruv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "divyanshudhruv",
+ "email": "divyanshudhruv24@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=divyanshudhruv.is-a.dev,3736859f922a85d87e46"]
+ }
+}
diff --git a/domains/_vercel.divyanshuvashu.json b/domains/_vercel.divyanshuvashu.json
new file mode 100644
index 000000000..da1e28f13
--- /dev/null
+++ b/domains/_vercel.divyanshuvashu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "divyanshu-vashu",
+ "email": "vashusingh2004.jan@gmail.com",
+ "discord": "ram_ravan69"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=divyanshuvashu.is-a.dev,26b8f5f55295c4a8ec71"
+ }
+}
diff --git a/domains/_vercel.dokiet.json b/domains/_vercel.dokiet.json
new file mode 100644
index 000000000..4a0bb2904
--- /dev/null
+++ b/domains/_vercel.dokiet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kietdo-dev",
+ "email": "lionvs12345@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=dokiet.is-a.dev,1e2bde9af2e3aef379fd"
+ }
+}
diff --git a/domains/_vercel.drew.json b/domains/_vercel.drew.json
new file mode 100644
index 000000000..5d12c9a0e
--- /dev/null
+++ b/domains/_vercel.drew.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zessu",
+ "email": "regime-pluck-gulf@duck.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=drew.is-a.dev,78b1c3bcf18815fe9bfe"
+ }
+}
diff --git a/domains/_vercel.duypt14.json b/domains/_vercel.duypt14.json
new file mode 100644
index 000000000..f65d99352
--- /dev/null
+++ b/domains/_vercel.duypt14.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ptduy14",
+ "email": "phantanduy14@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=duypt14.is-a.dev,14245b40810d20910d2a"
+ }
+}
diff --git a/domains/_vercel.ebooks.json b/domains/_vercel.ebooks.json
index 440fdeaf2..0a1509aa1 100644
--- a/domains/_vercel.ebooks.json
+++ b/domains/_vercel.ebooks.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "tuannguyen2002",
- "email": "",
- "discord": "minhtuan9039"
- },
- "record": {
- "TXT": "vc-domain-verify=ebooks.is-a.dev,5fa4e0aa7b17c9f52a9d"
- }
+ "owner": {
+ "username": "tuannguyen2002",
+ "discord": "minhtuan9039"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ebooks.is-a.dev,5fa4e0aa7b17c9f52a9d"
+ }
}
diff --git a/domains/_vercel.elvis-tran.json b/domains/_vercel.elvis-tran.json
index 33f9418aa..56348a1ef 100644
--- a/domains/_vercel.elvis-tran.json
+++ b/domains/_vercel.elvis-tran.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "totargaming",
- "email": "elvistranhere@gmail.com",
- "discord": "elvistran.here"
- },
- "record": {
- "TXT": ["vc-domain-verify=elvis-tran.is-a.dev,cb733ac2167fe3a593a3"]
- }
+ "owner": {
+ "username": "totargaming",
+ "email": "elvistranhere@gmail.com",
+ "discord": "elvistran.here"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=elvis-tran.is-a.dev,cb733ac2167fe3a593a3"]
+ }
}
diff --git a/domains/_vercel.elyesghorbel.json b/domains/_vercel.elyesghorbel.json
new file mode 100644
index 000000000..583b2a37b
--- /dev/null
+++ b/domains/_vercel.elyesghorbel.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "elyescesar",
+ "email": "elyesghorbeldev@gmail.com",
+ "discord": "840182191244705802"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=elyesghorbel.is-a.dev,7c52422c3800285ef8f7"
+ }
+}
diff --git a/domains/_vercel.emanuel-prado.json b/domains/_vercel.emanuel-prado.json
new file mode 100644
index 000000000..535009f99
--- /dev/null
+++ b/domains/_vercel.emanuel-prado.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "emanu-dev",
+ "email": "emanuel.prado.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=emanuel-prado.is-a.dev,2852fb034d376417491f"
+ }
+}
diff --git a/domains/_vercel.ethantran.json b/domains/_vercel.ethantran.json
new file mode 100644
index 000000000..ebe8e1643
--- /dev/null
+++ b/domains/_vercel.ethantran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ethanxcode",
+ "email": "trannguyendanhuy2904@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ethantran.is-a.dev,5f35b845871b948c0035"
+ }
+}
diff --git a/domains/_vercel.fabien.json b/domains/_vercel.fabien.json
index 73c8d7fb0..00d2b1c4f 100644
--- a/domains/_vercel.fabien.json
+++ b/domains/_vercel.fabien.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "fabien-h",
- "email": "fabien.huet@gmail.com",
- "discord": "fabien_huet"
- },
- "record": {
- "TXT": "vc-domain-verify=fabien.is.a.dev,65d8329499551546ef22"
- }
+ "owner": {
+ "username": "fabien-h",
+ "email": "fabien.huet@gmail.com",
+ "discord": "fabien_huet"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=fabien.is.a.dev,65d8329499551546ef22"
+ }
}
diff --git a/domains/_vercel.farooq.json b/domains/_vercel.farooq.json
index 32d631ffd..7dc05eeff 100644
--- a/domains/_vercel.farooq.json
+++ b/domains/_vercel.farooq.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "fexxix",
- "email": "fexxix@gmail.com",
- "discord": ""
+ "email": "fexxix@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=farooq.is-a.dev,a240a8b43ff88d419864"
diff --git a/domains/_vercel.farouk.json b/domains/_vercel.farouk.json
new file mode 100644
index 000000000..d5b387e8f
--- /dev/null
+++ b/domains/_vercel.farouk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "faroukchebaiki",
+ "email": "farouk.chebaiki@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=farouk.is-a.dev,ec3de2841315d1108853"
+ }
+}
diff --git a/domains/_vercel.fbik.json b/domains/_vercel.fbik.json
new file mode 100644
index 000000000..a92fbb09c
--- /dev/null
+++ b/domains/_vercel.fbik.json
@@ -0,0 +1,10 @@
+{
+ "description": "Vercel Domain Verification",
+ "owner": {
+ "username": "FBIKdot",
+ "email": "fbik@duck.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=fbik.is-a.dev,0a7d295b422625e5916c"
+ }
+}
diff --git a/domains/_vercel.felipe.json b/domains/_vercel.felipe.json
index 354af504a..22984ad7e 100644
--- a/domains/_vercel.felipe.json
+++ b/domains/_vercel.felipe.json
@@ -1,10 +1,9 @@
-{
- "owner": {
- "username": "felipecalderon",
- "email": "hola@felipe.bio"
- },
- "record": {
- "TXT": ["vc-domain-verify=felipe.is-a.dev,07f2247f0a80372e5d48"]
- }
- }
-
\ No newline at end of file
+{
+ "owner": {
+ "username": "felipecalderon",
+ "email": "hola@felipe.bio"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=felipe.is-a.dev,07f2247f0a80372e5d48"]
+ }
+}
diff --git a/domains/_vercel.fendimohamed.json b/domains/_vercel.fendimohamed.json
new file mode 100644
index 000000000..529b41706
--- /dev/null
+++ b/domains/_vercel.fendimohamed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "FendiMohamed",
+ "email": "fendimohamed615@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=fendimohamed.is-a.dev,36783fd4f5b7c8306eb5"
+ }
+}
diff --git a/domains/_vercel.fodilfliti.json b/domains/_vercel.fodilfliti.json
new file mode 100644
index 000000000..9d324b412
--- /dev/null
+++ b/domains/_vercel.fodilfliti.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fodilfliti",
+ "email": "fodilfliti150@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=fodilfliti.is-a.dev,4fd9fffa402a9f014dc9"
+ }
+}
diff --git a/domains/_vercel.francodurand.json b/domains/_vercel.francodurand.json
new file mode 100644
index 000000000..aff12071c
--- /dev/null
+++ b/domains/_vercel.francodurand.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "FrancoDurand"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=francodurand.is-a.dev,ad7840fa5cb01e5d90c1"
+ }
+}
diff --git a/domains/_vercel.francoleon.json b/domains/_vercel.francoleon.json
new file mode 100644
index 000000000..da40de48d
--- /dev/null
+++ b/domains/_vercel.francoleon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "francoleon08",
+ "email": "francoleon284@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=francoleon.is-a.dev,ead369809cf9c9018296"
+ }
+}
diff --git a/domains/_vercel.fryvex.json b/domains/_vercel.fryvex.json
new file mode 100644
index 000000000..761532709
--- /dev/null
+++ b/domains/_vercel.fryvex.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "x1yl",
+ "discord": "627947214576025610"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=fryvex.is-a.dev,e21cd006ac5a44e6958e"
+ }
+}
diff --git a/domains/_vercel.funinkina.json b/domains/_vercel.funinkina.json
new file mode 100644
index 000000000..8ebcbeaf6
--- /dev/null
+++ b/domains/_vercel.funinkina.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "funinkina",
+ "email": "aryankushwaha3101@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=funinkina.is-a.dev,8581bc99ee19dbb2326b"
+ }
+}
diff --git a/domains/_vercel.fynnlukah.json b/domains/_vercel.fynnlukah.json
new file mode 100644
index 000000000..f151b2210
--- /dev/null
+++ b/domains/_vercel.fynnlukah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fynnlukah",
+ "discord": "727590288209608824"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=fynnlukah.is-a.dev,cb31ebf997d8ee866ca5"
+ }
+}
diff --git a/domains/_vercel.gcet.aaqif.json b/domains/_vercel.gcet.aaqif.json
new file mode 100644
index 000000000..234b4f98c
--- /dev/null
+++ b/domains/_vercel.gcet.aaqif.json
@@ -0,0 +1,10 @@
+{
+ "description": "Gcet Project",
+ "owner": {
+ "username": "aaqifshafi",
+ "email": "aaqifshafi@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=gcet.aaqif.is-a.dev,51f4e956bd2e1a1f9160"]
+ }
+}
diff --git a/domains/_vercel.glitched-da-kitty-cat.json b/domains/_vercel.glitched-da-kitty-cat.json
new file mode 100644
index 000000000..075705d42
--- /dev/null
+++ b/domains/_vercel.glitched-da-kitty-cat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GlitchedDaKittyCatSchoolaccount",
+ "email": "glitcheddacat@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=glitched-da-kitty-cat.is-a.dev,d3ead0cedf604d462fbb"
+ }
+}
diff --git a/domains/_vercel.graxya.json b/domains/_vercel.graxya.json
new file mode 100644
index 000000000..225281315
--- /dev/null
+++ b/domains/_vercel.graxya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GratiaManullang03",
+ "email": "felixmanullang81@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=graxya.is-a.dev,f57c22ab53c078ea60ce"
+ }
+}
diff --git a/domains/_vercel.grazitukozaki.json b/domains/_vercel.grazitukozaki.json
index 584b23e6f..d7e014d30 100644
--- a/domains/_vercel.grazitukozaki.json
+++ b/domains/_vercel.grazitukozaki.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "GrazielyTukozaki",
- "email": "grazitukozaki@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=grazitukozaki.is-a.dev,f0e6150082fdc4fa5b27"
- }
+ "owner": {
+ "username": "GrazielyTukozaki",
+ "email": "grazitukozaki@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=grazitukozaki.is-a.dev,f0e6150082fdc4fa5b27"
}
-
\ No newline at end of file
+}
diff --git a/domains/_vercel.guidocaru.json b/domains/_vercel.guidocaru.json
index 8ce33f45b..e01f7c901 100644
--- a/domains/_vercel.guidocaru.json
+++ b/domains/_vercel.guidocaru.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "guidocaru",
- "discord": "696554384817127486"
- },
- "record": {
- "TXT": "vc-domain-verify=guidocaru.is-a.dev,6106f8de674c39bfb732"
- }
+ "owner": {
+ "username": "guidocaru",
+ "discord": "696554384817127486"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=guidocaru.is-a.dev,6106f8de674c39bfb732"
+ }
}
diff --git a/domains/_vercel.hafeez.json b/domains/_vercel.hafeez.json
new file mode 100644
index 000000000..483b6a258
--- /dev/null
+++ b/domains/_vercel.hafeez.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hamid1882",
+ "email": "hussainhafeez1100@gmail.com",
+ "discord": "hamid1882"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hafeez.is-a.dev,2a3f79f801934e7298bf"
+ }
+}
diff --git a/domains/_vercel.hareesh.json b/domains/_vercel.hareesh.json
new file mode 100644
index 000000000..52ed4ba29
--- /dev/null
+++ b/domains/_vercel.hareesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Hareesh108",
+ "email": "hareeshbhittam@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hareesh.is-a.dev,477c6844f0ac3a8191e6"
+ }
+}
diff --git a/domains/_vercel.harish.json b/domains/_vercel.harish.json
new file mode 100644
index 000000000..3826c3402
--- /dev/null
+++ b/domains/_vercel.harish.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "HarishChandran3304",
+ "email": "harish3304.work@gmail.com",
+ "discord": "harish3304"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=harish.is-a.dev,f67b0eba2383a0492136"
+ }
+}
diff --git a/domains/_vercel.harshmallick.json b/domains/_vercel.harshmallick.json
new file mode 100644
index 000000000..90fb0b2ff
--- /dev/null
+++ b/domains/_vercel.harshmallick.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "harsh-mallick",
+ "email": "harshmallick052009@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=harshmallick.is-a.dev,323ae0e1146fa7bc07e2"
+ }
+}
diff --git a/domains/_vercel.harshshah.json b/domains/_vercel.harshshah.json
index cc345b0c9..351dfb91f 100644
--- a/domains/_vercel.harshshah.json
+++ b/domains/_vercel.harshshah.json
@@ -1,10 +1,13 @@
{
- "owner": {
- "username": "harshshah-codes",
- "email": "harshshah.dev@gmail.com",
- "discord": "889700837520199761"
- },
- "record": {
- "TXT": "vc-domain-verify=harshshah.is-a.dev,42f8ad923b9e4a9aa010"
- }
+ "owner": {
+ "username": "harshshah-codes",
+ "email": "harshshah.dev@gmail.com",
+ "discord": "889700837520199761"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=harshshah.is-a.dev,42f8ad923b9e4a9aa010",
+ "vc-domain-verify=about.harshshah.is-a.dev,f9d8e16efb5cc0d31d96"
+ ]
+ }
}
diff --git a/domains/_vercel.harshvardhan.json b/domains/_vercel.harshvardhan.json
new file mode 100644
index 000000000..ececcb088
--- /dev/null
+++ b/domains/_vercel.harshvardhan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Harshvardhan5703",
+ "email": "shekhawat.harsh287@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=harshvardhan.is-a.dev,a93c0d07e2b0286b32b3"]
+ }
+}
diff --git a/domains/_vercel.hasanbithto.json b/domains/_vercel.hasanbithto.json
new file mode 100644
index 000000000..1267a9e7a
--- /dev/null
+++ b/domains/_vercel.hasanbithto.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "01HB",
+ "email": "hasanbithto207058@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hasanbithto.is-a.dev,0422b355c897ac45ba16"
+ }
+}
diff --git a/domains/_vercel.hashan.json b/domains/_vercel.hashan.json
new file mode 100644
index 000000000..ada56a22b
--- /dev/null
+++ b/domains/_vercel.hashan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hashaaan",
+ "email": "shalithadev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hashan.is-a.dev,f61cc7f79144a261bd12"
+ }
+}
diff --git a/domains/_vercel.hellokhangtran.json b/domains/_vercel.hellokhangtran.json
new file mode 100644
index 000000000..72712cc54
--- /dev/null
+++ b/domains/_vercel.hellokhangtran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KN2222",
+ "email": "hellokhangtran03@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hellokhangtran.is-a.dev,c6412bc4cdbfa93fe3a1"
+ }
+}
diff --git a/domains/_vercel.henderythmix.json b/domains/_vercel.henderythmix.json
new file mode 100644
index 000000000..018042d86
--- /dev/null
+++ b/domains/_vercel.henderythmix.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Henderythmix",
+ "email": "robertoselleswork@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=henderythmix.is-a.dev,daad531219c3ad9b7579"
+ }
+}
diff --git a/domains/_vercel.hieu.json b/domains/_vercel.hieu.json
index 2f8203472..c3f447ed6 100644
--- a/domains/_vercel.hieu.json
+++ b/domains/_vercel.hieu.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "hieutm83",
- "email": "minhhieu.832k@gmail.com",
- "discord": "729364691398164490"
- },
- "record": {
- "TXT": "vc-domain-verify=hieu.is-a.dev,dc7e0df748913559410b"
- }
+ "owner": {
+ "username": "hieutm83",
+ "email": "minhhieu.832k@gmail.com",
+ "discord": "729364691398164490"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hieu.is-a.dev,dc7e0df748913559410b"
+ }
}
diff --git a/domains/_vercel.hjr.json b/domains/_vercel.hjr.json
new file mode 100644
index 000000000..6a4b4d17c
--- /dev/null
+++ b/domains/_vercel.hjr.json
@@ -0,0 +1,10 @@
+{
+ "description": "Vercel verification of hjr.is-a.dev",
+ "owner": {
+ "username": "hongjr03",
+ "email": "me@jrhim.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=hjr.is-a.dev,fb939de5f77b0e1360cf"]
+ }
+}
diff --git a/domains/_vercel.hsn.json b/domains/_vercel.hsn.json
new file mode 100644
index 000000000..f40dede78
--- /dev/null
+++ b/domains/_vercel.hsn.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hasan-bro-coder",
+ "email": "hasanur23910@gmail.com",
+ "discord": "hasan894"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hsn.is-a.dev,8e27ffda53d18220c019"
+ }
+}
diff --git a/domains/_vercel.idriss.json b/domains/_vercel.idriss.json
new file mode 100644
index 000000000..613026e0b
--- /dev/null
+++ b/domains/_vercel.idriss.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AstroDriss",
+ "email": "drisspennywise@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=idriss.is-a.dev,375d6639e027c0907afd"
+ }
+}
diff --git a/domains/_vercel.ikram.json b/domains/_vercel.ikram.json
new file mode 100644
index 000000000..1d68a2276
--- /dev/null
+++ b/domains/_vercel.ikram.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "ikram-maulana",
+ "email": "ikrammaulana021@gmail.com",
+ "discord": "634603202784002050"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=ikram.is-a.dev,1c55c62cbbc1ce244ebe",
+ "vc-domain-verify=links.ikram.is-a.dev,706c366017aed069745e",
+ "vc-domain-verify=kakureta.ikram.is-a.dev,cea58e1b5cb084a5d961"
+ ]
+ }
+}
diff --git a/domains/_vercel.ikramth.json b/domains/_vercel.ikramth.json
new file mode 100644
index 000000000..cfe7d58aa
--- /dev/null
+++ b/domains/_vercel.ikramth.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "arcfoz",
+ "email": "ikramtauffiqulh@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ikramth.is-a.dev,ffebaa8e7ae5f74fdd95"
+ }
+}
diff --git a/domains/_vercel.imnahn.json b/domains/_vercel.imnahn.json
new file mode 100644
index 000000000..7fe2a74f0
--- /dev/null
+++ b/domains/_vercel.imnahn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "imnotnahn",
+ "email": "thanhnhan.contact.work@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=imnahn.is-a.dev,464cfe62baa469c20c00"
+ }
+}
diff --git a/domains/_vercel.inputly.json b/domains/_vercel.inputly.json
new file mode 100644
index 000000000..550811aa7
--- /dev/null
+++ b/domains/_vercel.inputly.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NateNear",
+ "email": "matternate21@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=inputly.is-a.dev,650df8c4415b2035e3e3"
+ }
+}
diff --git a/domains/_vercel.iomiras.json b/domains/_vercel.iomiras.json
new file mode 100644
index 000000000..472192d0b
--- /dev/null
+++ b/domains/_vercel.iomiras.json
@@ -0,0 +1,10 @@
+{
+ "description": "This subdomain points to my portfolio website.",
+ "owner": {
+ "username": "iomiras",
+ "email": "miras.shaltayev+isadev@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=iomiras.is-a.dev,f475f7d08678209bfa1f"]
+ }
+}
diff --git a/domains/_vercel.ios.json b/domains/_vercel.ios.json
new file mode 100644
index 000000000..275190d62
--- /dev/null
+++ b/domains/_vercel.ios.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ahios",
+ "email": "ahios.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ios.is-a.dev,535168654c257a38deb0"
+ }
+ }
\ No newline at end of file
diff --git a/domains/_vercel.isaacrobert33.json b/domains/_vercel.isaacrobert33.json
new file mode 100644
index 000000000..2c67403dc
--- /dev/null
+++ b/domains/_vercel.isaacrobert33.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "isaacrobert33",
+ "email": "isaacrobertoluwaseun@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=isaacrobert33.is-a.dev,1688a3dfda585e08298e"
+ }
+}
diff --git a/domains/_vercel.ishbenjamin.json b/domains/_vercel.ishbenjamin.json
new file mode 100644
index 000000000..691d47c9c
--- /dev/null
+++ b/domains/_vercel.ishbenjamin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aurumdev952",
+ "email": "benjamugi20072@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ishbenjamin.is-a.dev,787c8741716d7d7ae200"
+ }
+}
diff --git a/domains/_vercel.ishwar.json b/domains/_vercel.ishwar.json
new file mode 100644
index 000000000..f78c55aa6
--- /dev/null
+++ b/domains/_vercel.ishwar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ishwar00",
+ "email": "ishwargowda100@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ishwar.is-a.dev,6a55bd5a5a9d43473b7f"
+ }
+}
diff --git a/domains/_vercel.itsjhonalex.json b/domains/_vercel.itsjhonalex.json
new file mode 100644
index 000000000..a1541f08d
--- /dev/null
+++ b/domains/_vercel.itsjhonalex.json
@@ -0,0 +1,11 @@
+{
+ "description": "itsjhonalex.is-a.dev",
+ "repo": "github.com/ItsJhonAlex/PortfolioDev",
+ "owner": {
+ "username": "ItsJhonAlex",
+ "email": "itsjhonalex@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=itsjhonalex.is-a.dev,8c4f4f96f1fa142804c7"
+ }
+}
diff --git a/domains/_vercel.ivin-mathew.json b/domains/_vercel.ivin-mathew.json
new file mode 100644
index 000000000..af79e6832
--- /dev/null
+++ b/domains/_vercel.ivin-mathew.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ivin-Mathew",
+ "email": "ivinmk2410@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ivin-mathew.is-a.dev,0ef6e3e9074e997b831b"
+ }
+}
diff --git a/domains/_vercel.jacek.json b/domains/_vercel.jacek.json
new file mode 100644
index 000000000..1ec386780
--- /dev/null
+++ b/domains/_vercel.jacek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "smolak",
+ "email": "jacek.smolak@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jacek.is-a.dev,7c72f1224f5190ca82a2"
+ }
+}
diff --git a/domains/_vercel.jacques.json b/domains/_vercel.jacques.json
new file mode 100644
index 000000000..83231cfe0
--- /dev/null
+++ b/domains/_vercel.jacques.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Jacques2Marais",
+ "discord": "itsmejackmorris"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jacques.is-a.dev,99cb4c27dc634df28742"
+ }
+}
diff --git a/domains/_vercel.jake.json b/domains/_vercel.jake.json
index 08c660da0..d38b4ed5b 100644
--- a/domains/_vercel.jake.json
+++ b/domains/_vercel.jake.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "xzrci",
- "email": ""
+ "username": "xzrci"
},
"record": {
"TXT": ["vc-domain-verify=jake.is-a.dev,1075ab07de85fa87e8cd"]
diff --git a/domains/_vercel.jal.json b/domains/_vercel.jal.json
new file mode 100644
index 000000000..1db958279
--- /dev/null
+++ b/domains/_vercel.jal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Jal-GG",
+ "email": "jalvrund2017@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jal.is-a.dev,1fa1419e6567c483a5d6"
+ }
+}
diff --git a/domains/_vercel.jar.json b/domains/_vercel.jar.json
new file mode 100644
index 000000000..607c01ff0
--- /dev/null
+++ b/domains/_vercel.jar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jartf",
+ "email": "hi@jar.tf"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jar.is-a.dev,faf9fc9ca0c53d380bd7"
+ }
+}
diff --git a/domains/_vercel.jeanclaude.json b/domains/_vercel.jeanclaude.json
new file mode 100644
index 000000000..e99b7b66d
--- /dev/null
+++ b/domains/_vercel.jeanclaude.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jeanclaudegeagea",
+ "email": "jeanclaude.geagea@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jeanclaude.is-a.dev,76b49022de3c560947e8"
+ }
+}
diff --git a/domains/_vercel.jefino.json b/domains/_vercel.jefino.json
new file mode 100644
index 000000000..be4e7738f
--- /dev/null
+++ b/domains/_vercel.jefino.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jefino9488",
+ "email": "jefinojacob9488@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jefino.is-a.dev,06a21d01141d355de2b1"
+ }
+}
diff --git a/domains/_vercel.jigarbhoye.json b/domains/_vercel.jigarbhoye.json
new file mode 100644
index 000000000..b278d11ff
--- /dev/null
+++ b/domains/_vercel.jigarbhoye.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "jigarbhoye04",
+ "discord": "jigx.04",
+ "email": "jigarbhoye04@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jigarbhoye.is-a.dev,194424ab5762042e64fa"
+ }
+}
diff --git a/domains/_vercel.jmc.json b/domains/_vercel.jmc.json
new file mode 100644
index 000000000..f2903e319
--- /dev/null
+++ b/domains/_vercel.jmc.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "josem430",
+ "email": "jmc300499@gmail.com",
+ "discord": "josem430"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jmc.is-a.dev,27b92885b5a4c6e96615"
+ }
+}
diff --git a/domains/_vercel.johntran.json b/domains/_vercel.johntran.json
new file mode 100644
index 000000000..c6f344953
--- /dev/null
+++ b/domains/_vercel.johntran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "johntranz",
+ "email": "john.tran.engineer@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=johntran.is-a.dev,dcd9c5b1d53d9961e19a"
+ }
+}
diff --git a/domains/_vercel.jonasfroeller.json b/domains/_vercel.jonasfroeller.json
index addf90ec4..2d7e4817c 100644
--- a/domains/_vercel.jonasfroeller.json
+++ b/domains/_vercel.jonasfroeller.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "jonasfroeller",
- "discord": "",
"email": "j.froe@gmx.at"
},
"record": {
diff --git a/domains/_vercel.jong.json b/domains/_vercel.jong.json
new file mode 100644
index 000000000..fc9a56f64
--- /dev/null
+++ b/domains/_vercel.jong.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Jongo22",
+ "email": "jingyiong22@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jong.is-a.dev,d7331d87860e2795082e"
+ }
+}
diff --git a/domains/_vercel.jorge-lopz.json b/domains/_vercel.jorge-lopz.json
index 551776f98..5e4734569 100644
--- a/domains/_vercel.jorge-lopz.json
+++ b/domains/_vercel.jorge-lopz.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Jorge-lopz",
- "email": "jlpenero2005@gmail.com",
- "discord": "713831494761840753"
- },
- "record": {
- "TXT": "vc-domain-verify=jorge-lopz.is-a.dev,5bfcd4cedc07714c2319"
- }
+ "owner": {
+ "username": "Jorge-lopz",
+ "email": "jlpenero2005@gmail.com",
+ "discord": "713831494761840753"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jorge-lopz.is-a.dev,5bfcd4cedc07714c2319"
+ }
}
diff --git a/domains/_vercel.joy.json b/domains/_vercel.joy.json
new file mode 100644
index 000000000..260e0ea4c
--- /dev/null
+++ b/domains/_vercel.joy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Harmfulllll",
+ "email": "harmfulllll114@gmail.com",
+ "discord": "1007561787257933885"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=joy.is-a.dev,b9818cfcdf90b4080e52"
+ }
+}
diff --git a/domains/_vercel.juan-morales.json b/domains/_vercel.juan-morales.json
index c74476673..2c386d18f 100644
--- a/domains/_vercel.juan-morales.json
+++ b/domains/_vercel.juan-morales.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Juanmorales1810",
- "email": "juan.exequiel.morales@gmail.com",
- "discord": "746910653343596574"
- },
- "record": {
- "TXT": "vc-domain-verify=juan-morales.is-a.dev,ccd6e4ba9d4b2196b5f7"
- }
+ "owner": {
+ "username": "Juanmorales1810",
+ "email": "juan.exequiel.morales@gmail.com",
+ "discord": "746910653343596574"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=juan-morales.is-a.dev,ccd6e4ba9d4b2196b5f7"
+ }
}
diff --git a/domains/_vercel.juanca.json b/domains/_vercel.juanca.json
new file mode 100644
index 000000000..03ccc9ed6
--- /dev/null
+++ b/domains/_vercel.juanca.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wJuanca",
+ "email": "juancarlosturcios2001@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=juanca.is-a.dev,ff43fca0fbca1d9d8eda"
+ }
+}
diff --git a/domains/_vercel.juanespachon.json b/domains/_vercel.juanespachon.json
new file mode 100644
index 000000000..c03633393
--- /dev/null
+++ b/domains/_vercel.juanespachon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JuanesPachon",
+ "email": "yeroparce1@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=juanespachon.is-a.dev,2b4b64d61c46b5b6384a"
+ }
+}
diff --git a/domains/_vercel.juanhuete.json b/domains/_vercel.juanhuete.json
new file mode 100644
index 000000000..6828f934e
--- /dev/null
+++ b/domains/_vercel.juanhuete.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "juanjose23",
+ "email": "jrios9836@gmail.com",
+ "discord":"988647501236162641"
+
+ },
+ "record": {
+ "TXT": "vc-domain-verify=juanhuete.is-a.dev,479b0bcf59c976d6f921"
+ }
+}
diff --git a/domains/_vercel.juanpabloleonmaya.json b/domains/_vercel.juanpabloleonmaya.json
new file mode 100644
index 000000000..6ba26c133
--- /dev/null
+++ b/domains/_vercel.juanpabloleonmaya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "juanleon8581",
+ "email": "juanleon8581@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=juanpabloleonmaya.is-a.dev,60444b8f6c0ae7c91c12"
+ }
+}
diff --git a/domains/_vercel.jumanji.json b/domains/_vercel.jumanji.json
index cf5987dea..f39fdf51e 100644
--- a/domains/_vercel.jumanji.json
+++ b/domains/_vercel.jumanji.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "heyjumanji",
- "email": "madhuchutiya.unhinge50@silomails.com"
- },
- "record": {
- "TXT": "vc-domain-verify=jumanji.is-a.dev,291766e76a7ab5de1bc7"
- }
+ "owner": {
+ "username": "heyjumanji",
+ "email": "madhuchutiya.unhinge50@silomails.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=jumanji.is-a.dev,291766e76a7ab5de1bc7"
+ }
}
diff --git a/domains/_vercel.kareem.json b/domains/_vercel.kareem.json
new file mode 100644
index 000000000..0e9a9caa1
--- /dev/null
+++ b/domains/_vercel.kareem.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kareem-m",
+ "email": "kareemmoh1911@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=kareem.is-a.dev,227f1873f5be3f29395e"
+ }
+}
diff --git a/domains/_vercel.ken-kuro.json b/domains/_vercel.ken-kuro.json
new file mode 100644
index 000000000..99439a77c
--- /dev/null
+++ b/domains/_vercel.ken-kuro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ken-kuro",
+ "linkedin": "hieuhm2610"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ken-kuro.is-a.dev,f7190a78aaa06c66bd44"
+ }
+}
diff --git a/domains/_vercel.kendikasir.json b/domains/_vercel.kendikasir.json
new file mode 100644
index 000000000..ab30e351c
--- /dev/null
+++ b/domains/_vercel.kendikasir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sneazy25",
+ "email": "sneazy25@proton.me"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=kendikasir.is-a.dev,cd9855791e5cf175a69f"]
+ }
+}
diff --git a/domains/_vercel.kevinmolina.json b/domains/_vercel.kevinmolina.json
new file mode 100644
index 000000000..5a3ee6a88
--- /dev/null
+++ b/domains/_vercel.kevinmolina.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kevinmolinadev",
+ "email": "kevinmolina.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=kevinmolina.is-a.dev,514e23dcdfedeb5ae4c5"
+ }
+}
diff --git a/domains/_vercel.khaif.json b/domains/_vercel.khaif.json
new file mode 100644
index 000000000..f197c11b8
--- /dev/null
+++ b/domains/_vercel.khaif.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "khxif",
+ "email": "code.khaif@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=khaif.is-a.dev,fe39b6b2d8e96026a707"
+ }
+}
diff --git a/domains/_vercel.khanhngn.json b/domains/_vercel.khanhngn.json
new file mode 100644
index 000000000..ba6c408ee
--- /dev/null
+++ b/domains/_vercel.khanhngn.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "khanhngn-dev",
+ "email": "khanhngn.dev@gmail.com",
+ "discord": "jerry.ng"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=khanhngn.is-a.dev,22d6c072955bf792ff60"
+ }
+}
diff --git a/domains/_vercel.kilamieaz.json b/domains/_vercel.kilamieaz.json
new file mode 100644
index 000000000..914ecfc7a
--- /dev/null
+++ b/domains/_vercel.kilamieaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kilamieaz",
+ "email": "im.sultaan05@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=kilamieaz.is-a.dev,43bb0e712f64dcb9c8a5"
+ }
+}
diff --git a/domains/_vercel.kinfhertix.json b/domains/_vercel.kinfhertix.json
new file mode 100644
index 000000000..4389f34e5
--- /dev/null
+++ b/domains/_vercel.kinfhertix.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Kinfhertix",
+ "email": "kinfhertix@gmail.com",
+ "discord": "i_mert"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=kinfhertix.is-a.dev,059b1c9b761eee935ee8"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.kunalshah017.json b/domains/_vercel.kunalshah017.json
new file mode 100644
index 000000000..f9ccf8bdf
--- /dev/null
+++ b/domains/_vercel.kunalshah017.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "kunalshah017",
+ "email": "kunalmanishshah@gmail.com",
+ "discord": "kunalshah17"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=kunalshah017.is-a.dev,4c9e39c65c2d0426535e"
+ }
+}
diff --git a/domains/_vercel.kushdhingra.json b/domains/_vercel.kushdhingra.json
deleted file mode 100644
index 350a577a1..000000000
--- a/domains/_vercel.kushdhingra.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "owner": {
- "username": "kushdhingra"
- },
- "record": {
- "TXT": ["vc-domain-verify=kushdhingra.is-a.dev,a0343a97ff791537efcd"]
- }
-}
diff --git a/domains/_vercel.layhout.json b/domains/_vercel.layhout.json
new file mode 100644
index 000000000..5b4e0205d
--- /dev/null
+++ b/domains/_vercel.layhout.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "layhout",
+ "email": "layhoutworkmail@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=layhout.is-a.dev,be218a450dbf76cb68f1"]
+ }
+}
diff --git a/domains/_vercel.lexy.json b/domains/_vercel.lexy.json
index 75082ad81..de0399d0d 100644
--- a/domains/_vercel.lexy.json
+++ b/domains/_vercel.lexy.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Olalexy1",
- "email": "ajayiolalekan729@gmail.com",
- "discord": "olalexy1"
- },
- "record": {
- "TXT": "vc-domain-verify=lexy.is-a.dev,a923e9c352f68e881f90"
- }
+ "owner": {
+ "username": "Olalexy1",
+ "email": "ajayiolalekan729@gmail.com",
+ "discord": "olalexy1"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=lexy.is-a.dev,a923e9c352f68e881f90"
+ }
}
diff --git a/domains/_vercel.linhtutkyaw.json b/domains/_vercel.linhtutkyaw.json
new file mode 100644
index 000000000..27a90de63
--- /dev/null
+++ b/domains/_vercel.linhtutkyaw.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "linhtutkyawdev",
+ "email": "linhtutkyaw.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=linhtutkyaw.is-a.dev,0d9ce126d75cfb7fe853"
+ }
+}
diff --git a/domains/_vercel.ljean.json b/domains/_vercel.ljean.json
new file mode 100644
index 000000000..1723d2178
--- /dev/null
+++ b/domains/_vercel.ljean.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Granpiecito",
+ "email": "jeanpierresprrymanaleman@gmail.com",
+ "discord": "294318911791562752"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ljean.is-a.dev,1864955b5da34f083f9b"
+ }
+}
diff --git a/domains/_vercel.llucx.json b/domains/_vercel.llucx.json
index 509ea3680..0f941aec3 100644
--- a/domains/_vercel.llucx.json
+++ b/domains/_vercel.llucx.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "llucxdev",
- "email": "puertesarrue@gmail.com",
- "discord": "lluuuc_12"
- },
- "record": {
- "TXT": "vc-domain-verify=llucx.is-a.dev,27a5a8414f3e33fd7634"
- }
+ "owner": {
+ "username": "llucxdev",
+ "email": "puertesarrue@gmail.com",
+ "discord": "lluuuc_12"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=llucx.is-a.dev,27a5a8414f3e33fd7634"
+ }
}
diff --git a/domains/_vercel.lobo.json b/domains/_vercel.lobo.json
index 01c0e7920..e750f7c86 100644
--- a/domains/_vercel.lobo.json
+++ b/domains/_vercel.lobo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Lobooooooo14",
- "discord": "783120232134082580"
- },
- "record": {
- "TXT": "vc-domain-verify=lobo.is-a.dev,aa27648658caa1c96bb8"
- }
+ "owner": {
+ "username": "Lobooooooo14",
+ "discord": "783120232134082580"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=lobo.is-a.dev,aa27648658caa1c96bb8"
+ }
}
diff --git a/domains/_vercel.locionic.json b/domains/_vercel.locionic.json
new file mode 100644
index 000000000..b6b264d1d
--- /dev/null
+++ b/domains/_vercel.locionic.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "locionic",
+ "email": "noone000a@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=locionic.is-a.dev,1d6fe75265bd8065f222"
+ }
+}
diff --git a/domains/_vercel.loomeh.json b/domains/_vercel.loomeh.json
new file mode 100644
index 000000000..b1f138aab
--- /dev/null
+++ b/domains/_vercel.loomeh.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "loomeh",
+ "bluesky": "loomeh.bsky.social"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=loomeh.is-a.dev,a6084877a07f81dfa4b2",
+ "vc-domain-verify=libresplit.loomeh.is-a.dev,345e69da9c8565af78cb",
+ "vc-domain-verify=libresplit-resources.loomeh.is-a.dev,41fad39e7213cf56c118",
+ "vc-domain-verify=ktpguesser.loomeh.is-a.dev,7e26e46b10152c2df032"
+ ]
+ }
+}
diff --git a/domains/_vercel.lraffdev.json b/domains/_vercel.lraffdev.json
new file mode 100644
index 000000000..eea31638d
--- /dev/null
+++ b/domains/_vercel.lraffdev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LRaffDev",
+ "email": "raffaele.la.cerra@outlook.it"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=lraffdev.is-a.dev,d1e53d0b8211a025d0ad"
+ }
+}
diff --git a/domains/_vercel.lucvuro.json b/domains/_vercel.lucvuro.json
new file mode 100644
index 000000000..4e19db2a3
--- /dev/null
+++ b/domains/_vercel.lucvuro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lucvuro",
+ "email": "lucvuit@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=lucvuro.is-a.dev,da1967c10a4607cdefe4"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.luked.json b/domains/_vercel.luked.json
new file mode 100644
index 000000000..7319b537f
--- /dev/null
+++ b/domains/_vercel.luked.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luked177",
+ "twitter": "lukedore_"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=luked.is-a.dev,f942d726bfbd3e8bd435"
+ }
+}
diff --git a/domains/_vercel.luvtoxic.json b/domains/_vercel.luvtoxic.json
new file mode 100644
index 000000000..18e948862
--- /dev/null
+++ b/domains/_vercel.luvtoxic.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luvtoxic",
+ "email": "ammarbags2023@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=luvtoxic.is-a.dev,fe679dc4161b66e8e00f"
+ }
+}
diff --git a/domains/_vercel.lycoris.json b/domains/_vercel.lycoris.json
new file mode 100644
index 000000000..37a225862
--- /dev/null
+++ b/domains/_vercel.lycoris.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lycorissss",
+ "email": "beelzebub5758@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=lycoris.is-a.dev,c3b18b1afc1e66757025"
+ }
+}
diff --git a/domains/_vercel.lyxtem.json b/domains/_vercel.lyxtem.json
new file mode 100644
index 000000000..e5908e00a
--- /dev/null
+++ b/domains/_vercel.lyxtem.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Lyxtem",
+ "email": "nu284955@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=lyxtem.is-a.dev,bf84cf6cc0d0a77baa9d"
+ }
+}
diff --git a/domains/_vercel.maanripe.json b/domains/_vercel.maanripe.json
index ed7cec914..e4cc74486 100644
--- a/domains/_vercel.maanripe.json
+++ b/domains/_vercel.maanripe.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "argkont",
- "email": "kohacaelo+is-a-dev@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=maanripe.is-a.dev,58b3a98b581598b3f572"
- }
+ "owner": {
+ "username": "argkont",
+ "email": "kohacaelo+is-a-dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=maanripe.is-a.dev,58b3a98b581598b3f572"
+ }
}
diff --git a/domains/_vercel.macielsuassuna.json b/domains/_vercel.macielsuassuna.json
new file mode 100644
index 000000000..273788c96
--- /dev/null
+++ b/domains/_vercel.macielsuassuna.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Maciel64",
+ "discord": "macielmano",
+ "email": "macielsuassuna14@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=macielsuassuna.is-a.dev,8c379ebe1b06a321ff44"
+ }
+}
diff --git a/domains/_vercel.mack.json b/domains/_vercel.mack.json
new file mode 100644
index 000000000..8ad7cc448
--- /dev/null
+++ b/domains/_vercel.mack.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mackcodes",
+ "email": "mackcodes03@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mack.is-a.dev,ae3eddaff5956b0fea51"
+ }
+}
diff --git a/domains/_vercel.maher-xubair.json b/domains/_vercel.maher-xubair.json
new file mode 100644
index 000000000..4b0edee20
--- /dev/null
+++ b/domains/_vercel.maher-xubair.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "maher-xubair",
+ "email": "za998192@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=maher-xubair.is-a.dev,da5ba9cd6ff94d8690f8"
+ }
+}
diff --git a/domains/_vercel.maheshpaul.json b/domains/_vercel.maheshpaul.json
index 0043881ee..55cbc8131 100644
--- a/domains/_vercel.maheshpaul.json
+++ b/domains/_vercel.maheshpaul.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "maheshpaulj",
- "email": "mahesh.paul.j@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=maheshpaul.is-a.dev,a6be9b77a63b6d4c8cd6"
- }
+ "owner": {
+ "username": "maheshpaulj",
+ "email": "mahesh.paul.j@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=maheshpaul.is-a.dev,a6be9b77a63b6d4c8cd6"
+ }
}
diff --git a/domains/_vercel.mak5er.json b/domains/_vercel.mak5er.json
new file mode 100644
index 000000000..2202fa9d2
--- /dev/null
+++ b/domains/_vercel.mak5er.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mak5er",
+ "telegram": "@Mak5er"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mak5er.is-a.dev,9971a80509e246fda674"
+ }
+}
diff --git a/domains/_vercel.manhnguyen18.json b/domains/_vercel.manhnguyen18.json
new file mode 100644
index 000000000..3e5ce4d3d
--- /dev/null
+++ b/domains/_vercel.manhnguyen18.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nguyenmanh18",
+ "email": "nguyenmanh1891997@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=manhnguyen18.is-a.dev,32b5b9a6627ffaa77e66"
+ }
+}
diff --git a/domains/_vercel.manishgun.json b/domains/_vercel.manishgun.json
deleted file mode 100644
index bf60d0cb8..000000000
--- a/domains/_vercel.manishgun.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "manishgun",
- "email": "mail.cto.manish@gmail.com"
- },
- "record": {
- "TXT": ["vc-domain-verify=manishgun.is-a.dev,f13d291aacd89c0da59c"]
- }
-}
diff --git a/domains/_vercel.maqbool.json b/domains/_vercel.maqbool.json
new file mode 100644
index 000000000..7079b6e33
--- /dev/null
+++ b/domains/_vercel.maqbool.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Abdullah-Maqbool",
+ "email": "abdullah.maqbool.ahmad@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=abdullah.maqbool.is-a.dev,7d30d66cf0ff8ca544ba"
+ }
+}
diff --git a/domains/_vercel.markasaad.json b/domains/_vercel.markasaad.json
index b9c1c5fb4..4fd77a902 100644
--- a/domains/_vercel.markasaad.json
+++ b/domains/_vercel.markasaad.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "voltonik",
- "email": "markasaadramzy@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=markasaad.is-a.dev,466430b693facfcda35d"
- }
+ "owner": {
+ "username": "voltonik",
+ "email": "markasaadramzy@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=markasaad.is-a.dev,466430b693facfcda35d"
+ }
}
diff --git a/domains/_vercel.marlonbaatjes.json b/domains/_vercel.marlonbaatjes.json
new file mode 100644
index 000000000..bb1c76446
--- /dev/null
+++ b/domains/_vercel.marlonbaatjes.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mdesignscode",
+ "email": "marlonbaatjes62@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=marlonbaatjes.is-a.dev,e393641c1319b97e701e"
+ }
+}
diff --git a/domains/_vercel.martinvruiz.json b/domains/_vercel.martinvruiz.json
new file mode 100644
index 000000000..3298128f0
--- /dev/null
+++ b/domains/_vercel.martinvruiz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "martinvruiz",
+ "email": "martinvruiz10@gmail.com",
+ "discord": "martinvruiz10"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=martinvruiz.is-a.dev,16e98638bc17973af9e7"
+ }
+}
diff --git a/domains/_vercel.mateogariboglio.json b/domains/_vercel.mateogariboglio.json
new file mode 100644
index 000000000..2e6217207
--- /dev/null
+++ b/domains/_vercel.mateogariboglio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mateo-404",
+ "discord": "gary_______"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mateogariboglio.is-a.dev,5241b76c19e0f7de2f4a"
+ }
+}
diff --git a/domains/_vercel.matheusdev.json b/domains/_vercel.matheusdev.json
new file mode 100644
index 000000000..e45e6dd3d
--- /dev/null
+++ b/domains/_vercel.matheusdev.json
@@ -0,0 +1,13 @@
+{
+ "description": "Web Developer Portifolio",
+ "repo": "https://github.com/matheusfdosan/portifolio/",
+ "owner": {
+ "username": "matheusfdosan",
+ "email": "matheusfaustinoe20@gmail.com",
+ "linkedin": "https://www.linkedin.com/in/matheusfaus/",
+ "discord": "979816215281279019"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=matheusdev.is-a.dev,833172e5fe4b188e4883"]
+ }
+}
diff --git a/domains/_vercel.meghdip.json b/domains/_vercel.meghdip.json
new file mode 100644
index 000000000..8b740ed19
--- /dev/null
+++ b/domains/_vercel.meghdip.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "karmakarmeghdip",
+ "email": "karmakarmeghdip@gmail.com",
+ "discord": "479631349167423509"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=meghdip.is-a.dev,c42a80a81afe4ac5800c"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.menn.json b/domains/_vercel.menn.json
new file mode 100644
index 000000000..127af943f
--- /dev/null
+++ b/domains/_vercel.menn.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hedgehog-menn",
+ "email": "kp.thananchai@gmail.com",
+ "discord": "26623men"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=menn.is-a.dev,888e516936e6a1278bc0"
+ }
+}
diff --git a/domains/_vercel.minhtan.json b/domains/_vercel.minhtan.json
new file mode 100644
index 000000000..8ff25ab80
--- /dev/null
+++ b/domains/_vercel.minhtan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tanbaycu",
+ "email": "tanbaycu@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=minhtan.is-a.dev,7be64448654af271a7c5"
+ }
+}
diff --git a/domains/_vercel.mjresu.json b/domains/_vercel.mjresu.json
new file mode 100644
index 000000000..9f5a8e9d0
--- /dev/null
+++ b/domains/_vercel.mjresu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mjdsj",
+ "email": "work.mjdsj+is-a-dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mjresu.is-a.dev,2122712d466f4e306e1d"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.moein.json b/domains/_vercel.moein.json
new file mode 100644
index 000000000..d1e7b76d8
--- /dev/null
+++ b/domains/_vercel.moein.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "TrueMoein",
+ "email": "truemoein@gmail.com",
+ "discord": "truemoein"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=moein.is-a.dev,eccbf656847788d65795"
+ }
+}
diff --git a/domains/_vercel.monosen.json b/domains/_vercel.monosen.json
new file mode 100644
index 000000000..90f07ae1b
--- /dev/null
+++ b/domains/_vercel.monosen.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Monosen",
+ "email": "edisonbj21@gmail.com",
+ "discord": "monosen"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=monosen.is-a.dev,a2fd2dc04b730870b37c"
+ }
+}
diff --git a/domains/_vercel.mr-julus.json b/domains/_vercel.mr-julus.json
new file mode 100644
index 000000000..bc35f9022
--- /dev/null
+++ b/domains/_vercel.mr-julus.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BougSoon-Studio",
+ "email": "bougsoon.studio@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mr-julus.is-a.dev,caaed911982c75cb0961"
+ }
+}
diff --git a/domains/_vercel.mrincer.json b/domains/_vercel.mrincer.json
index 31a83093c..ce10ec627 100644
--- a/domains/_vercel.mrincer.json
+++ b/domains/_vercel.mrincer.json
@@ -1,10 +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
+ "owner": {
+ "username": "khincer",
+ "email": "kirk.incerg@gmail.com",
+ "discord": "kyllhua"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mrincer.is-a.dev,b49fbc8c9c4be061da53"
+ }
+}
diff --git a/domains/_vercel.mrtspeedy.json b/domains/_vercel.mrtspeedy.json
new file mode 100644
index 000000000..cce036d23
--- /dev/null
+++ b/domains/_vercel.mrtspeedy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "mrtspeedy",
+ "email": "toxicspeedytv@gmail.com",
+ "discord": "1095502790534627348"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mrtspeedy.is-a.dev,c168ba7b9bdca5dd1be8"
+ }
+}
diff --git a/domains/_vercel.mudasir.json b/domains/_vercel.mudasir.json
new file mode 100644
index 000000000..14bc33e4f
--- /dev/null
+++ b/domains/_vercel.mudasir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mirzamudassir",
+ "discord": "0xmudassir"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=mudasir.is-a.dev,2d0551deb0d92e5838a7"
+ }
+}
diff --git a/domains/_vercel.muhammed.json b/domains/_vercel.muhammed.json
new file mode 100644
index 000000000..b58578cb6
--- /dev/null
+++ b/domains/_vercel.muhammed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MhmdFais",
+ "email": "mofam534@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=muhammed.is-a.dev,98134514b3a6d270df4b"
+ }
+}
diff --git a/domains/_vercel.munir.json b/domains/_vercel.munir.json
new file mode 100644
index 000000000..6ea3dc9f4
--- /dev/null
+++ b/domains/_vercel.munir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "munirsiddiqui54",
+ "email": "munir230204@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=munir.is-a.dev,c7f53494eaedfcf41c03"
+ }
+}
diff --git a/domains/_vercel.muralikrishna.json b/domains/_vercel.muralikrishna.json
new file mode 100644
index 000000000..509dc63ec
--- /dev/null
+++ b/domains/_vercel.muralikrishna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "muralimallela",
+ "email": "mmallela9@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=muralikrishna.is-a.dev,aa4acc43d9653d1ae68d"
+ }
+}
diff --git a/domains/_vercel.muthomi.json b/domains/_vercel.muthomi.json
index bc371aa55..b09877894 100644
--- a/domains/_vercel.muthomi.json
+++ b/domains/_vercel.muthomi.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "michaelmuthomi",
- "email": "",
- "discord": "michaelgikunda"
- },
- "record": {
- "TXT": "vc-domain-verify=muthomi.is-a.dev,9e31bd88e28832c37f97"
- }
+ "owner": {
+ "username": "michaelmuthomi",
+ "discord": "michaelgikunda"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=muthomi.is-a.dev,9e31bd88e28832c37f97"
+ }
}
diff --git a/domains/_vercel.mzaman.json b/domains/_vercel.mzaman.json
index a66f070e0..4ec6a28e9 100644
--- a/domains/_vercel.mzaman.json
+++ b/domains/_vercel.mzaman.json
@@ -6,4 +6,4 @@
"record": {
"TXT": "vc-domain-verify=mzaman.is-a.dev,23ba156f3878cfc860f7"
}
-}
\ No newline at end of file
+}
diff --git a/domains/_vercel.nabin.json b/domains/_vercel.nabin.json
new file mode 100644
index 000000000..40f80cb54
--- /dev/null
+++ b/domains/_vercel.nabin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nabinkatwal7",
+ "email": "mediocampistaa@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=nabin.is-a.dev,bfd13935a3cb2aaea0e5"
+ }
+}
diff --git a/domains/_vercel.naimur.json b/domains/_vercel.naimur.json
new file mode 100644
index 000000000..9d350c2da
--- /dev/null
+++ b/domains/_vercel.naimur.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mohammad-naimur-rahman",
+ "discord": "829283275846975488"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=naimur.is-a.dev,0a757d4e3b315863d368"
+ }
+}
diff --git a/domains/_vercel.namansethi.json b/domains/_vercel.namansethi.json
new file mode 100644
index 000000000..11e5c7e15
--- /dev/null
+++ b/domains/_vercel.namansethi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "namansethi13",
+ "discord": "namansethi",
+ "email": "namansethi1328@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=namansethi.is-a.dev,e0b892773250b43800c9"
+ }
+}
diff --git a/domains/_vercel.namansrivastava.json b/domains/_vercel.namansrivastava.json
index 5cc5e18db..22afa85f7 100644
--- a/domains/_vercel.namansrivastava.json
+++ b/domains/_vercel.namansrivastava.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "naman-0804",
- "email": "namansrivastava1608@gmail.com",
- "discord": "naman_1101"
- },
- "record": {
- "TXT": "vc-domain-verify=namansrivastava.is-a.dev,7b128b70cd9aae28bf1c"
- }
+ "owner": {
+ "username": "naman-0804",
+ "email": "namansrivastava1608@gmail.com",
+ "discord": "naman_1101"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=namansrivastava.is-a.dev,7b128b70cd9aae28bf1c"
+ }
}
diff --git a/domains/_vercel.namht.json b/domains/_vercel.namht.json
new file mode 100644
index 000000000..e347eead7
--- /dev/null
+++ b/domains/_vercel.namht.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lagux-coding",
+ "email": "nguyenhientrungnam@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=namht.is-a.dev,e9380ff504bc157f2eda"
+ }
+}
diff --git a/domains/_vercel.narasima.json b/domains/_vercel.narasima.json
index 849ac39ca..09ec77d6e 100644
--- a/domains/_vercel.narasima.json
+++ b/domains/_vercel.narasima.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NarasimaPandiyan",
- "email": "cs42059@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=blog.narasima.is-a.dev,f77f79e5650f4790387a"
- }
+ "owner": {
+ "username": "NarasimaPandiyan",
+ "email": "cs42059@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=blog.narasima.is-a.dev,f77f79e5650f4790387a"
+ }
}
diff --git a/domains/_vercel.nathanospino.json b/domains/_vercel.nathanospino.json
new file mode 100644
index 000000000..b66ccecf9
--- /dev/null
+++ b/domains/_vercel.nathanospino.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "C4lumny",
+ "email": "ospinonathan@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=nathanospino.is-a.dev,4130bdbb1e9dc4fcfcc0"
+ }
+}
diff --git a/domains/_vercel.nestornahuel.json b/domains/_vercel.nestornahuel.json
new file mode 100644
index 000000000..32be602d4
--- /dev/null
+++ b/domains/_vercel.nestornahuel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NestorNahuel",
+ "email": "nahuel6195@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=nestornahuel.is-a.dev,efb92feab05594a5f526"
+ }
+}
diff --git a/domains/_vercel.newtun-code-cheat-sheet.json b/domains/_vercel.newtun-code-cheat-sheet.json
new file mode 100644
index 000000000..73b172f57
--- /dev/null
+++ b/domains/_vercel.newtun-code-cheat-sheet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VinhTin-AQUA",
+ "email": "tinhovinh@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=newtun-code-cheat-sheet.is-a.dev,d8b78b5284419c18ec16"
+ }
+}
diff --git a/domains/_vercel.newtun.json b/domains/_vercel.newtun.json
new file mode 100644
index 000000000..60530537c
--- /dev/null
+++ b/domains/_vercel.newtun.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VinhTin-AQUA",
+ "email": "tinhovinh@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=newtun.is-a.dev,4bb1f2ec7e540d7f7a2b"
+ }
+}
diff --git a/domains/_vercel.ngoutam.json b/domains/_vercel.ngoutam.json
new file mode 100644
index 000000000..93eec5434
--- /dev/null
+++ b/domains/_vercel.ngoutam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Goutam-04",
+ "email": "goutamnayak2804+github1@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=ngoutam.is-a.dev,9c110859b66d7ddcd7b5"]
+ }
+}
diff --git a/domains/_vercel.nguyenminhtuan.json b/domains/_vercel.nguyenminhtuan.json
index 8a846ef4a..8758c2795 100644
--- a/domains/_vercel.nguyenminhtuan.json
+++ b/domains/_vercel.nguyenminhtuan.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "tuannguyen2002",
- "email": "",
- "discord": "minhtuan9039"
- },
- "record": {
- "TXT": "vc-domain-verify=nguyenminhtuan.is-a.dev,2910b5006f1f208b05e6"
- }
+ "owner": {
+ "username": "tuannguyen2002",
+ "discord": "minhtuan9039"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=nguyenminhtuan.is-a.dev,2910b5006f1f208b05e6"
+ }
}
diff --git a/domains/_vercel.nicolas.json b/domains/_vercel.nicolas.json
new file mode 100644
index 000000000..cfe5b995d
--- /dev/null
+++ b/domains/_vercel.nicolas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "niicojs",
+ "discord": ".niico."
+ },
+ "record": {
+ "TXT": "vc-domain-verify=nicolas.is-a.dev,1acb257fda76a2df31ce"
+ }
+}
diff --git a/domains/_vercel.nithinramkalava.json b/domains/_vercel.nithinramkalava.json
new file mode 100644
index 000000000..f6746a6b8
--- /dev/null
+++ b/domains/_vercel.nithinramkalava.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nithinramkalava",
+ "email": "nithinramkalava@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=nithinramkalava.is-a.dev,2c94b1dbc37b602f2519"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.notzer0two.json b/domains/_vercel.notzer0two.json
new file mode 100644
index 000000000..5126eb959
--- /dev/null
+++ b/domains/_vercel.notzer0two.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NotZer0Two",
+ "email": "lyonfan2010@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=notzer0two.is-a.dev,38a2a717010666874386"
+ }
+}
diff --git a/domains/_vercel.nparashar150.json b/domains/_vercel.nparashar150.json
new file mode 100644
index 000000000..292811a2b
--- /dev/null
+++ b/domains/_vercel.nparashar150.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nparashar150",
+ "email": "nparashar150@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=nparashar150.is-a.dev,129e61876792da1afb53"
+ }
+}
diff --git a/domains/_vercel.olasubomi.json b/domains/_vercel.olasubomi.json
new file mode 100644
index 000000000..d70c72b0f
--- /dev/null
+++ b/domains/_vercel.olasubomi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "firstaxel",
+ "email": "olasubomiolubisi@geeg.space",
+ "discord": "1209136236607049758"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=olasubomi.is-a.dev,f6bc7744ff52f86278e8"
+ }
+}
diff --git a/domains/_vercel.omshahane.json b/domains/_vercel.omshahane.json
index d857ad4b4..ff7b3914f 100644
--- a/domains/_vercel.omshahane.json
+++ b/domains/_vercel.omshahane.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "shahane806",
- "email": "om.p.shahane@gmail.com",
- "discord": ""
+ "email": "om.p.shahane@gmail.com"
},
"record": {
"TXT": "vc-domain-verify=omshahane.is-a.dev,6e9f5b8eb4f56ccf9b5a"
diff --git a/domains/_vercel.onerandom.json b/domains/_vercel.onerandom.json
new file mode 100644
index 000000000..88dd53e8f
--- /dev/null
+++ b/domains/_vercel.onerandom.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "OneRandom1509",
+ "email": "anantukid@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=onerandom.is-a.dev,e18318031614810f658f"
+ }
+}
diff --git a/domains/_vercel.orellanamatias.json b/domains/_vercel.orellanamatias.json
new file mode 100644
index 000000000..01edd2d6c
--- /dev/null
+++ b/domains/_vercel.orellanamatias.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "OrellanaMatias",
+ "email": "meorellanaramirez@gmail.com",
+ "discord": "1151115185419997184"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=orellanamatias.is-a.dev,784ca0f60e4e4a43e240"
+ }
+}
diff --git a/domains/_vercel.osama.json b/domains/_vercel.osama.json
new file mode 100644
index 000000000..dc7d92620
--- /dev/null
+++ b/domains/_vercel.osama.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=osama.is-a.dev,635c93c34867abdfb117"
+ }
+}
diff --git a/domains/_vercel.panntod.json b/domains/_vercel.panntod.json
new file mode 100644
index 000000000..08102bc43
--- /dev/null
+++ b/domains/_vercel.panntod.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "panntod",
+ "email": "munjalindra.pandhu@gmail.com",
+ "discord": "975960358999171152"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=panntod.is-a.dev,435ff362356e5d45062f"
+ }
+}
diff --git a/domains/_vercel.paul8liveira.json b/domains/_vercel.paul8liveira.json
new file mode 100644
index 000000000..45372957f
--- /dev/null
+++ b/domains/_vercel.paul8liveira.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "paul8liveira",
+ "email": "paul8liveira@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=paul8liveira.is-a.dev,86dcef96f01c5029a229"
+ }
+}
diff --git a/domains/_vercel.pdf.aaqif.json b/domains/_vercel.pdf.aaqif.json
new file mode 100644
index 000000000..d509db3b4
--- /dev/null
+++ b/domains/_vercel.pdf.aaqif.json
@@ -0,0 +1,10 @@
+{
+ "description": "PDF Project",
+ "owner": {
+ "username": "aaqifshafi",
+ "email": "aaqifshafi@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=pdf.aaqif.is-a.dev,a494cb00a704dae80483"]
+ }
+}
diff --git a/domains/_vercel.pedrofff.json b/domains/_vercel.pedrofff.json
new file mode 100644
index 000000000..65a7c574b
--- /dev/null
+++ b/domains/_vercel.pedrofff.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Pedrofff23",
+ "email": "pmendes09@hotmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=pedrofff.is-a.dev,5dd6c195a19c9a69c00b"
+ }
+}
diff --git a/domains/_vercel.phongli.json b/domains/_vercel.phongli.json
new file mode 100644
index 000000000..175f69b0d
--- /dev/null
+++ b/domains/_vercel.phongli.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "PhongLi",
+ "email": "longpt1109@gmail.com",
+ "discord": "_younglin"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=phongli.is-a.dev,b6623ffbab5ed6f97cf5"
+ }
+}
diff --git a/domains/_vercel.poysa213.json b/domains/_vercel.poysa213.json
new file mode 100644
index 000000000..3bcc168f6
--- /dev/null
+++ b/domains/_vercel.poysa213.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "poysa213",
+ "email": "hanaiayoucef@gmail.com",
+ "discord": "944238875566551110",
+ "twitter": "poysa213",
+ "repo": "https://github.com/poysa213/portfolio"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=poysa213.is-a.dev,0635f123b973ee05436d"
+ }
+}
diff --git a/domains/_vercel.pranoy.json b/domains/_vercel.pranoy.json
new file mode 100644
index 000000000..6eab6a882
--- /dev/null
+++ b/domains/_vercel.pranoy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "pranoymajumdar",
+ "email": "pranoyfr@gmail.com",
+ "discord": "1303089079809740904"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=pranoy.is-a.dev,9c5ff5dc93544c9ffee0"
+ }
+}
diff --git a/domains/_vercel.prashil.json b/domains/_vercel.prashil.json
new file mode 100644
index 000000000..601806a4b
--- /dev/null
+++ b/domains/_vercel.prashil.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "prashilthul",
+ "email": "prashil1411@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=prashil.is-a.dev,4d4ecde09797589bede3"]
+ }
+}
diff --git a/domains/_vercel.pratham.json b/domains/_vercel.pratham.json
new file mode 100644
index 000000000..21f743df7
--- /dev/null
+++ b/domains/_vercel.pratham.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Prathamdas3",
+ "email": "daspratham3@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=pratham.is-a.dev,b632047325056df87293"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/_vercel.pratham15541.json b/domains/_vercel.pratham15541.json
index b0168709e..778586e39 100644
--- a/domains/_vercel.pratham15541.json
+++ b/domains/_vercel.pratham15541.json
@@ -1,10 +1,10 @@
-{
- "owner": {
- "username": "pratham15541",
- "email": "prathamparikh94@gmail.com",
- "discord": "951846985172938782"
- },
- "record": {
- "TXT": "vc-domain-verify=pratham15541.is-a.dev,6cf0b1eb1387b1d6aa5f"
- }
-}
\ No newline at end of file
+{
+ "owner": {
+ "username": "pratham15541",
+ "email": "prathamparikh94@gmail.com",
+ "discord": "951846985172938782"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=pratham15541.is-a.dev,6cf0b1eb1387b1d6aa5f"
+ }
+}
diff --git a/domains/_vercel.praveen-2006.json b/domains/_vercel.praveen-2006.json
new file mode 100644
index 000000000..2ce2088a4
--- /dev/null
+++ b/domains/_vercel.praveen-2006.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "InfiniteCoder06",
+ "email": "mallidipraveenkumar@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=praveen-2006.is-a.dev,6ed24154aab38b23b2d3"
+ }
+}
diff --git a/domains/_vercel.princeprajapati.json b/domains/_vercel.princeprajapati.json
index 0fd5b463f..e97b06de6 100644
--- a/domains/_vercel.princeprajapati.json
+++ b/domains/_vercel.princeprajapati.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "notreallyprince",
- "email": "prince30112001@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=princeprajapati.is-a.dev,f0d9843f925488ed34bb"
+ "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.pritam.json b/domains/_vercel.pritam.json
new file mode 100644
index 000000000..5d7bbd736
--- /dev/null
+++ b/domains/_vercel.pritam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ImDarkShadow",
+ "email": "itspritam@proton.me"
+ },
+ "record": {
+ "TXT": "pvc-domain-verify=pritam.is-a.dev,8deacca92e10a3d2f865"
+ }
+}
diff --git a/domains/_vercel.pythonweb.json b/domains/_vercel.pythonweb.json
new file mode 100644
index 000000000..175a58013
--- /dev/null
+++ b/domains/_vercel.pythonweb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CodeGeekR",
+ "discord": "768080481924677632"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=pythonweb.is-a.dev,395acbd091553c5523bb"
+ }
+}
diff --git a/domains/_vercel.raafey.json b/domains/_vercel.raafey.json
new file mode 100644
index 000000000..be0119b9b
--- /dev/null
+++ b/domains/_vercel.raafey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RaafeyRaza",
+ "email": "raafeyraza1@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=raafey.is-a.dev,aa0e06a894333b259a4b"
+ }
+}
diff --git a/domains/_vercel.rafsanza.json b/domains/_vercel.rafsanza.json
new file mode 100644
index 000000000..7d8c6df95
--- /dev/null
+++ b/domains/_vercel.rafsanza.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rafsanza-hub",
+ "email": "rapsanza@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=rafsanza.is-a.dev,6b6643acbebdf80cd44b"
+ }
+}
diff --git a/domains/_vercel.raghu.json b/domains/_vercel.raghu.json
index 01d30a211..8ef445cf7 100644
--- a/domains/_vercel.raghu.json
+++ b/domains/_vercel.raghu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "raghu-8",
- "email": "raghu.project.websites@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=raghu.is-a.dev,64be76cc9f11decf61dd"
- }
+ "owner": {
+ "username": "raghu-8",
+ "email": "raghu.project.websites@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=raghu.is-a.dev,64be76cc9f11decf61dd"
+ }
}
diff --git a/domains/_vercel.rajeshkumar.json b/domains/_vercel.rajeshkumar.json
new file mode 100644
index 000000000..5a228e0f1
--- /dev/null
+++ b/domains/_vercel.rajeshkumar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Dev-Rajeshkumar",
+ "email": "rajesh8778354586@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=rajeshkumar.is-a.dev,52cd27c94b7115d293d5"
+ }
+}
diff --git a/domains/_vercel.rajeshreddy.json b/domains/_vercel.rajeshreddy.json
new file mode 100644
index 000000000..d9e8499ea
--- /dev/null
+++ b/domains/_vercel.rajeshreddy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "rajesh-reddy1",
+ "email": "mrrajeshreddy1@gmail.com",
+ "discord": "suuiii_1"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=rajeshreddy.is-a.dev,400e697edc993cbbeab7"
+ }
+}
diff --git a/domains/_vercel.rajputshashank.json b/domains/_vercel.rajputshashank.json
new file mode 100644
index 000000000..1a277e35c
--- /dev/null
+++ b/domains/_vercel.rajputshashank.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rajputshashank003",
+ "email": "hariomshashank@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=rajputshashank.is-a.dev,b54453fc10c77cf72c1d"]
+ }
+}
diff --git a/domains/_vercel.ramirocosa.json b/domains/_vercel.ramirocosa.json
new file mode 100644
index 000000000..8f827d17a
--- /dev/null
+++ b/domains/_vercel.ramirocosa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RadikeCosa",
+ "email": "ramirocosa@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=ramirocosa.is-a.dev,7455e9c60351674f2f23"]
+ }
+}
diff --git a/domains/_vercel.ramya.json b/domains/_vercel.ramya.json
new file mode 100644
index 000000000..474dc5828
--- /dev/null
+++ b/domains/_vercel.ramya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ramya-Me",
+ "email": "ramyashah.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ramya.is-a.dev,01d3d04febd477ec42b8"
+ }
+}
diff --git a/domains/_vercel.ranjityadav.json b/domains/_vercel.ranjityadav.json
index 1629bcb21..f434ce0da 100644
--- a/domains/_vercel.ranjityadav.json
+++ b/domains/_vercel.ranjityadav.json
@@ -1,10 +1,10 @@
-{
- "owner": {
- "username": "13yadav",
- "email": "yadavranjit521@gmail.com",
- "discord": "529604454908035083"
- },
- "record": {
- "TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43"
- }
-}
+{
+ "owner": {
+ "username": "13yadav",
+ "email": "yadavranjit521@gmail.com",
+ "discord": "529604454908035083"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ranjityadav.is-a.dev,998da4bd1970d94d6c43"
+ }
+}
diff --git a/domains/_vercel.rathee.json b/domains/_vercel.rathee.json
new file mode 100644
index 000000000..aae226de0
--- /dev/null
+++ b/domains/_vercel.rathee.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abhinavrathee",
+ "email": "abhinavrathee00007@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=rathee.is-a.dev,1ee9ef074e87326c7f99"
+ }
+}
diff --git a/domains/_vercel.raynaldescala.json b/domains/_vercel.raynaldescala.json
new file mode 100644
index 000000000..cb6d3b8e2
--- /dev/null
+++ b/domains/_vercel.raynaldescala.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "raynaldescala",
+ "email": "raynaldescala01@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=raynaldescala.is-a.dev,7c5440b0cdb643d66472"
+ }
+}
diff --git a/domains/_vercel.reiiv-beta.json b/domains/_vercel.reiiv-beta.json
new file mode 100644
index 000000000..663d51476
--- /dev/null
+++ b/domains/_vercel.reiiv-beta.json
@@ -0,0 +1,9 @@
+ {
+ "owner": {
+ "username": "revansp",
+ "email": "revanspstudy28@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=reiiv.is-a.dev,82bf39e1f2c36339a232"
+ }
+ }
diff --git a/domains/_vercel.reiiv-dev.json b/domains/_vercel.reiiv-dev.json
new file mode 100644
index 000000000..89bdada6e
--- /dev/null
+++ b/domains/_vercel.reiiv-dev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "revansp",
+ "email": "revanspstudy28@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=reiiv-is.a.dev,cd29cdb7ae300a2b1652"
+ }
+ }
diff --git a/domains/_vercel.reiiv.json b/domains/_vercel.reiiv.json
new file mode 100644
index 000000000..6ca585191
--- /dev/null
+++ b/domains/_vercel.reiiv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "revansp",
+ "email": "revanspstudy28@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=reiiv.is-a.dev,82bf39e1f2c36339a232"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.rejectmodders.json b/domains/_vercel.rejectmodders.json
new file mode 100644
index 000000000..5beb0a600
--- /dev/null
+++ b/domains/_vercel.rejectmodders.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "RejectModders",
+ "email": "rejectmodders@disutils.com",
+ "discord": "RejectModders"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=rejectmodders.is-a.dev,96098d7f80d62c706b12"
+ }
+}
diff --git a/domains/_vercel.renant.json b/domains/_vercel.renant.json
new file mode 100644
index 000000000..45de79fb6
--- /dev/null
+++ b/domains/_vercel.renant.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "renant",
+ "email": "renan_replay@live.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=renant.is-a.dev,fe738eebddc5a20097e6"
+ }
+}
diff --git a/domains/_vercel.renzcole.json b/domains/_vercel.renzcole.json
index 62940b594..fcd93c596 100644
--- a/domains/_vercel.renzcole.json
+++ b/domains/_vercel.renzcole.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "CodeBuddySLTNS",
- "email": "renz2arjhay@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=renzcole.is-a.dev,ed459816c1440ddeef46"
- }
+ "owner": {
+ "username": "CodeBuddySLTNS",
+ "email": "renz2arjhay@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=renzcole.is-a.dev,ed459816c1440ddeef46"
+ }
}
diff --git a/domains/_vercel.reyuki.json b/domains/_vercel.reyuki.json
new file mode 100644
index 000000000..ec2ee0c90
--- /dev/null
+++ b/domains/_vercel.reyuki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "realyukii",
+ "email": "me@reyuki.site"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=reyuki.is-a.dev,e29957b5ec5dfbe90704"
+ }
+}
diff --git a/domains/_vercel.riccardo126.json b/domains/_vercel.riccardo126.json
new file mode 100644
index 000000000..c486602f9
--- /dev/null
+++ b/domains/_vercel.riccardo126.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "riccardo126",
+ "email": "riccardopassacantando@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=riccardo126.is-a.dev,408e1d0b2f39a662b0ae"
+ }
+}
diff --git a/domains/_vercel.ridwan.json b/domains/_vercel.ridwan.json
new file mode 100644
index 000000000..36fdbfd66
--- /dev/null
+++ b/domains/_vercel.ridwan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ridwanyinus",
+ "email": "ridwanyinusa15@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ridwan.is-a.dev,225e2c74c9221022a84f"
+ }
+}
diff --git a/domains/_vercel.risqiahmad.json b/domains/_vercel.risqiahmad.json
new file mode 100644
index 000000000..193bb9876
--- /dev/null
+++ b/domains/_vercel.risqiahmad.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "risqi17",
+ "email": "ahmadreys@gmail.com",
+ "discord": "risqi_ahmad9230"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=risqiahmad.is-a.dev,8bd8af8f24fe915c1ac4"
+ }
+}
diff --git a/domains/_vercel.rith.json b/domains/_vercel.rith.json
new file mode 100644
index 000000000..f165ccda7
--- /dev/null
+++ b/domains/_vercel.rith.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rithb898",
+ "email": "rithb2004@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=rith.is-a.dev,9233c12a34113300d9af"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.rizz.json b/domains/_vercel.rizz.json
index 137b386a2..7b0780adb 100644
--- a/domains/_vercel.rizz.json
+++ b/domains/_vercel.rizz.json
@@ -4,6 +4,6 @@
"discord": "skibidibagel"
},
"record": {
- "TXT": "vc-domain-verify=rizz.is-a.dev,cbd2a4123c68d5d0fef0"
+ "TXT": "vc-domain-verify=old.rizz.is-a.dev,b78dc00492f43dce5eb2"
}
}
diff --git a/domains/_vercel.roger.json b/domains/_vercel.roger.json
new file mode 100644
index 000000000..1755d48b5
--- /dev/null
+++ b/domains/_vercel.roger.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "rogerHuntGauntlet",
+ "email": "regorhunt02052@gmail.com",
+ "discord": "roger_jgs404040"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=roger.is-a.dev,3c1580f4736931662645"
+ }
+}
diff --git a/domains/_vercel.ronaldo.json b/domains/_vercel.ronaldo.json
index 59dcce99d..fbe508461 100644
--- a/domains/_vercel.ronaldo.json
+++ b/domains/_vercel.ronaldo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ronaldoao",
- "email": "ronaldoa.ojeda@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=ronaldo.is-a.dev,bba2427440502a716d1c"
- }
+ "owner": {
+ "username": "ronaldoao",
+ "email": "ronaldoa.ojeda@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ronaldo.is-a.dev,bba2427440502a716d1c"
+ }
}
diff --git a/domains/_vercel.roque.json b/domains/_vercel.roque.json
new file mode 100644
index 000000000..ac19008cb
--- /dev/null
+++ b/domains/_vercel.roque.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "luisfroquez",
+ "email": "luisfroquez@gmail.com",
+ "discord": "lroque.dev"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=roque.is-a.dev,43b1a7bc843584779f24"
+ }
+}
diff --git a/domains/_vercel.rushabh.json b/domains/_vercel.rushabh.json
index b7919209d..5ebd9df2d 100644
--- a/domains/_vercel.rushabh.json
+++ b/domains/_vercel.rushabh.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "rushabhcodes",
- "email": "rushabhpatil.dev@gmail.com",
- "discord": "_rushabh"
- },
- "record": {
- "TXT": "vc-domain-verify=rushabh.is-a.dev,e47a4ecf75c610a591e3"
- }
+ "owner": {
+ "username": "rushabhcodes",
+ "email": "rushabhpatil.dev@gmail.com",
+ "discord": "_rushabh"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=rushabh.is-a.dev,e47a4ecf75c610a591e3"
+ }
}
diff --git a/domains/_vercel.ryanbaig.json b/domains/_vercel.ryanbaig.json
index 0e7a80730..e457d348b 100644
--- a/domains/_vercel.ryanbaig.json
+++ b/domains/_vercel.ryanbaig.json
@@ -1,6 +1,7 @@
{
"owner": {
- "username": "RyanBaig"
+ "username": "RyanBaig",
+ "discord": "757475933170040893"
},
"record": {
"TXT": ["vc-domain-verify=ryanbaig.is-a.dev,6611c040f39e1689070b"]
diff --git a/domains/_vercel.s1dd.json b/domains/_vercel.s1dd.json
new file mode 100644
index 000000000..157262262
--- /dev/null
+++ b/domains/_vercel.s1dd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nots1dd",
+ "email": "sid9.karanam@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=s1dd.is-a.dev,e08de74daf627d6e653d"
+ }
+}
diff --git a/domains/_vercel.sadik.json b/domains/_vercel.sadik.json
new file mode 100644
index 000000000..f7aa0bcb9
--- /dev/null
+++ b/domains/_vercel.sadik.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "square-story",
+ "email": "gibmepreo@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sadik.is-a.dev,7e3d1f287fcea04a1ec3"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.saif.json b/domains/_vercel.saif.json
new file mode 100644
index 000000000..6e2518c73
--- /dev/null
+++ b/domains/_vercel.saif.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Saifkhanz",
+ "email": "saif137.khan@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=saif.is-a.dev,8f2dcd17056c670b7276"
+ }
+}
diff --git a/domains/_vercel.salman.json b/domains/_vercel.salman.json
new file mode 100644
index 000000000..6158395b2
--- /dev/null
+++ b/domains/_vercel.salman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "salmaniyad",
+ "email": "eng.salmaniyad@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=salman.is-a.dev,f9d09088248e6fdd1e9a"
+ }
+}
diff --git a/domains/_vercel.samirkhanal.json b/domains/_vercel.samirkhanal.json
index c089a90bd..aba0f8e53 100644
--- a/domains/_vercel.samirkhanal.json
+++ b/domains/_vercel.samirkhanal.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "khanal-samir",
- "email": "gdssamir@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=samirkhanal.is-a.dev,ea1c15390e801aa3ea34"
- }
+ "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
index df08f3129..dcfe4321c 100644
--- a/domains/_vercel.samishoukat.json
+++ b/domains/_vercel.samishoukat.json
@@ -1,9 +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
+ "owner": {
+ "username": "samishoukat12",
+ "email": "samishoukat12@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=samishoukat.is-a.dev,f7c3cb972c650104d507"
+ }
+}
diff --git a/domains/_vercel.sanchit.json b/domains/_vercel.sanchit.json
new file mode 100644
index 000000000..b0add6e6f
--- /dev/null
+++ b/domains/_vercel.sanchit.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sanchitbajaj02",
+ "email": "sanchit02@outlook.com",
+ "discord": "704721578029744299"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sanchit.is-a.dev,85dd1a4269915e4797f9"
+ }
+}
diff --git a/domains/_vercel.sandepten.json b/domains/_vercel.sandepten.json
new file mode 100644
index 000000000..612da127a
--- /dev/null
+++ b/domains/_vercel.sandepten.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sandepten",
+ "email": "sandepten@gmail.com",
+ "discord": "sandepten"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sandepten.is-a.dev,ccad8d5e970586727f72"
+ }
+}
diff --git a/domains/_vercel.santty.json b/domains/_vercel.santty.json
new file mode 100644
index 000000000..52b70fb6c
--- /dev/null
+++ b/domains/_vercel.santty.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "santiagogr05",
+ "email": "san7iagogr.05@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=santty.is-a.dev,42e7e83a90cfeb305cbf"]
+ }
+ }
\ No newline at end of file
diff --git a/domains/_vercel.saunak.json b/domains/_vercel.saunak.json
new file mode 100644
index 000000000..9e44c076b
--- /dev/null
+++ b/domains/_vercel.saunak.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Saunakghosh10",
+ "email": "saunakghosh710@gmail.com",
+ "discord": "695672697270829116"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=saunak.is-a.dev,1127684a6f45539a1ebe"
+ }
+}
diff --git a/domains/_vercel.saxophone.json b/domains/_vercel.saxophone.json
new file mode 100644
index 000000000..cb0b800f5
--- /dev/null
+++ b/domains/_vercel.saxophone.json
@@ -0,0 +1,10 @@
+{
+ "description": "vercel stuff for personal site",
+ "owner": {
+ "username": "saxophone-dev",
+ "email": "itsarchit@keemail.me"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=saxophone.is-a.dev,e2dac8b9c5e42361fda8"]
+ }
+}
diff --git a/domains/_vercel.sergioperea.json b/domains/_vercel.sergioperea.json
new file mode 100644
index 000000000..c3b8cf061
--- /dev/null
+++ b/domains/_vercel.sergioperea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sperea",
+ "email": "perea@mailfence.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sergioperea.is-a.dev,ff9bc4d6b26eca2587d7"
+ }
+}
diff --git a/domains/_vercel.shimizu.json b/domains/_vercel.shimizu.json
new file mode 100644
index 000000000..4f16f5a8c
--- /dev/null
+++ b/domains/_vercel.shimizu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mikofoxie",
+ "email": "shimizulazy@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=shimizu.is-a.dev,3356672e8054fe9b4d65"
+ }
+}
diff --git a/domains/_vercel.shirshen.json b/domains/_vercel.shirshen.json
new file mode 100644
index 000000000..e217d99bd
--- /dev/null
+++ b/domains/_vercel.shirshen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shu-vro",
+ "email": "official.shirshen@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=shirshen.is-a.dev,705710dcfadad4d92d2b"
+ }
+}
diff --git a/domains/_vercel.shivansh.json b/domains/_vercel.shivansh.json
new file mode 100644
index 000000000..516a5f60a
--- /dev/null
+++ b/domains/_vercel.shivansh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "shivansh722",
+ "email": "shivanshcha722@gmail.com",
+ "discord": "839163183141748807"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=shivansh.is-a.dev,497638a309315f26b590"
+ }
+}
diff --git a/domains/_vercel.shri.json b/domains/_vercel.shri.json
new file mode 100644
index 000000000..5c83cda8f
--- /dev/null
+++ b/domains/_vercel.shri.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "shari003",
+ "email": "shri.harii@hotmail.com",
+ "discord": "744620219976253481"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=shri.is-a.dev,0dc8bc43ef83d72e5753"]
+ }
+}
diff --git a/domains/_vercel.shubhamprajapati.json b/domains/_vercel.shubhamprajapati.json
new file mode 100644
index 000000000..2a573f6f4
--- /dev/null
+++ b/domains/_vercel.shubhamprajapati.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ShubhamP528",
+ "email": "shubham528prajapati@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=shubhamprajapati.is-a.dev,a8d0420a3cd14b3d2928"
+ }
+}
diff --git a/domains/_vercel.siddharthjain.json b/domains/_vercel.siddharthjain.json
new file mode 100644
index 000000000..79eb6fbcf
--- /dev/null
+++ b/domains/_vercel.siddharthjain.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "siddharth9300",
+ "discord": "sidd9300"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=siddharthjain.is-a.dev,bf30c11f1d56bbab2dd7"
+ }
+}
diff --git a/domains/_vercel.sifat.json b/domains/_vercel.sifat.json
new file mode 100644
index 000000000..fc4e9c80a
--- /dev/null
+++ b/domains/_vercel.sifat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mahi160",
+ "email": "omarsifat288@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sifat.is-a.dev,cc8d1b30995eac869fea"
+ }
+}
diff --git a/domains/_vercel.simone.json b/domains/_vercel.simone.json
new file mode 100644
index 000000000..0d605acbe
--- /dev/null
+++ b/domains/_vercel.simone.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cimasim89",
+ "email": "cimasim89@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=simone.is-a.dev,dc2853a2476427303b16"
+ }
+}
diff --git a/domains/_vercel.siya.json b/domains/_vercel.siya.json
new file mode 100644
index 000000000..053ee8548
--- /dev/null
+++ b/domains/_vercel.siya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rajputsiya",
+ "email": "siyarajput9258@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=siya.is-a.dev,8b5584a1aeb3bb9a60c5"]
+ }
+}
diff --git a/domains/_vercel.skibidi.json b/domains/_vercel.skibidi.json
index cbb01c6af..71ed2cfcb 100644
--- a/domains/_vercel.skibidi.json
+++ b/domains/_vercel.skibidi.json
@@ -1,10 +1,13 @@
{
"owner": {
"username": "bananaking6",
- "email": "",
"discord": "skibidibagel"
},
"record": {
- "TXT": "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d"
+ "TXT": [
+ "vc-domain-verify=skibidi.is-a.dev,b75173107a422d2f8244",
+ "vc-domain-verify=bundler.skibidi.is-a.dev,0ed5e66158d45b6bd83d",
+ "vc-domain-verify=projects.skibidi.is-a.dev,33f08aa6e287f18f368b"
+ ]
}
}
diff --git a/domains/_vercel.sneazy25.json b/domains/_vercel.sneazy25.json
new file mode 100644
index 000000000..6f154f6e1
--- /dev/null
+++ b/domains/_vercel.sneazy25.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sneazy25",
+ "email": "sneazy25@proton.me"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=sneazy25.is-a.dev,2f9caf76ec1be24030a6"]
+ }
+}
diff --git a/domains/_vercel.sohag.json b/domains/_vercel.sohag.json
new file mode 100644
index 000000000..36dd7e789
--- /dev/null
+++ b/domains/_vercel.sohag.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sohag02",
+ "discord": "sohagjabed"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sohag.is-a.dev,905a0fff3e8fdda0052e"
+ }
+}
diff --git a/domains/_vercel.sombochea.json b/domains/_vercel.sombochea.json
new file mode 100644
index 000000000..d5f0ee241
--- /dev/null
+++ b/domains/_vercel.sombochea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sombochea",
+ "email": "sombochea100@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sombochea.is-a.dev,2cdc71284d8d8193f021"
+ }
+}
diff --git a/domains/_vercel.sopi.json b/domains/_vercel.sopi.json
new file mode 100644
index 000000000..7cbe15ce9
--- /dev/null
+++ b/domains/_vercel.sopi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sopiseptiansyah",
+ "email": "sopiseptiansyah@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=sopi.is-a.dev,d05d90937f151b8c1f8d"
+ }
+}
diff --git a/domains/_vercel.soul.json b/domains/_vercel.soul.json
new file mode 100644
index 000000000..f1616f878
--- /dev/null
+++ b/domains/_vercel.soul.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "SoulDevs",
+ "email": "soulcosmic1406@proton.me",
+ "discord": "soulcosmic1406_"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=soul.is-a.dev,6f957e2edcd5bb791896"
+ }
+}
diff --git a/domains/_vercel.subhan.json b/domains/_vercel.subhan.json
new file mode 100644
index 000000000..4cfafd95b
--- /dev/null
+++ b/domains/_vercel.subhan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MS1034",
+ "email": "muhammadsubhan5701@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=subhan.is-a.dev,1996a182add3a767436b"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.sun.json b/domains/_vercel.sun.json
index c41aa041b..3ec57dceb 100644
--- a/domains/_vercel.sun.json
+++ b/domains/_vercel.sun.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "sxn4y",
- "email": "",
"discord": "5unn7n"
},
"record": {
diff --git a/domains/_vercel.supperfreddo.json b/domains/_vercel.supperfreddo.json
new file mode 100644
index 000000000..1ca14d6cc
--- /dev/null
+++ b/domains/_vercel.supperfreddo.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "supperfreddo",
+ "email": "supperfreddoio@gmail.com",
+ "discord": "supperfreddo"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=supperfreddo.is-a.dev,68c20273ddb3ea11e1d6"
+ }
+}
diff --git a/domains/_vercel.synthara.json b/domains/_vercel.synthara.json
new file mode 100644
index 000000000..7dc7bfd57
--- /dev/null
+++ b/domains/_vercel.synthara.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ArhanAnsari",
+ "email": "arhanansari2009@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=synthara.is-a.dev,5cfe1b6f6a8530d47a55"
+ }
+}
diff --git a/domains/_vercel.tanbaycu.json b/domains/_vercel.tanbaycu.json
new file mode 100644
index 000000000..443f46f7a
--- /dev/null
+++ b/domains/_vercel.tanbaycu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tanbaycu",
+ "email": "tanbaycu@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=tanbaycu.is-a.dev,39c822aec04365116c16"
+ }
+}
diff --git a/domains/_vercel.tandevhtml.json b/domains/_vercel.tandevhtml.json
new file mode 100644
index 000000000..b2b801281
--- /dev/null
+++ b/domains/_vercel.tandevhtml.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tanbaycu",
+ "email": "mnew20128@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=tandevhtml.is-a.dev,37900e6853b2485cb803"
+ }
+}
diff --git a/domains/_vercel.tanvir.json b/domains/_vercel.tanvir.json
new file mode 100644
index 000000000..c69013cf0
--- /dev/null
+++ b/domains/_vercel.tanvir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tnv1r",
+ "email": "dev@tanvir.io"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=tanvir.is-a.dev,65aed7f787867b45aa7c"
+ }
+}
diff --git a/domains/_vercel.terry.json b/domains/_vercel.terry.json
new file mode 100644
index 000000000..9fc9c6b92
--- /dev/null
+++ b/domains/_vercel.terry.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "realyoterry",
+ "email": "theterrykim@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=terry.is-a.dev,77663b6ef45302529609"
+ }
+}
diff --git a/domains/_vercel.thavirak.json b/domains/_vercel.thavirak.json
new file mode 100644
index 000000000..1e65365c2
--- /dev/null
+++ b/domains/_vercel.thavirak.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thavirak",
+ "email": "thavirak@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=thavirak.is-a.dev,7a6a4ebd89476f7b339a"]
+ }
+}
diff --git a/domains/_vercel.thegoofy-guy.json b/domains/_vercel.thegoofy-guy.json
new file mode 100644
index 000000000..3fdf1c760
--- /dev/null
+++ b/domains/_vercel.thegoofy-guy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thegoofy-dev",
+ "email": "pankajtyagi1601@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=thegoofy-guy.is-a.dev,382a00f94cc6e561761e"
+ }
+}
diff --git a/domains/_vercel.thiagotukozaki.json b/domains/_vercel.thiagotukozaki.json
index bd88feb9e..79263c7b4 100644
--- a/domains/_vercel.thiagotukozaki.json
+++ b/domains/_vercel.thiagotukozaki.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "TukozakiT",
- "email": "contato.thiagoeiji@gmail.com"
- },
- "record": {
- "TXT": "vc-domain-verify=thiagotukozaki.is-a.dev,cf21301c66cbaaf29419"
- }
- }
\ No newline at end of file
+ "owner": {
+ "username": "TukozakiT",
+ "email": "contato.thiagoeiji@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=thiagotukozaki.is-a.dev,cf21301c66cbaaf29419"
+ }
+}
diff --git a/domains/_vercel.tobias.json b/domains/_vercel.tobias.json
new file mode 100644
index 000000000..487856ea0
--- /dev/null
+++ b/domains/_vercel.tobias.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "smarterToby",
+ "discord": "724712767080235049"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=tobias.is-a.dev,21171b13f4596f6ef9ee"
+ }
+}
diff --git a/domains/_vercel.tranminhtan.json b/domains/_vercel.tranminhtan.json
new file mode 100644
index 000000000..62de5cf98
--- /dev/null
+++ b/domains/_vercel.tranminhtan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tanbaycu",
+ "email": "mnew20128@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=tranminhtan.is-a.dev,80e210f84d0b0529d7eb"
+ }
+}
diff --git a/domains/_vercel.tsania.json b/domains/_vercel.tsania.json
new file mode 100644
index 000000000..091c6b96f
--- /dev/null
+++ b/domains/_vercel.tsania.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tsnzzhr",
+ "email": "tsnzzhr102@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=tsania.is-a.dev,cb5fadd5728a99eb3c4d"
+ }
+}
diff --git a/domains/_vercel.tykea.json b/domains/_vercel.tykea.json
new file mode 100644
index 000000000..561c85018
--- /dev/null
+++ b/domains/_vercel.tykea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tykealy",
+ "email": "tykeaboyloy@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=tykea.is-a.dev,6107010761e516843251"
+ }
+}
diff --git a/domains/_vercel.udit.json b/domains/_vercel.udit.json
new file mode 100644
index 000000000..96f2e3ead
--- /dev/null
+++ b/domains/_vercel.udit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "uditdev",
+ "email": "uditdev0008@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=udit.is-a.dev,8718c1c2a08417265d7e"]
+ }
+}
diff --git a/domains/_vercel.ujjvaljoshi.json b/domains/_vercel.ujjvaljoshi.json
new file mode 100644
index 000000000..09252807b
--- /dev/null
+++ b/domains/_vercel.ujjvaljoshi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio Website",
+ "repo": "https://github.com/ujjvaljoshi45/ujjvaljoshi45",
+ "owner": {
+ "username": "ujjvaljoshi45",
+ "email": "ujjvaljoshi45@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=ujjvaljoshi.is-a.dev,f7ed737aeb48311d634c"
+ }
+}
diff --git a/domains/_vercel.usmanbaig.json b/domains/_vercel.usmanbaig.json
index 2cc27102c..c17fb1909 100644
--- a/domains/_vercel.usmanbaig.json
+++ b/domains/_vercel.usmanbaig.json
@@ -1,9 +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
+ "owner": {
+ "username": "UsmanBaig001",
+ "email": "usmanbaig1572@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=usmanbaig.is-a.dev,c2f96e70ebd3aef5458b"
+ }
+}
diff --git a/domains/_vercel.utkarsh-singhal.json b/domains/_vercel.utkarsh-singhal.json
new file mode 100644
index 000000000..13a61c858
--- /dev/null
+++ b/domains/_vercel.utkarsh-singhal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Utkarsh-Singhal-26",
+ "email": "singhalutkarsh26@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=utkarsh-singhal.is-a.dev,31f5c6e60805af21e98f"
+ }
+}
diff --git a/domains/_vercel.v.json b/domains/_vercel.v.json
index b9cd9e583..e7011a841 100644
--- a/domains/_vercel.v.json
+++ b/domains/_vercel.v.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "leofelix908",
- "email": ""
+ "username": "leofelix908"
},
"record": {
"TXT": ["vc-domain-verify=v.is-a.dev,9bd0999222ffc1417790"]
diff --git a/domains/_vercel.vantage.json b/domains/_vercel.vantage.json
index f0ed414e0..05f0c9b90 100644
--- a/domains/_vercel.vantage.json
+++ b/domains/_vercel.vantage.json
@@ -1,7 +1,6 @@
{
"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"
},
diff --git a/domains/_vercel.vapr.json b/domains/_vercel.vapr.json
new file mode 100644
index 000000000..c90ea33ec
--- /dev/null
+++ b/domains/_vercel.vapr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bitsamedida",
+ "email": "bitsamedida@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vapr.is-a.dev,e0a739ae617bd141d6f0"
+ }
+}
diff --git a/domains/_vercel.vdevanarayan.json b/domains/_vercel.vdevanarayan.json
new file mode 100644
index 000000000..1f8b49254
--- /dev/null
+++ b/domains/_vercel.vdevanarayan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CodeTitan7",
+ "email": "octavius1983bc@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vdevanarayan.is-a.dev,0c0c081b89b565d7ece1"
+ }
+}
diff --git a/domains/_vercel.venkat.json b/domains/_vercel.venkat.json
new file mode 100644
index 000000000..a2288d226
--- /dev/null
+++ b/domains/_vercel.venkat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "venkatk-git",
+ "email": "venkatkumar.profiles@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=venkat.is-a.dev,4238dd29261ea2c96bda"
+ }
+}
diff --git a/domains/_vercel.verify.alora.json b/domains/_vercel.verify.alora.json
new file mode 100644
index 000000000..dbfbc5f7a
--- /dev/null
+++ b/domains/_vercel.verify.alora.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aloramiaa",
+ "email": "xaloramia@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=verify.alora.is-a.dev,df9b78e72bc7a2889bc8"
+ }
+}
diff --git a/domains/_vercel.veygax.json b/domains/_vercel.veygax.json
new file mode 100644
index 000000000..47892fb69
--- /dev/null
+++ b/domains/_vercel.veygax.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "veygax",
+ "email": "veyga@checkpoint.llc",
+ "discord": "1119938236245094521"
+
+ },
+ "record": {
+ "TXT": "vc-domain-verify=veygax.is-a.dev,a56bc04fff9fc5e6e38d"
+ }
+}
diff --git a/domains/_vercel.victordev.json b/domains/_vercel.victordev.json
new file mode 100644
index 000000000..94bdad7a9
--- /dev/null
+++ b/domains/_vercel.victordev.json
@@ -0,0 +1,9 @@
+ {
+ "owner": {
+ "username": "VictorHumberto01",
+ "email": "victor.humberto.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=victordev.is-a.dev,249570ae89a082ed0670"
+ }
+ }
diff --git a/domains/_vercel.victoria.json b/domains/_vercel.victoria.json
index 488bff22c..a304182d0 100644
--- a/domains/_vercel.victoria.json
+++ b/domains/_vercel.victoria.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "itahseen",
- "email": ""
+ "username": "itahseen"
},
"record": {
"TXT": ["vc-domain-verify=victoria.is-a.dev,c0c6d37bd2ddf96a77aa"]
diff --git a/domains/_vercel.vignesh.json b/domains/_vercel.vignesh.json
new file mode 100644
index 000000000..556ddcb15
--- /dev/null
+++ b/domains/_vercel.vignesh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Vignesh025",
+ "email": "vigneshjayakumar9221@gmail.com",
+ "discord": "vignesh025"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vignesh.is-a.dev,f3df13929e17acd366ea"
+ }
+}
diff --git a/domains/_vercel.vinay.json b/domains/_vercel.vinay.json
new file mode 100644
index 000000000..94eb76124
--- /dev/null
+++ b/domains/_vercel.vinay.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal Portfolio Website",
+ "repo": "https://github.com/vinugawade/vinux.in",
+ "owner": {
+ "username": "vinugawade",
+ "email": "vinulike11@gmail.com",
+ "linkedin": "https://www.linkedin.com/in/vinu-gawade",
+ "discord": "830872854677422150"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=vinay.is-a.dev,fbe9cb0c6fd1fdf4c943"]
+ }
+}
diff --git a/domains/_vercel.vinayaka.json b/domains/_vercel.vinayaka.json
new file mode 100644
index 000000000..31e91b846
--- /dev/null
+++ b/domains/_vercel.vinayaka.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vinayaka-iyer",
+ "email": "vinayakaiyer999@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vinayaka.is-a.dev,7cf7d34ae5fa35840467"
+ }
+}
diff --git a/domains/_vercel.vineeth.json b/domains/_vercel.vineeth.json
new file mode 100644
index 000000000..94f9d4ec9
--- /dev/null
+++ b/domains/_vercel.vineeth.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vineeth-motati",
+ "email": "vineethmotati@duck.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vineeth.is-a.dev,772d59fe1bf7422c8f8f"
+ }
+}
\ No newline at end of file
diff --git a/domains/_vercel.vldm.json b/domains/_vercel.vldm.json
index 8c16a227f..70ce9ed96 100644
--- a/domains/_vercel.vldm.json
+++ b/domains/_vercel.vldm.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "VLDeMenezes",
- "email": "victorleandrodemenezes@gmail.com"
-
- },
- "record": {
- "TXT": "vc-domain-verify=vldm.is-a.dev,a2a022436d0631ef5231"
- }
+ "owner": {
+ "username": "VLDeMenezes",
+ "email": "victorleandrodemenezes@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vldm.is-a.dev,a2a022436d0631ef5231"
+ }
}
diff --git a/domains/_vercel.voidvault.json b/domains/_vercel.voidvault.json
new file mode 100644
index 000000000..fd5702d80
--- /dev/null
+++ b/domains/_vercel.voidvault.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Dev-Rajeshkumar",
+ "email": "rajesh8778354686@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=voidvault.is-a.dev,fdc2aadb068bd286d372"]
+ }
+}
diff --git a/domains/_vercel.vukhoi.json b/domains/_vercel.vukhoi.json
new file mode 100644
index 000000000..1c002c971
--- /dev/null
+++ b/domains/_vercel.vukhoi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "khoivt",
+ "email": "khoidragonslayer@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vukhoi.is-a.dev,40bd929996059a5dbea2"
+ }
+}
diff --git a/domains/_vercel.vyductan.json b/domains/_vercel.vyductan.json
index 7088311dc..9437bdcc0 100644
--- a/domains/_vercel.vyductan.json
+++ b/domains/_vercel.vyductan.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "vyductan",
- "email": "vdt5snet@gmail.com",
- "discord": "370012050316984321"
- },
- "record": {
- "TXT": "vc-domain-verify=vyductan.is-a.dev,55a7295a416ad7fd8e1f"
- }
+ "owner": {
+ "username": "vyductan",
+ "email": "vdt5snet@gmail.com",
+ "discord": "370012050316984321"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=vyductan.is-a.dev,55a7295a416ad7fd8e1f"
+ }
}
diff --git a/domains/_vercel.w3teal.json b/domains/_vercel.w3teal.json
new file mode 100644
index 000000000..06e381c67
--- /dev/null
+++ b/domains/_vercel.w3teal.json
@@ -0,0 +1,11 @@
+{
+ "description": "Used for my W3Teal's blog website.",
+ "repo": "https://github.com/w3teal/w3teal.github.io",
+ "owner": {
+ "username": "w3teal",
+ "email": "w3teal@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=w3teal.is-a.dev,d0cb532c15b16a993c2a"
+ }
+}
diff --git a/domains/_vercel.wallsified.json b/domains/_vercel.wallsified.json
index d272bf08b..973264f98 100644
--- a/domains/_vercel.wallsified.json
+++ b/domains/_vercel.wallsified.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "wallsified",
- "email": "danielparedes@ciencias.unam.mx",
- "discord": ""
- },
- "record": {
- "TXT": "vc-domain-verify=wallsified.is-a.dev,a6e231e5e5b6733aba43"
- }
+ "owner": {
+ "username": "wallsified",
+ "email": "danielparedes@ciencias.unam.mx"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=wallsified.is-a.dev,a6e231e5e5b6733aba43"
+ }
}
diff --git a/domains/_vercel.waltersonna.json b/domains/_vercel.waltersonna.json
new file mode 100644
index 000000000..05c051477
--- /dev/null
+++ b/domains/_vercel.waltersonna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RichestHumanAlive",
+ "email": "walter.n.sonna@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=waltersonna.is-a.dev,95c219c6eb52eab7ed7c"
+ }
+}
diff --git a/domains/_vercel.wasim.json b/domains/_vercel.wasim.json
new file mode 100644
index 000000000..a5ce07365
--- /dev/null
+++ b/domains/_vercel.wasim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "simbaig",
+ "email": "wasimbaig000@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=wasim.is-a.dev,6b4abdaf07b7f6517075"
+ }
+}
diff --git a/domains/_vercel.willymateo.json b/domains/_vercel.willymateo.json
index e04aa1f68..251c9ce29 100644
--- a/domains/_vercel.willymateo.json
+++ b/domains/_vercel.willymateo.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "willymateo",
- "email": "matheoowilly@gmail.com",
- "discord": "willycocolon"
- },
- "record": {
- "TXT": "vc-domain-verify=willymateo.is-a.dev,6c7018f1721c84a520df"
- }
+ "owner": {
+ "username": "willymateo",
+ "email": "matheoowilly@gmail.com",
+ "discord": "willycocolon"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=willymateo.is-a.dev,6c7018f1721c84a520df"
+ }
}
diff --git a/domains/_vercel.wisit.json b/domains/_vercel.wisit.json
new file mode 100644
index 000000000..fcbfbaff1
--- /dev/null
+++ b/domains/_vercel.wisit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Wisitt",
+ "email": "wisitmoondet@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=wisit.is-a.dev,00d864c9655408665e4c"
+ }
+}
diff --git a/domains/_vercel.woogi.json b/domains/_vercel.woogi.json
new file mode 100644
index 000000000..0e43067d7
--- /dev/null
+++ b/domains/_vercel.woogi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "woogi-kang",
+ "email": "woogi.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=woogi.is-a.dev,067989673fe543ef5114"
+ }
+}
diff --git a/domains/_vercel.wouter.json b/domains/_vercel.wouter.json
new file mode 100644
index 000000000..6d9d0c5c2
--- /dev/null
+++ b/domains/_vercel.wouter.json
@@ -0,0 +1,10 @@
+{
+ "description": "Wouter's personal website",
+ "owner": {
+ "username": "wouter173",
+ "email": "wouter@debruijn.dev"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=wouter.is-a.dev,b69cd5b6b6811fe3538d"]
+ }
+}
diff --git a/domains/_vercel.xenonrexo.json b/domains/_vercel.xenonrexo.json
new file mode 100644
index 000000000..b654d4a5b
--- /dev/null
+++ b/domains/_vercel.xenonrexo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shshams",
+ "email": "shahadathossenshams@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=xenonrexo.is-a.dev,8fbb85bd77adeb090add"
+ }
+}
diff --git a/domains/_vercel.yatharth.json b/domains/_vercel.yatharth.json
new file mode 100644
index 000000000..d69bee5b7
--- /dev/null
+++ b/domains/_vercel.yatharth.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yatharthbhatia",
+ "email": "yatharthbhatia2004@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=yatharth.is-a.dev,59d3e946b8d099555345"
+ }
+}
diff --git a/domains/_vercel.yaxh.json b/domains/_vercel.yaxh.json
new file mode 100644
index 000000000..7f88e26d9
--- /dev/null
+++ b/domains/_vercel.yaxh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "yaxhcodes",
+ "email": "meyashjoshi3101@gmail.com",
+ "discord": "965845932782526495"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=yaxh.is-a.dev,6469548bcd2901c7c348"
+ }
+}
diff --git a/domains/_vercel.yoan.json b/domains/_vercel.yoan.json
new file mode 100644
index 000000000..062b727bb
--- /dev/null
+++ b/domains/_vercel.yoan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yoan-gilliand",
+ "email": "yoangilliand@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=yoan.is-a.dev,74485448b7e7f2fd4b95"
+ }
+}
diff --git a/domains/_vercel.yohanesrioirsan.json b/domains/_vercel.yohanesrioirsan.json
new file mode 100644
index 000000000..2f46c5930
--- /dev/null
+++ b/domains/_vercel.yohanesrioirsan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yohanesrioirsan",
+ "email": "rioirsan8@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=yohanesrioirsan.is-a.dev,2c8b157439c95db80770"
+ }
+}
diff --git a/domains/_vercel.youssef.json b/domains/_vercel.youssef.json
new file mode 100644
index 000000000..e54a53d60
--- /dev/null
+++ b/domains/_vercel.youssef.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "YoussefDevPro",
+ "email": "youssef.pro.coding@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=youssef.is-a.dev,8a21ff17b71b3518be3c"
+ }
+}
diff --git a/domains/_vercel.zalnars.json b/domains/_vercel.zalnars.json
new file mode 100644
index 000000000..df91c694c
--- /dev/null
+++ b/domains/_vercel.zalnars.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "zalnaRs",
+ "email": "zalnars@proton.me",
+ "discord": "zalnars"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=zalnars.is-a.dev,61ba9176019e738b5c09"
+ }
+}
diff --git a/domains/_vercel.zara.json b/domains/_vercel.zara.json
new file mode 100644
index 000000000..e9024b750
--- /dev/null
+++ b/domains/_vercel.zara.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tutupharirabu",
+ "email": "code.zharaurien@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=zara.is-a.dev,54fd6194f447f7c5295b"
+ }
+}
diff --git a/domains/_vercel.zehao.json b/domains/_vercel.zehao.json
new file mode 100644
index 000000000..cf6b9d3ca
--- /dev/null
+++ b/domains/_vercel.zehao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "2eha0",
+ "email": "zehao93@outlook.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=zehao.is-a.dev,6fbc4cc62fac0cd68f14"
+ }
+}
diff --git a/domains/_vercel.zold.json b/domains/_vercel.zold.json
new file mode 100644
index 000000000..0b36e47cf
--- /dev/null
+++ b/domains/_vercel.zold.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=zold.is-a.dev,43d9c99b8a4db2628eed"
+ }
+}
diff --git a/domains/a-furry.json b/domains/a-furry.json
index 259be6109..531fec104 100644
--- a/domains/a-furry.json
+++ b/domains/a-furry.json
@@ -1,12 +1,12 @@
{
- "description": "Ashley's website",
- "repo": "https://github.com/Sxshley/sxshley.github.io",
- "owner": {
- "username": "Sxshley",
- "email": "tsuuunyaaa@gmail.com",
- "twitter": "TsU1"
- },
- "record": {
- "CNAME": "sxshley.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ashley's website",
+ "repo": "https://github.com/Sxshley/sxshley.github.io",
+ "owner": {
+ "username": "Sxshley",
+ "email": "tsuuunyaaa@gmail.com",
+ "twitter": "TsU1"
+ },
+ "record": {
+ "CNAME": "sxshley.github.io"
+ }
+}
diff --git a/domains/a-j.json b/domains/a-j.json
index c229a9448..708026569 100644
--- a/domains/a-j.json
+++ b/domains/a-j.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "alijafari-gd",
- "email": "ali.jafari.sn@gmail.com"
- },
- "record": {
- "URL": "https://alijafari.is-a.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alijafari-gd",
+ "email": "ali.jafari.sn@gmail.com"
+ },
+ "record": {
+ "URL": "https://alijafari.is-a.dev"
+ }
+}
diff --git a/domains/a-little-hat.json b/domains/a-little-hat.json
index 7fdfc8c36..2e2679abb 100644
--- a/domains/a-little-hat.json
+++ b/domains/a-little-hat.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "A-Little-Hat",
- "email": "soumyasarkar309@gmail.com"
- },
- "record": {
- "CNAME": "a-little-hat.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "A-Little-Hat",
+ "email": "soumyasarkar309@gmail.com"
+ },
+ "record": {
+ "CNAME": "a-little-hat.github.io"
+ }
+}
diff --git a/domains/a.json b/domains/a.json
index 017d382b2..387844593 100644
--- a/domains/a.json
+++ b/domains/a.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "dhruvakalur",
- "discord": "794802369216380949",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.n6sY7FH0bwRVpn5paxjZE9b0AS1bS9fiw6WV4sdfPhfnRrO9vR_Mxznkv_LzM5IWuOPUrNzJ8el1rUP1_BEnafofpoSYWV4J326U0TjFnhOysYjmpJ00oNE_TkBdF-gIlwZ3Ps6X2_i5OwLkWysa6oz7-DPHMA2bN27pC7VV7uMwt8gbvLH7BBgnpgZk7vf9eQ7hb8lgHDfjaeaxfG8PoGnO4SBMxcS_Q9hQxW-z7WsfBTTOeKC8jDg3ql5CCtw4epp61hmMGMD8Fk0ETZTDXVHLRVVLsR78uKwgRm-eifgDRVgycfoGfZpRkdZAWFG5fmAYTAxOxCFj6Efa44n-tA.PzULyP0rlpaGmeRh1tX5pA._J47HD2_nZv5f8j_vl5QZZCxbm6K4_nvrZ4LVcTdjH275xenN3SC3fbM-kQFokjiiKtiaSdZMxokzZtBbDBXHORYh2Z9Ve1ENytjWkmOP3U.YDrfLdRHD6-J3Bb9_7iysA"
- },
- "record": {
- "A": [
- "45.90.12.29"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "dhruvakalur",
+ "discord": "794802369216380949",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.n6sY7FH0bwRVpn5paxjZE9b0AS1bS9fiw6WV4sdfPhfnRrO9vR_Mxznkv_LzM5IWuOPUrNzJ8el1rUP1_BEnafofpoSYWV4J326U0TjFnhOysYjmpJ00oNE_TkBdF-gIlwZ3Ps6X2_i5OwLkWysa6oz7-DPHMA2bN27pC7VV7uMwt8gbvLH7BBgnpgZk7vf9eQ7hb8lgHDfjaeaxfG8PoGnO4SBMxcS_Q9hQxW-z7WsfBTTOeKC8jDg3ql5CCtw4epp61hmMGMD8Fk0ETZTDXVHLRVVLsR78uKwgRm-eifgDRVgycfoGfZpRkdZAWFG5fmAYTAxOxCFj6Efa44n-tA.PzULyP0rlpaGmeRh1tX5pA._J47HD2_nZv5f8j_vl5QZZCxbm6K4_nvrZ4LVcTdjH275xenN3SC3fbM-kQFokjiiKtiaSdZMxokzZtBbDBXHORYh2Z9Ve1ENytjWkmOP3U.YDrfLdRHD6-J3Bb9_7iysA"
+ },
+ "record": {
+ "A": ["45.90.12.29"]
+ }
+}
diff --git a/domains/a1x5h04.json b/domains/a1x5h04.json
index 984f51bae..10d265193 100644
--- a/domains/a1x5h04.json
+++ b/domains/a1x5h04.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "A1X5H04",
- "email": "alishbaig2004@gmail.com"
- },
- "description": "a1x5h04's Portfolio",
- "repo": "https://github.com/a1x5h04/portfolio",
- "record": {
- "CNAME": "a1x5h04.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "A1X5H04",
+ "email": "alishbaig2004@gmail.com"
+ },
+ "description": "a1x5h04's Portfolio",
+ "repo": "https://github.com/a1x5h04/portfolio",
+ "record": {
+ "CNAME": "a1x5h04.pages.dev"
+ }
+}
diff --git a/domains/aa.json b/domains/aa.json
index 364c89ce8..64cb3a11a 100644
--- a/domains/aa.json
+++ b/domains/aa.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Abdullah-Albanna",
- "email": "albannaa78@gmail.com"
- },
- "record": {
- "CNAME": "abdullah-albanna.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Abdullah-Albanna",
+ "email": "albannaa78@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdullah-albanna.github.io"
+ }
+}
diff --git a/domains/aadi.json b/domains/aadi.json
deleted file mode 100644
index 40c6a2850..000000000
--- a/domains/aadi.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "repo": "https://github.com/ringholder/ringholder.github.io",
- "owner": {
- "username": "ringholder",
- "discord": "ringholder"
- },
- "record": {
- "CNAME": "ringholder.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/aadirajuthup.json b/domains/aadirajuthup.json
index 617bf7aa1..dd110b351 100644
--- a/domains/aadirajuthup.json
+++ b/domains/aadirajuthup.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "aadirajuthup",
- "email": "aadi.rajuthup@gmail.com"
- },
- "record": {
- "A": [
- "150.136.148.164"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aadirajuthup",
+ "email": "aadi.rajuthup@gmail.com"
+ },
+ "record": {
+ "A": ["150.136.148.164"]
+ }
+}
diff --git a/domains/aaditya.json b/domains/aaditya.json
index 2ec0f539d..5db37d8c2 100644
--- a/domains/aaditya.json
+++ b/domains/aaditya.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "aaditya2200",
- "email": "aaditya2200@gmail.com"
- },
- "record": {
- "CNAME": "aaditya2200.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aaditya2200",
+ "email": "aaditya2200@gmail.com"
+ },
+ "record": {
+ "CNAME": "aaditya2200.github.io"
+ }
+}
diff --git a/domains/aadityaa.json b/domains/aadityaa.json
new file mode 100644
index 000000000..c6f26b17c
--- /dev/null
+++ b/domains/aadityaa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aadityaa2606",
+ "email": "aadityaa2606@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/aakanksha.json b/domains/aakanksha.json
index a84b84515..f71b5dc98 100644
--- a/domains/aakanksha.json
+++ b/domains/aakanksha.json
@@ -1,11 +1,11 @@
{
- "description": "Aakanksha's .is-a.dev domain",
- "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io",
- "owner": {
- "username": "aakankshabhende",
- "email": "aakanksha0407@gmail.com"
- },
- "record": {
- "CNAME": "aakankshabhende.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aakanksha's .is-a.dev domain",
+ "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io",
+ "owner": {
+ "username": "aakankshabhende",
+ "email": "aakanksha0407@gmail.com"
+ },
+ "record": {
+ "CNAME": "aakankshabhende.github.io"
+ }
+}
diff --git a/domains/aakarsh.json b/domains/aakarsh.json
index 5b80e146a..d9a5e2544 100644
--- a/domains/aakarsh.json
+++ b/domains/aakarsh.json
@@ -1,14 +1,12 @@
{
- "description": "My portfolio website",
- "repo": "https://github.com/Aakarsh-Kumar/persnol",
- "owner": {
- "username": "Aakarsh-Kumar",
- "email": "aakarsh2504@gmail.com",
- "discord": "spyperx"
- },
- "record": {
- "A": [
- "216.24.57.1"
- ]
- }
-}
\ No newline at end of file
+ "description": "My portfolio website",
+ "repo": "https://github.com/Aakarsh-Kumar/persnol",
+ "owner": {
+ "username": "Aakarsh-Kumar",
+ "email": "aakarsh2504@gmail.com",
+ "discord": "spyperx"
+ },
+ "record": {
+ "A": ["216.24.57.1"]
+ }
+}
diff --git a/domains/aakash.json b/domains/aakash.json
index a04851aa6..82f277b04 100644
--- a/domains/aakash.json
+++ b/domains/aakash.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/shinyzenith/website",
- "owner": {
- "username": "Shinyzenith",
- "email": "aakashsensharma@gmail.com"
- },
- "record": {
- "CNAME": "shinyzenith.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/shinyzenith/website",
+ "owner": {
+ "username": "Shinyzenith",
+ "email": "aakashsensharma@gmail.com"
+ },
+ "record": {
+ "CNAME": "shinyzenith.github.io"
+ }
+}
diff --git a/domains/aakashrawat.json b/domains/aakashrawat.json
new file mode 100644
index 000000000..0f0a3ccfa
--- /dev/null
+++ b/domains/aakashrawat.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "aakashrawat04",
+ "email": "2004rawataakash@gmail.com",
+ "discord": "759817307957493800"
+ },
+ "record": {
+ "CNAME": "aakashrawat.vercel.app"
+ }
+}
diff --git a/domains/aakashs.json b/domains/aakashs.json
index 9cbd63133..ee582b803 100644
--- a/domains/aakashs.json
+++ b/domains/aakashs.json
@@ -1,11 +1,11 @@
{
- "repo": "https://github.com/Aakash-kun/Aakash-kun.github.io",
- "owner": {
- "username": "Aakash-kun",
- "email": "aakashshivhare1704@gmail.com",
- "discord": "AakashS#9630"
- },
- "record": {
- "CNAME": "aakash-kun.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/Aakash-kun/Aakash-kun.github.io",
+ "owner": {
+ "username": "Aakash-kun",
+ "email": "aakashshivhare1704@gmail.com",
+ "discord": "AakashS#9630"
+ },
+ "record": {
+ "CNAME": "aakash-kun.github.io"
+ }
+}
diff --git a/domains/aakashuuuu.json b/domains/aakashuuuu.json
index 5575b205b..d94b5b9e9 100644
--- a/domains/aakashuuuu.json
+++ b/domains/aakashuuuu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "itsAakashz",
- "email": "gzatrop@gmail.com"
- },
- "record": {
- "CNAME": "nextjs-aakashuu-portfolio.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "itsAakashz",
+ "email": "gzatrop@gmail.com"
+ },
+ "record": {
+ "CNAME": "nextjs-aakashuu-portfolio.pages.dev"
+ }
+}
diff --git a/domains/aakhilv.json b/domains/aakhilv.json
index fb3b82244..de8ba652a 100644
--- a/domains/aakhilv.json
+++ b/domains/aakhilv.json
@@ -1,12 +1,12 @@
{
- "description": "A personal portfolio site for all my projects and commissions.",
- "repo": "https://github.com/aakhilv/portfolio",
- "owner": {
- "username": "aakhilv",
- "email": "bluninja165@gmail.com",
- "twitter": "corruptblu"
- },
- "record": {
- "CNAME": "aakhilv.github.io"
- }
-}
\ No newline at end of file
+ "description": "A personal portfolio site for all my projects and commissions.",
+ "repo": "https://github.com/aakhilv/portfolio",
+ "owner": {
+ "username": "aakhilv",
+ "email": "bluninja165@gmail.com",
+ "twitter": "corruptblu"
+ },
+ "record": {
+ "CNAME": "aakhilv.github.io"
+ }
+}
diff --git a/domains/aaksa.json b/domains/aaksa.json
index b5c15b20d..0d323b382 100644
--- a/domains/aaksa.json
+++ b/domains/aaksa.json
@@ -1,11 +1,11 @@
{
- "description": "aaksa.is-a.dev",
- "repo": "https://github.com/aaksa/aaksan.github.io",
- "owner": {
- "username": "aaksa",
- "email": "andiaksa16@gmail.com"
- },
- "record": {
- "CNAME": "aaksa.github.io"
- }
-}
\ No newline at end of file
+ "description": "aaksa.is-a.dev",
+ "repo": "https://github.com/aaksa/aaksan.github.io",
+ "owner": {
+ "username": "aaksa",
+ "email": "andiaksa16@gmail.com"
+ },
+ "record": {
+ "CNAME": "aaksa.github.io"
+ }
+}
diff --git a/domains/aalcantara.json b/domains/aalcantara.json
index d8e072af4..d4f2171bb 100644
--- a/domains/aalcantara.json
+++ b/domains/aalcantara.json
@@ -1,11 +1,11 @@
{
- "description": "Documentation for is-a-dev",
- "repo": "https://github.com/Aalcantaraxxx/register",
- "owner": {
- "username": "Aalcantaraxxx",
- "email": "angele2705@gmail.com"
- },
- "record": {
- "CNAME": "aalcantara-is-a-dev.web.app"
- }
-}
\ No newline at end of file
+ "description": "Documentation for is-a-dev",
+ "repo": "https://github.com/Aalcantaraxxx/register",
+ "owner": {
+ "username": "Aalcantaraxxx",
+ "email": "angele2705@gmail.com"
+ },
+ "record": {
+ "CNAME": "aalcantara-is-a-dev.web.app"
+ }
+}
diff --git a/domains/aankit.json b/domains/aankit.json
new file mode 100644
index 000000000..76e46b9ae
--- /dev/null
+++ b/domains/aankit.json
@@ -0,0 +1,13 @@
+{
+ "description": "Ankit's GitHub page",
+ "repo": "https://github.com/Ankit-0310",
+ "owner": {
+ "username": "Ankit-0310",
+ "email": "ankitarya753@gmail.com",
+ "telegram": "F0RBIDDEN_USER",
+ "github": "Ankit-0310"
+ },
+ "record": {
+ "CNAME": "Ankit-0310.github.io"
+ }
+}
diff --git a/domains/aaqif.json b/domains/aaqif.json
new file mode 100644
index 000000000..bf7ed2ea3
--- /dev/null
+++ b/domains/aaqif.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/aaqifshafi/react-portfolio",
+ "owner": {
+ "username": "aaqifshafi",
+ "email": "aaqifshafi@gmail.com"
+ },
+ "record": {
+ "CNAME": "react-portfolio-ashen-tau.vercel.app"
+ }
+}
diff --git a/domains/aaraam.json b/domains/aaraam.json
index e6fa1db31..7021124bb 100644
--- a/domains/aaraam.json
+++ b/domains/aaraam.json
@@ -1,11 +1,11 @@
{
- "description": "This website is a link to my personal developer portfolio.",
- "repo": "https://github.com/aaraam/aaraam.github.io",
- "owner": {
- "username": "aaraam",
- "email": "aaraam.goblin@gmail.com"
- },
- "record": {
- "CNAME": "aaraam.github.io"
- }
-}
\ No newline at end of file
+ "description": "This website is a link to my personal developer portfolio.",
+ "repo": "https://github.com/aaraam/aaraam.github.io",
+ "owner": {
+ "username": "aaraam",
+ "email": "aaraam.goblin@gmail.com"
+ },
+ "record": {
+ "CNAME": "aaraam.github.io"
+ }
+}
diff --git a/domains/aargh.json b/domains/aargh.json
deleted file mode 100644
index 3b0afebd7..000000000
--- a/domains/aargh.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "aargh.is-a.dev",
- "repo": "https://github.com/FloatingComet62/floatingcomet62.github.io",
- "owner": {
- "username": "FloatingComet62",
- "email": "shubh2007rai@gmail.com"
- },
- "record": {
- "CNAME": "floatingcomet62.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/aarno.json b/domains/aarno.json
index d01916140..5d3f92cc3 100644
--- a/domains/aarno.json
+++ b/domains/aarno.json
@@ -1,11 +1,11 @@
{
- "description": "My Personal Website.",
- "repo": "https://github.com/DorianAarno/dorianaarno.github.io",
- "owner": {
- "username": "DorianAarno",
- "email": "aarnodorian56@gmail.com"
- },
- "record": {
- "CNAME": "dorianaarno.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Personal Website.",
+ "repo": "https://github.com/DorianAarno/dorianaarno.github.io",
+ "owner": {
+ "username": "DorianAarno",
+ "email": "aarnodorian56@gmail.com"
+ },
+ "record": {
+ "CNAME": "dorianaarno.github.io"
+ }
+}
diff --git a/domains/aaron.json b/domains/aaron.json
index f3f5f0a20..721474eb1 100644
--- a/domains/aaron.json
+++ b/domains/aaron.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AaronPerezPerez",
- "email": "aarperper@gmail.com"
- },
- "record": {
- "CNAME": "terminal-portfolio-h80h9v8ub-aaronperezperez.vercel.app"
- }
-}
\ No newline at end of file
+ "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
index aa9056f4f..0ae96d92b 100644
--- a/domains/aaronfort.json
+++ b/domains/aaronfort.json
@@ -1,11 +1,10 @@
{
- "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
+ "description": "Documentation website for Aaron Fort",
+ "owner": {
+ "username": "AaronFortG",
+ "email": "aaronfortg@gmail.com"
+ },
+ "record": {
+ "CNAME": "mycurriculum.salleurl.edu"
+ }
+}
diff --git a/domains/aaryan.json b/domains/aaryan.json
index 0be399f84..728e3ac2b 100644
--- a/domains/aaryan.json
+++ b/domains/aaryan.json
@@ -1,19 +1,12 @@
{
- "owner": {
- "username": "Aaryan-N",
- "discord": "652433042153144321",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RE4SnzQsF8mU81IgFbFll-aRz00dgrRzHb93gKwvaM03w_ksZTABXtjQBNe91kffdNc9M3JpnZVUlRPWGsXcdcyIUGUctweC7d7HZKNylvAYm12-xVmaX8PYM5B4l1TwTfZfACx2LckVKZUR0dZUkIVvTVHPCMF2xCGb7z8Ic-iSSu2Dp5mywp5XN8qu1dC8ep46fzkqfMeVWtzv8daNB332nz-nwKVDx_22MuYJy3mpeMMQVPRU41oWILQoWYVWYVhsiqpgw1VXKdyd52VmzgfmG6Gj0bYPeoIDzWIX8Tb-zhjxiy67tXaZYqZ7Y6DhT-t8FoZtrAfkWVyH28VOgA.KHOXZEbbSdswKeb51IRQzw.9asWvdPDaCTj6nfgO7jC4juUIdDmstvUHCjd2lb_7LK0EKJyiriVsW8F6yG7L0hCUFvPGYRfWCgn1ffzGJsbCxn-sC7aN4vfildGU5geAHA.4lTkjQOfgK2NOf2Pdf7b9A"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": [
- "v=spf1 include:spf.improvmx.com ~all"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aaryan-N",
+ "discord": "652433042153144321",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RE4SnzQsF8mU81IgFbFll-aRz00dgrRzHb93gKwvaM03w_ksZTABXtjQBNe91kffdNc9M3JpnZVUlRPWGsXcdcyIUGUctweC7d7HZKNylvAYm12-xVmaX8PYM5B4l1TwTfZfACx2LckVKZUR0dZUkIVvTVHPCMF2xCGb7z8Ic-iSSu2Dp5mywp5XN8qu1dC8ep46fzkqfMeVWtzv8daNB332nz-nwKVDx_22MuYJy3mpeMMQVPRU41oWILQoWYVWYVhsiqpgw1VXKdyd52VmzgfmG6Gj0bYPeoIDzWIX8Tb-zhjxiy67tXaZYqZ7Y6DhT-t8FoZtrAfkWVyH28VOgA.KHOXZEbbSdswKeb51IRQzw.9asWvdPDaCTj6nfgO7jC4juUIdDmstvUHCjd2lb_7LK0EKJyiriVsW8F6yG7L0hCUFvPGYRfWCgn1ffzGJsbCxn-sC7aN4vfildGU5geAHA.4lTkjQOfgK2NOf2Pdf7b9A"
+ },
+ "record": {
+ "A": ["75.2.60.5"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/aashutosh.json b/domains/aashutosh.json
index 9512980f4..0d59751a8 100644
--- a/domains/aashutosh.json
+++ b/domains/aashutosh.json
@@ -1,10 +1,10 @@
{
- "description": "Aashutosh Rathi's Space on Web",
- "owner": {
- "username": "aashutoshrathi",
- "email": "me@aashutosh.dev"
- },
- "record": {
- "CNAME": "aashutosh.dev"
- }
-}
\ No newline at end of file
+ "description": "Aashutosh Rathi's Space on Web",
+ "owner": {
+ "username": "aashutoshrathi",
+ "email": "me@aashutosh.dev"
+ },
+ "record": {
+ "CNAME": "aashutosh.dev"
+ }
+}
diff --git a/domains/aasoft.json b/domains/aasoft.json
index 53da56f3a..6c967b549 100644
--- a/domains/aasoft.json
+++ b/domains/aasoft.json
@@ -1,10 +1,10 @@
{
- "description": "alireza mohebbi threejs project - aasoft.ir",
- "owner": {
- "username": "aasoftir",
- "email": "aasoftmohebbi@gmail.com"
- },
- "record": {
- "URL": "https://glitch-text-threejs.vercel.app/"
- }
-}
\ No newline at end of file
+ "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/aayush.json b/domains/aayush.json
index b1aacff4e..ac503c299 100644
--- a/domains/aayush.json
+++ b/domains/aayush.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "OpAayush",
- "email": "aayushmagrawal@gmail.com",
- "discord": "Aayu5h#1737"
- },
- "record": {
- "CNAME": "opaayush.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "OpAayush",
+ "email": "aayushmagrawal@gmail.com",
+ "discord": "Aayu5h#1737"
+ },
+ "record": {
+ "CNAME": "opaayush.pages.dev"
+ }
+}
diff --git a/domains/aayushakacloudy.json b/domains/aayushakacloudy.json
index 4f024efe7..6feb21808 100644
--- a/domains/aayushakacloudy.json
+++ b/domains/aayushakacloudy.json
@@ -1,11 +1,11 @@
{
- "description": "Aayush aka Cloudy's Arcade Home",
- "repo": "https://github.com/gamedevCloudy/gamedevCloudy.github.io",
- "owner": {
- "username": "gamedevCloudy",
- "email": "aaayush.dev@gmail.com"
- },
- "record": {
- "CNAME": "gamedevcloudy.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aayush aka Cloudy's Arcade Home",
+ "repo": "https://github.com/gamedevCloudy/gamedevCloudy.github.io",
+ "owner": {
+ "username": "gamedevCloudy",
+ "email": "aaayush.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gamedevcloudy.github.io"
+ }
+}
diff --git a/domains/aayushbharti.json b/domains/aayushbharti.json
index 19ef48dfa..9f57910d9 100644
--- a/domains/aayushbharti.json
+++ b/domains/aayushbharti.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "aayushbharti",
- "email": "iaayushbharti@gmail.com"
- },
- "record": {
- "CNAME": "aayushbharti.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aayushbharti",
+ "email": "iaayushbharti@gmail.com"
+ },
+ "record": {
+ "CNAME": "aayushbharti.pages.dev"
+ }
+}
diff --git a/domains/aayushsiwa.json b/domains/aayushsiwa.json
index 62cd73a43..295bb4b0c 100644
--- a/domains/aayushsiwa.json
+++ b/domains/aayushsiwa.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "aayushsiwa",
- "email": "22052177@kiit.ac.in"
- },
- "record": {
- "CNAME": "aayushsiwa.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aayushsiwa",
+ "email": "22052177@kiit.ac.in"
+ },
+ "record": {
+ "CNAME": "aayushsiwa.pages.dev"
+ }
+}
diff --git a/domains/abaan.json b/domains/abaan.json
index 22d9eccf8..b0b914af9 100644
--- a/domains/abaan.json
+++ b/domains/abaan.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Abaan5467",
- "email": "abaan@metfabproducts.com"
- },
- "record": {
- "CNAME": "abaan5467.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Abaan5467",
+ "email": "abaan@metfabproducts.com"
+ },
+ "record": {
+ "CNAME": "abaan5467.github.io"
+ }
+}
diff --git a/domains/abc.json b/domains/abc.json
index bbab79f5b..4747a5b5c 100644
--- a/domains/abc.json
+++ b/domains/abc.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "neohe",
- "email": "he_neo@163.com"
- },
- "record": {
- "CNAME": "neohe.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "neohe",
+ "email": "he_neo@163.com"
+ },
+ "record": {
+ "CNAME": "neohe.github.io"
+ }
+}
diff --git a/domains/abdallahbari.json b/domains/abdallahbari.json
new file mode 100644
index 000000000..1a4f7ee79
--- /dev/null
+++ b/domains/abdallahbari.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Abdallah01win",
+ "email": "abdellah01win@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-bf2.pages.dev"
+ }
+}
diff --git a/domains/abdeba.json b/domains/abdeba.json
index 936fabdfe..0d9f2d7c9 100644
--- a/domains/abdeba.json
+++ b/domains/abdeba.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "abde0ba",
- "email": "abdesoft1@gmail.com"
- },
- "record": {
- "URL": "https://ab-portfolio-one.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "abde0ba",
+ "email": "abdesoft1@gmail.com"
+ },
+ "record": {
+ "URL": "https://ab-portfolio-one.vercel.app"
+ }
+}
diff --git a/domains/abdelghani.json b/domains/abdelghani.json
index 2b6d8f625..df1731a2d 100644
--- a/domains/abdelghani.json
+++ b/domains/abdelghani.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "abdessattar23",
- "discord": "1226143665567567954",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.eU0sigYFTiUmRSsjTm8HIpmuwsrshbwh3EHiAN0We7TPTvlwMZxh3Yf7G9dkLOygXKomX08LOA1ELcJB9vK2OWbbK2k6fOJQQCKr6S7pV9ZU4HifKGXPxQKoPAmo72Zqenp9PBZ0USq0j05eprWD5deGY3YvW_L6o38wcDJdSD2k8ivwPFxvY3PUA1ntL8tHVAhq-oMPXUVXVpsHjZqDGbatQEHyUe0vQhc7dbmJF5HlvRVXOw3M-1EQmBURw_5tEAKDxZSzn2G0zu2hGnzT_vqgi-OAu9cSM1br4ytgLbUHG1VnuU9VQtEXLF1Rvp8aWPUwxq_1ojm07mzXBChM4g.JuGnrwrSF9PLG44nC_dtRA.Lb1j-9z9OQiV-bS8d0vSFUqV367FZpYp2wZmKlodkAagnu8suFiGz2DzxT086wdpucbFOCRJD4l1jjBVcNDq7R12hdcpu5_o-zh8r5JwpbDVyjC4Mjdxs4hLpwZH5OEp.OmkfnGL8CjO_8IJtjAfnwQ"
- },
- "record": {
- "CNAME": "king255-del.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "abdessattar23",
+ "discord": "1226143665567567954",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.eU0sigYFTiUmRSsjTm8HIpmuwsrshbwh3EHiAN0We7TPTvlwMZxh3Yf7G9dkLOygXKomX08LOA1ELcJB9vK2OWbbK2k6fOJQQCKr6S7pV9ZU4HifKGXPxQKoPAmo72Zqenp9PBZ0USq0j05eprWD5deGY3YvW_L6o38wcDJdSD2k8ivwPFxvY3PUA1ntL8tHVAhq-oMPXUVXVpsHjZqDGbatQEHyUe0vQhc7dbmJF5HlvRVXOw3M-1EQmBURw_5tEAKDxZSzn2G0zu2hGnzT_vqgi-OAu9cSM1br4ytgLbUHG1VnuU9VQtEXLF1Rvp8aWPUwxq_1ojm07mzXBChM4g.JuGnrwrSF9PLG44nC_dtRA.Lb1j-9z9OQiV-bS8d0vSFUqV367FZpYp2wZmKlodkAagnu8suFiGz2DzxT086wdpucbFOCRJD4l1jjBVcNDq7R12hdcpu5_o-zh8r5JwpbDVyjC4Mjdxs4hLpwZH5OEp.OmkfnGL8CjO_8IJtjAfnwQ"
+ },
+ "record": {
+ "CNAME": "king255-del.github.io"
+ }
+}
diff --git a/domains/abdelhamied.json b/domains/abdelhamied.json
new file mode 100644
index 000000000..7992106d2
--- /dev/null
+++ b/domains/abdelhamied.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abdelhamied403",
+ "email": "abdelhamied403@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdelhamied.vercel.app"
+ }
+}
diff --git a/domains/abdelkarim-ain.json b/domains/abdelkarim-ain.json
deleted file mode 100644
index 21b9f02cc..000000000
--- a/domains/abdelkarim-ain.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "abdelkarimain",
- "email": "abdelkarimain0@gmail.com"
- },
- "record": {
- "CNAME": "abdelkarimain.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/abdelkarimain.json b/domains/abdelkarimain.json
index 21b9f02cc..64ace5d29 100644
--- a/domains/abdelkarimain.json
+++ b/domains/abdelkarimain.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "abdelkarimain",
- "email": "abdelkarimain0@gmail.com"
- },
- "record": {
- "CNAME": "abdelkarimain.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "abdelkarimain",
+ "email": "abdelkarimain0@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdelkarimain.github.io"
+ }
+}
diff --git a/domains/abdessattar.json b/domains/abdessattar.json
index a985db1e4..8e81cca0b 100644
--- a/domains/abdessattar.json
+++ b/domains/abdessattar.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "abdessattar23",
- "email": "elyagoubiabdessattar@gmail.com"
- },
- "record": {
- "CNAME": "abdessattar23.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "abdessattar23",
+ "email": "elyagoubiabdessattar@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdessattar23.github.io"
+ }
+}
diff --git a/domains/abdi.json b/domains/abdi.json
index 316aca871..e99490e04 100644
--- a/domains/abdi.json
+++ b/domains/abdi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "abdiopp",
- "email": "ginnieabdullah007@gmail.com"
- },
- "record": {
- "CNAME": "abdi-portfolio.web.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "abdiopp",
+ "email": "ginnieabdullah007@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdi-portfolio.web.app"
+ }
+}
diff --git a/domains/abdisa.json b/domains/abdisa.json
index fb66739bb..162199d0b 100644
--- a/domains/abdisa.json
+++ b/domains/abdisa.json
@@ -1,10 +1,10 @@
{
- "description": "I'm a dev.",
- "owner": {
- "username": "abdisadev",
- "email": "abdisadev@gmail.com"
- },
- "record": {
- "CNAME": "abdisa.me"
- }
-}
\ No newline at end of file
+ "description": "I'm a dev.",
+ "owner": {
+ "username": "abdisadev",
+ "email": "abdisadev@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdisa.me"
+ }
+}
diff --git a/domains/abdo.json b/domains/abdo.json
index 21b7fd3f6..61a492730 100644
--- a/domains/abdo.json
+++ b/domains/abdo.json
@@ -1,12 +1,12 @@
{
- "description": "Abdo AT Main Web Page",
- "repo": "https://github.com/xAbdoAT/xabdoat.github.io",
- "owner": {
- "username": "xAbdoAT",
- "email": "xabdoat@gmail.com",
- "twitter": "xAbdoAT"
- },
- "record": {
- "CNAME": "xabdoat.github.io"
- }
-}
\ No newline at end of file
+ "description": "Abdo AT Main Web Page",
+ "repo": "https://github.com/xAbdoAT/xabdoat.github.io",
+ "owner": {
+ "username": "xAbdoAT",
+ "email": "xabdoat@gmail.com",
+ "twitter": "xAbdoAT"
+ },
+ "record": {
+ "CNAME": "xabdoat.github.io"
+ }
+}
diff --git a/domains/abdul.json b/domains/abdul.json
index 5a5d26dfc..60f35a05b 100644
--- a/domains/abdul.json
+++ b/domains/abdul.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "AhadWeb3",
- "email": "ahad4387@gmail.com"
- },
- "description": "portofolio website.",
- "record": {
- "URL": "https://abdul-ahad-portfolio.webflow.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AhadWeb3",
+ "email": "ahad4387@gmail.com"
+ },
+ "description": "portofolio website.",
+ "record": {
+ "URL": "https://abdul-ahad-portfolio.webflow.io"
+ }
+}
diff --git a/domains/abdullah-al-mridul.json b/domains/abdullah-al-mridul.json
new file mode 100644
index 000000000..2fcb83694
--- /dev/null
+++ b/domains/abdullah-al-mridul.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abdullah-al-mridul",
+ "email": "rim89987@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdullah-al-mridul-dev.vercel.app"
+ }
+}
diff --git a/domains/abdullah.json b/domains/abdullah.json
index 49dc4b43a..6ae594d68 100644
--- a/domains/abdullah.json
+++ b/domains/abdullah.json
@@ -1,10 +1,11 @@
{
- "owner": {
- "username": "adistar964",
- "email": "adistar964@gmail.com"
- },
- "description": "this is for my personal website made.",
- "record": {
- "CNAME": "adistar964.github.io"
- }
-}
\ No newline at end of file
+ "description": "Abdullah Personal Website",
+ "repo": "https://github.com/Mdabdullah3/me-portfolio",
+ "owner": {
+ "username": "Mdabdullah3",
+ "email": "mdabdullahnoman777@gmail.com"
+ },
+ "record": {
+ "CNAME": "mdabdullah3.github.io"
+ }
+}
diff --git a/domains/abdullah.maqbool.json b/domains/abdullah.maqbool.json
new file mode 100644
index 000000000..e7516a453
--- /dev/null
+++ b/domains/abdullah.maqbool.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Abdullah-Maqbool",
+ "email": "abdullah.maqbool.ahmad@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdullahmaqbool-portfolio.vercel.app"
+ }
+}
diff --git a/domains/abdullahcxd.json b/domains/abdullahcxd.json
new file mode 100644
index 000000000..e2865eab2
--- /dev/null
+++ b/domains/abdullahcxd.json
@@ -0,0 +1,19 @@
+{
+ "description": "Portfolio use",
+ "repo": "https://github.com/abdullahcxd/abdullahcxd.github.io",
+ "owner": {
+ "username": "abdullahcxd",
+ "email": "sabdullahcxd@gmail.com",
+ "discord": "sabdullahcxd"
+ },
+ "record": {
+ "A": [
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.108.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/abdullyahuza.json b/domains/abdullyahuza.json
new file mode 100644
index 000000000..60c707d30
--- /dev/null
+++ b/domains/abdullyahuza.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abdullyahuza",
+ "email": "yahuzaabdulrazak@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdullyahuza.github.io"
+ }
+}
diff --git a/domains/abdulquddus.json b/domains/abdulquddus.json
new file mode 100644
index 000000000..11a3677f4
--- /dev/null
+++ b/domains/abdulquddus.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aqdev-tech",
+ "email": "abdulquddusinda@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdulquddus.onrender.com"
+ }
+}
diff --git a/domains/abdulrahman.json b/domains/abdulrahman.json
index 3114985dc..87bf2a14f 100644
--- a/domains/abdulrahman.json
+++ b/domains/abdulrahman.json
@@ -1,11 +1,11 @@
{
- "description": "Personal site to showcase my future works.",
- "repo": "https://github.com/abdulrahman1s/abdulrahman1s.github.io",
- "owner": {
- "username": "abdulrahman1s",
- "email": "mail@abdulrahman.dev"
- },
- "record": {
- "URL": "https://abdulrahman.dev"
- }
-}
\ No newline at end of file
+ "description": "Personal site to showcase my future works.",
+ "repo": "https://github.com/abdulrahman1s/abdulrahman1s.github.io",
+ "owner": {
+ "username": "abdulrahman1s",
+ "email": "mail@abdulrahman.dev"
+ },
+ "record": {
+ "URL": "https://abdulrahman.dev"
+ }
+}
diff --git a/domains/abdulrazzaq.json b/domains/abdulrazzaq.json
new file mode 100644
index 000000000..f8296566f
--- /dev/null
+++ b/domains/abdulrazzaq.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio Website",
+ "owner": {
+ "username": "algo-encoders",
+ "email": "a.razzaq4085@gmail.com"
+ },
+ "record": {
+ "A": ["75.119.140.170"]
+ }
+}
diff --git a/domains/abdulrshaikh.json b/domains/abdulrshaikh.json
index fea2bb274..0ff5b2b12 100644
--- a/domains/abdulrshaikh.json
+++ b/domains/abdulrshaikh.json
@@ -1,11 +1,11 @@
{
- "description": "Abdul's personal developer website",
- "repo": "https://github.com/ariskycode/ariskycode.github.io",
- "owner": {
- "username": "ariskycode",
- "email": "arirfanshaikh23@gmail.com"
- },
- "record": {
- "CNAME": "ariskycode.github.io"
- }
-}
\ No newline at end of file
+ "description": "Abdul's personal developer website",
+ "repo": "https://github.com/ariskycode/ariskycode.github.io",
+ "owner": {
+ "username": "ariskycode",
+ "email": "arirfanshaikh23@gmail.com"
+ },
+ "record": {
+ "CNAME": "ariskycode.github.io"
+ }
+}
diff --git a/domains/abe.json b/domains/abe.json
index 1df33d505..4685df8eb 100644
--- a/domains/abe.json
+++ b/domains/abe.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "solarcosmic",
- "email": "skyrocket180@gmail.com",
- "discord": "1201432681913778260"
- },
- "record": {
- "CNAME": "profile01.overstand.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "solarcosmic",
+ "email": "skyrocket180@gmail.com",
+ "discord": "1201432681913778260"
+ },
+ "record": {
+ "CNAME": "profile01.overstand.app"
+ }
+}
diff --git a/domains/abeer.json b/domains/abeer.json
new file mode 100644
index 000000000..aa0f9620c
--- /dev/null
+++ b/domains/abeer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abeer555",
+ "email": "abeergupta555@gmail.com"
+ },
+ "record": {
+ "CNAME": "abeer555.github.io"
+ }
+}
diff --git a/domains/abegehr.json b/domains/abegehr.json
index 3b0cb1a27..78b7f1e39 100644
--- a/domains/abegehr.json
+++ b/domains/abegehr.json
@@ -1,12 +1,12 @@
{
- "description": "Personal webpage",
- "repo": "https://github.com/abegehr/abegehr.github.io",
- "owner": {
- "username": "abegehr",
- "email": "anton@begehr.me",
- "twitter": "antonbegehr"
- },
- "record": {
- "CNAME": "abegehr.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal webpage",
+ "repo": "https://github.com/abegehr/abegehr.github.io",
+ "owner": {
+ "username": "abegehr",
+ "email": "anton@begehr.me",
+ "twitter": "antonbegehr"
+ },
+ "record": {
+ "CNAME": "abegehr.github.io"
+ }
+}
diff --git a/domains/abeja.json b/domains/abeja.json
new file mode 100644
index 000000000..df4348575
--- /dev/null
+++ b/domains/abeja.json
@@ -0,0 +1,12 @@
+{
+ "description": "Abeja's portfolio",
+ "repo": "https://github.com/TheRealCrazyfuy/TheRealCrazyfuy.github.io",
+ "owner": {
+ "username": "TheRealCrazyfuy",
+ "discord": "realabeja",
+ "reddit": "crazyfuy"
+ },
+ "record": {
+ "CNAME": "TheRealCrazyfuy.github.io"
+ }
+}
diff --git a/domains/abelblue.json b/domains/abelblue.json
index c6b827aa4..49af5c49d 100644
--- a/domains/abelblue.json
+++ b/domains/abelblue.json
@@ -1,11 +1,11 @@
{
- "description": "Abel Mitiku's website",
- "repo": "https://github.com/abel-blue/abelblue.dev",
- "owner": {
- "username": "abel-blue",
- "email": "abelmgetnet@gmail.com"
- },
- "record": {
- "CNAME": "abel-blue.github.io"
- }
-}
\ No newline at end of file
+ "description": "Abel Mitiku's website",
+ "repo": "https://github.com/abel-blue/abelblue.dev",
+ "owner": {
+ "username": "abel-blue",
+ "email": "abelmgetnet@gmail.com"
+ },
+ "record": {
+ "CNAME": "abel-blue.github.io"
+ }
+}
diff --git a/domains/abeltranp94.json b/domains/abeltranp94.json
index 94c2f1dac..8fc1b502b 100644
--- a/domains/abeltranp94.json
+++ b/domains/abeltranp94.json
@@ -1,11 +1,11 @@
{
- "description": "Ariel Beltrán Paneque",
- "repo": "https://github.com/abeltranp9476/abeltranp94.github.io",
- "owner": {
- "username": "abeltranp9476",
- "email": "abeltran.9476@gmail.com"
- },
- "record": {
- "CNAME": "abeltranp9476.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ariel Beltrán Paneque",
+ "repo": "https://github.com/abeltranp9476/abeltranp94.github.io",
+ "owner": {
+ "username": "abeltranp9476",
+ "email": "abeltran.9476@gmail.com"
+ },
+ "record": {
+ "CNAME": "abeltranp9476.github.io"
+ }
+}
diff --git a/domains/abh80.json b/domains/abh80.json
index ac11d4aa4..c53647599 100644
--- a/domains/abh80.json
+++ b/domains/abh80.json
@@ -1,12 +1,12 @@
{
- "description": "Link to my portfolio site.",
- "repo": "https://github.com/abh80/abh80.github.io",
- "owner": {
- "username": "abh80",
- "email": "boatgithub27@gmail.com",
- "twitter": "trackerstars"
- },
- "record": {
- "CNAME": "abh80.github.io"
- }
-}
\ No newline at end of file
+ "description": "Link to my portfolio site.",
+ "repo": "https://github.com/abh80/abh80.github.io",
+ "owner": {
+ "username": "abh80",
+ "email": "boatgithub27@gmail.com",
+ "twitter": "trackerstars"
+ },
+ "record": {
+ "CNAME": "abh80.github.io"
+ }
+}
diff --git a/domains/abhay.json b/domains/abhay.json
index 79d7f8459..470df7cdc 100644
--- a/domains/abhay.json
+++ b/domains/abhay.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "uniquepersun",
- "email": "abhay.i0am@gmail.com",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WIRf3W3gkAD5c_yyczIieWIABVFKWjmCVV0l_jrxtMMOnT2mWlAELQAVfwDsjz2XEX6NcrWmCEaTEYC0aVCeWEgSjnl_r077RRwQuAOED2ICK-M5WvKDPdUuPlChYVtpbRiByY1nmFWUp5DGn7Z2faQrla_7Ji2e924mSSJppOeBuhcDZ0mZ0Mc3Z8X4DWgQ5xBbKFoREVkyuPSs9Y6Q0-lZsFZijj9khQsQDbDgZT8v3Fv9swLkqAdt-ZMBr7ZdvJSkBbtWj8L038WAZ6dSg-ix3xpkluU97jQt6kLkOyRYY5MKDFoSkxraBumZA9-YDB3pDL_2yAZ23cvHywnPDg.kU_H99RhrpznpQWwrfJ_Aw.yuZV5PvTwNvz5T1JlXOnGw7JjHcUDj_KdD9XGpvQ2rQQ9twNQJESMqj55Jxbgx2jX6mzJsRWmlJDPkE3eSkMQOv3AJuxuWdX4kGpREkxeixFGB8N1oviCe6z0JoYfRuW.GdyFBUkFmKP1fVuGM1CdCA"
- },
- "record": {
- "URL": "https://uniquepersun.hackclub.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "uniquepersun",
+ "email": "abhay.i0am@gmail.com",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WIRf3W3gkAD5c_yyczIieWIABVFKWjmCVV0l_jrxtMMOnT2mWlAELQAVfwDsjz2XEX6NcrWmCEaTEYC0aVCeWEgSjnl_r077RRwQuAOED2ICK-M5WvKDPdUuPlChYVtpbRiByY1nmFWUp5DGn7Z2faQrla_7Ji2e924mSSJppOeBuhcDZ0mZ0Mc3Z8X4DWgQ5xBbKFoREVkyuPSs9Y6Q0-lZsFZijj9khQsQDbDgZT8v3Fv9swLkqAdt-ZMBr7ZdvJSkBbtWj8L038WAZ6dSg-ix3xpkluU97jQt6kLkOyRYY5MKDFoSkxraBumZA9-YDB3pDL_2yAZ23cvHywnPDg.kU_H99RhrpznpQWwrfJ_Aw.yuZV5PvTwNvz5T1JlXOnGw7JjHcUDj_KdD9XGpvQ2rQQ9twNQJESMqj55Jxbgx2jX6mzJsRWmlJDPkE3eSkMQOv3AJuxuWdX4kGpREkxeixFGB8N1oviCe6z0JoYfRuW.GdyFBUkFmKP1fVuGM1CdCA"
+ },
+ "record": {
+ "URL": "https://uniquepersun.hackclub.app"
+ }
+}
diff --git a/domains/abhi.json b/domains/abhi.json
index 414b6a952..3b9c6b2b6 100644
--- a/domains/abhi.json
+++ b/domains/abhi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "actuallyabhi",
- "email": "mabhishek7081@zohomail.in"
- },
- "record": {
- "URL": "https://actuallyabhi.netlify.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "actuallyabhi",
+ "email": "mabhishek7081@zohomail.in"
+ },
+ "record": {
+ "URL": "https://actuallyabhi.netlify.app"
+ }
+}
diff --git a/domains/abhigyantrips.json b/domains/abhigyantrips.json
index 0eb41fae7..7a981f390 100644
--- a/domains/abhigyantrips.json
+++ b/domains/abhigyantrips.json
@@ -1,11 +1,11 @@
{
- "description": "A personal website, with biodata.",
- "repo": "https://github.com/abhigyantrips/abhigyantrips.github.io",
- "owner": {
- "username": "abhigyantrips",
- "email": "abhigyantrips@gmail.com"
- },
- "record": {
- "CNAME": "abhigyantrips.github.io"
- }
-}
\ No newline at end of file
+ "description": "A personal website, with biodata.",
+ "repo": "https://github.com/abhigyantrips/abhigyantrips.github.io",
+ "owner": {
+ "username": "abhigyantrips",
+ "email": "abhigyantrips@gmail.com"
+ },
+ "record": {
+ "CNAME": "abhigyantrips.github.io"
+ }
+}
diff --git a/domains/abhiii.json b/domains/abhiii.json
new file mode 100644
index 000000000..323a0ffd3
--- /dev/null
+++ b/domains/abhiii.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wiz-abhi",
+ "email": "abbhiiishekk@proton.me"
+ },
+ "record": {
+ "URL": "https://abhiishekk.netlify.app"
+ }
+}
diff --git a/domains/abhijeet.json b/domains/abhijeet.json
new file mode 100644
index 000000000..3576a43e6
--- /dev/null
+++ b/domains/abhijeet.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "abhijeet486",
+ "email": "sabhijeet652@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-website-mocha-beta.vercel.app"
+ },
+ "proxy": false
+}
\ No newline at end of file
diff --git a/domains/abhijith.json b/domains/abhijith.json
new file mode 100644
index 000000000..e96c95311
--- /dev/null
+++ b/domains/abhijith.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio",
+ "repo": "https://github.com/abhisawesome/abhisawesome.github.io",
+ "owner": {
+ "username": "abhisawesome",
+ "email": "abhijithababhijith@gmail.com"
+ },
+ "record": {
+ "CNAME": "abhisawesome.github.io"
+ }
+}
diff --git a/domains/abhilash.json b/domains/abhilash.json
index 968639001..8048cae1d 100644
--- a/domains/abhilash.json
+++ b/domains/abhilash.json
@@ -1,12 +1,12 @@
{
- "description": "Personal portfolio",
- "repo": "https://github.com/ostrichization/ostrichization.github.io",
- "owner": {
- "username": "Ostrichization",
- "email": "abhilashk1@proton.me",
- "twitter": "OstrichHimself"
- },
- "record": {
- "CNAME": "ostrichization.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal portfolio",
+ "repo": "https://github.com/ostrichization/ostrichization.github.io",
+ "owner": {
+ "username": "Ostrichization",
+ "email": "abhilashk1@proton.me",
+ "twitter": "OstrichHimself"
+ },
+ "record": {
+ "CNAME": "ostrichization.github.io"
+ }
+}
diff --git a/domains/abhinav-shyju.json b/domains/abhinav-shyju.json
new file mode 100644
index 000000000..62b8b15b9
--- /dev/null
+++ b/domains/abhinav-shyju.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abhinavshyju",
+ "email": "abhinavshyjupc@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-6ns.pages.dev"
+ }
+}
diff --git a/domains/abhinav.json b/domains/abhinav.json
new file mode 100644
index 000000000..024126e58
--- /dev/null
+++ b/domains/abhinav.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abh1nav",
+ "email": "abhinav316@gmail.com"
+ },
+ "record": {
+ "CNAME": "blog.abhinav.ca"
+ }
+}
diff --git a/domains/abhint.json b/domains/abhint.json
index 32a70829e..d9e6cc780 100644
--- a/domains/abhint.json
+++ b/domains/abhint.json
@@ -1,12 +1,12 @@
{
- "description": "Personal portfolio written in HTML and JS",
- "repo": "https://github.com/abhint/abhint.github.io",
- "owner": {
- "username": "abhint",
- "email": "notifyabhijith@gmail.com",
- "twitter": "abhint6"
- },
- "record": {
- "CNAME": "abhint.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal portfolio written in HTML and JS",
+ "repo": "https://github.com/abhint/abhint.github.io",
+ "owner": {
+ "username": "abhint",
+ "email": "notifyabhijith@gmail.com",
+ "twitter": "abhint6"
+ },
+ "record": {
+ "CNAME": "abhint.github.io"
+ }
+}
diff --git a/domains/abhishek-sharma.json b/domains/abhishek-sharma.json
index 86a760c92..82aba4eef 100644
--- a/domains/abhishek-sharma.json
+++ b/domains/abhishek-sharma.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AbhiSharma096",
- "email": "Abhisheksharma10a@gmail.com"
- },
- "record": {
- "URL": "https://abhishek-sharma-01.netlify.app/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AbhiSharma096",
+ "email": "Abhisheksharma10a@gmail.com"
+ },
+ "record": {
+ "URL": "https://abhishek-sharma-01.netlify.app/"
+ }
+}
diff --git a/domains/abhishek.json b/domains/abhishek.json
index 533e61b39..227fde739 100644
--- a/domains/abhishek.json
+++ b/domains/abhishek.json
@@ -1,11 +1,10 @@
{
- "description": "Abhishek's personal website",
- "repo": "https://github.com/nullpointxr",
- "owner": {
- "username": "nullpointxr",
- "email": "abhishek.sankar.in@protonmail.com"
- },
- "record": {
- "CNAME": "abhisheks.me"
- }
-}
\ No newline at end of file
+ "description": "Abhishek's personal website",
+ "owner": {
+ "username": "nullpointxr",
+ "email": "abhishek.sankar.in@protonmail.com"
+ },
+ "record": {
+ "CNAME": "abhisheks.me"
+ }
+}
diff --git a/domains/abhishekissac.json b/domains/abhishekissac.json
index 4923ad0ed..ee7e62597 100644
--- a/domains/abhishekissac.json
+++ b/domains/abhishekissac.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Abhishek-Issac",
- "email": "abhishekissac0@gmail.com"
- },
- "record": {
- "CNAME": "abhishek-issac.github.io"
- },
- "proxied": false
-}
\ No newline at end of file
+ "owner": {
+ "username": "Abhishek-Issac",
+ "email": "abhishekissac0@gmail.com"
+ },
+ "record": {
+ "CNAME": "abhishek-issac.github.io"
+ },
+ "proxied": false
+}
diff --git a/domains/abhishekkumar.json b/domains/abhishekkumar.json
index 6f11b2859..1ad2bff3b 100644
--- a/domains/abhishekkumar.json
+++ b/domains/abhishekkumar.json
@@ -1,11 +1,10 @@
{
- "description": "Abhishek's personal developer website",
- "repo": "https://github.com/Abhishek-569",
- "owner": {
- "username": "Abhishek-569",
- "email": "akabhishek4444@gmail.com"
- },
- "record": {
- "URL": "https://akabhishek4444.wixsite.com/abhishek-kumar"
- }
-}
\ No newline at end of file
+ "description": "Abhishek's personal developer website",
+ "owner": {
+ "username": "Abhishek-569",
+ "email": "akabhishek4444@gmail.com"
+ },
+ "record": {
+ "URL": "https://akabhishek4444.wixsite.com/abhishek-kumar"
+ }
+}
diff --git a/domains/abhrajitdas.json b/domains/abhrajitdas.json
index 5529e8b4d..d0c26388f 100644
--- a/domains/abhrajitdas.json
+++ b/domains/abhrajitdas.json
@@ -1,12 +1,12 @@
{
- "description": "My personal Portfolio Webdite",
- "repo": "https://github.com/Abhrajitdas02/Abhrajitdas02.github.io",
- "owner": {
- "username": "Abhrajitdas02",
- "email": "abhrajitdas12245@gmail.com",
- "twitter": "abhrajit2002"
- },
- "record": {
- "CNAME": "abhrajitdas02.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal Portfolio Webdite",
+ "repo": "https://github.com/Abhrajitdas02/Abhrajitdas02.github.io",
+ "owner": {
+ "username": "Abhrajitdas02",
+ "email": "abhrajitdas12245@gmail.com",
+ "twitter": "abhrajit2002"
+ },
+ "record": {
+ "CNAME": "abhrajitdas02.github.io"
+ }
+}
diff --git a/domains/abiapp789.json b/domains/abiapp789.json
deleted file mode 100644
index 7f8e25597..000000000
--- a/domains/abiapp789.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "domain": "abiapp1789.is-a.dev",
- "owner": {
- "username": "abiapp789",
- "email": "abiapp2024@gmail.com"
- },
- "record": {
- "CNAME": "trytodownloadme.rf.gd"
- }
-}
\ No newline at end of file
diff --git a/domains/abidraza.json b/domains/abidraza.json
new file mode 100644
index 000000000..ee456e6dd
--- /dev/null
+++ b/domains/abidraza.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ariabid",
+ "email": "ari.abid@gmail.com"
+ },
+ "record": {
+ "URL": "https://abidraza.com"
+ }
+}
diff --git a/domains/abiels.json b/domains/abiels.json
index 32dc0c772..53d0546fc 100644
--- a/domains/abiels.json
+++ b/domains/abiels.json
@@ -1,14 +1,14 @@
{
- "owner": {
- "email": "usagecomputer1@gmail.com",
- "username": "Abiel0"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "email": "usagecomputer1@gmail.com",
+ "username": "Abiel0"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/abineethan.json b/domains/abineethan.json
index dd6d7e907..9983a2f6d 100644
--- a/domains/abineethan.json
+++ b/domains/abineethan.json
@@ -1,11 +1,10 @@
{
- "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"
- }
-}
\ No newline at end of file
+ "description": "This is my portfolio website.",
+ "owner": {
+ "username": "abineethan",
+ "email": "abineethan22@gmail.com"
+ },
+ "record": {
+ "CNAME": "abineethan-dev.web.app"
+ }
+}
diff --git a/domains/abishek.json b/domains/abishek.json
index c6d72e884..cd33a0738 100644
--- a/domains/abishek.json
+++ b/domains/abishek.json
@@ -1,11 +1,11 @@
{
- "description": "Abishek's portfolio website",
- "repo": "https://github.com/vj-abishek/vj-abishek.github.io",
- "owner": {
- "username": "vj-abishek",
- "email": "abigosearch@gmail.com"
- },
- "record": {
- "CNAME": "vj-abishek.github.io"
- }
-}
\ No newline at end of file
+ "description": "Abishek's portfolio website",
+ "repo": "https://github.com/vj-abishek/vj-abishek.github.io",
+ "owner": {
+ "username": "vj-abishek",
+ "email": "abigosearch@gmail.com"
+ },
+ "record": {
+ "CNAME": "vj-abishek.github.io"
+ }
+}
diff --git a/domains/aboutjes.json b/domains/aboutjes.json
index f995c0254..53c17e34b 100644
--- a/domains/aboutjes.json
+++ b/domains/aboutjes.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Bio",
- "repo": "https://github.com/is-a-dev/docs",
- "owner": {
- "username": "octyn-yt",
- "email": "simplelogin-newsletter.idealize471@simplelogin.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
\ No newline at end of file
+ "description": "Personal Bio",
+ "repo": "https://github.com/is-a-dev/docs",
+ "owner": {
+ "username": "octyn-yt",
+ "email": "simplelogin-newsletter.idealize471@simplelogin.com"
+ },
+ "record": {
+ "CNAME": "edge.redirect.pizza"
+ }
+}
diff --git a/domains/abranico.json b/domains/abranico.json
new file mode 100644
index 000000000..e0f797915
--- /dev/null
+++ b/domains/abranico.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abranico",
+ "email": "abranico011@gmail.com"
+ },
+ "record": {
+ "CNAME": "abranico.vercel.app"
+ }
+}
diff --git a/domains/abu.json b/domains/abu.json
new file mode 100644
index 000000000..7fae28ec1
--- /dev/null
+++ b/domains/abu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mohamed-faaris",
+ "email": "mohammedfaaris2005@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/Mohamed-Abu-Bakkar"
+ }
+}
diff --git a/domains/abubakar.json b/domains/abubakar.json
index 0317e1dc4..9143d444b 100644
--- a/domains/abubakar.json
+++ b/domains/abubakar.json
@@ -1,11 +1,11 @@
{
- "description": "My personal portfolio",
- "repo": "https://github.com/AbubakarKang/AbubakarKang.github.io",
- "owner": {
- "username": "AbubakarKang",
- "discord": "TheHacker#4418"
- },
- "record": {
- "CNAME": "abubakarkang.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal portfolio",
+ "repo": "https://github.com/AbubakarKang/AbubakarKang.github.io",
+ "owner": {
+ "username": "AbubakarKang",
+ "discord": "TheHacker#4418"
+ },
+ "record": {
+ "CNAME": "abubakarkang.github.io"
+ }
+}
diff --git a/domains/abysmal.json b/domains/abysmal.json
index dae0e2958..d51988040 100644
--- a/domains/abysmal.json
+++ b/domains/abysmal.json
@@ -1,10 +1,10 @@
{
- "description": "My personal website",
- "owner": {
- "username": "abysmal26",
- "email": "abysmal@disroot.org"
- },
- "record": {
- "URL": "https://abysmal.eu.org"
- }
-}
\ No newline at end of file
+ "description": "My personal website",
+ "owner": {
+ "username": "abysmal26",
+ "email": "abysmal@disroot.org"
+ },
+ "record": {
+ "URL": "https://abysmal.eu.org"
+ }
+}
diff --git a/domains/abyss.json b/domains/abyss.json
index 8b895dfd2..4e050d48c 100644
--- a/domains/abyss.json
+++ b/domains/abyss.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ultimduck",
- "email": "zultimduk@gmail.com"
- },
- "record": {
- "CNAME": "ultimduck.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ultimduck",
+ "email": "zultimduk@gmail.com"
+ },
+ "record": {
+ "CNAME": "ultimduck.github.io"
+ }
+}
diff --git a/domains/ac.json b/domains/ac.json
index 7d79e4316..688a1d5e7 100644
--- a/domains/ac.json
+++ b/domains/ac.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/acdev1508/acdev1508.github.io",
- "owner": {
- "username": "acdev1508",
- "email": "acgamer1508@gmail.com"
- },
- "record": {
- "CNAME": "acdev1508.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/acdev1508/acdev1508.github.io",
+ "owner": {
+ "username": "acdev1508",
+ "email": "acgamer1508@gmail.com"
+ },
+ "record": {
+ "CNAME": "acdev1508.github.io"
+ }
+}
diff --git a/domains/ac21.json b/domains/ac21.json
index 76a0fcc68..cc9e15090 100644
--- a/domains/ac21.json
+++ b/domains/ac21.json
@@ -1,11 +1,11 @@
{
- "description": "Atharva Chandwadkar's Portfolio",
- "repo": "https://github.com/atharva21-stack/atharva21-stack.github.io",
- "owner": {
- "username": "atharva21-stack",
- "email": "chandwadkar28@gmail.com"
- },
- "record": {
- "CNAME": "atharva21-stack.github.io"
- }
-}
\ No newline at end of file
+ "description": "Atharva Chandwadkar's Portfolio",
+ "repo": "https://github.com/atharva21-stack/atharva21-stack.github.io",
+ "owner": {
+ "username": "atharva21-stack",
+ "email": "chandwadkar28@gmail.com"
+ },
+ "record": {
+ "CNAME": "atharva21-stack.github.io"
+ }
+}
diff --git a/domains/acaiberii.json b/domains/acaiberii.json
index 93a25b89d..8e0faf623 100644
--- a/domains/acaiberii.json
+++ b/domains/acaiberii.json
@@ -1,11 +1,11 @@
{
- "description": "acaiberii's website",
- "repo": "https://github.com/acaiberii/acaiberii.github.io",
- "owner": {
- "username": "acaiberii",
- "email": "studiouifxdesignersandcoders@gmail.com"
- },
- "record": {
- "CNAME": "acaiberii.github.io"
- }
-}
\ No newline at end of file
+ "description": "acaiberii's website",
+ "repo": "https://github.com/acaiberii/acaiberii.github.io",
+ "owner": {
+ "username": "acaiberii",
+ "email": "studiouifxdesignersandcoders@gmail.com"
+ },
+ "record": {
+ "CNAME": "acaiberii.github.io"
+ }
+}
diff --git a/domains/account.juststudio.json b/domains/account.juststudio.json
index c94514d37..0e9c53ba8 100644
--- a/domains/account.juststudio.json
+++ b/domains/account.juststudio.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "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/accounts.juststudio.json b/domains/accounts.juststudio.json
index 96073aac0..e2655ff63 100644
--- a/domains/accounts.juststudio.json
+++ b/domains/accounts.juststudio.json
@@ -1,11 +1,11 @@
{
- "description": "For account system",
- "owner": {
- "username": "JustDeveloper1",
- "email": "support@juststudio.is-a.dev",
- "discord": "1117482901353812088"
- },
- "record": {
- "CNAME": "accounts.clerk.services"
- }
-}
\ No newline at end of file
+ "description": "For account system",
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "CNAME": "accounts.clerk.services"
+ }
+}
diff --git a/domains/acctuke.json b/domains/acctuke.json
index 95ede74a0..96f7c2c5d 100644
--- a/domains/acctuke.json
+++ b/domains/acctuke.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "Roing",
- "email": "yang4421@outlook.com"
- },
- "record": {
- "A": [
- "47.120.72.157"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Roing",
+ "email": "yang4421@outlook.com"
+ },
+ "record": {
+ "A": ["47.120.72.157"]
+ }
+}
diff --git a/domains/ace.json b/domains/ace.json
index 51e5949ae..740356487 100644
--- a/domains/ace.json
+++ b/domains/ace.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "diamond-gold",
- "email": "diamond-gold-ace@outlook.com"
- },
- "record": {
- "URL": "https://github.com/diamond-gold"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "diamond-gold",
+ "email": "diamond-gold-ace@outlook.com"
+ },
+ "record": {
+ "URL": "https://github.com/diamond-gold"
+ }
+}
diff --git a/domains/acey.json b/domains/acey.json
index 6ed5236c0..e3ac2f977 100644
--- a/domains/acey.json
+++ b/domains/acey.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AceyDoCodes",
- "email": "aceygoesboom@gmail.com"
- },
- "record": {
- "CNAME": "website-5qo.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AceyDoCodes",
+ "email": "aceygoesboom@gmail.com"
+ },
+ "record": {
+ "CNAME": "website-5qo.pages.dev"
+ }
+}
diff --git a/domains/acgaming.json b/domains/acgaming.json
index edbb92311..39856b8e9 100644
--- a/domains/acgaming.json
+++ b/domains/acgaming.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "ACGaming1508",
- "email": "acgamer861@gmail.com"
- },
- "repo": "https://github.com/ACGaming1508/ACGaming1508.github.io",
- "record": {
- "CNAME": "acgaming1508.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ACGaming1508",
+ "email": "acgamer861@gmail.com"
+ },
+ "repo": "https://github.com/ACGaming1508/ACGaming1508.github.io",
+ "record": {
+ "CNAME": "acgaming1508.github.io"
+ }
+}
diff --git a/domains/achim.json b/domains/achim.json
index c414f2313..1ca781547 100644
--- a/domains/achim.json
+++ b/domains/achim.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "nohli",
- "twitter": "joachi_"
- },
- "record": {
- "CNAME": "achim.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "nohli",
+ "twitter": "joachi_"
+ },
+ "record": {
+ "CNAME": "achim.io"
+ }
+}
diff --git a/domains/achraf.json b/domains/achraf.json
index b5edd2a2f..e5173a56b 100644
--- a/domains/achraf.json
+++ b/domains/achraf.json
@@ -1,11 +1,11 @@
{
- "description": "Achraf's Website!",
- "repo": "https://github.com/Ax-r/ax-r.github.io",
- "owner": {
- "username": "Ax-r",
- "email": "hostmaster@netcourrier.com"
- },
- "record": {
- "CNAME": "ax-r.github.io"
- }
-}
\ No newline at end of file
+ "description": "Achraf's Website!",
+ "repo": "https://github.com/Ax-r/ax-r.github.io",
+ "owner": {
+ "username": "Ax-r",
+ "email": "hostmaster@netcourrier.com"
+ },
+ "record": {
+ "CNAME": "ax-r.github.io"
+ }
+}
diff --git a/domains/achyut.json b/domains/achyut.json
new file mode 100644
index 000000000..a10e770c0
--- /dev/null
+++ b/domains/achyut.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "achyutkneupane",
+ "email": "achyutkneupane@gmail.com",
+ "linkedin": "achyutneupane"
+ },
+ "record": {
+ "CNAME": "achyut.com.np"
+ }
+}
diff --git a/domains/acronical.json b/domains/acronical.json
index cbf705500..b63c4de95 100644
--- a/domains/acronical.json
+++ b/domains/acronical.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AcronicalYT",
- "email": "acronicalbusiness@gmail.com"
- },
- "record": {
- "CNAME": "acronical.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AcronicalYT",
+ "email": "acronicalbusiness@gmail.com"
+ },
+ "record": {
+ "CNAME": "acronical.pages.dev"
+ }
+}
diff --git a/domains/acutewoof.json b/domains/acutewoof.json
index 5917ebd2d..d2509f5b9 100644
--- a/domains/acutewoof.json
+++ b/domains/acutewoof.json
@@ -1,11 +1,11 @@
{
- "description": "ACuteWoof's Personal Site",
- "repo": "https://github.com/acutewoof/acutewoof.github.io",
- "owner": {
- "username": "acutewoof",
- "email": "acutewoof@gmail.com"
- },
- "record": {
- "CNAME": "acutewoof.github.io"
- }
-}
\ No newline at end of file
+ "description": "ACuteWoof's Personal Site",
+ "repo": "https://github.com/acutewoof/acutewoof.github.io",
+ "owner": {
+ "username": "acutewoof",
+ "email": "acutewoof@gmail.com"
+ },
+ "record": {
+ "CNAME": "acutewoof.github.io"
+ }
+}
diff --git a/domains/ad.lver.json b/domains/ad.lver.json
new file mode 100644
index 000000000..93c4db3e7
--- /dev/null
+++ b/domains/ad.lver.json
@@ -0,0 +1,11 @@
+{
+ "github": "https://github.com/lverx",
+ "owner": {
+ "username": "lverx",
+ "email": "profoundlvr@gmail.com"
+ },
+ "record": {
+ "A": ["52.72.49.79"]
+ },
+ "proxied": true
+}
diff --git a/domains/ada.json b/domains/ada.json
index 7cf8ae5f6..68b113b9b 100644
--- a/domains/ada.json
+++ b/domains/ada.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ada-lovecraft",
- "email": "ada@codevinsky.com"
- },
- "record": {
- "CNAME": "ada-lovecraft.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ada-lovecraft",
+ "email": "ada@codevinsky.com"
+ },
+ "record": {
+ "CNAME": "ada-lovecraft.github.io"
+ }
+}
diff --git a/domains/adais.json b/domains/adais.json
index b52fd9799..be4a05f10 100644
--- a/domains/adais.json
+++ b/domains/adais.json
@@ -1,11 +1,11 @@
{
- "description": "Personal developer website",
- "repo": "https://github.com/leixiaoda/openai",
- "owner": {
- "username": "leixiaoda",
- "email": "leixiaoda@gmail.com"
- },
- "record": {
- "CNAME": "leixiaoda.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal developer website",
+ "repo": "https://github.com/leixiaoda/openai",
+ "owner": {
+ "username": "leixiaoda",
+ "email": "leixiaoda@gmail.com"
+ },
+ "record": {
+ "CNAME": "leixiaoda.github.io"
+ }
+}
diff --git a/domains/adam.json b/domains/adam.json
index ee3fac5af..54c8f53ff 100644
--- a/domains/adam.json
+++ b/domains/adam.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "adamrexo",
- "discord": "898638440592191509",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UQXA3K1mX8Pq_S_dcKeoB7MzL_ON5vOvOGOA_0xPft015rDYunl47BEB_lxW0viGYUMvnecBkv6vBnxUrCtoh9F1f2QNnSfJMpDLRnEoiJt4gwt3wSuW8zlw7Y4gkr0oGoqPqXoVZkZOXtn1-SAB5h_rHksFxolsoxNUGbqfcqTcsHScsjVDhlfRSK7eGn-0iWJCjiQc0nL4HPHm-ziu0p2q4bFXzp6XreLITFZIASffgJzFldC2lmxXe3iR1A_T1zHw93f6rUrgdKgWRAN4qhmxHeSUatmI3uMTc0sd2BS0c99IumRnEYVzQDNkSutfw_zo5wDTjp2aabyb7XqusQ.dj4_olpViy2ITJcHo1Fo6g.IXDL4TFulPcVWPZMZ9SR5yoKVD0dS44Rx1-dHODPZw1ZoOUDliQDqUF5csyOdbLGLXiRAl6bsePXCVLIpYoPGwC25zKxI1z7maAu4uHQ6dI.QvaiUlJyNs4nk2-cV_HgDg"
- },
- "record": {
- "A": [
- "130.162.237.143"
- ]
- }
-}
\ No newline at end of file
+ "description": "Portfolio",
+ "owner": {
+ "username": "adamrexo",
+ "email": "rexosheesh@gmail.com"
+ },
+ "record": {
+ "CNAME": "adamrexo.vercel.app"
+ }
+}
diff --git a/domains/adamkarepin.json b/domains/adamkarepin.json
index d8e59ee20..ad01bd17e 100644
--- a/domains/adamkarepin.json
+++ b/domains/adamkarepin.json
@@ -1,11 +1,11 @@
{
- "description": "Personal portfolio website",
- "repo": "https://github.com/K7Adam/my-webfolio-angular",
- "owner": {
- "username": "K7Adam",
- "twitter": "7AdamK"
- },
- "record": {
- "CNAME": "8b23b621a9d04b0718dd.b-cdn.net"
- }
-}
\ No newline at end of file
+ "description": "Personal portfolio website",
+ "repo": "https://github.com/K7Adam/my-webfolio-angular",
+ "owner": {
+ "username": "K7Adam",
+ "twitter": "7AdamK"
+ },
+ "record": {
+ "CNAME": "8b23b621a9d04b0718dd.b-cdn.net"
+ }
+}
diff --git a/domains/adamperkowski.json b/domains/adamperkowski.json
new file mode 100644
index 000000000..91d448055
--- /dev/null
+++ b/domains/adamperkowski.json
@@ -0,0 +1,11 @@
+{
+ "description": "Adam Perkowski's personal website",
+ "repo": "https://github.com/adamperkowski/website",
+ "owner": {
+ "username": "adamperkowski",
+ "email": "adas1per@protonmail.com"
+ },
+ "record": {
+ "CNAME": "adamperkowski.dev"
+ }
+}
diff --git a/domains/adamski.json b/domains/adamski.json
index 04cb808a9..68c836593 100644
--- a/domains/adamski.json
+++ b/domains/adamski.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "edtimer",
- "email": "b4timer@protonamil.com"
- },
- "record": {
- "CNAME": "adamski.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "edtimer",
+ "email": "b4timer@protonamil.com"
+ },
+ "record": {
+ "CNAME": "adamski.pages.dev"
+ }
+}
diff --git a/domains/adarsh.json b/domains/adarsh.json
index 1c87f4163..2a5ecfbe1 100644
--- a/domains/adarsh.json
+++ b/domains/adarsh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "clumzyofficial",
- "email": "adarshshukla0344@gmail.com"
- },
- "record": {
- "CNAME": "clumzyofficial.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "clumzyofficial",
+ "email": "adarshshukla0344@gmail.com"
+ },
+ "record": {
+ "CNAME": "clumzyofficial.github.io"
+ }
+}
diff --git a/domains/adarshblog.json b/domains/adarshblog.json
index c364d36d9..ca079d348 100644
--- a/domains/adarshblog.json
+++ b/domains/adarshblog.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "itsmeadarsh2008",
- "email": "gourabmahalikadarsh@gmail.com"
- },
- "record": {
- "URL": "https://broughtbyalgorithm.blogspot.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "itsmeadarsh2008",
+ "email": "gourabmahalikadarsh@gmail.com"
+ },
+ "record": {
+ "URL": "https://broughtbyalgorithm.blogspot.com"
+ }
+}
diff --git a/domains/adarshkumar.json b/domains/adarshkumar.json
new file mode 100644
index 000000000..33719d97f
--- /dev/null
+++ b/domains/adarshkumar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Adarsh R. Kumar",
+ "email": "adarshravikumar2@gmail.com"
+ },
+ "record": {
+ "CNAME": "adarshrkumar.github.io"
+ }
+}
diff --git a/domains/adarshs.json b/domains/adarshs.json
index 78dd23fc6..0667a7768 100644
--- a/domains/adarshs.json
+++ b/domains/adarshs.json
@@ -1,11 +1,10 @@
{
- "description": "The portfolio of Adarsh S",
- "repo": "https://github.com/adarshsuresh07",
- "owner": {
- "username": "adarshsuresh07",
- "email": "adarshsuresh@cet.ac.in"
- },
- "record": {
- "CNAME": "adarshsuresh07.github.io"
- }
-}
\ No newline at end of file
+ "description": "The portfolio of Adarsh S",
+ "owner": {
+ "username": "adarshsuresh07",
+ "email": "adarshsuresh@cet.ac.in"
+ },
+ "record": {
+ "CNAME": "adarshsuresh07.github.io"
+ }
+}
diff --git a/domains/adarshvijay.json b/domains/adarshvijay.json
index 0b78cf7e1..ca764aa88 100644
--- a/domains/adarshvijay.json
+++ b/domains/adarshvijay.json
@@ -1,11 +1,11 @@
{
- "description": "Adarsh Vijay's Site for things he doesn't know yet",
- "repo": "https://github.com/adarsh-av13/adarsh-av13.github.io",
- "owner": {
- "username": "adarsh-av13",
- "email": "dra4474@gmail.com"
- },
- "record": {
- "CNAME": "adarsh-av13.github.io"
- }
-}
\ No newline at end of file
+ "description": "Adarsh Vijay's Site for things he doesn't know yet",
+ "repo": "https://github.com/adarsh-av13/adarsh-av13.github.io",
+ "owner": {
+ "username": "adarsh-av13",
+ "email": "dra4474@gmail.com"
+ },
+ "record": {
+ "CNAME": "adarsh-av13.github.io"
+ }
+}
diff --git a/domains/adeebkhan.json b/domains/adeebkhan.json
index 644382b4f..d2abea43e 100644
--- a/domains/adeebkhan.json
+++ b/domains/adeebkhan.json
@@ -1,11 +1,11 @@
{
- "description": "Describe the use of this subdomain",
- "repo": "https://github.com/akpathan2799/akpathan2799.github.io",
- "owner": {
- "username": "akpathan2799",
- "email": "akpathan2799@gmail.com"
- },
- "record": {
- "CNAME": "akpathan2799.github.io"
- }
-}
\ No newline at end of file
+ "description": "Describe the use of this subdomain",
+ "repo": "https://github.com/akpathan2799/akpathan2799.github.io",
+ "owner": {
+ "username": "akpathan2799",
+ "email": "akpathan2799@gmail.com"
+ },
+ "record": {
+ "CNAME": "akpathan2799.github.io"
+ }
+}
diff --git a/domains/adel-dafi.json b/domains/adel-dafi.json
new file mode 100644
index 000000000..c97b8ad14
--- /dev/null
+++ b/domains/adel-dafi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ad019El",
+ "email": "a.dafi@esi-sba.dz"
+ },
+ "record": {
+ "CNAME": "adel-dafi.pages.dev"
+ }
+}
diff --git a/domains/adharsh.json b/domains/adharsh.json
new file mode 100644
index 000000000..525648f9f
--- /dev/null
+++ b/domains/adharsh.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio",
+ "repo": "https://github.com/adharsh-A/portfolio2024",
+ "owner": {
+ "username": "adharsh-a",
+ "email": "adharshcodes@gmail.com"
+ },
+ "record": {
+ "URL": "https://adharsh-portfolio.netlify.app/"
+ }
+}
diff --git a/domains/adhi.json b/domains/adhi.json
index f615cc61c..a32db6a53 100644
--- a/domains/adhi.json
+++ b/domains/adhi.json
@@ -1,11 +1,11 @@
{
- "description": "Adhi",
- "repo": "https://github.com/adhithyakrishna/adhithyakrishna.github.io",
- "owner": {
- "username": "Adhi",
- "email": "akrishna.cse21@gmail.com"
- },
- "record": {
- "CNAME": "adhithyakrishna.github.io"
- }
-}
\ No newline at end of file
+ "description": "Adhi",
+ "repo": "https://github.com/adhithyakrishna/adhithyakrishna.github.io",
+ "owner": {
+ "username": "Adhi",
+ "email": "akrishna.cse21@gmail.com"
+ },
+ "record": {
+ "CNAME": "adhithyakrishna.github.io"
+ }
+}
diff --git a/domains/adhitht.json b/domains/adhitht.json
index 4a897f018..14f5ceeff 100644
--- a/domains/adhitht.json
+++ b/domains/adhitht.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "adhitht",
- "email": "adhith.tharammal@gmail.com"
- },
- "record": {
- "URL": "https://adhitht.me"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "adhitht",
+ "email": "adhith.tharammal@gmail.com"
+ },
+ "record": {
+ "URL": "https://adhitht.me"
+ }
+}
diff --git a/domains/adi.json b/domains/adi.json
index 8b8c070c5..5b629d332 100644
--- a/domains/adi.json
+++ b/domains/adi.json
@@ -1,11 +1,11 @@
{
- "description": "Adrian is a dev",
- "repo": "https://github.com/stryfe200fps/adrian",
- "owner": {
- "username": "stryfe200fps",
- "email": "fsdainsleif@gmail.com"
- },
- "record": {
- "CNAME": "stryfe200fps.github.io"
- }
-}
\ No newline at end of file
+ "description": "Adrian is a dev",
+ "repo": "https://github.com/stryfe200fps/adrian",
+ "owner": {
+ "username": "stryfe200fps",
+ "email": "fsdainsleif@gmail.com"
+ },
+ "record": {
+ "CNAME": "stryfe200fps.github.io"
+ }
+}
diff --git a/domains/adib.json b/domains/adib.json
index 7683bc47c..eaec424cc 100644
--- a/domains/adib.json
+++ b/domains/adib.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Adib23704",
- "email": "adib23704@gmail.com"
- },
- "record": {
- "URL": "https://adib23704.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Adib23704",
+ "email": "adib23704@gmail.com"
+ },
+ "record": {
+ "URL": "https://adib23704.com"
+ }
+}
diff --git a/domains/adigen.json b/domains/adigen.json
index 8b8c3f2cf..cb5dafb48 100644
--- a/domains/adigen.json
+++ b/domains/adigen.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "mradigen",
- "email": "mr.adigen@protonmail.com"
- },
- "record": {
- "CNAME": "mradigen.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "mradigen",
+ "email": "mr.adigen@protonmail.com"
+ },
+ "record": {
+ "CNAME": "mradigen.github.io"
+ }
+}
diff --git a/domains/adiii3692.json b/domains/adiii3692.json
new file mode 100644
index 000000000..773e1898a
--- /dev/null
+++ b/domains/adiii3692.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "adiii3692",
+ "email": "adinair0206@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-rho-sand-13.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/adil.json b/domains/adil.json
new file mode 100644
index 000000000..30ff38264
--- /dev/null
+++ b/domains/adil.json
@@ -0,0 +1,11 @@
+{
+ "description": "Adil Mohammed's Dev Portfolio",
+ "repo": "https://github.com/adil-uddin/adil-uddin.github.io",
+ "owner": {
+ "username": "adil-uddin",
+ "email": "adilaryan786@gmail.com"
+ },
+ "record": {
+ "CNAME": "adil-uddin.github.io"
+ }
+}
diff --git a/domains/adit.json b/domains/adit.json
index 52c69623e..e3a663c15 100644
--- a/domains/adit.json
+++ b/domains/adit.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "aditya-lika-ardiansyah",
- "email": "Adytialikaardiansyah@gmail.com"
- },
- "record": {
- "CNAME": "aditya-lika-ardiansyah.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aditya-lika-ardiansyah",
+ "email": "Adytialikaardiansyah@gmail.com"
+ },
+ "record": {
+ "CNAME": "aditya-lika-ardiansyah.github.io"
+ }
+}
diff --git a/domains/adithya.json b/domains/adithya.json
index e0612cadf..928901c94 100644
--- a/domains/adithya.json
+++ b/domains/adithya.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "adithyakb10",
- "email": "adithyakb93@gmail.com"
- },
- "record": {
- "URL": "https://adithyakb.carrd.co/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "adithyakb10",
+ "email": "adithyakb93@gmail.com"
+ },
+ "record": {
+ "URL": "https://adithyakb.carrd.co/"
+ }
+}
diff --git a/domains/adithyan.json b/domains/adithyan.json
new file mode 100644
index 000000000..5051dc05e
--- /dev/null
+++ b/domains/adithyan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "A-d-i-t-h-y-a-n",
+ "email": "hermit0bot@gmail.com"
+ },
+ "record": {
+ "CNAME": "whoami-tn1.pages.dev"
+ },
+ "proxied": true
+}
diff --git a/domains/adithyapaib.json b/domains/adithyapaib.json
index ac319dd1e..0364e4d2a 100644
--- a/domains/adithyapaib.json
+++ b/domains/adithyapaib.json
@@ -1,12 +1,12 @@
{
- "description": "My Portfolio Website",
- "repo": "https://github.com/adithyapaib/adithyapaib.github.io",
- "owner": {
- "username": "adithyapaib",
- "email": "paiadithya26@gmail.com",
- "twitter": "adithyapaib"
- },
- "record": {
- "CNAME": "adithyapaib.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/adithyapaib/adithyapaib.github.io",
+ "owner": {
+ "username": "adithyapaib",
+ "email": "paiadithya26@gmail.com",
+ "twitter": "adithyapaib"
+ },
+ "record": {
+ "CNAME": "adithyapaib.github.io"
+ }
+}
diff --git a/domains/aditya.json b/domains/aditya.json
index 927e16393..191ff4102 100644
--- a/domains/aditya.json
+++ b/domains/aditya.json
@@ -1,13 +1,10 @@
{
- "description": "my personal homepage",
- "repo": "https://github.com/dedomil",
- "owner": {
- "username": "dedomil",
- "email": "ishqaddy@gmail.com",
- "twitter": "aadixl",
- "discord": "dedomil"
- },
- "record": {
- "CNAME": "dedomil.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aditya portfolio",
+ "owner": {
+ "username": "raghav-45",
+ "email": "raghavbhai4545@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/adityabh.json b/domains/adityabh.json
index 81bb4be22..19a91c588 100644
--- a/domains/adityabh.json
+++ b/domains/adityabh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AdityaBhattacharya1",
- "email": "ec6isyf0@anonaddy.me"
- },
- "record": {
- "CNAME": "adityabhattacharya1.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AdityaBhattacharya1",
+ "email": "ec6isyf0@anonaddy.me"
+ },
+ "record": {
+ "CNAME": "adityabhattacharya1.github.io"
+ }
+}
diff --git a/domains/adityajyoti.json b/domains/adityajyoti.json
index 8082795f3..5ada85f5e 100644
--- a/domains/adityajyoti.json
+++ b/domains/adityajyoti.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Aditya-Jyoti",
- "email": "aj.adityajyoti@gmail.com"
- },
- "record": {
- "URL": "https://aditya-jyoti.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aditya-Jyoti",
+ "email": "aj.adityajyoti@gmail.com"
+ },
+ "record": {
+ "URL": "https://aditya-jyoti.github.io"
+ }
+}
diff --git a/domains/adityavag.json b/domains/adityavag.json
index 036d9845a..502e07869 100644
--- a/domains/adityavag.json
+++ b/domains/adityavag.json
@@ -1,11 +1,11 @@
{
- "description": "For Portfolio",
- "repo": "https://github.com/adityavag/portfolio",
- "owner": {
- "username": "adityavag",
- "email": "adi247u@gmail.com"
- },
- "record": {
- "CNAME": "adityavag.github.io"
- }
-}
\ No newline at end of file
+ "description": "For Portfolio",
+ "repo": "https://github.com/adityavag/portfolio",
+ "owner": {
+ "username": "adityavag",
+ "email": "adi247u@gmail.com"
+ },
+ "record": {
+ "CNAME": "adityavag.github.io"
+ }
+}
diff --git a/domains/adityavijay.json b/domains/adityavijay.json
index 3208336d6..0b267c1e3 100644
--- a/domains/adityavijay.json
+++ b/domains/adityavijay.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "adityavijay21",
- "email": "adityavijay2103@gmail.com"
- },
- "record": {
- "CNAME": "resume-qt2q.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "adityavijay21",
+ "email": "adityavijay2103@gmail.com"
+ },
+ "record": {
+ "CNAME": "resume-qt2q.onrender.com"
+ }
+}
diff --git a/domains/admir.json b/domains/admir.json
index 3791781f7..fb6ab3bd0 100644
--- a/domains/admir.json
+++ b/domains/admir.json
@@ -1,11 +1,11 @@
{
- "description": "Admir",
- "repo": "https://github.com/justadmir/justadmir.github.io",
- "owner": {
- "username": "justadmir",
- "email": "admirtahiraj242@gmail.com"
- },
- "record": {
- "CNAME": "justadmir.github.io"
- }
-}
\ No newline at end of file
+ "description": "Admir",
+ "repo": "https://github.com/justadmir/justadmir.github.io",
+ "owner": {
+ "username": "justadmir",
+ "email": "admirtahiraj242@gmail.com"
+ },
+ "record": {
+ "CNAME": "justadmir.github.io"
+ }
+}
diff --git a/domains/adnan.json b/domains/adnan.json
index 3a909bd66..ccee39dee 100644
--- a/domains/adnan.json
+++ b/domains/adnan.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Adnan0131",
- "email": "sonuadnan6@gmail.com"
- },
- "record": {
- "CNAME": "adnan-ahamed-portfolio.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Adnan0131",
+ "email": "sonuadnan6@gmail.com"
+ },
+ "record": {
+ "CNAME": "adnan-ahamed-portfolio.vercel.app"
+ }
+}
diff --git a/domains/adolar0042.json b/domains/adolar0042.json
index 5a34b0be8..f8354e325 100644
--- a/domains/adolar0042.json
+++ b/domains/adolar0042.json
@@ -1,11 +1,11 @@
{
- "description": "personal website",
- "repo": "https://github.com/adolar0042/adolar0042.github.io",
- "owner": {
- "username": "Adolar0042",
- "email": "adolar0042@gmail.com"
- },
- "record": {
- "CNAME": "adolar0042.github.io"
- }
-}
\ No newline at end of file
+ "description": "personal website",
+ "repo": "https://github.com/adolar0042/adolar0042.github.io",
+ "owner": {
+ "username": "Adolar0042",
+ "email": "adolar0042@gmail.com"
+ },
+ "record": {
+ "CNAME": "adolar0042.github.io"
+ }
+}
diff --git a/domains/adonisfx.json b/domains/adonisfx.json
index ca2f6cc0a..8213ee39a 100644
--- a/domains/adonisfx.json
+++ b/domains/adonisfx.json
@@ -1,12 +1,12 @@
{
- "description": "This is a domain for my personal website!",
- "repo": "https://github.com/Adonisfx/adonisfx.github.io",
- "owner": {
- "username": "Adonisfx",
- "email": "ogulcanozturk72@gmail.com",
- "twitter": "ogulcanztrk1"
- },
- "record": {
- "CNAME": "adonisfx.github.io"
- }
-}
\ No newline at end of file
+ "description": "This is a domain for my personal website!",
+ "repo": "https://github.com/Adonisfx/adonisfx.github.io",
+ "owner": {
+ "username": "Adonisfx",
+ "email": "ogulcanozturk72@gmail.com",
+ "twitter": "ogulcanztrk1"
+ },
+ "record": {
+ "CNAME": "adonisfx.github.io"
+ }
+}
diff --git a/domains/adoqet.json b/domains/adoqet.json
index 549829a50..66b43beae 100644
--- a/domains/adoqet.json
+++ b/domains/adoqet.json
@@ -1,21 +1,16 @@
{
- "owner": {
- "username": "AdoQeT",
- "email": "adoqet@gmail.com"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.111.153",
- "185.199.110.153",
- "185.199.109.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": [
- "v=spf1 include:spf.improvmx.com ~all"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AdoQeT",
+ "email": "adoqet@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.111.153",
+ "185.199.110.153",
+ "185.199.109.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/adrenocortico.json b/domains/adrenocortico.json
index bd502cc20..06fe99b2d 100644
--- a/domains/adrenocortico.json
+++ b/domains/adrenocortico.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Adrenocortico",
- "email": "francesco.dulio@icloud.com"
- },
- "record": {
- "CNAME": "adrenocortico.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Adrenocortico",
+ "email": "francesco.dulio@icloud.com"
+ },
+ "record": {
+ "CNAME": "adrenocortico.github.io"
+ }
+}
diff --git a/domains/adri.json b/domains/adri.json
index 07b8b3e7e..b6e5c5aea 100644
--- a/domains/adri.json
+++ b/domains/adri.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "adripo",
- "email": "adripo@hi2.in"
- },
- "record": {
- "URL": "https://github.com/adripo"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "adripo",
+ "email": "adripo@hi2.in"
+ },
+ "record": {
+ "URL": "https://github.com/adripo"
+ }
+}
diff --git a/domains/adrian.json b/domains/adrian.json
index 2de737370..2d7f15c7b 100644
--- a/domains/adrian.json
+++ b/domains/adrian.json
@@ -1,11 +1,11 @@
{
- "description": "The awesome portfolio site for Adrian Grimm",
- "repo": "https://github.com/usmcamgrimm/usmcamgrimm.github.io",
- "owner": {
- "username": "usmcamgrimm",
- "email": "usmcamgrimm@gmail.com"
- },
- "record": {
- "CNAME": "usmcamgrimm.github.io"
- }
-}
\ No newline at end of file
+ "description": "The awesome portfolio site for Adrian Grimm",
+ "repo": "https://github.com/usmcamgrimm/usmcamgrimm.github.io",
+ "owner": {
+ "username": "usmcamgrimm",
+ "email": "usmcamgrimm@gmail.com"
+ },
+ "record": {
+ "CNAME": "usmcamgrimm.github.io"
+ }
+}
diff --git a/domains/adriancmiranda.json b/domains/adriancmiranda.json
new file mode 100644
index 000000000..f74f5e370
--- /dev/null
+++ b/domains/adriancmiranda.json
@@ -0,0 +1,16 @@
+{
+ "owner": {
+ "username": "adriancmiranda",
+ "email": "ad@is-a.dev"
+ },
+ "record": {
+ "URL": "https://adrian-miranda.vercel.app"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/adriancmiranda",
+ "/linkedin": "https://www.linkedin.com/in/adriancmiranda"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/adrianqr.json b/domains/adrianqr.json
index 01ad0d2ea..0247637d3 100644
--- a/domains/adrianqr.json
+++ b/domains/adrianqr.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AdrianQR01",
- "email": "adrianquenard@gmail.com"
- },
- "record": {
- "CNAME": "adrianqr01.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AdrianQR01",
+ "email": "adrianquenard@gmail.com"
+ },
+ "record": {
+ "CNAME": "adrianqr01.github.io"
+ }
+}
diff --git a/domains/adrien.json b/domains/adrien.json
new file mode 100644
index 000000000..373a2b06f
--- /dev/null
+++ b/domains/adrien.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "technetist",
+ "email": "adrien@maranville.io"
+ },
+ "record": {
+ "URL": "https://maranville.io"
+ }
+}
diff --git a/domains/adriichu.json b/domains/adriichu.json
index cd5745a7e..3f3fc169b 100644
--- a/domains/adriichu.json
+++ b/domains/adriichu.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "Adriichu",
- "email": "adriichu@proton.me",
- "twitter": "Adriichuu",
- "discord": "Aaron#0069"
- },
- "record": {
- "CNAME": "aaron-web.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Adriichu",
+ "email": "adriichu@proton.me",
+ "twitter": "Adriichuu",
+ "discord": "Aaron#0069"
+ },
+ "record": {
+ "CNAME": "aaron-web.pages.dev"
+ }
+}
diff --git a/domains/advance-bot.json b/domains/advance-bot.json
index 7d081d73d..0d0fa56fb 100644
--- a/domains/advance-bot.json
+++ b/domains/advance-bot.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "shygamer123",
- "email": "gpratham522@gmail.com",
- "discord": "840244590870003762"
- },
- "record": {
- "A": [
- "69.30.249.53"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "shygamer123",
+ "email": "gpratham522@gmail.com",
+ "discord": "840244590870003762"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/advik.json b/domains/advik.json
index b5e87de92..3c91a02e7 100644
--- a/domains/advik.json
+++ b/domains/advik.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Advik-B",
- "email": "advik.b@gmail.com",
- "discord": "765739254164357121"
- },
- "record": {
- "CNAME": "advik-b.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Advik-B",
+ "email": "advik.b@gmail.com",
+ "discord": "765739254164357121"
+ },
+ "record": {
+ "CNAME": "advik-b.github.io"
+ }
+}
diff --git a/domains/adwait.json b/domains/adwait.json
new file mode 100644
index 000000000..7e521f5dd
--- /dev/null
+++ b/domains/adwait.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio-Website",
+ "repo": "https://github.com/Adwait0901/Portfolio",
+ "owner": {
+ "username": "Adwait0901",
+ "email": "adwaitpatil0901@gmail.com"
+ },
+ "record": {
+ "CNAME": "adwait0901.github.io"
+ }
+}
diff --git a/domains/aeon.json b/domains/aeon.json
index 0869a7089..284dfcd90 100644
--- a/domains/aeon.json
+++ b/domains/aeon.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "DaynLalwani",
- "email": "Daynlalwani23@gmail.com"
- },
- "record": {
- "CNAME": "daynlalwani.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "DaynLalwani",
+ "email": "Daynlalwani23@gmail.com"
+ },
+ "record": {
+ "CNAME": "daynlalwani.github.io"
+ }
+}
diff --git a/domains/aespada.json b/domains/aespada.json
index c3358b59e..9d3440281 100644
--- a/domains/aespada.json
+++ b/domains/aespada.json
@@ -1,11 +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
+ "description": "Personal portfolio",
+ "repo": "https://github.com/alexES13/alexES13.github.io",
+ "owner": {
+ "username": "alexES13",
+ "email": "butano_tren.7r@icloud.com"
+ },
+ "record": {
+ "CNAME": "alexes13.github.io"
+ }
+}
diff --git a/domains/aessaputra.json b/domains/aessaputra.json
new file mode 100644
index 000000000..0de67fbf7
--- /dev/null
+++ b/domains/aessaputra.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aessaputra",
+ "twitter": "pioonrey"
+ },
+ "record": {
+ "CNAME": "github-profile-summary-cards-aes-saputras-projects.vercel.app"
+ }
+}
diff --git a/domains/aesyncio.json b/domains/aesyncio.json
index 0b2cfedde..2e3fcf001 100644
--- a/domains/aesyncio.json
+++ b/domains/aesyncio.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aesyncio",
- "email": "ssupercow@proton.me",
- "discord": "1235901872649539604"
- },
- "record": {
- "CNAME": "aesyncio.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aesyncio",
+ "email": "ssupercow@proton.me",
+ "discord": "1235901872649539604"
+ },
+ "record": {
+ "CNAME": "aesyncio.github.io"
+ }
+}
diff --git a/domains/aeyika.json b/domains/aeyika.json
index 1b9fdffe1..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aeyika",
+ "email": "aeyikastech@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-aeyikas-projects.vercel.app"
+ }
+}
diff --git a/domains/affan.json b/domains/affan.json
new file mode 100644
index 000000000..c24952ed8
--- /dev/null
+++ b/domains/affan.json
@@ -0,0 +1,15 @@
+{
+ "owner": {
+ "username": "orkkz",
+ "email": "affanorakzai19@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": [
+ "v=spf1 include:_spf.mx.cloudflare.net include:spf.improvmx.com ~all",
+ "dh=92c9945830f32cb180df547af9f491ff1a4c75a9",
+ "google-site-verification=siT0966V4oDzv8eaTUk2ISSZY5Ox6BU2eM28sg2fUFo"
+ ]
+ }
+}
diff --git a/domains/affidev.json b/domains/affidev.json
index cc5130693..07c9a0359 100644
--- a/domains/affidev.json
+++ b/domains/affidev.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "eabdalmufid",
- "email": "eabdalmufid@gmail.com"
- },
- "record": {
- "CNAME": "eabdalmufid.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "eabdalmufid",
+ "email": "eabdalmufid@gmail.com"
+ },
+ "record": {
+ "CNAME": "eabdalmufid.github.io"
+ }
+}
diff --git a/domains/afidev.json b/domains/afidev.json
index cc5130693..07c9a0359 100644
--- a/domains/afidev.json
+++ b/domains/afidev.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "eabdalmufid",
- "email": "eabdalmufid@gmail.com"
- },
- "record": {
- "CNAME": "eabdalmufid.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "eabdalmufid",
+ "email": "eabdalmufid@gmail.com"
+ },
+ "record": {
+ "CNAME": "eabdalmufid.github.io"
+ }
+}
diff --git a/domains/afk.json b/domains/afk.json
index 2a864b510..a34e49d0c 100644
--- a/domains/afk.json
+++ b/domains/afk.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "RainWill",
- "email": "2782401449@qq.com"
- },
- "record": {
- "A": [
- "69.30.249.53"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "RainWill",
+ "email": "2782401449@qq.com"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/afnan.json b/domains/afnan.json
new file mode 100644
index 000000000..fc62c307c
--- /dev/null
+++ b/domains/afnan.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio website",
+ "repo": "https://github.com/Sayed-Afnan-Khazi/sayed-afnan-khazi.github.io",
+ "owner": {
+ "username": "Sayed-Afnan-Khazi",
+ "email": "oofnanfake1@gmail.com"
+ },
+ "record": {
+ "CNAME": "sayed-afnan-khazi.github.io"
+ }
+}
diff --git a/domains/afonsoribeiro.json b/domains/afonsoribeiro.json
new file mode 100644
index 000000000..c0a21b66f
--- /dev/null
+++ b/domains/afonsoribeiro.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal website",
+ "owner": {
+ "username": "Afons0Ribeiro",
+ "email": "afonsomsfribeiro@gmail.com"
+ },
+ "record": {
+ "A": ["94.61.156.248"],
+ "AAAA": ["2001:818:eb38:800:c13b:6eab:f74c:b965"]
+ },
+ "proxied": false
+}
diff --git a/domains/afp.json b/domains/afp.json
index 05b9f6426..18874e3b2 100644
--- a/domains/afp.json
+++ b/domains/afp.json
@@ -1,15 +1,10 @@
{
- "owner": {
- "username": "AndreasFxPro",
- "discord": "423906482904629268"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": [
- "v=spf1 include:spf.improvmx.com ~all"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AndreasFxPro",
+ "discord": "423906482904629268"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/afrtite.json b/domains/afrtite.json
index 0b5aee98a..ca405cf8c 100644
--- a/domains/afrtite.json
+++ b/domains/afrtite.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "5enox",
- "email": "animikantan@gmail.com"
- },
- "record": {
- "CNAME": "my-proto.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "5enox",
+ "email": "animikantan@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-proto.onrender.com"
+ }
+}
diff --git a/domains/aftermath.json b/domains/aftermath.json
index b09a318a6..ebce80cbf 100644
--- a/domains/aftermath.json
+++ b/domains/aftermath.json
@@ -1,12 +1,12 @@
{
- "description": "Describe the use of this subdomain",
- "repo": "https://github.com/AfterMath9/aftermath9.github.io",
- "owner": {
- "username": "AfterMath9",
- "email": "amrmafalani@yahoo.com",
- "twitter": "iBadDroid"
- },
- "record": {
- "CNAME": "aftermath9.github.io"
- }
-}
\ No newline at end of file
+ "description": "Describe the use of this subdomain",
+ "repo": "https://github.com/AfterMath9/aftermath9.github.io",
+ "owner": {
+ "username": "AfterMath9",
+ "email": "amrmafalani@yahoo.com",
+ "twitter": "iBadDroid"
+ },
+ "record": {
+ "CNAME": "aftermath9.github.io"
+ }
+}
diff --git a/domains/afton.json b/domains/afton.json
index 976a7ea51..b11a4c175 100644
--- a/domains/afton.json
+++ b/domains/afton.json
@@ -1,12 +1,12 @@
{
- "description": "My webpage, made using LiveTerm by Cveinnt",
- "repo": "https://github.com/aftoncodes/aftoncodes.github.io",
- "owner": {
- "username": "aftoncodes",
- "email": "williamafton.codes@gmail.com",
- "twitter": "aftoncodes"
- },
- "record": {
- "URL": "https://aftoncodes.vercel.app"
- }
-}
\ No newline at end of file
+ "description": "My webpage, made using LiveTerm by Cveinnt",
+ "repo": "https://github.com/aftoncodes/aftoncodes.github.io",
+ "owner": {
+ "username": "aftoncodes",
+ "email": "williamafton.codes@gmail.com",
+ "twitter": "aftoncodes"
+ },
+ "record": {
+ "URL": "https://aftoncodes.vercel.app"
+ }
+}
diff --git a/domains/ag.json b/domains/ag.json
index 9fed45197..d543ffcf8 100644
--- a/domains/ag.json
+++ b/domains/ag.json
@@ -1,11 +1,11 @@
{
- "description": "My personal Website",
- "repo": "https://github.com/andreasgrafen/andreasgrafen",
- "owner": {
- "username": "andreasgrafen",
- "email": "software@grafen.info"
- },
- "record": {
- "URL": "https://unseen.ninja"
- }
-}
\ No newline at end of file
+ "description": "My personal Website",
+ "repo": "https://github.com/andreasgrafen/andreasgrafen",
+ "owner": {
+ "username": "andreasgrafen",
+ "email": "software@grafen.info"
+ },
+ "record": {
+ "URL": "https://unseen.ninja"
+ }
+}
diff --git a/domains/agam778.json b/domains/agam778.json
index 77b8b3126..51a483cac 100644
--- a/domains/agam778.json
+++ b/domains/agam778.json
@@ -1,11 +1,10 @@
{
- "description": "Agam's Website",
- "repo": "https://github.com/agam778",
- "owner": {
- "username": "agam778",
- "email": "agam778@zohomail.in"
- },
- "record": {
- "CNAME": "agamsblog.pages.dev"
- }
-}
\ No newline at end of file
+ "description": "Agam's Website",
+ "owner": {
+ "username": "agam778",
+ "email": "agam778@zohomail.in"
+ },
+ "record": {
+ "CNAME": "agamsblog.pages.dev"
+ }
+}
diff --git a/domains/agamjot-singh.json b/domains/agamjot-singh.json
index 6ec8b7b06..629719d9a 100644
--- a/domains/agamjot-singh.json
+++ b/domains/agamjot-singh.json
@@ -1,12 +1,12 @@
{
- "description": "Personal Portfolio Webapp",
- "repo": "https://github.com/agamjotsingh18/agamjotsingh18.github.io",
- "owner": {
- "username": "agamjotsingh18",
- "email": "agamjotsingh1801@gmail.com",
- "twitter": "_agamjotsingh"
- },
- "record": {
- "CNAME": "agamjotsingh18.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio Webapp",
+ "repo": "https://github.com/agamjotsingh18/agamjotsingh18.github.io",
+ "owner": {
+ "username": "agamjotsingh18",
+ "email": "agamjotsingh1801@gmail.com",
+ "twitter": "_agamjotsingh"
+ },
+ "record": {
+ "CNAME": "agamjotsingh18.github.io"
+ }
+}
diff --git a/domains/agelos.json b/domains/agelos.json
new file mode 100644
index 000000000..8d73e484a
--- /dev/null
+++ b/domains/agelos.json
@@ -0,0 +1,11 @@
+{
+ "description": "agelospanagiotakis profile",
+ "repo": "https://github.com/agelospanagiotakis/agelospanagiotakis.github.io",
+ "owner": {
+ "username": "agelospanagiotakis",
+ "email": "agelospanagiotakis@gmail.com"
+ },
+ "record": {
+ "CNAME": "agelospanagiotakis.github.io"
+ }
+}
diff --git a/domains/agent.json b/domains/agent.json
new file mode 100644
index 000000000..eeab749fd
--- /dev/null
+++ b/domains/agent.json
@@ -0,0 +1,13 @@
+{
+ "description": "Agent's Developer Portfolio",
+ "repo": "https://github.com/relentiousdragon/isadev-site/tree/main",
+ "owner": {
+ "username": "relentiousdragon",
+ "email": "relentoor@gmail.com",
+ "discord": "agentzzrp"
+ },
+ "record": {
+ "CNAME": "isadev-site.pages.dev"
+ },
+ "proxied": true
+}
diff --git a/domains/agilani.json b/domains/agilani.json
new file mode 100644
index 000000000..efc1c9699
--- /dev/null
+++ b/domains/agilani.json
@@ -0,0 +1,10 @@
+{
+ "description": "agilani.is-a.dev",
+ "owner": {
+ "username": "agilani",
+ "email": "me@agilani.me"
+ },
+ "record": {
+ "CNAME": "www.agilani.me"
+ }
+}
diff --git a/domains/agn.json b/domains/agn.json
index 64c2066f0..abb5350e6 100644
--- a/domains/agn.json
+++ b/domains/agn.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "agnesmonret",
- "email": "agnesmoret@proton.me",
- "discord": "694917200720429066"
- },
- "record": {
- "CNAME": "agnesmonret.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "agnesmonret",
+ "email": "agnesmoret@proton.me",
+ "discord": "694917200720429066"
+ },
+ "record": {
+ "CNAME": "agnesmonret.github.io"
+ }
+}
diff --git a/domains/agold.json b/domains/agold.json
index 61a49c123..b70dfd3e7 100644
--- a/domains/agold.json
+++ b/domains/agold.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aGoldDev",
- "discord": "aGold#9596",
- "email": "abloggoldwin@gmail.com"
- },
- "record": {
- "CNAME": "agolddev.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aGoldDev",
+ "discord": "aGold#9596",
+ "email": "abloggoldwin@gmail.com"
+ },
+ "record": {
+ "CNAME": "agolddev.github.io"
+ }
+}
diff --git a/domains/agrim.json b/domains/agrim.json
index e252656f3..a0ffc37f0 100644
--- a/domains/agrim.json
+++ b/domains/agrim.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/Agrim-Bansal/Agrim-Bansal.github.io",
- "owner": {
- "username": "Agrim-Bansal",
- "email": "agrimx2@gmail.com"
- },
- "record": {
- "CNAME": "agrim-bansal.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/Agrim-Bansal/Agrim-Bansal.github.io",
+ "owner": {
+ "username": "Agrim-Bansal",
+ "email": "agrimx2@gmail.com"
+ },
+ "record": {
+ "CNAME": "agrim-bansal.github.io"
+ }
+}
diff --git a/domains/agung.json b/domains/agung.json
new file mode 100644
index 000000000..1e3509e59
--- /dev/null
+++ b/domains/agung.json
@@ -0,0 +1,11 @@
+{
+ "description": "Profile Page",
+ "repo": "https://github.com/aw09/aw09.github.io",
+ "owner": {
+ "username": "aw09",
+ "email": "agungwck.99@gmail.com"
+ },
+ "record": {
+ "CNAME": "aw09.github.io"
+ }
+}
diff --git a/domains/aguspedhot.json b/domains/aguspedhot.json
index d07b6ef83..95ef4fc86 100644
--- a/domains/aguspedhot.json
+++ b/domains/aguspedhot.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Pedhot-Dev",
- "email": "wanzgamerz2@gmail.com"
- },
- "record": {
- "CNAME": "aguspedhot.000webhostapp.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Pedhot-Dev",
+ "email": "wanzgamerz2@gmail.com"
+ },
+ "record": {
+ "CNAME": "aguspedhot.000webhostapp.com"
+ }
+}
diff --git a/domains/ah2.json b/domains/ah2.json
index 2a46e6381..52cfde079 100644
--- a/domains/ah2.json
+++ b/domains/ah2.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ah2",
- "email": "uni.ahmamy@gmail.com"
- },
- "record": {
- "URL": "https://hamd.cloud.libraryofcode.org"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ah2",
+ "email": "uni.ahmamy@gmail.com"
+ },
+ "record": {
+ "URL": "https://hamd.cloud.libraryofcode.org"
+ }
+}
diff --git a/domains/ahammednibras.json b/domains/ahammednibras.json
index 085f156c1..5b4ca3270 100644
--- a/domains/ahammednibras.json
+++ b/domains/ahammednibras.json
@@ -1,12 +1,12 @@
{
- "description": "I want to use this domain as my personal web portfolio.",
- "repo": "https://github.com/ahammednibras8/ahammednibras8.github.io",
- "owner": {
- "username": "ahammednibras8",
- "email": "ahammednibras@hey.com",
- "twitter": "ahammednibras8"
- },
- "record": {
- "CNAME": "ahammednibras8.github.io"
- }
-}
\ No newline at end of file
+ "description": "I want to use this domain as my personal web portfolio.",
+ "repo": "https://github.com/ahammednibras8/ahammednibras8.github.io",
+ "owner": {
+ "username": "ahammednibras8",
+ "email": "ahammednibras@hey.com",
+ "twitter": "ahammednibras8"
+ },
+ "record": {
+ "CNAME": "ahammednibras8.github.io"
+ }
+}
diff --git a/domains/ahios.json b/domains/ahios.json
new file mode 100644
index 000000000..54b441118
--- /dev/null
+++ b/domains/ahios.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "ahios",
+ "email": "ahios.dev@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"],
+ "TXT": "google-site-verification=vIUwZhHqcAiiHZW2nNaE21Lb0H1_FIEBHyYs6f3b0KA",
+ "MX": [
+ "SMTP.GOOGLE.COM"
+ ]
+ }
+}
diff --git a/domains/ahku.json b/domains/ahku.json
index 65de95f9c..5c10f18ad 100644
--- a/domains/ahku.json
+++ b/domains/ahku.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "pebna7d9",
- "email": "pebna7d9@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "pebna7d9",
+ "email": "pebna7d9@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/ahmad-muhajir.json b/domains/ahmad-muhajir.json
index 8de89ffec..74d39cdac 100644
--- a/domains/ahmad-muhajir.json
+++ b/domains/ahmad-muhajir.json
@@ -1,11 +1,11 @@
{
- "description": "My Portfolio",
- "repo": "https://github.com/amuhajirs/amuhajirs.github.io",
- "owner": {
- "username": "amuhajirs",
- "email": "jeremyjeferson71@gmail.com"
- },
- "record": {
- "CNAME": "amuhajirs.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Portfolio",
+ "repo": "https://github.com/amuhajirs/amuhajirs.github.io",
+ "owner": {
+ "username": "amuhajirs",
+ "email": "jeremyjeferson71@gmail.com"
+ },
+ "record": {
+ "CNAME": "amuhajirs.github.io"
+ }
+}
diff --git a/domains/ahmad.json b/domains/ahmad.json
new file mode 100644
index 000000000..eaaea8f56
--- /dev/null
+++ b/domains/ahmad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "azrelic",
+ "email": "ahmadking78654@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahmadazizportfolio.vercel.app"
+ }
+}
diff --git a/domains/ahmadeyamin.json b/domains/ahmadeyamin.json
index 2a7a13d93..b24d22523 100644
--- a/domains/ahmadeyamin.json
+++ b/domains/ahmadeyamin.json
@@ -1,11 +1,11 @@
{
- "description": "Eyamin Personal Website",
- "repo": "https://github.com/ahmadeyamin/ahmadeyamin.github.io",
- "owner": {
- "username": "ahmadeyamin",
- "email": "ahmadeyamin@gmail.com"
- },
- "record": {
- "CNAME": "ahmadeyamin.pages.dev"
- }
-}
\ No newline at end of file
+ "description": "Eyamin Personal Website",
+ "repo": "https://github.com/ahmadeyamin/ahmadeyamin.github.io",
+ "owner": {
+ "username": "ahmadeyamin",
+ "email": "ahmadeyamin@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahmadeyamin.pages.dev"
+ }
+}
diff --git a/domains/ahmed.json b/domains/ahmed.json
new file mode 100644
index 000000000..b963d5b52
--- /dev/null
+++ b/domains/ahmed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/ahmedashraf.json b/domains/ahmedashraf.json
index e85aba4f8..382661f1f 100644
--- a/domains/ahmedashraf.json
+++ b/domains/ahmedashraf.json
@@ -1,11 +1,11 @@
{
- "description": "My Portfolio",
- "repo": "https://github.com/AhmedrAshraf/ahmedrashraf",
- "owner": {
- "username": "ahmedrashraf",
- "email": "ahmedr.0331@gmail.com"
- },
- "record": {
- "CNAME": "ahmedrashraf.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Portfolio",
+ "repo": "https://github.com/AhmedrAshraf/ahmedrashraf",
+ "owner": {
+ "username": "ahmedrashraf",
+ "email": "ahmedr.0331@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahmedrashraf.github.io"
+ }
+}
diff --git a/domains/ahmedosama.json b/domains/ahmedosama.json
new file mode 100644
index 000000000..b963d5b52
--- /dev/null
+++ b/domains/ahmedosama.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/ahmedosamamath.json b/domains/ahmedosamamath.json
new file mode 100644
index 000000000..b963d5b52
--- /dev/null
+++ b/domains/ahmedosamamath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/ahmedtohamy.json b/domains/ahmedtohamy.json
index 730c79d01..44fc48511 100644
--- a/domains/ahmedtohamy.json
+++ b/domains/ahmedtohamy.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ahmedtohamy1",
- "email": "1ahmed.tohamy@gmail.com"
- },
- "record": {
- "CNAME": "ahmedtohamy1.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ahmedtohamy1",
+ "email": "1ahmed.tohamy@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahmedtohamy1.github.io"
+ }
+}
diff --git a/domains/ahmosys.json b/domains/ahmosys.json
index 5ebd0c278..6bdaaba2f 100644
--- a/domains/ahmosys.json
+++ b/domains/ahmosys.json
@@ -1,12 +1,12 @@
{
- "description": "Ahmosys's personal website",
- "repo": "https://github.com/ahmosys/ahmosys.github.io",
- "owner": {
- "username": "Ahmosys",
- "email": "ahmosyspro@protonmail.com",
- "twitter": "ahmosys"
- },
- "record": {
- "CNAME": "ahmosys.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ahmosys's personal website",
+ "repo": "https://github.com/ahmosys/ahmosys.github.io",
+ "owner": {
+ "username": "Ahmosys",
+ "email": "ahmosyspro@protonmail.com",
+ "twitter": "ahmosys"
+ },
+ "record": {
+ "CNAME": "ahmosys.github.io"
+ }
+}
diff --git a/domains/ahnaf.json b/domains/ahnaf.json
new file mode 100644
index 000000000..a0a217e0a
--- /dev/null
+++ b/domains/ahnaf.json
@@ -0,0 +1,10 @@
+{
+ "description": "For my personal portfolio website",
+ "owner": {
+ "username": "AhnafFarhanHossain",
+ "email": "ahnaffarhanhossain@gmail.com"
+ },
+ "record": {
+ "A": ["103.62.149.9"]
+ }
+}
diff --git a/domains/ahsanu.json b/domains/ahsanu.json
index 264ce7b47..a7d507a27 100644
--- a/domains/ahsanu.json
+++ b/domains/ahsanu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ahsanu123",
- "email": "caasperahsanuamala5@gmail.com"
- },
- "record": {
- "CNAME": "ahsanu123.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ahsanu123",
+ "email": "caasperahsanuamala5@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahsanu123.github.io"
+ }
+}
diff --git a/domains/ahsw.json b/domains/ahsw.json
index fc88b7280..cde17ec68 100644
--- a/domains/ahsw.json
+++ b/domains/ahsw.json
@@ -1,11 +1,10 @@
{
- "description": "Ahsw Personal Website",
- "repo": "https://github.com/Ahsw7",
- "owner": {
- "username": "Ahsw",
- "email": "jasjusjambu.segar@gmail.com"
- },
- "record": {
- "CNAME": "rd73mzgq78p59yq0.preview.edgeapp.net"
- }
-}
\ No newline at end of file
+ "description": "Ahsw Personal Website",
+ "owner": {
+ "username": "Ahsw",
+ "email": "jasjusjambu.segar@gmail.com"
+ },
+ "record": {
+ "CNAME": "rd73mzgq78p59yq0.preview.edgeapp.net"
+ }
+}
diff --git a/domains/ahuja-m.json b/domains/ahuja-m.json
index db3366e32..c89d72ea7 100644
--- a/domains/ahuja-m.json
+++ b/domains/ahuja-m.json
@@ -1,10 +1,10 @@
{
- "description": "This is a user",
- "repo": "https://github.com/ahuja-m/ahuja-m.github.io",
- "owner": {
- "username": "ahuja-m"
- },
- "record": {
- "CNAME": "ahuja-m.github.io"
- }
-}
\ No newline at end of file
+ "description": "This is a user",
+ "repo": "https://github.com/ahuja-m/ahuja-m.github.io",
+ "owner": {
+ "username": "ahuja-m"
+ },
+ "record": {
+ "CNAME": "ahuja-m.github.io"
+ }
+}
diff --git a/domains/ahyalfan.json b/domains/ahyalfan.json
index cf865afa1..7d8f20858 100644
--- a/domains/ahyalfan.json
+++ b/domains/ahyalfan.json
@@ -1,10 +1,10 @@
{
- "description": "this is for my personal website made.",
- "owner": {
- "username": "ahyalfan",
- "email": "alfandi0857@gmail.com"
- },
- "record": {
- "URL": "https://ahyalfan.my.id"
- }
-}
\ No newline at end of file
+ "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/ahysa.andgyk.json b/domains/ahysa.andgyk.json
index 05eea53d3..72a0fe1e2 100644
--- a/domains/ahysa.andgyk.json
+++ b/domains/ahysa.andgyk.json
@@ -1,11 +1,11 @@
{
- "description": "Ahysa Discord bot website",
- "repo": "https://github.com/andgyk/ahysa",
- "owner": {
- "username": "andgyk",
- "email": "an4g7k@gmail.com"
- },
- "record": {
- "CNAME": "ahysa.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ahysa Discord bot website",
+ "repo": "https://github.com/andgyk/ahysa",
+ "owner": {
+ "username": "andgyk",
+ "email": "an4g7k@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahysa.github.io"
+ }
+}
diff --git a/domains/ai-demo.json b/domains/ai-demo.json
index 712942b9e..abda22637 100644
--- a/domains/ai-demo.json
+++ b/domains/ai-demo.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "andrewstech",
- "email": "andrew@maintainers.is-a.dev",
- "discord": "598245488977903688"
- },
- "record": {
- "CNAME": "andrewstech.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "andrewstech",
+ "email": "andrew@maintainers.is-a.dev",
+ "discord": "598245488977903688"
+ },
+ "record": {
+ "CNAME": "andrewstech.github.io"
+ }
+}
diff --git a/domains/ai.json b/domains/ai.json
index 6e7278585..1f6312968 100644
--- a/domains/ai.json
+++ b/domains/ai.json
@@ -1,12 +1,9 @@
{
- "owner": {
- "username": "Bananalolok",
- "discord": "banana_lol_7678"
- },
- "record": {
- "NS": [
- "audrey.ns.cloudflare.com",
- "hank.ns.cloudflare.com"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Bananalolok",
+ "discord": "banana_lol_7678"
+ },
+ "record": {
+ "NS": ["audrey.ns.cloudflare.com", "hank.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/aichat.json b/domains/aichat.json
index 832cf96d5..ef8dc3532 100644
--- a/domains/aichat.json
+++ b/domains/aichat.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "TechnoFusionTech",
- "email": "technofusiontech@techie.com"
- },
- "record": {
- "CNAME": "technofusiontech.is-a.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "TechnoFusionTech",
+ "email": "technofusiontech@techie.com"
+ },
+ "record": {
+ "CNAME": "technofusiontech.is-a.dev"
+ }
+}
diff --git a/domains/aida.json b/domains/aida.json
index 40a54f6d2..cc459d361 100644
--- a/domains/aida.json
+++ b/domains/aida.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "thorerik",
- "discord": "107056552212447232",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.F6zhssd8zE-flkk300JMr63UJLCkeuPHAwqIH5cGnonDP518oKiR1OZYawVLnzKrIHNrGcZBPX09cCxiLg9sebHfP0TLthuGpM3PWEw6F0Zmbo3kvIHYWlmtnCJLhM5a4bxxwGJYS_Lb77-SzZkZrRsc__slqrpzZspu4R0SFjC6XSvfutYJLac00Wfp0yW4PZhgja9v-2W0DVW7a5fGUAKJT-E-JXfIORrmjHOCysJdxGfn468h6TDKxYDJbwjFffjNuY3jVHNK1s9Nouf7bya9bTvgtdQCoiaPO0OdlX4PIbeHKD01oLAOlKQjcPkUC2L9YLqN0rrwpHop3vHwBA.-rIc3UZYeyaMd64cOpSYbw.UridMk-3yNDqMa0VdqmjUKjS8rSmY2blxZDEv7DoMB6dd_Eb6yLFq1MYWujwTO93W6EatgvotWXAM9ZUPhYchWY1uPMQ99S_1P_Q4c6qR7Ch7yTSvKnU_qYsT4QiC-gO.BYZgAlo82oK0UJsCavGwSg"
- },
- "record": {
- "CNAME": "beorn-blog.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "thorerik",
+ "discord": "107056552212447232",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.F6zhssd8zE-flkk300JMr63UJLCkeuPHAwqIH5cGnonDP518oKiR1OZYawVLnzKrIHNrGcZBPX09cCxiLg9sebHfP0TLthuGpM3PWEw6F0Zmbo3kvIHYWlmtnCJLhM5a4bxxwGJYS_Lb77-SzZkZrRsc__slqrpzZspu4R0SFjC6XSvfutYJLac00Wfp0yW4PZhgja9v-2W0DVW7a5fGUAKJT-E-JXfIORrmjHOCysJdxGfn468h6TDKxYDJbwjFffjNuY3jVHNK1s9Nouf7bya9bTvgtdQCoiaPO0OdlX4PIbeHKD01oLAOlKQjcPkUC2L9YLqN0rrwpHop3vHwBA.-rIc3UZYeyaMd64cOpSYbw.UridMk-3yNDqMa0VdqmjUKjS8rSmY2blxZDEv7DoMB6dd_Eb6yLFq1MYWujwTO93W6EatgvotWXAM9ZUPhYchWY1uPMQ99S_1P_Q4c6qR7Ch7yTSvKnU_qYsT4QiC-gO.BYZgAlo82oK0UJsCavGwSg"
+ },
+ "record": {
+ "CNAME": "beorn-blog.pages.dev"
+ }
+}
diff --git a/domains/aidan.json b/domains/aidan.json
index 592d400c4..40049af0b 100644
--- a/domains/aidan.json
+++ b/domains/aidan.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "sangnd2x",
- "email": "sanguyen128@gmail.com"
- },
- "record": {
- "A": [
- "103.211.201.28"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "sangnd2x",
+ "email": "sanguyen128@gmail.com"
+ },
+ "record": {
+ "A": ["103.211.201.28"]
+ }
+}
diff --git a/domains/aiden.json b/domains/aiden.json
index 968da5cdf..cbb9b220a 100644
--- a/domains/aiden.json
+++ b/domains/aiden.json
@@ -1,11 +1,11 @@
{
- "description": "Redirect for my personal website",
- "repo": "https://github.com/ignSKRRRTT/register",
- "owner": {
- "username": "ignSKRRRTT",
- "email": "me@aiden.gg"
- },
- "record": {
- "URL": "https://aiden.gg"
- }
-}
\ No newline at end of file
+ "description": "Redirect for my personal website",
+ "repo": "https://github.com/ignSKRRRTT/register",
+ "owner": {
+ "username": "ignSKRRRTT",
+ "email": "me@aiden.gg"
+ },
+ "record": {
+ "URL": "https://aiden.gg"
+ }
+}
diff --git a/domains/aidhani.json b/domains/aidhani.json
index c6ec0dad3..421dac4f6 100644
--- a/domains/aidhani.json
+++ b/domains/aidhani.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AidhaniDev",
- "email": "aidhanidev@gmail.com"
- },
- "record": {
- "URL": "https://sites.google.com/view/aidhanidev/home"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AidhaniDev",
+ "email": "aidhanidev@gmail.com"
+ },
+ "record": {
+ "URL": "https://sites.google.com/view/aidhanidev/home"
+ }
+}
diff --git a/domains/aiko.json b/domains/aiko.json
index 2e8410755..a89817a76 100644
--- a/domains/aiko.json
+++ b/domains/aiko.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AikoNee",
- "email": "shenzie1131@gmail.com"
- },
- "record": {
- "CNAME": "aiko.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AikoNee",
+ "email": "shenzie1131@gmail.com"
+ },
+ "record": {
+ "CNAME": "aiko.pages.dev"
+ }
+}
diff --git a/domains/ain3abdo.json b/domains/ain3abdo.json
index b12bad28b..246306030 100644
--- a/domains/ain3abdo.json
+++ b/domains/ain3abdo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ainabdelkarim",
- "email": "abdelkarimain0@gmail.com"
- },
- "record": {
- "CNAME": "ainabdelkarim.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ainabdelkarim",
+ "email": "abdelkarimain0@gmail.com"
+ },
+ "record": {
+ "CNAME": "ainabdelkarim.github.io"
+ }
+}
diff --git a/domains/air.json b/domains/air.json
index 40a9435ca..dc7a76be0 100644
--- a/domains/air.json
+++ b/domains/air.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Caiden-P",
- "email": "iididhejejdj@gmail.com",
- "discord": "850820069310201896"
- },
- "record": {
- "CNAME": "air-busl.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Caiden-P",
+ "email": "iididhejejdj@gmail.com",
+ "discord": "850820069310201896"
+ },
+ "record": {
+ "CNAME": "air-busl.onrender.com"
+ }
+}
diff --git a/domains/aish.json b/domains/aish.json
index 1bd3e7603..4f1926b86 100644
--- a/domains/aish.json
+++ b/domains/aish.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "code-hunt-in",
- "email": "aishwary.pandore@somaiya.edu"
- },
- "record": {
- "CNAME": "code-hunt-in.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "code-hunt-in",
+ "email": "aishwary.pandore@somaiya.edu"
+ },
+ "record": {
+ "CNAME": "code-hunt-in.github.io"
+ }
+}
diff --git a/domains/aishik999.json b/domains/aishik999.json
new file mode 100644
index 000000000..175c6af92
--- /dev/null
+++ b/domains/aishik999.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aishik999",
+ "email": "aishikm2002@gmail.com"
+ },
+ "record": {
+ "CNAME": "aishik999.vercel.app"
+ }
+}
diff --git a/domains/aitji.json b/domains/aitji.json
new file mode 100644
index 000000000..7d7b38413
--- /dev/null
+++ b/domains/aitji.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aitji",
+ "email": "ait.suriya@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/aixiaoji.json b/domains/aixiaoji.json
index fc5a69a4b..dbeecaec5 100644
--- a/domains/aixiaoji.json
+++ b/domains/aixiaoji.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "HelloAIXIAOJI",
- "email": "aixiaoji2020@163.com"
- },
- "record": {
- "CNAME": "ip.hk.dhost.devskyr.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "HelloAIXIAOJI",
+ "email": "aixiaoji2020@163.com"
+ },
+ "record": {
+ "CNAME": "ip.hk.dhost.devskyr.com"
+ }
+}
diff --git a/domains/aizuu.json b/domains/aizuu.json
index 27bb62a1b..a51faf945 100644
--- a/domains/aizuu.json
+++ b/domains/aizuu.json
@@ -1,11 +1,10 @@
{
- "description": "Aizuu's Personal Website",
- "repo": "https://github.com/VeguiIzumi",
- "owner": {
- "username": "Aizuu",
- "email": "baby@alvindaldi.my.id"
- },
- "record": {
- "URL": "https://aizuu.my.id"
- }
-}
\ No newline at end of file
+ "description": "Aizuu's Personal Website",
+ "owner": {
+ "username": "Aizuu",
+ "email": "baby@alvindaldi.my.id"
+ },
+ "record": {
+ "URL": "https://aizuu.my.id"
+ }
+}
diff --git a/domains/aj.json b/domains/aj.json
index d1271c286..486c3c722 100644
--- a/domains/aj.json
+++ b/domains/aj.json
@@ -1,14 +1,12 @@
{
- "owner": {
- "username": "alvinsjoy",
- "discord": "825382504353234954"
- },
- "record": {
- "A": [
- "76.76.21.21"
- ],
- "TXT": [
- "google-site-verification=CT0XYnjNC4mKSCOf5Bg0MhiAI1iA5fE2j0cQRJ6PNNo"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "A": ["76.76.21.21"],
+ "TXT": [
+ "google-site-verification=CT0XYnjNC4mKSCOf5Bg0MhiAI1iA5fE2j0cQRJ6PNNo"
+ ]
+ }
+}
diff --git a/domains/aj7.json b/domains/aj7.json
index 4b9ad8b86..caa135dfc 100644
--- a/domains/aj7.json
+++ b/domains/aj7.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Aj-Seven",
- "discord": "1001724019764105307",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PrSBRDaJlKvzZqQ36RQuk7LNoUgHNzidvrUf1soAaR-omfIi3O45AhrScQhU9kLyAzrXUVomzObZ1t9PEmdkIEkRB2ixGfUGNw2QXoLGE_YD7bXSuiQ37FI3wlpQnSbhwEEInlrN1m4k7B4q-NieWDVy6TUUvjwJRHB3PoX_v2sBeyHAq8z0JPgKxtqZa87tRl5HOV-l8-3oUdVWBALzy29V67leds49-JiZUhSlBtI8i9ffL9vsSVJd_ZDBtCivc69jraLmeqcUaeRs6gBCf6PCEKedFL0DFESQJs20Q3NycNBM-lDbTnRAELwIH_qTR-Kp-1mlGRZRi86negfShg.LsD0K6KH_2ix58TY5XVo7A.XVuT8kmSk4-Et5is2YvbWkV2j1BmeJmP_hsXPIro3M1eYZpxSGdD6UEeTkPVA1Y5_jap3XmImFi5cytqLn0v5eWiZqFDdB4_bbsL1eDqzJc.28Rc2WPMDexZtJVxuECDqw"
- },
- "record": {
- "CNAME": "ajseven.eu.org"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aj-Seven",
+ "discord": "1001724019764105307",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PrSBRDaJlKvzZqQ36RQuk7LNoUgHNzidvrUf1soAaR-omfIi3O45AhrScQhU9kLyAzrXUVomzObZ1t9PEmdkIEkRB2ixGfUGNw2QXoLGE_YD7bXSuiQ37FI3wlpQnSbhwEEInlrN1m4k7B4q-NieWDVy6TUUvjwJRHB3PoX_v2sBeyHAq8z0JPgKxtqZa87tRl5HOV-l8-3oUdVWBALzy29V67leds49-JiZUhSlBtI8i9ffL9vsSVJd_ZDBtCivc69jraLmeqcUaeRs6gBCf6PCEKedFL0DFESQJs20Q3NycNBM-lDbTnRAELwIH_qTR-Kp-1mlGRZRi86negfShg.LsD0K6KH_2ix58TY5XVo7A.XVuT8kmSk4-Et5is2YvbWkV2j1BmeJmP_hsXPIro3M1eYZpxSGdD6UEeTkPVA1Y5_jap3XmImFi5cytqLn0v5eWiZqFDdB4_bbsL1eDqzJc.28Rc2WPMDexZtJVxuECDqw"
+ },
+ "record": {
+ "CNAME": "ajseven.eu.org"
+ }
+}
diff --git a/domains/ajay-charotariya.json b/domains/ajay-charotariya.json
index 2b1b08729..790b15b2e 100644
--- a/domains/ajay-charotariya.json
+++ b/domains/ajay-charotariya.json
@@ -1,10 +1,10 @@
{
- "description": "Ajay charotariya.",
- "repo": "https://github.com/ajay-charotariya/ajay-charotariya.github.io",
- "owner": {
- "username": "ajay-charotariya"
- },
- "record": {
- "CNAME": "ajay-charotariya.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ajay charotariya.",
+ "repo": "https://github.com/ajay-charotariya/ajay-charotariya.github.io",
+ "owner": {
+ "username": "ajay-charotariya"
+ },
+ "record": {
+ "CNAME": "ajay-charotariya.github.io"
+ }
+}
diff --git a/domains/ajay.json b/domains/ajay.json
index 37b171b7f..32b4b1176 100644
--- a/domains/ajay.json
+++ b/domains/ajay.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Aj-Cdr",
- "email": "ajaysathishpreetha2.0@gmail.com"
- },
- "record": {
- "URL": "https://ajay.framer.ai/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aj-Cdr",
+ "email": "ajaysathishpreetha2.0@gmail.com"
+ },
+ "record": {
+ "URL": "https://ajay.framer.ai/"
+ }
+}
diff --git a/domains/ajayanto.json b/domains/ajayanto.json
index 925bcb551..c64961cbc 100644
--- a/domains/ajayanto.json
+++ b/domains/ajayanto.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AjayAntoIsDev",
- "email": "ajayantoisdev@gmail.com"
- },
- "record": {
- "CNAME": "ajayanto.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AjayAntoIsDev",
+ "email": "ajayantoisdev@gmail.com"
+ },
+ "record": {
+ "CNAME": "ajayanto.pages.dev"
+ }
+}
diff --git a/domains/ajayj.json b/domains/ajayj.json
new file mode 100644
index 000000000..a6c769dc1
--- /dev/null
+++ b/domains/ajayj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AJAY260505",
+ "email": "ajay260505@gmail.com"
+ },
+ "record": {
+ "CNAME": "ajayjaisankar.netlify.app"
+ }
+}
diff --git a/domains/ajaykrshna.json b/domains/ajaykrshna.json
index 41d834eec..aa08adbd6 100644
--- a/domains/ajaykrshna.json
+++ b/domains/ajaykrshna.json
@@ -1,11 +1,11 @@
{
- "description": "For personal use",
- "repo": "https://github.com/ajaykrshna/ajaykrshna.github.io",
- "owner": {
- "username": "ajaykrshna",
- "email": "ajaykfan@gmail.com"
- },
- "record": {
- "CNAME": "ajaykrshna.github.io"
- }
-}
\ No newline at end of file
+ "description": "For personal use",
+ "repo": "https://github.com/ajaykrshna/ajaykrshna.github.io",
+ "owner": {
+ "username": "ajaykrshna",
+ "email": "ajaykfan@gmail.com"
+ },
+ "record": {
+ "CNAME": "ajaykrshna.github.io"
+ }
+}
diff --git a/domains/ajays.json b/domains/ajays.json
index f0af51f0c..fc9561518 100644
--- a/domains/ajays.json
+++ b/domains/ajays.json
@@ -1,11 +1,11 @@
{
- "description": "want to use it for hosting my portfolio site",
- "repo": "https://github.com/Dev-Ajay-sahani/Ajay_site",
- "owner": {
- "username": "Dev-Ajay-sahani",
- "email": "ajays.dev.contact@gmail.com"
- },
- "record": {
- "CNAME": "dev-ajay-sahani.github.io"
- }
-}
\ No newline at end of file
+ "description": "want to use it for hosting my portfolio site",
+ "repo": "https://github.com/Dev-Ajay-sahani/Ajay_site",
+ "owner": {
+ "username": "Dev-Ajay-sahani",
+ "email": "ajays.dev.contact@gmail.com"
+ },
+ "record": {
+ "CNAME": "dev-ajay-sahani.github.io"
+ }
+}
diff --git a/domains/ajaysathvik.json b/domains/ajaysathvik.json
new file mode 100644
index 000000000..d6948d1bb
--- /dev/null
+++ b/domains/ajaysathvik.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ajaysathvik",
+ "email": "ajaysathviksu@gmail.com"
+ },
+ "record": {
+ "CNAME": "ajaysathvik.vercel.app"
+ }
+}
diff --git a/domains/ajie.json b/domains/ajie.json
index e624ef07d..f0b5e92c5 100644
--- a/domains/ajie.json
+++ b/domains/ajie.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AjieDev",
- "email": "ajiedev@ajieblogs.eu.org"
- },
- "record": {
- "CNAME": "ajiedev.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AjieDev",
+ "email": "ajiedev@ajieblogs.eu.org"
+ },
+ "record": {
+ "CNAME": "ajiedev.pages.dev"
+ }
+}
diff --git a/domains/ajit-thakor.json b/domains/ajit-thakor.json
index 9cbaa5ea8..366303fd1 100644
--- a/domains/ajit-thakor.json
+++ b/domains/ajit-thakor.json
@@ -1,10 +1,10 @@
{
- "description": "Ajit Portfolio.",
- "repo": "https://github.com/ajit-thakor/ajit-thakor.github.io",
- "owner": {
- "username": "ajit-thakor"
- },
- "record": {
- "CNAME": "ajit-thakor.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ajit Portfolio.",
+ "repo": "https://github.com/ajit-thakor/ajit-thakor.github.io",
+ "owner": {
+ "username": "ajit-thakor"
+ },
+ "record": {
+ "CNAME": "ajit-thakor.github.io"
+ }
+}
diff --git a/domains/ajt-lkmn.json b/domains/ajt-lkmn.json
index 4e76a67be..8ca65f40c 100644
--- a/domains/ajt-lkmn.json
+++ b/domains/ajt-lkmn.json
@@ -1,11 +1,11 @@
{
- "description": "Documentation website for is-a.dev",
- "repo": "https://github.com/ajanthaa-lakkshmanan/ajanthaa-lakkshmanan.github.io",
- "owner": {
- "username": "ajanthaa-lakkshmanan",
- "email": "ajanthal@srmist.edu.in"
- },
- "record": {
- "CNAME": "ajanthaa-lakkshmanan.github.io"
- }
-}
\ No newline at end of file
+ "description": "Documentation website for is-a.dev",
+ "repo": "https://github.com/ajanthaa-lakkshmanan/ajanthaa-lakkshmanan.github.io",
+ "owner": {
+ "username": "ajanthaa-lakkshmanan",
+ "email": "ajanthal@srmist.edu.in"
+ },
+ "record": {
+ "CNAME": "ajanthaa-lakkshmanan.github.io"
+ }
+}
diff --git a/domains/ajtabs.json b/domains/ajtabs.json
index 014226d08..b6c25a2f7 100644
--- a/domains/ajtabs.json
+++ b/domains/ajtabs.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ajtabjs",
- "email": "oro10jua@gmail.com"
- },
- "record": {
- "CNAME": "aj-swag-portfolio.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ajtabjs",
+ "email": "oro10jua@gmail.com"
+ },
+ "record": {
+ "CNAME": "aj-swag-portfolio.pages.dev"
+ }
+}
diff --git a/domains/ak-dev.json b/domains/ak-dev.json
index 8b8eea686..a25661d66 100644
--- a/domains/ak-dev.json
+++ b/domains/ak-dev.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "LRxDarkDevil",
- "email": "tahaadnanawan@gmail.com"
- },
- "record": {
- "CNAME": "ak-dev.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "LRxDarkDevil",
+ "email": "tahaadnanawan@gmail.com"
+ },
+ "record": {
+ "CNAME": "ak-dev.github.io"
+ }
+}
diff --git a/domains/ak-profile.json b/domains/ak-profile.json
new file mode 100644
index 000000000..3734127ed
--- /dev/null
+++ b/domains/ak-profile.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Akash0816",
+ "email": "akashoffical321@gmail.com"
+ },
+ "record": {
+ "CNAME": "akash0816.github.io"
+ }
+}
diff --git a/domains/ak.json b/domains/ak.json
index c3a78b88b..63cf7a230 100644
--- a/domains/ak.json
+++ b/domains/ak.json
@@ -1,12 +1,11 @@
{
- "description": "AK's Dev Website",
- "repo": "https://github.com/AKGaming0001",
- "owner": {
- "username": "AKGaming0001",
- "twitter": "NotAKGaming",
- "discord": "AKGaming#7664"
- },
- "record": {
- "CNAME": "akgaming0001.github.io"
- }
-}
\ No newline at end of file
+ "description": "AK's Dev Website",
+ "owner": {
+ "username": "AKGaming0001",
+ "twitter": "NotAKGaming",
+ "discord": "AKGaming#7664"
+ },
+ "record": {
+ "CNAME": "akgaming0001.github.io"
+ }
+}
diff --git a/domains/ak47.json b/domains/ak47.json
index f995c0254..53c17e34b 100644
--- a/domains/ak47.json
+++ b/domains/ak47.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Bio",
- "repo": "https://github.com/is-a-dev/docs",
- "owner": {
- "username": "octyn-yt",
- "email": "simplelogin-newsletter.idealize471@simplelogin.com"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
\ No newline at end of file
+ "description": "Personal Bio",
+ "repo": "https://github.com/is-a-dev/docs",
+ "owner": {
+ "username": "octyn-yt",
+ "email": "simplelogin-newsletter.idealize471@simplelogin.com"
+ },
+ "record": {
+ "CNAME": "edge.redirect.pizza"
+ }
+}
diff --git a/domains/akai.json b/domains/akai.json
index db85ad00e..464021e18 100644
--- a/domains/akai.json
+++ b/domains/akai.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AmazingAkai",
- "discord": "Akai#8199"
- },
- "record": {
- "CNAME": "akai.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AmazingAkai",
+ "discord": "Akai#8199"
+ },
+ "record": {
+ "CNAME": "akai.onrender.com"
+ }
+}
diff --git a/domains/akanksha.json b/domains/akanksha.json
new file mode 100644
index 000000000..f9222f39f
--- /dev/null
+++ b/domains/akanksha.json
@@ -0,0 +1,11 @@
+{
+ "description": "Akanksha' Welcome to my portfolio",
+ "repo": "https://github.com/AkankshaMishra2/Akanksha-Folio",
+ "owner": {
+ "username": "AkankshaMishra2",
+ "email": "akankshamishra20042@gmail.com"
+ },
+ "record": {
+ "CNAME": "akankshamishra.vercel.app"
+ }
+}
diff --git a/domains/akash.json b/domains/akash.json
index 5c2ac06d7..d6c799907 100644
--- a/domains/akash.json
+++ b/domains/akash.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "CruxCoder7",
- "email": "akashrangesh07@gmail.com"
- },
- "record": {
- "CNAME": "cruxcoder7.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "CruxCoder7",
+ "email": "akashrangesh07@gmail.com"
+ },
+ "record": {
+ "CNAME": "cruxcoder7.github.io"
+ }
+}
diff --git a/domains/akashj.json b/domains/akashj.json
new file mode 100644
index 000000000..1153fa421
--- /dev/null
+++ b/domains/akashj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "akash-janapati",
+ "email": "akash2009janapati@gmail.com"
+ },
+ "record": {
+ "CNAME": "akash-janapati.github.io"
+ }
+}
diff --git a/domains/akashkumar.json b/domains/akashkumar.json
new file mode 100644
index 000000000..f5ce94745
--- /dev/null
+++ b/domains/akashkumar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "akash-kumar-dev",
+ "email": "akashkumar.dev00@gmail.com"
+ },
+ "record": {
+ "CNAME": "akashkumar-dev.vercel.app"
+ }
+}
diff --git a/domains/akashr.json b/domains/akashr.json
index 01a7e1c65..985641834 100644
--- a/domains/akashr.json
+++ b/domains/akashr.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "akash2600707",
- "email": "akashramesh2607@gmail.com"
- },
- "record": {
- "CNAME": "akashr-portfolio.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "akash2600707",
+ "email": "akashramesh2607@gmail.com"
+ },
+ "record": {
+ "CNAME": "akashr-portfolio.onrender.com"
+ }
+}
diff --git a/domains/akatsuki.json b/domains/akatsuki.json
index 03fc65c37..e996dfee6 100644
--- a/domains/akatsuki.json
+++ b/domains/akatsuki.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Miguel-altcell",
- "email": "wilsonmigueljalla@gmail.com",
- "discord": "1223721772051075193"
- },
- "record": {
- "CNAME": "akatsuki-crew.rf.gd"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Miguel-altcell",
+ "email": "wilsonmigueljalla@gmail.com",
+ "discord": "1223721772051075193"
+ },
+ "record": {
+ "CNAME": "akatsuki-crew.rf.gd"
+ }
+}
diff --git a/domains/akay.json b/domains/akay.json
index 7ad6f1248..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"
- ]
- }
-}
\ No newline at end of file
+ "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/akbar.json b/domains/akbar.json
index 8d472ba17..b4c5d32ea 100644
--- a/domains/akbar.json
+++ b/domains/akbar.json
@@ -1,10 +1,10 @@
{
- "description": "Portfolio of M. Akbar Perdana",
- "owner": {
- "username": "akbarrdev",
- "email": "teamnevolution@gmail.com"
- },
- "record": {
- "CNAME": "portfolio-7to.pages.dev"
- }
-}
\ No newline at end of file
+ "description": "Portfolio of M. Akbar Perdana",
+ "owner": {
+ "username": "akbarrdev",
+ "email": "teamnevolution@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-7to.pages.dev"
+ }
+}
diff --git a/domains/akcord.json b/domains/akcord.json
index f46899c14..da8d0c122 100644
--- a/domains/akcord.json
+++ b/domains/akcord.json
@@ -1,14 +1,12 @@
{
- "description": "AKCord's Portfolio",
- "repo": "https://github.com/AKCord/akcord.github.io",
- "owner": {
- "username": "AKCord",
- "email": "shrestha.aeniv@gmail.com",
- "discord": "AKCord"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ]
- }
-}
\ No newline at end of file
+ "description": "AKCord's Portfolio",
+ "repo": "https://github.com/AKCord/akcord.github.io",
+ "owner": {
+ "username": "AKCord",
+ "email": "shrestha.aeniv@gmail.com",
+ "discord": "AKCord"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/akhilesh.json b/domains/akhilesh.json
index d1e6d9e37..94d164882 100644
--- a/domains/akhilesh.json
+++ b/domains/akhilesh.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Portfolio",
- "repo": "https://github.com/ProCoderAkhil/ProCoderAkhil.github.io",
- "owner": {
- "username": "ProCoderAkhil",
- "email": "AkhilRamachandran@gmail.com"
- },
- "record": {
- "CNAME": "procoderakhil.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/ProCoderAkhil/ProCoderAkhil.github.io",
+ "owner": {
+ "username": "ProCoderAkhil",
+ "email": "AkhilRamachandran@gmail.com"
+ },
+ "record": {
+ "CNAME": "procoderakhil.github.io"
+ }
+}
diff --git a/domains/akib.json b/domains/akib.json
new file mode 100644
index 000000000..3e22ecc30
--- /dev/null
+++ b/domains/akib.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akibsaleh",
+ "email": "akibsaleh.dev@gmail.com",
+ "discord": "akibsalehzihan"
+ },
+ "record": {
+ "CNAME": "akibsaleh.vercel.app"
+ }
+}
diff --git a/domains/akiitr.json b/domains/akiitr.json
new file mode 100644
index 000000000..80371efbc
--- /dev/null
+++ b/domains/akiitr.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akiitr",
+ "twitter": "akiitr",
+ "discord": "akiitr"
+ },
+ "record": {
+ "CNAME": "akiitr.github.io"
+ }
+}
diff --git a/domains/akira.json b/domains/akira.json
index 54b693c00..4b79b5a94 100644
--- a/domains/akira.json
+++ b/domains/akira.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "description": "Akira's Dev Webpage",
+ "repo": "https://github.com/cakira/cakira.github.io.git",
+ "owner": {
+ "username": "cakira",
+ "email": "cleber.akira@gmail.com"
+ },
+ "record": {
+ "CNAME": "cakira.github.io"
+ }
+}
diff --git a/domains/akk1to.json b/domains/akk1to.json
index ffb64d294..a2a8e777b 100644
--- a/domains/akk1to.json
+++ b/domains/akk1to.json
@@ -1,21 +1,19 @@
{
- "description": "This website is my personal portfollo XD (let it on rq)",
- "repo": "https://github.com/akk1to/akk1to.github.io",
- "owner": {
- "username": "akk1to",
- "email": "akk1to.dev@gmail.com",
- "discord": "727497287777124414"
- },
- "record": {
- "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"
- }
-}
\ No newline at end of file
+ "description": "This website is my personal portfollo XD (let it on rq)",
+ "repo": "https://github.com/akk1to/akk1to.github.io",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/akki.json b/domains/akki.json
index 4b4fca2c8..658a98354 100644
--- a/domains/akki.json
+++ b/domains/akki.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "akshtt-dev",
- "email": "maillegendop@gmail.com",
- "discord": "1056531806763102218"
- },
- "record": {
- "A": [
- "69.197.135.203"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "akshtt-dev",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+ "record": {
+ "A": ["69.197.135.203"]
+ }
+}
diff --git a/domains/aknb.json b/domains/aknb.json
index a3e61a92b..24ab31650 100644
--- a/domains/aknb.json
+++ b/domains/aknb.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Abdulazizkhan-K-N-B",
- "email": "abdulazizkhan.k.n.b@gmail.com"
- },
- "record": {
- "CNAME": "abdulazizkhan-k-n-b.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Abdulazizkhan-K-N-B",
+ "email": "abdulazizkhan.k.n.b@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdulazizkhan-k-n-b.github.io"
+ }
+}
diff --git a/domains/akorn.json b/domains/akorn.json
index 51d6cb4c1..39114c383 100644
--- a/domains/akorn.json
+++ b/domains/akorn.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "Akronical"
- },
- "record": {
- "CNAME": "akronical.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Akronical"
+ },
+ "record": {
+ "CNAME": "akronical.github.io"
+ }
+}
diff --git a/domains/akpi.json b/domains/akpi.json
index a05add36c..1da856509 100644
--- a/domains/akpi.json
+++ b/domains/akpi.json
@@ -1,21 +1,11 @@
{
- "owner": {
- "username": "akpi816218",
- "discord": "equus_quagga"
- },
- "record": {
- "A": [
- "185.199.110.153",
- "185.199.108.153",
- "185.199.111.153",
- "185.199.109.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": [
- "v=spf1 include:spf.improvmx.com ~all"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ackle-dev",
+ "discord": "equus_quagga"
+ },
+ "record": {
+ "URL": "https://ackle.vercel.app/",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/akprofile.json b/domains/akprofile.json
new file mode 100644
index 000000000..04b0255a3
--- /dev/null
+++ b/domains/akprofile.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Akash0816",
+ "email": "akashoffical321@gmail.com"
+ },
+ "record": {
+ "CNAME": "Akash0816.github.io"
+ }
+}
diff --git a/domains/akrm.json b/domains/akrm.json
index 45abe9314..0736eb29b 100644
--- a/domains/akrm.json
+++ b/domains/akrm.json
@@ -1,15 +1,12 @@
{
+ "description": "my portfolio",
+ "repo": "https://github.com/KemoXtech/my-portfolio",
"owner": {
"username": "KemoXtech",
"email": "aljmalrealstate@gmail.com",
- "discord": "868339557593137212"
+ "discord": "868339557593137212"
},
"record": {
- "A": [
- "64.62.151.106"
- ],
- "AAAA": [
- "2001:470:1:1ee::2009"
- ]
+ "CNAME": "KemoXtech.github.io"
}
-}
\ No newline at end of file
+}
diff --git a/domains/akshat.json b/domains/akshat.json
index ad6c14110..3570057b6 100644
--- a/domains/akshat.json
+++ b/domains/akshat.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "akshatgurnani",
- "email": "Akshatgurnani@outlook.com"
- },
- "record": {
- "URL": "https://www.github.com/akshatgurnani"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "akshatgurnani",
+ "email": "Akshatgurnani@outlook.com"
+ },
+ "record": {
+ "URL": "https://www.github.com/akshatgurnani"
+ }
+}
diff --git a/domains/akshath.json b/domains/akshath.json
index df3a1c2ec..28ea47ef5 100644
--- a/domains/akshath.json
+++ b/domains/akshath.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "d7dx",
- "email": "d7dx@proton.me"
- },
- "record": {
- "CNAME": "d7dx.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "d7dx",
+ "email": "d7dx@proton.me"
+ },
+ "record": {
+ "CNAME": "d7dx.github.io"
+ }
+}
diff --git a/domains/akshatjain.json b/domains/akshatjain.json
index fdc8e0725..4d090e345 100644
--- a/domains/akshatjain.json
+++ b/domains/akshatjain.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "akshatjain",
- "email": "akshatjain1567@gmail.com"
- },
- "record": {
- "URL": "https://www.github.com/akshatjaiin"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "akshatjain",
+ "email": "akshatjain1567@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.github.com/akshatjaiin"
+ }
+}
diff --git a/domains/akshay-n.json b/domains/akshay-n.json
index 437653a28..a255c39e3 100644
--- a/domains/akshay-n.json
+++ b/domains/akshay-n.json
@@ -1,15 +1,12 @@
{
- "description": "Akshay's email alias",
- "repo": "https://github.com/phenax/phenax.github.io",
- "owner": {
- "username": "phenax",
- "email": "phenax5@gmail.com"
- },
- "record": {
- "TXT": "v=spf1 include:spf.improvmx.com ~all",
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ]
- }
-}
\ No newline at end of file
+ "description": "Akshay's email alias",
+ "repo": "https://github.com/phenax/phenax.github.io",
+ "owner": {
+ "username": "phenax",
+ "email": "phenax5@gmail.com"
+ },
+ "record": {
+ "TXT": "v=spf1 include:spf.improvmx.com ~all",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
+ }
+}
diff --git a/domains/akshay.json b/domains/akshay.json
index 581acf53e..741acd48d 100644
--- a/domains/akshay.json
+++ b/domains/akshay.json
@@ -1,11 +1,11 @@
{
- "description": "Akshay's portfolio website and blog",
- "repo": "https://github.com/phenax/ediblemonad.dev",
- "owner": {
- "username": "phenax",
- "email": "phenax5@gmail.com"
- },
- "record": {
- "URL": "https://ediblemonad.dev"
- }
-}
\ No newline at end of file
+ "description": "Akshay's portfolio website and blog",
+ "repo": "https://github.com/phenax/ediblemonad.dev",
+ "owner": {
+ "username": "phenax",
+ "email": "phenax5@gmail.com"
+ },
+ "record": {
+ "URL": "https://ediblemonad.dev"
+ }
+}
diff --git a/domains/akshayan.json b/domains/akshayan.json
index 2ff42dd3d..e487935fc 100644
--- a/domains/akshayan.json
+++ b/domains/akshayan.json
@@ -1,11 +1,11 @@
{
- "description": "Akshayan's Profile",
- "repo": "https://github.com/akshayans/akshayans.github.io",
- "owner": {
- "username": "akshayans",
- "email": "akshayan@afhstudio.ml"
- },
- "record": {
- "CNAME": "akshayans.github.io"
- }
-}
\ No newline at end of file
+ "description": "Akshayan's Profile",
+ "repo": "https://github.com/akshayans/akshayans.github.io",
+ "owner": {
+ "username": "akshayans",
+ "email": "akshayan@afhstudio.ml"
+ },
+ "record": {
+ "CNAME": "akshayans.github.io"
+ }
+}
diff --git a/domains/akshayks.json b/domains/akshayks.json
index cfa38f753..ac5fabd1c 100644
--- a/domains/akshayks.json
+++ b/domains/akshayks.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "akshaynox",
- "email": "mail.akshayks@gmail.com"
- },
- "record": {
- "URL": "https://akshayks.vercel.app/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "akshaynox",
+ "email": "mail.akshayks@gmail.com"
+ },
+ "record": {
+ "URL": "https://akshayks.vercel.app/"
+ }
+}
diff --git a/domains/akshit-jain.json b/domains/akshit-jain.json
new file mode 100644
index 000000000..5071b77f2
--- /dev/null
+++ b/domains/akshit-jain.json
@@ -0,0 +1,10 @@
+{
+ "description": "Akshit's Personal Website",
+ "owner": {
+ "username": "akshitjain16",
+ "email": "gang.akshitjain@gmail.com"
+ },
+ "record": {
+ "URL": "https://akshit-jain.netlify.app/"
+ }
+}
diff --git a/domains/akshit.json b/domains/akshit.json
new file mode 100644
index 000000000..f85325a4c
--- /dev/null
+++ b/domains/akshit.json
@@ -0,0 +1,11 @@
+{
+ "description": "Akshit's Personal Website",
+ "repo": "github.com/4kshi7/akshit2k",
+ "owner": {
+ "username": "4kshi7",
+ "email": "akshitgaur2003@gmail.com"
+ },
+ "record": {
+ "CNAME": "akshit2k.vercel.app"
+ }
+}
diff --git a/domains/akshsingla.json b/domains/akshsingla.json
index 3b031a289..7306ad99e 100644
--- a/domains/akshsingla.json
+++ b/domains/akshsingla.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "Aktindo",
- "email": "akshit.singla.dps@gmail.com"
- },
- "description": "Personal website.",
- "repo": "https://github.com/Aktindo/personal-website",
- "record": {
- "URL": "https://akshsingla.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aktindo",
+ "email": "akshit.singla.dps@gmail.com"
+ },
+ "description": "Personal website.",
+ "repo": "https://github.com/Aktindo/personal-website",
+ "record": {
+ "URL": "https://akshsingla.vercel.app"
+ }
+}
diff --git a/domains/akshtt.json b/domains/akshtt.json
index 4329e896c..2f39cc293 100644
--- a/domains/akshtt.json
+++ b/domains/akshtt.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "akshtt-dev",
- "email": "maillegendop@gmail.com",
- "discord": "1056531806763102218"
- },
- "record": {
- "A": [
- "69.197.135.202"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "akshtt-dev",
+ "email": "maillegendop@gmail.com",
+ "discord": "1056531806763102218"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/akshya.json b/domains/akshya.json
index 03a6be20b..330661566 100644
--- a/domains/akshya.json
+++ b/domains/akshya.json
@@ -1,11 +1,11 @@
{
- "description": "Portfolio Website",
- "repo": "https://github.com/LowkeyGUY4444/LowkeyGUY4444.github.io",
- "owner": {
- "username": "LowkeyGUY4444",
- "email": "akshyathapa23@gmail.com"
- },
- "record": {
- "CNAME": "lowkeyguy4444.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio Website",
+ "repo": "https://github.com/LowkeyGUY4444/LowkeyGUY4444.github.io",
+ "owner": {
+ "username": "LowkeyGUY4444",
+ "email": "akshyathapa23@gmail.com"
+ },
+ "record": {
+ "CNAME": "lowkeyguy4444.github.io"
+ }
+}
diff --git a/domains/akta-chavda.json b/domains/akta-chavda.json
index b5d0d508d..f60353aca 100644
--- a/domains/akta-chavda.json
+++ b/domains/akta-chavda.json
@@ -1,10 +1,10 @@
{
- "description": "ankita chavda.",
- "repo": "https://github.com/akta-chavda/akta-chavda.github.io",
- "owner": {
- "username": "akta-chavda"
- },
- "record": {
- "CNAME": "akta-chavda.github.io"
- }
-}
\ No newline at end of file
+ "description": "ankita chavda.",
+ "repo": "https://github.com/akta-chavda/akta-chavda.github.io",
+ "owner": {
+ "username": "akta-chavda"
+ },
+ "record": {
+ "CNAME": "akta-chavda.github.io"
+ }
+}
diff --git a/domains/akxd.json b/domains/akxd.json
index 14f2caba3..d74a30340 100644
--- a/domains/akxd.json
+++ b/domains/akxd.json
@@ -1,11 +1,10 @@
{
- "description": "Aditya's Portfolio",
- "repo": "https://github.com/adityakumarxd",
- "owner": {
- "username": "adityakumarxd",
- "discord": "akxd"
- },
- "record": {
- "CNAME": "adityakumarxd.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aditya's Portfolio",
+ "owner": {
+ "username": "adityakumarxd",
+ "discord": "akxd"
+ },
+ "record": {
+ "CNAME": "adityakumarxd.github.io"
+ }
+}
diff --git a/domains/akzana.json b/domains/akzana.json
index 5f5e63cc7..d8fefc099 100644
--- a/domains/akzana.json
+++ b/domains/akzana.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "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-nahianhasan.json b/domains/al-nahianhasan.json
new file mode 100644
index 000000000..4d64587c7
--- /dev/null
+++ b/domains/al-nahianhasan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nahianhasan161",
+ "email": "nahianhasan161@gmail.com"
+ },
+ "record": {
+ "CNAME": "al-nahian-portfolio.vercel.app"
+ }
+}
diff --git a/domains/alain.json b/domains/alain.json
index befc70f98..893395671 100644
--- a/domains/alain.json
+++ b/domains/alain.json
@@ -1,11 +1,11 @@
{
- "repo": "https://github.com/alainsdev/register",
- "owner": {
- "username": "alainsdev",
- "email": "ghghello30@gmail.com",
- "discord": "970325505989574656"
- },
- "record": {
- "CNAME": "alainsdev.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/alainsdev/register",
+ "owner": {
+ "username": "alainsdev",
+ "email": "ghghello30@gmail.com",
+ "discord": "970325505989574656"
+ },
+ "record": {
+ "CNAME": "alainsdev.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-ren.json b/domains/alan-ren.json
new file mode 100644
index 000000000..31e982f1b
--- /dev/null
+++ b/domains/alan-ren.json
@@ -0,0 +1,10 @@
+{
+ "description": "Alan Ren's Developer Website",
+ "owner": {
+ "username": "alanvww",
+ "email": "hello@me.alan.ooo"
+ },
+ "record": {
+ "URL": "https://alan.ooo"
+ }
+}
diff --git a/domains/alan-smith.json b/domains/alan-smith.json
index 32189623b..e8fb369f0 100644
--- a/domains/alan-smith.json
+++ b/domains/alan-smith.json
@@ -1,11 +1,10 @@
{
- "owner": {
- "username": "AlanDoesCS",
- "email": "",
- "discord": "730009898942988299",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Immp3HgqOvoplEYYoUA3Svp2THkx-M7zYK40QEwo92htoYTIMb06Jr41viIoiS54WxHndFOTfKu8mVfkfBn6Ddvv3NVhj99R__0OtqqiBkyu7F7uBnZwyq-bGRx8y4SNVhek_NKLuEMbIxHnE21lZEMScbTuL6v_C5mjVZ4EYD8KIPOni_PqBDqrgmRd9ECIPuVAs55ekba6in7jiSbm0-ERfrQ7KqAASTpw17VtjXEL99uPVbx45amsbTMKUjcgZJ-xN_Z4heIcPlxnllVYUZ2fCDw4PhJlGGh8Bg2LCyXbLUMVw5vQESFxEpm682p_rruCRSBCNbHdP4TIF6bI2w.5LaEVt0VljKihoKo-ohj5Q.3bF4ihh9j5tyc916AhgbzB6-LdNGzp4l1VsRT390mcE2fvN9mj46niGBDBapwZqjRiNZgNOzAqKKVUwde-gfek6OgLe4ZsGJSATvF-B6YaM.XnzWEJO3I3UYsV1yl5SfYg"
- },
- "record": {
- "CNAME": "alandoescs.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AlanDoesCS",
+ "discord": "730009898942988299",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Immp3HgqOvoplEYYoUA3Svp2THkx-M7zYK40QEwo92htoYTIMb06Jr41viIoiS54WxHndFOTfKu8mVfkfBn6Ddvv3NVhj99R__0OtqqiBkyu7F7uBnZwyq-bGRx8y4SNVhek_NKLuEMbIxHnE21lZEMScbTuL6v_C5mjVZ4EYD8KIPOni_PqBDqrgmRd9ECIPuVAs55ekba6in7jiSbm0-ERfrQ7KqAASTpw17VtjXEL99uPVbx45amsbTMKUjcgZJ-xN_Z4heIcPlxnllVYUZ2fCDw4PhJlGGh8Bg2LCyXbLUMVw5vQESFxEpm682p_rruCRSBCNbHdP4TIF6bI2w.5LaEVt0VljKihoKo-ohj5Q.3bF4ihh9j5tyc916AhgbzB6-LdNGzp4l1VsRT390mcE2fvN9mj46niGBDBapwZqjRiNZgNOzAqKKVUwde-gfek6OgLe4ZsGJSATvF-B6YaM.XnzWEJO3I3UYsV1yl5SfYg"
+ },
+ "record": {
+ "CNAME": "alandoescs.github.io"
+ }
+}
diff --git a/domains/alan.json b/domains/alan.json
index 3a8c13824..8bc1e6e21 100644
--- a/domains/alan.json
+++ b/domains/alan.json
@@ -1,11 +1,10 @@
{
- "description": "Alan's personal developer website",
- "repo": "https://github.com/schirrel",
- "owner": {
- "username": "schirrel",
- "email": "alan@schirrel.dev"
- },
- "record": {
- "URL": "https://schirrel.dev"
- }
-}
\ No newline at end of file
+ "description": "Alan's personal developer website",
+ "owner": {
+ "username": "schirrel",
+ "email": "alan@schirrel.dev"
+ },
+ "record": {
+ "URL": "https://schirrel.dev"
+ }
+}
diff --git a/domains/aland.json b/domains/aland.json
new file mode 100644
index 000000000..5e1d283ac
--- /dev/null
+++ b/domains/aland.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "alanrme",
+ "email": "is-a-contact@alanr.me"
+ },
+ "record": {
+ "URL": "https://alanr.me"
+ },
+ "proxied": false
+}
diff --git a/domains/alanr.json b/domains/alanr.json
new file mode 100644
index 000000000..5e1d283ac
--- /dev/null
+++ b/domains/alanr.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "alanrme",
+ "email": "is-a-contact@alanr.me"
+ },
+ "record": {
+ "URL": "https://alanr.me"
+ },
+ "proxied": false
+}
diff --git a/domains/alanrme.json b/domains/alanrme.json
new file mode 100644
index 000000000..5e1d283ac
--- /dev/null
+++ b/domains/alanrme.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "alanrme",
+ "email": "is-a-contact@alanr.me"
+ },
+ "record": {
+ "URL": "https://alanr.me"
+ },
+ "proxied": false
+}
diff --git a/domains/alas.json b/domains/alas.json
new file mode 100644
index 000000000..0681ba7c2
--- /dev/null
+++ b/domains/alas.json
@@ -0,0 +1,13 @@
+{
+ "description": "better domain for a portfolio website and email",
+ "repo": "https://github.com/alastrantia/alastrantia.github.io",
+ "owner": {
+ "username": "Alastrantia",
+ "email": "niklasnoneedtoknow@gmail.com"
+ },
+ "record": {
+ "URL": "https://alastrantia.github.io",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/albakhet.json b/domains/albakhet.json
index bd6b28d94..a6889c508 100644
--- a/domains/albakhet.json
+++ b/domains/albakhet.json
@@ -1,16 +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"
- ]
- }
-}
\ No newline at end of file
+ "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/albert.json b/domains/albert.json
index 82dd19055..5fefa9cb9 100644
--- a/domains/albert.json
+++ b/domains/albert.json
@@ -1,12 +1,12 @@
{
- "description": "Albert's Portfolio Website",
- "repo": "https://github.com/albert1033/albert-portfolio",
- "owner": {
- "username": "albert1033",
- "email": "vuongdingtuong.an@gmail.com",
- "twitter": "albert_26_10"
- },
- "record": {
- "CNAME": "albert1033.github.io"
- }
-}
\ No newline at end of file
+ "description": "Albert's Portfolio Website",
+ "repo": "https://github.com/albert1033/albert-portfolio",
+ "owner": {
+ "username": "albert1033",
+ "email": "vuongdingtuong.an@gmail.com",
+ "twitter": "albert_26_10"
+ },
+ "record": {
+ "CNAME": "albert1033.github.io"
+ }
+}
diff --git a/domains/albertoaig.json b/domains/albertoaig.json
new file mode 100644
index 000000000..84a1ad9c0
--- /dev/null
+++ b/domains/albertoaig.json
@@ -0,0 +1,10 @@
+{
+ "description": "albertoaig.is-a.dev",
+ "owner": {
+ "username": "Albertoaig",
+ "email": "alberto.aig10@gmail.com"
+ },
+ "record": {
+ "CNAME": "portafolio-bay-eight.vercel.app"
+ }
+}
diff --git a/domains/albertodm.json b/domains/albertodm.json
new file mode 100644
index 000000000..af96c304c
--- /dev/null
+++ b/domains/albertodm.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/MonforteGG/portfolio",
+ "owner": {
+ "username": "MonforteGG",
+ "email": "albdiamun@gmail.com"
+ },
+ "description": "portfolio website",
+ "record": {
+ "CNAME": "albertodm.netlify.app"
+ }
+}
diff --git a/domains/albin.json b/domains/albin.json
index 3d731144d..99aaabdb6 100644
--- a/domains/albin.json
+++ b/domains/albin.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ALBINPRAVEEN",
- "email": "albinpraveen135790@gmail.com"
- },
- "record": {
- "URL": "https://albinpraveen.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ALBINPRAVEEN",
+ "email": "albinpraveen135790@gmail.com"
+ },
+ "record": {
+ "URL": "https://albinpraveen.vercel.app"
+ }
+}
diff --git a/domains/albinvar.json b/domains/albinvar.json
index 4564fb9f0..80deb66b7 100644
--- a/domains/albinvar.json
+++ b/domains/albinvar.json
@@ -1,11 +1,11 @@
{
- "description": "Albin's Personal Website",
- "repo": "https://github.com/albinvar/albinvar.github.io",
- "owner": {
- "username": "albinvar",
- "email": "albinvar@pm.me"
- },
- "record": {
- "CNAME": "albinvar.github.io"
- }
-}
\ No newline at end of file
+ "description": "Albin's Personal Website",
+ "repo": "https://github.com/albinvar/albinvar.github.io",
+ "owner": {
+ "username": "albinvar",
+ "email": "albinvar@pm.me"
+ },
+ "record": {
+ "CNAME": "albinvar.github.io"
+ }
+}
diff --git a/domains/alblandino.json b/domains/alblandino.json
index ada311f8e..3da7372ac 100644
--- a/domains/alblandino.json
+++ b/domains/alblandino.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "joel",
- "email": "joel@alblandino.com"
- },
- "record": {
- "URL": "https://alblandino.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "joel",
+ "email": "joel@alblandino.com"
+ },
+ "record": {
+ "URL": "https://alblandino.com"
+ }
+}
diff --git a/domains/alcantara.json b/domains/alcantara.json
index 8ba1ea248..700e43494 100644
--- a/domains/alcantara.json
+++ b/domains/alcantara.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Aalcantaraxxx",
- "email": "angele2705@gmail.com",
- "discord": "713108034171437066"
- },
- "record": {
- "CNAME": "aalcantara-is-a-dev.web.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aalcantaraxxx",
+ "email": "angele2705@gmail.com",
+ "discord": "713108034171437066"
+ },
+ "record": {
+ "CNAME": "aalcantara-is-a-dev.web.app"
+ }
+}
diff --git a/domains/alden.json b/domains/alden.json
index 52d6c585c..5b5e94d6b 100644
--- a/domains/alden.json
+++ b/domains/alden.json
@@ -1,13 +1,13 @@
{
- "description": "Websitenya alden si dawg yang sangaddd keren",
- "repo": "https://github.com/Schmeichel-web/aldenpbm.github.io",
- "owner": {
- "username": "Schmeichel-web",
- "manager": "cupglassdev",
- "discord": "footballfan0891",
- "note": "this is my friend's website, because he dosent really understands about these thing, im managing it"
- },
- "record": {
- "CNAME": "aldenpbm.github.io"
- }
-}
\ No newline at end of file
+ "description": "Websitenya alden si dawg yang sangaddd keren",
+ "repo": "https://github.com/Schmeichel-web/aldenpbm.github.io",
+ "owner": {
+ "username": "Schmeichel-web",
+ "manager": "cupglassdev",
+ "discord": "footballfan0891",
+ "note": "this is my friend's website, because he dosent really understands about these thing, im managing it"
+ },
+ "record": {
+ "CNAME": "aldenpbm.github.io"
+ }
+}
diff --git a/domains/aldess.json b/domains/aldess.json
index 30d5b24b9..e88e64276 100644
--- a/domains/aldess.json
+++ b/domains/aldess.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AldessScratch",
- "email": "aldess.sc@gmail.com"
- },
- "record": {
- "CNAME": "aldess.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AldessScratch",
+ "email": "aldess.sc@gmail.com"
+ },
+ "record": {
+ "CNAME": "aldess.pages.dev"
+ }
+}
diff --git a/domains/aldnnnz.json b/domains/aldnnnz.json
index f1dc24060..9447f9be8 100644
--- a/domains/aldnnnz.json
+++ b/domains/aldnnnz.json
@@ -1,12 +1,12 @@
{
- "description": "portofolio",
- "domain": "aldnnnz.is-a.dev",
- "repo": "https://github.com/aldnnnz/aldnnnz.github.io",
- "owner": {
- "username": "aldnnnz",
- "email": "aldynnn@yahoo.com"
- },
- "record": {
- "CNAME": "aldnnnz.github.io"
- }
-}
\ No newline at end of file
+ "description": "portofolio",
+ "domain": "aldnnnz.is-a.dev",
+ "repo": "https://github.com/aldnnnz/aldnnnz.github.io",
+ "owner": {
+ "username": "aldnnnz",
+ "email": "aldynnn@yahoo.com"
+ },
+ "record": {
+ "CNAME": "aldnnnz.github.io"
+ }
+}
diff --git a/domains/ale.json b/domains/ale.json
index fb85725cc..14d2ad4cf 100644
--- a/domains/ale.json
+++ b/domains/ale.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "alekitopi",
- "email": "hola@alekitopi.es"
- },
- "record": {
- "URL": "https://alekitopi.es",
- "MX": [
- "mail.alekitopi.es"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alekitopi",
+ "email": "hola@alekitopi.es"
+ },
+ "record": {
+ "URL": "https://alekitopi.es",
+ "MX": ["mail.alekitopi.es"]
+ }
+}
diff --git a/domains/alec.json b/domains/alec.json
new file mode 100644
index 000000000..5a5839ade
--- /dev/null
+++ b/domains/alec.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "asidsdamad1"
+ },
+ "record": {
+ "CNAME": "asidsdamad1.github.io"
+ }
+}
diff --git a/domains/alechu.json b/domains/alechu.json
index 8cbd90a91..2a1e557b3 100644
--- a/domains/alechu.json
+++ b/domains/alechu.json
@@ -1,11 +1,11 @@
{
- "description": "My personal website to describe who I am and what I'm currently doing as a developer",
- "repo": "https://github.com/Alechuu/alechuu.github.io",
- "owner": {
- "username": "Alechuu",
- "email": "alechu.dev@icloud.com"
- },
- "record": {
- "CNAME": "alechuu.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal website to describe who I am and what I'm currently doing as a developer",
+ "repo": "https://github.com/Alechuu/alechuu.github.io",
+ "owner": {
+ "username": "Alechuu",
+ "email": "alechu.dev@icloud.com"
+ },
+ "record": {
+ "CNAME": "alechuu.github.io"
+ }
+}
diff --git a/domains/alecks.json b/domains/alecks.json
index a537a3f38..791ee1bbb 100644
--- a/domains/alecks.json
+++ b/domains/alecks.json
@@ -1,11 +1,10 @@
{
- "owner": {
- "username": "Alecks20",
- "email": "contact@alecks.dev",
- "discord": "612522818294251522"
- },
- "record": {
- "CNAME": "evergarden.alecks.cloud"
- },
- "proxied": true
-}
\ No newline at end of file
+ "owner": {
+ "username": "Alecks20",
+ "email": "hi@alecks.dev",
+ "discord": "612522818294251522"
+ },
+ "record": {
+ "CNAME": "alecks.pages.dev"
+ }
+}
diff --git a/domains/alejandro.json b/domains/alejandro.json
new file mode 100644
index 000000000..2cea35453
--- /dev/null
+++ b/domains/alejandro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AlejandroSanchezSerrano",
+ "email": "alexxsanse@gmail.com"
+ },
+ "record": {
+ "CNAME": "alejandrosanchezserrano.github.io"
+ }
+}
diff --git a/domains/alejandropi.json b/domains/alejandropi.json
new file mode 100644
index 000000000..da1441620
--- /dev/null
+++ b/domains/alejandropi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Alejandro's Portfolio ",
+ "repo": "https://github.com/AlejandroPiCano/alejandropi",
+ "owner": {
+ "username": "AlejandroPiCano",
+ "email": "alejandro.pi87@gmail.com"
+ },
+ "record": {
+ "CNAME": "alejandropicano.github.io"
+ }
+}
diff --git a/domains/alejosm.json b/domains/alejosm.json
index c3fc22cfa..028d88666 100644
--- a/domains/alejosm.json
+++ b/domains/alejosm.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ralexale",
- "email": "ralexale@gmail.com"
- },
- "record": {
- "CNAME": "ralexale.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ralexale",
+ "email": "ralexale@gmail.com"
+ },
+ "record": {
+ "CNAME": "ralexale.github.io"
+ }
+}
diff --git a/domains/aleks.json b/domains/aleks.json
index eac4ae7de..9ee4c832c 100644
--- a/domains/aleks.json
+++ b/domains/aleks.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "ConnorDoesDev",
- "email": "connor@cstudios.gay",
- "discord": "Connor!#0800"
- },
- "description": "this is-a.dev page is for a friend of mine, he didn't want to make a github account lol. we're currently working on the site, just wanted to make sure.",
- "record": {
- "CNAME": "connordoesdev.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ConnorDoesDev",
+ "email": "connor@cstudios.gay",
+ "discord": "Connor!#0800"
+ },
+ "description": "this is-a.dev page is for a friend of mine, he didn't want to make a github account lol. we're currently working on the site, just wanted to make sure.",
+ "record": {
+ "CNAME": "connordoesdev.github.io"
+ }
+}
diff --git a/domains/alemi.json b/domains/alemi.json
index dddd414b1..b06dbc2d1 100644
--- a/domains/alemi.json
+++ b/domains/alemi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "alemiherbert",
- "email": "alemiherbert@gmail.com"
- },
- "record": {
- "CNAME": "alemiherbert.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alemiherbert",
+ "email": "alemiherbert@gmail.com"
+ },
+ "record": {
+ "CNAME": "alemiherbert.github.io"
+ }
+}
diff --git a/domains/alen.json b/domains/alen.json
new file mode 100644
index 000000000..6c4930fb5
--- /dev/null
+++ b/domains/alen.json
@@ -0,0 +1,11 @@
+{
+ "description": "Alen's page",
+ "repo": "https://github.com/alenseeman/alenseeman.github.io",
+ "owner": {
+ "username": "alenseeman",
+ "email": "alenseeman@hotmail.com"
+ },
+ "record": {
+ "CNAME": "alenseeman.github.io"
+ }
+}
diff --git a/domains/alephdiallo.json b/domains/alephdiallo.json
index 9e5e500df..fcb845305 100644
--- a/domains/alephdiallo.json
+++ b/domains/alephdiallo.json
@@ -1,20 +1,17 @@
{
- "owner": {
- "username": "alephdfilms",
- "email": "alephdiallo@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 427265238404956172"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": [
- "mx1.forwardemail.net",
- "mx2.forwardemail.net"
- ],
- "TXT": "forward-email=alephdiallo@mail.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alephdfilms",
+ "email": "alephdiallo@gmail.com",
+ "note": "This record was created by is-a.dev Discord bot via discord id: 427265238404956172"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": "forward-email=alephdiallo@mail.com"
+ }
+}
diff --git a/domains/alessandro.json b/domains/alessandro.json
index bf45f7fba..ccda7c8f5 100644
--- a/domains/alessandro.json
+++ b/domains/alessandro.json
@@ -1,11 +1,11 @@
{
- "description": "Alessandro's portfolio",
- "repo": "https://github.com/alessandroaussems/portfolio",
- "owner": {
- "username": "alessandroaussems",
- "email": "me@alessandroaussems.be"
- },
- "record": {
- "URL": "https://alessandroaussems.be"
- }
-}
\ No newline at end of file
+ "description": "Alessandro's portfolio",
+ "repo": "https://github.com/alessandroaussems/portfolio",
+ "owner": {
+ "username": "alessandroaussems",
+ "email": "me@alessandroaussems.be"
+ },
+ "record": {
+ "URL": "https://alessandroaussems.be"
+ }
+}
diff --git a/domains/alessandrobellesia.json b/domains/alessandrobellesia.json
new file mode 100644
index 000000000..ed3951d3c
--- /dev/null
+++ b/domains/alessandrobellesia.json
@@ -0,0 +1,11 @@
+{
+ "description": "Alessandro Bellesia personal website",
+ "repo": "https://github.com/alessandrobellesia/alessandrobellesia.github.io",
+ "owner": {
+ "username": "alessandrobellesia",
+ "x": "@ale_bellesia"
+ },
+ "record": {
+ "CNAME": "alessandrobellesia.github.io"
+ }
+}
diff --git a/domains/alestor123.json b/domains/alestor123.json
index c67c71f2e..9807d60dc 100644
--- a/domains/alestor123.json
+++ b/domains/alestor123.json
@@ -1,11 +1,11 @@
{
- "description": "A Mortal Web Developer With Immortal Dreams",
- "repo": "https://github.com/alestor123/alestor123.github.io",
- "owner": {
- "username": "alestor123",
- "email": "alestoraldous@gmail.com"
- },
- "record": {
- "CNAME": "alestor123.github.io"
- }
-}
\ No newline at end of file
+ "description": "A Mortal Web Developer With Immortal Dreams",
+ "repo": "https://github.com/alestor123/alestor123.github.io",
+ "owner": {
+ "username": "alestor123",
+ "email": "alestoraldous@gmail.com"
+ },
+ "record": {
+ "CNAME": "alestor123.github.io"
+ }
+}
diff --git a/domains/alex.json b/domains/alex.json
index 873f14bed..c1bba4c96 100644
--- a/domains/alex.json
+++ b/domains/alex.json
@@ -1,11 +1,10 @@
{
- "description": "Alex's personal developer website",
- "repo": "https://github.com/alexmorrisnz",
- "owner": {
- "username": "alexmorrisnz",
- "email": "alex@navra.nz"
- },
- "record": {
- "CNAME": "alexmorris.nz"
- }
-}
\ No newline at end of file
+ "description": "Alex's personal developer website",
+ "owner": {
+ "username": "alexmorrisnz",
+ "email": "alex@navra.nz"
+ },
+ "record": {
+ "CNAME": "alexmorris.nz"
+ }
+}
diff --git a/domains/alexanderzhx.json b/domains/alexanderzhx.json
index fd1811a6d..80ced8a43 100644
--- a/domains/alexanderzhx.json
+++ b/domains/alexanderzhx.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AZ777xx",
- "email": "bugattiforever@gmail.com"
- },
- "record": {
- "CNAME": "az777xx.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AZ777xx",
+ "email": "bugattiforever@gmail.com"
+ },
+ "record": {
+ "CNAME": "az777xx.github.io"
+ }
+}
diff --git a/domains/alexandre-machado.json b/domains/alexandre-machado.json
index 32dcd1896..d8a2ee708 100644
--- a/domains/alexandre-machado.json
+++ b/domains/alexandre-machado.json
@@ -1,11 +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
+ "description": "My personal domain.",
+ "repo": "https://github.com/alexandre-machado/alexandre-machado.github.io",
+ "owner": {
+ "username": "alexandre-machado",
+ "email": "alexandre@machado.cc"
+ },
+ "record": {
+ "URL": "https://alexandre.machado.cc"
+ }
+}
diff --git a/domains/alexbartles.json b/domains/alexbartles.json
index a5cbf0ee1..e4a561f4d 100644
--- a/domains/alexbartles.json
+++ b/domains/alexbartles.json
@@ -1,11 +1,11 @@
{
- "repo": "https://alexbartles.github.io/",
- "owner": {
- "username": "AlexBartles",
- "email": "alexbartles2012@gmail.com",
- "discord": "_alexbartles"
- },
- "record": {
- "CNAME": "alexbartles.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://alexbartles.github.io/",
+ "owner": {
+ "username": "AlexBartles",
+ "email": "alexbartles2012@gmail.com",
+ "discord": "_alexbartles"
+ },
+ "record": {
+ "CNAME": "alexbartles.github.io"
+ }
+}
diff --git a/domains/alexcantor.json b/domains/alexcantor.json
new file mode 100644
index 000000000..ee2f45d12
--- /dev/null
+++ b/domains/alexcantor.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alex-cantor",
+ "email": "alexcantor99@gmail.com"
+ },
+ "record": {
+ "CNAME": "alex-cantor.github.io"
+ }
+}
diff --git a/domains/alexd.json b/domains/alexd.json
index 24d1fcac3..4f6abb107 100644
--- a/domains/alexd.json
+++ b/domains/alexd.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "AlexanderDDevelopment",
- "email": "AlexanderDDevelopment@gmail.com",
- "discord": "1237578569358639190"
- },
- "record": {
- "CNAME": "alexanderd.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AlexanderDDevelopment",
+ "email": "AlexanderDDevelopment@gmail.com",
+ "discord": "1237578569358639190"
+ },
+ "record": {
+ "CNAME": "alexanderd.pages.dev"
+ }
+}
diff --git a/domains/alexey.json b/domains/alexey.json
index b20e0bb50..dc46d3458 100644
--- a/domains/alexey.json
+++ b/domains/alexey.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "charmingdisorder"
- },
- "record": {
- "CNAME": "charmingdisorder.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "charmingdisorder"
+ },
+ "record": {
+ "CNAME": "charmingdisorder.github.io"
+ }
+}
diff --git a/domains/alexis.json b/domains/alexis.json
index 27a9287a8..6b0ee7bd0 100644
--- a/domains/alexis.json
+++ b/domains/alexis.json
@@ -1,12 +1,12 @@
{
- "description": "Personnal website of",
- "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io",
- "owner": {
- "username": "alexis-elaxis",
- "email": "contact@alexiis.fr",
- "twitter": "un_nalexis"
- },
- "record": {
- "CNAME": "alexis-elaxis.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personnal website of",
+ "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io",
+ "owner": {
+ "username": "alexis-elaxis",
+ "email": "contact@alexiis.fr",
+ "twitter": "un_nalexis"
+ },
+ "record": {
+ "CNAME": "alexis-elaxis.github.io"
+ }
+}
diff --git a/domains/alexismaison.json b/domains/alexismaison.json
index 34fea9b1d..c135d4713 100644
--- a/domains/alexismaison.json
+++ b/domains/alexismaison.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "alexis2m",
- "email": "hello@alexismaison.com"
- },
- "record": {
- "URL": "https://alexismaison.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alexis2m",
+ "email": "hello@alexismaison.com"
+ },
+ "record": {
+ "URL": "https://alexismaison.com"
+ }
+}
diff --git a/domains/alexjoseph.json b/domains/alexjoseph.json
index 291dfdfaf..94e6eb662 100644
--- a/domains/alexjoseph.json
+++ b/domains/alexjoseph.json
@@ -1,11 +1,11 @@
{
- "description": "This is my first githib page",
- "repo": "https://github.com/alexkjoseph/alexkjoseph.github.io",
- "owner": {
- "username": "alexkjoseph",
- "email": "aj71563@gmail.com"
- },
- "record": {
- "CNAME": "alexkjoseph.github.io"
- }
-}
\ No newline at end of file
+ "description": "This is my first githib page",
+ "repo": "https://github.com/alexkjoseph/alexkjoseph.github.io",
+ "owner": {
+ "username": "alexkjoseph",
+ "email": "aj71563@gmail.com"
+ },
+ "record": {
+ "CNAME": "alexkjoseph.github.io"
+ }
+}
diff --git a/domains/alexlykesas.json b/domains/alexlykesas.json
index 2059c3158..884493aca 100644
--- a/domains/alexlykesas.json
+++ b/domains/alexlykesas.json
@@ -1,11 +1,11 @@
{
- "description": "Alex Lykesas's personal developer website",
- "repo": "https://github.com/Alexookah/alexlykesas.com",
- "owner": {
- "username": "alexookah",
- "email": "alexlykesas@gmail.com"
- },
- "record": {
- "URL": "https://alexlykesas.com"
- }
-}
\ No newline at end of file
+ "description": "Alex Lykesas's personal developer website",
+ "repo": "https://github.com/Alexookah/alexlykesas.com",
+ "owner": {
+ "username": "alexookah",
+ "email": "alexlykesas@gmail.com"
+ },
+ "record": {
+ "URL": "https://alexlykesas.com"
+ }
+}
diff --git a/domains/alexmercerind.json b/domains/alexmercerind.json
index 2d54eef29..176b26537 100644
--- a/domains/alexmercerind.json
+++ b/domains/alexmercerind.json
@@ -1,13 +1,13 @@
{
- "description": "A redirect to my actual personal website on GitHub Pages",
- "repo": "https://github.com/alexmercerind/alexmercerind.github.io",
- "owner": {
- "username": "alexmercerind",
- "email": "alexmercerind@gmail.com",
- "twitter": "alexmercerind",
- "discord": "alexmercerind#3898"
- },
- "record": {
- "CNAME": "alexmercerind.github.io"
- }
-}
\ No newline at end of file
+ "description": "A redirect to my actual personal website on GitHub Pages",
+ "repo": "https://github.com/alexmercerind/alexmercerind.github.io",
+ "owner": {
+ "username": "alexmercerind",
+ "email": "alexmercerind@gmail.com",
+ "twitter": "alexmercerind",
+ "discord": "alexmercerind#3898"
+ },
+ "record": {
+ "CNAME": "alexmercerind.github.io"
+ }
+}
diff --git a/domains/alexpcooper.json b/domains/alexpcooper.json
index aa5499128..3acbec1f3 100644
--- a/domains/alexpcooper.json
+++ b/domains/alexpcooper.json
@@ -1,11 +1,10 @@
{
- "description": "Developer in the United Kingdom",
- "repo": "https://github.com/alexpcooper",
- "record": {
- "URL": "https://alexpcooper.co.uk"
- },
- "owner": {
- "username": "alexpcooper",
- "email": "dev@alexpcooper.co.uk"
- }
-}
\ No newline at end of file
+ "description": "Developer in the United Kingdom",
+ "record": {
+ "URL": "https://alexpcooper.co.uk"
+ },
+ "owner": {
+ "username": "alexpcooper",
+ "email": "dev@alexpcooper.co.uk"
+ }
+}
diff --git a/domains/alexsquibbs.json b/domains/alexsquibbs.json
index d07fc9844..c24122add 100644
--- a/domains/alexsquibbs.json
+++ b/domains/alexsquibbs.json
@@ -1,13 +1,12 @@
{
- "description": "alexsquibbs.is-a.dev --> alexsquibbs.com",
- "record": {
- "URL": "https://alexsquibbs.com"
- },
- "repo": "https://github.com/alexsquibbs",
- "owner": {
- "discord": "alex squibbs#7777",
- "email": "alexsquibbs.is-a.dev@alexsquibbs.com",
- "twitter": "alexsquibbs",
- "username": "alexsquibbs"
- }
-}
\ No newline at end of file
+ "description": "alexsquibbs.is-a.dev --> alexsquibbs.com",
+ "record": {
+ "URL": "https://alexsquibbs.com"
+ },
+ "owner": {
+ "discord": "alex squibbs#7777",
+ "email": "alexsquibbs.is-a.dev@alexsquibbs.com",
+ "twitter": "alexsquibbs",
+ "username": "alexsquibbs"
+ }
+}
diff --git a/domains/alexxhumilde.json b/domains/alexxhumilde.json
index a26a0c349..b19eeb9e1 100644
--- a/domains/alexxhumilde.json
+++ b/domains/alexxhumilde.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ALEXXHUMILDE",
- "email": "alexxcrack3@gmail.com"
- },
- "record": {
- "CNAME": "alexxhumilde.netlify.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ALEXXHUMILDE",
+ "email": "alexxcrack3@gmail.com"
+ },
+ "record": {
+ "CNAME": "alexxhumilde.netlify.app"
+ }
+}
diff --git a/domains/alfanaan.json b/domains/alfanaan.json
index 02f308611..10a510b3b 100644
--- a/domains/alfanaan.json
+++ b/domains/alfanaan.json
@@ -1,14 +1,12 @@
{
- "owner": {
- "username": "Alfanaannet",
- "email": "hmmm202031520062021@gmail.com",
- "discord": "775012312876711936"
- },
- "record": {
- "URL": "https://timevoice.onrender.com",
- "MX": [
- "mail.is-a.dev"
- ],
- "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Alfanaannet",
+ "email": "hmmm202031520062021@gmail.com",
+ "discord": "775012312876711936"
+ },
+ "record": {
+ "URL": "https://timevoice.onrender.com",
+ "MX": ["mail.is-a.dev"],
+ "TXT": "v=spf1 mx a:mail.is-a.dev ~all"
+ }
+}
diff --git a/domains/alfari.json b/domains/alfari.json
index 575cd1f89..d442f3731 100644
--- a/domains/alfari.json
+++ b/domains/alfari.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "alfari24",
- "email": "ari@alfari.id"
- },
- "record": {
- "A": [
- "194.15.36.220"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alfari24",
+ "email": "ari@alfari.id"
+ },
+ "record": {
+ "A": ["194.15.36.220"]
+ }
+}
diff --git a/domains/alfred.json b/domains/alfred.json
index bde6a7af5..190259ff9 100644
--- a/domains/alfred.json
+++ b/domains/alfred.json
@@ -1,11 +1,11 @@
{
- "description": "MkDocs website for alfred-discord-bot",
- "repo": "https://github.com/AlfredDiscordBot/AlfredDiscordBot.github.io",
- "owner": {
- "username": "AlfredDiscordBot",
- "email": "alvinallen333@gmail.com"
- },
- "record": {
- "CNAME": "alfreddiscordbot.github.io"
- }
-}
\ No newline at end of file
+ "description": "MkDocs website for alfred-discord-bot",
+ "repo": "https://github.com/AlfredDiscordBot/AlfredDiscordBot.github.io",
+ "owner": {
+ "username": "AlfredDiscordBot",
+ "email": "alvinallen333@gmail.com"
+ },
+ "record": {
+ "CNAME": "alfreddiscordbot.github.io"
+ }
+}
diff --git a/domains/alfredjophy.json b/domains/alfredjophy.json
new file mode 100644
index 000000000..f852093a0
--- /dev/null
+++ b/domains/alfredjophy.json
@@ -0,0 +1,10 @@
+{
+ "description": "Redirect for my personal website.",
+ "owner": {
+ "username": "alfredjophy",
+ "email": "mail@alfredjophy.com"
+ },
+ "record": {
+ "CNAME": "alfredjophy.com"
+ }
+}
diff --git a/domains/algebraic-effects.akshay.json b/domains/algebraic-effects.akshay.json
index ca6d1b782..563a84c7b 100644
--- a/domains/algebraic-effects.akshay.json
+++ b/domains/algebraic-effects.akshay.json
@@ -1,11 +1,11 @@
{
- "description": "Docs for algebraic effects library",
- "repo": "https://github.com/phenax/algebraic-effects",
- "owner": {
- "username": "phenax",
- "email": "phenax5@gmail.com"
- },
- "record": {
- "CNAME": "phenax.github.io"
- }
-}
\ No newline at end of file
+ "description": "Docs for algebraic effects library",
+ "repo": "https://github.com/phenax/algebraic-effects",
+ "owner": {
+ "username": "phenax",
+ "email": "phenax5@gmail.com"
+ },
+ "record": {
+ "CNAME": "phenax.github.io"
+ }
+}
diff --git a/domains/ali-abdurrazzak.json b/domains/ali-abdurrazzak.json
index 2f822ca83..b411fc225 100644
--- a/domains/ali-abdurrazzak.json
+++ b/domains/ali-abdurrazzak.json
@@ -1,12 +1,12 @@
{
- "description": "A subdomain to direct ali's portofolio github pages",
- "repo": "https://github.com/aliabdurrazzak/aliabdurrazzak.github.io",
- "owner": {
- "username": "aliabdurrazzak",
- "email": "aliabdurrazzak@gmail.com",
- "twitter": "aliabdurrazzak"
- },
- "record": {
- "CNAME": "aliabdurrazzak.github.io"
- }
-}
\ No newline at end of file
+ "description": "A subdomain to direct ali's portofolio github pages",
+ "repo": "https://github.com/aliabdurrazzak/aliabdurrazzak.github.io",
+ "owner": {
+ "username": "aliabdurrazzak",
+ "email": "aliabdurrazzak@gmail.com",
+ "twitter": "aliabdurrazzak"
+ },
+ "record": {
+ "CNAME": "aliabdurrazzak.github.io"
+ }
+}
diff --git a/domains/ali.json b/domains/ali.json
index 64e6d3d2e..2dd37ffac 100644
--- a/domains/ali.json
+++ b/domains/ali.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Portfolio",
- "repo": "https://github.com/hmd-ali/hmd-ali.github.io",
- "owner": {
- "username": "hmd-ali",
- "email": "letsmailali.h@gmail.com"
- },
- "record": {
- "CNAME": "hmd-ali.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/hmd-ali/hmd-ali.github.io",
+ "owner": {
+ "username": "hmd-ali",
+ "email": "letsmailali.h@gmail.com"
+ },
+ "record": {
+ "CNAME": "hmd-ali.github.io"
+ }
+}
diff --git a/domains/alian.json b/domains/alian.json
index f6972a35e..d1152607e 100644
--- a/domains/alian.json
+++ b/domains/alian.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "alianhakim9",
- "email": "alianhakim9@gmail.com"
- },
- "record": {
- "URL": "https://alianhakim9.vercel.app/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alianhakim9",
+ "email": "alianhakim9@gmail.com"
+ },
+ "record": {
+ "URL": "https://alianhakim9.vercel.app/"
+ }
+}
diff --git a/domains/aliezan.json b/domains/aliezan.json
deleted file mode 100644
index 9e9c770f8..000000000
--- a/domains/aliezan.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Aliezan",
- "email": "muhammadalieza4@gmail.com"
- },
- "record": {
- "CNAME": "aliezan.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/alijafari.json b/domains/alijafari.json
index f99bf15d1..639d61198 100644
--- a/domains/alijafari.json
+++ b/domains/alijafari.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "alijafari-gd",
- "email": "ali.jafari.sn@gmail.com"
- },
- "record": {
- "URL": "https://alijafari-gd.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alijafari-gd",
+ "email": "ali.jafari.sn@gmail.com"
+ },
+ "record": {
+ "URL": "https://alijafari-gd.github.io"
+ }
+}
diff --git a/domains/alimad.json b/domains/alimad.json
new file mode 100644
index 000000000..57b386e00
--- /dev/null
+++ b/domains/alimad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Alimadcorp",
+ "email": "alimad.co.ltd@gmail.com"
+ },
+ "record": {
+ "CNAME": "alimad.vercel.app"
+ }
+}
diff --git a/domains/alimd.json b/domains/alimd.json
index f9f2bc5d4..ecf2199d5 100644
--- a/domains/alimd.json
+++ b/domains/alimd.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AliMD",
- "email": "ali@mihandoost.com"
- },
- "record": {
- "CNAME": "alimd.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AliMD",
+ "email": "ali@mihandoost.com"
+ },
+ "record": {
+ "CNAME": "alimd.github.io"
+ }
+}
diff --git a/domains/alimehdi.json b/domains/alimehdi.json
index 12a4a5b1f..703bf6956 100644
--- a/domains/alimehdi.json
+++ b/domains/alimehdi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "DeadMan30",
- "email": "its.alimehdi25@gmail.com"
- },
- "record": {
- "CNAME": "alimehdi.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "DeadMan30",
+ "email": "its.alimehdi25@gmail.com"
+ },
+ "record": {
+ "CNAME": "alimehdi.pages.dev"
+ }
+}
diff --git a/domains/alireza.json b/domains/alireza.json
index 2afa7e51b..f834a6805 100644
--- a/domains/alireza.json
+++ b/domains/alireza.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "faghani",
- "twitter": "alireza_faghani"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "faghani",
+ "twitter": "alireza_faghani"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/alisa.json b/domains/alisa.json
index f04f34d06..78dae86ba 100644
--- a/domains/alisa.json
+++ b/domains/alisa.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "lunas-private-dungeon",
- "email": "luna.tsx@proton.me",
- "discord": "507625218467168257"
- },
- "record": {
- "CNAME": "alisa-win95.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "lunas-private-dungeon",
+ "email": "luna.tsx@proton.me",
+ "discord": "507625218467168257"
+ },
+ "record": {
+ "CNAME": "alisa-win95.vercel.app"
+ }
+}
diff --git a/domains/alisabry.json b/domains/alisabry.json
index b17527b7f..49ac2cb56 100644
--- a/domains/alisabry.json
+++ b/domains/alisabry.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ali-sabry",
- "email": "alisabry.official@gmail.com"
- },
- "record": {
- "URL": "https://alisabry.netlify.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ali-sabry",
+ "email": "alisabry.official@gmail.com"
+ },
+ "record": {
+ "URL": "https://alisabry.netlify.app"
+ }
+}
diff --git a/domains/alivaliev.json b/domains/alivaliev.json
index 90b92b82f..2a1a18af6 100644
--- a/domains/alivaliev.json
+++ b/domains/alivaliev.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "ali-valiev",
- "discord": "722403528705966080",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JSdx7lWn1j953PUFzYC5SKNlzI-3owSSeRuL8BVKm3P1xwN1Ufuhssfzul-weVp-srPf-YXIN4e1tuB2cUProneSkZUANnd4Cl5oCRd4TG1SRUKdI7pkWauG6ysFEFCHwf1LmANGdjzjI0YDNYbGIU3-0nWSmxF5inVadCE8Y281Y6D2lf9A7ceihxwoRq3MCqGo8yCQuNO9FUWwcxZWHa0F7pGYSPqlE26szjWdhFX6rrNS_ypi5wTqhMAC6FdS36zP5bRRSc8b_9TGpE9vj0FleWb1hqXzAiAxToTCTuIGCuTaVY_pfWvpT43sDLN5d7ouXUCgdDGDnntAGLDs4Q.zgoE3RG741k1s-HFrWT7dA.utROG6r9NR6Awzk5pi-TqsCVuoAKn4zG6IbVSFn5il2EKcXDmXt6nzkQYORhyMUptajbkDd3O98WGRaVqG3qkvJUUQu6h_3H4pwRoZQd0fvYqG6G_ymfSlgynEP1y4EZ.jYbY2Ak8PSXN95hhiA2EXg"
- },
- "record": {
- "CNAME": "ali-valiev.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ali-valiev",
+ "discord": "722403528705966080",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JSdx7lWn1j953PUFzYC5SKNlzI-3owSSeRuL8BVKm3P1xwN1Ufuhssfzul-weVp-srPf-YXIN4e1tuB2cUProneSkZUANnd4Cl5oCRd4TG1SRUKdI7pkWauG6ysFEFCHwf1LmANGdjzjI0YDNYbGIU3-0nWSmxF5inVadCE8Y281Y6D2lf9A7ceihxwoRq3MCqGo8yCQuNO9FUWwcxZWHa0F7pGYSPqlE26szjWdhFX6rrNS_ypi5wTqhMAC6FdS36zP5bRRSc8b_9TGpE9vj0FleWb1hqXzAiAxToTCTuIGCuTaVY_pfWvpT43sDLN5d7ouXUCgdDGDnntAGLDs4Q.zgoE3RG741k1s-HFrWT7dA.utROG6r9NR6Awzk5pi-TqsCVuoAKn4zG6IbVSFn5il2EKcXDmXt6nzkQYORhyMUptajbkDd3O98WGRaVqG3qkvJUUQu6h_3H4pwRoZQd0fvYqG6G_ymfSlgynEP1y4EZ.jYbY2Ak8PSXN95hhiA2EXg"
+ },
+ "record": {
+ "CNAME": "ali-valiev.github.io"
+ }
+}
diff --git a/domains/aliwoto.json b/domains/aliwoto.json
index 5515ea5cd..edd87667c 100644
--- a/domains/aliwoto.json
+++ b/domains/aliwoto.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "ALiwoto",
- "email": "aminnimaj@gmail.com"
- },
- "record": {
- "A": [
- "5.9.188.232"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ALiwoto",
+ "email": "aminnimaj@gmail.com"
+ },
+ "record": {
+ "A": ["5.9.188.232"]
+ }
+}
diff --git a/domains/alkorsan.json b/domains/alkorsan.json
index 16328f695..3368dcbb6 100644
--- a/domains/alkorsan.json
+++ b/domains/alkorsan.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "badrelmers",
- "email": "alkorsan@gmail.com"
- },
- "record": {
- "CNAME": "alkorsan.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "badrelmers",
+ "email": "alkorsan@gmail.com"
+ },
+ "record": {
+ "CNAME": "alkorsan.pages.dev"
+ }
+}
diff --git a/domains/all.json b/domains/all.json
new file mode 100644
index 000000000..de7c6e90a
--- /dev/null
+++ b/domains/all.json
@@ -0,0 +1,21 @@
+{
+ "description": "Visualization of raw-api.is-a.dev",
+ "repo": "https://github.com/JustDeveloper1/all.is-a.dev",
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "dev@j.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "TXT": [
+ "google-site-verification=BbYZhMhwA6qo69R2udUA6wKJidmrTiWflfU01Kjm7eI",
+ "yandex-verification: 7cc47fa77df61676"
+ ]
+ }
+}
diff --git a/domains/allancoding.json b/domains/allancoding.json
index daaa266d9..98605aa55 100644
--- a/domains/allancoding.json
+++ b/domains/allancoding.json
@@ -1,20 +1,15 @@
{
- "description": "My main website",
- "repo": "https://github.com/allancoding/allancoding.is-a.dev",
- "owner": {
- "username": "allancoding",
- "email": "allancoding.dev@gmail.com",
- "twitter": "allancoding",
- "discord": "allancoding"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com include:_spf.google.com ~all"
- }
-}
\ No newline at end of file
+ "description": "My main website",
+ "repo": "https://github.com/allancoding/allancoding.is-a.dev",
+ "owner": {
+ "username": "allancoding",
+ "email": "allancoding.dev@gmail.com",
+ "twitter": "allancoding",
+ "discord": "allancoding"
+ },
+ "record": {
+ "A": ["75.2.60.5"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com include:_spf.google.com ~all"
+ }
+}
diff --git a/domains/allen-xavier.json b/domains/allen-xavier.json
new file mode 100644
index 000000000..2c8121245
--- /dev/null
+++ b/domains/allen-xavier.json
@@ -0,0 +1,11 @@
+{
+ "description": "For Portfolio Website",
+ "repo": "https://github.com/xavierallem/AllenXavier",
+ "owner": {
+ "username": "xavierallem",
+ "email": "xavierallem1999@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/allen.json b/domains/allen.json
index e0cf148c5..04c075550 100644
--- a/domains/allen.json
+++ b/domains/allen.json
@@ -1,12 +1,11 @@
{
- "description": "A full-stack developer.",
- "repo": "https://github.com/xiaofuyesnew",
- "owner": {
- "username": "xiaofuyesnew",
- "email": "xiaofuyesnew@qq.com",
- "twitter": "xiaofuyesnew"
- },
- "record": {
- "URL": "https://github.com/xiaofuyesnew"
- }
-}
\ No newline at end of file
+ "description": "A full-stack developer.",
+ "owner": {
+ "username": "xiaofuyesnew",
+ "email": "xiaofuyesnew@qq.com",
+ "twitter": "xiaofuyesnew"
+ },
+ "record": {
+ "URL": "https://github.com/xiaofuyesnew"
+ }
+}
diff --git a/domains/alltawd.json b/domains/alltawd.json
index 9e5f72e3f..7184a18c6 100644
--- a/domains/alltawd.json
+++ b/domains/alltawd.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AlltAWD",
- "email": "hanson_2014@hotmail.com"
- },
- "record": {
- "CNAME": "alltawd.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AlltAWD",
+ "email": "hanson_2014@hotmail.com"
+ },
+ "record": {
+ "CNAME": "alltawd.github.io"
+ }
+}
diff --git a/domains/allvaa.json b/domains/allvaa.json
index 6cd60edaa..4ff890db3 100644
--- a/domains/allvaa.json
+++ b/domains/allvaa.json
@@ -1,11 +1,10 @@
{
- "description": "Allvaa's personal website",
- "repo": "https://github.com/Allvaa",
- "owner": {
- "username": "Allvaa",
- "twitter": "allvzx"
- },
- "record": {
- "URL": "https://allvaa.my.id"
- }
-}
\ No newline at end of file
+ "description": "Allvaa's personal website",
+ "owner": {
+ "username": "Allvaa",
+ "twitter": "allvzx"
+ },
+ "record": {
+ "URL": "https://allvaa.my.id"
+ }
+}
diff --git a/domains/ally.json b/domains/ally.json
index bd458f49c..c377bc532 100644
--- a/domains/ally.json
+++ b/domains/ally.json
@@ -1,11 +1,10 @@
{
- "description": "Ally's personal website",
- "repo": "https://github.com/AllyTally",
- "owner": {
- "username": "AllyTally",
- "email": "alexiatilde@gmail.com"
- },
- "record": {
- "URL": "https://ally.moe"
- }
-}
\ No newline at end of file
+ "description": "Ally's personal website",
+ "owner": {
+ "username": "AllyTally",
+ "email": "alexiatilde@gmail.com"
+ },
+ "record": {
+ "URL": "https://ally.moe"
+ }
+}
diff --git a/domains/almatch.json b/domains/almatch.json
index 4b2f403b7..d5130616a 100644
--- a/domains/almatch.json
+++ b/domains/almatch.json
@@ -1,11 +1,10 @@
{
- "description": "Imad",
- "repo": "https://github.com/imadboy89",
- "owner": {
- "username": "imadboy89",
- "email": "imad.kh@outlook.com"
- },
- "record": {
- "CNAME": "imadboy89.github.io"
- }
-}
\ No newline at end of file
+ "description": "Imad",
+ "owner": {
+ "username": "imadboy89",
+ "email": "imad.kh@outlook.com"
+ },
+ "record": {
+ "CNAME": "imadboy89.github.io"
+ }
+}
diff --git a/domains/almaz.json b/domains/almaz.json
index 2be5ab6c1..4fb80f100 100644
--- a/domains/almaz.json
+++ b/domains/almaz.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "AlmaziikDev",
- "email": "almazgamer228@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AlmaziikDev",
+ "email": "almazgamer228@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/almightynan.json b/domains/almightynan.json
index 2787bb16f..e30d5bb13 100644
--- a/domains/almightynan.json
+++ b/domains/almightynan.json
@@ -1,10 +1,9 @@
{
- "repo": "https://github.com/almightynan",
- "owner": {
- "username": "almightynan",
- "email": "almightynan@gmail.com"
- },
- "record": {
- "CNAME": "almightynandev-production.up.railway.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "almightynan",
+ "email": "almightynan@gmail.com"
+ },
+ "record": {
+ "CNAME": "almightynandev-production.up.railway.app"
+ }
+}
diff --git a/domains/almuqbel.json b/domains/almuqbel.json
index 1b8a51d20..6b8338a90 100644
--- a/domains/almuqbel.json
+++ b/domains/almuqbel.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "AMAZINGMAN2",
- "email": "Hashim.almuqbel@gmail.com"
- },
- "record": {
- "A": [
- "185.176.43.100"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AMAZINGMAN2",
+ "email": "Hashim.almuqbel@gmail.com"
+ },
+ "record": {
+ "A": ["185.176.43.100"]
+ }
+}
diff --git a/domains/alokik.json b/domains/alokik.json
index 5cee16557..e0ad97655 100644
--- a/domains/alokik.json
+++ b/domains/alokik.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "OpAayush",
- "email": "aayushmagrawal@gmail.com"
- },
- "record": {
- "CNAME": "alokik-here.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "OpAayush",
+ "email": "aayushmagrawal@gmail.com"
+ },
+ "record": {
+ "CNAME": "alokik-here.github.io"
+ }
+}
diff --git a/domains/aloo-bun.json b/domains/aloo-bun.json
index a676efcb1..bedc9b1c7 100644
--- a/domains/aloo-bun.json
+++ b/domains/aloo-bun.json
@@ -1,11 +1,11 @@
{
- "description": "Aloo Bun Website",
- "repo": "https://github.com/AshC1ty/ashc1ty.github.io",
- "owner": {
- "username": "AshC1ty",
- "email": "ashcity07734@gmail.com"
- },
- "record": {
- "CNAME": "ashc1ty.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aloo Bun Website",
+ "repo": "https://github.com/AshC1ty/ashc1ty.github.io",
+ "owner": {
+ "username": "AshC1ty",
+ "email": "ashcity07734@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashc1ty.github.io"
+ }
+}
diff --git a/domains/alora.json b/domains/alora.json
index 484c58527..8ac370fc4 100644
--- a/domains/alora.json
+++ b/domains/alora.json
@@ -1,24 +1,20 @@
{
- "owner": {
- "username": "aloramiaa",
- "email": "xaloramia@gmail.com",
- "discord": "7q8x"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": [
- "mx.zoho.in",
- "mx2.zoho.in",
- "mx3.zoho.in"
- ],
- "TXT": [
- "v=spf1 include:zohomail.in ~all",
- "google-site-verification=6uglJKM9-BmooIZLCRAqgnGaT2_M48hkicRD1bphXHk"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aloramiaa",
+ "email": "xaloramia@gmail.com",
+ "discord": "7q8x"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"],
+ "TXT": [
+ "v=spf1 include:zohomail.in ~all",
+ "google-site-verification=6uglJKM9-BmooIZLCRAqgnGaT2_M48hkicRD1bphXHk"
+ ]
+ }
+}
diff --git a/domains/alperen.json b/domains/alperen.json
index 6385210aa..a758fe960 100644
--- a/domains/alperen.json
+++ b/domains/alperen.json
@@ -1,11 +1,11 @@
{
- "description": "Alperen Aslan Portfolio",
- "repo": "https://github.com/alperenasln/alperenasln.github.io",
- "owner": {
- "username": "alperenasln",
- "email": "alperenaslan55@gmail.com"
- },
- "record": {
- "CNAME": "alperenasln.github.io"
- }
-}
\ No newline at end of file
+ "description": "Alperen Aslan Portfolio",
+ "repo": "https://github.com/alperenasln/alperenasln.github.io",
+ "owner": {
+ "username": "alperenasln",
+ "email": "alperenaslan55@gmail.com"
+ },
+ "record": {
+ "CNAME": "alperenasln.github.io"
+ }
+}
diff --git a/domains/alpha.json b/domains/alpha.json
index 04ef6677b..9ec626b63 100644
--- a/domains/alpha.json
+++ b/domains/alpha.json
@@ -1,16 +1,13 @@
{
- "owner": {
- "username": "YouFoundAlpha",
- "discord": "661121998830960651",
- "gitlab": "YouFoundAlpha",
- "mastodon": "@YouFoundAlpha@mastodon.social"
- },
- "record": {
- "URL": "https://yfadev.pw",
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "YouFoundAlpha",
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "URL": "https://youfoundalpha.pages.dev",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/alphabet.json b/domains/alphabet.json
index 4f8ee12c6..33de206c2 100644
--- a/domains/alphabet.json
+++ b/domains/alphabet.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "Commandify",
- "email": "commandify@gmail.com"
- },
- "record": {
- "A": [
- "68.183.191.223"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Commandify",
+ "email": "commandify@gmail.com"
+ },
+ "record": {
+ "A": ["68.183.191.223"]
+ }
+}
diff --git a/domains/alphaspheredotai.json b/domains/alphaspheredotai.json
new file mode 100644
index 000000000..d63863f4d
--- /dev/null
+++ b/domains/alphaspheredotai.json
@@ -0,0 +1,11 @@
+{
+ "description": "Website of AlphaSphere.AI Team",
+ "repo": "https://github.com/AlphaSphereDotAI/AlphaSphereDotAI.github.io",
+ "owner": {
+ "username": "AlphaSphereDotAI",
+ "email": "AlphaSphere.AI@gmail.com"
+ },
+ "record": {
+ "CNAME": "alphaspheredotai.github.io"
+ }
+}
diff --git a/domains/alphatechnolog.json b/domains/alphatechnolog.json
index 503643d6e..20ab4706a 100644
--- a/domains/alphatechnolog.json
+++ b/domains/alphatechnolog.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "AlphaTechnolog",
- "email": "gfranklings@gmail.com",
- "discord": "695333243637072002"
- },
- "record": {
- "CNAME": "alphatechnolog.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AlphaTechnolog",
+ "email": "gfranklings@gmail.com",
+ "discord": "695333243637072002"
+ },
+ "record": {
+ "CNAME": "alphatechnolog.vercel.app"
+ }
+}
diff --git a/domains/alrakib.json b/domains/alrakib.json
new file mode 100644
index 000000000..3ee2d4b4a
--- /dev/null
+++ b/domains/alrakib.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alrakibthedev",
+ "email": "alrakibthedev@gmail.com"
+ },
+ "record": {
+ "CNAME": "alrakibthedev.vercel.app"
+ }
+}
diff --git a/domains/alriy.json b/domains/alriy.json
new file mode 100644
index 000000000..55b93e5e8
--- /dev/null
+++ b/domains/alriy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dami6u9",
+ "email": "danielyalikotte@gmail.com"
+ },
+ "record": {
+ "CNAME": "dami6u9.github.io"
+ }
+}
diff --git a/domains/altude.json b/domains/altude.json
index 4f26a32a5..08e335d1d 100644
--- a/domains/altude.json
+++ b/domains/altude.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "altude",
- "email": "altude@skiff.com"
- },
- "record": {
- "CNAME": "altude.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "altude",
+ "email": "altude@skiff.com"
+ },
+ "record": {
+ "CNAME": "altude.pages.dev"
+ }
+}
diff --git a/domains/aluwi.json b/domains/aluwi.json
index c8778bbcd..d4fed6030 100644
--- a/domains/aluwi.json
+++ b/domains/aluwi.json
@@ -1,12 +1,12 @@
{
- "description": "my portfolio",
- "repo": "https://github.com/Aluwi21/Aluwi21.github.io",
- "owner": {
- "username": "Aluwi21",
- "email": "21fayyadh@gmail.com",
- "twitter": "Aluwi_"
- },
- "record": {
- "CNAME": "aluwi21.github.io"
- }
-}
\ No newline at end of file
+ "description": "my portfolio",
+ "repo": "https://github.com/Aluwi21/Aluwi21.github.io",
+ "owner": {
+ "username": "Aluwi21",
+ "email": "21fayyadh@gmail.com",
+ "twitter": "Aluwi_"
+ },
+ "record": {
+ "CNAME": "aluwi21.github.io"
+ }
+}
diff --git a/domains/alvaro14.json b/domains/alvaro14.json
new file mode 100644
index 000000000..d11b61a8f
--- /dev/null
+++ b/domains/alvaro14.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lovian",
+ "email": "stikamera26@gmail.com"
+ },
+ "record": {
+ "CNAME": "cfpages-4pw.pages.dev"
+ }
+}
diff --git a/domains/alvin.json b/domains/alvin.json
index 8da2d4260..db33e407b 100644
--- a/domains/alvin.json
+++ b/domains/alvin.json
@@ -1,21 +1,15 @@
{
- "owner": {
- "username": "alvinsjoy",
- "discord": "825382504353234954"
- },
- "record": {
- "MX": [
- "mx.zoho.in",
- "mx2.zoho.in",
- "mx3.zoho.in"
- ],
- "A": [
- "76.76.21.21"
- ],
- "TXT": [
- "google-site-verification=OFAPUslqNNZEkB5-UDAC1K1QjXCwDW_e3flhEchoobM",
- "v=spf1 include:zohomail.in ~all",
- "zoho-verification=zb86503883.zmverify.zoho.in"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"],
+ "A": ["76.76.21.21"],
+ "TXT": [
+ "google-site-verification=OFAPUslqNNZEkB5-UDAC1K1QjXCwDW_e3flhEchoobM",
+ "v=spf1 include:zohomail.in ~all",
+ "zoho-verification=zb86503883.zmverify.zoho.in"
+ ]
+ }
+}
diff --git a/domains/alvindennis.json b/domains/alvindennis.json
index 1c3f42b54..f4a648ce3 100644
--- a/domains/alvindennis.json
+++ b/domains/alvindennis.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "alvin-dennis",
- "discord": "732503927940972605"
- },
- "record": {
- "CNAME": "alvindennis.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alvin-dennis",
+ "discord": "732503927940972605"
+ },
+ "record": {
+ "CNAME": "alvindennis.vercel.app"
+ }
+}
diff --git a/domains/alvito.json b/domains/alvito.json
index c8fd0b439..dc7ddd347 100644
--- a/domains/alvito.json
+++ b/domains/alvito.json
@@ -1,11 +1,11 @@
{
- "description": "Personal portfolio website",
- "repo": "https://github.com/alvitodev/alvitodev.github.io",
- "owner": {
- "username": "alvitodev",
- "email": "alvitodev@protonmail.com"
- },
- "record": {
- "CNAME": "alvitodev.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal portfolio website",
+ "repo": "https://github.com/alvitodev/alvitodev.github.io",
+ "owner": {
+ "username": "alvitodev",
+ "email": "alvitodev@protonmail.com"
+ },
+ "record": {
+ "CNAME": "alvitodev.github.io"
+ }
+}
diff --git a/domains/alwen.json b/domains/alwen.json
new file mode 100644
index 000000000..245387288
--- /dev/null
+++ b/domains/alwen.json
@@ -0,0 +1,11 @@
+{
+ "description": "Arvind's portfolio website",
+ "repo": "https://github.com/alwenpy/alwen-portfolio",
+ "owner": {
+ "username": "alwenpy",
+ "email": "alwen1928@gmail.com"
+ },
+ "record": {
+ "CNAME": "ym60h2na.up.railway.app"
+ }
+}
diff --git a/domains/aly.json b/domains/aly.json
new file mode 100644
index 000000000..830b7d77c
--- /dev/null
+++ b/domains/aly.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "el7amrawy",
+ "email": "el7amrawy@outlook.com"
+ },
+ "record": {
+ "CNAME": "portfolio-8sc.pages.dev"
+ }
+}
diff --git a/domains/am.json b/domains/am.json
index e0661a641..78c20c100 100644
--- a/domains/am.json
+++ b/domains/am.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "sa-mustafa",
- "email": "s.a.mustafa@yandex.com"
- },
- "record": {
- "CNAME": "dev.imagesmith.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "sa-mustafa",
+ "email": "s.a.mustafa@yandex.com"
+ },
+ "record": {
+ "CNAME": "dev.imagesmith.io"
+ }
+}
diff --git a/domains/amaankazi.json b/domains/amaankazi.json
index 9ae331785..b8c867adb 100644
--- a/domains/amaankazi.json
+++ b/domains/amaankazi.json
@@ -1,11 +1,11 @@
{
- "description": "Amaan Kazi's website containing portfolio, projects, games and more",
- "repo": "https://github.com/Amaan-Kazi/website-amaan-kazi",
- "owner": {
- "username": "Amaan-Kazi",
- "email": "amaankazi1793@gmail.com"
- },
- "record": {
- "CNAME": "amaankazi.pages.dev"
- }
-}
\ No newline at end of file
+ "description": "Amaan Kazi's website containing portfolio, projects, games and more",
+ "repo": "https://github.com/Amaan-Kazi/website-amaan-kazi",
+ "owner": {
+ "username": "Amaan-Kazi",
+ "email": "amaankazi1793@gmail.com"
+ },
+ "record": {
+ "CNAME": "amaankazi.pages.dev"
+ }
+}
diff --git a/domains/amal-sebastian.json b/domains/amal-sebastian.json
index d9a423b33..9f4c18d39 100644
--- a/domains/amal-sebastian.json
+++ b/domains/amal-sebastian.json
@@ -1,11 +1,11 @@
{
- "description": "Amal's personal developer website",
- "repo": "https://github.com/amalsebs/amalsebs.github.io",
- "owner": {
- "username": "amalsebs",
- "email": "amalsebastian48@gmail.com"
- },
- "record": {
- "CNAME": "amalsebs.github.io"
- }
-}
\ No newline at end of file
+ "description": "Amal's personal developer website",
+ "repo": "https://github.com/amalsebs/amalsebs.github.io",
+ "owner": {
+ "username": "amalsebs",
+ "email": "amalsebastian48@gmail.com"
+ },
+ "record": {
+ "CNAME": "amalsebs.github.io"
+ }
+}
diff --git a/domains/amal.json b/domains/amal.json
index d9a423b33..9f4c18d39 100644
--- a/domains/amal.json
+++ b/domains/amal.json
@@ -1,11 +1,11 @@
{
- "description": "Amal's personal developer website",
- "repo": "https://github.com/amalsebs/amalsebs.github.io",
- "owner": {
- "username": "amalsebs",
- "email": "amalsebastian48@gmail.com"
- },
- "record": {
- "CNAME": "amalsebs.github.io"
- }
-}
\ No newline at end of file
+ "description": "Amal's personal developer website",
+ "repo": "https://github.com/amalsebs/amalsebs.github.io",
+ "owner": {
+ "username": "amalsebs",
+ "email": "amalsebastian48@gmail.com"
+ },
+ "record": {
+ "CNAME": "amalsebs.github.io"
+ }
+}
diff --git a/domains/aman.json b/domains/aman.json
new file mode 100644
index 000000000..3070dffa8
--- /dev/null
+++ b/domains/aman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amang9446",
+ "email": "dev.aman7571@gmail.com"
+ },
+ "record": {
+ "CNAME": "dev-aman.vercel.app"
+ }
+}
diff --git a/domains/amandajauregui.json b/domains/amandajauregui.json
new file mode 100644
index 000000000..820945266
--- /dev/null
+++ b/domains/amandajauregui.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "jauregao",
+ "email": "amandajauregui.dev@gmail.com",
+ "discord": "jauregao"
+ },
+ "record": {
+ "CNAME": "portifolio-amandajauregui.vercel.app"
+ }
+}
diff --git a/domains/amanthakur.json b/domains/amanthakur.json
index ddcb3083f..89cfff114 100644
--- a/domains/amanthakur.json
+++ b/domains/amanthakur.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aman7thakurr",
- "email": "amant8425@gmail.com",
- "discord": "523813766295715851"
- },
- "record": {
- "CNAME": "aman7thakurr.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aman7thakurr",
+ "email": "amant8425@gmail.com",
+ "discord": "523813766295715851"
+ },
+ "record": {
+ "CNAME": "aman7thakurr.github.io"
+ }
+}
diff --git a/domains/amanza17.json b/domains/amanza17.json
index bd4d2339c..509607016 100644
--- a/domains/amanza17.json
+++ b/domains/amanza17.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "description": "amanza17.is-a.dev",
+ "repo": "https://github.com/Amanza17/Amanza17.github.io.git",
+ "owner": {
+ "username": "Amanza17",
+ "email": "a.manzanares.2023@alumnos.urjc.es"
+ },
+ "record": {
+ "CNAME": "amanza17.github.io"
+ }
+}
diff --git a/domains/amardeep.json b/domains/amardeep.json
new file mode 100644
index 000000000..60cb90cf9
--- /dev/null
+++ b/domains/amardeep.json
@@ -0,0 +1,11 @@
+{
+ "description": "Amardeep Lakshkar Portfolio",
+ "repo": "https://github.com/amardeeplakshkar/portfolio",
+ "owner": {
+ "username": "amardeeplakshkar",
+ "email": "amardeep.devs@gmail.com"
+ },
+ "record": {
+ "CNAME": "amardeep-portfolio.vercel.app"
+ }
+}
diff --git a/domains/amarjeet.json b/domains/amarjeet.json
index 6896ebf48..c2d8bdb11 100644
--- a/domains/amarjeet.json
+++ b/domains/amarjeet.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "amalpotra",
- "email": "amarjeetmalpotra@outlook.com"
- },
- "record": {
- "CNAME": "amalpotra.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "amalpotra",
+ "email": "amarjeetmalpotra@outlook.com"
+ },
+ "record": {
+ "CNAME": "amalpotra.github.io"
+ }
+}
diff --git a/domains/ambaskaryash.json b/domains/ambaskaryash.json
index 78613bb50..366a77e7b 100644
--- a/domains/ambaskaryash.json
+++ b/domains/ambaskaryash.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ambaskaryash",
- "email": "kimetsu119@gmail.com"
- },
- "record": {
- "CNAME": "ambaskaryash.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ambaskaryash",
+ "email": "kimetsu119@gmail.com"
+ },
+ "record": {
+ "CNAME": "ambaskaryash.github.io"
+ }
+}
diff --git a/domains/ameen.json b/domains/ameen.json
new file mode 100644
index 000000000..f55681fad
--- /dev/null
+++ b/domains/ameen.json
@@ -0,0 +1,11 @@
+{
+ "description": "portfolio website",
+ "repo": "https://github.com/am333n/my_portfolio",
+ "owner": {
+ "username": "am333n",
+ "email": "muhammedameen752@gmail.com"
+ },
+ "record": {
+ "CNAME": "am333n.github.io"
+ }
+}
diff --git a/domains/amerigo.json b/domains/amerigo.json
index ded48ef1d..090913f5b 100644
--- a/domains/amerigo.json
+++ b/domains/amerigo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "north-site",
- "email": "v.imreadrian@gmail.com"
- },
- "record": {
- "CNAME": "5c13057597f8.sn.mynetname.net"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "north-site",
+ "email": "v.imreadrian@gmail.com"
+ },
+ "record": {
+ "CNAME": "5c13057597f8.sn.mynetname.net"
+ }
+}
diff --git a/domains/amey.json b/domains/amey.json
index 106bba807..1ee19d2cd 100644
--- a/domains/amey.json
+++ b/domains/amey.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "panditamey",
- "email": "codewithamey@gmail.com"
- },
- "record": {
- "CNAME": "panditamey.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "panditamey",
+ "email": "codewithamey@gmail.com"
+ },
+ "record": {
+ "CNAME": "panditamey.github.io"
+ }
+}
diff --git a/domains/amila.json b/domains/amila.json
index a8b3cfeb3..ee47dd29e 100644
--- a/domains/amila.json
+++ b/domains/amila.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Y-AmilaNirmal",
- "email": "yamilanirmal@gmail.com"
- },
- "record": {
- "CNAME": "y-amilanirmal.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Y-AmilaNirmal",
+ "email": "yamilanirmal@gmail.com"
+ },
+ "record": {
+ "CNAME": "y-amilanirmal.github.io"
+ }
+}
diff --git a/domains/amin.json b/domains/amin.json
index 5e5f33d44..f7f2a9d04 100644
--- a/domains/amin.json
+++ b/domains/amin.json
@@ -1,16 +1,16 @@
{
- "description": "website for my links",
- "repo": "https://github.com/amenm0/littlelink.github.io",
- "owner": {
- "username": "amenm0",
- "email": "mjmwtmjls@gmail.com"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
- }
-}
\ No newline at end of file
+ "description": "website for my links",
+ "repo": "https://github.com/amenm0/littlelink.github.io",
+ "owner": {
+ "username": "amenm0",
+ "email": "mjmwtmjls@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/amine-brahmi.json b/domains/amine-brahmi.json
index 5038f24f8..cf3ecd2e2 100644
--- a/domains/amine-brahmi.json
+++ b/domains/amine-brahmi.json
@@ -1,10 +1,10 @@
{
- "description": "My tech blog",
- "owner": {
- "username": "thou-mayest",
- "twitter": "Dr_whoami_"
- },
- "record": {
- "CNAME": "thou-mayest.github.io"
- }
-}
\ No newline at end of file
+ "description": "My tech blog",
+ "owner": {
+ "username": "thou-mayest",
+ "twitter": "Dr_whoami_"
+ },
+ "record": {
+ "CNAME": "thou-mayest.github.io"
+ }
+}
diff --git a/domains/amiralam.json b/domains/amiralam.json
index 2c8c0f723..1f38ec173 100644
--- a/domains/amiralam.json
+++ b/domains/amiralam.json
@@ -1,12 +1,12 @@
{
- "description": "This is my personal portfolio",
- "repo": "https://github.com/amiralamf4/amiralamf4.github.io",
- "owner": {
- "username": "amiralamf4",
- "email": "sameer72135@gmail.com",
- "twitter": "AmirAlam72135"
- },
- "record": {
- "CNAME": "amiralamf4.github.io"
- }
-}
\ No newline at end of file
+ "description": "This is my personal portfolio",
+ "repo": "https://github.com/amiralamf4/amiralamf4.github.io",
+ "owner": {
+ "username": "amiralamf4",
+ "email": "sameer72135@gmail.com",
+ "twitter": "AmirAlam72135"
+ },
+ "record": {
+ "CNAME": "amiralamf4.github.io"
+ }
+}
diff --git a/domains/amit.json b/domains/amit.json
index 6baf019bd..0a5f22ee2 100644
--- a/domains/amit.json
+++ b/domains/amit.json
@@ -1,11 +1,11 @@
{
- "description": "Amit's website",
- "repo": "https://github.com/amittkulkarni/amittkulkarni.github.io",
- "owner": {
- "username": "amittkulkarni",
- "email": "amitcoolkarni@outlook.com"
- },
- "record": {
- "CNAME": "amittkulkarni.github.io"
- }
-}
\ No newline at end of file
+ "description": "Amit's website",
+ "repo": "https://github.com/amittkulkarni/amittkulkarni.github.io",
+ "owner": {
+ "username": "amittkulkarni",
+ "email": "amitcoolkarni@outlook.com"
+ },
+ "record": {
+ "CNAME": "amittkulkarni.github.io"
+ }
+}
diff --git a/domains/amitkr.json b/domains/amitkr.json
new file mode 100644
index 000000000..37e55c1ae
--- /dev/null
+++ b/domains/amitkr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "buddhhu",
+ "email": "amitsharma123234@gmail.com"
+ },
+ "record": {
+ "CNAME": "amitkr.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/amity.json b/domains/amity.json
index 0d0207e91..8e38034fe 100644
--- a/domains/amity.json
+++ b/domains/amity.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "winrg",
- "email": "alyx@aleteoryx.me"
- },
- "record": {
- "URL": "https://aleteoryx.me"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "winrg",
+ "email": "alyx@aleteoryx.me"
+ },
+ "record": {
+ "URL": "https://aleteoryx.me"
+ }
+}
diff --git a/domains/amiyo.json b/domains/amiyo.json
index 42bd6b796..49bef67c7 100644
--- a/domains/amiyo.json
+++ b/domains/amiyo.json
@@ -1,12 +1,11 @@
{
- "owner": {
- "username": "DevAmiyo",
- "email": "devamiyosp@gmail.com",
- "repo": "https://github.com/DevAmiyo",
- "discord": "Amiyo#7978",
- "twitter": "AmiyoTweets"
- },
- "record": {
- "URL": "https://github.amiyo.tk"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "DevAmiyo",
+ "email": "devamiyosp@gmail.com",
+ "discord": "Amiyo#7978",
+ "twitter": "AmiyoTweets"
+ },
+ "record": {
+ "URL": "https://github.amiyo.tk"
+ }
+}
diff --git a/domains/ammar.json b/domains/ammar.json
index 370f84715..b8af925a9 100644
--- a/domains/ammar.json
+++ b/domains/ammar.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "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/ammthecoder.json b/domains/ammthecoder.json
index dfe9f45ce..f9166f589 100644
--- a/domains/ammthecoder.json
+++ b/domains/ammthecoder.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Aung-myat-min",
- "email": "koaungmyatmin0@gmail.com"
- },
- "record": {
- "URL": "https://ammthercoder.vercel.app/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aung-myat-min",
+ "email": "koaungmyatmin0@gmail.com"
+ },
+ "record": {
+ "URL": "https://ammthercoder.vercel.app/"
+ }
+}
diff --git a/domains/amol254542.json b/domains/amol254542.json
index fe7b16189..26257a95b 100644
--- a/domains/amol254542.json
+++ b/domains/amol254542.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "amol234545",
- "email": "amolmilton@gmail.com"
- },
- "record": {
- "CNAME": "amol234545.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "amol234545",
+ "email": "amolmilton@gmail.com"
+ },
+ "record": {
+ "CNAME": "amol234545.github.io"
+ }
+}
diff --git a/domains/amol3.json b/domains/amol3.json
index fe7b16189..26257a95b 100644
--- a/domains/amol3.json
+++ b/domains/amol3.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "amol234545",
- "email": "amolmilton@gmail.com"
- },
- "record": {
- "CNAME": "amol234545.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "amol234545",
+ "email": "amolmilton@gmail.com"
+ },
+ "record": {
+ "CNAME": "amol234545.github.io"
+ }
+}
diff --git a/domains/amoramicae.json b/domains/amoramicae.json
index 6ac543579..59e334273 100644
--- a/domains/amoramicae.json
+++ b/domains/amoramicae.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "amoramicae",
- "email": "amoramicae@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "amoramicae",
+ "email": "amoramicae@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/amosmurmu.json b/domains/amosmurmu.json
new file mode 100644
index 000000000..51a587a05
--- /dev/null
+++ b/domains/amosmurmu.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Software Portfolio",
+ "repo": "https://github.com/amosmurmu/amosmurmu.github.io.git",
+ "owner": {
+ "username": "amosmurmu",
+ "email": "amosmurmu002@gmail.com"
+ },
+ "record": {
+ "CNAME": "amosmurmu.github.io"
+ }
+}
diff --git a/domains/amr.json b/domains/amr.json
new file mode 100644
index 000000000..d33621228
--- /dev/null
+++ b/domains/amr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "agawish",
+ "email": "amr.gawish@gmail.com"
+ },
+ "record": {
+ "CNAME": "amr-gawish.com"
+ }
+}
diff --git a/domains/amrut.json b/domains/amrut.json
new file mode 100644
index 000000000..e4cd4f24d
--- /dev/null
+++ b/domains/amrut.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "amrutgawade",
+ "email": "amrutgawade.08@gmail.com",
+ "linkedin": "https://www.linkedin.com/in/amrut-gawade"
+ },
+ "record": {
+ "CNAME": "amrutgawade.github.io"
+ }
+}
diff --git a/domains/amuffin.json b/domains/amuffin.json
index 9c6f66ad7..4d0538eed 100644
--- a/domains/amuffin.json
+++ b/domains/amuffin.json
@@ -1,11 +1,11 @@
{
- "description": "amuffins website",
- "repo": "https://github.com/amagicmuffin/amagicmuffin.github.io",
- "owner": {
- "username": "amagicmuffin",
- "email": "2014wcheng@gmail.com"
- },
- "record": {
- "CNAME": "amagicmuffin.github.io"
- }
-}
\ No newline at end of file
+ "description": "amuffins website",
+ "repo": "https://github.com/amagicmuffin/amagicmuffin.github.io",
+ "owner": {
+ "username": "amagicmuffin",
+ "email": "2014wcheng@gmail.com"
+ },
+ "record": {
+ "CNAME": "amagicmuffin.github.io"
+ }
+}
diff --git a/domains/amy.json b/domains/amy.json
index a2cc1abf7..0ec869526 100644
--- a/domains/amy.json
+++ b/domains/amy.json
@@ -1,11 +1,11 @@
{
- "description": "Amy's is-a-dev domain",
- "repo": "https://github.com/nullishamy/nullishamy.github.io",
- "owner": {
- "username": "nullishamy",
- "email": "contact@amyerskine.me"
- },
- "record": {
- "CNAME": "nullishamy.github.io"
- }
-}
\ No newline at end of file
+ "description": "Amy's is-a-dev domain",
+ "repo": "https://github.com/nullishamy/nullishamy.github.io",
+ "owner": {
+ "username": "nullishamy",
+ "email": "contact@amyerskine.me"
+ },
+ "record": {
+ "CNAME": "nullishamy.github.io"
+ }
+}
diff --git a/domains/an.json b/domains/an.json
new file mode 100644
index 000000000..6c8614026
--- /dev/null
+++ b/domains/an.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameRoMan",
+ "email": "gameromandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gameroman.pages.dev"
+ }
+}
diff --git a/domains/anaj00.json b/domains/anaj00.json
index 558855443..3946ff60d 100644
--- a/domains/anaj00.json
+++ b/domains/anaj00.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "anaj00",
- "discord": "726173201264279583",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.q9dOipcfQfyG9bEddrKynmNIS0Fex44YsKgBhDOFPFbGUX-BDKKePgU58S8VoJpNOZOlf1z0t_IOROvA_yXOgqboi8RWJ7MeohAFp9Vd_O4llkxDlHGzuRNrEqqUzr_ufvh2QSNQhkqFxG8Hg5P8F7BkPr51qA1gaZBPXfp-qYgTsgY1AAsB1BsQ0UUEpB6kwQPreJgoIiHQVI0Q7R9adXhQe11WIKhqAgGjl3pdCtTvTli2FsJCK6CaxeoQpnhLaoFT3HDzTNUUExBzG-cJRXwREWnJwbp6wKZ34HKFaNlf21cAsJRrGJCpzzE-oE6Yq_Si3Lqs9_1uacxjEtbTeA.-w3-ZOu80dbxWcgpHkIATw.hy-ckqmE-5uaKK-UlkLeahUomolJu7-GJWiQQpFvGqr4yCWxUSb6iduWtHWhsy9MIqphktkR6iAKH4fX7mx0Cpgp3C-CTx5hsVKoUohl-HE.jydd8-vu6z5ykX2vzY6weQ"
- },
- "record": {
- "CNAME": "anaj00.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anaj00",
+ "discord": "726173201264279583",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.q9dOipcfQfyG9bEddrKynmNIS0Fex44YsKgBhDOFPFbGUX-BDKKePgU58S8VoJpNOZOlf1z0t_IOROvA_yXOgqboi8RWJ7MeohAFp9Vd_O4llkxDlHGzuRNrEqqUzr_ufvh2QSNQhkqFxG8Hg5P8F7BkPr51qA1gaZBPXfp-qYgTsgY1AAsB1BsQ0UUEpB6kwQPreJgoIiHQVI0Q7R9adXhQe11WIKhqAgGjl3pdCtTvTli2FsJCK6CaxeoQpnhLaoFT3HDzTNUUExBzG-cJRXwREWnJwbp6wKZ34HKFaNlf21cAsJRrGJCpzzE-oE6Yq_Si3Lqs9_1uacxjEtbTeA.-w3-ZOu80dbxWcgpHkIATw.hy-ckqmE-5uaKK-UlkLeahUomolJu7-GJWiQQpFvGqr4yCWxUSb6iduWtHWhsy9MIqphktkR6iAKH4fX7mx0Cpgp3C-CTx5hsVKoUohl-HE.jydd8-vu6z5ykX2vzY6weQ"
+ },
+ "record": {
+ "CNAME": "anaj00.vercel.app"
+ }
+}
diff --git a/domains/analogsombra.json b/domains/analogsombra.json
index 7060576f3..053b4d1e1 100644
--- a/domains/analogsombra.json
+++ b/domains/analogsombra.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "analog-sombra",
- "email": "analogsombra@gmail.com"
- },
- "record": {
- "CNAME": "analog-sombra.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "analog-sombra",
+ "email": "analogsombra@gmail.com"
+ },
+ "record": {
+ "CNAME": "analog-sombra.github.io"
+ }
+}
diff --git a/domains/analytics.juststudio.json b/domains/analytics.juststudio.json
new file mode 100644
index 000000000..cbd6e4639
--- /dev/null
+++ b/domains/analytics.juststudio.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "A": ["34.120.54.55"],
+ "AAAA": ["2600:1901:0:6d85::"]
+ }
+}
diff --git a/domains/anamay.json b/domains/anamay.json
index 8479cdb5d..7802bd4a4 100644
--- a/domains/anamay.json
+++ b/domains/anamay.json
@@ -1,11 +1,10 @@
{
- "description": "Anamay's .is-a.dev domain",
- "repo": "https://github.com/anamaykashiv/anamaykashiv.github.io",
- "owner": {
- "username": "anamaykashiv",
- "email": "kashiv.anamay002@gmail.com"
- },
- "record": {
- "CNAME": "anamaykashiv.github.io"
- }
-}
\ No newline at end of file
+ "description": "Anamay's .is-a.dev domain",
+ "owner": {
+ "username": "anamaykashiv",
+ "email": "kashiv.anamay002@gmail.com"
+ },
+ "record": {
+ "CNAME": "anamay.eu.org"
+ }
+}
diff --git a/domains/anand-ramakrishna.json b/domains/anand-ramakrishna.json
index a9320f660..2df09e848 100644
--- a/domains/anand-ramakrishna.json
+++ b/domains/anand-ramakrishna.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/theanandramakrishna/theanandramakrishna.github.io",
- "owner": {
- "username": "theanandramakrishna",
- "email": "theanandramakrishna@gmail.com"
- },
- "record": {
- "CNAME": "theanandramakrishna.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/theanandramakrishna/theanandramakrishna.github.io",
+ "owner": {
+ "username": "theanandramakrishna",
+ "email": "theanandramakrishna@gmail.com"
+ },
+ "record": {
+ "CNAME": "theanandramakrishna.github.io"
+ }
+}
diff --git a/domains/anand.json b/domains/anand.json
new file mode 100644
index 000000000..5a627fafc
--- /dev/null
+++ b/domains/anand.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anandd17",
+ "email": "avdoddamani123@gmail.com"
+ },
+ "record": {
+ "CNAME": "anandd17.vercel.app"
+ }
+}
diff --git a/domains/anandyeole.json b/domains/anandyeole.json
index 42c93a3ef..dfef22de1 100644
--- a/domains/anandyeole.json
+++ b/domains/anandyeole.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/anandyeole/anandyeole.github.io",
- "owner": {
- "username": "anandyeole",
- "email": "anandyeole@duck.com"
- },
- "record": {
- "CNAME": "anandyeole.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/anandyeole/anandyeole.github.io",
+ "owner": {
+ "username": "anandyeole",
+ "email": "anandyeole@duck.com"
+ },
+ "record": {
+ "CNAME": "anandyeole.github.io"
+ }
+}
diff --git a/domains/ananth.json b/domains/ananth.json
index 140a8d8a9..a95fca724 100644
--- a/domains/ananth.json
+++ b/domains/ananth.json
@@ -1,11 +1,11 @@
{
- "description": "Personal portfolio website",
- "repo": "https://github.com/ANANTH-SWAMY/ananth-swamy.github.io",
- "owner": {
- "username": "ANANTH-SWAMY",
- "email": "ananth.nps@gmail.com"
- },
- "record": {
- "CNAME": "ananth-swamy.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal portfolio website",
+ "repo": "https://github.com/ANANTH-SWAMY/ananth-swamy.github.io",
+ "owner": {
+ "username": "ANANTH-SWAMY",
+ "email": "ananth.nps@gmail.com"
+ },
+ "record": {
+ "CNAME": "ananth-swamy.github.io"
+ }
+}
diff --git a/domains/anas.json b/domains/anas.json
index c58edb1d6..96a8ab4e9 100644
--- a/domains/anas.json
+++ b/domains/anas.json
@@ -1,11 +1,11 @@
{
- "description": "Anasov Github Portfolio",
- "repo": "https://github.com/ItzAnasov/ItzAnasov.github.io",
- "owner": {
- "username": "ItzAnasov",
- "email": "anasybal@mail.ru"
- },
- "record": {
- "CNAME": "itzanasov.github.io"
- }
-}
\ No newline at end of file
+ "description": "Anasov Github Portfolio",
+ "repo": "https://github.com/ItzAnasov/ItzAnasov.github.io",
+ "owner": {
+ "username": "ItzAnasov",
+ "email": "anasybal@mail.ru"
+ },
+ "record": {
+ "CNAME": "itzanasov.github.io"
+ }
+}
diff --git a/domains/anatoli.json b/domains/anatoli.json
new file mode 100644
index 000000000..ecafc54b2
--- /dev/null
+++ b/domains/anatoli.json
@@ -0,0 +1,10 @@
+{
+ "description": "Anatoli Nicolae",
+ "owner": {
+ "username": "anatolinicolae",
+ "email": "is-a-dev@anatolinicolae.com"
+ },
+ "record": {
+ "URL": "https://anatolinicolae.com/"
+ }
+}
diff --git a/domains/anautonell.json b/domains/anautonell.json
index 3d8e335c6..6ccd9a8a7 100644
--- a/domains/anautonell.json
+++ b/domains/anautonell.json
@@ -1,12 +1,12 @@
{
- "description": "My Portofolio website!",
- "repo": "https://github.com/anautonell/portofolio-website",
- "owner": {
- "username": "anautonell",
- "email": "help@myprotect.xyz",
- "twitter": "fastsecurerblx"
- },
- "record": {
- "CNAME": "anautonell.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Portofolio website!",
+ "repo": "https://github.com/anautonell/portofolio-website",
+ "owner": {
+ "username": "anautonell",
+ "email": "help@myprotect.xyz",
+ "twitter": "fastsecurerblx"
+ },
+ "record": {
+ "CNAME": "anautonell.github.io"
+ }
+}
diff --git a/domains/anay-208.json b/domains/anay-208.json
index 0efc64f1c..6d2c4d712 100644
--- a/domains/anay-208.json
+++ b/domains/anay-208.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "anay-208",
- "email": "me@anayparaswani.dev",
- "discord": "anay_208"
- },
- "record": {
- "URL": "https://anayparaswani.dev/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anay-208",
+ "email": "me@anayparaswani.dev",
+ "discord": "anay_208"
+ },
+ "record": {
+ "URL": "https://anayparaswani.dev/"
+ }
+}
diff --git a/domains/anay.json b/domains/anay.json
index 0efc64f1c..6d2c4d712 100644
--- a/domains/anay.json
+++ b/domains/anay.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "anay-208",
- "email": "me@anayparaswani.dev",
- "discord": "anay_208"
- },
- "record": {
- "URL": "https://anayparaswani.dev/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anay-208",
+ "email": "me@anayparaswani.dev",
+ "discord": "anay_208"
+ },
+ "record": {
+ "URL": "https://anayparaswani.dev/"
+ }
+}
diff --git a/domains/anayparaswani.json b/domains/anayparaswani.json
index 0efc64f1c..6d2c4d712 100644
--- a/domains/anayparaswani.json
+++ b/domains/anayparaswani.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "anay-208",
- "email": "me@anayparaswani.dev",
- "discord": "anay_208"
- },
- "record": {
- "URL": "https://anayparaswani.dev/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anay-208",
+ "email": "me@anayparaswani.dev",
+ "discord": "anay_208"
+ },
+ "record": {
+ "URL": "https://anayparaswani.dev/"
+ }
+}
diff --git a/domains/anbuinfosec.json b/domains/anbuinfosec.json
index 593ec0857..b9a26f6f2 100644
--- a/domains/anbuinfosec.json
+++ b/domains/anbuinfosec.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "anbuinfosec"
- },
- "record": {
- "CNAME": "anbuinfosec.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anbuinfosec"
+ },
+ "record": {
+ "CNAME": "anbuinfosec.github.io"
+ }
+}
diff --git a/domains/andgyk.json b/domains/andgyk.json
index 8b07823e3..7263195f7 100644
--- a/domains/andgyk.json
+++ b/domains/andgyk.json
@@ -1,11 +1,11 @@
{
- "description": "andgyk website",
- "repo": "https://github.com/andgyk/andgyk.github.io",
- "owner": {
- "username": "andgyk",
- "email": "an4g7k@gmail.com"
- },
- "record": {
- "CNAME": "andgyk.github.io"
- }
-}
\ No newline at end of file
+ "description": "andgyk website",
+ "repo": "https://github.com/andgyk/andgyk.github.io",
+ "owner": {
+ "username": "andgyk",
+ "email": "an4g7k@gmail.com"
+ },
+ "record": {
+ "CNAME": "andgyk.github.io"
+ }
+}
diff --git a/domains/andr.json b/domains/andr.json
index 94bfb1add..69528613d 100644
--- a/domains/andr.json
+++ b/domains/andr.json
@@ -1,11 +1,11 @@
{
- "description": "Domain for my personal blog",
- "repo": "https://github.com/rbaks/rbaks.github.io",
- "owner": {
- "username": "rbaks",
- "email": "andri.bakoson@gmail.com"
- },
- "record": {
- "CNAME": "rbaks.github.io"
- }
-}
\ No newline at end of file
+ "description": "Domain for my personal blog",
+ "repo": "https://github.com/rbaks/rbaks.github.io",
+ "owner": {
+ "username": "rbaks",
+ "email": "andri.bakoson@gmail.com"
+ },
+ "record": {
+ "CNAME": "rbaks.github.io"
+ }
+}
diff --git a/domains/andre.json b/domains/andre.json
new file mode 100644
index 000000000..a35fa7a17
--- /dev/null
+++ b/domains/andre.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/andrexduarte/adx",
+ "owner": {
+ "username": "andrexduarte",
+ "email": "andrexduarte@gmail.com"
+ },
+ "record": {
+ "CNAME": "andrexduarte.github.io"
+ }
+}
diff --git a/domains/andrea.json b/domains/andrea.json
index 742c6f6a3..30030d36c 100644
--- a/domains/andrea.json
+++ b/domains/andrea.json
@@ -1,13 +1,10 @@
{
- "description": "Personal site",
- "repo": "https://github.com/andrea-capigiri",
- "owner": {
- "username": "andrea-capigiri",
- "email": "uadopo+isadev@pm.me"
- },
- "record": {
- "A": [
- "212.237.38.154"
- ]
- }
-}
\ No newline at end of file
+ "description": "Personal site",
+ "owner": {
+ "username": "andrea-capigiri",
+ "email": "uadopo+isadev@pm.me"
+ },
+ "record": {
+ "A": ["62.171.176.192"]
+ }
+}
diff --git a/domains/andrei.json b/domains/andrei.json
index 3b226d9ba..4bd069461 100644
--- a/domains/andrei.json
+++ b/domains/andrei.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "CalegariAndrei",
- "email": "ekingproject@gmail.com",
- "discord": "419584364410699786"
- },
- "record": {
- "CNAME": "calegariandrei.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "CalegariAndrei",
+ "email": "ekingproject@gmail.com",
+ "discord": "419584364410699786"
+ },
+ "record": {
+ "CNAME": "calegariandrei.github.io"
+ }
+}
diff --git a/domains/andreijiroh.json b/domains/andreijiroh.json
index f9f53c6ab..a9da6c39e 100644
--- a/domains/andreijiroh.json
+++ b/domains/andreijiroh.json
@@ -1,15 +1,12 @@
{
- "owner": {
- "username": "ajhalili2006",
- "discord": "437044173825114113",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYflKk2IBSfS6chUMYUGHREeeZVR18nZA-TlYCa5lgQGaR1P6lixNKJAJcJv72mUkHus2VyrrxSkl5ttCTtBXFdFs8eA4jNFPjtvC_7Qt-i_v0UWs5rxtdZ2y3MsN6jzPeVzHcVq2gQG9RFdIniBHMKuEOfiPCPqXp_CbdjBddCRQRsIzunnAwof917053o4EV3JCMVN9ObW3Jdq9GD9QaB_vPG9HjFqzwlvSA6QFbQYYilvij7UF5I3pcLfNyOw3tascM6GMDlXJxtqL2r6HLo58MSagDKycFCuuxdfsRljnLypuwF0m_3bEV76QRpvMWY_NmW6FaveHLjzd82l0g.ABEBdXC3pvmyqoKfDAw86A.NNKf3gP3_-fzpnvGWIBJaSzsU-d1ZJsDFJSyc52B6pjz1LrYOeK_0-QjF8w1Y1xiaRz475Drvb-27xOCjANJjZlgtCVrG1mgVxWDanb30kmyV8KtNLnlGO3VKMWXqy7r.K9X3W6jos3JsIFCn6LGifA",
- "fediverse": "@ajhalili2006@tilde.zone",
- "bsky": "did:plc:wcx4c3osbuzrwmxkqdfqygwv"
- },
- "record": {
- "NS": [
- "kallie.ns.cloudflare.com",
- "tadeo.ns.cloudflare.com"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ajhalili2006",
+ "discord": "437044173825114113",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYflKk2IBSfS6chUMYUGHREeeZVR18nZA-TlYCa5lgQGaR1P6lixNKJAJcJv72mUkHus2VyrrxSkl5ttCTtBXFdFs8eA4jNFPjtvC_7Qt-i_v0UWs5rxtdZ2y3MsN6jzPeVzHcVq2gQG9RFdIniBHMKuEOfiPCPqXp_CbdjBddCRQRsIzunnAwof917053o4EV3JCMVN9ObW3Jdq9GD9QaB_vPG9HjFqzwlvSA6QFbQYYilvij7UF5I3pcLfNyOw3tascM6GMDlXJxtqL2r6HLo58MSagDKycFCuuxdfsRljnLypuwF0m_3bEV76QRpvMWY_NmW6FaveHLjzd82l0g.ABEBdXC3pvmyqoKfDAw86A.NNKf3gP3_-fzpnvGWIBJaSzsU-d1ZJsDFJSyc52B6pjz1LrYOeK_0-QjF8w1Y1xiaRz475Drvb-27xOCjANJjZlgtCVrG1mgVxWDanb30kmyV8KtNLnlGO3VKMWXqy7r.K9X3W6jos3JsIFCn6LGifA",
+ "fediverse": "@ajhalili2006@tilde.zone",
+ "bsky": "did:plc:wcx4c3osbuzrwmxkqdfqygwv"
+ },
+ "record": {
+ "NS": ["kallie.ns.cloudflare.com", "tadeo.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/andres-jaramillo.json b/domains/andres-jaramillo.json
index 3377632bb..03f1e4498 100644
--- a/domains/andres-jaramillo.json
+++ b/domains/andres-jaramillo.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "andresfer1799",
- "email": "andresfer1799@gmail.com",
- "discord": ""
- },
- "record": {
- "CNAME": "mi-portafolio-wine.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "andresfer1799",
+ "email": "andresfer1799@gmail.com"
+ },
+ "record": {
+ "CNAME": "mi-portafolio-wine.vercel.app"
+ }
+}
diff --git a/domains/andres.json b/domains/andres.json
index aeb9b6af1..b72e4c382 100644
--- a/domains/andres.json
+++ b/domains/andres.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "eneru2",
- "email": "elementaov@gmail.com"
- },
- "record": {
- "A": [
- "130.61.184.180"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "eneru2",
+ "email": "elementaov@gmail.com"
+ },
+ "record": {
+ "A": ["130.61.184.180"]
+ }
+}
diff --git a/domains/andresarr.json b/domains/andresarr.json
new file mode 100644
index 000000000..31c5e2b16
--- /dev/null
+++ b/domains/andresarr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Anonymous1223334444",
+ "email": "replit005@gmail.com"
+ },
+ "record": {
+ "CNAME": "portofoliowebdev.vercel.app"
+ }
+}
diff --git a/domains/andrew.json b/domains/andrew.json
new file mode 100644
index 000000000..5402b8f7d
--- /dev/null
+++ b/domains/andrew.json
@@ -0,0 +1,13 @@
+{
+ "description": "my portofolio",
+ "owner": {
+ "username": "lightningON90hz",
+ "email": "andrewworkmail123@gmail.com"
+ },
+ "record": {
+ "A": [
+ "69.30.249.53"
+ ]
+ },
+ "proxied": false
+}
diff --git a/domains/andrewdxz.json b/domains/andrewdxz.json
index 4b84e398a..c88dd2b21 100644
--- a/domains/andrewdxz.json
+++ b/domains/andrewdxz.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "alainsdev",
- "email": "ghghello30@gmail.com",
- "discord": "970325505989574656"
- },
- "record": {
- "CNAME": "andrewmack1.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alainsdev",
+ "email": "ghghello30@gmail.com",
+ "discord": "970325505989574656"
+ },
+ "record": {
+ "CNAME": "andrewmack1.github.io"
+ }
+}
diff --git a/domains/andriampeno.json b/domains/andriampeno.json
new file mode 100644
index 000000000..18e54c391
--- /dev/null
+++ b/domains/andriampeno.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain for my personal portfolio",
+ "repo": "https://github.com/odie100/odie100.github.io",
+ "owner": {
+ "username": "odie100",
+ "email": "andriampeno.odilon@gmail.com"
+ },
+ "record": {
+ "CNAME": "odie100.github.io"
+ }
+}
diff --git a/domains/andrianina.json b/domains/andrianina.json
index 94bfb1add..69528613d 100644
--- a/domains/andrianina.json
+++ b/domains/andrianina.json
@@ -1,11 +1,11 @@
{
- "description": "Domain for my personal blog",
- "repo": "https://github.com/rbaks/rbaks.github.io",
- "owner": {
- "username": "rbaks",
- "email": "andri.bakoson@gmail.com"
- },
- "record": {
- "CNAME": "rbaks.github.io"
- }
-}
\ No newline at end of file
+ "description": "Domain for my personal blog",
+ "repo": "https://github.com/rbaks/rbaks.github.io",
+ "owner": {
+ "username": "rbaks",
+ "email": "andri.bakoson@gmail.com"
+ },
+ "record": {
+ "CNAME": "rbaks.github.io"
+ }
+}
diff --git a/domains/andronasef.json b/domains/andronasef.json
index 6de1e3ebd..25145d5e1 100644
--- a/domains/andronasef.json
+++ b/domains/andronasef.json
@@ -1,12 +1,12 @@
{
- "description": "My Portfolio",
- "repo": "https://github.com/andronasef/andronasef.github.io",
- "owner": {
- "username": "andronasef",
- "email": "andronasef@gmail.com",
- "twitter": "andronasef"
- },
- "record": {
- "CNAME": "andronasef.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Portfolio",
+ "repo": "https://github.com/andronasef/andronasef.github.io",
+ "owner": {
+ "username": "andronasef",
+ "email": "andronasef@gmail.com",
+ "twitter": "andronasef"
+ },
+ "record": {
+ "CNAME": "andronasef.github.io"
+ }
+}
diff --git a/domains/andros.json b/domains/andros.json
index 7a7e38832..b2f3850cf 100644
--- a/domains/andros.json
+++ b/domains/andros.json
@@ -1,11 +1,10 @@
{
- "description": "Andros's personal developer website",
- "repo": "https://github.com/tanrax",
- "owner": {
- "username": "tanrax",
- "twitter": "androsfenollosa"
- },
- "record": {
- "URL": "https://programadorwebvalencia.com"
- }
-}
\ No newline at end of file
+ "description": "Andros's personal developer website",
+ "owner": {
+ "username": "tanrax",
+ "twitter": "androsfenollosa"
+ },
+ "record": {
+ "URL": "https://programadorwebvalencia.com"
+ }
+}
diff --git a/domains/andy.json b/domains/andy.json
index 5fe45a188..e6d4ec8f3 100644
--- a/domains/andy.json
+++ b/domains/andy.json
@@ -1,11 +1,11 @@
{
- "description": "Andy's portfolio website",
- "repo": "https://github.com/andyfaizan/andyfaizan.github.io",
- "owner": {
- "username": "andyfaizan",
- "email": "andyfaizan@gmail.com"
- },
- "record": {
- "CNAME": "andyfaizan.github.io"
- }
-}
\ No newline at end of file
+ "description": "Andy's portfolio website",
+ "repo": "https://github.com/andyfaizan/andyfaizan.github.io",
+ "owner": {
+ "username": "andyfaizan",
+ "email": "andyfaizan@gmail.com"
+ },
+ "record": {
+ "CNAME": "andyfaizan.github.io"
+ }
+}
diff --git a/domains/aneeqkhurram007.json b/domains/aneeqkhurram007.json
new file mode 100644
index 000000000..00c29b005
--- /dev/null
+++ b/domains/aneeqkhurram007.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aneeqkhurram007",
+ "email": "aneeqkhurram007@yahoo.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
\ No newline at end of file
diff --git a/domains/aneeshraskar.json b/domains/aneeshraskar.json
new file mode 100644
index 000000000..9bbbcc007
--- /dev/null
+++ b/domains/aneeshraskar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Zephyrus02",
+ "email": "aneeshraskar@gmail.com"
+ },
+ "record": {
+ "CNAME": "aneesh-raskar.vercel.app"
+ }
+}
diff --git a/domains/angel.json b/domains/angel.json
deleted file mode 100644
index 7271a425e..000000000
--- a/domains/angel.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chewieleaf",
- "email": "cchirrpy@outlook.com"
- },
- "record": {
- "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512"
- }
-}
\ No newline at end of file
diff --git a/domains/angellopomayay.json b/domains/angellopomayay.json
index 0bf757af3..e99027890 100644
--- a/domains/angellopomayay.json
+++ b/domains/angellopomayay.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Angello-Pomayay",
- "email": "angelopomayay@gmail.com"
- },
- "record": {
- "CNAME": "angello-pomayay.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Angello-Pomayay",
+ "email": "angelopomayay@gmail.com"
+ },
+ "record": {
+ "CNAME": "angello-pomayay.github.io"
+ }
+}
diff --git a/domains/angelo.json b/domains/angelo.json
index f42df8b5b..248103332 100644
--- a/domains/angelo.json
+++ b/domains/angelo.json
@@ -1,11 +1,11 @@
{
- "description": "Link for Angelo's personal site on GitHub pages",
- "repo": "https://github.com/angelofallars/angelofallars.github.io",
- "owner": {
- "username": "angelofallars",
- "email": "ba.fallaria@gmail.com"
- },
- "record": {
- "CNAME": "angelofallars.github.io"
- }
-}
\ No newline at end of file
+ "description": "Link for Angelo's personal site on GitHub pages",
+ "repo": "https://github.com/angelofallars/angelofallars.github.io",
+ "owner": {
+ "username": "angelofallars",
+ "email": "ba.fallaria@gmail.com"
+ },
+ "record": {
+ "CNAME": "angelofallars.github.io"
+ }
+}
diff --git a/domains/angelwuff.json b/domains/angelwuff.json
index d3d91c51c..b6f298fbb 100644
--- a/domains/angelwuff.json
+++ b/domains/angelwuff.json
@@ -1,11 +1,11 @@
{
- "description": "Angel Wuffy",
- "repo": "https://github.com/Angelix1/Angelix1.github.io",
- "owner": {
- "username": "Angelix1",
- "twitter": "AngelTheWolfy"
- },
- "record": {
- "CNAME": "angelix1.github.io"
- }
-}
\ No newline at end of file
+ "description": "Angel Wuffy",
+ "repo": "https://github.com/Angelix1/Angelix1.github.io",
+ "owner": {
+ "username": "Angelix1",
+ "twitter": "AngelTheWolfy"
+ },
+ "record": {
+ "CNAME": "angelix1.github.io"
+ }
+}
diff --git a/domains/angganix.json b/domains/angganix.json
new file mode 100644
index 000000000..9c87dedd8
--- /dev/null
+++ b/domains/angganix.json
@@ -0,0 +1,13 @@
+{
+ "description": "For personal site, blogging, and displayed portofolio",
+ "repo": "https://github.com/angganix/angganix.github.io",
+ "owner": {
+ "username": "angganix",
+ "email": "angganix@gmail.com"
+ },
+ "record": {
+ "CNAME": "angganix.github.io",
+ "TXT": "google-site-verification=q5JulUF0tB8rSEi7z2cnvV6IgMZr5En3l_O_uq70ijI"
+ },
+ "proxied": true
+}
diff --git a/domains/anhdt.json b/domains/anhdt.json
new file mode 100644
index 000000000..f7609133c
--- /dev/null
+++ b/domains/anhdt.json
@@ -0,0 +1,10 @@
+{
+ "description": "anhdt.is-a.dev",
+ "owner": {
+ "username": "dtavnn",
+ "email": "dtafzum@gmail.com"
+ },
+ "record": {
+ "CNAME": "dtavnn.github.io"
+ }
+}
diff --git a/domains/anhnguyen.json b/domains/anhnguyen.json
index 1a544a641..57d64afc5 100644
--- a/domains/anhnguyen.json
+++ b/domains/anhnguyen.json
@@ -1,21 +1,15 @@
{
- "owner": {
- "username": "NgTuanAnhDev",
- "discord": "828117990746226730",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.dxFeMXIpetS-y-w2HhyPm3jT9qQD7VXlzrjuKr0X2tYaDAsa5e-ZLfdoQ0Vi6ij2hVaULCTbvnhDGodA8Vfo2Bav69FAanB0eQp_-9e8C2O8XTm7Hc1PfQG0-QdASqYXzQLxa2K8Zsyi7i_MnjW9QcXB6OopVDPzuQkIFCD0ZBIMpxfSMYoZIJwWMIODl7qkdlrwOJaHev94VAEU8wjl9jdTJ7qUqwG_K8r2FXnRU4nvA8UUGbqoiTwqXgNWdln4S_dT6gRG1oINXS8MU55sRP_nrUsNYm5QRWiqFsKe9Ti8z00YhSJ3bvZLl353penT2lQfSdj2zEqBVNdp_J4s9Q._wjr6pPUcgjV8Pcqmb5jZw.qP7dPu7h2ZYoxAL8EzCmNuh_96Ak46xR4iMj14zoxcBMRnIKqxWQzPMp31OhvCP-a4j-_Ch3Xx4Qyl0AFKHF1b_itAmAo29o5QuG9Z3meYcHkwIxE7rrHLhnT6YaGXL_.2L3kt8GB7vNmXFwn5NauTA"
- },
- "record": {
- "A": [
- "103.97.126.29"
- ],
- "TXT": [
- "zoho-verification=zb23469214.zmverify.zoho.com",
- "v=spf1 include:zohomail.com ~all"
- ],
- "MX": [
- "mx.zoho.com",
- "mx2.zoho.com",
- "mx3.zoho.com"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "NgTuanAnhDev",
+ "discord": "828117990746226730",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.dxFeMXIpetS-y-w2HhyPm3jT9qQD7VXlzrjuKr0X2tYaDAsa5e-ZLfdoQ0Vi6ij2hVaULCTbvnhDGodA8Vfo2Bav69FAanB0eQp_-9e8C2O8XTm7Hc1PfQG0-QdASqYXzQLxa2K8Zsyi7i_MnjW9QcXB6OopVDPzuQkIFCD0ZBIMpxfSMYoZIJwWMIODl7qkdlrwOJaHev94VAEU8wjl9jdTJ7qUqwG_K8r2FXnRU4nvA8UUGbqoiTwqXgNWdln4S_dT6gRG1oINXS8MU55sRP_nrUsNYm5QRWiqFsKe9Ti8z00YhSJ3bvZLl353penT2lQfSdj2zEqBVNdp_J4s9Q._wjr6pPUcgjV8Pcqmb5jZw.qP7dPu7h2ZYoxAL8EzCmNuh_96Ak46xR4iMj14zoxcBMRnIKqxWQzPMp31OhvCP-a4j-_Ch3Xx4Qyl0AFKHF1b_itAmAo29o5QuG9Z3meYcHkwIxE7rrHLhnT6YaGXL_.2L3kt8GB7vNmXFwn5NauTA"
+ },
+ "record": {
+ "A": ["103.97.126.29"],
+ "TXT": [
+ "zoho-verification=zb23469214.zmverify.zoho.com",
+ "v=spf1 include:zohomail.com ~all"
+ ],
+ "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"]
+ }
+}
diff --git a/domains/anhnguyen94.json b/domains/anhnguyen94.json
index bfa9acfa5..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": {
- "CNAME": "anhnguyen1907.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio redirect for anhnguyen1907",
+ "owner": {
+ "username": "anhnguyen1907",
+ "email": "cau2tomy@gmail.com"
+ },
+ "record": {
+ "CNAME": "anhnguyen1907.github.io"
+ }
+}
diff --git a/domains/anhvt.json b/domains/anhvt.json
new file mode 100644
index 000000000..0fe602a8c
--- /dev/null
+++ b/domains/anhvt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anhvt3010",
+ "email": "anh.vt.3010@gmail.com"
+ },
+ "record": {
+ "CNAME": "build-cv.vercel.app"
+ }
+}
diff --git a/domains/anibalbastiass.json b/domains/anibalbastiass.json
index 629e61e1f..4fc3836f0 100644
--- a/domains/anibalbastiass.json
+++ b/domains/anibalbastiass.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "anibalbastiass",
- "email": "anibal.bastias@gmail.com"
- },
- "record": {
- "CNAME": "anibalbastiass.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anibalbastiass",
+ "email": "anibal.bastias@gmail.com"
+ },
+ "record": {
+ "CNAME": "anibalbastiass.github.io"
+ }
+}
diff --git a/domains/aniket-thapa.json b/domains/aniket-thapa.json
index 3fc57e796..f6c9aad0e 100644
--- a/domains/aniket-thapa.json
+++ b/domains/aniket-thapa.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aniket-thapa",
- "email": "aniketthapa04@gmail.com",
- "discord": "1249367001961463962"
- },
- "record": {
- "CNAME": "aniket-thapa.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aniket-thapa",
+ "email": "aniketthapa04@gmail.com",
+ "discord": "1249367001961463962"
+ },
+ "record": {
+ "CNAME": "aniket-thapa.github.io"
+ }
+}
diff --git a/domains/aniket.json b/domains/aniket.json
new file mode 100644
index 000000000..a99a6d2d1
--- /dev/null
+++ b/domains/aniket.json
@@ -0,0 +1,10 @@
+{
+ "description": "Domain that redirects to my personal portfolio",
+ "owner": {
+ "username": "anikxt",
+ "email": "aniket15304@gmail.com"
+ },
+ "record": {
+ "URL": "https://aniket.codes"
+ }
+}
diff --git a/domains/aniketrajsingh.json b/domains/aniketrajsingh.json
index 74090d0ff..063829a74 100644
--- a/domains/aniketrajsingh.json
+++ b/domains/aniketrajsingh.json
@@ -1,12 +1,12 @@
{
- "description": "The Domain is going to be used for my Portfolio",
- "repo": "https://github.com/aniketrajsingh/aniketrajsingh.github.io",
- "owner": {
- "username": "aniketrajsingh",
- "email": "aniket@tfug-ghaziabad.tech",
- "twitter": "aniketrajsingh_"
- },
- "record": {
- "CNAME": "aniketrajsingh.github.io"
- }
-}
\ No newline at end of file
+ "description": "The Domain is going to be used for my Portfolio",
+ "repo": "https://github.com/aniketrajsingh/aniketrajsingh.github.io",
+ "owner": {
+ "username": "aniketrajsingh",
+ "email": "aniket@tfug-ghaziabad.tech",
+ "twitter": "aniketrajsingh_"
+ },
+ "record": {
+ "CNAME": "aniketrajsingh.github.io"
+ }
+}
diff --git a/domains/anime-oni.json b/domains/anime-oni.json
index fc43ee30a..6ad6ff2cd 100644
--- a/domains/anime-oni.json
+++ b/domains/anime-oni.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "anime-oni",
- "email": "hiba.aashir@gmail.com",
- "discord": "1014232959143907429"
- },
- "record": {
- "CNAME": "anime-oni.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anime-oni",
+ "email": "hiba.aashir@gmail.com",
+ "discord": "1014232959143907429"
+ },
+ "record": {
+ "CNAME": "anime-oni.github.io"
+ }
+}
diff --git a/domains/anime.girl.json b/domains/anime.girl.json
new file mode 100644
index 000000000..00ab0224a
--- /dev/null
+++ b/domains/anime.girl.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ukriu",
+ "email": "isadev@ukriu.com"
+ },
+ "record": {
+ "CNAME": "ukriu.pages.dev"
+ }
+}
diff --git a/domains/anime.json b/domains/anime.json
deleted file mode 100644
index 545423bd5..000000000
--- a/domains/anime.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "zarqizoubir",
- "email": "zarqi.ezzoubair@etu.uae.ac.ma"
- },
- "record": {
- "CNAME": "zarqizoubir.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/animesh-kotka.json b/domains/animesh-kotka.json
new file mode 100644
index 000000000..261b1eb1b
--- /dev/null
+++ b/domains/animesh-kotka.json
@@ -0,0 +1,11 @@
+{
+ "description": "Simple Portfolio",
+ "repo": "https://github.com/AnimeshKotka/Animesh-Kotka-Portfolio",
+ "owner": {
+ "username": "AnimeshKotka",
+ "email": "animesh@kotka.tech"
+ },
+ "record": {
+ "CNAME": "animeshkotka.github.io"
+ }
+}
diff --git a/domains/animesh.json b/domains/animesh.json
index 1eecbb417..fb1bad073 100644
--- a/domains/animesh.json
+++ b/domains/animesh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "animeshryu",
- "email": "animeshryu@gmail.com"
- },
- "record": {
- "CNAME": "animesh.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "animeshryu",
+ "email": "animeshryu@gmail.com"
+ },
+ "record": {
+ "CNAME": "animesh.pages.dev"
+ }
+}
diff --git a/domains/anindra.json b/domains/anindra.json
index 6d096b41a..b3402c5b3 100644
--- a/domains/anindra.json
+++ b/domains/anindra.json
@@ -1,11 +1,11 @@
{
- "repo": "https://github.com/meanindra/meanindra.github.io",
- "owner": {
- "username": "meanindra",
- "email": "anindrakarmakar+pnswp5ix@proton.me",
- "twitter": "i_anindra"
- },
- "record": {
- "CNAME": "meanindra.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/meanindra/meanindra.github.io",
+ "owner": {
+ "username": "meanindra",
+ "email": "anindrakarmakar+pnswp5ix@proton.me",
+ "twitter": "i_anindra"
+ },
+ "record": {
+ "CNAME": "meanindra.github.io"
+ }
+}
diff --git a/domains/anirban-das.json b/domains/anirban-das.json
new file mode 100644
index 000000000..fae1432c3
--- /dev/null
+++ b/domains/anirban-das.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sherlock5000",
+ "email": "danirban5000@gmail.com"
+ },
+ "record": {
+ "CNAME": "sherlock5000.github.io"
+ }
+}
diff --git a/domains/anish.json b/domains/anish.json
index 7d9a1fa6e..8b26bd598 100644
--- a/domains/anish.json
+++ b/domains/anish.json
@@ -1,12 +1,12 @@
{
- "owner": {
- "username": "anish-mandal",
- "email": "anishmandalme1234@outlook.com",
- "twitter": "anishsay"
- },
- "description": "This website is for my personal portfolio.",
- "repo": "https://github.com/anish-mandal/anish-mandal.github.io",
- "record": {
- "CNAME": "anish-mandal.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anish-mandal",
+ "email": "anishmandalme1234@outlook.com",
+ "twitter": "anishsay"
+ },
+ "description": "This website is for my personal portfolio.",
+ "repo": "https://github.com/anish-mandal/anish-mandal.github.io",
+ "record": {
+ "CNAME": "anish-mandal.github.io"
+ }
+}
diff --git a/domains/aniwon.json b/domains/aniwon.json
index 8bf406138..e3db2432c 100644
--- a/domains/aniwon.json
+++ b/domains/aniwon.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "Panwar0",
- "email": "panwarnishchey+02@gmail.com",
- "discord": "821976026984611850"
- },
- "record": {
- "A": [
- "185.191.231.137"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Panwar0",
+ "email": "panwarnishchey+02@gmail.com",
+ "discord": "821976026984611850"
+ },
+ "record": {
+ "A": ["185.191.231.137"]
+ }
+}
diff --git a/domains/ankiprajapati.json b/domains/ankiprajapati.json
index b46847154..3537ed120 100644
--- a/domains/ankiprajapati.json
+++ b/domains/ankiprajapati.json
@@ -1,10 +1,10 @@
{
- "description": "ankit Prajapati.",
- "repo": "https://github.com/ankiprajapati/ankiprajapati.github.io",
- "owner": {
- "username": "ankiprajapati"
- },
- "record": {
- "CNAME": "ankiprajapati.github.io"
- }
-}
\ No newline at end of file
+ "description": "ankit Prajapati.",
+ "repo": "https://github.com/ankiprajapati/ankiprajapati.github.io",
+ "owner": {
+ "username": "ankiprajapati"
+ },
+ "record": {
+ "CNAME": "ankiprajapati.github.io"
+ }
+}
diff --git a/domains/ankit-acquaintsoft.json b/domains/ankit-acquaintsoft.json
index b84a5b434..8fbc75f61 100644
--- a/domains/ankit-acquaintsoft.json
+++ b/domains/ankit-acquaintsoft.json
@@ -1,10 +1,10 @@
{
- "description": "This website is a link to my personal developer portfolio.",
- "repo": "https://github.com/ankit-acquaintsoft/ankit-acquaintsoft.github.io",
- "owner": {
- "username": "ankit-dere"
- },
- "record": {
- "CNAME": "ankit-acquaintsoft.github.io"
- }
-}
\ No newline at end of file
+ "description": "This website is a link to my personal developer portfolio.",
+ "repo": "https://github.com/ankit-acquaintsoft/ankit-acquaintsoft.github.io",
+ "owner": {
+ "username": "ankit-dere"
+ },
+ "record": {
+ "CNAME": "ankit-acquaintsoft.github.io"
+ }
+}
diff --git a/domains/ankit-chaubey.json b/domains/ankit-chaubey.json
index 477c34e42..d5e3be97d 100644
--- a/domains/ankit-chaubey.json
+++ b/domains/ankit-chaubey.json
@@ -1,13 +1,13 @@
{
- "description": "Ankit Chaubey's GitHub page",
- "repo": "https://github.com/ankit-chaubey/ankit-chaubey",
- "owner": {
- "username": "ankit-chaubey",
- "email": "m.ankitchaubey@gmail.com",
- "telegram": "ankit_chaubey",
- "github": "ankit-chaubey"
- },
- "record": {
- "CNAME": "ankit-chaubey.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ankit Chaubey's GitHub page",
+ "repo": "https://github.com/ankit-chaubey/ankit-chaubey",
+ "owner": {
+ "username": "ankit-chaubey",
+ "email": "m.ankitchaubey@gmail.com",
+ "telegram": "ankit_chaubey",
+ "github": "ankit-chaubey"
+ },
+ "record": {
+ "CNAME": "ankit-chaubey.github.io"
+ }
+}
diff --git a/domains/ankit-kelkar.json b/domains/ankit-kelkar.json
new file mode 100644
index 000000000..1f43baee6
--- /dev/null
+++ b/domains/ankit-kelkar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "akelkar3",
+ "email": "ankit.kelkar@gmail.com"
+ },
+ "record": {
+ "CNAME": "akelkar3.github.io"
+ }
+}
diff --git a/domains/ankit.json b/domains/ankit.json
index 78f07ba14..d251fed82 100644
--- a/domains/ankit.json
+++ b/domains/ankit.json
@@ -1,11 +1,11 @@
{
- "description": "Will be using this subdomain for personal portfolio",
- "repo": "https://github.com/ankitjain-1/ankitjain-1.github.io",
- "owner": {
- "username": "ankitjain-1",
- "email": "akjain6067.aj@gmail.com"
- },
- "record": {
- "CNAME": "ankitjain-1.github.io"
- }
-}
\ No newline at end of file
+ "description": "Will be using this subdomain for personal portfolio",
+ "repo": "https://github.com/ankitjain-1/ankitjain-1.github.io",
+ "owner": {
+ "username": "ankitjain-1",
+ "email": "akjain6067.aj@gmail.com"
+ },
+ "record": {
+ "CNAME": "ankitjain-1.github.io"
+ }
+}
diff --git a/domains/ankitchaubey.json b/domains/ankitchaubey.json
index 477c34e42..d5e3be97d 100644
--- a/domains/ankitchaubey.json
+++ b/domains/ankitchaubey.json
@@ -1,13 +1,13 @@
{
- "description": "Ankit Chaubey's GitHub page",
- "repo": "https://github.com/ankit-chaubey/ankit-chaubey",
- "owner": {
- "username": "ankit-chaubey",
- "email": "m.ankitchaubey@gmail.com",
- "telegram": "ankit_chaubey",
- "github": "ankit-chaubey"
- },
- "record": {
- "CNAME": "ankit-chaubey.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ankit Chaubey's GitHub page",
+ "repo": "https://github.com/ankit-chaubey/ankit-chaubey",
+ "owner": {
+ "username": "ankit-chaubey",
+ "email": "m.ankitchaubey@gmail.com",
+ "telegram": "ankit_chaubey",
+ "github": "ankit-chaubey"
+ },
+ "record": {
+ "CNAME": "ankit-chaubey.github.io"
+ }
+}
diff --git a/domains/anmail.json b/domains/anmail.json
index 6608aa256..f6144335f 100644
--- a/domains/anmail.json
+++ b/domains/anmail.json
@@ -1,20 +1,16 @@
{
- "description": "Subdomain my own website and email forwarding",
- "repo": "https://github.com/ririko5834/register",
- "owner": {
- "username": "ririko5834",
- "email": "wolfo89+anmail@protonmail.com"
- },
- "record": {
- "A": [
- "167.235.217.200"
- ],
- "MX": [
- "5d84c429388a8a21.mx2.emailprofi.seznam.cz",
- "5d84c429388a8a21.mx1.emailprofi.seznam.cz"
- ],
- "TXT": [
- "v=spf1 include:spf.seznam.cz ~all"
- ]
- }
-}
\ No newline at end of file
+ "description": "Subdomain my own website and email forwarding",
+ "repo": "https://github.com/ririko5834/register",
+ "owner": {
+ "username": "ririko5834",
+ "email": "wolfo89+anmail@protonmail.com"
+ },
+ "record": {
+ "A": ["167.235.217.200"],
+ "MX": [
+ "5d84c429388a8a21.mx2.emailprofi.seznam.cz",
+ "5d84c429388a8a21.mx1.emailprofi.seznam.cz"
+ ],
+ "TXT": ["v=spf1 include:spf.seznam.cz ~all"]
+ }
+}
diff --git a/domains/anmol-chaudhary.json b/domains/anmol-chaudhary.json
new file mode 100644
index 000000000..5f5048ab9
--- /dev/null
+++ b/domains/anmol-chaudhary.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/4nmolChaudhary/portfolio-v2",
+ "owner": {
+ "username": "4nmolChaudhary",
+ "email": "chaudharyanmol321@gmail.com"
+ },
+ "record": {
+ "CNAME": "anmol-chaudhary.vercel.app"
+ }
+}
diff --git a/domains/anmol.json b/domains/anmol.json
new file mode 100644
index 000000000..85b55db21
--- /dev/null
+++ b/domains/anmol.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio webpage",
+ "repo": "https://github.com/tecanmol/Portfolio",
+ "owner": {
+ "username": "tecanmol",
+ "email": "panmol735@gmail.com"
+ },
+ "record": {
+ "CNAME": "tecanmol.github.io"
+ }
+}
diff --git a/domains/ann.json b/domains/ann.json
index c6697dbe9..c89a3086d 100644
--- a/domains/ann.json
+++ b/domains/ann.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website to host bio info and other things",
- "repo": "https://github.com/true1ann/true1ann.github.io",
- "owner": {
- "username": "true1ann",
- "email": "true1ann@tutamail.com"
- },
- "record": {
- "CNAME": "true1ann.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal website to host bio info and other things",
+ "repo": "https://github.com/true1ann/true1ann.github.io",
+ "owner": {
+ "username": "true1ann",
+ "email": "true1ann@tutamail.com"
+ },
+ "record": {
+ "CNAME": "true1ann.github.io"
+ }
+}
diff --git a/domains/anna.json b/domains/anna.json
index ceed30930..622e3f44c 100644
--- a/domains/anna.json
+++ b/domains/anna.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "annanas271",
- "email": "iamrvins@gmail.com",
- "discord": "1206164385911799850"
- },
- "record": {
- "CNAME": "annanas271.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "annanas271",
+ "email": "iamrvins@gmail.com",
+ "discord": "1206164385911799850"
+ },
+ "record": {
+ "CNAME": "annanas271.github.io"
+ }
+}
diff --git a/domains/annant.json b/domains/annant.json
index ada936366..395feff14 100644
--- a/domains/annant.json
+++ b/domains/annant.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ThatNerdyKun",
- "discord": "629851641579044874"
- },
- "record": {
- "CNAME": "annant.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ThatNerdyKun",
+ "discord": "629851641579044874"
+ },
+ "record": {
+ "CNAME": "annant.pages.dev"
+ }
+}
diff --git a/domains/annihilatorrrr.json b/domains/annihilatorrrr.json
index f5fcb68fc..600f87a54 100644
--- a/domains/annihilatorrrr.json
+++ b/domains/annihilatorrrr.json
@@ -1,12 +1,12 @@
{
- "repo": "https://github.com/annihilatorrrr/annihilatorrrr.github.io",
- "description": "My personal website.",
- "owner": {
- "username": "annihilatorrrr",
- "email": "annihilatorspark@gmail.com",
- "telegram": "annihilatorrrr"
- },
- "record": {
- "CNAME": "annihilatorrrr.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/annihilatorrrr/annihilatorrrr.github.io",
+ "description": "My personal website.",
+ "owner": {
+ "username": "annihilatorrrr",
+ "email": "annihilatorspark@gmail.com",
+ "telegram": "annihilatorrrr"
+ },
+ "record": {
+ "CNAME": "annihilatorrrr.github.io"
+ }
+}
diff --git a/domains/anon.json b/domains/anon.json
index ca16674ff..9a4eb40da 100644
--- a/domains/anon.json
+++ b/domains/anon.json
@@ -1,18 +1,16 @@
{
- "description": "Anondev's personal profile website",
- "repo": "https://github.com/anondev-sudo/anondev-sudo",
- "owner": {
- "username": "anondev-sudo",
- "email": "contact@anonym-dev.tk"
- },
- "record": {
- "A": [
- "216.24.57.1"
- ],
- "MX": [
- "4e7b2afdee66dc77.mx1.emailprofi.seznam.cz",
- "4e7b2afdee66dc77.mx2.emailprofi.seznam.cz"
- ],
- "TXT": "v=spf1 include:spf.seznam.cz ~all"
- }
-}
\ No newline at end of file
+ "description": "Anondev's personal profile website",
+ "repo": "https://github.com/anondev-sudo/anondev-sudo",
+ "owner": {
+ "username": "anondev-sudo",
+ "email": "contact@anonym-dev.tk"
+ },
+ "record": {
+ "A": ["216.24.57.1"],
+ "MX": [
+ "4e7b2afdee66dc77.mx1.emailprofi.seznam.cz",
+ "4e7b2afdee66dc77.mx2.emailprofi.seznam.cz"
+ ],
+ "TXT": "v=spf1 include:spf.seznam.cz ~all"
+ }
+}
diff --git a/domains/anonfr.json b/domains/anonfr.json
index 5e6622f2c..4cc83aa68 100644
--- a/domains/anonfr.json
+++ b/domains/anonfr.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "anonfr",
- "email": "anonfrr@protonmail.com"
- },
- "record": {
- "CNAME": "anonfr.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anonfr",
+ "email": "anonfrr@protonmail.com"
+ },
+ "record": {
+ "CNAME": "anonfr.github.io"
+ }
+}
diff --git a/domains/anony.json b/domains/anony.json
new file mode 100644
index 000000000..e47ce1d74
--- /dev/null
+++ b/domains/anony.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "celestix",
+ "email": "i@anodite.me"
+ },
+ "record": {
+ "URL": "https://anodite.me/"
+ }
+}
diff --git a/domains/ansari-atharnadim.json b/domains/ansari-atharnadim.json
index e556cf13c..6837342f1 100644
--- a/domains/ansari-atharnadim.json
+++ b/domains/ansari-atharnadim.json
@@ -1,10 +1,10 @@
{
- "description": "This is my website",
- "repo": "https://github.com/ansari-atharnadim/ansari-atharnadim.github.io",
- "owner": {
- "username": "ansari-atharnadim"
- },
- "record": {
- "CNAME": "ansari-atharnadim.github.io"
- }
-}
\ No newline at end of file
+ "description": "This is my website",
+ "repo": "https://github.com/ansari-atharnadim/ansari-atharnadim.github.io",
+ "owner": {
+ "username": "ansari-atharnadim"
+ },
+ "record": {
+ "CNAME": "ansari-atharnadim.github.io"
+ }
+}
diff --git a/domains/ansari-saify.json b/domains/ansari-saify.json
index 6b6e16046..59002b04f 100644
--- a/domains/ansari-saify.json
+++ b/domains/ansari-saify.json
@@ -1,10 +1,10 @@
{
- "description": "This website is a link to my personal developer portfolio.",
- "repo": "https://github.com/ansari-saify/ansari-saify.github.io",
- "owner": {
- "username": "ansari-saify"
- },
- "record": {
- "CNAME": "ansari-saify.github.io"
- }
-}
\ No newline at end of file
+ "description": "This website is a link to my personal developer portfolio.",
+ "repo": "https://github.com/ansari-saify/ansari-saify.github.io",
+ "owner": {
+ "username": "ansari-saify"
+ },
+ "record": {
+ "CNAME": "ansari-saify.github.io"
+ }
+}
diff --git a/domains/ansh.json b/domains/ansh.json
new file mode 100644
index 000000000..7a29bba12
--- /dev/null
+++ b/domains/ansh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anshaneja5",
+ "email": "anshanejaa@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-xi-liard-96.vercel.app"
+ }
+}
diff --git a/domains/anshdadwal.json b/domains/anshdadwal.json
index 95a9a6889..fb6ea974c 100644
--- a/domains/anshdadwal.json
+++ b/domains/anshdadwal.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "T-Dynamos",
- "email": "anshdadwal298@gmail.com"
- },
- "record": {
- "CNAME": "t-dynamos.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "T-Dynamos",
+ "email": "anshdadwal298@gmail.com"
+ },
+ "record": {
+ "CNAME": "t-dynamos.github.io"
+ }
+}
diff --git a/domains/anshkabra.json b/domains/anshkabra.json
new file mode 100644
index 000000000..1570caf77
--- /dev/null
+++ b/domains/anshkabra.json
@@ -0,0 +1,12 @@
+{
+ "description": "For my portfolio",
+ "repo": "https://github.com/Anshkabra2012/portfolio",
+ "owner": {
+ "username": "AnshKabra2012",
+ "email": "anshkabra.india@gmail.com",
+ "discord": "anshkabra2012"
+ },
+ "record": {
+ "CNAME": "anshkabra2012.github.io"
+ }
+}
diff --git a/domains/anshtyagi.json b/domains/anshtyagi.json
index d0db163a0..1afcbffcd 100644
--- a/domains/anshtyagi.json
+++ b/domains/anshtyagi.json
@@ -1,11 +1,10 @@
{
- "description": "Ansh's personal website",
- "repo": "https://github.com/anshtyagi0",
- "owner": {
- "username": "anshtyagi0",
- "email": "tyagiansh175@gmail.com"
- },
- "record": {
- "CNAME": "anshtyagi0093.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ansh's personal website",
+ "owner": {
+ "username": "anshtyagi0",
+ "email": "tyagiansh175@gmail.com"
+ },
+ "record": {
+ "CNAME": "anshtyagi0093.github.io"
+ }
+}
diff --git a/domains/anshu.json b/domains/anshu.json
index 643c35c8f..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"
- }
-}
\ No newline at end of file
+ "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 8261b7acb..073531e8a 100644
--- a/domains/ante.json
+++ b/domains/ante.json
@@ -1,14 +1,10 @@
{
- "owner": {
- "username": "antebrl",
- "email": "ahcwnh@gmail.com"
- },
- "record": {
- "A": [
- "130.61.108.36"
- ],
- "TXT": [
- "dh=6d109bce7d0aeacdc4a573c959d85a778d239527"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "antebrl",
+ "email": "ahcwnh@gmail.com"
+ },
+ "record": {
+ "A": ["130.61.108.36"],
+ "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"]
+ }
+}
diff --git a/domains/anthony.json b/domains/anthony.json
index a79dfd9ea..a9586a5b3 100644
--- a/domains/anthony.json
+++ b/domains/anthony.json
@@ -1,10 +1,10 @@
{
- "description": "Anthony's personal developer website",
- "owner": {
- "username": "hubsta",
- "email": "admin@thehubble.com.au"
- },
- "record": {
- "CNAME": "brisbaneweb.dev"
- }
-}
\ No newline at end of file
+ "description": "Anthony's personal developer website",
+ "owner": {
+ "username": "hubsta",
+ "email": "admin@thehubble.com.au"
+ },
+ "record": {
+ "CNAME": "brisbaneweb.dev"
+ }
+}
diff --git a/domains/anthony2be.json b/domains/anthony2be.json
index d1d8cae3e..aa83523a4 100644
--- a/domains/anthony2be.json
+++ b/domains/anthony2be.json
@@ -1,12 +1,12 @@
{
- "description": "Personal website",
- "repo": "github.com/Anthony2be/fresh-blog",
- "owner": {
- "username": "Anthony2be",
- "email": "adubovitsky1234@gmail.com",
- "discord": "anthony2be#1900"
- },
- "record": {
- "CNAME": "anthony2be-blog.deno.dev"
- }
-}
\ No newline at end of file
+ "description": "Personal website",
+ "repo": "github.com/Anthony2be/fresh-blog",
+ "owner": {
+ "username": "Anthony2be",
+ "email": "adubovitsky1234@gmail.com",
+ "discord": "anthony2be#1900"
+ },
+ "record": {
+ "CNAME": "anthony2be-blog.deno.dev"
+ }
+}
diff --git a/domains/anthonydev.json b/domains/anthonydev.json
new file mode 100644
index 000000000..49e267a4b
--- /dev/null
+++ b/domains/anthonydev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anthonyuseche",
+ "email": "anthonyuseche64@gmail.com"
+ },
+ "record": {
+ "CNAME": "anthonyuseche.github.io"
+ }
+}
diff --git a/domains/anthrxc.json b/domains/anthrxc.json
new file mode 100644
index 000000000..c46f12d71
--- /dev/null
+++ b/domains/anthrxc.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio website",
+ "repo": "https://github.com/anthrxc/portfolio",
+ "owner": {
+ "username": "anthrxc",
+ "email": "anthromadayt@gmail.com"
+ },
+ "record": {
+ "CNAME": "anthrxc.github.io"
+ }
+}
diff --git a/domains/anthxny.json b/domains/anthxny.json
index 712b633f5..dd857c480 100644
--- a/domains/anthxny.json
+++ b/domains/anthxny.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "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/anticens.json b/domains/anticens.json
index 977581ecb..8b530db41 100644
--- a/domains/anticens.json
+++ b/domains/anticens.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "IfVar",
- "email": "LZT7@proton.me"
- },
- "record": {
- "CNAME": "anticens.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "IfVar",
+ "email": "LZT7@proton.me"
+ },
+ "record": {
+ "CNAME": "anticens.github.io"
+ }
+}
diff --git a/domains/antimanipulationbridgade.json b/domains/antimanipulationbridgade.json
index 495752b15..726befd50 100644
--- a/domains/antimanipulationbridgade.json
+++ b/domains/antimanipulationbridgade.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "chiragnahata",
- "email": "chiragnahata05@gmail.com"
- },
- "record": {
- "A": [
- "129.213.151.29"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/antlis.json b/domains/antlis.json
index 33f8abea8..f70809489 100644
--- a/domains/antlis.json
+++ b/domains/antlis.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website",
- "repo": "https://github.com/antlis/antlis.github.io",
- "owner": {
- "username": "antlis",
- "email": "crabs@cock.li"
- },
- "record": {
- "CNAME": "antlis.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal website",
+ "repo": "https://github.com/antlis/antlis.github.io",
+ "owner": {
+ "username": "antlis",
+ "email": "crabs@cock.li"
+ },
+ "record": {
+ "CNAME": "antlis.github.io"
+ }
+}
diff --git a/domains/anto.json b/domains/anto.json
index f0cd34464..8e0e1174e 100644
--- a/domains/anto.json
+++ b/domains/anto.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "hardianto01",
- "email": "hardiantojek92@gmail.com"
- },
- "record": {
- "A": [
- "76.76.21.21"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "hardianto01",
+ "email": "hardiantojek92@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/antoangiaothong.akk1to.json b/domains/antoangiaothong.akk1to.json
index 1f67ff188..1e9ffd5d2 100644
--- a/domains/antoangiaothong.akk1to.json
+++ b/domains/antoangiaothong.akk1to.json
@@ -1,12 +1,12 @@
{
- "description": "This website is my personal portfollo XD (let it on rq)",
- "repo": "https://github.com/akk1to/atgtsystem",
- "owner": {
- "username": "akk1to",
- "email": "akk1to.dev@gmail.com",
- "discord": "727497287777124414"
- },
- "record": {
- "CNAME": "akk1to.github.io"
- }
-}
\ No newline at end of file
+ "description": "This website is my personal portfollo XD (let it on rq)",
+ "repo": "https://github.com/akk1to/atgtsystem",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "CNAME": "akk1to.github.io"
+ }
+}
diff --git a/domains/antogamer.json b/domains/antogamer.json
index 017df32d6..0cc101220 100644
--- a/domains/antogamer.json
+++ b/domains/antogamer.json
@@ -1,13 +1,11 @@
{
- "owner": {
- "username": "AntogamerYT",
- "email": "antonio.antogamer@gmail.com",
- "discord": "thisisanto",
- "twitter": "ThisIsAnto_"
- },
- "record": {
- "A": [
- "141.144.196.233"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AntogamerYT",
+ "email": "antonio.antogamer@gmail.com",
+ "discord": "thisisanto",
+ "twitter": "ThisIsAnto_"
+ },
+ "record": {
+ "A": ["141.144.196.233"]
+ }
+}
diff --git a/domains/anton.json b/domains/anton.json
index c0a9da032..e61a5235a 100644
--- a/domains/anton.json
+++ b/domains/anton.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "rorosin",
- "email": "rosin886@gmail.com"
- },
- "record": {
- "CNAME": "ru.ardev.tk"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "rorosin",
+ "email": "rosin886@gmail.com"
+ },
+ "record": {
+ "CNAME": "ru.ardev.tk"
+ }
+}
diff --git a/domains/antonio.json b/domains/antonio.json
index 97c5881ef..636e10ca0 100644
--- a/domains/antonio.json
+++ b/domains/antonio.json
@@ -1,11 +1,11 @@
{
- "description": "For my personal landing page",
- "repo": "https://github.com/YantCaccia/yantcaccia.github.io",
- "owner": {
- "username": "YantCaccia",
- "email": "yantcaccia@gmail.com"
- },
- "record": {
- "CNAME": "yantcaccia.github.io"
- }
-}
\ No newline at end of file
+ "description": "For my personal landing page",
+ "repo": "https://github.com/YantCaccia/yantcaccia.github.io",
+ "owner": {
+ "username": "YantCaccia",
+ "email": "yantcaccia@gmail.com"
+ },
+ "record": {
+ "CNAME": "yantcaccia.github.io"
+ }
+}
diff --git a/domains/antony.json b/domains/antony.json
new file mode 100644
index 000000000..d57d331c4
--- /dev/null
+++ b/domains/antony.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "AntonyPeter0",
+ "email": "antonypeter1998@gmail.com"
+ },
+ "description": "Sample resume page created for placeholding",
+ "record": {
+ "CNAME": "antonypeter0.github.io"
+ }
+}
diff --git a/domains/antton.json b/domains/antton.json
index cabf79b33..c054120bd 100644
--- a/domains/antton.json
+++ b/domains/antton.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "antton-dev",
- "email": "antton.chevrier@etik.com"
- },
- "record": {
- "CNAME": "antton-dev.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "antton-dev",
+ "email": "antton.chevrier@etik.com"
+ },
+ "record": {
+ "CNAME": "antton-dev.github.io"
+ }
+}
diff --git a/domains/anttondev.json b/domains/anttondev.json
index c1118c377..3f8cd350e 100644
--- a/domains/anttondev.json
+++ b/domains/anttondev.json
@@ -1,11 +1,11 @@
{
- "description": "Anttondev's portfolio",
- "repo": "https://github.com/antton-dev/portfolio-challenge",
- "owner": {
- "username": "antton-dev",
- "email": "antton.chevrier@etik.com"
- },
- "record": {
- "CNAME": "antton-dev.github.io"
- }
-}
\ No newline at end of file
+ "description": "Anttondev's portfolio",
+ "repo": "https://github.com/antton-dev/portfolio-challenge",
+ "owner": {
+ "username": "antton-dev",
+ "email": "antton.chevrier@etik.com"
+ },
+ "record": {
+ "CNAME": "antton-dev.github.io"
+ }
+}
diff --git a/domains/anubhav-pathak.json b/domains/anubhav-pathak.json
index bbd64e4fa..4daf901ba 100644
--- a/domains/anubhav-pathak.json
+++ b/domains/anubhav-pathak.json
@@ -1,11 +1,11 @@
{
- "description": "Documentation for is-a-dev",
- "repo": "https://github.com/Anubhav-Pathak/Anubhav-Pathak.github.io",
- "owner": {
- "username": "Anubhav-Pathak",
- "email": "anubhavpathak99@gmail.com"
- },
- "record": {
- "CNAME": "anubhav-pathak.github.io"
- }
-}
\ No newline at end of file
+ "description": "Documentation for is-a-dev",
+ "repo": "https://github.com/Anubhav-Pathak/Anubhav-Pathak.github.io",
+ "owner": {
+ "username": "Anubhav-Pathak",
+ "email": "anubhavpathak99@gmail.com"
+ },
+ "record": {
+ "CNAME": "anubhav-pathak.github.io"
+ }
+}
diff --git a/domains/anubhav823.json b/domains/anubhav823.json
index e31a98726..66b5a26ab 100644
--- a/domains/anubhav823.json
+++ b/domains/anubhav823.json
@@ -1,10 +1,10 @@
{
- "description": "anubhav823' personal developer website",
- "owner": {
- "username": "anubhav823",
- "email": "anubhav823@gmail.com"
- },
- "record": {
- "URL": "https://anubhav823.github.io/wordle"
- }
-}
\ No newline at end of file
+ "description": "anubhav823' personal developer website",
+ "owner": {
+ "username": "anubhav823",
+ "email": "anubhav823@gmail.com"
+ },
+ "record": {
+ "URL": "https://anubhav823.github.io/wordle"
+ }
+}
diff --git a/domains/anuj.json b/domains/anuj.json
index 2a840380e..895e640b6 100644
--- a/domains/anuj.json
+++ b/domains/anuj.json
@@ -1,11 +1,11 @@
{
- "description": "Anuj' Welcome to my portfolio",
- "repo": "https://anujmutha.github.io/Portfolio",
- "owner": {
- "username": "AnujMutha",
- "email": "mutha.am16@gmail.com"
- },
- "record": {
- "CNAME": "anujmutha.github.io"
- }
-}
\ No newline at end of file
+ "description": "Anuj' Welcome to my portfolio",
+ "repo": "https://anujmutha.github.io/Portfolio",
+ "owner": {
+ "username": "AnujMutha",
+ "email": "mutha.am16@gmail.com"
+ },
+ "record": {
+ "CNAME": "anujmutha.github.io"
+ }
+}
diff --git a/domains/anujer.json b/domains/anujer.json
new file mode 100644
index 000000000..f73196bb3
--- /dev/null
+++ b/domains/anujer.json
@@ -0,0 +1,11 @@
+{
+ "description": "Anuj' Welcome to my portfolio",
+ "repo": "https://github.com/Anuj-er/Folio-Anuj",
+ "owner": {
+ "username": "Anuj-er",
+ "email": "anujkumar142000@gmail.com"
+ },
+ "record": {
+ "CNAME": "siwach.vercel.app"
+ }
+}
diff --git a/domains/anukarop.json b/domains/anukarop.json
index 1e840f30b..b25c1a9aa 100644
--- a/domains/anukarop.json
+++ b/domains/anukarop.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "AnukarOP",
- "email": "anukarmishra2707@gmail.com",
- "discord": "AnukarOP"
- },
- "record": {
- "CNAME": "anukarop.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AnukarOP",
+ "email": "anukarmishra2707@gmail.com",
+ "discord": "AnukarOP"
+ },
+ "record": {
+ "CNAME": "anukarop.github.io"
+ }
+}
diff --git a/domains/anumeya.json b/domains/anumeya.json
index 705fa4fb2..650a1eaf7 100644
--- a/domains/anumeya.json
+++ b/domains/anumeya.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "KreativeThinker",
- "email": "sagely2005eagle@gmail.com"
- },
- "record": {
- "CNAME": "kreativethinker.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "KreativeThinker",
+ "email": "sagely2005eagle@gmail.com"
+ },
+ "record": {
+ "CNAME": "kreativethinker.github.io"
+ }
+}
diff --git a/domains/anurag.json b/domains/anurag.json
index 23f2a7f3d..90a981b07 100644
--- a/domains/anurag.json
+++ b/domains/anurag.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "anuragjawalkar",
- "email": "anurag24jawalkar@gmail.com"
- },
- "record": {
- "CNAME": "anuragjawalkar.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "anuragjawalkar",
+ "email": "anurag24jawalkar@gmail.com"
+ },
+ "record": {
+ "CNAME": "anuragjawalkar.github.io"
+ }
+}
diff --git a/domains/anuraglimbu.json b/domains/anuraglimbu.json
index 6f4aad922..ebbb12545 100644
--- a/domains/anuraglimbu.json
+++ b/domains/anuraglimbu.json
@@ -1,11 +1,10 @@
{
- "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"
- }
-}
\ No newline at end of file
+ "description": "This subdomain is for my personal portfolio website.",
+ "owner": {
+ "username": "auraglimbu",
+ "email": "anuraglimbu2018@gmail.com"
+ },
+ "record": {
+ "URL": "https://anuraglimbu.com.np"
+ }
+}
diff --git a/domains/anushi.json b/domains/anushi.json
new file mode 100644
index 000000000..2903884d6
--- /dev/null
+++ b/domains/anushi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Anushi' Welcome to my portfolio",
+ "repo": "https://github.com/anushi13prsnl/Anushi-Portfolio/",
+ "owner": {
+ "username": "Anushi13prsnl",
+ "email": "anushi4849@gmail.com"
+ },
+ "record": {
+ "CNAME": "anushi-portfolio.vercel.app"
+ }
+}
diff --git a/domains/anveshraman.json b/domains/anveshraman.json
new file mode 100644
index 000000000..6034749a5
--- /dev/null
+++ b/domains/anveshraman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SA-Army",
+ "email": "anveshraman.ae@gmail.com"
+ },
+ "record": {
+ "CNAME": "developeranveshraman.github.io"
+ }
+}
diff --git a/domains/anw.json b/domains/anw.json
new file mode 100644
index 000000000..6bdab900a
--- /dev/null
+++ b/domains/anw.json
@@ -0,0 +1,10 @@
+{
+ "description": "ANW's (Subhrajit Sain) Personal Site",
+ "owner": {
+ "username": "SubhrajitSain",
+ "email": "subhrajitsain34@gmail.com"
+ },
+ "record": {
+ "CNAME": "anw-site.vercel.app"
+ }
+}
diff --git a/domains/any.json b/domains/any.json
index 8094b0343..de7da893f 100644
--- a/domains/any.json
+++ b/domains/any.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "IRDMctorl",
- "email": "fun64646969@gmail.com"
- },
- "record": {
- "CNAME": "any-w1a3.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "IRDMctorl",
+ "email": "fun64646969@gmail.com"
+ },
+ "record": {
+ "CNAME": "any-w1a3.onrender.com"
+ }
+}
diff --git a/domains/aocsa.json b/domains/aocsa.json
index d6a6cb19d..43d1db144 100644
--- a/domains/aocsa.json
+++ b/domains/aocsa.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "aocsa",
- "email": "alexander.ocsa@gmail.com"
- },
- "record": {
- "CNAME": "aocsa.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aocsa",
+ "email": "alexander.ocsa@gmail.com"
+ },
+ "record": {
+ "CNAME": "aocsa.github.io"
+ }
+}
diff --git a/domains/aoozora.json b/domains/aoozora.json
new file mode 100644
index 000000000..f72814134
--- /dev/null
+++ b/domains/aoozora.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aoozoraa",
+ "email": "akuummuu@gmail.com"
+ },
+ "record": {
+ "A": ["143.47.59.128"]
+ }
+}
diff --git a/domains/aozora.json b/domains/aozora.json
index 686199cc1..5564fe41c 100644
--- a/domains/aozora.json
+++ b/domains/aozora.json
@@ -1,11 +1,10 @@
{
- "description": "Just my personal website",
- "repo": "https://github.com/AozoraDev",
- "owner": {
- "username": "AozoraDev",
- "email": "aozoradeveloper@gmail.com"
- },
- "record": {
- "CNAME": "website-production-5fc2.up.railway.app"
- }
-}
\ No newline at end of file
+ "description": "Just my personal website",
+ "owner": {
+ "username": "AozoraDev",
+ "email": "aozoradeveloper@gmail.com"
+ },
+ "record": {
+ "CNAME": "website-production-5fc2.up.railway.app"
+ }
+}
diff --git a/domains/ap2.json b/domains/ap2.json
index 1bd3e7603..4f1926b86 100644
--- a/domains/ap2.json
+++ b/domains/ap2.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "code-hunt-in",
- "email": "aishwary.pandore@somaiya.edu"
- },
- "record": {
- "CNAME": "code-hunt-in.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "code-hunt-in",
+ "email": "aishwary.pandore@somaiya.edu"
+ },
+ "record": {
+ "CNAME": "code-hunt-in.github.io"
+ }
+}
diff --git a/domains/apam.json b/domains/apam.json
index 2078a0977..ace8aeeb8 100644
--- a/domains/apam.json
+++ b/domains/apam.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "iamxani",
- "email": "xenpei11@gmail.com"
- },
- "record": {
- "CNAME": "iamxani.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "iamxani",
+ "email": "xenpei11@gmail.com"
+ },
+ "record": {
+ "CNAME": "iamxani.github.io"
+ }
+}
diff --git a/domains/apep.json b/domains/apep.json
index 4fad09661..500e0129c 100644
--- a/domains/apep.json
+++ b/domains/apep.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "ArasakaID",
- "email": "afifeka20@gmail.com",
- "discord": "331616752767205378"
- },
- "record": {
- "A": [
- "8.222.249.188"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ArasakaID",
+ "email": "afifeka20@gmail.com",
+ "discord": "331616752767205378"
+ },
+ "record": {
+ "A": ["8.222.249.188"]
+ }
+}
diff --git a/domains/apgyorfi.json b/domains/apgyorfi.json
index 51dc52e59..ded124ff7 100644
--- a/domains/apgyorfi.json
+++ b/domains/apgyorfi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "apgyorfi",
- "email": "apgyorfi@protonmail.com"
- },
- "record": {
- "CNAME": "gfsys.hu"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "apgyorfi",
+ "email": "apgyorfi@protonmail.com"
+ },
+ "record": {
+ "CNAME": "gfsys.hu"
+ }
+}
diff --git a/domains/api-kirito.json b/domains/api-kirito.json
index 1d26a4ce8..36102645d 100644
--- a/domains/api-kirito.json
+++ b/domains/api-kirito.json
@@ -1,11 +1,10 @@
{
- "description": "For My API!",
- "repo": "https://github.com/ThisMe124",
- "owner": {
- "username": "ThisMe124",
- "email": "anonymous.orgn@gmail.com"
- },
- "record": {
- "CNAME": "only-devs-production.up.railway.app"
- }
-}
\ No newline at end of file
+ "description": "For My API!",
+ "owner": {
+ "username": "ThisMe124",
+ "email": "anonymous.orgn@gmail.com"
+ },
+ "record": {
+ "CNAME": "only-devs-production.up.railway.app"
+ }
+}
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 1c62a626d..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"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AcronicalYT",
+ "email": "acronicalbusiness@gmail.com"
+ },
+ "record": {
+ "A": ["138.68.133.84"]
+ }
+}
diff --git a/domains/api.anshtyagi.json b/domains/api.anshtyagi.json
index e8b24844a..fa67dace8 100644
--- a/domains/api.anshtyagi.json
+++ b/domains/api.anshtyagi.json
@@ -1,13 +1,10 @@
{
- "description": "API WEBSITE",
- "repo": "https://github.com/anshtyagi0",
- "owner": {
- "username": "anshtyagi0",
- "email": "tyagiansh175@gmail.com"
- },
- "record": {
- "A": [
- "20.197.60.252"
- ]
- }
-}
\ No newline at end of file
+ "description": "API WEBSITE",
+ "owner": {
+ "username": "anshtyagi0",
+ "email": "tyagiansh175@gmail.com"
+ },
+ "record": {
+ "A": ["20.197.60.252"]
+ }
+}
diff --git a/domains/api.catzboy.json b/domains/api.catzboy.json
index 194e78d92..376e4f271 100644
--- a/domains/api.catzboy.json
+++ b/domains/api.catzboy.json
@@ -1,11 +1,11 @@
{
- "description": "Api",
- "repo": "https://github.com/Maruful007/Maruful007.github.io",
- "owner": {
- "username": "Maruful007",
- "email": "marufulislamsami2007@gmail.com"
- },
- "record": {
- "CNAME": "maruful007.github.io"
- }
-}
\ No newline at end of file
+ "description": "Api",
+ "repo": "https://github.com/Maruful007/Maruful007.github.io",
+ "owner": {
+ "username": "Maruful007",
+ "email": "marufulislamsami2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "maruful007.github.io"
+ }
+}
diff --git a/domains/api.dark.json b/domains/api.dark.json
new file mode 100644
index 000000000..c8ff1362d
--- /dev/null
+++ b/domains/api.dark.json
@@ -0,0 +1,11 @@
+{
+ "description": "API for a Discord bot",
+ "owner": {
+ "username": "BruhDark",
+ "email": "darkpxint@gmail.com",
+ "discord": "dark.py"
+ },
+ "record": {
+ "A": ["34.57.65.208"]
+ }
+}
diff --git a/domains/api.formuna.json b/domains/api.formuna.json
index 3ecc7c96a..9e85e83df 100644
--- a/domains/api.formuna.json
+++ b/domains/api.formuna.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "FormunaGit"
- },
- "record": {
- "CNAME": "formuna-api.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "FormunaGit"
+ },
+ "record": {
+ "CNAME": "formuna-api.vercel.app"
+ }
+}
diff --git a/domains/api.gizzy.json b/domains/api.gizzy.json
index 625093a8e..dfda75708 100644
--- a/domains/api.gizzy.json
+++ b/domains/api.gizzy.json
@@ -1,12 +1,10 @@
{
- "description": "api.gizzy.is-a.dev",
- "owner": {
- "username": "GizzyUwU",
- "discord": "gizzyowo"
- },
- "record": {
- "A": [
- "76.76.21.21"
- ]
- }
-}
\ No newline at end of file
+ "description": "api.gizzy.is-a.dev",
+ "owner": {
+ "username": "GizzyUwU",
+ "discord": "gizzyowo"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/api.juststudio.json b/domains/api.juststudio.json
index fb8680844..f6d1dc59b 100644
--- a/domains/api.juststudio.json
+++ b/domains/api.juststudio.json
@@ -1,16 +1,12 @@
{
- "description": "JustStudio.API. Docs: https://juststudio.is-a.dev/api",
- "owner": {
- "username": "JustDeveloper1",
- "email": "support@juststudio.is-a.dev",
- "discord": "1117482901353812088"
- },
- "record": {
- "A": [
- "34.120.54.55"
- ],
- "AAAA": [
- "2600:1901:0:6d85::"
- ]
- }
-}
\ No newline at end of file
+ "description": "JustStudio.API. Docs: https://juststudio.is-a.dev/api",
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "A": ["34.120.54.55"],
+ "AAAA": ["2600:1901:0:6d85::"]
+ }
+}
diff --git a/domains/api.karyakarsa.willo.json b/domains/api.karyakarsa.willo.json
deleted file mode 100644
index 18b4f3e5f..000000000
--- a/domains/api.karyakarsa.willo.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "api for karyakarsa",
- "repo": "https://github.com/WilloIzCitron/karyakarsa-rest-api",
- "owner": {
- "username": "WilloIzCitron",
- "twitter": "willoizcitron"
- },
- "record": {
- "CNAME": "karyakarsa-rest-api-production.up.railway.app"
- }
-}
\ No newline at end of file
diff --git a/domains/api.katidoki.json b/domains/api.katidoki.json
new file mode 100644
index 000000000..54be96678
--- /dev/null
+++ b/domains/api.katidoki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hitoshi-okada",
+ "email": "okada@katidoki.com"
+ },
+ "record": {
+ "CNAME": "hitoshi-okada.github.io"
+ }
+}
diff --git a/domains/api.kruase.json b/domains/api.kruase.json
new file mode 100644
index 000000000..e08408500
--- /dev/null
+++ b/domains/api.kruase.json
@@ -0,0 +1,14 @@
+{
+ "description": "Development and pet-project APIs",
+ "repo": "https://github.com/KruASe76",
+ "owner": {
+ "username": "KruASe76",
+ "email": "kruanse@ya.ru",
+ "telegram": "https://t.me/KruASe"
+ },
+ "record": {
+ "A": [
+ "89.19.177.86"
+ ]
+ }
+}
diff --git a/domains/api.kyizl.json b/domains/api.kyizl.json
new file mode 100644
index 000000000..9d14c9352
--- /dev/null
+++ b/domains/api.kyizl.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "oqzx",
+ "email": "ekn@envs.net"
+ },
+ "record": {
+ "CNAME": "rev.kyizl.workers.dev"
+ }
+}
diff --git a/domains/api.namkun.json b/domains/api.namkun.json
index 1a8133240..c06d4d968 100644
--- a/domains/api.namkun.json
+++ b/domains/api.namkun.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "beocaca",
- "email": "namdev1402@gmail.com"
- },
- "record": {
- "CNAME": "a.namkun.workers.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "beocaca",
+ "email": "namdev1402@gmail.com"
+ },
+ "record": {
+ "CNAME": "a.namkun.workers.dev"
+ }
+}
diff --git a/domains/api.rachancheet.json b/domains/api.rachancheet.json
new file mode 100644
index 000000000..d244b1026
--- /dev/null
+++ b/domains/api.rachancheet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rachancheet",
+ "email": "raxxsngh37@gmail.com"
+ },
+ "record": {
+ "A": ["152.67.163.7"]
+ }
+}
diff --git a/domains/api.seiko.json b/domains/api.seiko.json
index 6314cf4e8..0dfeedd7e 100644
--- a/domains/api.seiko.json
+++ b/domains/api.seiko.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "Delta-0mega",
- "email": "seikoo.dev@gmail.com",
- "discord": "1293641904860172389"
- },
- "record": {
- "A": [
- "88.151.197.194"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Delta-0mega",
+ "email": "seikoo.dev@gmail.com",
+ "discord": "1293641904860172389"
+ },
+ "record": {
+ "A": ["88.151.197.194"]
+ }
+}
diff --git a/domains/api.semant.json b/domains/api.semant.json
index 5fb9cbd14..eef2b7841 100644
--- a/domains/api.semant.json
+++ b/domains/api.semant.json
@@ -1,13 +1,11 @@
{
- "description": "Semant Api",
- "owner": {
- "username": "ihacksemant",
- "email": "contact@semant.is-a.dev",
- "discord": "445073800850046977"
- },
- "record": {
- "A": [
- "69.197.135.205"
- ]
- }
-}
\ No newline at end of file
+ "description": "Semant Api",
+ "owner": {
+ "username": "ihacksemant",
+ "email": "contact@semant.is-a.dev",
+ "discord": "445073800850046977"
+ },
+ "record": {
+ "A": ["69.197.135.205"]
+ }
+}
diff --git a/domains/api.shockbs.json b/domains/api.shockbs.json
index 978a8d740..d7029f533 100644
--- a/domains/api.shockbs.json
+++ b/domains/api.shockbs.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "shockbs",
- "discord": "880084860327313459"
- },
- "record": {
- "A": [
- "69.30.249.53"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "shockbs",
+ "discord": "880084860327313459"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/api.zoom.json b/domains/api.zoom.json
index e25a4e42e..3c72d6bbd 100644
--- a/domains/api.zoom.json
+++ b/domains/api.zoom.json
@@ -1,13 +1,13 @@
{
- "description": "A API where I will host all of my images/videos/stuff like it",
- "repo": "https://github.com/theoldzoom/theoldzoom.github.io",
- "owner": {
- "username": "theoldzoom",
- "email": "theoldzoom@gmail.com",
- "twitter": "theoldzoom",
- "discord": "theoldzoom"
- },
- "record": {
- "CNAME": "theoldzoom.github.io"
- }
-}
\ No newline at end of file
+ "description": "A API where I will host all of my images/videos/stuff like it",
+ "repo": "https://github.com/theoldzoom/theoldzoom.github.io",
+ "owner": {
+ "username": "theoldzoom",
+ "email": "theoldzoom@gmail.com",
+ "twitter": "theoldzoom",
+ "discord": "theoldzoom"
+ },
+ "record": {
+ "CNAME": "theoldzoom.github.io"
+ }
+}
diff --git a/domains/apigeon.json b/domains/apigeon.json
index dd2ba852f..563669d93 100644
--- a/domains/apigeon.json
+++ b/domains/apigeon.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "mepuntojr1",
- "email": "eepuntojr@gmail.com"
- },
- "record": {
- "CNAME": "sites.bootstrapstudio.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "mepuntojr1",
+ "email": "eepuntojr@gmail.com"
+ },
+ "record": {
+ "CNAME": "sites.bootstrapstudio.io"
+ }
+}
diff --git a/domains/apoloz.json b/domains/apoloz.json
index c002f46b3..dc2428e14 100644
--- a/domains/apoloz.json
+++ b/domains/apoloz.json
@@ -1,13 +1,11 @@
{
- "description": "Anatoliy Poloz portfolio",
- "repo": "https://github.com/tolyod/tolyod.github.io",
- "owner": {
- "username": "tolyod",
- "email": "anatoliy.poloz@gmail.com"
- },
- "record": {
- "A": [
- "185.185.71.114"
- ]
- }
-}
\ No newline at end of file
+ "description": "Anatoliy Poloz portfolio",
+ "repo": "https://github.com/tolyod/tolyod.github.io",
+ "owner": {
+ "username": "tolyod",
+ "email": "anatoliy.poloz@gmail.com"
+ },
+ "record": {
+ "A": ["185.185.71.114"]
+ }
+}
diff --git a/domains/apostolos.json b/domains/apostolos.json
index 9badf96e2..029ecae6e 100644
--- a/domains/apostolos.json
+++ b/domains/apostolos.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "tolisdev",
- "email": "a.katsoudas@yahoo.com"
- },
- "record": {
- "CNAME": "lux1.apostolosk.eu.org"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "tolisdev",
+ "email": "a.katsoudas@yahoo.com"
+ },
+ "record": {
+ "CNAME": "lux1.apostolosk.eu.org"
+ }
+}
diff --git a/domains/app-giua.json b/domains/app-giua.json
index dc9d59856..26d28e91c 100644
--- a/domains/app-giua.json
+++ b/domains/app-giua.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "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.allancoding.json b/domains/app.allancoding.json
index 848e49a62..fe1c19ff5 100644
--- a/domains/app.allancoding.json
+++ b/domains/app.allancoding.json
@@ -1,14 +1,12 @@
{
- "description": "My app website for diffrent services",
- "owner": {
- "username": "allancoding",
- "email": "allancoding.dev@gmail.com",
- "twitter": "allancoding",
- "discord": "allancoding"
- },
- "record": {
- "A": [
- "206.188.218.143"
- ]
- }
-}
\ No newline at end of file
+ "description": "My app website for diffrent services",
+ "owner": {
+ "username": "allancoding",
+ "email": "allancoding.dev@gmail.com",
+ "twitter": "allancoding",
+ "discord": "allancoding"
+ },
+ "record": {
+ "A": ["206.188.218.143"]
+ }
+}
diff --git a/domains/app.json b/domains/app.json
deleted file mode 100644
index 1bd3e7603..000000000
--- a/domains/app.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "code-hunt-in",
- "email": "aishwary.pandore@somaiya.edu"
- },
- "record": {
- "CNAME": "code-hunt-in.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/app.vyductan.json b/domains/app.vyductan.json
index 3107f5e19..fd12147df 100644
--- a/domains/app.vyductan.json
+++ b/domains/app.vyductan.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "vyductan",
- "email": "vdt5snet@gmail.com",
- "discord": "370012050316984321"
- },
- "record": {
- "A": [
- "76.76.21.21"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "vyductan",
+ "email": "vdt5snet@gmail.com",
+ "discord": "370012050316984321"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/applesfruit.json b/domains/applesfruit.json
index 9125cc41c..867827717 100644
--- a/domains/applesfruit.json
+++ b/domains/applesfruit.json
@@ -1,12 +1,12 @@
{
- "description": "Personal portfolio page with my recent and past projects, experiences, and more.",
- "repo": "https://github.com/applesfruit/applesfruit.github.io",
- "owner": {
- "username": "applesfruit",
- "email": "arya.kshipra@gmail.com",
- "discord": "fruits#1845"
- },
- "record": {
- "CNAME": "applesfruit.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal portfolio page with my recent and past projects, experiences, and more.",
+ "repo": "https://github.com/applesfruit/applesfruit.github.io",
+ "owner": {
+ "username": "applesfruit",
+ "email": "arya.kshipra@gmail.com",
+ "discord": "fruits#1845"
+ },
+ "record": {
+ "CNAME": "applesfruit.github.io"
+ }
+}
diff --git a/domains/appointer.json b/domains/appointer.json
index 16e10aee8..81362c363 100644
--- a/domains/appointer.json
+++ b/domains/appointer.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "MrDaPoyo",
- "email": "wiiuforever25@gmail.com",
- "discord": "1147531188148375623"
- },
- "record": {
- "CNAME": "appointer-z3jo.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "MrDaPoyo",
+ "email": "wiiuforever25@gmail.com",
+ "discord": "1147531188148375623"
+ },
+ "record": {
+ "CNAME": "appointer-z3jo.onrender.com"
+ }
+}
diff --git a/domains/april.json b/domains/april.json
index 339bf5bf7..d2171486d 100644
--- a/domains/april.json
+++ b/domains/april.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/arithefirst/portfolio",
- "owner": {
- "username": "arithefirst",
- "email": "ari@arithefirst.com"
- },
- "record": {
- "URL": "https://www.arithefirst.com"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/arithefirst/portfolio",
+ "owner": {
+ "username": "arithefirst",
+ "email": "ari@arithefirst.com"
+ },
+ "record": {
+ "URL": "https://www.arithefirst.com"
+ }
+}
diff --git a/domains/apurbo.json b/domains/apurbo.json
index 885b49230..23a81e822 100644
--- a/domains/apurbo.json
+++ b/domains/apurbo.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "apurboislam",
- "discord": "740207602855575565",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.inMY-tFiYyZXUCfpIqjoBHdeJLbSiZFxjMEUBeTHytVAiirU56zAh_JfBQPNkTx_yE_maOaKmEXeP1jOzQCVcw91TaK7fQOQuuGBh9Kk30txzdTftWMxE5c8_RrlczDlweePk2mLmrMjZC8aMRVNJoJIAms7CJLsm7llHVYn5ODXAjQL9wngf6ZEqvvohKZi-9VZVq6JRKd9hPf1EcGWWO_66pKFnx0SerS-057fN_3VtFp6JnSCb_iZFz1LgkR6Yqhce2twR0vdvxIBzgS9p9uF6JuHq7tvJOEq6kxnqATLPB8rLVDIzT1o_NHm7VhRCUboaKRERjrrksC2FGX9Pw.RSnWj6DFoMv81N8Rz3EP9w.7H2S5qSGZykz8Fv7XGOY4uhqiHB79IEOAj4Qat3cLhmpplmI-DtMjY_WqBp0VMtQo8v_o-7Y-822yaQmlJCEjwWMhPmcfM6A51NuPQnxsi7GUsesfzon71ksf1gy33XnrgFjdTC2BpppKdyCvGXq3Q.Gpxu1_DwG-tQbspNfQOWcQ"
- },
- "record": {
- "CNAME": "apurboislam.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "apurboislam",
+ "discord": "740207602855575565",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.inMY-tFiYyZXUCfpIqjoBHdeJLbSiZFxjMEUBeTHytVAiirU56zAh_JfBQPNkTx_yE_maOaKmEXeP1jOzQCVcw91TaK7fQOQuuGBh9Kk30txzdTftWMxE5c8_RrlczDlweePk2mLmrMjZC8aMRVNJoJIAms7CJLsm7llHVYn5ODXAjQL9wngf6ZEqvvohKZi-9VZVq6JRKd9hPf1EcGWWO_66pKFnx0SerS-057fN_3VtFp6JnSCb_iZFz1LgkR6Yqhce2twR0vdvxIBzgS9p9uF6JuHq7tvJOEq6kxnqATLPB8rLVDIzT1o_NHm7VhRCUboaKRERjrrksC2FGX9Pw.RSnWj6DFoMv81N8Rz3EP9w.7H2S5qSGZykz8Fv7XGOY4uhqiHB79IEOAj4Qat3cLhmpplmI-DtMjY_WqBp0VMtQo8v_o-7Y-822yaQmlJCEjwWMhPmcfM6A51NuPQnxsi7GUsesfzon71ksf1gy33XnrgFjdTC2BpppKdyCvGXq3Q.Gpxu1_DwG-tQbspNfQOWcQ"
+ },
+ "record": {
+ "CNAME": "apurboislam.github.io"
+ }
+}
diff --git a/domains/apurboislam.json b/domains/apurboislam.json
index 710bf19ce..3753ece51 100644
--- a/domains/apurboislam.json
+++ b/domains/apurboislam.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "apurboislam",
- "discord": "740207602855575565",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Tb7jeRGTM3baPJ66NxXky5UUpue3qxinQq5Fq_qYbhEojPyOjmyTJopWxZGfTIie-42dA5RE5sEGUWU3YTEtXq8jvyQA2Alhv0Mz4fHfbfb7CKClfuoBT-_gJBxhrIRtOzfAXMkBofshbSTk8n8w0fcNaFRNn61YFjpULCdAJ_mf7ZGU6wmUxPvOdejIMskSXYPif0rQSk3DO2WHPxQO17fUPDaU3Q0u52CTTStdyyH3Efrj_DV7_wStGocc0AQQ2lUXxn_bPEJ1f8PzgVUk8AYbc0jQjQeokjtcRda4IIWn01CJ2s23xKJ1VW6ytPTYh91K72RINOHcFrY4miFyfA.EtMgYVQwI8Fkim2yde90bg.opKL6p-2Wkm2NpUIpUZD64bRAaGxY_PujYozpSQd24hSw_tEYcSsWR2LB43u-Whzv3ILzUyQIYAXT-q_W_ZP0dESFauT2szYJ759LjVconDiQPYpb7Y6M7K9ybJRkXDuDTgyx9QPBjG8uqdSRxQ3cQ.NrG09Bz5PZwk5xtQ77MELA"
- },
- "record": {
- "CNAME": "apurboislam.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "apurboislam",
+ "discord": "740207602855575565",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Tb7jeRGTM3baPJ66NxXky5UUpue3qxinQq5Fq_qYbhEojPyOjmyTJopWxZGfTIie-42dA5RE5sEGUWU3YTEtXq8jvyQA2Alhv0Mz4fHfbfb7CKClfuoBT-_gJBxhrIRtOzfAXMkBofshbSTk8n8w0fcNaFRNn61YFjpULCdAJ_mf7ZGU6wmUxPvOdejIMskSXYPif0rQSk3DO2WHPxQO17fUPDaU3Q0u52CTTStdyyH3Efrj_DV7_wStGocc0AQQ2lUXxn_bPEJ1f8PzgVUk8AYbc0jQjQeokjtcRda4IIWn01CJ2s23xKJ1VW6ytPTYh91K72RINOHcFrY4miFyfA.EtMgYVQwI8Fkim2yde90bg.opKL6p-2Wkm2NpUIpUZD64bRAaGxY_PujYozpSQd24hSw_tEYcSsWR2LB43u-Whzv3ILzUyQIYAXT-q_W_ZP0dESFauT2szYJ759LjVconDiQPYpb7Y6M7K9ybJRkXDuDTgyx9QPBjG8uqdSRxQ3cQ.NrG09Bz5PZwk5xtQ77MELA"
+ },
+ "record": {
+ "CNAME": "apurboislam.github.io"
+ }
+}
diff --git a/domains/aqilhensem.json b/domains/aqilhensem.json
index a03c6e9fb..84c94a4f2 100644
--- a/domains/aqilhensem.json
+++ b/domains/aqilhensem.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "qing762",
- "email": "threatedblade@outlook.com"
- },
- "record": {
- "CNAME": "qing762.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "qing762",
+ "email": "threatedblade@outlook.com"
+ },
+ "record": {
+ "CNAME": "qing762.github.io"
+ }
+}
diff --git a/domains/aqsakhan.json b/domains/aqsakhan.json
index 85b272390..00a076915 100644
--- a/domains/aqsakhan.json
+++ b/domains/aqsakhan.json
@@ -1,12 +1,12 @@
{
- "description": "personal portfolio",
- "repo": "https://github.com/aqsakhan/v1.github.io",
- "owner": {
- "username": "aqsakhan",
- "email": "aqsa250bpl@outlook.com",
- "twitter": "aqsa_khan32"
- },
- "record": {
- "CNAME": "v1-7tp.pages.dev"
- }
-}
\ No newline at end of file
+ "description": "personal portfolio",
+ "repo": "https://github.com/aqsakhan/v1.github.io",
+ "owner": {
+ "username": "aqsakhan",
+ "email": "aqsa250bpl@outlook.com",
+ "twitter": "aqsa_khan32"
+ },
+ "record": {
+ "CNAME": "v1-7tp.pages.dev"
+ }
+}
diff --git a/domains/aqtk.json b/domains/aqtk.json
index 2d998d534..8944d5422 100644
--- a/domains/aqtk.json
+++ b/domains/aqtk.json
@@ -1,13 +1,11 @@
{
- "description": "Describe the use of this subdomain",
- "repo": "https://github.com/GoldenStarGamer/aqtk",
- "owner": {
- "username": "GoldenStarGamer",
- "email": "vicentetavareslima@gmail.com"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ]
- }
-}
\ No newline at end of file
+ "description": "Describe the use of this subdomain",
+ "repo": "https://github.com/GoldenStarGamer/aqtk",
+ "owner": {
+ "username": "GoldenStarGamer",
+ "email": "vicentetavareslima@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/aqua.json b/domains/aqua.json
index 9f8dba35d..e510bacb1 100644
--- a/domains/aqua.json
+++ b/domains/aqua.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AquaQuokka",
- "email": "aquaquokka@outlook.com"
- },
- "record": {
- "CNAME": "aquaquokka.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AquaQuokka",
+ "email": "aquaquokka@outlook.com"
+ },
+ "record": {
+ "CNAME": "aquaquokka.github.io"
+ }
+}
diff --git a/domains/aquatica.json b/domains/aquatica.json
index 39ad729fb..d28f78f09 100644
--- a/domains/aquatica.json
+++ b/domains/aquatica.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "UntoldGam",
- "email": "charlessbird+github@outlook.com"
- },
- "record": {
- "A": [
- "130.162.169.213"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "UntoldGam",
+ "email": "charlessbird+github@outlook.com"
+ },
+ "record": {
+ "A": ["130.162.169.213"]
+ }
+}
diff --git a/domains/aquestry.json b/domains/aquestry.json
index 9dcba4418..3bf680306 100644
--- a/domains/aquestry.json
+++ b/domains/aquestry.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aquestry",
- "discord": "704743506677334138",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.V9o5PtaeItmX8xf0iU9FiM1S1b6EqVFJPNxI5VSe0dNDnt0W5LfIoQqL1fvVRQKKUa3eqwyHY2da8homHkcAXxZhN3JVgGlBUsHvVRfFUyvclPqWWciFRhu2kTWTlTK5attxE_y2pLd_6y1XFKs6vZ-8zYEznT4urc2XuGfHQ7hPLvEwLGJrh412k57vNwYHRssofZkGjMJcMXy_kSAc-gGdD9j6_xjcvb8NkHBh7N6mdyicQsfa5nXZErX5Z-ycQhAYAZft8qOSxKQUBMAXQ7d9XwbT5lgqzHVjwNCGqC-wCqNFdQ5W0JrunFh0r8XzQYABJqetb1tzI5a6CDUF3Q.BSQSSXpli0R0BQg_OPAnlA.mi_pUvgr6GlHAn8hpansRpA_1EGVB52-XxoU0j21dqG4bRS0YDQJOPRj_H8U45U701wpU_AAcVQ4_TUpWJaYcp4F3_l3Gf8dEb9FYK7xm68.7nUpAD9IuDbCqCr6QXypuw"
- },
- "record": {
- "CNAME": "aquestry.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aquestry",
+ "discord": "704743506677334138",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.V9o5PtaeItmX8xf0iU9FiM1S1b6EqVFJPNxI5VSe0dNDnt0W5LfIoQqL1fvVRQKKUa3eqwyHY2da8homHkcAXxZhN3JVgGlBUsHvVRfFUyvclPqWWciFRhu2kTWTlTK5attxE_y2pLd_6y1XFKs6vZ-8zYEznT4urc2XuGfHQ7hPLvEwLGJrh412k57vNwYHRssofZkGjMJcMXy_kSAc-gGdD9j6_xjcvb8NkHBh7N6mdyicQsfa5nXZErX5Z-ycQhAYAZft8qOSxKQUBMAXQ7d9XwbT5lgqzHVjwNCGqC-wCqNFdQ5W0JrunFh0r8XzQYABJqetb1tzI5a6CDUF3Q.BSQSSXpli0R0BQg_OPAnlA.mi_pUvgr6GlHAn8hpansRpA_1EGVB52-XxoU0j21dqG4bRS0YDQJOPRj_H8U45U701wpU_AAcVQ4_TUpWJaYcp4F3_l3Gf8dEb9FYK7xm68.7nUpAD9IuDbCqCr6QXypuw"
+ },
+ "record": {
+ "CNAME": "aquestry.dev"
+ }
+}
diff --git a/domains/aquiffoo.json b/domains/aquiffoo.json
index 64c5d1298..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aquiffoo",
+ "email": "aquilesffoliveira@gmail.com"
+ },
+ "record": {
+ "URL": "https://aquiffoo.vercel.app"
+ }
+}
diff --git a/domains/araf.json b/domains/araf.json
deleted file mode 100644
index 690d3a9f5..000000000
--- a/domains/araf.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "yasar-arafath",
- "email": "1up6i9jv@duck.com"
- },
- "record": {
- "CNAME": "yasar-arafath.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/arafat-alim.json b/domains/arafat-alim.json
new file mode 100644
index 000000000..06b7adceb
--- /dev/null
+++ b/domains/arafat-alim.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio website hosted on Netlify",
+ "repo": "https://github.com/Arafat-alim/my-portfolio",
+ "owner": {
+ "username": "arafat-alim",
+ "email": "arafat97alim@gmail.com"
+ },
+ "record": {
+ "URL": "https://dev-arafat.netlify.app"
+ }
+}
diff --git a/domains/arafat.json b/domains/arafat.json
index 690d3a9f5..442c23e60 100644
--- a/domains/arafat.json
+++ b/domains/arafat.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "yasar-arafath",
- "email": "1up6i9jv@duck.com"
- },
- "record": {
- "CNAME": "yasar-arafath.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "yasar-arafath",
+ "email": "1up6i9jv@duck.com"
+ },
+ "record": {
+ "CNAME": "yasar-arafath.github.io"
+ }
+}
diff --git a/domains/arafatrahaman.json b/domains/arafatrahaman.json
index 392a3bc87..c893e9c00 100644
--- a/domains/arafatrahaman.json
+++ b/domains/arafatrahaman.json
@@ -1,11 +1,11 @@
{
- "description": "A personal portfolio website",
- "repo": "https://github.com/Hieser21/portfolio",
- "owner": {
- "username": "Hieser21",
- "email": "rarafat883@gmail.com"
- },
- "record": {
- "CNAME": "portfolio-gh9n.onrender.com"
- }
-}
\ No newline at end of file
+ "description": "A personal portfolio website",
+ "repo": "https://github.com/Hieser21/portfolio",
+ "owner": {
+ "username": "Hieser21",
+ "email": "rarafat883@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-gh9n.onrender.com"
+ }
+}
diff --git a/domains/araguaci.json b/domains/araguaci.json
index b2df2a8b8..a33a1b6b8 100644
--- a/domains/araguaci.json
+++ b/domains/araguaci.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "araguaci",
- "email": "araguaci@gmail.com"
- },
- "record": {
- "CNAME": "araguaci.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "araguaci",
+ "email": "araguaci@gmail.com"
+ },
+ "record": {
+ "CNAME": "araguaci.github.io"
+ }
+}
diff --git a/domains/aramos.json b/domains/aramos.json
index 52d7761fa..66b453d05 100644
--- a/domains/aramos.json
+++ b/domains/aramos.json
@@ -1,11 +1,11 @@
{
- "description": "The awesome portfolio site for Alejandro Ramos",
- "repo": "https://github.com/Al327/al327.github.io",
- "owner": {
- "username": "al327",
- "email": "ramosgalejandro3f@gmail.com"
- },
- "record": {
- "CNAME": "al327.github.io"
- }
-}
\ No newline at end of file
+ "description": "The awesome portfolio site for Alejandro Ramos",
+ "repo": "https://github.com/Al327/al327.github.io",
+ "owner": {
+ "username": "al327",
+ "email": "ramosgalejandro3f@gmail.com"
+ },
+ "record": {
+ "CNAME": "al327.github.io"
+ }
+}
diff --git a/domains/arash.json b/domains/arash.json
new file mode 100644
index 000000000..d4c361ea9
--- /dev/null
+++ b/domains/arash.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal website/blog",
+ "owner": {
+ "username": "hatamiarash7",
+ "email": "hatamiarash7@gmail.com",
+ "twitter": "hatamiarash7"
+ },
+ "record": {
+ "URL": "https://arash-hatami.ir"
+ }
+}
diff --git a/domains/aravindh.json b/domains/aravindh.json
index 0270441b5..d6c8a5cf7 100644
--- a/domains/aravindh.json
+++ b/domains/aravindh.json
@@ -1,11 +1,11 @@
{
- "description": "aravindh.is-a.dev",
- "repo": "https://github.com/Aravindh-4195/aravindh-4195.github.io",
- "owner": {
- "username": "Aravindh-4195",
- "email": "1mareeduaravindh1@gmail.com"
- },
- "record": {
- "CNAME": "aravindh-4195.github.io"
- }
-}
\ No newline at end of file
+ "description": "aravindh.is-a.dev",
+ "repo": "https://github.com/Aravindh-4195/aravindh-4195.github.io",
+ "owner": {
+ "username": "Aravindh-4195",
+ "email": "1mareeduaravindh1@gmail.com"
+ },
+ "record": {
+ "CNAME": "aravindh-4195.github.io"
+ }
+}
diff --git a/domains/aravinnndddd.json b/domains/aravinnndddd.json
index ec3750b4b..f3d56ce50 100644
--- a/domains/aravinnndddd.json
+++ b/domains/aravinnndddd.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Aravinnndddd",
- "email": "aromalaravind0@gmail.com",
- "discord": "754961569858846770"
- },
- "record": {
- "CNAME": "aravinnndddd.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aravinnndddd",
+ "email": "aromalaravind0@gmail.com",
+ "discord": "754961569858846770"
+ },
+ "record": {
+ "CNAME": "aravinnndddd.github.io"
+ }
+}
diff --git a/domains/arbi-jridi.json b/domains/arbi-jridi.json
index 735929966..a125bfd64 100644
--- a/domains/arbi-jridi.json
+++ b/domains/arbi-jridi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "arbi-jridi",
- "email": "arbi.jridi@gmail.com"
- },
- "record": {
- "URL": "https://arbi-jridi.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "arbi-jridi",
+ "email": "arbi.jridi@gmail.com"
+ },
+ "record": {
+ "URL": "https://arbi-jridi.github.io"
+ }
+}
diff --git a/domains/arboy.json b/domains/arboy.json
index 2f9dae7b6..828bbb2cb 100644
--- a/domains/arboy.json
+++ b/domains/arboy.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/ARBoyGo/arboygo.github.io",
- "owner": {
- "username": "ARBoyGo",
- "email": "arboygo@duck.com"
- },
- "record": {
- "CNAME": "arboygo.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/ARBoyGo/arboygo.github.io",
+ "owner": {
+ "username": "ARBoyGo",
+ "email": "arboygo@duck.com"
+ },
+ "record": {
+ "CNAME": "arboygo.github.io"
+ }
+}
diff --git a/domains/arca.json b/domains/arca.json
new file mode 100644
index 000000000..9cdd568b0
--- /dev/null
+++ b/domains/arca.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/anibalCApaza/anibalcapaza.github.io",
+ "owner": {
+ "username": "anibalCApaza",
+ "email": "arcacorini@gmail.com"
+ },
+ "record": {
+ "CNAME": "anibalcapaza.github.io"
+ }
+}
diff --git a/domains/arcade.json b/domains/arcade.json
index 4809215d7..10303e9d8 100644
--- a/domains/arcade.json
+++ b/domains/arcade.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "l3gacyb3ta",
- "twitter": "l3gacyb3ta"
- },
- "record": {
- "URL": "https://arcade.omg.lol"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "l3gacyb3ta",
+ "twitter": "l3gacyb3ta"
+ },
+ "record": {
+ "URL": "https://arcade.omg.lol"
+ }
+}
diff --git a/domains/arceus.json b/domains/arceus.json
index f42cf58ee..6656987a7 100644
--- a/domains/arceus.json
+++ b/domains/arceus.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "arceusdev",
- "discord": "1055478076013817936"
- },
- "record": {
- "CNAME": "arceus-website-onze-developments-projects.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "arceusdev",
+ "discord": "1055478076013817936"
+ },
+ "record": {
+ "CNAME": "arceus-website-onze-developments-projects.vercel.app"
+ }
+}
diff --git a/domains/arch.json b/domains/arch.json
index f433a8e3c..791ffd871 100644
--- a/domains/arch.json
+++ b/domains/arch.json
@@ -1,14 +1,14 @@
{
- "description": "My personal website on arch.is-a.dev (main files in repo/repository).",
- "repo": "https://github.com/Arch881010/Arch881010",
- "owner": {
- "username": "Arch881010",
- "email": "arch@arch1010.dev",
- "discord": "arch1010",
- "discord-id": "410248634593050627",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kSAiARG7F3TMPQLHtfhtk3dE05kz7As2lA8g_FzeDJHxsc9y68hJe40iZByj83Q-A7wgguTAPkshy34EfXOlnbEW6QGE3nwCdu8BLCDAZFZSDYffesKjYPq7djQpYfIcrwaKQ8BNsPejDVBpfycXULTJKFg6860m6AQeCRBCTKbs1et_J_1LKbD58oCoA2fRjoOcmsfiuv177b0JB5y4YYJvv-ZUxnqfFOYs8z4cYa0sjLz1PHf45ZXI94YaiIGbctnl4-mCWmUyVAEzoZXMMZTpb2yDmkfkXbubaRL8ftl6dXFlsr_s8t5oNNn_qqydjVqHAgoBod7pnX8nnbNB7g.QIJDtBcgQc6abzpqMJEDQQ.yqolPrBs4ixr0g2Sd6FkMHqMg_CXvxV146dDoe4y8yeSmW951Au23QlBGwemyMKQmJv6fNMo7GPctGfxCxgaaL6hXPVbtJ13MdgtO22e5bA.vevEeBUZxq5C7dewSx_YUQ"
- },
- "record": {
- "CNAME": "arch881010.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal website on arch.is-a.dev (main files in repo/repository).",
+ "repo": "https://github.com/Arch881010/Arch881010",
+ "owner": {
+ "username": "Arch881010",
+ "email": "arch@arch1010.dev",
+ "discord": "arch1010",
+ "discord-id": "410248634593050627",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kSAiARG7F3TMPQLHtfhtk3dE05kz7As2lA8g_FzeDJHxsc9y68hJe40iZByj83Q-A7wgguTAPkshy34EfXOlnbEW6QGE3nwCdu8BLCDAZFZSDYffesKjYPq7djQpYfIcrwaKQ8BNsPejDVBpfycXULTJKFg6860m6AQeCRBCTKbs1et_J_1LKbD58oCoA2fRjoOcmsfiuv177b0JB5y4YYJvv-ZUxnqfFOYs8z4cYa0sjLz1PHf45ZXI94YaiIGbctnl4-mCWmUyVAEzoZXMMZTpb2yDmkfkXbubaRL8ftl6dXFlsr_s8t5oNNn_qqydjVqHAgoBod7pnX8nnbNB7g.QIJDtBcgQc6abzpqMJEDQQ.yqolPrBs4ixr0g2Sd6FkMHqMg_CXvxV146dDoe4y8yeSmW951Au23QlBGwemyMKQmJv6fNMo7GPctGfxCxgaaL6hXPVbtJ13MdgtO22e5bA.vevEeBUZxq5C7dewSx_YUQ"
+ },
+ "record": {
+ "CNAME": "arch881010.github.io"
+ }
+}
diff --git a/domains/archelaus.json b/domains/archelaus.json
index 2c7f1dfbd..4600a99f5 100644
--- a/domains/archelaus.json
+++ b/domains/archelaus.json
@@ -1,11 +1,11 @@
{
- "description": "Portfolio",
- "repo": "https://github.com/archelaus/archelaus.github.io",
- "owner": {
- "username": "archelaus",
- "email": "archelaus@skiff.com"
- },
- "record": {
- "CNAME": "archelaus.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio",
+ "repo": "https://github.com/archelaus/archelaus.github.io",
+ "owner": {
+ "username": "archelaus",
+ "email": "archelaus@skiff.com"
+ },
+ "record": {
+ "CNAME": "archelaus.github.io"
+ }
+}
diff --git a/domains/archie.json b/domains/archie.json
index b363e67db..62b35c58f 100644
--- a/domains/archie.json
+++ b/domains/archie.json
@@ -1,11 +1,11 @@
{
- "description": "My personal developer portfolio.",
- "repo": "https://github.com/iLikeToCode/iliketocode.github.io",
- "owner": {
- "username": "iLikeToCode",
- "email": "archie@archiesbytes.xyz"
- },
- "record": {
- "CNAME": "iliketocode.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal developer portfolio.",
+ "repo": "https://github.com/iLikeToCode/iliketocode.github.io",
+ "owner": {
+ "username": "iLikeToCode",
+ "email": "archie@archiesbytes.xyz"
+ },
+ "record": {
+ "CNAME": "iliketocode.github.io"
+ }
+}
diff --git a/domains/archive.json b/domains/archive.json
new file mode 100644
index 000000000..639f942d1
--- /dev/null
+++ b/domains/archive.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "EducatedSuddenBucket",
+ "email": "educatedsuddenbucket@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153"
+ ]
+ }
+}
diff --git a/domains/archon.json b/domains/archon.json
index 0e169a344..17267d9d8 100644
--- a/domains/archon.json
+++ b/domains/archon.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "29ayaang",
- "email": "29ayaang@proton.me"
- },
- "record": {
- "CNAME": "29ayaang.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "29ayaang",
+ "email": "29ayaang@proton.me"
+ },
+ "record": {
+ "CNAME": "29ayaang.github.io"
+ }
+}
diff --git a/domains/ardaninho.json b/domains/ardaninho.json
index 8634e5d31..238a9121d 100644
--- a/domains/ardaninho.json
+++ b/domains/ardaninho.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Ardaninho",
- "discord": "639439553698201626"
- },
- "record": {
- "CNAME": "ardaninho.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Ardaninho",
+ "discord": "639439553698201626"
+ },
+ "record": {
+ "CNAME": "ardaninho.github.io"
+ }
+}
diff --git a/domains/ardistory.json b/domains/ardistory.json
index d064057d6..98b557280 100644
--- a/domains/ardistory.json
+++ b/domains/ardistory.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "ardistory",
- "email": "putraardiansyah530@gmail.com"
- },
- "record": {
- "A": [
- "198.91.81.13"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ardistory",
+ "email": "putraardiansyah530@gmail.com"
+ },
+ "record": {
+ "A": ["198.91.81.13"]
+ }
+}
diff --git a/domains/areen-c.json b/domains/areen-c.json
index 10ba3a84e..4c724ff96 100644
--- a/domains/areen-c.json
+++ b/domains/areen-c.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "areen-c",
- "email": "areenelhaq@gmail.com",
- "twitter": "areencx"
- },
- "record": {
- "CNAME": "areen.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "areen-c",
+ "email": "areenelhaq@gmail.com",
+ "twitter": "areencx"
+ },
+ "record": {
+ "CNAME": "areen.pages.dev"
+ }
+}
diff --git a/domains/areen.json b/domains/areen.json
index fa51979a7..dca1d5024 100644
--- a/domains/areen.json
+++ b/domains/areen.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "areen-c",
- "email": "areenelhaq@gmail.com"
- },
- "record": {
- "CNAME": "areen-c.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "areen-c",
+ "email": "areenelhaq@gmail.com"
+ },
+ "record": {
+ "CNAME": "areen-c.pages.dev"
+ }
+}
diff --git a/domains/aref.json b/domains/aref.json
new file mode 100644
index 000000000..6cb9feb2f
--- /dev/null
+++ b/domains/aref.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal website",
+ "repo": "https://github.com/stormaref/stormaref.github.io",
+ "owner": {
+ "username": "stormaref",
+ "email": "storm.aref@gmail.com"
+ },
+ "record": {
+ "URL": "https://stormaref.github.io/"
+ }
+}
diff --git a/domains/arhan.json b/domains/arhan.json
index 59d4cd289..f8f853cc6 100644
--- a/domains/arhan.json
+++ b/domains/arhan.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "ArhanExploits",
- "email": "vortexsperts@gmail.com",
- "discord": "1058620249978716191"
- },
- "record": {
- "A": [
- "54.37.19.49"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ArhanExploits",
+ "email": "vortexsperts@gmail.com",
+ "discord": "1058620249978716191"
+ },
+ "record": {
+ "A": ["54.37.19.49"]
+ }
+}
diff --git a/domains/arhanansari.json b/domains/arhanansari.json
new file mode 100644
index 000000000..39c01c9a0
--- /dev/null
+++ b/domains/arhanansari.json
@@ -0,0 +1,13 @@
+{
+ "description": "A sleek and 3D portfolio website for Arhan Ansari.",
+ "repo": "https://github.com/ArhanAnsari/Arhans-Portfolio",
+ "owner": {
+ "username": "ArhanAnsari",
+ "email": "arhanansari2009@gmail.com",
+ "x": "https://x.com/codewitharhan",
+ "discord": "@codewitharhan"
+ },
+ "record": {
+ "CNAME": "arhanansari.vercel.app"
+ }
+}
diff --git a/domains/ari.json b/domains/ari.json
index dc9a20060..abd3eacfa 100644
--- a/domains/ari.json
+++ b/domains/ari.json
@@ -1,11 +1,11 @@
{
- "repo": "https://ari.lt/git",
- "description": "Ari-web: A personal website of a Lithuanian open source developer Ari Archer (Arija A.) who provides different free, private, and open source services for others.",
- "owner": {
- "username": "TruncatedDinoSour",
- "email": "ari@ari.lt"
- },
- "record": {
- "URL": "https://ari.lt/"
- }
-}
\ No newline at end of file
+ "repo": "https://ari.lt/git",
+ "description": "Ari-web: A personal website of a Lithuanian open source developer Ari Archer (Arija A.) who provides different free, private, and open source services for others.",
+ "owner": {
+ "username": "TruncatedDinoSour",
+ "email": "ari@ari.lt"
+ },
+ "record": {
+ "URL": "https://ari.lt/"
+ }
+}
diff --git a/domains/ariabid.json b/domains/ariabid.json
new file mode 100644
index 000000000..5d0b9f54c
--- /dev/null
+++ b/domains/ariabid.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ariabid",
+ "email": "ari.abid@gmail.com"
+ },
+ "record": {
+ "URL": "https://ariabid.github.io"
+ }
+}
diff --git a/domains/arif.json b/domains/arif.json
new file mode 100644
index 000000000..65cbda863
--- /dev/null
+++ b/domains/arif.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio Website",
+ "repo": "https://github.com/Arif-Islam/Portfolio-site",
+ "owner": {
+ "username": "Arif-Islam",
+ "email": "arif8491@gmail.com"
+ },
+ "record": {
+ "CNAME": "arif-islam.github.io"
+ }
+}
diff --git a/domains/ariffhazmi.json b/domains/ariffhazmi.json
index ba56c3b42..ab147f361 100644
--- a/domains/ariffhazmi.json
+++ b/domains/ariffhazmi.json
@@ -1,11 +1,11 @@
{
- "description": "Ariffhazmi's Website",
- "repo": "https://github.com/Areplesapelagi/ariffhazmi.git",
- "owner": {
- "username": "Areplesapelagi",
- "email": "muhdariffhazmi@gmail.com"
- },
- "record": {
- "CNAME": "areplesapelagi.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ariffhazmi's Website",
+ "repo": "https://github.com/Areplesapelagi/ariffhazmi.git",
+ "owner": {
+ "username": "Areplesapelagi",
+ "email": "muhdariffhazmi@gmail.com"
+ },
+ "record": {
+ "CNAME": "areplesapelagi.github.io"
+ }
+}
diff --git a/domains/arijit.json b/domains/arijit.json
index a4185ccac..70e8009bc 100644
--- a/domains/arijit.json
+++ b/domains/arijit.json
@@ -1,12 +1,12 @@
{
- "description": "Site of Arijit",
- "repo": "https://github.com/ArijitTheDev/arijitthedev.github.io",
- "owner": {
- "username": "ArijitTheDev",
- "email": "itsarijitdebnath@gmail.com",
- "twitter": "NotArijit"
- },
- "record": {
- "CNAME": "arijitthedev.github.io"
- }
-}
\ No newline at end of file
+ "description": "Site of Arijit",
+ "repo": "https://github.com/ArijitTheDev/arijitthedev.github.io",
+ "owner": {
+ "username": "ArijitTheDev",
+ "email": "itsarijitdebnath@gmail.com",
+ "twitter": "NotArijit"
+ },
+ "record": {
+ "CNAME": "arijitthedev.github.io"
+ }
+}
diff --git a/domains/arin.json b/domains/arin.json
new file mode 100644
index 000000000..8e15cf736
--- /dev/null
+++ b/domains/arin.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "aringadre76"
+ },
+ "record": {
+ "CNAME": "aringadre76.github.io"
+ }
+}
diff --git a/domains/arizerr.json b/domains/arizerr.json
index 4da89a6dd..35713f74c 100644
--- a/domains/arizerr.json
+++ b/domains/arizerr.json
@@ -1,11 +1,11 @@
{
- "description": "Github Page",
- "repo": "https://github.com/Arizerr/Arizerr.github.io",
- "owner": {
- "username": "Arizerr",
- "email": "arisiraj738@gmail.com"
- },
- "record": {
- "CNAME": "arizerr.github.io"
- }
-}
\ No newline at end of file
+ "description": "Github Page",
+ "repo": "https://github.com/Arizerr/Arizerr.github.io",
+ "owner": {
+ "username": "Arizerr",
+ "email": "arisiraj738@gmail.com"
+ },
+ "record": {
+ "CNAME": "arizerr.github.io"
+ }
+}
diff --git a/domains/arjix.json b/domains/arjix.json
deleted file mode 100644
index 9c4f2b512..000000000
--- a/domains/arjix.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Most likely a page for my portfolio.",
- "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io",
- "owner": {
- "username": "ArjixWasTaken",
- "discord": "Hecker#5573"
- },
- "record": {
- "CNAME": "arjixwastaken.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/arjuncodess.json b/domains/arjuncodess.json
index 60aaf9583..15b194c53 100644
--- a/domains/arjuncodess.json
+++ b/domains/arjuncodess.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "ArjunCodess"
- },
- "record": {
- "CNAME": "arjuncodess.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ArjunCodess"
+ },
+ "record": {
+ "CNAME": "arjuncodess.vercel.app"
+ }
+}
diff --git a/domains/arjuncvinod.json b/domains/arjuncvinod.json
index d6a7fa663..0860da5c8 100644
--- a/domains/arjuncvinod.json
+++ b/domains/arjuncvinod.json
@@ -1,12 +1,12 @@
{
- "description": "Portfolio website",
- "repo": "https://github.com/arjuncvinod/arjuncvinod.github.io",
- "owner": {
- "username": "arjuncvinod",
- "email": "arjuncvinod007@gmail.com",
- "twitter": "arjuncvinod7"
- },
- "record": {
- "CNAME": "arjuncvinod.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio website",
+ "repo": "https://github.com/arjuncvinod/arjuncvinod.github.io",
+ "owner": {
+ "username": "arjuncvinod",
+ "email": "arjuncvinod007@gmail.com",
+ "twitter": "arjuncvinod7"
+ },
+ "record": {
+ "CNAME": "arjuncvinod.github.io"
+ }
+}
diff --git a/domains/arkan.json b/domains/arkan.json
new file mode 100644
index 000000000..e79671df3
--- /dev/null
+++ b/domains/arkan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ArizalArkan",
+ "email": "arizalarkan@gmail.com"
+ },
+ "record": {
+ "CNAME": "arkan-potofolio.vercel.app"
+ }
+}
diff --git a/domains/arlan.json b/domains/arlan.json
new file mode 100644
index 000000000..82484a9f5
--- /dev/null
+++ b/domains/arlan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "handikatriarlan",
+ "email": "handikaarlan@gmail.com"
+ },
+ "record": {
+ "CNAME": "handikatriarlan.vercel.app"
+ }
+}
diff --git a/domains/armaan44.json b/domains/armaan44.json
new file mode 100644
index 000000000..bf2d5a192
--- /dev/null
+++ b/domains/armaan44.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio-Website",
+ "repo": "https://github.com/Armaan4477/Portfolio",
+ "owner": {
+ "username": "Armaan4477",
+ "email": "nakhudaarmaan66@gmail.com"
+ },
+ "record": {
+ "CNAME": "armaan4477.github.io"
+ }
+}
diff --git a/domains/arman.json b/domains/arman.json
index 64ac7bd0d..58404ec4e 100644
--- a/domains/arman.json
+++ b/domains/arman.json
@@ -1,10 +1,10 @@
{
- "description": "Personal Portfolio",
- "owner": {
- "username": "ItzArman09",
- "email": "itz.armxn@outlook.com"
- },
- "record": {
- "CNAME": "itzarman09.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio",
+ "owner": {
+ "username": "ItzArman09",
+ "email": "itz.armxn@outlook.com"
+ },
+ "record": {
+ "CNAME": "itzarman09.github.io"
+ }
+}
diff --git a/domains/armand.json b/domains/armand.json
new file mode 100644
index 000000000..e3c20bc91
--- /dev/null
+++ b/domains/armand.json
@@ -0,0 +1,10 @@
+{
+ "description": "Armand Jordaan's Website",
+ "owner": {
+ "username": "armandjordaan",
+ "email": "armand.jordaan@gmail.com"
+ },
+ "record": {
+ "CNAME": "armandjordaan.github.io"
+ }
+}
diff --git a/domains/armandosalcedo.json b/domains/armandosalcedo.json
new file mode 100644
index 000000000..93d1f4777
--- /dev/null
+++ b/domains/armandosalcedo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asd1495",
+ "email": "armando.salcedo95@gmail.com"
+ },
+ "record": {
+ "CNAME": "asd1495.github.io"
+ }
+}
diff --git a/domains/armoredvortex.json b/domains/armoredvortex.json
index 3a972c57f..c759272eb 100644
--- a/domains/armoredvortex.json
+++ b/domains/armoredvortex.json
@@ -1,10 +1,10 @@
{
- "description": "Personal Portfolio website",
- "owner": {
- "username": "armoredvortex",
- "email": "rachitpandey@protonmail.com"
- },
- "record": {
- "CNAME": "armoredvortex.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio website",
+ "owner": {
+ "username": "armoredvortex",
+ "email": "rachitpandey@protonmail.com"
+ },
+ "record": {
+ "CNAME": "armoredvortex.github.io"
+ }
+}
diff --git a/domains/arnab.json b/domains/arnab.json
index 05b537955..db12d8d3b 100644
--- a/domains/arnab.json
+++ b/domains/arnab.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "arnabdatta",
- "email": "arnabdatta3@gmail.com"
- },
- "record": {
- "CNAME": "arnabdatta.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "arnabdatta",
+ "email": "arnabdatta3@gmail.com"
+ },
+ "record": {
+ "CNAME": "arnabdatta.github.io"
+ }
+}
diff --git a/domains/arnav.json b/domains/arnav.json
index 6c55d6678..cbc918261 100644
--- a/domains/arnav.json
+++ b/domains/arnav.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "arnav-kr",
- "email": "arnav-kumar@outlook.com"
- },
- "record": {
- "CNAME": "arnav-kr.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "arnav-kr",
+ "email": "arnav-kumar@outlook.com"
+ },
+ "record": {
+ "CNAME": "arnav-kr.github.io"
+ }
+}
diff --git a/domains/arnxv.json b/domains/arnxv.json
index 69826913c..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ArnavBarway",
+ "email": "arnav@sagaraga.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/arpana.json b/domains/arpana.json
index 2c2a70bd2..f8db76b38 100644
--- a/domains/arpana.json
+++ b/domains/arpana.json
@@ -1,12 +1,12 @@
{
- "description": "Meet Arpana!",
- "repo": "https://github.com/winter-code/winter-code",
- "owner": {
- "username": "winter-code",
- "email": "arpana11mehta@gmail.com",
- "twitter": "arpana_naa"
- },
- "record": {
- "CNAME": "winter-code.github.io"
- }
-}
\ No newline at end of file
+ "description": "Meet Arpana!",
+ "repo": "https://github.com/winter-code/winter-code",
+ "owner": {
+ "username": "winter-code",
+ "email": "arpana11mehta@gmail.com",
+ "twitter": "arpana_naa"
+ },
+ "record": {
+ "CNAME": "winter-code.github.io"
+ }
+}
diff --git a/domains/arpitbatra.json b/domains/arpitbatra.json
index 27db254b3..d4ff419f2 100644
--- a/domains/arpitbatra.json
+++ b/domains/arpitbatra.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "arpit-batra",
- "email": "arpitbatra98@gmail.com"
- },
- "record": {
- "URL": "https://myportfolio-eb732.web.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "arpit-batra",
+ "email": "arpitbatra98@gmail.com"
+ },
+ "record": {
+ "URL": "https://myportfolio-eb732.web.app"
+ }
+}
diff --git a/domains/arrtea.json b/domains/arrtea.json
index a41dc35cd..d8620b4ee 100644
--- a/domains/arrtea.json
+++ b/domains/arrtea.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Arrtea21",
- "email": "arte.priv@protonmail.com"
- },
- "record": {
- "CNAME": "arrtea21.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Arrtea21",
+ "email": "arte.priv@protonmail.com"
+ },
+ "record": {
+ "CNAME": "arrtea21.github.io"
+ }
+}
diff --git a/domains/arsdorint.json b/domains/arsdorint.json
index d3801117d..bd558c89e 100644
--- a/domains/arsdorint.json
+++ b/domains/arsdorint.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/arsdorintbp2003/arsdorintbp2003.github.io",
- "owner": {
- "username": "arsdorintbp2003",
- "email": "e0851451@u.nus.edu"
- },
- "record": {
- "CNAME": "arsdorintbp2003.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/arsdorintbp2003/arsdorintbp2003.github.io",
+ "owner": {
+ "username": "arsdorintbp2003",
+ "email": "e0851451@u.nus.edu"
+ },
+ "record": {
+ "CNAME": "arsdorintbp2003.github.io"
+ }
+}
diff --git a/domains/arsenobetaine.json b/domains/arsenobetaine.json
new file mode 100644
index 000000000..14207d31f
--- /dev/null
+++ b/domains/arsenobetaine.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal website for information on me and my projects.",
+ "repo": "https://github.com/arsenobetaine/arsenobetaine.is-a.dev",
+ "owner": {
+ "username": "arsenobetaine",
+ "email": "arsenobetaine@gmail.com"
+ },
+ "record": {
+ "CNAME": "arsenobetaine.github.io"
+ }
+}
diff --git a/domains/arshman.json b/domains/arshman.json
index 68b38710b..20b68320f 100644
--- a/domains/arshman.json
+++ b/domains/arshman.json
@@ -1,9 +1,8 @@
{
- "owner": {
- "username": "syedtahseen",
- "email": ""
- },
- "record": {
- "CNAME": "arshman.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "syedtahseen"
+ },
+ "record": {
+ "CNAME": "arshman.vercel.app"
+ }
+}
diff --git a/domains/arslan.json b/domains/arslan.json
index 672942921..4498ae49e 100644
--- a/domains/arslan.json
+++ b/domains/arslan.json
@@ -1,11 +1,11 @@
{
- "description": "Arslan's World (links and socials)",
- "repo": "https://github.com/sandwiching/sandwiching.github.io",
- "owner": {
- "username": "sandwiching",
- "email": "77godlike@bk.ru"
- },
- "record": {
- "CNAME": "sandwiching.github.io"
- }
-}
\ No newline at end of file
+ "description": "Arslan's World (links and socials)",
+ "repo": "https://github.com/sandwiching/sandwiching.github.io",
+ "owner": {
+ "username": "sandwiching",
+ "email": "77godlike@bk.ru"
+ },
+ "record": {
+ "CNAME": "sandwiching.github.io"
+ }
+}
diff --git a/domains/arson.json b/domains/arson.json
index bbc8e899f..3935fc0e3 100644
--- a/domains/arson.json
+++ b/domains/arson.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "Smartlinuxcoder",
- "email": "smartcoder@linuxmail.org",
- "discord": "694986201739952229"
- },
- "record": {
- "NS": [
- "ignacio.ns.cloudflare.com",
- "nicole.ns.cloudflare.com"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Smartlinuxcoder",
+ "email": "smartcoder@linuxmail.org",
+ "discord": "694986201739952229"
+ },
+ "record": {
+ "NS": ["ignacio.ns.cloudflare.com", "nicole.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/art.json b/domains/art.json
index 69c6d5492..f836f8bf1 100644
--- a/domains/art.json
+++ b/domains/art.json
@@ -1,11 +1,10 @@
{
- "description": "Art's personal developer website",
- "repo": "https://github.com/dotiful",
- "owner": {
- "username": "dotiful",
- "email": "dots.util@gmail.com"
- },
- "record": {
- "CNAME": "dotiful.github.io"
- }
-}
\ No newline at end of file
+ "description": "Art's personal developer website",
+ "owner": {
+ "username": "dotiful",
+ "email": "dots.util@gmail.com"
+ },
+ "record": {
+ "CNAME": "dotiful.github.io"
+ }
+}
diff --git a/domains/artaabedi.json b/domains/artaabedi.json
index 647b00d49..da157f90a 100644
--- a/domains/artaabedi.json
+++ b/domains/artaabedi.json
@@ -1,18 +1,13 @@
{
- "owner": {
- "username": "artaabedi",
- "email": "arta@mailfence.com",
- "discord": "884500561158869032",
- "twitter": "artaabedi"
- },
- "record": {
- "URL": "https://artaabedi.com",
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": [
- "v=spf1 include:spf.improvmx.com ~all"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "artaabedi",
+ "email": "arta@mailfence.com",
+ "discord": "884500561158869032",
+ "twitter": "artaabedi"
+ },
+ "record": {
+ "URL": "https://artaabedi.com",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/arter.json b/domains/arter.json
index 213d1251b..ef9448b9c 100644
--- a/domains/arter.json
+++ b/domains/arter.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "animemoeus",
- "email": "arter.tendean.07@gmail.com"
- },
- "record": {
- "URL": "https://animemoe.us"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "animemoeus",
+ "email": "arter.tendean.07@gmail.com"
+ },
+ "record": {
+ "URL": "https://animemoe.us"
+ }
+}
diff --git a/domains/artesdosul.json b/domains/artesdosul.json
index bb7241d05..a591e0306 100644
--- a/domains/artesdosul.json
+++ b/domains/artesdosul.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "araguaci",
- "email": "araguaci@gmail.com"
- },
- "record": {
- "CNAME": "artesdosul.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "araguaci",
+ "email": "araguaci@gmail.com"
+ },
+ "record": {
+ "CNAME": "artesdosul.github.io"
+ }
+}
diff --git a/domains/artiefuzzz.json b/domains/artiefuzzz.json
index c1d2167ee..da964b39a 100644
--- a/domains/artiefuzzz.json
+++ b/domains/artiefuzzz.json
@@ -1,11 +1,11 @@
{
- "description": "ArtieFuzzz's personal website",
- "repo": "https://github.com/ArtieFuzzz/artiefuzzz.github.io",
- "owner": {
- "username": "ArtieFuzzz",
- "email": "jardenz.den@gmail.com"
- },
- "record": {
- "CNAME": "artiefuzzz.github.io"
- }
-}
\ No newline at end of file
+ "description": "ArtieFuzzz's personal website",
+ "repo": "https://github.com/ArtieFuzzz/artiefuzzz.github.io",
+ "owner": {
+ "username": "ArtieFuzzz",
+ "email": "jardenz.den@gmail.com"
+ },
+ "record": {
+ "CNAME": "artiefuzzz.github.io"
+ }
+}
diff --git a/domains/artix.json b/domains/artix.json
index c5ba06678..6de2d37e4 100644
--- a/domains/artix.json
+++ b/domains/artix.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "alex1028199",
- "email": "yu1234u73f.com@gmail.com",
- "discord": "834867471885271053"
- },
- "record": {
- "A": [
- "69.30.249.53"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alex1028199",
+ "email": "yu1234u73f.com@gmail.com",
+ "discord": "834867471885271053"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/arul.json b/domains/arul.json
index 1199f6865..f93653c18 100644
--- a/domains/arul.json
+++ b/domains/arul.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "arulprabakaran",
- "twitter": "arulpraba"
- },
- "record": {
- "URL": "https://arulprabakaran.web.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "arulprabakaran",
+ "twitter": "arulpraba"
+ },
+ "record": {
+ "URL": "https://arulprabakaran.web.app"
+ }
+}
diff --git a/domains/arunava.json b/domains/arunava.json
index 050881b96..a04036d79 100644
--- a/domains/arunava.json
+++ b/domains/arunava.json
@@ -1,11 +1,11 @@
{
- "description": "is-a.dev subdomain for my portfolio",
- "repo": "https://github.com/its-ag/arunava.tech",
- "owner": {
- "username": "its-ag",
- "email": "itsag0024@gmail.com"
- },
- "record": {
- "CNAME": "its-ag.github.io"
- }
-}
\ No newline at end of file
+ "description": "is-a.dev subdomain for my portfolio",
+ "repo": "https://github.com/its-ag/arunava.tech",
+ "owner": {
+ "username": "its-ag",
+ "email": "itsag0024@gmail.com"
+ },
+ "record": {
+ "CNAME": "its-ag.github.io"
+ }
+}
diff --git a/domains/arungeorgesaji.json b/domains/arungeorgesaji.json
index 343b3b108..4d79568ab 100644
--- a/domains/arungeorgesaji.json
+++ b/domains/arungeorgesaji.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/arungeorgesaji/arungeorgesaji.github.io",
- "owner": {
- "username": "arungeorgesaji",
- "email": "arungeorgesaji@gmail.com"
- },
- "record": {
- "CNAME": "arungeorgesaji.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/arungeorgesaji/arungeorgesaji.github.io",
+ "owner": {
+ "username": "arungeorgesaji",
+ "email": "arungeorgesaji@gmail.com"
+ },
+ "record": {
+ "CNAME": "arungeorgesaji.github.io"
+ }
+}
diff --git a/domains/arunlorenz.json b/domains/arunlorenz.json
new file mode 100644
index 000000000..7fc202e89
--- /dev/null
+++ b/domains/arunlorenz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "arunlorenz",
+ "email": "nsak1763@gmail.com"
+ },
+ "record": {
+ "CNAME": "arunlorenz.vercel.app"
+ }
+}
diff --git a/domains/aruntechpro.json b/domains/aruntechpro.json
index 5e31bf2e6..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"
- }
-}
\ No newline at end of file
+ "description": "Personal Website",
+ "owner": {
+ "username": "aruntechpro",
+ "email": "arunkumarakr03@gmail.com"
+ },
+ "record": {
+ "CNAME": "aruntechpro.github.io"
+ }
+}
diff --git a/domains/arunvishnu.json b/domains/arunvishnu.json
new file mode 100644
index 000000000..a66d3fc96
--- /dev/null
+++ b/domains/arunvishnu.json
@@ -0,0 +1,11 @@
+{
+ "description": "arunvishnu.is-a.dev: website for my portoflio",
+ "repo": "https://github.com/arunvishnu/magicui-portfolio",
+ "owner": {
+ "username": "arunvishnu",
+ "email": "arun.vishnu@gmail.com"
+ },
+ "record": {
+ "CNAME": "arunvishnu.com"
+ }
+}
diff --git a/domains/aruria.json b/domains/aruria.json
index 7cd115e34..08ddfc722 100644
--- a/domains/aruria.json
+++ b/domains/aruria.json
@@ -1,24 +1,20 @@
{
- "owner": {
- "username": "cjolivier123",
- "discord": "1175481072088268920",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XlWqBdmbdUC_mgDhKMY0Hcl1_FRp5IxKkBD1UF2bGowx-BgYpv7UnElAdcrktTrHjJLD75zzEWNR8A_1UH7-4abrnY4lsqu2p9GIScw9j-9zrNZi_EeTmN8XRuD2fVvPFEVmzAQ7O9jE-B6fkMl4GybJB6td05nxzwHi5J-cDGzT1Wg2qu5ierWuHe7P8TI4tq-SwshaxpNTWkMJN9mgGie6QD7zXBo76G7lbFWTOJHM65UK81I2N8nmyttlD2E5ncNgMTyspkR0hmKeIb1cQvR4lVXu3n-NmJg4-PIOMP3BJ_FgiZFQEDps_opWCA-XhcET7C_EjCbZPEJlBfuTxQ.GFEDQow6ltp5UmM6d7EqfA.xoHXb_B_eC2HGsJ-7iTlZ0FAagE6icNiiVRILA3y5YPiC8chzN3t1JpWEP-uyODEUi7HDGVJzPhRwtTBSbY4S4lx4ZxVOIMr2-l5v50hTjo.ebOtxNCyuP2tf0zsqTg8Hg"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.110.153",
- "185.199.109.153",
- "185.199.111.153"
- ],
- "TXT": [
- "zoho-verification=zb76097651.zmverify.zoho.com",
- "v=spf1 include:zohomail.com ~all"
- ],
- "MX": [
- "mx.zoho.com",
- "mx2.zoho.com",
- "mx3.zoho.com"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "cjolivier123",
+ "discord": "1175481072088268920",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XlWqBdmbdUC_mgDhKMY0Hcl1_FRp5IxKkBD1UF2bGowx-BgYpv7UnElAdcrktTrHjJLD75zzEWNR8A_1UH7-4abrnY4lsqu2p9GIScw9j-9zrNZi_EeTmN8XRuD2fVvPFEVmzAQ7O9jE-B6fkMl4GybJB6td05nxzwHi5J-cDGzT1Wg2qu5ierWuHe7P8TI4tq-SwshaxpNTWkMJN9mgGie6QD7zXBo76G7lbFWTOJHM65UK81I2N8nmyttlD2E5ncNgMTyspkR0hmKeIb1cQvR4lVXu3n-NmJg4-PIOMP3BJ_FgiZFQEDps_opWCA-XhcET7C_EjCbZPEJlBfuTxQ.GFEDQow6ltp5UmM6d7EqfA.xoHXb_B_eC2HGsJ-7iTlZ0FAagE6icNiiVRILA3y5YPiC8chzN3t1JpWEP-uyODEUi7HDGVJzPhRwtTBSbY4S4lx4ZxVOIMr2-l5v50hTjo.ebOtxNCyuP2tf0zsqTg8Hg"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.110.153",
+ "185.199.109.153",
+ "185.199.111.153"
+ ],
+ "TXT": [
+ "zoho-verification=zb76097651.zmverify.zoho.com",
+ "v=spf1 include:zohomail.com ~all"
+ ],
+ "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"]
+ }
+}
diff --git a/domains/arush.json b/domains/arush.json
index 18d8d934d..4b3751c8d 100644
--- a/domains/arush.json
+++ b/domains/arush.json
@@ -1,11 +1,11 @@
{
- "description": "arush.is-a.dev: website for my portoflio",
- "repo": "https://github.com/ArushYadlapati/website",
- "owner": {
- "username": "ArushYadlapati",
- "email": "hello@arush.me"
- },
- "record": {
- "CNAME": "arushyadlapati.github.io"
- }
-}
\ No newline at end of file
+ "description": "arush.is-a.dev: website for my portoflio",
+ "repo": "https://github.com/ArushYadlapati/website",
+ "owner": {
+ "username": "ArushYadlapati",
+ "email": "hello@arush.me"
+ },
+ "record": {
+ "CNAME": "arushyadlapati.github.io"
+ }
+}
diff --git a/domains/arv.json b/domains/arv.json
index f65185e92..fff65d37b 100644
--- a/domains/arv.json
+++ b/domains/arv.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "aravinds-arv",
- "email": "aravinds.arv@pm.me"
- },
- "record": {
- "CNAME": "aravinds-arv.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aravinds-arv",
+ "email": "aravinds.arv@pm.me"
+ },
+ "record": {
+ "CNAME": "aravinds-arv.github.io"
+ }
+}
diff --git a/domains/arvik1.json b/domains/arvik1.json
index 426003a01..ea04d9328 100644
--- a/domains/arvik1.json
+++ b/domains/arvik1.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "arvik1",
- "email": "singhvikal891@gmail.com"
- },
- "record": {
- "CNAME": "arvik1.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "arvik1",
+ "email": "singhvikal891@gmail.com"
+ },
+ "record": {
+ "CNAME": "arvik1.github.io"
+ }
+}
diff --git a/domains/arvind.json b/domains/arvind.json
new file mode 100644
index 000000000..dc3f90151
--- /dev/null
+++ b/domains/arvind.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "coderman400",
+ "email": "achurox1121@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-nine-sigma-65.vercel.app"
+ }
+}
diff --git a/domains/arvindt.json b/domains/arvindt.json
index 7aa7de16e..8a3103b1c 100644
--- a/domains/arvindt.json
+++ b/domains/arvindt.json
@@ -1,13 +1,13 @@
{
- "description": "ARVIN3108's personal blog",
- "repo": "https://github.com/ARVIN3108/arvin3108.github.io",
- "owner": {
- "username": "ARVIN3108",
- "discord": "arvin3108.id",
- "instagram": "arvin_d.t",
- "twitter": "ARVIN3108_ID"
- },
- "record": {
- "CNAME": "arvin3108.github.io"
- }
-}
\ No newline at end of file
+ "description": "ARVIN3108's personal blog",
+ "repo": "https://github.com/ARVIN3108/arvin3108.github.io",
+ "owner": {
+ "username": "ARVIN3108",
+ "discord": "arvin3108.id",
+ "instagram": "arvin_d.t",
+ "twitter": "ARVIN3108_ID"
+ },
+ "record": {
+ "CNAME": "arvin3108.github.io"
+ }
+}
diff --git a/domains/arwi.json b/domains/arwi.json
index 0fbe83064..d0b678441 100644
--- a/domains/arwi.json
+++ b/domains/arwi.json
@@ -1,11 +1,11 @@
{
- "description": "Arwichok",
- "repo": "https://github.com/arwichok/arwichok.github.io",
- "owner": {
- "username": "arwichok",
- "email": "arwichok@gmail.com"
- },
- "record": {
- "CNAME": "arwichok.github.io"
- }
-}
\ No newline at end of file
+ "description": "Arwichok",
+ "repo": "https://github.com/arwichok/arwichok.github.io",
+ "owner": {
+ "username": "arwichok",
+ "email": "arwichok@gmail.com"
+ },
+ "record": {
+ "CNAME": "arwichok.github.io"
+ }
+}
diff --git a/domains/ary.json b/domains/ary.json
new file mode 100644
index 000000000..01d7b924b
--- /dev/null
+++ b/domains/ary.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/aryan2bamane/Portfolio",
+ "owner": {
+ "username": "aryan2bamane",
+ "email": "aryanbamane2@gmail.com"
+ },
+ "record": {
+ "URL": "https://aryan2bamane.github.io/Portfolio/"
+ }
+}
diff --git a/domains/arya.json b/domains/arya.json
index 629cc1143..33e41b01a 100644
--- a/domains/arya.json
+++ b/domains/arya.json
@@ -1,11 +1,10 @@
{
- "description": "Arya Vinodan's Website",
- "repo": "https://github.com/aryavinodan",
- "owner": {
- "username": "aryavinodan",
- "email": "aryavinodan2000@gmail.com"
- },
- "record": {
- "CNAME": "aryavinodan2000.github.io"
- }
-}
\ No newline at end of file
+ "description": "Arya Vinodan's Website",
+ "owner": {
+ "username": "aryavinodan",
+ "email": "aryavinodan2000@gmail.com"
+ },
+ "record": {
+ "CNAME": "aryavinodan2000.github.io"
+ }
+}
diff --git a/domains/aryadanech.json b/domains/aryadanech.json
index 08c3f608b..1eeea8665 100644
--- a/domains/aryadanech.json
+++ b/domains/aryadanech.json
@@ -1,11 +1,10 @@
{
- "description": "Hi There! I'm Arya. I am a Full Stack Web Developer from Nashik",
- "repo": "https://github.com/aryad14",
- "owner": {
- "username": "aryad14",
- "email": "aryadanech9@gmail.com"
- },
- "record": {
- "CNAME": "aryadanech.netlify.app"
- }
-}
\ No newline at end of file
+ "description": "Hi There! I'm Arya. I am a Full Stack Web Developer from Nashik",
+ "owner": {
+ "username": "aryad14",
+ "email": "aryadanech9@gmail.com"
+ },
+ "record": {
+ "CNAME": "aryadanech.netlify.app"
+ }
+}
diff --git a/domains/aryaejoumalai.json b/domains/aryaejoumalai.json
index 99c63778c..4621ef06b 100644
--- a/domains/aryaejoumalai.json
+++ b/domains/aryaejoumalai.json
@@ -1,11 +1,11 @@
{
- "description": "portfolio project",
- "repo": "https://github.com/AryaEjoumalai/portfolio",
- "owner": {
- "username": "AryaEjoumalai",
- "email": "aryaejoumalai@gmail.com"
- },
- "record": {
- "CNAME": "aryaejoumalai.github.io"
- }
-}
\ No newline at end of file
+ "description": "portfolio project",
+ "repo": "https://github.com/AryaEjoumalai/portfolio",
+ "owner": {
+ "username": "AryaEjoumalai",
+ "email": "aryaejoumalai@gmail.com"
+ },
+ "record": {
+ "CNAME": "aryaejoumalai.github.io"
+ }
+}
diff --git a/domains/aryamaan.json b/domains/aryamaan.json
index 8ea1ef466..d0ece2eb1 100644
--- a/domains/aryamaan.json
+++ b/domains/aryamaan.json
@@ -1,19 +1,16 @@
{
- "owner": {
- "username": "HalalJadeja",
- "email": "9236.stkabirdio@gmail.com"
- },
- "record": {
- "A": [
- "185.199.110.153",
- "185.199.108.153",
- "185.199.111.153",
- "185.199.109.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "HalalJadeja",
+ "email": "9236.stkabirdio@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.110.153",
+ "185.199.108.153",
+ "185.199.111.153",
+ "185.199.109.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/aryan.json b/domains/aryan.json
index 8069a204b..213c070b1 100644
--- a/domains/aryan.json
+++ b/domains/aryan.json
@@ -1,9 +1,13 @@
{
- "owner": {
- "username": "AryanTheDevloper",
- "email": "aryan.p062009@gmail.com"
- },
- "record": {
- "CNAME": "aryanthedevloper.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio Website",
+ "repo": "https://github.com/aryanpatel142006/personalWebsite",
+ "owner": {
+ "username": "aryanpatel142006",
+ "email": "aryanpatel142006@gmail.com",
+ "discord": "aryanpatel142006"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ },
+ "proxied": true
+}
diff --git a/domains/aryann.json b/domains/aryann.json
index 76d681bd4..e00d5a46a 100644
--- a/domains/aryann.json
+++ b/domains/aryann.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aryanm830",
- "email": "aryanm830@proton.me",
- "discord": "riftfiree"
- },
- "record": {
- "CNAME": "portxd.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aryanm830",
+ "email": "aryanm830@proton.me",
+ "discord": "riftfiree"
+ },
+ "record": {
+ "CNAME": "portxd.vercel.app"
+ }
+}
diff --git a/domains/aryantavish.json b/domains/aryantavish.json
index a344bb1f7..72d436eee 100644
--- a/domains/aryantavish.json
+++ b/domains/aryantavish.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Aryan Tavish",
- "email": "aryantavish2003@gmail.com"
- },
- "record": {
- "CNAME": "aryantavish.netlify.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aryan Tavish",
+ "email": "aryantavish2003@gmail.com"
+ },
+ "record": {
+ "CNAME": "aryantavish.netlify.app"
+ }
+}
diff --git a/domains/aryxst.json b/domains/aryxst.json
index a230b5207..e5d6750d9 100644
--- a/domains/aryxst.json
+++ b/domains/aryxst.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Aryxst",
- "email": "jessieodeh08@gmail.com"
- },
- "record": {
- "CNAME": "aryxst.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Aryxst",
+ "email": "jessieodeh08@gmail.com"
+ },
+ "record": {
+ "CNAME": "aryxst.github.io"
+ }
+}
diff --git a/domains/as.json b/domains/as.json
index 05551bed7..0443203ea 100644
--- a/domains/as.json
+++ b/domains/as.json
@@ -1,10 +1,9 @@
{
- "repo": "https://mrakshayas.github.io/me/",
- "owner": {
- "username": "MrAkshayAS",
- "email": "akshau72p@gmail.com"
- },
- "record": {
- "CNAME": "mrakshayas.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "mraxays",
+ "discord": "mrakshayas"
+ },
+ "record": {
+ "URL": "https://mraxays.github.io/"
+ }
+}
diff --git a/domains/asad-khan.json b/domains/asad-khan.json
index 106ba04e0..45d98af64 100644
--- a/domains/asad-khan.json
+++ b/domains/asad-khan.json
@@ -1,11 +1,10 @@
{
- "description": "👋 Hello there! I'm Asad, nice to meet you. Building things that bring delight to users is what I enjoy, always learning new stuff everyday.",
- "repo": "https://github.com/asadkhan777",
- "owner": {
- "username": "asadkhan777",
- "email": "asadkhan1776@gmail.com"
- },
- "record": {
- "CNAME": "asadkhan777.github.io"
- }
-}
\ No newline at end of file
+ "description": "👋 Hello there! I'm Asad, nice to meet you. Building things that bring delight to users is what I enjoy, always learning new stuff everyday.",
+ "owner": {
+ "username": "asadkhan777",
+ "email": "asadkhan1776@gmail.com"
+ },
+ "record": {
+ "CNAME": "asadkhan777.github.io"
+ }
+}
diff --git a/domains/asad.json b/domains/asad.json
new file mode 100644
index 000000000..59f57e614
--- /dev/null
+++ b/domains/asad.json
@@ -0,0 +1,11 @@
+{
+ "description": "👋 Hello there! I'm Asad, nice to meet you. Building things that bring delight to users is what I enjoy, always learning new stuff everyday.",
+ "repo": "https://github.com/AsadRazaJutt1/asadrazajutt1.github.io",
+ "owner": {
+ "username": "AsadRazaJutt1",
+ "email": "asadrazajutt1@gmail.com"
+ },
+ "record": {
+ "CNAME": "asadrazajutt1.github.io"
+ }
+}
diff --git a/domains/asbp.json b/domains/asbp.json
index eb92a3fc0..0b1d1f247 100644
--- a/domains/asbp.json
+++ b/domains/asbp.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "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/asciidude.json b/domains/asciidude.json
index 584673f2a..16b7a28ec 100644
--- a/domains/asciidude.json
+++ b/domains/asciidude.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "asciidude",
- "discord": "801469073535139860",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qwzMx5Lz7NbUvzz6Y_QtpNQ7_SqJrrO8yXP48aKYIAhN6eDnjYzQA_tJEU0CpjyY37OdGN7g1SGCv4lwrXVd0dsEya2dQhMnkw2xOqqJF1f1gTEHNaRQaifNvYE14xiMLZr-yqcRJ-QB1WONpRk5UOjd-sYTjmJ5uai6fufnC8DCsHvZxjCMFROwqxJVa-JnBe-6BhORJg7sgfUCCNRyfKQ3R_CrEV0q6mKpNGKhgB3_sbsWDosP0yU5ArR0UjH4iZzLgfRmKwP6rzbpb7XsGHmV5sn8kj1KTgXdTVAg1ax0JrJOmL0pXVSC4KtFmb3coUNBLbLB8crRP97R7gFQ1Q.9JZd7YdCz4lIo3gLgAFaTg.bXgWxafLtMe0Bs1NFWsc2YIpC5jiRYArHlAD8IxUG3AhmJp8Dhtdn160e1LB3XZKR_WXmSnnkFH4UxomctKjjA4FyX5IgmEO9aPKbjwn3Eo.ib74UPOSzL79K4D4sNLf7w"
- },
- "record": {
- "CNAME": "cubic-plateau-9rv902jxrli6u45t5hsafsrd.herokudns.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "asciidude",
+ "discord": "801469073535139860",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qwzMx5Lz7NbUvzz6Y_QtpNQ7_SqJrrO8yXP48aKYIAhN6eDnjYzQA_tJEU0CpjyY37OdGN7g1SGCv4lwrXVd0dsEya2dQhMnkw2xOqqJF1f1gTEHNaRQaifNvYE14xiMLZr-yqcRJ-QB1WONpRk5UOjd-sYTjmJ5uai6fufnC8DCsHvZxjCMFROwqxJVa-JnBe-6BhORJg7sgfUCCNRyfKQ3R_CrEV0q6mKpNGKhgB3_sbsWDosP0yU5ArR0UjH4iZzLgfRmKwP6rzbpb7XsGHmV5sn8kj1KTgXdTVAg1ax0JrJOmL0pXVSC4KtFmb3coUNBLbLB8crRP97R7gFQ1Q.9JZd7YdCz4lIo3gLgAFaTg.bXgWxafLtMe0Bs1NFWsc2YIpC5jiRYArHlAD8IxUG3AhmJp8Dhtdn160e1LB3XZKR_WXmSnnkFH4UxomctKjjA4FyX5IgmEO9aPKbjwn3Eo.ib74UPOSzL79K4D4sNLf7w"
+ },
+ "record": {
+ "CNAME": "cubic-plateau-9rv902jxrli6u45t5hsafsrd.herokudns.com"
+ }
+}
diff --git a/domains/asgarrrr.json b/domains/asgarrrr.json
index d69df2a1f..b34d7cc03 100644
--- a/domains/asgarrrr.json
+++ b/domains/asgarrrr.json
@@ -1,10 +1,9 @@
{
- "repo": "https://github.com/Asgarrrr",
- "owner": {
- "username": "Asgarrrr",
- "email": "hello@jeremycaruelle.fr"
- },
- "record": {
- "CNAME": "glitch.edgeapp.net"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Asgarrrr",
+ "email": "hello@jeremycaruelle.fr"
+ },
+ "record": {
+ "CNAME": "glitch.edgeapp.net"
+ }
+}
diff --git a/domains/ash.json b/domains/ash.json
index e1e7aae6a..a83e5c119 100644
--- a/domains/ash.json
+++ b/domains/ash.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "BloodLetters",
- "discord": "961870785486671872",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ViU_s7aERLW_mNpbpi9hxOs4zrccaqUhyyUAxIZEKbqex3iWjZP9AUM7uoeyQh9qPzVy8fp92ArDGlC-iYQwW7Xw6WHwzMo_zQGZchYGcI7gDJnI-BSKEwTe9oFPqLzkbR8o3guo7_7Qo54bWm7UDjBjca2JCol7iXJgXP0cUJzgrX3QTPxVEigrvnBNsSIr83WlFZZagm9gyCBpl0WTVLjomcSHdTB2IjM6_yMkYCD1cLDOrkXwqH79o1orLZWrHbDf_6Mqfyay7ZoRiacDTAAi7LVMYo-bjo82IwrCRCNXbHsANk3kJKQnVETKX37bB8sPyRT7I_oygAk9tGcu0A.sbMp8UsiUgSWQ2-vTfEvxA.TzjhAHzK6nG9FtsYXnn3rqwGECCQk0m-KRlrz8-t6BDAPX2SWp0-KEp1pdmc4Okgg5iBl_LRTavfdX2xLuuFHp0G5lzit1LmeEsV6QNfrmY.sIKZgtKW8YqtT_ohHyte9Q"
- },
- "record": {
- "CNAME": "web-production-six.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BloodLetters",
+ "discord": "961870785486671872",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ViU_s7aERLW_mNpbpi9hxOs4zrccaqUhyyUAxIZEKbqex3iWjZP9AUM7uoeyQh9qPzVy8fp92ArDGlC-iYQwW7Xw6WHwzMo_zQGZchYGcI7gDJnI-BSKEwTe9oFPqLzkbR8o3guo7_7Qo54bWm7UDjBjca2JCol7iXJgXP0cUJzgrX3QTPxVEigrvnBNsSIr83WlFZZagm9gyCBpl0WTVLjomcSHdTB2IjM6_yMkYCD1cLDOrkXwqH79o1orLZWrHbDf_6Mqfyay7ZoRiacDTAAi7LVMYo-bjo82IwrCRCNXbHsANk3kJKQnVETKX37bB8sPyRT7I_oygAk9tGcu0A.sbMp8UsiUgSWQ2-vTfEvxA.TzjhAHzK6nG9FtsYXnn3rqwGECCQk0m-KRlrz8-t6BDAPX2SWp0-KEp1pdmc4Okgg5iBl_LRTavfdX2xLuuFHp0G5lzit1LmeEsV6QNfrmY.sIKZgtKW8YqtT_ohHyte9Q"
+ },
+ "record": {
+ "CNAME": "web-production-six.vercel.app"
+ }
+}
diff --git a/domains/ashan.json b/domains/ashan.json
index 0a9e199aa..a009930c0 100644
--- a/domains/ashan.json
+++ b/domains/ashan.json
@@ -1,12 +1,12 @@
{
- "description": "Using For as a Learner,Developer and a youtuber",
- "repo": "https://github.com/SealedSlinger/SealedSlinger.github.io",
- "owner": {
- "username": "SealedSlinger",
- "email": "infoxkingyt@gmail.com",
- "twitter": "AshanInduranga_"
- },
- "record": {
- "CNAME": "sealedslinger.github.io"
- }
-}
\ No newline at end of file
+ "description": "Using For as a Learner,Developer and a youtuber",
+ "repo": "https://github.com/SealedSlinger/SealedSlinger.github.io",
+ "owner": {
+ "username": "SealedSlinger",
+ "email": "infoxkingyt@gmail.com",
+ "twitter": "AshanInduranga_"
+ },
+ "record": {
+ "CNAME": "sealedslinger.github.io"
+ }
+}
diff --git a/domains/ashc1ty.json b/domains/ashc1ty.json
index 18fecf592..b887335e3 100644
--- a/domains/ashc1ty.json
+++ b/domains/ashc1ty.json
@@ -1,11 +1,11 @@
{
- "description": "AshC1ty's Website",
- "repo": "https://github.com/AshC1ty/ashc1ty.github.io",
- "owner": {
- "username": "AshC1ty",
- "email": "ashcity07734@gmail.com"
- },
- "record": {
- "CNAME": "ashc1ty.github.io"
- }
-}
\ No newline at end of file
+ "description": "AshC1ty's Website",
+ "repo": "https://github.com/AshC1ty/ashc1ty.github.io",
+ "owner": {
+ "username": "AshC1ty",
+ "email": "ashcity07734@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashc1ty.github.io"
+ }
+}
diff --git a/domains/asheer.json b/domains/asheer.json
index 2531b16d2..61f35cdf0 100644
--- a/domains/asheer.json
+++ b/domains/asheer.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NullyIsHere",
- "discord": "itsasheer"
- },
- "record": {
- "URL": "https://altex.page?from=isadev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "NullyIsHere",
+ "discord": "itsasheer"
+ },
+ "record": {
+ "URL": "https://altex.page?from=isadev"
+ }
+}
diff --git a/domains/asher.json b/domains/asher.json
index eb3ce81ed..29fd3298d 100644
--- a/domains/asher.json
+++ b/domains/asher.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "The-Asher",
- "email": "08.bellaaron@gmail.com"
- },
- "record": {
- "A": [
- "198.91.81.11"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "The-Asher",
+ "email": "08.bellaaron@gmail.com"
+ },
+ "record": {
+ "A": ["198.91.81.11"]
+ }
+}
diff --git a/domains/ashesh.json b/domains/ashesh.json
index 51e7313b3..56570b860 100644
--- a/domains/ashesh.json
+++ b/domains/ashesh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Ashesh3",
- "email": "ashesh1708@gmail.com"
- },
- "record": {
- "CNAME": "ashesh3.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Ashesh3",
+ "email": "ashesh1708@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashesh3.github.io"
+ }
+}
diff --git a/domains/ashif.json b/domains/ashif.json
index c599c79e0..9daef0cc8 100644
--- a/domains/ashif.json
+++ b/domains/ashif.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "TheKingslayer11",
- "email": "ashifhussain609@gmail.com"
- },
- "record": {
- "CNAME": "thekingslayer11.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "TheKingslayer11",
+ "email": "ashifhussain609@gmail.com"
+ },
+ "record": {
+ "CNAME": "thekingslayer11.github.io"
+ }
+}
diff --git a/domains/ashish-g-gupta.json b/domains/ashish-g-gupta.json
index a4e74c240..aed625453 100644
--- a/domains/ashish-g-gupta.json
+++ b/domains/ashish-g-gupta.json
@@ -1,10 +1,10 @@
{
- "description": "My new website",
- "repo": "https://github.com/ashish-g-gupta/ashish-g-gupta.github.io",
- "owner": {
- "username": "ashish-g-gupta"
- },
- "record": {
- "CNAME": "ashish-g-gupta.github.io"
- }
-}
\ No newline at end of file
+ "description": "My new website",
+ "repo": "https://github.com/ashish-g-gupta/ashish-g-gupta.github.io",
+ "owner": {
+ "username": "ashish-g-gupta"
+ },
+ "record": {
+ "CNAME": "ashish-g-gupta.github.io"
+ }
+}
diff --git a/domains/ashish.json b/domains/ashish.json
index 3addae9c3..a80dc8b1d 100644
--- a/domains/ashish.json
+++ b/domains/ashish.json
@@ -1,11 +1,10 @@
{
- "description": "Ashish's personal developer website",
- "repo": "https://github.com/ashiishme",
- "owner": {
- "username": "ashiishme",
- "email": "contact@ashiish.me"
- },
- "record": {
- "CNAME": "ashiish.me"
- }
-}
\ No newline at end of file
+ "description": "Ashish's personal developer website",
+ "owner": {
+ "username": "ashiishme",
+ "email": "contact@ashiish.me"
+ },
+ "record": {
+ "CNAME": "ashiish.me"
+ }
+}
diff --git a/domains/ashishagarwal.json b/domains/ashishagarwal.json
index 1b455b1e2..5622a088b 100644
--- a/domains/ashishagarwal.json
+++ b/domains/ashishagarwal.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "devashish2024",
- "email": "code.with.aasheesh@gmail.com"
- },
- "record": {
- "CNAME": "ashishagarwal.netlify.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "devashish2024",
+ "email": "code.with.aasheesh@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashishagarwal.netlify.app"
+ }
+}
diff --git a/domains/ashishagr.json b/domains/ashishagr.json
index 5de71c6cb..7040df7b4 100644
--- a/domains/ashishagr.json
+++ b/domains/ashishagr.json
@@ -1,21 +1,16 @@
{
- "owner": {
- "username": "devashish2024",
- "email": "code.with.aasheesh@gmail.com"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": [
- "v=spf1 include:spf.improvmx.com ~all"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "devashish2024",
+ "email": "code.with.aasheesh@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/ashishbinu.json b/domains/ashishbinu.json
index 096e173e6..729ac4272 100644
--- a/domains/ashishbinu.json
+++ b/domains/ashishbinu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ashishbinu",
- "email": "ashishbinu90@gmail.com"
- },
- "record": {
- "CNAME": "ashishbinu.surge.sh"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ashishbinu",
+ "email": "ashishbinu90@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashishbinu.surge.sh"
+ }
+}
diff --git a/domains/ashishji.json b/domains/ashishji.json
index af8f0e5af..ca92753f0 100644
--- a/domains/ashishji.json
+++ b/domains/ashishji.json
@@ -1,11 +1,11 @@
{
- "description": "Ashish Verma Portfolio Website",
- "repo": "https://github.com/ashishjii/ashishjii.github.io",
- "owner": {
- "username": "AshishJii",
- "email": "ashishverma208004@gmail.com"
- },
- "record": {
- "CNAME": "ashishjii.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ashish Verma Portfolio Website",
+ "repo": "https://github.com/ashishjii/ashishjii.github.io",
+ "owner": {
+ "username": "AshishJii",
+ "email": "ashishverma208004@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashishjii.github.io"
+ }
+}
diff --git a/domains/ashishkingdom.json b/domains/ashishkingdom.json
new file mode 100644
index 000000000..168893baa
--- /dev/null
+++ b/domains/ashishkingdom.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AshishKingdom",
+ "email": "ashishkingdom@proton.me"
+ },
+ "record": {
+ "CNAME": "ashishkingdom.github.io"
+ }
+}
diff --git a/domains/ashkan.json b/domains/ashkan.json
new file mode 100644
index 000000000..46d16df50
--- /dev/null
+++ b/domains/ashkan.json
@@ -0,0 +1,11 @@
+{
+ "description": "Welcome to Ashkan's portfolio – a full-stack developer specializing in Angular, React, NestJS, Go, and cloud-native applications",
+ "repo": "https://github.com/Ashkan4472/ashkan4472.github.io",
+ "owner": {
+ "username": "ashkan4472",
+ "email": "ashkan4472@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashkan4472.github.io"
+ }
+}
diff --git a/domains/ashley.json b/domains/ashley.json
index bf072d5e7..a173c86f7 100644
--- a/domains/ashley.json
+++ b/domains/ashley.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ashleyyy94",
- "email": "ashley_2461994@hotmail.com"
- },
- "record": {
- "URL": "https://ashleyong.xyz/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ashleyyy94",
+ "email": "ashley_2461994@hotmail.com"
+ },
+ "record": {
+ "URL": "https://ashleyong.xyz/"
+ }
+}
diff --git a/domains/ashleymavericks.json b/domains/ashleymavericks.json
index 4a37ab78e..2aa81aab6 100644
--- a/domains/ashleymavericks.json
+++ b/domains/ashleymavericks.json
@@ -1,11 +1,11 @@
{
- "description": "Portfolio Website",
- "repo": "https://github.com/ashleymavericks/Portfolio-Site",
- "owner": {
- "username": "ashlyemavericks",
- "email": "singhanurag024@gmail.com"
- },
- "record": {
- "URL": "https://anuragsingh.dev"
- }
-}
\ No newline at end of file
+ "description": "Portfolio Website",
+ "repo": "https://github.com/ashleymavericks/Portfolio-Site",
+ "owner": {
+ "username": "ashlyemavericks",
+ "email": "singhanurag024@gmail.com"
+ },
+ "record": {
+ "URL": "https://anuragsingh.dev"
+ }
+}
diff --git a/domains/ashtonfabby.json b/domains/ashtonfabby.json
new file mode 100644
index 000000000..a9600a85a
--- /dev/null
+++ b/domains/ashtonfabby.json
@@ -0,0 +1,11 @@
+{
+ "description": "personal portfolio website",
+ "repo": "https://github.com/AshtonFabby/portfolio.git",
+ "owner": {
+ "username": "ashtonfabby",
+ "email": "ashtonfabbt@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/ashuthosh.json b/domains/ashuthosh.json
index 539192ecd..21026ada1 100644
--- a/domains/ashuthosh.json
+++ b/domains/ashuthosh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AshDubey8",
- "email": "ashuthoshmaheshdubey@gmail.com"
- },
- "record": {
- "CNAME": "ashdubey8.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AshDubey8",
+ "email": "ashuthoshmaheshdubey@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashdubey8.github.io"
+ }
+}
diff --git a/domains/ashutosh-pandey.json b/domains/ashutosh-pandey.json
index 9a3677fa9..602e366ed 100644
--- a/domains/ashutosh-pandey.json
+++ b/domains/ashutosh-pandey.json
@@ -1,12 +1,12 @@
{
- "description": "This is my personal portfolio website",
- "repo": "https://github.com/DataCrusade1999/datacrusade1999.github.io",
- "owner": {
- "username": "DataCrusade1999",
- "email": "ashutosh.pandeyhlr007@gmail.com",
- "twitter": "DataCrusade1999"
- },
- "record": {
- "CNAME": "datacrusade1999.github.io"
- }
-}
\ No newline at end of file
+ "description": "This is my personal portfolio website",
+ "repo": "https://github.com/DataCrusade1999/datacrusade1999.github.io",
+ "owner": {
+ "username": "DataCrusade1999",
+ "email": "ashutosh.pandeyhlr007@gmail.com",
+ "twitter": "DataCrusade1999"
+ },
+ "record": {
+ "CNAME": "datacrusade1999.github.io"
+ }
+}
diff --git a/domains/ashutosh.json b/domains/ashutosh.json
index 56beac400..27719cb8a 100644
--- a/domains/ashutosh.json
+++ b/domains/ashutosh.json
@@ -1,11 +1,11 @@
{
- "description": "Ashutosh Kumar's Portfolio",
- "repo": "https://github.com/Ashutoshcoder/ashutoshcoder.github.io",
- "owner": {
- "username": "Ashutoshcoder",
- "email": "ashutoshkumardbms@gmail.com"
- },
- "record": {
- "CNAME": "ashutoshcoder.github.io"
- }
-}
\ No newline at end of file
+ "description": "Ashutosh Kumar's Portfolio",
+ "repo": "https://github.com/Ashutoshcoder/ashutoshcoder.github.io",
+ "owner": {
+ "username": "Ashutoshcoder",
+ "email": "ashutoshkumardbms@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashutoshcoder.github.io"
+ }
+}
diff --git a/domains/ashwa.json b/domains/ashwa.json
index d0a115936..6b20c1c3a 100644
--- a/domains/ashwa.json
+++ b/domains/ashwa.json
@@ -1,11 +1,11 @@
{
- "description": "A personal website, for ash.",
- "repo": "https://github.com/NatBLida68/NatBLida68.github.io",
- "owner": {
- "username": "NatBLida68",
- "email": "aswajith.jithu888@gmail.com"
- },
- "record": {
- "CNAME": "natblida68.github.io"
- }
-}
\ No newline at end of file
+ "description": "A personal website, for ash.",
+ "repo": "https://github.com/NatBLida68/NatBLida68.github.io",
+ "owner": {
+ "username": "NatBLida68",
+ "email": "aswajith.jithu888@gmail.com"
+ },
+ "record": {
+ "CNAME": "natblida68.github.io"
+ }
+}
diff --git a/domains/ashwin-s-nambiar.json b/domains/ashwin-s-nambiar.json
index 2c06acf4c..e4f391603 100644
--- a/domains/ashwin-s-nambiar.json
+++ b/domains/ashwin-s-nambiar.json
@@ -1,10 +1,10 @@
{
- "description": "For my portfolio",
- "owner": {
- "username": "ashwin-s-nambiar",
- "discord": "ashwin_nambiar"
- },
- "record": {
- "CNAME": "ashwin-portfolio-alpha.vercel.app"
- }
-}
\ No newline at end of file
+ "description": "For my portfolio",
+ "owner": {
+ "username": "ashwin-s-nambiar",
+ "discord": "ashwin_nambiar"
+ },
+ "record": {
+ "CNAME": "ashwin-portfolio-alpha.vercel.app"
+ }
+}
diff --git a/domains/ashwin.json b/domains/ashwin.json
index 61584164e..57d855556 100644
--- a/domains/ashwin.json
+++ b/domains/ashwin.json
@@ -1,12 +1,12 @@
{
- "description": "sample repo",
- "repo": "https://github.com/ashwin3082002/ashwin3082002.github.io",
- "owner": {
- "username": "ashwin3082002",
- "email": "ashwin3082002@gmail.com",
- "twitter": "ashwin3082002"
- },
- "record": {
- "CNAME": "ashwin3082002.github.io"
- }
-}
\ No newline at end of file
+ "description": "sample repo",
+ "repo": "https://github.com/ashwin3082002/ashwin3082002.github.io",
+ "owner": {
+ "username": "ashwin3082002",
+ "email": "ashwin3082002@gmail.com",
+ "twitter": "ashwin3082002"
+ },
+ "record": {
+ "CNAME": "ashwin3082002.github.io"
+ }
+}
diff --git a/domains/asicalug.json b/domains/asicalug.json
index 73ee11164..f3fded52c 100644
--- a/domains/asicalug.json
+++ b/domains/asicalug.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Asicalug",
- "email": "isaac.poissinger@gmail.com"
- },
- "record": {
- "CNAME": "asicalug.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Asicalug",
+ "email": "isaac.poissinger@gmail.com"
+ },
+ "record": {
+ "CNAME": "asicalug.github.io"
+ }
+}
diff --git a/domains/asif.json b/domains/asif.json
index b5a34de25..8d5d37857 100644
--- a/domains/asif.json
+++ b/domains/asif.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Asif404",
- "email": "asifmohammed4000@gmail.com"
- },
- "record": {
- "CNAME": "asif-bq8.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Asif404",
+ "email": "asifmohammed4000@gmail.com"
+ },
+ "record": {
+ "CNAME": "asif-bq8.pages.dev"
+ }
+}
diff --git a/domains/asil.json b/domains/asil.json
new file mode 100644
index 000000000..e96232068
--- /dev/null
+++ b/domains/asil.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio website for Asil",
+ "repo": "https://github.com/asyard/asyard.github.io",
+ "owner": {
+ "username": "asyard",
+ "discord": "asyard"
+ },
+ "record": {
+ "CNAME": "asyard.github.io"
+ }
+}
diff --git a/domains/asim.json b/domains/asim.json
index c9628b587..577d94bf1 100644
--- a/domains/asim.json
+++ b/domains/asim.json
@@ -1,11 +1,11 @@
{
- "description": "Asim Bera's Portfolio",
- "repo": "https://github.com/asimbera/asimbera.github.io",
- "owner": {
- "username": "asimbera",
- "email": "asimbera@outlook.in"
- },
- "record": {
- "CNAME": "asimbera.github.io"
- }
-}
\ No newline at end of file
+ "description": "Asim Bera's Portfolio",
+ "repo": "https://github.com/asimbera/asimbera.github.io",
+ "owner": {
+ "username": "asimbera",
+ "email": "asimbera@outlook.in"
+ },
+ "record": {
+ "CNAME": "asimbera.github.io"
+ }
+}
diff --git a/domains/aslipatov.json b/domains/aslipatov.json
index 8e4fecbba..346c76bc0 100644
--- a/domains/aslipatov.json
+++ b/domains/aslipatov.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "LipatovAlexander",
- "email": "lipatov.work@bk.ru"
- },
- "record": {
- "CNAME": "lipatovalexander.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "LipatovAlexander",
+ "email": "lipatov.work@bk.ru"
+ },
+ "record": {
+ "CNAME": "lipatovalexander.github.io"
+ }
+}
diff --git a/domains/asnct.json b/domains/asnct.json
index f4eb8a42c..b95023607 100644
--- a/domains/asnct.json
+++ b/domains/asnct.json
@@ -1,17 +1,12 @@
{
- "description": "Redirect to my telegram channel & mail",
- "owner": {
- "username": "asnct",
- "email": "asnct@proton.me"
- },
- "record": {
- "URL": "https://asnct_bio.t.me",
- "TXT": [
- "mailru-domain: wDSaV835X4LZyKsP",
- "v=spf1 redirect=_spf.mail.ru"
- ],
- "MX": [
- "emx.mail.ru"
- ]
- }
-}
\ No newline at end of file
+ "description": "Redirect to my telegram channel & mail",
+ "owner": {
+ "username": "asnct",
+ "email": "asnct@proton.me"
+ },
+ "record": {
+ "URL": "https://asnct_bio.t.me",
+ "TXT": ["mailru-domain: wDSaV835X4LZyKsP", "v=spf1 redirect=_spf.mail.ru"],
+ "MX": ["emx.mail.ru"]
+ }
+}
diff --git a/domains/aspect.json b/domains/aspect.json
index b7aab8134..bf09ab70a 100644
--- a/domains/aspect.json
+++ b/domains/aspect.json
@@ -1,12 +1,12 @@
{
- "description": "My personal blog",
- "repo": "https://github.com/Aspectsides/aspectsides.github.io",
- "owner": {
- "username": "Aspectsides",
- "email": "aspectsidesxyz@gmail.com",
- "twitter": "polaris51212"
- },
- "record": {
- "CNAME": "aspectsides.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal blog",
+ "repo": "https://github.com/Aspectsides/aspectsides.github.io",
+ "owner": {
+ "username": "Aspectsides",
+ "email": "aspectsidesxyz@gmail.com",
+ "twitter": "polaris51212"
+ },
+ "record": {
+ "CNAME": "aspectsides.github.io"
+ }
+}
diff --git a/domains/asriel.json b/domains/asriel.json
index fbae42f69..8017febbc 100644
--- a/domains/asriel.json
+++ b/domains/asriel.json
@@ -1,12 +1,12 @@
{
- "description": "asriel.is-a.dev",
- "repo": "https://github.com/asrielthegoat/asrielthegoat.github.io",
- "owner": {
- "username": "AsrieltheGoat",
- "email": "ganyu@segs.eu.org",
- "discord": "AsrieltheGoat"
- },
- "record": {
- "CNAME": "asrielthegoat.github.io"
- }
-}
\ No newline at end of file
+ "description": "asriel.is-a.dev",
+ "repo": "https://github.com/asrielthegoat/asrielthegoat.github.io",
+ "owner": {
+ "username": "AsrieltheGoat",
+ "email": "ganyu@segs.eu.org",
+ "discord": "AsrieltheGoat"
+ },
+ "record": {
+ "CNAME": "asrielthegoat.github.io"
+ }
+}
diff --git a/domains/asteral.json b/domains/asteral.json
index 62a978f66..0a21f347f 100644
--- a/domains/asteral.json
+++ b/domains/asteral.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Asteral1",
- "discord": "870366927653056582",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.H9xCuEnIBR7E8nLTC_Sjyda_0l2TZlFk5MeyxWiAz9gjxnV9RbPWy6bQfTWip6-Jro_UaAzbgyqT6uDQvFc94M4lrXGs7mygPVmdJlpEelG0bDwtKYAMizZPeFY-1FnkNen-IfrHf4fDwWmt_HBej2IHuWZBgKW_QAy7YFAjiqpAaocf3L4HszP_GCSeh1cFGtpjZxRYHP4FHiuqGaSblf_JPRiE0LwLgfzkyq3S3X9C8Vewph4qJke8vh7TbGVFw0VK8mOSlu-4eB124nCckw09k72qjHr2e3AnXOfO9G6jwlTtpe7a2x3ietmAc-hG2bWt-b4GulSuY7_e05vVzA.i_5GHMDD0QHPBP-Wu7JOSg.HlXpErR61jU-8EcTR4jTFnG48MK1U4YSgAbDJIBMwaNwPT-jBcY0Slx7RhT8Z4NoF3QQL5P3XTHPAcQ6S0e7lM50RJ-gdXyc9ovO-MMhmqs.ZH3nfNB5tWwjqxFRba9XKQ"
- },
- "record": {
- "CNAME": "asteral1.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Asteral1",
+ "discord": "870366927653056582",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.H9xCuEnIBR7E8nLTC_Sjyda_0l2TZlFk5MeyxWiAz9gjxnV9RbPWy6bQfTWip6-Jro_UaAzbgyqT6uDQvFc94M4lrXGs7mygPVmdJlpEelG0bDwtKYAMizZPeFY-1FnkNen-IfrHf4fDwWmt_HBej2IHuWZBgKW_QAy7YFAjiqpAaocf3L4HszP_GCSeh1cFGtpjZxRYHP4FHiuqGaSblf_JPRiE0LwLgfzkyq3S3X9C8Vewph4qJke8vh7TbGVFw0VK8mOSlu-4eB124nCckw09k72qjHr2e3AnXOfO9G6jwlTtpe7a2x3ietmAc-hG2bWt-b4GulSuY7_e05vVzA.i_5GHMDD0QHPBP-Wu7JOSg.HlXpErR61jU-8EcTR4jTFnG48MK1U4YSgAbDJIBMwaNwPT-jBcY0Slx7RhT8Z4NoF3QQL5P3XTHPAcQ6S0e7lM50RJ-gdXyc9ovO-MMhmqs.ZH3nfNB5tWwjqxFRba9XKQ"
+ },
+ "record": {
+ "CNAME": "asteral1.github.io"
+ }
+}
diff --git a/domains/asteria.json b/domains/asteria.json
index 53f19acf9..05d23a3b9 100644
--- a/domains/asteria.json
+++ b/domains/asteria.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "spectre-xenon",
- "email": "omarzaghlool538@gmail.com"
- },
- "record": {
- "CNAME": "asteria-9ee.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "spectre-xenon",
+ "email": "omarzaghlool538@gmail.com"
+ },
+ "record": {
+ "CNAME": "asteria-9ee.pages.dev"
+ }
+}
diff --git a/domains/asterisk.json b/domains/asterisk.json
index 623f24d40..74d6a192d 100644
--- a/domains/asterisk.json
+++ b/domains/asterisk.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "ast3risk-ops",
- "email": "me@asterisk.lol",
- "discord": "789561823863111742"
- },
- "record": {
- "URL": "https://asterisk.lol"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ast3risk-ops",
+ "email": "me@asterisk.lol",
+ "discord": "789561823863111742"
+ },
+ "record": {
+ "URL": "https://asterisk.lol"
+ }
+}
diff --git a/domains/asthriona.json b/domains/asthriona.json
index 205b38b52..4efecb8de 100644
--- a/domains/asthriona.json
+++ b/domains/asthriona.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Asthriona",
- "email": "im@asthriona.com"
- },
- "record": {
- "CNAME": "asthriona.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Asthriona",
+ "email": "im@asthriona.com"
+ },
+ "record": {
+ "CNAME": "asthriona.pages.dev"
+ }
+}
diff --git a/domains/astra.json b/domains/astra.json
index eac4373d5..732e5c81b 100644
--- a/domains/astra.json
+++ b/domains/astra.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "MeHiGalatHu",
- "email": "jabpadhekaindiatabhitoiitjayga@gmail.com"
- },
- "record": {
- "CNAME": "astra-api.glitch.me"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "MeHiGalatHu",
+ "email": "jabpadhekaindiatabhitoiitjayga@gmail.com"
+ },
+ "record": {
+ "CNAME": "astra-api.glitch.me"
+ }
+}
diff --git a/domains/astrowin.json b/domains/astrowin.json
index 3eab4c807..72d047fe1 100644
--- a/domains/astrowin.json
+++ b/domains/astrowin.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "enderfoxbg",
- "email": "enderfoxbg670@gmail.com",
- "discord": "970380468090437672"
- },
- "record": {
- "CNAME": "astrowin.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "enderfoxbg",
+ "email": "enderfoxbg670@gmail.com",
+ "discord": "970380468090437672"
+ },
+ "record": {
+ "CNAME": "astrowin.github.io"
+ }
+}
diff --git a/domains/asuid.dankamigos.json b/domains/asuid.dankamigos.json
index d5cf920fb..5a1b10f6b 100644
--- a/domains/asuid.dankamigos.json
+++ b/domains/asuid.dankamigos.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "mokshdk",
- "email": "anirudhsus001@gmail.com"
- },
- "record": {
- "TXT": [
- "562965D131E7C913D1796476301A86A148A2B64B52D99FC316724B0B785FAAB1"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "mokshdk",
+ "email": "anirudhsus001@gmail.com"
+ },
+ "record": {
+ "TXT": ["562965D131E7C913D1796476301A86A148A2B64B52D99FC316724B0B785FAAB1"]
+ }
+}
diff --git a/domains/asuna.json b/domains/asuna.json
index 80a8f4ca7..835cb6e3b 100644
--- a/domains/asuna.json
+++ b/domains/asuna.json
@@ -1,11 +1,11 @@
{
- "description": "Asuna Personal Website",
- "repo": "https://github.com/ehAsuna/ehAsuna.github.io",
- "owner": {
- "username": "ehAsuna",
- "email": "codeasaurousteam@gmail.com"
- },
- "record": {
- "CNAME": "ehasuna.github.io"
- }
-}
\ No newline at end of file
+ "description": "Asuna Personal Website",
+ "repo": "https://github.com/ehAsuna/ehAsuna.github.io",
+ "owner": {
+ "username": "ehAsuna",
+ "email": "codeasaurousteam@gmail.com"
+ },
+ "record": {
+ "CNAME": "ehasuna.github.io"
+ }
+}
diff --git a/domains/aswin-m-v.json b/domains/aswin-m-v.json
index 291d8278c..674e78a93 100644
--- a/domains/aswin-m-v.json
+++ b/domains/aswin-m-v.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website me , Aswin M V",
- "repo": "https://github.com/AswinArsha/mypersonalwebsite.git",
- "owner": {
- "username": "AswinArsha",
- "email": "aswinmv13@gmail.com"
- },
- "record": {
- "CNAME": "tubular-kangaroo-60ad83.netlify.app"
- }
-}
\ No newline at end of file
+ "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/aswin-vs.json b/domains/aswin-vs.json
index 9921730a4..7e5913870 100644
--- a/domains/aswin-vs.json
+++ b/domains/aswin-vs.json
@@ -1,11 +1,11 @@
{
- "description": "Portfolio of Aswin V S",
- "repo": "https://github.com/aswin-vs/Portfolio",
- "owner": {
- "username": "aswin-vs",
- "email": "aswinvs.nitt@gmail.com"
- },
- "record": {
- "CNAME": "aswin-vs.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio of Aswin V S",
+ "repo": "https://github.com/aswin-vs/Portfolio",
+ "owner": {
+ "username": "aswin-vs",
+ "email": "aswinvs.nitt@gmail.com"
+ },
+ "record": {
+ "CNAME": "aswin-vs.github.io"
+ }
+}
diff --git a/domains/aswin.json b/domains/aswin.json
index 84ed40928..c16350ea7 100644
--- a/domains/aswin.json
+++ b/domains/aswin.json
@@ -1,11 +1,11 @@
{
- "description": "Aswin's personal portfolio",
- "repo": "https://github.com/aswinskumar67/iamaswin.github.io",
- "owner": {
- "username": "aswinskumar67",
- "email": "aswin.skumaro2bme@gmail.com"
- },
- "record": {
- "CNAME": "aswinskumar67.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aswin's personal portfolio",
+ "repo": "https://github.com/aswinskumar67/iamaswin.github.io",
+ "owner": {
+ "username": "aswinskumar67",
+ "email": "aswin.skumaro2bme@gmail.com"
+ },
+ "record": {
+ "CNAME": "aswinskumar67.github.io"
+ }
+}
diff --git a/domains/aswinmahesh.json b/domains/aswinmahesh.json
index c01f4a4dc..9ff22977f 100644
--- a/domains/aswinmahesh.json
+++ b/domains/aswinmahesh.json
@@ -1,18 +1,12 @@
{
- "description": "Aswin Mahesh Website",
- "repo": "https://github.com/aswinmahesh",
- "owner": {
- "username": "aswinmahesh",
- "email": "aswinmahesh.com+dns@gmail.com"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "description": "Aswin Mahesh Website",
+ "owner": {
+ "username": "aswinmahesh",
+ "email": "aswinmahesh.com+dns@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/aswinmaheshc.json b/domains/aswinmaheshc.json
index 48bf13cb2..58dbc1e76 100644
--- a/domains/aswinmaheshc.json
+++ b/domains/aswinmaheshc.json
@@ -1,18 +1,12 @@
{
- "description": "Aswin Mahesh C Website",
- "repo": "https://github.com/aswinmahesh",
- "owner": {
- "username": "aswinmahesh",
- "email": "aswinmahesh.com+dns@gmail.com"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "description": "Aswin Mahesh C Website",
+ "owner": {
+ "username": "aswinmahesh",
+ "email": "aswinmahesh.com+dns@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all", "brevo-code:d8777e54528775ea50a5842cda15f3fb", "k=rsa;p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDeMVIzrCa3T14JsNY0IRv5/2V1/v2itlviLQBwXsa7shBD6TrBkswsFUToPyMRWC9tbR/5ey0nRBH0ZVxp+lsmTxid2Y2z+FApQ6ra2VsXfbJP3HE6wAO0YTVEJt1TmeczhEd2Jiz/fcabIISgXEdSpTYJhb0ct0VJRxcg4c8c7wIDAQAB", "v=DMARC1; p=none; rua=mailto:rua@dmarc.brevo.com"]
+ }
+}
diff --git a/domains/aswinop.json b/domains/aswinop.json
index 5395a29a2..53183abca 100644
--- a/domains/aswinop.json
+++ b/domains/aswinop.json
@@ -1,12 +1,12 @@
{
- "description": "Aswin's portfolio and project wikis",
- "repo": "https://github.com/AswinOP/aswinop.github.io",
- "owner": {
- "username": "AswinOP",
- "email": "itsaswinop@gmail.com",
- "twitter": "iamaswinop"
- },
- "record": {
- "CNAME": "aswinop.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aswin's portfolio and project wikis",
+ "repo": "https://github.com/AswinOP/aswinop.github.io",
+ "owner": {
+ "username": "AswinOP",
+ "email": "itsaswinop@gmail.com",
+ "twitter": "iamaswinop"
+ },
+ "record": {
+ "CNAME": "aswinop.github.io"
+ }
+}
diff --git a/domains/aswinrout.json b/domains/aswinrout.json
index 2577b7d8c..fda546dc8 100644
--- a/domains/aswinrout.json
+++ b/domains/aswinrout.json
@@ -1,11 +1,11 @@
{
- "description": "aswinrout.is-a.dev",
- "repo": "https://github.com/AswinCreates/aswincreates.github.io",
- "owner": {
- "username": "AswinCreates",
- "email": "aswin94281@gmail.com"
- },
- "record": {
- "CNAME": "aswincreates.github.io"
- }
-}
\ No newline at end of file
+ "description": "aswinrout.is-a.dev",
+ "repo": "https://github.com/AswinCreates/aswincreates.github.io",
+ "owner": {
+ "username": "AswinCreates",
+ "email": "aswin94281@gmail.com"
+ },
+ "record": {
+ "CNAME": "aswincreates.github.io"
+ }
+}
diff --git a/domains/asya.json b/domains/asya.json
new file mode 100644
index 000000000..eda2cc50c
--- /dev/null
+++ b/domains/asya.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portofolio website",
+ "repo": "https://github.com/Glenferdinza/glenferdinza.github.io",
+ "owner": {
+ "username": "Glenferdinza",
+ "email":"ghisyadesign21@gmail.com"
+ },
+ "record": {
+ "CNAME": "glenferdinza.github.io"
+ }
+}
diff --git a/domains/async.json b/domains/async.json
index 083e93990..b640d8f72 100644
--- a/domains/async.json
+++ b/domains/async.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "synqqrawr",
- "discord": "797422750321999943",
- "owl": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.crVD_cCdtO6b_JicT3SsK0s6yaSVj3jrf4uy2ecSvBp-kgiqcmhOaeuMyU10dMdvcvrhhfLrDvbYYawk6i4cCbThsYKVoNcmfQmFG4EE-CA98kwasx_g1xHlwXCq3tu1TxLpAOmahvp871714nMFqXvUGK2j0bLsZngbQXbxgz_-3z7o-Kr3T8JhvjSvNXpv8JNyHnQp4bFQ8x7wbSgvAK0y2cskwpKPafc3KigaD511hkWi0YXrZidsW8v3iOUv_uEUXporuGjtf5tsTu0ABmAZjzJ4KCuyM6pYuXJ8tms9W6nXP-fAv6j-c9yEnj6gZnvGk5cZmSjzKxjeqlnoJA.MltIcXwGYYlotVb2BMAjQw.FgwQ7PdSm6tYQ4UVzc7of9O8G02KBJ9U3XgJ69sBTJZf4LOdG6Dwb-87FQ9rPwRZ-U-8PUl9290ub6qDfIqzic8wft5wi1mjJBRIT4B9Luo.sLGOlk_-pYJLI8Oqmo1mOw"
- },
- "record": {
- "CNAME": "synqq.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "synqqrawr",
+ "discord": "797422750321999943",
+ "owl": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.crVD_cCdtO6b_JicT3SsK0s6yaSVj3jrf4uy2ecSvBp-kgiqcmhOaeuMyU10dMdvcvrhhfLrDvbYYawk6i4cCbThsYKVoNcmfQmFG4EE-CA98kwasx_g1xHlwXCq3tu1TxLpAOmahvp871714nMFqXvUGK2j0bLsZngbQXbxgz_-3z7o-Kr3T8JhvjSvNXpv8JNyHnQp4bFQ8x7wbSgvAK0y2cskwpKPafc3KigaD511hkWi0YXrZidsW8v3iOUv_uEUXporuGjtf5tsTu0ABmAZjzJ4KCuyM6pYuXJ8tms9W6nXP-fAv6j-c9yEnj6gZnvGk5cZmSjzKxjeqlnoJA.MltIcXwGYYlotVb2BMAjQw.FgwQ7PdSm6tYQ4UVzc7of9O8G02KBJ9U3XgJ69sBTJZf4LOdG6Dwb-87FQ9rPwRZ-U-8PUl9290ub6qDfIqzic8wft5wi1mjJBRIT4B9Luo.sLGOlk_-pYJLI8Oqmo1mOw"
+ },
+ "record": {
+ "CNAME": "synqq.pages.dev"
+ }
+}
diff --git a/domains/asyncedd.json b/domains/asyncedd.json
index a10c5a634..80927cee2 100644
--- a/domains/asyncedd.json
+++ b/domains/asyncedd.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "asyncedd",
- "email": "isynqquwu@proton.me"
- },
- "record": {
- "CNAME": "asyncedd.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "asyncedd",
+ "email": "isynqquwu@proton.me"
+ },
+ "record": {
+ "CNAME": "asyncedd.pages.dev"
+ }
+}
diff --git a/domains/at-muhammad.json b/domains/at-muhammad.json
new file mode 100644
index 000000000..f1089bec3
--- /dev/null
+++ b/domains/at-muhammad.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "xgovernor",
+ "email": "abutahermuhammad@outlook.com",
+ "description": "Portfolio website of Abu Taher Muhammad"
+ },
+ "record": {
+ "CNAME": "at-mah.vercel.app"
+ }
+}
diff --git a/domains/ataim.json b/domains/ataim.json
index cb98fe696..16b849a47 100644
--- a/domains/ataim.json
+++ b/domains/ataim.json
@@ -1,11 +1,11 @@
{
- "description": "For my portofolio",
- "repo": "https://ataim9999.github.io/mrataim",
- "owner": {
- "username": "ataim9999",
- "email": "daanprive0@gmail.com"
- },
- "record": {
- "CNAME": "ataim9999.github.io"
- }
-}
\ No newline at end of file
+ "description": "For my portofolio",
+ "repo": "https://ataim9999.github.io/mrataim",
+ "owner": {
+ "username": "ataim9999",
+ "email": "daanprive0@gmail.com"
+ },
+ "record": {
+ "CNAME": "ataim9999.github.io"
+ }
+}
diff --git a/domains/atechadventurer.json b/domains/atechadventurer.json
index c9558d769..c4908c57e 100644
--- a/domains/atechadventurer.json
+++ b/domains/atechadventurer.json
@@ -1,11 +1,10 @@
{
- "description": "ATechAdventurer's Site",
- "repo": "https://github.com/ATechAdventurer",
- "owner": {
- "username": "ATechAdventurer",
- "email": "cam.steeleis@gmail.com"
- },
- "record": {
- "URL": "https://github.com/ATechAdventurer"
- }
-}
\ No newline at end of file
+ "description": "ATechAdventurer's Site",
+ "owner": {
+ "username": "ATechAdventurer",
+ "email": "cam.steeleis@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/ATechAdventurer"
+ }
+}
diff --git a/domains/ath.json b/domains/ath.json
index 550fe8a30..aac6e1283 100644
--- a/domains/ath.json
+++ b/domains/ath.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Anchu251",
- "email": "thuanhvu.ai@gmail.com"
- },
- "record": {
- "CNAME": "anchu251.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Anchu251",
+ "email": "thuanhvu.ai@gmail.com"
+ },
+ "record": {
+ "CNAME": "anchu251.github.io"
+ }
+}
diff --git a/domains/athanasopoulos.json b/domains/athanasopoulos.json
index 18fdf65d7..c42231138 100644
--- a/domains/athanasopoulos.json
+++ b/domains/athanasopoulos.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "athanasso",
- "email": "manos.athanasopoulos@yahoo.gr",
- "discord": "187183823354724352"
- },
- "record": {
- "CNAME": "next-portfolio-eight-kohl.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "athanasso",
+ "email": "manos.athanasopoulos@yahoo.gr",
+ "discord": "187183823354724352"
+ },
+ "record": {
+ "CNAME": "next-portfolio-eight-kohl.vercel.app"
+ }
+}
diff --git a/domains/atharv.json b/domains/atharv.json
index 21fa0d897..5613a2fd5 100644
--- a/domains/atharv.json
+++ b/domains/atharv.json
@@ -1,12 +1,12 @@
{
- "description": "Personal website for Atharv",
- "repo": "https://github.com/realatharv/atharv.github.io",
- "owner": {
- "username": "realatharv",
- "email": "atharv.sbiz@gmail.com",
- "twitter": "realatharv"
- },
- "record": {
- "CNAME": "realatharv.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal website for Atharv",
+ "repo": "https://github.com/realatharv/atharv.github.io",
+ "owner": {
+ "username": "realatharv",
+ "email": "atharv.sbiz@gmail.com",
+ "twitter": "realatharv"
+ },
+ "record": {
+ "CNAME": "realatharv.github.io"
+ }
+}
diff --git a/domains/atharva.json b/domains/atharva.json
index 3c2779943..c98afeecd 100644
--- a/domains/atharva.json
+++ b/domains/atharva.json
@@ -1,14 +1,11 @@
{
- "repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io",
- "owner": {
- "username": "atharvaupadhyay",
- "email": "atharva.upadhyay1099@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io",
+ "owner": {
+ "username": "atharvaupadhyay",
+ "email": "atharva.upadhyay1099@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/atharvd.json b/domains/atharvd.json
index 046d22993..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "D-Atharv",
+ "email": "atharv.dewangan04@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-portfolio-dusky-six-78.vercel.app"
+ }
+}
diff --git a/domains/athfan.json b/domains/athfan.json
new file mode 100644
index 000000000..593cf788b
--- /dev/null
+++ b/domains/athfan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "athphane",
+ "email": "athphane@gmail.com"
+ },
+ "record": {
+ "CNAME": "athfan.com"
+ }
+}
diff --git a/domains/athifrahmawan.json b/domains/athifrahmawan.json
index 769452e38..9528ae292 100644
--- a/domains/athifrahmawan.json
+++ b/domains/athifrahmawan.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "ProfRiski",
- "email": "profriski10@gmail.com",
- "discord": "Athif#3017"
- },
- "description": "Athif Rahmawan's Portfolio",
- "record": {
- "CNAME": "profriski.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ProfRiski",
+ "email": "profriski10@gmail.com",
+ "discord": "Athif#3017"
+ },
+ "description": "Athif Rahmawan's Portfolio",
+ "record": {
+ "CNAME": "profriski.github.io"
+ }
+}
diff --git a/domains/athira-li.json b/domains/athira-li.json
index 38aacadd2..0681d7ffa 100644
--- a/domains/athira-li.json
+++ b/domains/athira-li.json
@@ -1,11 +1,11 @@
{
- "description": "Athira's Web-Dev Home",
- "repo": "https://github.com/Athira-L-I/Athira-L-I.github.io",
- "owner": {
- "username": "Athira-L-I",
- "email": "athirali4582@gmail.com"
- },
- "record": {
- "CNAME": "athira-l-i.github.io"
- }
-}
\ No newline at end of file
+ "description": "Athira's Web-Dev Home",
+ "repo": "https://github.com/Athira-L-I/Athira-L-I.github.io",
+ "owner": {
+ "username": "Athira-L-I",
+ "email": "athirali4582@gmail.com"
+ },
+ "record": {
+ "CNAME": "athira-l-i.github.io"
+ }
+}
diff --git a/domains/athulanoop.json b/domains/athulanoop.json
new file mode 100644
index 000000000..3fc576c1c
--- /dev/null
+++ b/domains/athulanoop.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio website",
+ "repo": "https://github.com/alpha-og/portfolio",
+ "owner": {
+ "username": "alpha-og",
+ "email": "athulanoop2020@gmail.com"
+ },
+ "record": {
+ "CNAME": "alpha-og.github.io"
+ }
+}
diff --git a/domains/ati.json b/domains/ati.json
index 1a8fd4f75..4b15481c8 100644
--- a/domains/ati.json
+++ b/domains/ati.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "creeperkafasi",
- "discord": "442685489833705483",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZPTcnLdFttSuLaKlK39M9sd2ycdqHvSoqSEB3_9Et8BOhXNb5gH12xoXrjULQ-VZn_pNgglyesizfRYYtiPBgT1tpqZXuH-oaUgwY7g9NuFcoZAsGX8G2vNR-a_j9rw_7KdpB-NikCUjqt4Af_VS-opbI7Tjshwcte1BFYqJrGvjacnRMkmiLI1c3GuR64MqOmNmQdgz2Lo7wy8yzfPbGKFm49KkZSfz3br_xi8HgRDgOvBYE4HOiPoS7Br_wGyOWp9LOOpJV-h2cKxqW_NrYDjqNDymiod-H0HjvNp-unlINxJ1Lr_zv8-_lqWWF0USHBav0csOOniQrOfTlp4TOg.K8BBMA79AcjnjVD2m_LyUQ.9tFlThKomuA3pULo231_52baTqhyItv6H8y5zFlQSsqx5yx0eCIAWR8Fk5FbC30kIBAj8cxmpmTz_-zvq86deOrN8kJruww8eu8Ywc6vZdo.QoCfXfVsFPMBt4wLOiBZtQ"
- },
- "record": {
- "CNAME": "atiai.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "creeperkafasi",
+ "discord": "442685489833705483",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZPTcnLdFttSuLaKlK39M9sd2ycdqHvSoqSEB3_9Et8BOhXNb5gH12xoXrjULQ-VZn_pNgglyesizfRYYtiPBgT1tpqZXuH-oaUgwY7g9NuFcoZAsGX8G2vNR-a_j9rw_7KdpB-NikCUjqt4Af_VS-opbI7Tjshwcte1BFYqJrGvjacnRMkmiLI1c3GuR64MqOmNmQdgz2Lo7wy8yzfPbGKFm49KkZSfz3br_xi8HgRDgOvBYE4HOiPoS7Br_wGyOWp9LOOpJV-h2cKxqW_NrYDjqNDymiod-H0HjvNp-unlINxJ1Lr_zv8-_lqWWF0USHBav0csOOniQrOfTlp4TOg.K8BBMA79AcjnjVD2m_LyUQ.9tFlThKomuA3pULo231_52baTqhyItv6H8y5zFlQSsqx5yx0eCIAWR8Fk5FbC30kIBAj8cxmpmTz_-zvq86deOrN8kJruww8eu8Ywc6vZdo.QoCfXfVsFPMBt4wLOiBZtQ"
+ },
+ "record": {
+ "CNAME": "atiai.github.io"
+ }
+}
diff --git a/domains/atomic.json b/domains/atomic.json
new file mode 100644
index 000000000..4e9bb4012
--- /dev/null
+++ b/domains/atomic.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "atomictyler1",
+ "discord": "atomictyler"
+ },
+ "record": {
+ "CNAME": "atomictyler1.github.io"
+ }
+}
diff --git a/domains/atomtr.json b/domains/atomtr.json
new file mode 100644
index 000000000..c9aacaa60
--- /dev/null
+++ b/domains/atomtr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "atom-tr",
+ "email": "thai.tr@hotmail.com",
+ "discord": "423327141921423361"
+ },
+ "record": {
+ "CNAME": "astro-erudite.pages.dev"
+ },
+ "repo": "https://github.com/atom-tr/astro-erudite"
+}
diff --git a/domains/atul.json b/domains/atul.json
index 0949c85d4..a560b78ff 100644
--- a/domains/atul.json
+++ b/domains/atul.json
@@ -1,11 +1,11 @@
{
- "description": "Coming Soon",
- "repo": "https://github.com/AtulPatil-me/AtulPatil-me.github.io",
- "owner": {
- "username": "Atul-Patil-99",
- "email": "atuluttampatil.1757@gmail.com"
- },
- "record": {
- "CNAME": "atulpatil-me.github.io"
- }
-}
\ No newline at end of file
+ "description": "Coming Soon",
+ "repo": "https://github.com/AtulPatil-me/AtulPatil-me.github.io",
+ "owner": {
+ "username": "Atul-Patil-99",
+ "email": "atuluttampatil.1757@gmail.com"
+ },
+ "record": {
+ "CNAME": "atulpatil-me.github.io"
+ }
+}
diff --git a/domains/au.json b/domains/au.json
index 8a3bc16ab..b96b01370 100644
--- a/domains/au.json
+++ b/domains/au.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "zzph",
- "email": "johnbrettc@gmail.com"
- },
- "record": {
- "CNAME": "zephyr-1.onrender.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "zzph",
+ "email": "johnbrettc@gmail.com"
+ },
+ "record": {
+ "CNAME": "zephyr-1.onrender.com"
+ }
+}
diff --git a/domains/aud.json b/domains/aud.json
new file mode 100644
index 000000000..5a7f7fe3f
--- /dev/null
+++ b/domains/aud.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "An-Unnamed-Developer",
+ "email": "loganj1403@outlook.com"
+ },
+ "record": {
+ "A": ["82.16.42.25"]
+ }
+}
diff --git a/domains/augustine.json b/domains/augustine.json
index b0fd6aa84..3ea325398 100644
--- a/domains/augustine.json
+++ b/domains/augustine.json
@@ -1,11 +1,10 @@
{
- "description": "Augustine's personal developer website",
- "repo": "https://github.com/augustineaykara",
- "owner": {
- "username": "augustineaykara",
- "email": "augustineaykara@gmail.com"
- },
- "record": {
- "URL": "http://augustine.aykara4.com"
- }
-}
\ No newline at end of file
+ "description": "Augustine's personal developer website",
+ "owner": {
+ "username": "augustineaykara",
+ "email": "augustineaykara@gmail.com"
+ },
+ "record": {
+ "URL": "http://augustine.aykara4.com"
+ }
+}
diff --git a/domains/auq3l.json b/domains/auq3l.json
index ef7b97bba..7e02ef3b0 100644
--- a/domains/auq3l.json
+++ b/domains/auq3l.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "l3qua",
- "email": "lequangthanh260211@gmail.com"
- },
- "record": {
- "CNAME": "l3qua.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "l3qua",
+ "email": "lequangthanh260211@gmail.com"
+ },
+ "record": {
+ "CNAME": "l3qua.github.io"
+ }
+}
diff --git a/domains/aura.json b/domains/aura.json
index 155191db7..06568244b 100644
--- a/domains/aura.json
+++ b/domains/aura.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "auravoid",
- "email": "github@auravoid.dev"
- },
- "record": {
- "CNAME": "aura-is-a-dev.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "auravoid",
+ "email": "github@auravoid.dev"
+ },
+ "record": {
+ "CNAME": "aura-is-a-dev.pages.dev"
+ }
+}
diff --git a/domains/aus.json b/domains/aus.json
index 1258be57c..2a95ccdbf 100644
--- a/domains/aus.json
+++ b/domains/aus.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "MrAkshayAS",
- "email": "akshau72p@gmail.com"
- },
- "record": {
- "URL": "https://mrakshayas.github.io/portfolio/"
- }
-}
\ No newline at end of file
+"owner": {
+ "username": "mraxays",
+ "discord": "mrakshayas"
+ },
+ "record": {
+ "URL": "https://repo.auss.in/portfolio/"
+ }
+}
diff --git a/domains/austino.json b/domains/austino.json
index 9141239a6..5d24b4b1f 100644
--- a/domains/austino.json
+++ b/domains/austino.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AustinGraphics",
- "email": "austinxthomas@gmail.com"
- },
- "record": {
- "CNAME": "austingraphics.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AustinGraphics",
+ "email": "austinxthomas@gmail.com"
+ },
+ "record": {
+ "CNAME": "austingraphics.github.io"
+ }
+}
diff --git a/domains/australia.json b/domains/australia.json
new file mode 100644
index 000000000..f7343bdc9
--- /dev/null
+++ b/domains/australia.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Yunexiz",
+ "discord": "1040303561847881729"
+ },
+ "record": {
+ "URL": "https://yunexiz.is-a.dev/?australia-is-upside-down=true"
+ }
+}
diff --git a/domains/ausy.json b/domains/ausy.json
index 2a01b7702..234f14ec7 100644
--- a/domains/ausy.json
+++ b/domains/ausy.json
@@ -1,11 +1,11 @@
{
- "description": "austinfenne.is-a.dev",
- "repo": "https://https://github.com/FenneAustin/FenneAustin.github.io",
- "owner": {
- "username": "FenneAustin",
- "email": "austindfenne@gmail.com"
- },
- "record": {
- "CNAME": "fenneaustin.github.io"
- }
-}
\ No newline at end of file
+ "description": "austinfenne.is-a.dev",
+ "repo": "https://https://github.com/FenneAustin/FenneAustin.github.io",
+ "owner": {
+ "username": "FenneAustin",
+ "email": "austindfenne@gmail.com"
+ },
+ "record": {
+ "CNAME": "fenneaustin.github.io"
+ }
+}
diff --git a/domains/auth.sign.alvin.json b/domains/auth.sign.alvin.json
new file mode 100644
index 000000000..c279d0ff2
--- /dev/null
+++ b/domains/auth.sign.alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "TXT": "Created to allow nested subdomains to exist."
+ }
+}
diff --git a/domains/autobean.json b/domains/autobean.json
index 97df65fe0..d1eb25b2e 100644
--- a/domains/autobean.json
+++ b/domains/autobean.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "AriesPowv",
- "email": "apowvalla26@jesuitmail.org"
- },
- "record": {
- "A": [
- "34.111.254.92"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AriesPowv",
+ "email": "apowvalla26@jesuitmail.org"
+ },
+ "record": {
+ "A": ["34.111.254.92"]
+ }
+}
diff --git a/domains/autoconfig.ciaobot.json b/domains/autoconfig.ciaobot.json
deleted file mode 100644
index 8e7e42d95..000000000
--- a/domains/autoconfig.ciaobot.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Ciao287",
- "discord": "687333016921440317"
- },
- "record": {
- "CNAME": "mail.ciaohost.tech"
- }
-}
\ No newline at end of file
diff --git a/domains/autodiscover.ciaobot.json b/domains/autodiscover.ciaobot.json
deleted file mode 100644
index 8e7e42d95..000000000
--- a/domains/autodiscover.ciaobot.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Ciao287",
- "discord": "687333016921440317"
- },
- "record": {
- "CNAME": "mail.ciaohost.tech"
- }
-}
\ No newline at end of file
diff --git a/domains/autodiscover.halinh0506.json b/domains/autodiscover.halinh0506.json
deleted file mode 100644
index 829b048de..000000000
--- a/domains/autodiscover.halinh0506.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "huanhoahongso3-collab",
- "email": "huanhoahongso3@gmail.com"
- },
- "record": {
- "CNAME": "autodiscover.outlook.com"
- }
-}
\ No newline at end of file
diff --git a/domains/autodiscover.yash.json b/domains/autodiscover.yash.json
index f6e86a2ec..5fbc873dc 100644
--- a/domains/autodiscover.yash.json
+++ b/domains/autodiscover.yash.json
@@ -1,11 +1,11 @@
{
- "description": "Link to my portfolio site.",
- "repo": "https://github.com/real-yash/website",
- "owner": {
- "username": "real-yash",
- "email": "connect@real-yash.is-a.dev"
- },
- "record": {
- "CNAME": "autodiscover.outlook.com"
- }
-}
\ No newline at end of file
+ "description": "Link to my portfolio site.",
+ "repo": "https://github.com/real-yash/website",
+ "owner": {
+ "username": "real-yash",
+ "email": "connect@real-yash.is-a.dev"
+ },
+ "record": {
+ "CNAME": "autodiscover.outlook.com"
+ }
+}
diff --git a/domains/ave.json b/domains/ave.json
index 0942d451a..456a3e924 100644
--- a/domains/ave.json
+++ b/domains/ave.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website for @ayvacs",
- "repo": "https://github.com/ayvacs/ayvacs.github.io",
- "owner": {
- "username": "ayvacs",
- "email": "ayvacs@proton.me"
- },
- "record": {
- "CNAME": "ayvacs.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal website for @ayvacs",
+ "repo": "https://github.com/ayvacs/ayvacs.github.io",
+ "owner": {
+ "username": "ayvacs",
+ "email": "ayvacs@proton.me"
+ },
+ "record": {
+ "CNAME": "ayvacs.github.io"
+ }
+}
diff --git a/domains/avellea.json b/domains/avellea.json
index 1f4e4b5ab..cb8c2e2f9 100644
--- a/domains/avellea.json
+++ b/domains/avellea.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website.",
- "repo": "https://github.com/Avellea/Avellea.github.io",
- "owner": {
- "username": "Avellea",
- "discord": "Ave#2776"
- },
- "record": {
- "CNAME": "avellea.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal website.",
+ "repo": "https://github.com/Avellea/Avellea.github.io",
+ "owner": {
+ "username": "Avellea",
+ "discord": "Ave#2776"
+ },
+ "record": {
+ "CNAME": "avellea.github.io"
+ }
+}
diff --git a/domains/avengers-sonarqube.json b/domains/avengers-sonarqube.json
index 38aa39df0..fc7696611 100644
--- a/domains/avengers-sonarqube.json
+++ b/domains/avengers-sonarqube.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "hxhieu",
- "email": "hugh.hoang@gmail.com"
- },
- "record": {
- "CNAME": "sonaqube.jollyocean-513cc86d.australiaeast.azurecontainerapps.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "hxhieu",
+ "email": "hugh.hoang@gmail.com"
+ },
+ "record": {
+ "CNAME": "sonaqube.jollyocean-513cc86d.australiaeast.azurecontainerapps.io"
+ }
+}
diff --git a/domains/averagepce.json b/domains/averagepce.json
index 1a9efa628..12dc26112 100644
--- a/domains/averagepce.json
+++ b/domains/averagepce.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "FaultyFaulty-glitch",
- "email": "faultywindows@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "FaultyFaulty-glitch",
+ "email": "faultywindows@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/averagepcweb.json b/domains/averagepcweb.json
index ba025dc30..d7de4fcdb 100644
--- a/domains/averagepcweb.json
+++ b/domains/averagepcweb.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "FaultyFaulty-glitch",
- "discord": "1102928631191322675"
- },
- "record": {
- "CNAME": "averagepcweb.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "FaultyFaulty-glitch",
+ "discord": "1102928631191322675"
+ },
+ "record": {
+ "CNAME": "averagepcweb.pages.dev"
+ }
+}
diff --git a/domains/averse.json b/domains/averse.json
index a4d168a52..a01b730f1 100644
--- a/domains/averse.json
+++ b/domains/averse.json
@@ -1,11 +1,11 @@
{
- "description": "Personal site",
- "repo": "https://github.com/AverseABFun/my-site",
- "owner": {
- "username": "AverseABFun",
- "email": "averse.abfun@gmail.com"
- },
- "record": {
- "CNAME": "averseabfun.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal site",
+ "repo": "https://github.com/AverseABFun/my-site",
+ "owner": {
+ "username": "AverseABFun",
+ "email": "averse.abfun@gmail.com"
+ },
+ "record": {
+ "CNAME": "averseabfun.github.io"
+ }
+}
diff --git a/domains/avery.json b/domains/avery.json
index b03a618b8..af5e85347 100644
--- a/domains/avery.json
+++ b/domains/avery.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "caverym",
- "email": "averylapine@gmail.com",
- "discord": "Avery~#1845"
- },
- "description": "A cool domain that will most likely use!",
- "record": {
- "CNAME": "caverym.net"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "caverym",
+ "email": "averylapine@gmail.com",
+ "discord": "Avery~#1845"
+ },
+ "description": "A cool domain that will most likely use!",
+ "record": {
+ "CNAME": "caverym.net"
+ }
+}
diff --git a/domains/avg.json b/domains/avg.json
index a787e2f0a..68077ac02 100644
--- a/domains/avg.json
+++ b/domains/avg.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AverageHelper",
- "mastodon": "@avghelper@average.name"
- },
- "record": {
- "URL": "https://average.name"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AverageHelper",
+ "mastodon": "@avghelper@average.name"
+ },
+ "record": {
+ "URL": "https://average.name"
+ }
+}
diff --git a/domains/avi.json b/domains/avi.json
index 8c914ca44..7b197271f 100644
--- a/domains/avi.json
+++ b/domains/avi.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "avipars",
- "email": "isdev@aviparshan.com"
- },
- "record": {
- "CNAME": "avipars.github.io"
- },
- "description": "Personal website with useful links",
- "repo": "https://github.com/avipars/avipars.github.io"
-}
\ No newline at end of file
+ "owner": {
+ "username": "avipars",
+ "email": "isdev@aviparshan.com"
+ },
+ "record": {
+ "CNAME": "avipars.github.io"
+ },
+ "description": "Personal website with useful links",
+ "repo": "https://github.com/avipars/avipars.github.io"
+}
diff --git a/domains/avidevs31.json b/domains/avidevs31.json
index bce27e1e5..c5ba0bfbe 100644
--- a/domains/avidevs31.json
+++ b/domains/avidevs31.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AviDevs31",
- "email": "josealbertotaverazz@gmail.com"
- },
- "record": {
- "CNAME": "avidevs31.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AviDevs31",
+ "email": "josealbertotaverazz@gmail.com"
+ },
+ "record": {
+ "CNAME": "avidevs31.github.io"
+ }
+}
diff --git a/domains/avilam.json b/domains/avilam.json
new file mode 100644
index 000000000..e226bad00
--- /dev/null
+++ b/domains/avilam.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "dxravage"
+ },
+ "record": {
+ "CNAME": "dxravage.github.io"
+ }
+}
diff --git a/domains/aviv.json b/domains/aviv.json
new file mode 100644
index 000000000..dccbffc39
--- /dev/null
+++ b/domains/aviv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "avivelmakias1",
+ "email": "aviv.elmakias.b@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/avivelmakias1"
+ }
+ }
diff --git a/domains/avnoor-gamerz.json b/domains/avnoor-gamerz.json
index d35374514..92d607ea7 100644
--- a/domains/avnoor-gamerz.json
+++ b/domains/avnoor-gamerz.json
@@ -1,12 +1,12 @@
{
- "description": "Official WEBSITE OF aVNOOR gAMERZ",
- "repo": "https://github.com/Avnoor-Gamerz/avnoor-gamerz.github.io",
- "owner": {
- "username": "avnoor-gamerz",
- "email": "avnoorchahal001@gmail.com",
- "twitter": "avnoor-gamerz"
- },
- "record": {
- "CNAME": "avnoor-gamerz.github.io"
- }
-}
\ No newline at end of file
+ "description": "Official WEBSITE OF aVNOOR gAMERZ",
+ "repo": "https://github.com/Avnoor-Gamerz/avnoor-gamerz.github.io",
+ "owner": {
+ "username": "avnoor-gamerz",
+ "email": "avnoorchahal001@gmail.com",
+ "twitter": "avnoor-gamerz"
+ },
+ "record": {
+ "CNAME": "avnoor-gamerz.github.io"
+ }
+}
diff --git a/domains/avversion.json b/domains/avversion.json
index 33e780587..be1e069fa 100644
--- a/domains/avversion.json
+++ b/domains/avversion.json
@@ -1,9 +1,8 @@
{
- "owner": {
- "username": "AVVERSION",
- "email": "79741360+AVVERSION@users.noreply.github.com"
- },
- "record": {
- "CNAME": "avversion.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AVVERSION"
+ },
+ "record": {
+ "CNAME": "avversion.github.io"
+ }
+}
diff --git a/domains/awais.json b/domains/awais.json
index 8f61a845a..e50653d4e 100644
--- a/domains/awais.json
+++ b/domains/awais.json
@@ -1,12 +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
-}
\ No newline at end of file
+ "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/awan.json b/domains/awan.json
index 6aeedb1d6..7890ad975 100644
--- a/domains/awan.json
+++ b/domains/awan.json
@@ -1,11 +1,11 @@
{
- "description": "Awan Shrestha's Site",
- "owner": {
- "username": "awanshrestha",
- "email": "awa1shrestha@gmail.com",
- "twitter": "awanshrestha1"
- },
- "record": {
- "URL": "https://awan.com.np"
- }
-}
\ No newline at end of file
+ "description": "Awan Shrestha's Site",
+ "owner": {
+ "username": "awanshrestha",
+ "email": "awa1shrestha@gmail.com",
+ "twitter": "awanshrestha1"
+ },
+ "record": {
+ "URL": "https://awan.com.np"
+ }
+}
diff --git a/domains/awhvish.json b/domains/awhvish.json
new file mode 100644
index 000000000..55661a28f
--- /dev/null
+++ b/domains/awhvish.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "awhvish",
+ "email": "high.avis.lowha@gmail.com"
+ },
+ "record": {
+ "CNAME": "awhvish.vercel.app"
+ }
+}
diff --git a/domains/awinds.json b/domains/awinds.json
new file mode 100644
index 000000000..4218df2ff
--- /dev/null
+++ b/domains/awinds.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "awinds",
+ "email": "awinds@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "felicity.ns.cloudflare.com",
+ "keyla.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/axay.json b/domains/axay.json
index 0f782d54b..0443203ea 100644
--- a/domains/axay.json
+++ b/domains/axay.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "MrAkshayAS",
- "discord": "mrakshayas"
- },
- "record": {
- "URL": "https://mrakshayas.github.io/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "mraxays",
+ "discord": "mrakshayas"
+ },
+ "record": {
+ "URL": "https://mraxays.github.io/"
+ }
+}
diff --git a/domains/axd.json b/domains/axd.json
index e2a171f38..833de0b33 100644
--- a/domains/axd.json
+++ b/domains/axd.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "alexdhg",
- "email": "webmaster@webwarp.ro"
- },
- "record": {
- "URL": "https://webwarp.ro"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "alexdhg",
+ "email": "webmaster@webwarp.ro"
+ },
+ "record": {
+ "URL": "https://webwarp.ro"
+ }
+}
diff --git a/domains/axe.json b/domains/axe.json
index 323c098a6..490132d0e 100644
--- a/domains/axe.json
+++ b/domains/axe.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "axelawh",
- "email": "lewisbrown171@gmail.com"
- },
- "record": {
- "A": [
- "195.20.254.54"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "axelawh",
+ "email": "lewisbrown171@gmail.com"
+ },
+ "record": {
+ "A": ["195.20.254.54"]
+ }
+}
diff --git a/domains/axel.json b/domains/axel.json
index 1e97e886a..15f0a6860 100644
--- a/domains/axel.json
+++ b/domains/axel.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "axelilali",
- "email": "axel.ilali@yahoo.fr"
- },
- "record": {
- "CNAME": "axel-ilali.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "axelilali",
+ "email": "axel.ilali@yahoo.fr"
+ },
+ "record": {
+ "CNAME": "axel-ilali.com"
+ }
+}
diff --git a/domains/axeon.json b/domains/axeon.json
index 3fb8fa570..140a06bd7 100644
--- a/domains/axeon.json
+++ b/domains/axeon.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ReBlast",
- "discord": "poxuizm"
- },
- "record": {
- "CNAME": "axeon.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "vyfor",
+ "discord": "vyfor"
+ },
+ "record": {
+ "CNAME": "axeon.pages.dev"
+ }
+}
diff --git a/domains/axewbotx.json b/domains/axewbotx.json
index d871f2fcc..9001701b6 100644
--- a/domains/axewbotx.json
+++ b/domains/axewbotx.json
@@ -1,12 +1,12 @@
{
- "description": "Personal Website",
- "repo": "https://github.com/AxewBoTX/axewbotx.github.io",
- "owner": {
- "username": "AxewBoTX",
- "email": "lovedeepbrar54155@gmail.com",
- "twitter": "AxewBoTX"
- },
- "record": {
- "CNAME": "axewbotx.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Website",
+ "repo": "https://github.com/AxewBoTX/axewbotx.github.io",
+ "owner": {
+ "username": "AxewBoTX",
+ "email": "lovedeepbrar54155@gmail.com",
+ "twitter": "AxewBoTX"
+ },
+ "record": {
+ "CNAME": "axewbotx.github.io"
+ }
+}
diff --git a/domains/axinux.json b/domains/axinux.json
index 8ef12e7ec..0511d4406 100644
--- a/domains/axinux.json
+++ b/domains/axinux.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "axinux",
- "email": "theaxinux@gmail.com"
- },
- "record": {
- "CNAME": "my-website-cvi.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "axinux",
+ "email": "theaxinux@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-website-cvi.pages.dev"
+ }
+}
diff --git a/domains/axioris.json b/domains/axioris.json
index 8116c6d01..bee8d25e5 100644
--- a/domains/axioris.json
+++ b/domains/axioris.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "axioris",
- "email": "dane.foster.collins@gmail.com"
- },
- "record": {
- "CNAME": "axioris.github.io"
- }
-}
\ No newline at end of file
+ "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 32247e4f8..1b827d480 100644
--- a/domains/axo.json
+++ b/domains/axo.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "ImAxolotlicekDev",
- "discord": "1125148972449796136",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qTh1SRQ2rIL26gQVBhmWSiLfW8cEEKLYBIYAj90jEctx9sSIXBWVGNBbtHzRKEajLmLPJClSn3H1ZEh1y0a-xaZZtyyQMJPSnLz0uq9GwjGqnC7GERliGZZMgdcdbHkskkDx5HU0yIjQYKcCKcTxDpEoIGfjJsc0sxQSGvz7gzH2XLuPmaGQY_9N-iJRT5Qxoe7dZ8f8cXT1XQr0SMuVw_MK-oHv05N8Mq33n7bYBdevRJjwGm9-fgceAS4Az30GCu4LPftFw2aUnz-mfzQNP7FaTq6hAkmIXGF1TI4zZwI8s0E5SYYF0Wdeza5I5bL2eV9U0ZKb8TBDYlOCu4zt-A.l7hez3hwbNNkuYc5mGcHnw.ZaJJd4kNJZPDYem-sNHBJ1qzSaGPQiERP1LBUZ-HDvbGC6FHBrdBJ-LFm_9k_jmPTSYgyU7Pz9YqKcaZhLWPHmYYhurP2t3gG9jDEAGoi4HB6I5Ddlc0g_WthxOak8Yx.bwqnONbqUYeiqlYhZ6fWXw"
- },
- "record": {
- "A": [
- "158.178.206.169"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ImAxolotlicekDev",
+ "discord": "1125148972449796136",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qTh1SRQ2rIL26gQVBhmWSiLfW8cEEKLYBIYAj90jEctx9sSIXBWVGNBbtHzRKEajLmLPJClSn3H1ZEh1y0a-xaZZtyyQMJPSnLz0uq9GwjGqnC7GERliGZZMgdcdbHkskkDx5HU0yIjQYKcCKcTxDpEoIGfjJsc0sxQSGvz7gzH2XLuPmaGQY_9N-iJRT5Qxoe7dZ8f8cXT1XQr0SMuVw_MK-oHv05N8Mq33n7bYBdevRJjwGm9-fgceAS4Az30GCu4LPftFw2aUnz-mfzQNP7FaTq6hAkmIXGF1TI4zZwI8s0E5SYYF0Wdeza5I5bL2eV9U0ZKb8TBDYlOCu4zt-A.l7hez3hwbNNkuYc5mGcHnw.ZaJJd4kNJZPDYem-sNHBJ1qzSaGPQiERP1LBUZ-HDvbGC6FHBrdBJ-LFm_9k_jmPTSYgyU7Pz9YqKcaZhLWPHmYYhurP2t3gG9jDEAGoi4HB6I5Ddlc0g_WthxOak8Yx.bwqnONbqUYeiqlYhZ6fWXw"
+ },
+ "record": {
+ "A": ["158.178.206.169"]
+ }
+}
diff --git a/domains/axrxvm.json b/domains/axrxvm.json
index c06775e5d..c019c3058 100644
--- a/domains/axrxvm.json
+++ b/domains/axrxvm.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AaravMehta59",
- "email": "poojaaarav321@gmail.com"
- },
- "record": {
- "URL": "https://aaravm.me/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AaravMehta59",
+ "email": "poojaaarav321@gmail.com"
+ },
+ "record": {
+ "URL": "https://aaravm.me/"
+ }
+}
diff --git a/domains/ayaangrover.json b/domains/ayaangrover.json
index aa6e7b68f..545053a65 100644
--- a/domains/ayaangrover.json
+++ b/domains/ayaangrover.json
@@ -1,12 +1,12 @@
{
- "description": "A better link for my personal profile",
- "repo": "https://github.com/ayaangrover/ayaangrover.github.io",
- "owner": {
- "username": "ayaangrover",
- "email": "ayaangrover@gmail.com",
- "twitter": "grover_ayaan"
- },
- "record": {
- "CNAME": "ayaangrover.github.io"
- }
-}
\ No newline at end of file
+ "description": "A better link for my personal profile",
+ "repo": "https://github.com/ayaangrover/ayaangrover.github.io",
+ "owner": {
+ "username": "ayaangrover",
+ "email": "ayaangrover@gmail.com",
+ "twitter": "grover_ayaan"
+ },
+ "record": {
+ "CNAME": "ayaangrover.github.io"
+ }
+}
diff --git a/domains/ayaanhaider.json b/domains/ayaanhaider.json
index 434955b65..594c3916a 100644
--- a/domains/ayaanhaider.json
+++ b/domains/ayaanhaider.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ayaanhaider-dev",
- "email": "ayaanhaider.dev@gmail.com"
- },
- "record": {
- "CNAME": "ayaanhaider-dev.web.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ayaanhaider-dev",
+ "email": "ayaanhaider.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "ayaanhaider-dev.web.app"
+ }
+}
diff --git a/domains/ayan.json b/domains/ayan.json
index 888c3e7de..301f6bac0 100644
--- a/domains/ayan.json
+++ b/domains/ayan.json
@@ -1,13 +1,11 @@
{
- "owner": {
- "username": "Ghost-67-G",
- "discordUserame": "ghost_67_g",
- "discord": "1257342894172274758",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.InxyqXdwBXr24GsihCzaEqGi84Z0xotOI_vlu-03PGjOvenB2_55Q7lEFvMLRHTK0AbcuE9pPfqGac4MkULKNoSpAxTJD9wy0oqfaLoKIjcqJTC8e3L23l_-xht8e7Kca8Z87rpHVkb0JZe9svt_w1BZq30GLAwevkZilr7JdS7I-LmArbL7cf0IFU5qpB3FdMVtglx5KoBLT6cyLSR0BOIozBTpe-NspSvpu6rvSFMpbCiLuosXHvRP4KAcqEJPQ2QKLvOUEc53yLry-ws_VOrN5KC-wcb6fLAqVcenilKyW89lLW8mdRq1mLLOuUU2NLLMLZv5YCbM7-bFPKKUEQ.Wst_jjbT4uV1S4oLoiZvDQ.5DQCUGh0EVe6AjQcin_IXOC5UY-p_8hpOVExIF9lRV72K_OfykQdahQ5kLQWJLhUSvzPJHHDw4Z3GgD0OpSCLR3kFtdBKVhuR0bPaikj-x-a6IorOmD_plbXA7Doma-W.UkyrHmdJZXkNLfFqiLARYg"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Ghost-67-G",
+ "discordUserame": "ghost_67_g",
+ "discord": "1257342894172274758",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.InxyqXdwBXr24GsihCzaEqGi84Z0xotOI_vlu-03PGjOvenB2_55Q7lEFvMLRHTK0AbcuE9pPfqGac4MkULKNoSpAxTJD9wy0oqfaLoKIjcqJTC8e3L23l_-xht8e7Kca8Z87rpHVkb0JZe9svt_w1BZq30GLAwevkZilr7JdS7I-LmArbL7cf0IFU5qpB3FdMVtglx5KoBLT6cyLSR0BOIozBTpe-NspSvpu6rvSFMpbCiLuosXHvRP4KAcqEJPQ2QKLvOUEc53yLry-ws_VOrN5KC-wcb6fLAqVcenilKyW89lLW8mdRq1mLLOuUU2NLLMLZv5YCbM7-bFPKKUEQ.Wst_jjbT4uV1S4oLoiZvDQ.5DQCUGh0EVe6AjQcin_IXOC5UY-p_8hpOVExIF9lRV72K_OfykQdahQ5kLQWJLhUSvzPJHHDw4Z3GgD0OpSCLR3kFtdBKVhuR0bPaikj-x-a6IorOmD_plbXA7Doma-W.UkyrHmdJZXkNLfFqiLARYg"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/ayberk.json b/domains/ayberk.json
new file mode 100644
index 000000000..c89fc485c
--- /dev/null
+++ b/domains/ayberk.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio",
+ "repo": "https://github.com/ayberktandogan/ayberktandogan.github.io",
+ "owner": {
+ "username": "ayberktandogan",
+ "email": "ayberk.tandogan@outlook.com"
+ },
+ "record": {
+ "CNAME": "ayberktandogan.github.io"
+ }
+}
diff --git a/domains/ayinaki.json b/domains/ayinaki.json
index c2f8393fd..3400f69bd 100644
--- a/domains/ayinaki.json
+++ b/domains/ayinaki.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Ayinaki",
- "email": "ayinakidev@gmail.com"
- },
- "record": {
- "CNAME": "ayinaki.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Ayinaki",
+ "email": "ayinakidev@gmail.com"
+ },
+ "record": {
+ "CNAME": "ayinaki.github.io"
+ }
+}
diff --git a/domains/aymouwu.json b/domains/aymouwu.json
index c6a9df684..9e620ceca 100644
--- a/domains/aymouwu.json
+++ b/domains/aymouwu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NotAymo",
- "email": "ninecraftoff@outlook.com"
- },
- "record": {
- "CNAME": "usest1.netro.host"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "NotAymo",
+ "email": "ninecraftoff@outlook.com"
+ },
+ "record": {
+ "CNAME": "usest1.netro.host"
+ }
+}
diff --git a/domains/aynonyme.json b/domains/aynonyme.json
index 7809f06e9..66a84dbb0 100644
--- a/domains/aynonyme.json
+++ b/domains/aynonyme.json
@@ -1,13 +1,11 @@
{
- "description": "My Portfolio",
- "repo": "https://github.com/AYn0nyme/ayn0nyme.github.io",
- "owner": {
- "username": "AYn0nyme",
- "email": "aynonyme@proton.me"
- },
- "record": {
- "A": [
- "69.30.249.53"
- ]
- }
-}
\ No newline at end of file
+ "description": "My Portfolio",
+ "repo": "https://github.com/AYn0nyme/ayn0nyme.github.io",
+ "owner": {
+ "username": "AYn0nyme",
+ "email": "aynonyme@proton.me"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/ayoungmanwithanoldsoul.json b/domains/ayoungmanwithanoldsoul.json
index 39d4a1395..ff9f8ecfc 100644
--- a/domains/ayoungmanwithanoldsoul.json
+++ b/domains/ayoungmanwithanoldsoul.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ayoungmanwithanoldsoul",
- "email": "paoloandrewpomar@gmail.com"
- },
- "record": {
- "CNAME": "ayoungmanwithanoldsoul.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ayoungmanwithanoldsoul",
+ "email": "paoloandrewpomar@gmail.com"
+ },
+ "record": {
+ "CNAME": "ayoungmanwithanoldsoul.github.io"
+ }
+}
diff --git a/domains/aypro.json b/domains/aypro.json
index 8634883b6..a5e78fa37 100644
--- a/domains/aypro.json
+++ b/domains/aypro.json
@@ -1,11 +1,11 @@
{
- "description": "Aypro's personal website",
- "repo": "https://github.com/aypro-droid/aypro-droid.github.io",
- "owner": {
- "username": "aypro-droid",
- "email": "ayprogaming1@gmail.com"
- },
- "record": {
- "CNAME": "aypro-droid.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aypro's personal website",
+ "repo": "https://github.com/aypro-droid/aypro-droid.github.io",
+ "owner": {
+ "username": "aypro-droid",
+ "email": "ayprogaming1@gmail.com"
+ },
+ "record": {
+ "CNAME": "aypro-droid.github.io"
+ }
+}
diff --git a/domains/ayush.json b/domains/ayush.json
index 0b6011e8e..067fbfcf6 100644
--- a/domains/ayush.json
+++ b/domains/ayush.json
@@ -1,11 +1,11 @@
{
- "description": "My Website",
- "repo": "https://github.com/Itzayushzz/Itzayushzz.github.io",
- "owner": {
- "username": "Itzayushzz",
- "discord": "Ayush_Ezz#6057"
- },
- "record": {
- "CNAME": "itzayushzz.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Website",
+ "repo": "https://github.com/Itzayushzz/Itzayushzz.github.io",
+ "owner": {
+ "username": "Itzayushzz",
+ "discord": "Ayush_Ezz#6057"
+ },
+ "record": {
+ "CNAME": "itzayushzz.github.io"
+ }
+}
diff --git a/domains/ayushh.json b/domains/ayushh.json
new file mode 100644
index 000000000..f5d196fd1
--- /dev/null
+++ b/domains/ayushh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Ayush personal website",
+ "repo": "https://github.com/Ayush-Kotlin-Dev/GFG_GGV",
+ "owner": {
+ "username": "ayush-kotlin-dev",
+ "email": "shweetarai@gmail.com"
+ },
+ "record": {
+ "URL": "https://my-portfolio-qlsr.onrender.com/"
+ }
+}
diff --git a/domains/ayushk.json b/domains/ayushk.json
new file mode 100644
index 000000000..04dd6d929
--- /dev/null
+++ b/domains/ayushk.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ayushk-1801",
+ "email": "ayush.kumara1801@gmail.com",
+ "discord": "ayushk_1801"
+ },
+ "record": {
+ "CNAME": "ayushkumaranand.vercel.app"
+ }
+}
diff --git a/domains/ayushman.json b/domains/ayushman.json
new file mode 100644
index 000000000..ec481315c
--- /dev/null
+++ b/domains/ayushman.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website for Ayushman",
+ "owner": {
+ "username": "AMRzip",
+ "email": "ayushmanrathi0@gmail.com"
+ },
+ "record": {
+ "CNAME": "ARMzip.github.io"
+ },
+ "proxied": false
+}
diff --git a/domains/ayushmansarkar.json b/domains/ayushmansarkar.json
index 22a785eb2..406f5b71d 100644
--- a/domains/ayushmansarkar.json
+++ b/domains/ayushmansarkar.json
@@ -1,11 +1,11 @@
{
- "description": "To Host my personal website :)",
- "repo": "https://github.com/AyushmanSarkar/ayushman-sarkar.github.io",
- "owner": {
- "username": "AyushmanSarkar",
- "email": "aayushmans2008@gmail.com"
- },
- "record": {
- "CNAME": "ayushmansarkar.github.io"
- }
-}
\ No newline at end of file
+ "description": "To Host my personal website :)",
+ "repo": "https://github.com/AyushmanSarkar/ayushman-sarkar.github.io",
+ "owner": {
+ "username": "AyushmanSarkar",
+ "email": "aayushmans2008@gmail.com"
+ },
+ "record": {
+ "CNAME": "ayushmansarkar.github.io"
+ }
+}
diff --git a/domains/ayushshivaji.json b/domains/ayushshivaji.json
index 3cc64474c..b2fad146c 100644
--- a/domains/ayushshivaji.json
+++ b/domains/ayushshivaji.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ayushclashroyale",
- "email": "ayushclashroyale@gmail.com"
- },
- "record": {
- "CNAME": "ayushclashroyale.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ayushclashroyale",
+ "email": "ayushclashroyale@gmail.com"
+ },
+ "record": {
+ "CNAME": "ayushclashroyale.github.io"
+ }
+}
diff --git a/domains/ayushtiwari.json b/domains/ayushtiwari.json
index 38a4c40bf..d300ab9a0 100644
--- a/domains/ayushtiwari.json
+++ b/domains/ayushtiwari.json
@@ -1,11 +1,11 @@
{
- "description": "ayushtiwari.is-a.dev for my portfolio website",
- "repo": "https://github.com/aaayushh7/myPortfolio.git",
- "owner": {
- "username": "aaayushh7",
- "discord": "_aaayushh"
- },
- "record": {
- "URL": "https://ayushtiwari.co"
- }
-}
\ No newline at end of file
+ "description": "ayushtiwari.is-a.dev for my portfolio website",
+ "repo": "https://github.com/aaayushh7/myPortfolio.git",
+ "owner": {
+ "username": "aaayushh7",
+ "discord": "_aaayushh"
+ },
+ "record": {
+ "URL": "https://ayushtiwari.co"
+ }
+}
diff --git a/domains/ayxdacat.json b/domains/ayxdacat.json
index e4f4be9f0..0c9415d87 100644
--- a/domains/ayxdacat.json
+++ b/domains/ayxdacat.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ayxkaddd",
- "email": "bladeec1ty@protonmail.com"
- },
- "record": {
- "URL": "https://ayxdacat.lol"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ayxkaddd",
+ "email": "bladeec1ty@protonmail.com"
+ },
+ "record": {
+ "URL": "https://ayxdacat.lol"
+ }
+}
diff --git a/domains/azeem.json b/domains/azeem.json
index a9c9f8a4f..4b38bf4b7 100644
--- a/domains/azeem.json
+++ b/domains/azeem.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Portfolio",
- "repo": "https://github.com/azeemidrisi/azeemidrisi.github.io",
- "owner": {
- "username": "azeemidrisi",
- "email": "azeemidrisi@protonmail.com"
- },
- "record": {
- "CNAME": "azeemidrisi.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/azeemidrisi/azeemidrisi.github.io",
+ "owner": {
+ "username": "azeemidrisi",
+ "email": "azeemidrisi@protonmail.com"
+ },
+ "record": {
+ "CNAME": "azeemidrisi.github.io"
+ }
+}
diff --git a/domains/azeemdev.json b/domains/azeemdev.json
index d3cd0aee0..92a128061 100644
--- a/domains/azeemdev.json
+++ b/domains/azeemdev.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "iAinAzeem",
- "discord": "1063614318777729034",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sh1QL5Ze1LYuiCFi9DEqnW54jlRtwZ1k-YEvx7bUhm_zLLRyw-O5g1rsRj3FHr2UBDHnyny9mLI2zshWnPUH8B4fMgFG-XB-3Abq40JRcMrX7JGo964RF0iUtfXxQ6rhrnpgNi5a5uy8K3bE59JHIwqRLlkdmYSBPgtrt9h_WyFIk7--Or5dF0bSkKykZ3STLKbhj830jWf_5DcbUwldyppTc-XW_ZSYp4FK4wYhlnioPBhshlc-3GrNRPXAJfUZLmb0KPwPqP7duMShYqHap2O8Q-13ebsp8EATjnI4lzB43D-vKyj9XkEmPG7XTvoyHnE3uOZKq_6BdV3ty-e0bw.RL4bnDq7EzuCkIUaSh-OwQ.vlPkHZgaMGHt6UAVW1nFxIhzL-gk5WI6YT11vwfpZskx7-WB_kuXjgKlidIFhw1GwNrcZBiQMsh4HRr-tO9QJEwLYKnn8APa7SahkQAt4w0.hFK5crVJ86kkBF6BAgVm5Q"
- },
- "record": {
- "CNAME": "portfolio.misafha.pk"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "iAinAzeem",
+ "discord": "1063614318777729034",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sh1QL5Ze1LYuiCFi9DEqnW54jlRtwZ1k-YEvx7bUhm_zLLRyw-O5g1rsRj3FHr2UBDHnyny9mLI2zshWnPUH8B4fMgFG-XB-3Abq40JRcMrX7JGo964RF0iUtfXxQ6rhrnpgNi5a5uy8K3bE59JHIwqRLlkdmYSBPgtrt9h_WyFIk7--Or5dF0bSkKykZ3STLKbhj830jWf_5DcbUwldyppTc-XW_ZSYp4FK4wYhlnioPBhshlc-3GrNRPXAJfUZLmb0KPwPqP7duMShYqHap2O8Q-13ebsp8EATjnI4lzB43D-vKyj9XkEmPG7XTvoyHnE3uOZKq_6BdV3ty-e0bw.RL4bnDq7EzuCkIUaSh-OwQ.vlPkHZgaMGHt6UAVW1nFxIhzL-gk5WI6YT11vwfpZskx7-WB_kuXjgKlidIFhw1GwNrcZBiQMsh4HRr-tO9QJEwLYKnn8APa7SahkQAt4w0.hFK5crVJ86kkBF6BAgVm5Q"
+ },
+ "record": {
+ "CNAME": "portfolio.misafha.pk"
+ }
+}
diff --git a/domains/azeez.json b/domains/azeez.json
index 98ab36ee5..ece4c1419 100644
--- a/domains/azeez.json
+++ b/domains/azeez.json
@@ -1,21 +1,18 @@
{
- "description": "azeez.is-a.dev",
- "repo": "https://github.com/azizbna/azizbna.github.io",
- "owner": {
- "username": "azizbna",
- "discord": "azeezbna"
- },
- "record": {
- "A": [
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153",
- "185.199.108.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "description": "azeez.is-a.dev",
+ "repo": "https://github.com/azizbna/azizbna.github.io",
+ "owner": {
+ "username": "azizbna",
+ "discord": "azeezbna"
+ },
+ "record": {
+ "A": [
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153",
+ "185.199.108.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/azer.json b/domains/azer.json
index 2d2b80aa6..d0380e4f4 100644
--- a/domains/azer.json
+++ b/domains/azer.json
@@ -1,10 +1,10 @@
{
- "description": "Personal page of Azer Sadykhzadeh",
- "owner": {
- "username": "sadykhzadeh",
- "email": "azer.piano14@gmail.com"
- },
- "record": {
- "CNAME": "sadykhzadeh.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal page of Azer Sadykhzadeh",
+ "owner": {
+ "username": "sadykhzadeh",
+ "email": "azer.piano14@gmail.com"
+ },
+ "record": {
+ "CNAME": "sadykhzadeh.github.io"
+ }
+}
diff --git a/domains/azhammakestrash.json b/domains/azhammakestrash.json
index 3828d3a2c..3880745f5 100644
--- a/domains/azhammakestrash.json
+++ b/domains/azhammakestrash.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AzhamProdLive",
- "email": "websitedomain.regroup588@passinbox.com"
- },
- "record": {
- "CNAME": "azhammakestrash.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AzhamProdLive",
+ "email": "websitedomain.regroup588@passinbox.com"
+ },
+ "record": {
+ "CNAME": "azhammakestrash.pages.dev"
+ }
+}
diff --git a/domains/azizulabedinazmi.json b/domains/azizulabedinazmi.json
new file mode 100644
index 000000000..27be146eb
--- /dev/null
+++ b/domains/azizulabedinazmi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "azizulabedinazmi",
+ "email": "azmi00121@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/azizulabedinazmi"
+ }
+}
diff --git a/domains/azizwali.json b/domains/azizwali.json
new file mode 100644
index 000000000..f87214255
--- /dev/null
+++ b/domains/azizwali.json
@@ -0,0 +1,10 @@
+{
+ "description": "Skyes Crawford Personal Website",
+ "owner": {
+ "username": "skyescrawford",
+ "email": "aziz_inc@apps.ipb.ac.id"
+ },
+ "record": {
+ "CNAME": "skyescrawford.github.io"
+ }
+}
diff --git a/domains/azrifatihah.json b/domains/azrifatihah.json
new file mode 100644
index 000000000..33e47ec74
--- /dev/null
+++ b/domains/azrifatihah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "muhAzri",
+ "email": "muhammad.azri.f.s@gmail.com"
+ },
+ "record": {
+ "CNAME": "azri-portfolio.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/azw.json b/domains/azw.json
index 2357aaf1d..05a6c5f32 100644
--- a/domains/azw.json
+++ b/domains/azw.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AzureZeng",
- "email": "weedycn@outlook.com"
- },
- "record": {
- "CNAME": "azurezeng.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AzureZeng",
+ "email": "weedycn@outlook.com"
+ },
+ "record": {
+ "CNAME": "azurezeng.com"
+ }
+}
diff --git a/domains/b.json b/domains/b.json
index d75b94ae0..ed8852b35 100644
--- a/domains/b.json
+++ b/domains/b.json
@@ -1,11 +1,11 @@
{
- "description": "vugiabao1337 subdomain",
- "repo": "https://github.com/VuGiaBao1337/vugiabao1337.github.io",
- "owner": {
- "username": "VuGiaBao1337",
- "email": "ahihidiscord@gmail.com"
- },
- "record": {
- "CNAME": "vugiabao1337.github.io"
- }
-}
\ No newline at end of file
+ "description": "vugiabao1337 subdomain",
+ "repo": "https://github.com/VuGiaBao1337/vugiabao1337.github.io",
+ "owner": {
+ "username": "VuGiaBao1337",
+ "email": "ahihidiscord@gmail.com"
+ },
+ "record": {
+ "CNAME": "vugiabao1337.github.io"
+ }
+}
diff --git a/domains/b0q.json b/domains/b0q.json
index 161695bba..af8e7a993 100644
--- a/domains/b0q.json
+++ b/domains/b0q.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "qbebo",
- "email": "qqqbeboo@yahoo.com",
- "discord": "897238854510211143"
- },
- "record": {
- "CNAME": "qbebo.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "qbebo",
+ "email": "qqqbeboo@yahoo.com",
+ "discord": "897238854510211143"
+ },
+ "record": {
+ "CNAME": "qbebo.github.io"
+ }
+}
diff --git a/domains/b45i.json b/domains/b45i.json
index 53ab8ab26..67b1acd2b 100644
--- a/domains/b45i.json
+++ b/domains/b45i.json
@@ -1,11 +1,11 @@
{
- "description": "B45i - Home Page",
- "repo": "https://github.com/B45i/b45i.github.io",
- "owner": {
- "username": "B45i",
- "email": "amalshajan2011@gmail.com"
- },
- "record": {
- "CNAME": "b45i.github.io"
- }
-}
\ No newline at end of file
+ "description": "B45i - Home Page",
+ "repo": "https://github.com/B45i/b45i.github.io",
+ "owner": {
+ "username": "B45i",
+ "email": "amalshajan2011@gmail.com"
+ },
+ "record": {
+ "CNAME": "b45i.github.io"
+ }
+}
diff --git a/domains/b4iterdev.json b/domains/b4iterdev.json
index 37d9c4453..aeb694eb5 100644
--- a/domains/b4iterdev.json
+++ b/domains/b4iterdev.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "b4iterdev",
- "email": "thaimeo200389@gmail.com",
- "discord": "480587458908651530"
- },
- "record": {
- "CNAME": "b4iterdev.net.eu.org"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "b4iterdev",
+ "email": "thaimeo200389@gmail.com",
+ "discord": "480587458908651530"
+ },
+ "record": {
+ "CNAME": "b4iterdev.net.eu.org"
+ }
+}
diff --git a/domains/b83c.json b/domains/b83c.json
index 83300fc3f..a65c1681f 100644
--- a/domains/b83c.json
+++ b/domains/b83c.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "B83C",
- "discord": "836525839511846912",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Nvw0e8-E9zApBPATxpQU5BXbRqbR1_h7xux5l7hZQzksus5TRzzXo4Zfc5sfq85atvtSWqCVnHt-wZ8gjz3q2yZzz2DCCFxEI8JkZFYN8UWwqjxm6uMIdAZC82adnLybz5ywmLPqDEM2zXyza0ACNp6u_ooiNYl15Gl1uobBO5KVK31_eOS9jcc9TPeHu_WIX2DDDpOBw5rdekJHkk4t71erXDQixSSqKQz_aOX-LZF1RKxtllN_fiEwYhvS1yVFsMzjoQYUc2B5V0nrXazlohjrmXp1-l4uFYJhpSWOBxLhxp8JLY_oXpVCsDOQ4a_4fAC2YEk2QdlSuoHIzU5Cng.ofqOmbKjozwSbakUCct1Rw.5kQuo8e_WtPz3f7zUliULphR8hUDwrfFzz_rASfJrMvtcqxQ3p52af200MdxdvEiZZy6bus7EdK5p4NCNwUbmDSl3HPnfCqonfFvYUwAPCVdx_XISm48pEpcMNLonkJ0.FrIUaCviOgnPnxkFbhfbJw"
- },
- "record": {
- "CNAME": "b83c.eu.org"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "B83C",
+ "discord": "836525839511846912",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Nvw0e8-E9zApBPATxpQU5BXbRqbR1_h7xux5l7hZQzksus5TRzzXo4Zfc5sfq85atvtSWqCVnHt-wZ8gjz3q2yZzz2DCCFxEI8JkZFYN8UWwqjxm6uMIdAZC82adnLybz5ywmLPqDEM2zXyza0ACNp6u_ooiNYl15Gl1uobBO5KVK31_eOS9jcc9TPeHu_WIX2DDDpOBw5rdekJHkk4t71erXDQixSSqKQz_aOX-LZF1RKxtllN_fiEwYhvS1yVFsMzjoQYUc2B5V0nrXazlohjrmXp1-l4uFYJhpSWOBxLhxp8JLY_oXpVCsDOQ4a_4fAC2YEk2QdlSuoHIzU5Cng.ofqOmbKjozwSbakUCct1Rw.5kQuo8e_WtPz3f7zUliULphR8hUDwrfFzz_rASfJrMvtcqxQ3p52af200MdxdvEiZZy6bus7EdK5p4NCNwUbmDSl3HPnfCqonfFvYUwAPCVdx_XISm48pEpcMNLonkJ0.FrIUaCviOgnPnxkFbhfbJw"
+ },
+ "record": {
+ "CNAME": "b83c.eu.org"
+ }
+}
diff --git a/domains/ba9.json b/domains/ba9.json
index 0fff49587..82095444d 100644
--- a/domains/ba9.json
+++ b/domains/ba9.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "d2a59ce26a",
- "email": "d2a59.ce26a.1@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "d2a59ce26a",
+ "email": "d2a59.ce26a.1@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/bacherik.json b/domains/bacherik.json
index 3abdf3dfc..77e77142d 100644
--- a/domains/bacherik.json
+++ b/domains/bacherik.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BachErik",
- "email": "bacherik.info@gmail.com"
- },
- "record": {
- "CNAME": "bacherik.eu"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BachErik",
+ "email": "bacherik.info@gmail.com"
+ },
+ "record": {
+ "CNAME": "bacherik.eu"
+ }
+}
diff --git a/domains/badend.json b/domains/badend.json
index 6d7e3035d..5dfc220b5 100644
--- a/domains/badend.json
+++ b/domains/badend.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "BadEnd777",
- "email": "badend777@proton.me"
- },
- "description": "👋 Hello, I'm BadEnd, a passionate Full Stack Developer with a solid background in web development. I specialize in creating efficient web solutions and am always seeking opportunities to deliver high-quality work. Feel free to view my personal website, featured projects, and contact information on GitHub.",
- "repo": "https://github.com/BadEnd777/Personal-Website",
- "record": {
- "CNAME": "badend.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BadEnd777",
+ "email": "badend777@proton.me"
+ },
+ "description": "👋 Hello, I'm BadEnd, a passionate Full Stack Developer with a solid background in web development. I specialize in creating efficient web solutions and am always seeking opportunities to deliver high-quality work. Feel free to view my personal website, featured projects, and contact information on GitHub.",
+ "repo": "https://github.com/BadEnd777/Personal-Website",
+ "record": {
+ "CNAME": "badend.pages.dev"
+ }
+}
diff --git a/domains/badnguy.json b/domains/badnguy.json
index af4ef04a8..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "nguyenbaduy011",
+ "email": "nguyenbaduy011@gmail.com"
+ },
+ "record": {
+ "CNAME": "nguyenbaduy011.github.io"
+ }
+}
diff --git a/domains/badonix.json b/domains/badonix.json
new file mode 100644
index 000000000..bbbfe7c9a
--- /dev/null
+++ b/domains/badonix.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio Website",
+ "repo": "https://github.com/Badonix/portfolio_react",
+ "owner": {
+ "username": "badonix",
+ "email": "nikdanelia@gmail.com"
+ },
+ "record": {
+ "CNAME": "badonix.netlify.app"
+ }
+}
diff --git a/domains/badzlan.json b/domains/badzlan.json
index 9b5b20e54..8cc8a3ed1 100644
--- a/domains/badzlan.json
+++ b/domains/badzlan.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/badzlan/badzlan.github.io",
- "owner": {
- "username": "badzlan",
- "email": "badzlandhabith05@gmail.com"
- },
- "record": {
- "CNAME": "badzlan.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/badzlan/badzlan.github.io",
+ "owner": {
+ "username": "badzlan",
+ "email": "badzlandhabith05@gmail.com"
+ },
+ "record": {
+ "CNAME": "badzlan.github.io"
+ }
+}
diff --git a/domains/baer.json b/domains/baer.json
index f02e2ccb5..63bf6a6c3 100644
--- a/domains/baer.json
+++ b/domains/baer.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BaerLKR",
- "email": "root@lovirent.eu"
- },
- "record": {
- "URL": "https://lovirent.eu"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BaerLKR",
+ "email": "root@lovirent.eu"
+ },
+ "record": {
+ "URL": "https://lovirent.eu"
+ }
+}
diff --git a/domains/baibhav.json b/domains/baibhav.json
new file mode 100644
index 000000000..11d8af941
--- /dev/null
+++ b/domains/baibhav.json
@@ -0,0 +1,10 @@
+{
+ "description": "For personal portfolio",
+ "owner": {
+ "username": "Baibhavos",
+ "email": "baibhavkumar303@gmail.com"
+ },
+ "record": {
+ "CNAME": "new-portfolio-weld-sigma.vercel.app"
+ }
+}
diff --git a/domains/baka.json b/domains/baka.json
index ad35fd96d..ea6ceb63b 100644
--- a/domains/baka.json
+++ b/domains/baka.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Baka-OP",
- "email": "itsmew2468@gmail.com"
- },
- "record": {
- "CNAME": "baka-op.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Baka-OP",
+ "email": "itsmew2468@gmail.com"
+ },
+ "record": {
+ "CNAME": "baka-op.github.io"
+ }
+}
diff --git a/domains/bako.json b/domains/bako.json
index 10c55db0e..7d880d113 100644
--- a/domains/bako.json
+++ b/domains/bako.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "real-kwellercat",
- "email": "lucas.rausch.732@k12.friscoisd.org",
- "discord": "950189411759456266"
- },
- "record": {
- "CNAME": "real-kwellercat.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "real-kwellercat",
+ "email": "lucas.rausch.732@k12.friscoisd.org",
+ "discord": "950189411759456266"
+ },
+ "record": {
+ "CNAME": "real-kwellercat.github.io"
+ }
+}
diff --git a/domains/bala.json b/domains/bala.json
new file mode 100644
index 000000000..0e2973fc8
--- /dev/null
+++ b/domains/bala.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "parzi-val",
+ "email": "krbala1511@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-app-brown-tau.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/balaji.json b/domains/balaji.json
new file mode 100644
index 000000000..30f2dd69f
--- /dev/null
+++ b/domains/balaji.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "balaji-atoa",
+ "discord": "popz06"
+ },
+ "record": {
+ "CNAME": "portfolio-on-live.vercel.app"
+ }
+}
diff --git a/domains/balam314.json b/domains/balam314.json
index a53f1b732..0ca22dcf3 100644
--- a/domains/balam314.json
+++ b/domains/balam314.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BalaM314",
- "email": "bulldozerUS@outlook.com"
- },
- "record": {
- "URL": "https://balam314.github.io/BalaM314"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BalaM314",
+ "email": "bulldozerUS@outlook.com"
+ },
+ "record": {
+ "URL": "https://balam314.github.io/BalaM314"
+ }
+}
diff --git a/domains/baldr.json b/domains/baldr.json
new file mode 100644
index 000000000..b0c76a914
--- /dev/null
+++ b/domains/baldr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "p0lish",
+ "email": "polish1987@gmail.com"
+ },
+ "record": {
+ "CNAME": "p0lish.github.io"
+ }
+}
diff --git a/domains/balogram.json b/domains/balogram.json
new file mode 100644
index 000000000..e1de12852
--- /dev/null
+++ b/domains/balogram.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Balogram-dev",
+ "email": "tunde.agboke@gmail.com"
+ },
+ "record": {
+ "CNAME": "balogram-dev.github.io"
+ }
+}
diff --git a/domains/baltraz.json b/domains/baltraz.json
index 1df02b3b2..40884af9f 100644
--- a/domains/baltraz.json
+++ b/domains/baltraz.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "Killermaschine88",
- "discord": "570267487393021969",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.X7V9A3bj7uW7izQvYtaNyn684nE_FBaWC6kn2U-QVBSmP7TFLZkGnRLAfiv748szEf8Ps3JA6p2fUsdSKY5a9iS6D44dU9NAMmPWyX-MAy5aTFyretWktY4pmi6qKKekdcbSIqApUOEQjaOQR6ZTYFILkIFgjmJIioZEBpgDP_TXU2zbckIBr1wfRSgn7Cu9MfdcsAn6L68F7oqilLh1ZgkyU8YHsJbNmcUXjGeYAbcf6h1ZMDt-iE8df7vkJwiKUYR398JwvxSjxF-ip2vFLZ9hzMkyD3q19zJ29NefOEhhIVdOgHl4aV1CFYPWBzkGpMyIg1k1Eiky8BOu2Qo2Fw.u2fm6QjYJ54XYKASbzyZFg.T8FGfq4es9Rnc9Wv6qTczCRl-GtH40ujE6mbmoTQegCPeUatFiUzRghM8-JLthty6hqtu9iIhhlpE_0LC6kKrcCrbF0iUhqIkVd_gGUkJtQ.1rtLCkkF5gtQsek8m5RjUQ"
- },
- "record": {
- "A": [
- "49.13.78.155"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Killermaschine88",
+ "discord": "570267487393021969",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.X7V9A3bj7uW7izQvYtaNyn684nE_FBaWC6kn2U-QVBSmP7TFLZkGnRLAfiv748szEf8Ps3JA6p2fUsdSKY5a9iS6D44dU9NAMmPWyX-MAy5aTFyretWktY4pmi6qKKekdcbSIqApUOEQjaOQR6ZTYFILkIFgjmJIioZEBpgDP_TXU2zbckIBr1wfRSgn7Cu9MfdcsAn6L68F7oqilLh1ZgkyU8YHsJbNmcUXjGeYAbcf6h1ZMDt-iE8df7vkJwiKUYR398JwvxSjxF-ip2vFLZ9hzMkyD3q19zJ29NefOEhhIVdOgHl4aV1CFYPWBzkGpMyIg1k1Eiky8BOu2Qo2Fw.u2fm6QjYJ54XYKASbzyZFg.T8FGfq4es9Rnc9Wv6qTczCRl-GtH40ujE6mbmoTQegCPeUatFiUzRghM8-JLthty6hqtu9iIhhlpE_0LC6kKrcCrbF0iUhqIkVd_gGUkJtQ.1rtLCkkF5gtQsek8m5RjUQ"
+ },
+ "record": {
+ "A": ["49.13.78.155"]
+ }
+}
diff --git a/domains/banda.json b/domains/banda.json
new file mode 100644
index 000000000..c49eedebc
--- /dev/null
+++ b/domains/banda.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bandabahariputra",
+ "discord": "banda"
+ },
+ "record": {
+ "CNAME": "bandabahariputra.vercel.app"
+ }
+}
diff --git a/domains/bandhan.json b/domains/bandhan.json
new file mode 100644
index 000000000..602459977
--- /dev/null
+++ b/domains/bandhan.json
@@ -0,0 +1,11 @@
+{
+ "description": "Bandhan's Profile",
+ "repo": "https://github.com/bamunjal/bamunjal.github.io",
+ "owner": {
+ "username": "bamunjal",
+ "email": "bamunjal1995@gmail.com"
+ },
+ "record": {
+ "CNAME": "bamunjal.github.io"
+ }
+}
diff --git a/domains/bandu.json b/domains/bandu.json
new file mode 100644
index 000000000..b0cd2619a
--- /dev/null
+++ b/domains/bandu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bmulla7",
+ "email": "bmulla7@gmail.com"
+ },
+ "record": {
+ "CNAME": "bandu.pages.dev"
+ }
+}
diff --git a/domains/banik.json b/domains/banik.json
index d9528bd92..6d44f9b9b 100644
--- a/domains/banik.json
+++ b/domains/banik.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Chiradeep-Banik",
- "email": "chiradeep13@gmail.com"
- },
- "record": {
- "CNAME": "chiradeep-banik.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Chiradeep-Banik",
+ "email": "chiradeep13@gmail.com"
+ },
+ "record": {
+ "CNAME": "chiradeep-banik.github.io"
+ }
+}
diff --git a/domains/bank.json b/domains/bank.json
index f55fd075e..4c45c9c86 100644
--- a/domains/bank.json
+++ b/domains/bank.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "tithanayut",
- "email": "b@thanayut.in.th"
- },
- "description": "Bank Thanayut's Personal Site",
- "record": {
- "URL": "https://thanayut.in.th"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "tithanayut",
+ "email": "b@thanayut.in.th"
+ },
+ "description": "Bank Thanayut's Personal Site",
+ "record": {
+ "URL": "https://thanayut.in.th"
+ }
+}
diff --git a/domains/bao.json b/domains/bao.json
new file mode 100644
index 000000000..712d7588f
--- /dev/null
+++ b/domains/bao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bphamict",
+ "email": "bphamict@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/baobao.json b/domains/baobao.json
index b4eabd26c..7ffc26e0c 100644
--- a/domains/baobao.json
+++ b/domains/baobao.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "BaobeierB",
- "discord": "246449974118842368",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.C0wpo8p1EPPr_uNYgH54k37cg0KOgTR4ffh_K80TeQHVno2Ud5j7I_1o48pnN6CelRZ-agJsz9D_664qTMic8JcK4Fe2fmS6q35NuqcdPbFc1w3meEFBqUzDU8mqnYSp6cRtWmUq4lxNqVPAfHsd_PPyoXkgOKyTw53gvxiHgHJixRlHX1KTICl5luy3302Mdlmxt4v7aw9dz5ymFmqxJnx4FNLa0gDUhSeQDJmNxF10JRnJTlwM93WuiJziWRcQzYte-ZHtNvqdhfBFdRjHmgCn1i2jkzQx_V6EZuj5iEMVSgNPppV3qR3IKnX21l0nN8YrstYx-r_b07ZbYuwCSQ.iGePXetL26p2_W8kx4SHZQ._P2kI4i9eF4-Ev8yQFuOt22MtZhv68AVAZSNPc0vlyI8Pfet3Ml8VJznqL3cqC2QSddfyRNT4QFZfQF3pRniw486_etwDdc3WIuu9yc7w-s.bw4347sMgh4xVjcsHE6D-A"
- },
- "record": {
- "A": [
- "103.200.29.116"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BaobeierB",
+ "discord": "246449974118842368",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.C0wpo8p1EPPr_uNYgH54k37cg0KOgTR4ffh_K80TeQHVno2Ud5j7I_1o48pnN6CelRZ-agJsz9D_664qTMic8JcK4Fe2fmS6q35NuqcdPbFc1w3meEFBqUzDU8mqnYSp6cRtWmUq4lxNqVPAfHsd_PPyoXkgOKyTw53gvxiHgHJixRlHX1KTICl5luy3302Mdlmxt4v7aw9dz5ymFmqxJnx4FNLa0gDUhSeQDJmNxF10JRnJTlwM93WuiJziWRcQzYte-ZHtNvqdhfBFdRjHmgCn1i2jkzQx_V6EZuj5iEMVSgNPppV3qR3IKnX21l0nN8YrstYx-r_b07ZbYuwCSQ.iGePXetL26p2_W8kx4SHZQ._P2kI4i9eF4-Ev8yQFuOt22MtZhv68AVAZSNPc0vlyI8Pfet3Ml8VJznqL3cqC2QSddfyRNT4QFZfQF3pRniw486_etwDdc3WIuu9yc7w-s.bw4347sMgh4xVjcsHE6D-A"
+ },
+ "record": {
+ "A": ["103.200.29.116"]
+ }
+}
diff --git a/domains/baptiste.json b/domains/baptiste.json
index 6d0070c21..e0eb2f3ee 100644
--- a/domains/baptiste.json
+++ b/domains/baptiste.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BapRx",
- "email": "rouxbaptiste@outlook.com"
- },
- "record": {
- "CNAME": "baprx.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BapRx",
+ "email": "rouxbaptiste@outlook.com"
+ },
+ "record": {
+ "CNAME": "baprx.github.io"
+ }
+}
diff --git a/domains/baquir.json b/domains/baquir.json
index 5e18d3b5e..ce53bed23 100644
--- a/domains/baquir.json
+++ b/domains/baquir.json
@@ -1,11 +1,11 @@
{
- "description": "My Portfolio Website",
- "repo": "https://github.com/mohd-baquir-qureshi/mohd-baquir-qureshi.github.io",
- "owner": {
- "username": "mohd-baquir-qureshi",
- "email": "dumboo0798@gmail.com"
- },
- "record": {
- "CNAME": "mohd-baquir-qureshi.github.io"
- }
-}
\ No newline at end of file
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/mohd-baquir-qureshi/mohd-baquir-qureshi.github.io",
+ "owner": {
+ "username": "mohd-baquir-qureshi",
+ "email": "dumboo0798@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohd-baquir-qureshi.github.io"
+ }
+}
diff --git a/domains/barab.json b/domains/barab.json
index 7dff76709..3d9e6b006 100644
--- a/domains/barab.json
+++ b/domains/barab.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Baraban511",
- "discord": "768517258262741024",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DvRDOCaudmWNnNQWCxTSqN5kKvCfKlL6AqaKDC7SEO9hg1wEGdBS0icx47nECYqqMw5MaaVbF9y8U3wyEe6YG2iOLYqASTzMmNd28ejrr4yV5A-KMsJ3qJc-6NnWugS_yl8Yq3iWLLikvkbjzYspBTtaM7Tfb5WzsRkJnmZpKyChPPO2Z0KRXBd23F_7mZDVisZQiOwQusWfVKDVzXHpbKidGVhoXPh-wz8XEHzjqlMXZXjtjE9bj3dT4Ot6RZ1bV6kKPR2dvO8teL-Y7AF7PM9oTrh2wYHyDmdBWoh407u45anfOGxDMbjvMKoIeyXlkHiWTpj_FA5IyJNRwoH9_Q.LPr9qotY_T6XZ434G38I3Q.-yrbQ3FtpMu9ewLmuO-AoCD9jAvfdYX_yWpNslaBf8goAv8I6q5YvLOVbaLBA3Eye8jTF48z1i2CTuKJbhv751x9bmXDN5ttrfpLfSwgrNw.DZMFfhSPM8swRiYFtwRpNw"
- },
- "record": {
- "CNAME": "barab.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Baraban511",
+ "discord": "768517258262741024",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DvRDOCaudmWNnNQWCxTSqN5kKvCfKlL6AqaKDC7SEO9hg1wEGdBS0icx47nECYqqMw5MaaVbF9y8U3wyEe6YG2iOLYqASTzMmNd28ejrr4yV5A-KMsJ3qJc-6NnWugS_yl8Yq3iWLLikvkbjzYspBTtaM7Tfb5WzsRkJnmZpKyChPPO2Z0KRXBd23F_7mZDVisZQiOwQusWfVKDVzXHpbKidGVhoXPh-wz8XEHzjqlMXZXjtjE9bj3dT4Ot6RZ1bV6kKPR2dvO8teL-Y7AF7PM9oTrh2wYHyDmdBWoh407u45anfOGxDMbjvMKoIeyXlkHiWTpj_FA5IyJNRwoH9_Q.LPr9qotY_T6XZ434G38I3Q.-yrbQ3FtpMu9ewLmuO-AoCD9jAvfdYX_yWpNslaBf8goAv8I6q5YvLOVbaLBA3Eye8jTF48z1i2CTuKJbhv751x9bmXDN5ttrfpLfSwgrNw.DZMFfhSPM8swRiYFtwRpNw"
+ },
+ "record": {
+ "CNAME": "barab.pages.dev"
+ }
+}
diff --git a/domains/bardia.json b/domains/bardia.json
index af5677d9b..742c62ef0 100644
--- a/domains/bardia.json
+++ b/domains/bardia.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "abardia",
- "email": "a.bardia@yahoo.de"
- },
- "record": {
- "CNAME": "abardia.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "abardia",
+ "email": "a.bardia@yahoo.de"
+ },
+ "record": {
+ "CNAME": "abardia.github.io"
+ }
+}
diff --git a/domains/barisdeniz.json b/domains/barisdeniz.json
new file mode 100644
index 000000000..a33ae109e
--- /dev/null
+++ b/domains/barisdeniz.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website for Barış Deniz Sağlam",
+ "repo": "https://github.com/bdsaglam/bdsaglam.github.io",
+ "owner": {
+ "username": "bdsaglam",
+ "email": "bdsaglam@gmail.com"
+ },
+ "record": {
+ "CNAME": "bdsaglam.github.io"
+ }
+}
diff --git a/domains/bark1n.json b/domains/bark1n.json
index dc2f521b1..9f3276329 100644
--- a/domains/bark1n.json
+++ b/domains/bark1n.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Helixoo",
- "email": "mailistenebeklion1@gmail.com"
- },
- "record": {
- "CNAME": "0crsvdst.up.railway.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Helixoo",
+ "email": "mailistenebeklion1@gmail.com"
+ },
+ "record": {
+ "CNAME": "0crsvdst.up.railway.app"
+ }
+}
diff --git a/domains/barnacl437.json b/domains/barnacl437.json
index 1e249bc9b..245ab0986 100644
--- a/domains/barnacl437.json
+++ b/domains/barnacl437.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Barnacl437",
- "email": "barnacl437@proton.me"
- },
- "record": {
- "CNAME": "barnacl437.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Barnacl437",
+ "email": "barnacl437@proton.me"
+ },
+ "record": {
+ "CNAME": "barnacl437.vercel.app"
+ }
+}
diff --git a/domains/barremian.json b/domains/barremian.json
new file mode 100644
index 000000000..aa0af8750
--- /dev/null
+++ b/domains/barremian.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "barremian",
+ "email": "machinetime77@gmail.com"
+ },
+ "record": {
+ "CNAME": "barremian.com"
+ }
+}
diff --git a/domains/barry-hammer.json b/domains/barry-hammer.json
new file mode 100644
index 000000000..83c35ae48
--- /dev/null
+++ b/domains/barry-hammer.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "barry-hammer"
+ },
+ "record": {
+ "CNAME": "barry-hammer.github.io"
+ }
+}
diff --git a/domains/bartoszm77.json b/domains/bartoszm77.json
index e03b065bc..7ddf10448 100644
--- a/domains/bartoszm77.json
+++ b/domains/bartoszm77.json
@@ -1,11 +1,11 @@
{
- "description": "bartoszm77.is-a.dev",
- "repo": "https://github.com/b2rt0szm77/b2rt0szm77.github.io",
- "owner": {
- "username": "bartoszm77",
- "discord": "bartoszm77#3458"
- },
- "record": {
- "CNAME": "b2rt0szm77.github.io"
- }
-}
\ No newline at end of file
+ "description": "bartoszm77.is-a.dev",
+ "repo": "https://github.com/b2rt0szm77/b2rt0szm77.github.io",
+ "owner": {
+ "username": "bartoszm77",
+ "discord": "bartoszm77#3458"
+ },
+ "record": {
+ "CNAME": "b2rt0szm77.github.io"
+ }
+}
diff --git a/domains/base-swag.json b/domains/base-swag.json
index 2d12c4f3e..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Base-Swag",
+ "email": "officialnamefier@gmail.com"
+ },
+ "record": {
+ "CNAME": "base-swag.github.io"
+ }
+}
diff --git a/domains/base.json b/domains/base.json
new file mode 100644
index 000000000..b717c7873
--- /dev/null
+++ b/domains/base.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bcassiers",
+ "discord": "base08875"
+ },
+ "record": {
+ "CNAME": "adbc.be"
+ }
+}
diff --git a/domains/baseri.json b/domains/baseri.json
index c8d9d853d..34086c8de 100644
--- a/domains/baseri.json
+++ b/domains/baseri.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Ho3einWave",
- "discord": "743786737901240362",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.V7AHINjrzMRmazv2IjJU2V9qPlcAeRQRRYDuxjvF-fq9nOmp0H3b1KfXaBuU8rTW34c9iLNwZdxAHhJ2IvsIgQvYrAVjrJ4bxgjSaO4UPmgFze1hwHS2qpZzouOZngoWjqWfTMPhttPui4yiBtCFE2x62Y-rn3_MBCfvBZLh7aqwD6booL4FGDiL7QX202miM1Mqd-r8ZNDdydAdkcpETXDLd-7opFJgcg4Tkmq-tZuKmvdHNUsDxT4GPxVhvUKGuqtHiEGBf7YuNS_OdClqsN1sXckHOsFUFwkfIx3F7upRXWN5DBy4bEXLgphfASJjMuwFx4h27pCA5B1257msrg.Ied7dY9u3UB65AXGar9V5w.JgX5U0byUY3wzS0mx9fAOkpNan7a08RyEgRzp2Dcnusv_-_UNvIsqkbPznWTjoz8NQE6ixLrymxrDIs2dGNWcgsZ3IFpF5PY9VWKkxFSTCA.nQi799OJqhyhsVY-6Tbmcg"
- },
- "record": {
- "CNAME": "apex-loadbalancer.netlify.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Ho3einWave",
+ "discord": "743786737901240362",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.V7AHINjrzMRmazv2IjJU2V9qPlcAeRQRRYDuxjvF-fq9nOmp0H3b1KfXaBuU8rTW34c9iLNwZdxAHhJ2IvsIgQvYrAVjrJ4bxgjSaO4UPmgFze1hwHS2qpZzouOZngoWjqWfTMPhttPui4yiBtCFE2x62Y-rn3_MBCfvBZLh7aqwD6booL4FGDiL7QX202miM1Mqd-r8ZNDdydAdkcpETXDLd-7opFJgcg4Tkmq-tZuKmvdHNUsDxT4GPxVhvUKGuqtHiEGBf7YuNS_OdClqsN1sXckHOsFUFwkfIx3F7upRXWN5DBy4bEXLgphfASJjMuwFx4h27pCA5B1257msrg.Ied7dY9u3UB65AXGar9V5w.JgX5U0byUY3wzS0mx9fAOkpNan7a08RyEgRzp2Dcnusv_-_UNvIsqkbPznWTjoz8NQE6ixLrymxrDIs2dGNWcgsZ3IFpF5PY9VWKkxFSTCA.nQi799OJqhyhsVY-6Tbmcg"
+ },
+ "record": {
+ "CNAME": "apex-loadbalancer.netlify.com"
+ }
+}
diff --git a/domains/basi.json b/domains/basi.json
index 4bbac0d89..4bd206798 100644
--- a/domains/basi.json
+++ b/domains/basi.json
@@ -1,11 +1,11 @@
{
- "description": "Basi's personal website portfolio",
- "owner": {
- "username": "Basiiii",
- "email": "basigraphics@gmail.com",
- "discord": "Basi#1056"
- },
- "record": {
- "CNAME": "portfolio-6u1.pages.dev"
- }
-}
\ No newline at end of file
+ "description": "Basi's personal website portfolio",
+ "owner": {
+ "username": "Basiiii",
+ "email": "basigraphics@gmail.com",
+ "discord": "Basi#1056"
+ },
+ "record": {
+ "CNAME": "portfolio-6u1.pages.dev"
+ }
+}
diff --git a/domains/basidh.json b/domains/basidh.json
new file mode 100644
index 000000000..9e0ac57d7
--- /dev/null
+++ b/domains/basidh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio",
+ "repo": "https://github.com/abdulbasidh/portfolio",
+ "owner": {
+ "username": "abdulbasidh",
+ "email": "farz.basidh@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdulbasidh.github.io"
+ }
+}
diff --git a/domains/basil.json b/domains/basil.json
index 7045c1664..a70021fcb 100644
--- a/domains/basil.json
+++ b/domains/basil.json
@@ -1,12 +1,12 @@
{
- "description": "Basils' website",
- "repo": "https://github.com/LowSpecCorgi/LowSpecCorgi.github.io",
- "owner": {
- "username": "LowSpecCorgi",
- "email": "haroldthesenpai@gmail.com",
- "twitter": "basilicous"
- },
- "record": {
- "CNAME": "lowspecorgi.github.io"
- }
-}
\ No newline at end of file
+ "description": "Basils' website",
+ "repo": "https://github.com/LowSpecCorgi/LowSpecCorgi.github.io",
+ "owner": {
+ "username": "LowSpecCorgi",
+ "email": "haroldthesenpai@gmail.com",
+ "twitter": "basilicous"
+ },
+ "record": {
+ "CNAME": "lowspecorgi.github.io"
+ }
+}
diff --git a/domains/bast.json b/domains/bast.json
index d3a8dd631..8339f3bca 100644
--- a/domains/bast.json
+++ b/domains/bast.json
@@ -1,10 +1,10 @@
{
- "description": "Bast's unimaginatively named programming blog",
- "owner": {
- "username": "bast0006",
- "email": "bast@bast-development.com"
- },
- "record": {
- "URL": "https://bast-development.com"
- }
-}
\ No newline at end of file
+ "description": "Bast's unimaginatively named programming blog",
+ "owner": {
+ "username": "bast0006",
+ "email": "bast@bast-development.com"
+ },
+ "record": {
+ "URL": "https://bast-development.com"
+ }
+}
diff --git a/domains/batema.json b/domains/batema.json
index 317fba871..60d667aff 100644
--- a/domains/batema.json
+++ b/domains/batema.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "lukas-batema",
- "email": "lukasbatema@gmail.com"
- },
- "record": {
- "URL": "https://batemadevelopment.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "lukas-batema",
+ "email": "lukasbatema@gmail.com"
+ },
+ "record": {
+ "URL": "https://batemadevelopment.com"
+ }
+}
diff --git a/domains/batman.json b/domains/batman.json
new file mode 100644
index 000000000..191081ee4
--- /dev/null
+++ b/domains/batman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "el7amrawy",
+ "email": "el7amrawy@outlook.com"
+ },
+ "record": {
+ "CNAME": "portfolio-8sc.pages.dev"
+ }
+}
\ No newline at end of file
diff --git a/domains/battlehawk.json b/domains/battlehawk.json
new file mode 100644
index 000000000..7fee75844
--- /dev/null
+++ b/domains/battlehawk.json
@@ -0,0 +1,10 @@
+{
+ "description": "is-a.dev domain for BATTLEHAWK00(redirecting to https://code1024.icu)",
+ "owner": {
+ "username": "BATTLEHAWK00",
+ "email": "yxlk2oi@gmail.com"
+ },
+ "record": {
+ "URL": "https://code1024.icu"
+ }
+}
diff --git a/domains/baturalp.json b/domains/baturalp.json
new file mode 100644
index 000000000..40373949d
--- /dev/null
+++ b/domains/baturalp.json
@@ -0,0 +1,11 @@
+{
+ "description": "Baturalp Sönmez Portfolio website",
+ "repo": "https://github.com/Baturalp52/Baturalp52.github.io",
+ "owner": {
+ "username": "Baturalp52",
+ "email": "baturalpsonmez2002@gmail.com"
+ },
+ "record": {
+ "CNAME": "baturalp52.github.io"
+ }
+}
diff --git a/domains/bayu.json b/domains/bayu.json
new file mode 100644
index 000000000..7ae7c1030
--- /dev/null
+++ b/domains/bayu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ByeByu07",
+ "email": "muhammadbaharuddin08123@gmail.com"
+ },
+ "record": {
+ "CNAME": "byebyu07.github.io"
+ }
+}
diff --git a/domains/bcraft.json b/domains/bcraft.json
index a6350b1e3..bd2bb34b3 100644
--- a/domains/bcraft.json
+++ b/domains/bcraft.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "xuanhaivptthn",
- "email": "xuanhaivptthn@gmail.com",
- "discord": "379076400394666004"
- },
- "record": {
- "CNAME": "xuanhaivptthn.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "xuanhaivptthn",
+ "email": "xuanhaivptthn@gmail.com",
+ "discord": "379076400394666004"
+ },
+ "record": {
+ "CNAME": "xuanhaivptthn.github.io"
+ }
+}
diff --git a/domains/bd.json b/domains/bd.json
new file mode 100644
index 000000000..61dddf1ea
--- /dev/null
+++ b/domains/bd.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio website.",
+ "repo": "https://github.com/cantcode023/bd.is-a.dev",
+ "owner": {
+ "username": "CantCode023",
+ "email": "cantcode023@gmail.com"
+ },
+ "record": {
+ "CNAME": "cantcode023.github.io"
+ }
+}
diff --git a/domains/bdays.suki.json b/domains/bdays.suki.json
index 7a2c88f62..4ae0c87c0 100644
--- a/domains/bdays.suki.json
+++ b/domains/bdays.suki.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "SukiPlayz",
- "email": "sukimayoo@outlook.com"
- },
- "record": {
- "A": [
- "69.197.135.204"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "SukiPlayz",
+ "email": "sukimayoo@outlook.com"
+ },
+ "record": {
+ "A": ["69.197.135.204"]
+ }
+}
diff --git a/domains/bdhackers009.json b/domains/bdhackers009.json
new file mode 100644
index 000000000..0ca61c327
--- /dev/null
+++ b/domains/bdhackers009.json
@@ -0,0 +1,11 @@
+{
+ "description": "I will use this subdomain to host my portfolio via github pages",
+ "repo": "https://github.com/bdhackers009/bdhackers009.github.io",
+ "owner": {
+ "username": "BDhackers009",
+ "email": "ahmedshifat1234@gmail.com"
+ },
+ "record": {
+ "CNAME": "bdhackers009.github.io"
+ }
+}
diff --git a/domains/bdn-fr.json b/domains/bdn-fr.json
new file mode 100644
index 000000000..5368a69bd
--- /dev/null
+++ b/domains/bdn-fr.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "bdn-fr"
+ },
+ "record": {
+ "CNAME": "bdn-fr.vercel.app"
+ }
+}
diff --git a/domains/bean.json b/domains/bean.json
index 41a6d5bee..6440c9d3a 100644
--- a/domains/bean.json
+++ b/domains/bean.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BeanRob",
- "email": "bentr99@gmail.com"
- },
- "record": {
- "CNAME": "beanrob.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BeanRob",
+ "email": "bentr99@gmail.com"
+ },
+ "record": {
+ "CNAME": "beanrob.com"
+ }
+}
diff --git a/domains/bear.json b/domains/bear.json
index 3b18a30d5..3a0935512 100644
--- a/domains/bear.json
+++ b/domains/bear.json
@@ -1,12 +1,12 @@
{
- "description": "Bear's Portfolio Website",
- "repo": "https://github.com/bearts/bearts.github.io",
- "owner": {
- "username": "bearts",
- "email": "anujparihar@yahoo.com",
- "twitter": "anujpflash"
- },
- "record": {
- "CNAME": "bearts.github.io"
- }
-}
\ No newline at end of file
+ "description": "Bear's Portfolio Website",
+ "repo": "https://github.com/bearts/bearts.github.io",
+ "owner": {
+ "username": "bearts",
+ "email": "anujparihar@yahoo.com",
+ "twitter": "anujpflash"
+ },
+ "record": {
+ "CNAME": "bearts.github.io"
+ }
+}
diff --git a/domains/bedanth.json b/domains/bedanth.json
index 2e58bce82..e63d09d00 100644
--- a/domains/bedanth.json
+++ b/domains/bedanth.json
@@ -1,11 +1,11 @@
{
- "description": "Bedant Hota's Portfolio",
- "repo": "https://github.com/bedantH/bedantH.github.io",
- "owner": {
- "username": "bedantH",
- "email": "mohanesh.h2003@gmail.com"
- },
- "record": {
- "CNAME": "bedanth-github-io.pages.dev"
- }
-}
\ No newline at end of file
+ "description": "Bedant Hota's Portfolio",
+ "repo": "https://github.com/bedantH/bedantH.github.io",
+ "owner": {
+ "username": "bedantH",
+ "email": "mohanesh.h2003@gmail.com"
+ },
+ "record": {
+ "CNAME": "bedanth-github-io.pages.dev"
+ }
+}
diff --git a/domains/beersanp.json b/domains/beersanp.json
index 88e0cf44c..aff4df46a 100644
--- a/domains/beersanp.json
+++ b/domains/beersanp.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "beersanp",
- "email": "beersanp@duck.com"
- },
- "record": {
- "CNAME": "beersanp.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "beersanp",
+ "email": "beersanp@duck.com"
+ },
+ "record": {
+ "CNAME": "beersanp.pages.dev"
+ }
+}
diff --git a/domains/belle.json b/domains/belle.json
index 5db51ecfd..4763b602e 100644
--- a/domains/belle.json
+++ b/domains/belle.json
@@ -1,11 +1,11 @@
{
- "description": "Belle's website",
- "repo": "https://github.com/bellesea/personalwebsite",
- "owner": {
- "username": "bellesea",
- "email": "bellesee1212@gmail.com"
- },
- "record": {
- "CNAME": "bellesea.github.io"
- }
-}
\ No newline at end of file
+ "description": "Belle's website",
+ "repo": "https://github.com/bellesea/personalwebsite",
+ "owner": {
+ "username": "bellesea",
+ "email": "bellesee1212@gmail.com"
+ },
+ "record": {
+ "CNAME": "bellesea.github.io"
+ }
+}
diff --git a/domains/ben.json b/domains/ben.json
index fe92aa731..d64f12062 100644
--- a/domains/ben.json
+++ b/domains/ben.json
@@ -1,19 +1,16 @@
{
- "owner": {
- "username": "justpiple",
- "email": "me@benspace.xyz"
- },
- "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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "justpiple",
+ "email": "me@benspace.xyz"
+ },
+ "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/benet.json b/domains/benet.json
index e75f54880..2d911624f 100644
--- a/domains/benet.json
+++ b/domains/benet.json
@@ -1,21 +1,18 @@
{
- "description": "Personal Portfolio",
- "repo": "https://github.com/JohnnyMoneJohnny/JohnnyMoneJohnny.github.io",
- "owner": {
- "username": "JohnnyMoneJohnny",
- "email": "okbutwhoaskedlikefr@gmail.com"
- },
- "record": {
- "A": [
- "185.199.111.153",
- "185.199.108.153",
- "185.199.110.153",
- "185.199.109.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/JohnnyMoneJohnny/JohnnyMoneJohnny.github.io",
+ "owner": {
+ "username": "JohnnyMoneJohnny",
+ "email": "okbutwhoaskedlikefr@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.111.153",
+ "185.199.108.153",
+ "185.199.110.153",
+ "185.199.109.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/benjamin.json b/domains/benjamin.json
new file mode 100644
index 000000000..54c0c9c99
--- /dev/null
+++ b/domains/benjamin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Loapu",
+ "email": "benjamin@loapu.dev"
+ },
+ "record": {
+ "NS": ["algin.ns.cloudflare.com", "marge.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/benjo.json b/domains/benjo.json
index 9398c9081..a78989242 100644
--- a/domains/benjo.json
+++ b/domains/benjo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Golgrax",
- "twitter": "BughawBenjo"
- },
- "record": {
- "CNAME": "benjo.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Golgrax",
+ "twitter": "BughawBenjo"
+ },
+ "record": {
+ "CNAME": "benjo.pages.dev"
+ }
+}
diff --git a/domains/bennett1412.json b/domains/bennett1412.json
index 995e474c3..2650c1326 100644
--- a/domains/bennett1412.json
+++ b/domains/bennett1412.json
@@ -1,12 +1,12 @@
{
- "description": "Deploying my portfolio website",
- "repo": "https://github.com/bennett1412/portfolio2.0",
- "owner": {
- "username": "bennett1412",
- "email": "bennettmadavana@gmail.com",
- "twitter": "MadavanaB"
- },
- "record": {
- "CNAME": "bennett1412.github.io"
- }
-}
\ No newline at end of file
+ "description": "Deploying my portfolio website",
+ "repo": "https://github.com/bennett1412/portfolio2.0",
+ "owner": {
+ "username": "bennett1412",
+ "email": "bennettmadavana@gmail.com",
+ "twitter": "MadavanaB"
+ },
+ "record": {
+ "CNAME": "bennett1412.github.io"
+ }
+}
diff --git a/domains/bennguyen.json b/domains/bennguyen.json
new file mode 100644
index 000000000..66a32eaa8
--- /dev/null
+++ b/domains/bennguyen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "benvgaming",
+ "email": "benvipgaming@protonmail.com"
+ },
+ "record": {
+ "CNAME": "ben-homepage.vercel.app"
+ }
+}
diff --git a/domains/beno.json b/domains/beno.json
new file mode 100644
index 000000000..cbefac66b
--- /dev/null
+++ b/domains/beno.json
@@ -0,0 +1,11 @@
+{
+ "description": "Ingeniero Informático con mención en Gestión de la Información. Me enfoco en desarrollo de software y manejo de datos. Idioma español, inglés y ruso.",
+ "repo": "https://github.com/BenoAbarcaS/pf",
+ "owner": {
+ "username": "BenoAbarcaS",
+ "email": "abarcabernardo00@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/bens.json b/domains/bens.json
new file mode 100644
index 000000000..1afb31f80
--- /dev/null
+++ b/domains/bens.json
@@ -0,0 +1,10 @@
+{
+ "description": "My portfolio",
+ "owner": {
+ "username": "coco-droid",
+ "email": "robensjeanbaptiste29@gmail.com"
+ },
+ "record": {
+ "URL": "https://robe.alwaysdata.net/"
+ }
+}
diff --git a/domains/bento64.json b/domains/bento64.json
index c5f482455..ab1f33d02 100644
--- a/domains/bento64.json
+++ b/domains/bento64.json
@@ -1,11 +1,11 @@
{
- "description": "I need a great looking (sub)domain for my website",
- "repo": "https://github.com/bento64/bento64.github.io",
- "owner": {
- "username": "bento64",
- "email": "bento64@disroot.org"
- },
- "record": {
- "CNAME": "bento64.github.io"
- }
-}
\ No newline at end of file
+ "description": "I need a great looking (sub)domain for my website",
+ "repo": "https://github.com/bento64/bento64.github.io",
+ "owner": {
+ "username": "bento64",
+ "email": "bento64@disroot.org"
+ },
+ "record": {
+ "CNAME": "bento64.github.io"
+ }
+}
diff --git a/domains/benz.json b/domains/benz.json
index 5366555b6..31ea72a70 100644
--- a/domains/benz.json
+++ b/domains/benz.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "MicroBenz",
- "email": "microbenz.prob@gmail.com"
- },
- "record": {
- "CNAME": "microbenz.in.th"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "MicroBenz",
+ "email": "microbenz.prob@gmail.com"
+ },
+ "record": {
+ "CNAME": "microbenz.in.th"
+ }
+}
diff --git a/domains/beoo.json b/domains/beoo.json
new file mode 100644
index 000000000..c364ad11f
--- /dev/null
+++ b/domains/beoo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "16-thag5",
+ "email": "truongvan1605.yahoo@gmail.com"
+ },
+ "record": {
+ "CNAME": "16-thag5.github.io"
+ }
+}
diff --git a/domains/berkk.json b/domains/berkk.json
new file mode 100644
index 000000000..e4af0c6d3
--- /dev/null
+++ b/domains/berkk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "berkkaradalan",
+ "email": "berkkaradalan@gmail.com"
+ },
+ "record": {
+ "CNAME": "berkkaradalan.github.io"
+ }
+}
diff --git a/domains/bernalvarela.json b/domains/bernalvarela.json
index 2c172edb7..045eb30b8 100644
--- a/domains/bernalvarela.json
+++ b/domains/bernalvarela.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "bernalvarela",
- "email": "bernalvarela@gmail.com"
- },
- "record": {
- "CNAME": "bernalvarela.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "bernalvarela",
+ "email": "bernalvarela@gmail.com"
+ },
+ "record": {
+ "CNAME": "bernalvarela.github.io"
+ }
+}
diff --git a/domains/bernard2806.json b/domains/bernard2806.json
new file mode 100644
index 000000000..e0e2e34ac
--- /dev/null
+++ b/domains/bernard2806.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portafolio personal con proyectos, habilidades y contacto.",
+ "repo": "https://github.com/Bernard2806/Portafolio",
+ "owner": {
+ "username": "Bernard2806",
+ "email": "berramuspegonzalez@gmail.com"
+ },
+ "record": {
+ "CNAME": "bernard2806.github.io"
+ }
+}
diff --git a/domains/bernardo.json b/domains/bernardo.json
new file mode 100644
index 000000000..5bd1e8f0f
--- /dev/null
+++ b/domains/bernardo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Bernardo-QG",
+ "email": "b.quintinoguzman@ugto.mx"
+ },
+ "record": {
+ "CNAME": "bernardo-qg.github.io"
+ }
+}
diff --git a/domains/bernardofoegbu.json b/domains/bernardofoegbu.json
index e98994efe..a3d0e71ac 100644
--- a/domains/bernardofoegbu.json
+++ b/domains/bernardofoegbu.json
@@ -1,11 +1,11 @@
{
- "description": "I want to use it for hosting my portfolio site",
- "repo": "https://github.com/O-BERNARDOFOEGBU/my-portfolio",
- "owner": {
- "username": "O-BERNARDOFOEGBU",
- "email": "obinnaofoegbu71@gmail.com"
- },
- "record": {
- "CNAME": "o-bernardofoegbu.github.io"
- }
-}
\ No newline at end of file
+ "description": "I want to use it for hosting my portfolio site",
+ "repo": "https://github.com/O-BERNARDOFOEGBU/my-portfolio",
+ "owner": {
+ "username": "O-BERNARDOFOEGBU",
+ "email": "obinnaofoegbu71@gmail.com"
+ },
+ "record": {
+ "CNAME": "o-bernardofoegbu.github.io"
+ }
+}
diff --git a/domains/berry.json b/domains/berry.json
index e0f31acd0..7a824a956 100644
--- a/domains/berry.json
+++ b/domains/berry.json
@@ -1,11 +1,11 @@
{
- "description": "Berry's developer website",
- "owner": {
- "username": "AhmedBaari",
- "email": "ahmed4baari@gmail.com",
- "instagram": "berryciouss"
- },
- "record": {
- "CNAME": "cname.short.io"
- }
-}
\ No newline at end of file
+ "description": "Berry's developer website",
+ "owner": {
+ "username": "AhmedBaari",
+ "email": "ahmed4baari@gmail.com",
+ "instagram": "berryciouss"
+ },
+ "record": {
+ "CNAME": "cname.short.io"
+ }
+}
diff --git a/domains/berzcodetechnologies.json b/domains/berzcodetechnologies.json
index 4a98eae93..533a90e06 100644
--- a/domains/berzcodetechnologies.json
+++ b/domains/berzcodetechnologies.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "sxurabh",
- "email": "saurabhkirve@gmail.com"
- },
- "record": {
- "A": [
- "154.41.233.131"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "sxurabh",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "A": ["154.41.233.131"]
+ }
+}
diff --git a/domains/berzerk.json b/domains/berzerk.json
index 4a98eae93..533a90e06 100644
--- a/domains/berzerk.json
+++ b/domains/berzerk.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "sxurabh",
- "email": "saurabhkirve@gmail.com"
- },
- "record": {
- "A": [
- "154.41.233.131"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "sxurabh",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "A": ["154.41.233.131"]
+ }
+}
diff --git a/domains/betaprj.akk1to.json b/domains/betaprj.akk1to.json
index 47a32a284..dca0cbf18 100644
--- a/domains/betaprj.akk1to.json
+++ b/domains/betaprj.akk1to.json
@@ -1,12 +1,12 @@
{
- "description": "This website is for my personal project hosting XD (let it on rq)",
- "repo": "https://github.com/akk1to/betaprj.github.io",
- "owner": {
- "username": "akk1to",
- "email": "akk1to.dev@gmail.com",
- "discord": "727497287777124414"
- },
- "record": {
- "CNAME": "akk1to.github.io"
- }
-}
\ No newline at end of file
+ "description": "This website is for my personal project hosting XD (let it on rq)",
+ "repo": "https://github.com/akk1to/betaprj.github.io",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "CNAME": "akk1to.github.io"
+ }
+}
diff --git a/domains/betsthebest.json b/domains/betsthebest.json
index a5a2e827e..065ae2d9c 100644
--- a/domains/betsthebest.json
+++ b/domains/betsthebest.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Betsthebest",
- "email": "bets.hassoun@gmail.com"
- },
- "record": {
- "CNAME": "betsthebest.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Betsthebest",
+ "email": "bets.hassoun@gmail.com"
+ },
+ "record": {
+ "CNAME": "betsthebest.github.io"
+ }
+}
diff --git a/domains/bhadra.json b/domains/bhadra.json
index 056646ffb..fcbb70368 100644
--- a/domains/bhadra.json
+++ b/domains/bhadra.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Website",
- "repo": "https://github.com/BhadraJayakumarSandhya/BhadraJayakumarSandhya.github.io",
- "owner": {
- "username": "BhadraJayakumarSandhya",
- "email": "tomjerryparu@gmail.com"
- },
- "record": {
- "CNAME": "bhadrajayakumarsandhya.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal Website",
+ "repo": "https://github.com/BhadraJayakumarSandhya/BhadraJayakumarSandhya.github.io",
+ "owner": {
+ "username": "BhadraJayakumarSandhya",
+ "email": "tomjerryparu@gmail.com"
+ },
+ "record": {
+ "CNAME": "bhadrajayakumarsandhya.github.io"
+ }
+}
diff --git a/domains/bhardwaj.json b/domains/bhardwaj.json
index 047f8d314..fdb97f8e2 100644
--- a/domains/bhardwaj.json
+++ b/domains/bhardwaj.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "rohanbhardwaj205",
- "email": "71399@cgcjhanjeri.in"
- },
- "record": {
- "CNAME": "rohanbhardwaj205.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "rohanbhardwaj205",
+ "email": "71399@cgcjhanjeri.in"
+ },
+ "record": {
+ "CNAME": "rohanbhardwaj205.github.io"
+ }
+}
diff --git a/domains/bhargav-gohil.json b/domains/bhargav-gohil.json
index 0362d260f..caf0466cc 100644
--- a/domains/bhargav-gohil.json
+++ b/domains/bhargav-gohil.json
@@ -1,11 +1,11 @@
{
- "description": "Bhargav Gohil's personal developer website",
- "repo": "https://github.com/bhargav252000/bhargav252000.github.io",
- "owner": {
- "username": "bhargav252000",
- "email": "bhargavgohil25@gmail.com"
- },
- "record": {
- "CNAME": "bhargav252000.github.io"
- }
-}
\ No newline at end of file
+ "description": "Bhargav Gohil's personal developer website",
+ "repo": "https://github.com/bhargav252000/bhargav252000.github.io",
+ "owner": {
+ "username": "bhargav252000",
+ "email": "bhargavgohil25@gmail.com"
+ },
+ "record": {
+ "CNAME": "bhargav252000.github.io"
+ }
+}
diff --git a/domains/bhargav.json b/domains/bhargav.json
index 58095b5a2..e1ae30b2a 100644
--- a/domains/bhargav.json
+++ b/domains/bhargav.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "bhargavmehta01",
- "email": "bhargav.mehta01@gmail.com"
- },
- "record": {
- "CNAME": "bhargavmehta01.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "bhargavmehta01",
+ "email": "bhargav.mehta01@gmail.com"
+ },
+ "record": {
+ "CNAME": "bhargavmehta01.github.io"
+ }
+}
diff --git a/domains/bhaskar.json b/domains/bhaskar.json
new file mode 100644
index 000000000..39ab24072
--- /dev/null
+++ b/domains/bhaskar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bhaskarrijal",
+ "email": "mail@bhaskarrijal.me"
+ },
+ "record": {
+ "CNAME": "site-52r.pages.dev"
+ }
+}
diff --git a/domains/bhattcodes.json b/domains/bhattcodes.json
index 4f87e02f8..c6df48317 100644
--- a/domains/bhattcodes.json
+++ b/domains/bhattcodes.json
@@ -1,11 +1,11 @@
{
- "description": "Aman Bhatt's personal website",
- "repo": "https://github.com/bhattcodes/bhattcodes.github.io",
- "owner": {
- "username": "bhattcodes",
- "email": "bhatt.codes@gmail.com"
- },
- "record": {
- "CNAME": "bhattcodes.github.io"
- }
-}
\ No newline at end of file
+ "description": "Aman Bhatt's personal website",
+ "repo": "https://github.com/bhattcodes/bhattcodes.github.io",
+ "owner": {
+ "username": "bhattcodes",
+ "email": "bhatt.codes@gmail.com"
+ },
+ "record": {
+ "CNAME": "bhattcodes.github.io"
+ }
+}
diff --git a/domains/bhavesh-acquaintsoft.json b/domains/bhavesh-acquaintsoft.json
index 3c5a6823e..4c0f06cb9 100644
--- a/domains/bhavesh-acquaintsoft.json
+++ b/domains/bhavesh-acquaintsoft.json
@@ -1,10 +1,10 @@
{
- "description": "This website is a link to my personal developer portfolio.",
- "repo": "https://github.com/bhavesh-acquaintsoft/bhavesh-acquaintsoft.github.io",
- "owner": {
- "username": "bhavesh-acquaintsoft"
- },
- "record": {
- "CNAME": "bhavesh-acquaintsoft.github.io"
- }
-}
\ No newline at end of file
+ "description": "This website is a link to my personal developer portfolio.",
+ "repo": "https://github.com/bhavesh-acquaintsoft/bhavesh-acquaintsoft.github.io",
+ "owner": {
+ "username": "bhavesh-acquaintsoft"
+ },
+ "record": {
+ "CNAME": "bhavesh-acquaintsoft.github.io"
+ }
+}
diff --git a/domains/bhavesh-p-patel.json b/domains/bhavesh-p-patel.json
index efd600f3d..493bdba07 100644
--- a/domains/bhavesh-p-patel.json
+++ b/domains/bhavesh-p-patel.json
@@ -1,10 +1,10 @@
{
- "description": "My new website",
- "repo": "https://github.com/Bhavesh-p-Patel/Bhavesh-p-Patel.github.io",
- "owner": {
- "username": "Bhavesh-p-Patel"
- },
- "record": {
- "CNAME": "bhavesh-p-patel.github.io"
- }
-}
\ No newline at end of file
+ "description": "My new website",
+ "repo": "https://github.com/Bhavesh-p-Patel/Bhavesh-p-Patel.github.io",
+ "owner": {
+ "username": "Bhavesh-p-Patel"
+ },
+ "record": {
+ "CNAME": "bhavesh-p-patel.github.io"
+ }
+}
diff --git a/domains/bhavitha.json b/domains/bhavitha.json
index 30d9603c0..0c4a0a6de 100644
--- a/domains/bhavitha.json
+++ b/domains/bhavitha.json
@@ -1,11 +1,11 @@
{
- "description": "Portfolio website",
- "repo": "https://github.com/nightcoder26/bhavitha",
- "owner": {
- "username": "nightcoder26",
- "twitter": "night_coder26"
- },
- "record": {
- "CNAME": "nightcoder26.github.io"
- }
-}
\ No newline at end of file
+ "description": "Portfolio website",
+ "repo": "https://github.com/nightcoder26/bhavitha",
+ "owner": {
+ "username": "nightcoder26",
+ "twitter": "night_coder26"
+ },
+ "record": {
+ "CNAME": "nightcoder26.github.io"
+ }
+}
diff --git a/domains/bhavyagupta.json b/domains/bhavyagupta.json
new file mode 100644
index 000000000..11d241bbd
--- /dev/null
+++ b/domains/bhavyagupta.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio website",
+ "repo": "https://github.com/BhavyaGupta315/Portfolio",
+ "owner": {
+ "username": "BhavyaGupta315",
+ "twitter": "Bhavya_Gupta315"
+ },
+ "record": {
+ "CNAME": "bhavya-gupta-portfolio.vercel.app"
+ }
+}
diff --git a/domains/bhavyasingh.json b/domains/bhavyasingh.json
index 1a222f92e..52bbd7c88 100644
--- a/domains/bhavyasingh.json
+++ b/domains/bhavyasingh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BhavyaSingh2611",
- "email": "bhavyasingh2611@outlook.com"
- },
- "record": {
- "CNAME": "bhavyasingh2611.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BhavyaSingh2611",
+ "email": "bhavyasingh2611@outlook.com"
+ },
+ "record": {
+ "CNAME": "bhavyasingh2611.github.io"
+ }
+}
diff --git a/domains/bhumkah-patel.json b/domains/bhumkah-patel.json
index d70aa11f2..8d0c1d7e9 100644
--- a/domains/bhumkah-patel.json
+++ b/domains/bhumkah-patel.json
@@ -1,10 +1,10 @@
{
- "description": "bhumika patel.",
- "repo": "https://github.com/bhumkah-patel/bhumkah-patel.github.io",
- "owner": {
- "username": "bhumkah-patel"
- },
- "record": {
- "CNAME": "bhumkah-patel.github.io"
- }
-}
\ No newline at end of file
+ "description": "bhumika patel.",
+ "repo": "https://github.com/bhumkah-patel/bhumkah-patel.github.io",
+ "owner": {
+ "username": "bhumkah-patel"
+ },
+ "record": {
+ "CNAME": "bhumkah-patel.github.io"
+ }
+}
diff --git a/domains/bhushankhopkarr.json b/domains/bhushankhopkarr.json
index 66decd963..975268c2c 100644
--- a/domains/bhushankhopkarr.json
+++ b/domains/bhushankhopkarr.json
@@ -1,12 +1,12 @@
{
- "description": "This subdomain is a redirection to my personal portfolio.",
- "repo": "https://github.com/bhushankhopkarr/bhushankhopkarr.github.io",
- "owner": {
- "username": "bhushankhopkarr",
- "email": "bhushankhopkar06@gmail.com",
- "twitter": "bhushankhopkrr"
- },
- "record": {
- "CNAME": "bhushankhopkrr.vercel.app"
- }
-}
\ No newline at end of file
+ "description": "This subdomain is a redirection to my personal portfolio.",
+ "repo": "https://github.com/bhushankhopkarr/bhushankhopkarr.github.io",
+ "owner": {
+ "username": "bhushankhopkarr",
+ "email": "bhushankhopkar06@gmail.com",
+ "twitter": "bhushankhopkrr"
+ },
+ "record": {
+ "CNAME": "bhushankhopkrr.vercel.app"
+ }
+}
diff --git a/domains/bibhu.json b/domains/bibhu.json
index 61a249fc9..fa2afbeb4 100644
--- a/domains/bibhu.json
+++ b/domains/bibhu.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "bibs24",
- "email": "bibhuprasadsaha4@gmail.com"
- },
- "record": {
- "CNAME": "bibs24.github.io"
- },
- "description": "Personal Portfolio"
-}
\ No newline at end of file
+ "owner": {
+ "username": "bibs24",
+ "email": "bibhuprasadsaha4@gmail.com"
+ },
+ "record": {
+ "CNAME": "bibs24.github.io"
+ },
+ "description": "Personal Portfolio"
+}
diff --git a/domains/bigtime.json b/domains/bigtime.json
index 33dc3c2bd..036a9718a 100644
--- a/domains/bigtime.json
+++ b/domains/bigtime.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "mxl0s",
- "email": "contact@milosv.co"
- },
- "record": {
- "A": [
- "69.30.249.53"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "mxl0s",
+ "email": "contact@milosv.co"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/biko.json b/domains/biko.json
index 8f5c671a2..2bf95026d 100644
--- a/domains/biko.json
+++ b/domains/biko.json
@@ -1,12 +1,12 @@
{
- "description": "Personal website that will be used as an introduction to me, how to contact me, my blog posts and more",
- "repo": "https://github.com/Bikoil/bikoil.github.io",
- "owner": {
- "username": "bikoil",
- "email": "devbikoilu@gmail.com",
- "twitter": "BikoAni"
- },
- "record": {
- "CNAME": "bikoil.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal website that will be used as an introduction to me, how to contact me, my blog posts and more",
+ "repo": "https://github.com/Bikoil/bikoil.github.io",
+ "owner": {
+ "username": "bikoil",
+ "email": "devbikoilu@gmail.com",
+ "twitter": "BikoAni"
+ },
+ "record": {
+ "CNAME": "bikoil.github.io"
+ }
+}
diff --git a/domains/bilal.json b/domains/bilal.json
index 86f7f9bc4..cba83104a 100644
--- a/domains/bilal.json
+++ b/domains/bilal.json
@@ -1,11 +1,11 @@
{
- "description": "BilalBsd's developer website",
- "repo": "https://github.com/bilalbsd/bilalbsd.github.io",
- "owner": {
- "username": "Bilalbsd",
- "email": "dev.bilalb@gmail.com"
- },
- "record": {
- "CNAME": "bilalbsd.github.io"
- }
-}
\ No newline at end of file
+ "description": "BilalBsd's developer website",
+ "repo": "https://github.com/bilalbsd/bilalbsd.github.io",
+ "owner": {
+ "username": "Bilalbsd",
+ "email": "dev.bilalb@gmail.com"
+ },
+ "record": {
+ "CNAME": "bilalbsd.github.io"
+ }
+}
diff --git a/domains/bilalmansuri.json b/domains/bilalmansuri.json
new file mode 100644
index 000000000..6bab652a5
--- /dev/null
+++ b/domains/bilalmansuri.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "bilal-23",
+ "email": "work.bilalmansuri@gmail.com",
+ "discord": "bilal_23"
+ },
+ "record": {
+ "CNAME": "bilalmansuri.vercel.app"
+ }
+}
diff --git a/domains/bilalthepunjabi.json b/domains/bilalthepunjabi.json
new file mode 100644
index 000000000..6bcc1c456
--- /dev/null
+++ b/domains/bilalthepunjabi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Website for bilalthepunjabi's Homelab - (PaaS-Coolify) - host portfolio projects sample (with dynamic IPv4, which is why I need Cloudflare Nameservers).",
+ "repo": "https://github.com/bilalthepunjabi/register",
+ "owner": {
+ "username": "bilalthepunjabi",
+ "email": "bilalthepunjabi@gmail.com"
+ },
+ "record": {
+ "NS": ["aitana.ns.cloudflare.com", "damien.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/bill.json b/domains/bill.json
index 136fc99b6..28f9a08c9 100644
--- a/domains/bill.json
+++ b/domains/bill.json
@@ -1,12 +1,12 @@
{
- "description": "Bill's blog site.",
- "repo": "https://github.com/CMBill/CMBill.github.io",
- "owner": {
- "username": "CMBill",
- "email": "callmebill@billw.cn",
- "twitter": "BillWen14"
- },
- "record": {
- "CNAME": "cmbill.github.io"
- }
-}
\ No newline at end of file
+ "description": "Bill's blog site.",
+ "repo": "https://github.com/CMBill/CMBill.github.io",
+ "owner": {
+ "username": "CMBill",
+ "email": "callmebill@billw.cn",
+ "twitter": "BillWen14"
+ },
+ "record": {
+ "CNAME": "cmbill.github.io"
+ }
+}
diff --git a/domains/billion.json b/domains/billion.json
new file mode 100644
index 000000000..85f0b2c7e
--- /dev/null
+++ b/domains/billion.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "billionbucks",
+ "discord": "mrbillion_bucks",
+ "email": "mrbillionbucks@gmail.com"
+ },
+ "record": {
+ "CNAME": "billionbucks.github.io"
+ }
+}
diff --git a/domains/billvog.json b/domains/billvog.json
new file mode 100644
index 000000000..9d30e7902
--- /dev/null
+++ b/domains/billvog.json
@@ -0,0 +1,11 @@
+{
+ "description": "billvog's Portfolio Website",
+ "repo": "https://github.com/billvog/billvog.github.io",
+ "owner": {
+ "username": "billvog",
+ "email": "hey@billvog.com"
+ },
+ "record": {
+ "URL": "https://billvog.com"
+ }
+}
diff --git a/domains/billy.json b/domains/billy.json
index a65f89327..7c49e1998 100644
--- a/domains/billy.json
+++ b/domains/billy.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "tomlin7",
- "email": "billydevbusiness@gmail.com"
- },
- "record": {
- "URL": "https://tomlin7.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "tomlin7",
+ "email": "billydevbusiness@gmail.com"
+ },
+ "record": {
+ "URL": "https://tomlin7.github.io"
+ }
+}
diff --git a/domains/bimal.json b/domains/bimal.json
index 101737508..0f7076a76 100644
--- a/domains/bimal.json
+++ b/domains/bimal.json
@@ -1,12 +1,12 @@
{
- "description": "My personal website goes here",
- "repo": "https://github.com/bimal-inc/bimal-inc.github.io",
- "owner": {
- "username": "bimal-inc",
- "email": "bimalyadavemail7@gmail.com",
- "twitter": "bimalinc"
- },
- "record": {
- "CNAME": "bimal-inc.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal website goes here",
+ "repo": "https://github.com/bimal-inc/bimal-inc.github.io",
+ "owner": {
+ "username": "bimal-inc",
+ "email": "bimalyadavemail7@gmail.com",
+ "twitter": "bimalinc"
+ },
+ "record": {
+ "CNAME": "bimal-inc.github.io"
+ }
+}
diff --git a/domains/bimarsha.json b/domains/bimarsha.json
index 3da5e68f4..a4195f796 100644
--- a/domains/bimarsha.json
+++ b/domains/bimarsha.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Bimarsha69",
- "email": "bimarshathapa2@gmail.com"
- },
- "record": {
- "CNAME": "bimarsha69.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Bimarsha69",
+ "email": "bimarshathapa2@gmail.com"
+ },
+ "record": {
+ "CNAME": "bimarsha69.github.io"
+ }
+}
diff --git a/domains/bing-chilling.json b/domains/bing-chilling.json
index 53d04e87b..ab819db76 100644
--- a/domains/bing-chilling.json
+++ b/domains/bing-chilling.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "TheUnium",
- "email": "ooooooooooooothereal@gmail.com"
- },
- "record": {
- "CNAME": "theunium.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "TheUnium",
+ "email": "ooooooooooooothereal@gmail.com"
+ },
+ "record": {
+ "CNAME": "theunium.github.io"
+ }
+}
diff --git a/domains/binh.json b/domains/binh.json
index 3a8f0c51d..2c576dfbd 100644
--- a/domains/binh.json
+++ b/domains/binh.json
@@ -1,11 +1,10 @@
{
- "description": "Binh Pham's Personal Website",
- "repo": "https://github.com/pham-tuan-binh",
- "owner": {
- "username": "pham-tuan-binh",
- "email": "binhpham@binhph.am"
- },
- "record": {
- "URL": "https://www.binhph.am"
- }
-}
\ No newline at end of file
+ "description": "Binh Pham's Personal Website",
+ "owner": {
+ "username": "pham-tuan-binh",
+ "email": "binhpham@binhph.am"
+ },
+ "record": {
+ "URL": "https://www.binhph.am"
+ }
+}
diff --git a/domains/binhpv96.json b/domains/binhpv96.json
index 9a0976ea6..030873437 100644
--- a/domains/binhpv96.json
+++ b/domains/binhpv96.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "binhpv96",
- "email": "pvbinh2k4@gmail.com"
- },
- "record": {
- "CNAME": "binhpv96.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "binhpv96",
+ "email": "pvbinh2k4@gmail.com"
+ },
+ "record": {
+ "CNAME": "binhpv96.github.io"
+ }
+}
diff --git a/domains/bintang1302.json b/domains/bintang1302.json
index 6a295b7fe..5d021e665 100644
--- a/domains/bintang1302.json
+++ b/domains/bintang1302.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "Bintang1302",
- "discord": "881796102142185504",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NxNl7iqPLlu2R6PI7WeNjQ3DKnxMPUe4m6yjt9wDu4VQFk-lyi2DlXx8YQNZY0e1yKeYFAbPUv_0hHLMhRK-mPQfUmyr1EGxi90HlfxPj7Z5SiNuQ0JOcCdz7LIbajRsRznaWPDt-fz7nSyQvrR8qTo3TLKPCe_GtGKzOuY4U4zqs35VByrNnJE0_R4mQuW-KqZPie2kzopM7M4dSVlCDuBiI91uC5HKKcOZ4jq9sf8MnnqXOzh0C7vFRYq-k_7vQ4khJtizfOVJsM8Y9-ioodSwwvzeS-0dfrq_DFwZx68OJcg0VVLy6-Bi1Zf199QWlb39NNqHEDw08Yu1Rzgo5A.Ydq1gSOxnSmBTk93ym-ipA.5cwDdmxhwIxRV4237X9z7At-Up-uL1dQgiQzgKHqrcjP9HBzJlTRnmOvDQEiohF3uWtdL3y4VadRGXOgcF6TKVljeBkSsR3XuEKWDMRwvOY.XB1v5WDnEPOfqjr-ZEzloQ"
- },
- "record": {
- "A": [
- "89.213.211.250"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Bintang1302",
+ "discord": "881796102142185504",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NxNl7iqPLlu2R6PI7WeNjQ3DKnxMPUe4m6yjt9wDu4VQFk-lyi2DlXx8YQNZY0e1yKeYFAbPUv_0hHLMhRK-mPQfUmyr1EGxi90HlfxPj7Z5SiNuQ0JOcCdz7LIbajRsRznaWPDt-fz7nSyQvrR8qTo3TLKPCe_GtGKzOuY4U4zqs35VByrNnJE0_R4mQuW-KqZPie2kzopM7M4dSVlCDuBiI91uC5HKKcOZ4jq9sf8MnnqXOzh0C7vFRYq-k_7vQ4khJtizfOVJsM8Y9-ioodSwwvzeS-0dfrq_DFwZx68OJcg0VVLy6-Bi1Zf199QWlb39NNqHEDw08Yu1Rzgo5A.Ydq1gSOxnSmBTk93ym-ipA.5cwDdmxhwIxRV4237X9z7At-Up-uL1dQgiQzgKHqrcjP9HBzJlTRnmOvDQEiohF3uWtdL3y4VadRGXOgcF6TKVljeBkSsR3XuEKWDMRwvOY.XB1v5WDnEPOfqjr-ZEzloQ"
+ },
+ "record": {
+ "A": ["89.213.211.250"]
+ }
+}
diff --git a/domains/bintangbagus.json b/domains/bintangbagus.json
new file mode 100644
index 000000000..4e59ce07a
--- /dev/null
+++ b/domains/bintangbagus.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bntngbgs",
+ "email": "bintangbgs16@gmail.com"
+ },
+ "record": {
+ "CNAME": "bintangbagus.pages.dev"
+ }
+}
diff --git a/domains/binwonk.json b/domains/binwonk.json
index fec4e131c..b8647c14a 100644
--- a/domains/binwonk.json
+++ b/domains/binwonk.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "binwonk",
- "email": "finnwok1@gmail.com"
- },
- "record": {
- "CNAME": "binwonk.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "binwonk",
+ "email": "finnwok1@gmail.com"
+ },
+ "record": {
+ "CNAME": "binwonk.github.io"
+ }
+}
diff --git a/domains/bio.ahmedtohamy.json b/domains/bio.ahmedtohamy.json
index 730c79d01..44fc48511 100644
--- a/domains/bio.ahmedtohamy.json
+++ b/domains/bio.ahmedtohamy.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ahmedtohamy1",
- "email": "1ahmed.tohamy@gmail.com"
- },
- "record": {
- "CNAME": "ahmedtohamy1.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ahmedtohamy1",
+ "email": "1ahmed.tohamy@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahmedtohamy1.github.io"
+ }
+}
diff --git a/domains/bio.json b/domains/bio.json
new file mode 100644
index 000000000..53c17e34b
--- /dev/null
+++ b/domains/bio.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Bio",
+ "repo": "https://github.com/is-a-dev/docs",
+ "owner": {
+ "username": "octyn-yt",
+ "email": "simplelogin-newsletter.idealize471@simplelogin.com"
+ },
+ "record": {
+ "CNAME": "edge.redirect.pizza"
+ }
+}
diff --git a/domains/bipin-bheda.json b/domains/bipin-bheda.json
index 9b5a62978..fb79c29cf 100644
--- a/domains/bipin-bheda.json
+++ b/domains/bipin-bheda.json
@@ -1,10 +1,10 @@
{
- "description": "Bipin Bheda Profile.",
- "repo": "https://github.com/bipin-bheda/bipin-bheda.github.io",
- "owner": {
- "username": "bipin-bheda"
- },
- "record": {
- "CNAME": "bipin-bheda.github.io"
- }
-}
\ No newline at end of file
+ "description": "Bipin Bheda Profile.",
+ "repo": "https://github.com/bipin-bheda/bipin-bheda.github.io",
+ "owner": {
+ "username": "bipin-bheda"
+ },
+ "record": {
+ "CNAME": "bipin-bheda.github.io"
+ }
+}
diff --git a/domains/biplob.json b/domains/biplob.json
index 943266d51..f5daffede 100644
--- a/domains/biplob.json
+++ b/domains/biplob.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "revolutionisme",
- "email": "revolutionisme@gmail.com"
- },
- "record": {
- "CNAME": "revolutionisme.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "revolutionisme",
+ "email": "revolutionisme@gmail.com"
+ },
+ "record": {
+ "CNAME": "revolutionisme.github.io"
+ }
+}
diff --git a/domains/birabittoh.json b/domains/birabittoh.json
index 7bfdf34d5..0e04cf4df 100644
--- a/domains/birabittoh.json
+++ b/domains/birabittoh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BiRabittoh",
- "email": "andronacomarco@gmail.com"
- },
- "record": {
- "CNAME": "birabittoh.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BiRabittoh",
+ "email": "andronacomarco@gmail.com"
+ },
+ "record": {
+ "CNAME": "birabittoh.github.io"
+ }
+}
diff --git a/domains/bismuth.json b/domains/bismuth.json
index 2b48c8e5e..6ef1961e2 100644
--- a/domains/bismuth.json
+++ b/domains/bismuth.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "bismuthnickel",
- "email": "warreneverettstevens@gmail.com"
- },
- "record": {
- "CNAME": "bismuthnickel.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "bismuthnickel",
+ "email": "warreneverettstevens@gmail.com"
+ },
+ "record": {
+ "CNAME": "bismuthnickel.github.io"
+ }
+}
diff --git a/domains/bitbend.json b/domains/bitbend.json
new file mode 100644
index 000000000..f25942387
--- /dev/null
+++ b/domains/bitbend.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bitbend",
+ "email": "arkamdev@gmail.com"
+ },
+ "record": {
+ "CNAME": "bitbend.github.io"
+ }
+}
diff --git a/domains/bitsexploited.json b/domains/bitsexploited.json
index 5460f7e84..5ad5b4c99 100644
--- a/domains/bitsexploited.json
+++ b/domains/bitsexploited.json
@@ -1,11 +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"
- }
-}
\ No newline at end of file
+ "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/bk.json b/domains/bk.json
index ae4635f0c..0ad102550 100644
--- a/domains/bk.json
+++ b/domains/bk.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "hbk671104",
- "email": "hbk671104@gmail.com"
- },
- "record": {
- "CNAME": "hbk671104.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "hbk671104",
+ "email": "hbk671104@gmail.com"
+ },
+ "record": {
+ "CNAME": "hbk671104.github.io"
+ }
+}
diff --git a/domains/bkmd.json b/domains/bkmd.json
index 6ea4324b2..baef014e4 100644
--- a/domains/bkmd.json
+++ b/domains/bkmd.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Soldierplayz6867",
- "email": "soldierplayz.tw@gmail.com"
- },
- "record": {
- "CNAME": "da-1.us.hostns.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Soldierplayz6867",
+ "email": "soldierplayz.tw@gmail.com"
+ },
+ "record": {
+ "CNAME": "da-1.us.hostns.io"
+ }
+}
diff --git a/domains/bkms.json b/domains/bkms.json
index 19241fbd5..03f3f8128 100644
--- a/domains/bkms.json
+++ b/domains/bkms.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "bkmsstudio",
- "email": "mmini15354424@gmail.com"
- },
- "record": {
- "CNAME": "www.bkmsdev.in.th"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "bkmsstudio",
+ "email": "mmini15354424@gmail.com"
+ },
+ "record": {
+ "CNAME": "www.bkmsdev.in.th"
+ }
+}
diff --git a/domains/blackdx.json b/domains/blackdx.json
index 0d7925db9..47620b711 100644
--- a/domains/blackdx.json
+++ b/domains/blackdx.json
@@ -1,12 +1,12 @@
{
- "description": "Use is for a little portfolio",
- "repo": "https://github.com/blackdx/homepage",
- "owner": {
- "username": "blackdx",
- "email": "blackdxnet@gmail.com",
- "twitter": "BlackDX10"
- },
- "record": {
- "CNAME": "blackdx.github.io"
- }
-}
\ No newline at end of file
+ "description": "Use is for a little portfolio",
+ "repo": "https://github.com/blackdx/homepage",
+ "owner": {
+ "username": "blackdx",
+ "email": "blackdxnet@gmail.com",
+ "twitter": "BlackDX10"
+ },
+ "record": {
+ "CNAME": "blackdx.github.io"
+ }
+}
diff --git a/domains/blackneeed.json b/domains/blackneeed.json
index 05d31e3e1..b5b678429 100644
--- a/domains/blackneeed.json
+++ b/domains/blackneeed.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Blackneeed",
- "email": "kontododatkowe.marcelclay@gmail.com",
- "discord": "928360278683443210"
- },
- "record": {
- "CNAME": "blackneeed.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Blackneeed",
+ "email": "kontododatkowe.marcelclay@gmail.com",
+ "discord": "928360278683443210"
+ },
+ "record": {
+ "CNAME": "blackneeed.github.io"
+ }
+}
diff --git a/domains/blackwin.json b/domains/blackwin.json
new file mode 100644
index 000000000..ce8c34d18
--- /dev/null
+++ b/domains/blackwin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BlackWin123",
+ "email": "lequocthang04092022@gmail.com"
+ },
+ "record": {
+ "CNAME": "blackwin123.github.io"
+ }
+}
diff --git a/domains/blacsheep.json b/domains/blacsheep.json
index c57351ecc..f954b0cbc 100644
--- a/domains/blacsheep.json
+++ b/domains/blacsheep.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "blacsheep",
- "email": "lanzou1.0@gmail.com"
- },
- "record": {
- "CNAME": "blacsheep-github-io.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "blacsheep",
+ "email": "lanzou1.0@gmail.com"
+ },
+ "record": {
+ "CNAME": "blacsheep-github-io.pages.dev"
+ }
+}
diff --git a/domains/bladimir.json b/domains/bladimir.json
new file mode 100644
index 000000000..5ef4628dd
--- /dev/null
+++ b/domains/bladimir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Esbruiz",
+ "email": "esbruizc@gmail.com"
+ },
+ "record": {
+ "CNAME": "blads-portfolio.vercel.app"
+ }
+}
diff --git a/domains/blaine.json b/domains/blaine.json
index 6e25e952f..eff049886 100644
--- a/domains/blaine.json
+++ b/domains/blaine.json
@@ -1,11 +1,11 @@
{
- "description": "The face of Blaine, on the web",
- "repo": "https://github.com/Blakeinstein/Blakeinstein.github.io",
- "owner": {
- "username": "Blakeinstein",
- "email": "rishi1998@gmail.com"
- },
- "record": {
- "URL": "https://blaine.vip"
- }
-}
\ No newline at end of file
+ "description": "The face of Blaine, on the web",
+ "repo": "https://github.com/Blakeinstein/Blakeinstein.github.io",
+ "owner": {
+ "username": "Blakeinstein",
+ "email": "rishi1998@gmail.com"
+ },
+ "record": {
+ "URL": "https://blaine.vip"
+ }
+}
diff --git a/domains/blake.json b/domains/blake.json
index bd3b957be..6ac0ad09b 100644
--- a/domains/blake.json
+++ b/domains/blake.json
@@ -1,13 +1,10 @@
{
- "description": "A redirection to my github page",
- "repo": "https://github.com/BlakeH2208",
- "owner": {
- "username": "BlakeH2208",
- "email": "contact@blakehurley.com"
- },
- "record": {
- "A": [
- "89.41.169.49"
- ]
- }
-}
\ No newline at end of file
+ "description": "A redirection to my github page",
+ "owner": {
+ "username": "BlakeH2208",
+ "email": "contact@blakehurley.com"
+ },
+ "record": {
+ "A": ["89.41.169.49"]
+ }
+}
diff --git a/domains/blankparticle.json b/domains/blankparticle.json
index a898aef9f..08d16d919 100644
--- a/domains/blankparticle.json
+++ b/domains/blankparticle.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BlankParticle",
- "email": "hello@blankparticle.in"
- },
- "record": {
- "URL": "https://blankparticle.in"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BlankParticle",
+ "email": "hello@blankparticle.in"
+ },
+ "record": {
+ "URL": "https://blankparticle.in"
+ }
+}
diff --git a/domains/blast.json b/domains/blast.json
index 3dbef5108..cda0a12aa 100644
--- a/domains/blast.json
+++ b/domains/blast.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "ReBlast",
- "discord": "poxuizm"
- },
- "description": "Personal website with links to my social medias, will probably add portfolio",
- "record": {
- "CNAME": "reblast.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ReBlast",
+ "discord": "poxuizm"
+ },
+ "description": "Personal website with links to my social medias, will probably add portfolio",
+ "record": {
+ "CNAME": "reblast.github.io"
+ }
+}
diff --git a/domains/blazedev.json b/domains/blazedev.json
index 6e4af010b..8b9d2fbd7 100644
--- a/domains/blazedev.json
+++ b/domains/blazedev.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "blaze-099",
- "discord": "1186691290759434350",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Drbtx3bqrGce1w55T80jyC9uYEhqb_Hea4djEOiUZhqyASA5RnIwlE30dkNIXLr2ARGyMa-IunKjmUWbVWyDu_KuPPXfGzRqstu_TN0ooplUSySXe2lWHP275PpyfMi2ZlmkWH06BCvWUZqeDZimJXGK-EEBMXOyBfJtP91bA9SpXZ8PSdmvK1nEEjO-G3o7NgB-YvT5hydJ6kx_VvRvAmCewn2VDWUxxaRmFHv9RyolKnuUZDT19Nj0HDooaFHvHMUazbrmHKp7u2ymN3-hhwpaLxjvQ_R1BQNVSnC5zHkNHvxqiIrh3fyqRCpn3YQIpI8FH3AjMOopt8D4ehvt-w.XfKXPgZOGrovfShUJYX10w.Q_92JQs0PCCIqSzlIgnqbSGSSkH1BmLZn6x2nYOOMpuD2YYSU1R8utzksWRYsCWoZ4U7ZPYrboTidItRKMHSvZ3nyZl4fDiYfPhsfHJV3TY.JW-lUBRmYsjUqFoCsAH_vA"
- },
- "record": {
- "CNAME": "sparkling-faloodeh-1fda87.netlify.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "blaze-099",
+ "discord": "1186691290759434350",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Drbtx3bqrGce1w55T80jyC9uYEhqb_Hea4djEOiUZhqyASA5RnIwlE30dkNIXLr2ARGyMa-IunKjmUWbVWyDu_KuPPXfGzRqstu_TN0ooplUSySXe2lWHP275PpyfMi2ZlmkWH06BCvWUZqeDZimJXGK-EEBMXOyBfJtP91bA9SpXZ8PSdmvK1nEEjO-G3o7NgB-YvT5hydJ6kx_VvRvAmCewn2VDWUxxaRmFHv9RyolKnuUZDT19Nj0HDooaFHvHMUazbrmHKp7u2ymN3-hhwpaLxjvQ_R1BQNVSnC5zHkNHvxqiIrh3fyqRCpn3YQIpI8FH3AjMOopt8D4ehvt-w.XfKXPgZOGrovfShUJYX10w.Q_92JQs0PCCIqSzlIgnqbSGSSkH1BmLZn6x2nYOOMpuD2YYSU1R8utzksWRYsCWoZ4U7ZPYrboTidItRKMHSvZ3nyZl4fDiYfPhsfHJV3TY.JW-lUBRmYsjUqFoCsAH_vA"
+ },
+ "record": {
+ "CNAME": "sparkling-faloodeh-1fda87.netlify.app"
+ }
+}
diff --git a/domains/blazyflash.json b/domains/blazyflash.json
index 1b54d0c45..e2c936c81 100644
--- a/domains/blazyflash.json
+++ b/domains/blazyflash.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Thanatoslayer6",
- "email": "thanatoslayer6@gmail.com"
- },
- "record": {
- "URL": "https://ballzy.vercel.app/"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Thanatoslayer6",
+ "email": "thanatoslayer6@gmail.com"
+ },
+ "record": {
+ "URL": "https://ballzy.vercel.app/"
+ }
+}
diff --git a/domains/blc.json b/domains/blc.json
index 8e10e499f..a0ac0a247 100644
--- a/domains/blc.json
+++ b/domains/blc.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "BLCXD",
- "email": "blctoblc223@gmail.com",
- "discord": "723837167499083788"
- },
- "record": {
- "CNAME": "blcpage.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BLCXD",
+ "email": "blctoblc223@gmail.com",
+ "discord": "723837167499083788"
+ },
+ "record": {
+ "CNAME": "blcpage.github.io"
+ }
+}
diff --git a/domains/bleemis42.json b/domains/bleemis42.json
index 76b201db2..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"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BleemIs42",
+ "description": "BleemIs42.is-a.dev",
+ "email": "BleemIs42@gmail.com"
+ },
+ "record": {
+ "CNAME": "BleemIs42.github.io"
+ }
+}
diff --git a/domains/blek.json b/domains/blek.json
index fc620c4dc..0f020ea1d 100644
--- a/domains/blek.json
+++ b/domains/blek.json
@@ -1,15 +1,11 @@
{
- "description": "blek is a dev",
- "owner": {
- "username": "b1ek",
- "email": "me@blek.codes"
- },
- "record": {
- "A": [
- "185.130.226.115"
- ],
- "AAAA": [
- "2a05:b40:0:570:4563:92af:9a56:7fc8"
- ]
- }
-}
\ No newline at end of file
+ "description": "blek is a dev",
+ "owner": {
+ "username": "b1ek",
+ "email": "me@blek.codes"
+ },
+ "record": {
+ "A": ["185.130.226.115"],
+ "AAAA": ["2a05:b40:0:570:4563:92af:9a56:7fc8"]
+ }
+}
diff --git a/domains/blema.json b/domains/blema.json
index e1f64e1f0..2ffcd1bf4 100644
--- a/domains/blema.json
+++ b/domains/blema.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "ruben-as",
- "email": "ruben.aja.85@gmail.com"
- },
- "record": {
- "A": [
- "212.227.32.105"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
+}
diff --git a/domains/blindstudios.json b/domains/blindstudios.json
index c48e58483..14e966da5 100644
--- a/domains/blindstudios.json
+++ b/domains/blindstudios.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "urasdbwd",
- "discord": "291889282032074752",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.F299V2wTYMNurO2uHOa8VcSRKYBCoUAdCf7UfkKbP6j1p-eUNWwfACF3-MRC87QJgLQ6oOsup94_Mog8jx1nk--qGdtI_MJCzeg1CxdE-O3c6pQKFRT-f-EpksF3SlOC3ZpiVoYr8xRDOk0Z9YJ5Kp9YgS4nX53e32q_YAHrxIBn982VbfkSMuWgN8XNVtELx4V9k2Mm3FUVxxcUenS7RK8E9bkN9J2yytst3fOKeP3Y1RGqmx-lK9IpIJoOacz8O-O47KCBEo5xHuNowLkrxA4ZKh9_buapeBKLwKMN0L9WgaABYE5gYJ16Hu3nPV9am3QAvJa9UJKtMNPJNg1Ytg.eVZIak0vT5zOE5bRpJ-4Nw.0nvLUiumNwnzS-In3p_LxfltkRH42IFB7ORkWyNlQAPj73PyFksbHfwgah43wCTCH7Nn4M324xg_JiHKBdUXneagncW2cuPzQM-hXt1E0-E.bl3U_qohdjGOIOejzipLJA"
- },
- "record": {
- "A": [
- "193.149.164.209"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "urasdbwd",
+ "discord": "291889282032074752",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.F299V2wTYMNurO2uHOa8VcSRKYBCoUAdCf7UfkKbP6j1p-eUNWwfACF3-MRC87QJgLQ6oOsup94_Mog8jx1nk--qGdtI_MJCzeg1CxdE-O3c6pQKFRT-f-EpksF3SlOC3ZpiVoYr8xRDOk0Z9YJ5Kp9YgS4nX53e32q_YAHrxIBn982VbfkSMuWgN8XNVtELx4V9k2Mm3FUVxxcUenS7RK8E9bkN9J2yytst3fOKeP3Y1RGqmx-lK9IpIJoOacz8O-O47KCBEo5xHuNowLkrxA4ZKh9_buapeBKLwKMN0L9WgaABYE5gYJ16Hu3nPV9am3QAvJa9UJKtMNPJNg1Ytg.eVZIak0vT5zOE5bRpJ-4Nw.0nvLUiumNwnzS-In3p_LxfltkRH42IFB7ORkWyNlQAPj73PyFksbHfwgah43wCTCH7Nn4M324xg_JiHKBdUXneagncW2cuPzQM-hXt1E0-E.bl3U_qohdjGOIOejzipLJA"
+ },
+ "record": {
+ "A": ["193.149.164.209"]
+ }
+}
diff --git a/domains/blitzbrian.json b/domains/blitzbrian.json
index 8f0cb55a2..96dd5a47c 100644
--- a/domains/blitzbrian.json
+++ b/domains/blitzbrian.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "blitzbrian",
- "email": "brianvoorbij@gmail.com",
- "discord": "814555302178455604"
- },
- "record": {
- "CNAME": "blitzbrian.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "blitzbrian",
+ "email": "brianvoorbij@gmail.com",
+ "discord": "814555302178455604"
+ },
+ "record": {
+ "CNAME": "blitzbrian.github.io"
+ }
+}
diff --git a/domains/blkdang1.json b/domains/blkdang1.json
new file mode 100644
index 000000000..ddb3956cf
--- /dev/null
+++ b/domains/blkdang1.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "lmlmdf404"
+ },
+ "record": {
+ "CNAME": "lmlmdf404.github.io"
+ }
+}
diff --git a/domains/blob2763.json b/domains/blob2763.json
index 80ef44d40..61cd102b9 100644
--- a/domains/blob2763.json
+++ b/domains/blob2763.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Blob2763",
- "email": "blob2763@gmail.com"
- },
- "record": {
- "CNAME": "blob2763.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Blob2763",
+ "email": "blob2763@gmail.com"
+ },
+ "record": {
+ "CNAME": "blob2763.github.io"
+ }
+}
diff --git a/domains/blog.aayushsiwa.json b/domains/blog.aayushsiwa.json
index 528050de1..1ed0096bf 100644
--- a/domains/blog.aayushsiwa.json
+++ b/domains/blog.aayushsiwa.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "aayushsiwa",
- "email": "22052177@kiit.ac.in"
- },
- "record": {
- "CNAME": "blog-aayushsiwa.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aayushsiwa",
+ "email": "22052177@kiit.ac.in"
+ },
+ "record": {
+ "CNAME": "blog-aayushsiwa.pages.dev"
+ }
+}
diff --git a/domains/blog.alora.json b/domains/blog.alora.json
index 0b6dcbb11..90785db87 100644
--- a/domains/blog.alora.json
+++ b/domains/blog.alora.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "aloramiaa",
- "email": "xaloramia@gmail.com",
- "discord": "1236292707371057216"
- },
- "record": {
- "CNAME": "project-graphql-blog-sable.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "aloramiaa",
+ "email": "xaloramia@gmail.com",
+ "discord": "1236292707371057216"
+ },
+ "record": {
+ "CNAME": "project-graphql-blog-sable.vercel.app"
+ }
+}
diff --git a/domains/blog.areen-c.json b/domains/blog.areen-c.json
index c92225c79..558f42f8b 100644
--- a/domains/blog.areen-c.json
+++ b/domains/blog.areen-c.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "areen-c",
- "email": "areenelhaq@gmail.com"
- },
- "record": {
- "CNAME": "blog-areen.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "areen-c",
+ "email": "areenelhaq@gmail.com"
+ },
+ "record": {
+ "CNAME": "blog-areen.pages.dev"
+ }
+}
diff --git a/domains/blog.areen.json b/domains/blog.areen.json
index 9bf067515..8241cfe7b 100644
--- a/domains/blog.areen.json
+++ b/domains/blog.areen.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "areen-c",
- "email": "areenelhaq@gmail.com"
- },
- "record": {
- "CNAME": "areencx.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "areen-c",
+ "email": "areenelhaq@gmail.com"
+ },
+ "record": {
+ "CNAME": "areencx.pages.dev"
+ }
+}
diff --git a/domains/blog.catzboy.json b/domains/blog.catzboy.json
index 20f7e52b1..e11095ae3 100644
--- a/domains/blog.catzboy.json
+++ b/domains/blog.catzboy.json
@@ -1,11 +1,11 @@
{
- "description": "Catzboy's Blog",
- "repo": "https://github.com/Maruful007/Maruful007.github.io",
- "owner": {
- "username": "Maruful007",
- "email": "marufulislamsami2007@gmail.com"
- },
- "record": {
- "CNAME": "maruful007.github.io"
- }
-}
\ No newline at end of file
+ "description": "Catzboy's Blog",
+ "repo": "https://github.com/Maruful007/Maruful007.github.io",
+ "owner": {
+ "username": "Maruful007",
+ "email": "marufulislamsami2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "maruful007.github.io"
+ }
+}
diff --git a/domains/blog.chuyentinorz.json b/domains/blog.chuyentinorz.json
index 517ea2562..1257a8492 100644
--- a/domains/blog.chuyentinorz.json
+++ b/domains/blog.chuyentinorz.json
@@ -1,14 +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"
- ]
- }
-}
\ No newline at end of file
+ "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.crazo7924.json b/domains/blog.crazo7924.json
index 671a886ae..7d37995c6 100644
--- a/domains/blog.crazo7924.json
+++ b/domains/blog.crazo7924.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "crazo7924",
- "discord": "466605393309859840",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WnVEogXILKQlj-jvgWzBYV4EQBNJpb4o31g6aGeiNfpBUziSFOH_A_RYdluWZEm4SN6rwsgh4Ca6BD1FLP-pGkalakxUu22u6oFGPHfclABR0FzYUTwT2ePhQbcCQE0kj_scrL_lUCrWTXfqqu9daPVkKsZSGFR_XtT5stUtwcA_eNuRiRgCB5oteS1Clo3gfWrCIB-XfwUONGfHnm8w_XwiatvVxAV4SMGwh2nNH9lYjLT23rGmO2hd9jptO8GHbNJJWSsndM5D_BIhf1bnDtmuIN3DWciaR9ijmZI5g-CfbkGbph0zhOi4N88eBsdL4Bku5Cu4GnR0_zkjK27cfw.lf05n5TGJ5ekai6Qi7gbdQ.FwSEtzo_z9amY4qpwKLzLct9mtbnkKUEWFSrKlnqv01uRRu1lKQV9_YdU8eZ3UtY0H4wL6iZSrECZPcFxGqGaUl6DIQLc1-jgODQHQNyLzp0WTlMbKcWXCRS80eITxXR.ZaVvxYEKWd03U5gQXIofEw"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "crazo7924",
+ "discord": "466605393309859840",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WnVEogXILKQlj-jvgWzBYV4EQBNJpb4o31g6aGeiNfpBUziSFOH_A_RYdluWZEm4SN6rwsgh4Ca6BD1FLP-pGkalakxUu22u6oFGPHfclABR0FzYUTwT2ePhQbcCQE0kj_scrL_lUCrWTXfqqu9daPVkKsZSGFR_XtT5stUtwcA_eNuRiRgCB5oteS1Clo3gfWrCIB-XfwUONGfHnm8w_XwiatvVxAV4SMGwh2nNH9lYjLT23rGmO2hd9jptO8GHbNJJWSsndM5D_BIhf1bnDtmuIN3DWciaR9ijmZI5g-CfbkGbph0zhOi4N88eBsdL4Bku5Cu4GnR0_zkjK27cfw.lf05n5TGJ5ekai6Qi7gbdQ.FwSEtzo_z9amY4qpwKLzLct9mtbnkKUEWFSrKlnqv01uRRu1lKQV9_YdU8eZ3UtY0H4wL6iZSrECZPcFxGqGaUl6DIQLc1-jgODQHQNyLzp0WTlMbKcWXCRS80eITxXR.ZaVvxYEKWd03U5gQXIofEw"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/blog.hafi.json b/domains/blog.hafi.json
index 6ab60d123..1a49c739f 100644
--- a/domains/blog.hafi.json
+++ b/domains/blog.hafi.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "HafiTheCat",
- "discord": "hafi_the_cat"
- },
- "description": "A personal Blog",
- "repo": "https://github.com/HafiTheCat/hafis_code_continuum",
- "record": {
- "CNAME": "hafis-code-continuum.netlify.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "HafiTheCat",
+ "discord": "hafi_the_cat"
+ },
+ "description": "A personal Blog",
+ "repo": "https://github.com/HafiTheCat/hafis_code_continuum",
+ "record": {
+ "CNAME": "hafis-code-continuum.netlify.app"
+ }
+}
diff --git a/domains/blog.joetroll.json b/domains/blog.joetroll.json
index b61e5bf7d..e4c3b635f 100644
--- a/domains/blog.joetroll.json
+++ b/domains/blog.joetroll.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "trolljoe",
- "email": "joetechtok@proton.me",
- "discord": "1054945019137630278"
- },
- "record": {
- "CNAME": "blogjoetroll.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "trolljoe",
+ "email": "joetechtok@proton.me",
+ "discord": "1054945019137630278"
+ },
+ "record": {
+ "CNAME": "blogjoetroll.pages.dev"
+ }
+}
diff --git a/domains/blog.jumanji.json b/domains/blog.jumanji.json
index 1d3e8ab84..b17686d6d 100644
--- a/domains/blog.jumanji.json
+++ b/domains/blog.jumanji.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "heyjumanji"
- },
- "record": {
- "CNAME": "jumanjiblogs.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "heyjumanji"
+ },
+ "record": {
+ "CNAME": "jumanjiblogs.vercel.app"
+ }
+}
diff --git a/domains/blog.narasima.json b/domains/blog.narasima.json
index c4f6beb56..a760dea33 100644
--- a/domains/blog.narasima.json
+++ b/domains/blog.narasima.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NarasimaPandiyan",
- "email": "cs42059@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "NarasimaPandiyan",
+ "email": "cs42059@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/blog.quincetart10.json b/domains/blog.quincetart10.json
index c957bca33..9b165be05 100644
--- a/domains/blog.quincetart10.json
+++ b/domains/blog.quincetart10.json
@@ -1,11 +1,11 @@
{
- "description": "Personal blog",
- "repo": "https://github.com/QuinceTart10/blog",
- "owner": {
- "username": "QuinceTart10",
- "discord": "862644161156218891"
- },
- "record": {
- "CNAME": "quincetart10.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal blog",
+ "repo": "https://github.com/QuinceTart10/blog",
+ "owner": {
+ "username": "QuinceTart10",
+ "discord": "862644161156218891"
+ },
+ "record": {
+ "CNAME": "quincetart10.github.io"
+ }
+}
diff --git a/domains/blog.ron.json b/domains/blog.ron.json
index ba6fba4b5..00d554fcb 100644
--- a/domains/blog.ron.json
+++ b/domains/blog.ron.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "itsrn",
- "email": "shalom@itsron.space"
- },
- "record": {
- "CNAME": "itsrn.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "itsrn",
+ "email": "shalom@itsron.space"
+ },
+ "record": {
+ "CNAME": "itsrn.github.io"
+ }
+}
diff --git a/domains/blog.shaunfurtado.json b/domains/blog.shaunfurtado.json
index 5e0ea3d80..debce4590 100644
--- a/domains/blog.shaunfurtado.json
+++ b/domains/blog.shaunfurtado.json
@@ -1,11 +1,11 @@
{
- "description": "Blog Website for Shaun Furtado",
- "repo": "https://github.com/Shaunfurtado/DevHavok",
- "owner": {
- "username": "Shaunfurtado",
- "email": "shaunf1801@gmail.com"
- },
- "record": {
- "CNAME": "shaunfurtado.github.io"
- }
-}
\ No newline at end of file
+ "description": "Blog Website for Shaun Furtado",
+ "repo": "https://github.com/Shaunfurtado/DevHavok",
+ "owner": {
+ "username": "Shaunfurtado",
+ "email": "shaunf1801@gmail.com"
+ },
+ "record": {
+ "CNAME": "shaunfurtado.github.io"
+ }
+}
diff --git a/domains/blog.shoyeb.json b/domains/blog.shoyeb.json
index 317a682ce..640f68ad0 100644
--- a/domains/blog.shoyeb.json
+++ b/domains/blog.shoyeb.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "mrtemp70",
- "email": "mrtemp70@gmail.com"
- },
- "record": {
- "CNAME": "mrtemp70.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "mrtemp70",
+ "email": "mrtemp70@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrtemp70.github.io"
+ }
+}
diff --git a/domains/blog.vornexx.json b/domains/blog.vornexx.json
index 1aa36a0d6..33ffb912c 100644
--- a/domains/blog.vornexx.json
+++ b/domains/blog.vornexx.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "vornexx",
- "email": "ajay.ramnath8812@gmail.com"
- },
- "record": {
- "CNAME": "blogvornexx.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "vornexx",
+ "email": "ajay.ramnath8812@gmail.com"
+ },
+ "record": {
+ "CNAME": "blogvornexx.pages.dev"
+ }
+}
diff --git a/domains/blogs.aakanksha.json b/domains/blogs.aakanksha.json
index a7cf476c3..abeac535f 100644
--- a/domains/blogs.aakanksha.json
+++ b/domains/blogs.aakanksha.json
@@ -1,11 +1,11 @@
{
- "description": "Aakanksha's Blog",
- "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io",
- "owner": {
- "username": "aakankshabhende",
- "email": "aakanksha0407@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
\ No newline at end of file
+ "description": "Aakanksha's Blog",
+ "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io",
+ "owner": {
+ "username": "aakankshabhende",
+ "email": "aakanksha0407@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/blogs.adityabh.json b/domains/blogs.adityabh.json
index c718ed0dc..9131029a5 100644
--- a/domains/blogs.adityabh.json
+++ b/domains/blogs.adityabh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "AdityaBhattacharya1",
- "email": "ec6isyf0@anonaddy.me"
- },
- "record": {
- "CNAME": "blogs-b2q.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "AdityaBhattacharya1",
+ "email": "ec6isyf0@anonaddy.me"
+ },
+ "record": {
+ "CNAME": "blogs-b2q.pages.dev"
+ }
+}
diff --git a/domains/blogs.akk1to.json b/domains/blogs.akk1to.json
new file mode 100644
index 000000000..f83bf1fca
--- /dev/null
+++ b/domains/blogs.akk1to.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "blogs-chi-pearl.vercel.app"
+ }
+}
diff --git a/domains/blogs.shaunak.json b/domains/blogs.shaunak.json
index 6499b3c06..1af1bd18c 100644
--- a/domains/blogs.shaunak.json
+++ b/domains/blogs.shaunak.json
@@ -1,11 +1,11 @@
{
- "description": "Shaunak's Blog",
- "repo": "https://github.com/Shaunak-Pandya/Shaunak-Pandya.github.io",
- "owner": {
- "username": "Shaunak-Pandya",
- "email": "shaunak.n.pandya@gmail.com"
- },
- "record": {
- "CNAME": "hashnode.network"
- }
-}
\ No newline at end of file
+ "description": "Shaunak's Blog",
+ "repo": "https://github.com/Shaunak-Pandya/Shaunak-Pandya.github.io",
+ "owner": {
+ "username": "Shaunak-Pandya",
+ "email": "shaunak.n.pandya@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/bloomy.json b/domains/bloomy.json
index c06956028..0e7f06322 100644
--- a/domains/bloomy.json
+++ b/domains/bloomy.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BloomyInDev",
- "email": "bastien.luben@gmail.com"
- },
- "record": {
- "URL": "https://www.bloomyindev.me"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BloomyInDev",
+ "email": "bastien.luben@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.bloomyindev.me"
+ }
+}
diff --git a/domains/blox.json b/domains/blox.json
index 15d8d707a..7bfad7a0e 100644
--- a/domains/blox.json
+++ b/domains/blox.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "soudblox",
- "email": "nick8x@gmail.com"
- },
- "record": {
- "CNAME": "soudblox.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "soudblox",
+ "email": "nick8x@gmail.com"
+ },
+ "record": {
+ "CNAME": "soudblox.github.io"
+ }
+}
diff --git a/domains/blue.json b/domains/blue.json
index bcfa4ac07..ff330ce92 100644
--- a/domains/blue.json
+++ b/domains/blue.json
@@ -1,12 +1,12 @@
{
- "description": "My personal site, for introducing myself.",
- "repo": "https://github.com/b1ue-dev/b1ue-dev.github.io",
- "owner": {
- "username": "B1ue-Dev",
- "email": "b1uedev@outlook.com",
- "twitter": "b1uedev"
- },
- "record": {
- "CNAME": "b1ue-dev.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal site, for introducing myself.",
+ "repo": "https://github.com/b1ue-dev/b1ue-dev.github.io",
+ "owner": {
+ "username": "B1ue-Dev",
+ "email": "b1uedev@outlook.com",
+ "twitter": "b1uedev"
+ },
+ "record": {
+ "CNAME": "b1ue-dev.github.io"
+ }
+}
diff --git a/domains/blueberry.json b/domains/blueberry.json
index 11ec4e955..0fc837d1d 100644
--- a/domains/blueberry.json
+++ b/domains/blueberry.json
@@ -1,11 +1,11 @@
{
- "description": "My personal website",
- "repo": "https://github.com/NgVGB/NgVGB.github.io",
- "owner": {
- "username": "NgVGB",
- "email": "dangnguyen101191@gmail.com"
- },
- "record": {
- "CNAME": "ngvgb.github.io"
- }
-}
\ No newline at end of file
+ "description": "My personal website",
+ "repo": "https://github.com/NgVGB/NgVGB.github.io",
+ "owner": {
+ "username": "NgVGB",
+ "email": "dangnguyen101191@gmail.com"
+ },
+ "record": {
+ "CNAME": "ngvgb.github.io"
+ }
+}
diff --git a/domains/bluemoon.json b/domains/bluemoon.json
index d2791aca6..77b8d8ac3 100644
--- a/domains/bluemoon.json
+++ b/domains/bluemoon.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "amitbartfeld",
- "email": "amitbartfeld@gmail.com"
- },
- "record": {
- "CNAME": "amithost.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "amitbartfeld",
+ "email": "amitbartfeld@gmail.com"
+ },
+ "record": {
+ "CNAME": "amithost.com"
+ }
+}
diff --git a/domains/blueysh.json b/domains/blueysh.json
index 9db0c60ee..a01bdd3d1 100644
--- a/domains/blueysh.json
+++ b/domains/blueysh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "blueysh",
- "email": "jan.santi@icloud.com"
- },
- "record": {
- "URL": "https://blueysh.me"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "blueysh",
+ "email": "jan.santi@icloud.com"
+ },
+ "record": {
+ "URL": "https://blueysh.me"
+ }
+}
diff --git a/domains/blurnope.json b/domains/blurnope.json
index ada9525e4..4292de666 100644
--- a/domains/blurnope.json
+++ b/domains/blurnope.json
@@ -1,11 +1,11 @@
{
- "repo": "https://github.com/blurnope/blurnope.github.io",
- "owner": {
- "username": "blurnope",
- "email": "cynosuregone@gmail.com",
- "discord": "blurnope.#2655"
- },
- "record": {
- "CNAME": "blurnope.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/blurnope/blurnope.github.io",
+ "owner": {
+ "username": "blurnope",
+ "email": "cynosuregone@gmail.com",
+ "discord": "blurnope.#2655"
+ },
+ "record": {
+ "CNAME": "blurnope.github.io"
+ }
+}
diff --git a/domains/bm.json b/domains/bm.json
new file mode 100644
index 000000000..b5b04a005
--- /dev/null
+++ b/domains/bm.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "BM87006",
+ "email": "bm.is.a.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "v0-blue-portfolio-brown.vercel.app"
+ },
+ "description": "BM Portfolio"
+}
diff --git a/domains/bmbs.json b/domains/bmbs.json
index d907f2a4d..935cf410a 100644
--- a/domains/bmbs.json
+++ b/domains/bmbs.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BaamBuus",
- "email": "bitternoah864@gmail.com"
- },
- "record": {
- "CNAME": "baambuus.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "BaamBuus",
+ "email": "bitternoah864@gmail.com"
+ },
+ "record": {
+ "CNAME": "baambuus.github.io"
+ }
+}
diff --git a/domains/bmhien.json b/domains/bmhien.json
index 297d8a527..287c931e2 100644
--- a/domains/bmhien.json
+++ b/domains/bmhien.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "bm-hien",
- "email": "buiminhhien001@gmail.com"
- },
- "record": {
- "CNAME": "bm-hien.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "bm-hien",
+ "email": "buiminhhien001@gmail.com"
+ },
+ "record": {
+ "CNAME": "bm-hien.github.io"
+ }
+}
diff --git a/domains/bmrdsc.json b/domains/bmrdsc.json
index 309aa26d5..2e3bc7a71 100644
--- a/domains/bmrdsc.json
+++ b/domains/bmrdsc.json
@@ -1,11 +1,11 @@
{
- "description": "for discord website",
- "repo": "https://srpvt.github.io/card/",
- "owner": {
- "username": "SRPVT",
- "email": "gta69editz@gmail.com"
- },
- "record": {
- "CNAME": "srpvt.github.io"
- }
-}
\ No newline at end of file
+ "description": "for discord website",
+ "repo": "https://srpvt.github.io/card/",
+ "owner": {
+ "username": "SRPVT",
+ "email": "gta69editz@gmail.com"
+ },
+ "record": {
+ "CNAME": "srpvt.github.io"
+ }
+}
diff --git a/domains/bn3di.json b/domains/bn3di.json
index 4c7fcc8cc..4489542fb 100644
--- a/domains/bn3di.json
+++ b/domains/bn3di.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "MohamadOday",
- "email": "adada133321t@gmail.com"
- },
- "record": {
- "CNAME": "mohamadoday.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "MohamadOday",
+ "email": "adada133321t@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohamadoday.github.io"
+ }
+}
diff --git a/domains/bnfone.json b/domains/bnfone.json
index 6394d2bce..ae575ba75 100644
--- a/domains/bnfone.json
+++ b/domains/bnfone.json
@@ -1,14 +1,11 @@
{
- "description": "Personal Website for bnfone's Homelab (sadly with dynamic IPv4, which is why I need Cloudflare Nameservers).",
- "repo": "https://github.com/6nf0n3/is-a-dev_register",
- "owner": {
- "username": "bnfone",
- "email": "is-a-dev-registration.zbden@simplelogin.com"
- },
- "record": {
- "NS": [
- "desiree.ns.cloudflare.com",
- "mcgrory.ns.cloudflare.com"
- ]
- }
-}
\ No newline at end of file
+ "description": "Personal Website for bnfone's Homelab (sadly with dynamic IPv4, which is why I need Cloudflare Nameservers).",
+ "repo": "https://github.com/6nf0n3/is-a-dev_register",
+ "owner": {
+ "username": "bnfone",
+ "email": "is-a-dev-registration.zbden@simplelogin.com"
+ },
+ "record": {
+ "NS": ["desiree.ns.cloudflare.com", "mcgrory.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/bnyro.json b/domains/bnyro.json
index 064035814..685ba0ca3 100644
--- a/domains/bnyro.json
+++ b/domains/bnyro.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/Bnyro/bnyro.github.io",
- "owner": {
- "username": "Bnyro",
- "email": "bnyro@tutanota.com"
- },
- "record": {
- "CNAME": "bnyro.github.io"
- }
-}
\ No newline at end of file
+ "repo": "https://github.com/Bnyro/bnyro.github.io",
+ "owner": {
+ "username": "Bnyro",
+ "email": "bnyro@tutanota.com"
+ },
+ "record": {
+ "CNAME": "bnyro.github.io"
+ }
+}
diff --git a/domains/bob.json b/domains/bob.json
index bee02e625..286eb4003 100644
--- a/domains/bob.json
+++ b/domains/bob.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website",
- "repo": "https://github.com/Rubinskiy/rubinskiy.github.io",
- "owner": {
- "username": "Rubinskiy",
- "discord": "rubinskiy#5258"
- },
- "record": {
- "CNAME": "rubinskiy.github.io"
- }
-}
\ No newline at end of file
+ "description": "Personal website",
+ "repo": "https://github.com/Rubinskiy/rubinskiy.github.io",
+ "owner": {
+ "username": "Rubinskiy",
+ "discord": "rubinskiy#5258"
+ },
+ "record": {
+ "CNAME": "rubinskiy.github.io"
+ }
+}
diff --git a/domains/bob16077.json b/domains/bob16077.json
index 75987d170..a8eedd94d 100644
--- a/domains/bob16077.json
+++ b/domains/bob16077.json
@@ -1,11 +1,11 @@
{
- "description": "A personal page that also gives information on my projects",
- "repo": "https://github.com/Bob16077/bob16077.github.io",
- "owner": {
- "username": "bob16077",
- "discord": "bob16077777"
- },
- "record": {
- "CNAME": "bob16077.github.io"
- }
-}
\ No newline at end of file
+ "description": "A personal page that also gives information on my projects",
+ "repo": "https://github.com/Bob16077/bob16077.github.io",
+ "owner": {
+ "username": "bob16077",
+ "discord": "bob16077777"
+ },
+ "record": {
+ "CNAME": "bob16077.github.io"
+ }
+}
diff --git a/domains/boba.json b/domains/boba.json
index fd1d44275..d6226cdb3 100644
--- a/domains/boba.json
+++ b/domains/boba.json
@@ -1,11 +1,11 @@
{
- "description": "A personal blog.",
- "repo": "https://github.com/tarob0ba/tarob0ba.github.io",
- "owner": {
- "username": "tarob0ba",
- "email": "beckett@chatter-social.com"
- },
- "record": {
- "CNAME": "tarob0ba.github.io"
- }
-}
\ No newline at end of file
+ "description": "A personal blog.",
+ "repo": "https://github.com/tarob0ba/tarob0ba.github.io",
+ "owner": {
+ "username": "tarob0ba",
+ "email": "beckett@chatter-social.com"
+ },
+ "record": {
+ "CNAME": "tarob0ba.github.io"
+ }
+}
diff --git a/domains/bobert.json b/domains/bobert.json
index fba1fb3e0..0c598842d 100644
--- a/domains/bobert.json
+++ b/domains/bobert.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "real-kwellercat",
- "email": "lucas.rausch.732@k12.friscoisd.org"
- },
- "record": {
- "CNAME": "issuelucas.pages.dev"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "real-kwellercat",
+ "email": "lucas.rausch.732@k12.friscoisd.org"
+ },
+ "record": {
+ "CNAME": "issuelucas.pages.dev"
+ }
+}
diff --git a/domains/bolt.json b/domains/bolt.json
index c7557b1c6..5c0693a25 100644
--- a/domains/bolt.json
+++ b/domains/bolt.json
@@ -1,11 +1,11 @@
{
- "description": "Bolt's portfolio website",
- "repo": "https://github.com/Adityeahhh/portfolio",
- "owner": {
- "username": "Adityeahhh",
- "email": "adty200807@gmail.com"
- },
- "record": {
- "CNAME": "adityeahhh.github.io"
- }
-}
\ No newline at end of file
+ "description": "Bolt's portfolio website",
+ "repo": "https://github.com/Adityeahhh/portfolio",
+ "owner": {
+ "username": "Adityeahhh",
+ "email": "adty200807@gmail.com"
+ },
+ "record": {
+ "CNAME": "adityeahhh.github.io"
+ }
+}
diff --git a/domains/bombacat.json b/domains/bombacat.json
index 4b11addbc..fedf2faf3 100644
--- a/domains/bombacat.json
+++ b/domains/bombacat.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "bomba.cat",
- "email": "bledion.morina@hotmail.com"
- },
- "record": {
- "CNAME": "bomba-cat.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "bomba.cat",
+ "email": "bledion.morina@hotmail.com"
+ },
+ "record": {
+ "CNAME": "bomba-cat.github.io"
+ }
+}
diff --git a/domains/bonusbubble.json b/domains/bonusbubble.json
new file mode 100644
index 000000000..666ca8480
--- /dev/null
+++ b/domains/bonusbubble.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bonusbubble",
+ "email": "bonusbubble@proton.me"
+ },
+ "record": {
+ "CNAME": "bonusbubble.github.io"
+ }
+}
diff --git a/domains/boo.json b/domains/boo.json
index 1fd86a563..a73b893a4 100644
--- a/domains/boo.json
+++ b/domains/boo.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "Boopup",
- "discord": "972502840247484527",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XpL4EHQDM2NhhOcMnxdbK1MOEgJqrE4REv8yt5tx7uiBoPWpOkHaiyA6q1qpPpan5pdxz3QT03Okj3I-sgW5Jqo_J65lLkd_NhTIcC-BpBiqic8LrSSPXHCdPG6iB5vdWOOiAnyesygsUF5460q2X-lxuaGQ7c5vqNJxC3XVv2aDal8cYXHY5Fn1SaXNNYpdkjWDByszsy1negAdRCdZqUDnEbiyAVp5jcETjC7Rs7qJSYI4noYuatL6HYZs-17WTbhVKNA9dfmGVcPzrNB4jl_jtgXHP0Bf_xg5OSiQ4MiSGcCObMBirxSlhid-56HuzyJUDaZgiuSSPq-VdinNNw.QlY7KCeNk9GIOA3tdSkyrw.2iQLx2zPSnj0DRMey79pgn1wV1G08vhZPKpHEb4YGTcEa8bOT7lQ3hiiwBj6kbxMM54L2xz4kOBcX5fjI3o4uhay96GtE76G4cuPVBBGx8g.v44-C_GmlY0plYvqCasd_w"
- },
- "record": {
- "A": [
- "23.132.28.16"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "Boopup",
+ "discord": "972502840247484527",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XpL4EHQDM2NhhOcMnxdbK1MOEgJqrE4REv8yt5tx7uiBoPWpOkHaiyA6q1qpPpan5pdxz3QT03Okj3I-sgW5Jqo_J65lLkd_NhTIcC-BpBiqic8LrSSPXHCdPG6iB5vdWOOiAnyesygsUF5460q2X-lxuaGQ7c5vqNJxC3XVv2aDal8cYXHY5Fn1SaXNNYpdkjWDByszsy1negAdRCdZqUDnEbiyAVp5jcETjC7Rs7qJSYI4noYuatL6HYZs-17WTbhVKNA9dfmGVcPzrNB4jl_jtgXHP0Bf_xg5OSiQ4MiSGcCObMBirxSlhid-56HuzyJUDaZgiuSSPq-VdinNNw.QlY7KCeNk9GIOA3tdSkyrw.2iQLx2zPSnj0DRMey79pgn1wV1G08vhZPKpHEb4YGTcEa8bOT7lQ3hiiwBj6kbxMM54L2xz4kOBcX5fjI3o4uhay96GtE76G4cuPVBBGx8g.v44-C_GmlY0plYvqCasd_w"
+ },
+ "record": {
+ "A": ["46.202.82.187"]
+ }
+}
diff --git a/domains/books.json b/domains/books.json
index 38789638a..76bb078cd 100644
--- a/domains/books.json
+++ b/domains/books.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "showkinglu",
- "discord": "1284363590601805845",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JJz6sWHFHJXcBrAhqxCZAA2V4SzMpQ-D6WuX15qcPHombBZ2d1jsT7Tb3j4OX0nrR8XTKdsKlxXdeTZ1yY7YLXw9T_TJ28Zgbuo0M5KyU9Ejqc6IPlm4FvJ6DcNKWyq40cq9BdNdcFhzUuRv_Me6g4aLeFjhjR-LJLOLmHMs4GPDJ2-V-MAekWaVHl-Y8VAdwpFuQ2Ve7DV7cBrdbHd4nX8wVGk-Eq65AR_VyUFo0GeiPKjiIejKCnIwopOQW_1KxPhtE1LTov8uNloaN7ZGv6MAdCdFXOkKjHFEmKuPtPf6YgVsAMDjdaULPlvhRemtFqqmzbGEqiQiexzEf2wWfA.RkvKnVVxmdCpuToki3hgvw.J4tL5aFuCX4oNIIuur76DKAYw1uiWWGfIhV7Bwxjl5EBZUqnwQ42zMOLLZqpvaiICk-siW4pt5MSgdAzGeP_8bEIuMS0kJLkqpXdf-NrSU8.a3kNHAcGn9TjQ4oE11leqw"
- },
- "record": {
- "A": [
- "172.104.67.159"
- ]
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "showkinglu",
+ "discord": "1284363590601805845",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JJz6sWHFHJXcBrAhqxCZAA2V4SzMpQ-D6WuX15qcPHombBZ2d1jsT7Tb3j4OX0nrR8XTKdsKlxXdeTZ1yY7YLXw9T_TJ28Zgbuo0M5KyU9Ejqc6IPlm4FvJ6DcNKWyq40cq9BdNdcFhzUuRv_Me6g4aLeFjhjR-LJLOLmHMs4GPDJ2-V-MAekWaVHl-Y8VAdwpFuQ2Ve7DV7cBrdbHd4nX8wVGk-Eq65AR_VyUFo0GeiPKjiIejKCnIwopOQW_1KxPhtE1LTov8uNloaN7ZGv6MAdCdFXOkKjHFEmKuPtPf6YgVsAMDjdaULPlvhRemtFqqmzbGEqiQiexzEf2wWfA.RkvKnVVxmdCpuToki3hgvw.J4tL5aFuCX4oNIIuur76DKAYw1uiWWGfIhV7Bwxjl5EBZUqnwQ42zMOLLZqpvaiICk-siW4pt5MSgdAzGeP_8bEIuMS0kJLkqpXdf-NrSU8.a3kNHAcGn9TjQ4oE11leqw"
+ },
+ "record": {
+ "A": ["172.104.67.159"]
+ }
+}
diff --git a/domains/boon.json b/domains/boon.json
index 73bc0acda..7dca79671 100644
--- a/domains/boon.json
+++ b/domains/boon.json
@@ -1,10 +1,10 @@
{
- "description": "Portfolio site for me.",
- "owner": {
- "username": "uwuCaitlin",
- "discord": "boon#6660"
- },
- "record": {
- "URL": "https://boons.pics"
- }
-}
\ No newline at end of file
+ "description": "Portfolio site for me.",
+ "owner": {
+ "username": "uwuCaitlin",
+ "discord": "boon#6660"
+ },
+ "record": {
+ "URL": "https://boons.pics"
+ }
+}
diff --git a/domains/borboss.json b/domains/borboss.json
index 3b22c869e..47bfd26e5 100644
--- a/domains/borboss.json
+++ b/domains/borboss.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "borboss",
- "email": "bobbarosshasnoemail@gmail.com"
- },
- "record": {
- "CNAME": "borboss.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "borboss",
+ "email": "bobbarosshasnoemail@gmail.com"
+ },
+ "record": {
+ "CNAME": "borboss.github.io"
+ }
+}
diff --git a/domains/boredcodebyk.json b/domains/boredcodebyk.json
deleted file mode 100644
index 803fb1281..000000000
--- a/domains/boredcodebyk.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Portfolio/Personal landing page",
- "repo": "https://github.com/boredcodebyk/boredcodebyk.github.io",
- "owner": {
- "username": "boredcodebyk",
- "email": "khromabyk+dev@gmail.com"
- },
- "record": {
- "CNAME": "boredcodebyk.github.io"
- }
-}
\ No newline at end of file
diff --git a/domains/boris1993.json b/domains/boris1993.json
index 84b130474..c79b3d1c3 100644
--- a/domains/boris1993.json
+++ b/domains/boris1993.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "boris1993",
- "email": "boris1993@live.cn"
- },
- "description": "boris1993.is-a.dev",
- "record": {
- "URL": "https://www.boris1993.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "boris1993",
+ "email": "boris1993@live.cn"
+ },
+ "description": "boris1993.is-a.dev",
+ "record": {
+ "URL": "https://www.boris1993.com"
+ }
+}
diff --git a/domains/borismoreno.json b/domains/borismoreno.json
index 5245ccf27..c17a14ff6 100644
--- a/domains/borismoreno.json
+++ b/domains/borismoreno.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "borismoreno",
- "email": "boris_marco_moreno@hotmail.com"
- },
- "record": {
- "CNAME": "borismoreno.com"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "borismoreno",
+ "email": "boris_marco_moreno@hotmail.com"
+ },
+ "record": {
+ "CNAME": "borismoreno.com"
+ }
+}
diff --git a/domains/bot.json b/domains/bot.json
deleted file mode 100644
index 19228f791..000000000
--- a/domains/bot.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "owner": {
- "username": "tanmoythebot"
- },
- "record": {
- "CNAME": "tanmoythebot.github.io"
- }
-}
diff --git a/domains/botlab.json b/domains/botlab.json
index e2481ebe3..556257bc2 100644
--- a/domains/botlab.json
+++ b/domains/botlab.json
@@ -2,7 +2,7 @@
"description": "DBD(NO CODE)",
"owner": {
"username": "Priyansxu",
- "email": "cloudypriyanshu@gmail.com"
+ "email": "priyansxu@yahoo.com"
},
"record": {
"A": ["75.2.60.5"]
diff --git a/domains/boudjo.json b/domains/boudjo.json
index f7f82317a..0f8cab311 100644
--- a/domains/boudjo.json
+++ b/domains/boudjo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "boudjoo",
- "email": "abdouboudjo1@gmail.com"
- },
- "record": {
- "CNAME": "boudjoo.github.io"
- }
+ "owner": {
+ "username": "boudjoo",
+ "email": "abdouboudjo1@gmail.com"
+ },
+ "record": {
+ "CNAME": "boudjoo.github.io"
+ }
}
diff --git a/domains/brasil.json b/domains/brasil.json
index 0a543a831..5da4ddc4e 100644
--- a/domains/brasil.json
+++ b/domains/brasil.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NatanKonig",
- "email": "natan.camargo8@gmail.com"
- },
- "record": {
- "A": ["129.148.24.229"]
- }
+ "owner": {
+ "username": "NatanKonig",
+ "email": "natan.camargo8@gmail.com"
+ },
+ "record": {
+ "A": ["129.148.24.229"]
+ }
}
diff --git a/domains/breakertws.json b/domains/breakertws.json
new file mode 100644
index 000000000..f457a5ded
--- /dev/null
+++ b/domains/breakertws.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio by Breaker TWS",
+ "repo": "https://github.com/BreakerTWS/breakertws.github.io",
+ "owner": {
+ "username": "BreakerTWS",
+ "email": "breakingtws@gmail.com"
+ },
+ "record": {
+ "CNAME": "breakertws.github.io"
+ }
+}
diff --git a/domains/brett.json b/domains/brett.json
new file mode 100644
index 000000000..2219c263b
--- /dev/null
+++ b/domains/brett.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "brettdavies",
+ "linkedin": "https://linkedin.com/in/brettdavies/"
+ },
+ "record": {
+ "URL": "https://github.com/brettdavies"
+ }
+}
diff --git a/domains/brew.json b/domains/brew.json
new file mode 100644
index 000000000..12afef688
--- /dev/null
+++ b/domains/brew.json
@@ -0,0 +1,11 @@
+{
+ "description": "brews writeups",
+ "repo": "https://github.com/0x62797465/0x62797465.github.io",
+ "owner": {
+ "username": "0x62797465",
+ "email": "bytebrew@cocaine.ninja"
+ },
+ "record": {
+ "CNAME": "0x62797465.github.io"
+ }
+}
diff --git a/domains/brin.json b/domains/brin.json
index 2b4ccbf78..aabad46a5 100644
--- a/domains/brin.json
+++ b/domains/brin.json
@@ -1,11 +1,11 @@
{
"description": "Personal site",
- "repo": "https://github.com/xXTgamerXx/xXTgamerXx.github.io",
+ "repo": "https://github.com/brinterwastaken/brinterwastaken.github.io",
"owner": {
- "username": "xXTgamerXx",
+ "username": "brinterwastaken",
"email": "trin.n2848@gmail.com"
},
"record": {
- "CNAME": "xxtgamerxx.github.io"
+ "CNAME": "brinterwastaken.github.io"
}
}
diff --git a/domains/brint.json b/domains/brint.json
new file mode 100644
index 000000000..24fd52854
--- /dev/null
+++ b/domains/brint.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "brint97"
+ },
+ "record": {
+ "CNAME": "brint97.github.io"
+ }
+}
diff --git a/domains/brodes.json b/domains/brodes.json
new file mode 100644
index 000000000..40d562c38
--- /dev/null
+++ b/domains/brodes.json
@@ -0,0 +1,12 @@
+{
+ "description": "small Website of mine, may have done it wrong",
+ "repo": "https://github.com/Br0des/Website",
+ "owner": {
+ "username": "br0des",
+ "email": "brodyyeah@proton.me"
+ },
+ "record": {
+ "CNAME": "br0des.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/brody.json b/domains/brody.json
new file mode 100644
index 000000000..ef6e76764
--- /dev/null
+++ b/domains/brody.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lurkny",
+ "email": "brody@larson.dev"
+ },
+ "record": {
+ "CNAME": "larson.dev"
+ }
+}
diff --git a/domains/brokends.json b/domains/brokends.json
new file mode 100644
index 000000000..d3cf0501f
--- /dev/null
+++ b/domains/brokends.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dns24",
+ "email": "wahidns24@gmail.com"
+ },
+ "record": {
+ "CNAME": "dns24.github.io"
+ }
+}
diff --git a/domains/broodje56.json b/domains/broodje56.json
new file mode 100644
index 000000000..fcfc2c89c
--- /dev/null
+++ b/domains/broodje56.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal domain for website and email",
+ "repo": "https://github.com/Broodje565/broodje56",
+ "owner": {
+ "username": "Broodje565",
+ "email": "loic.vcamp@gmail.com"
+ },
+ "record": {
+ "CNAME": "broodje565.github.io"
+ }
+}
diff --git a/domains/bruno-eilliar.json b/domains/bruno-eilliar.json
new file mode 100644
index 000000000..fdb29948f
--- /dev/null
+++ b/domains/bruno-eilliar.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal blog to build my brand as developer.",
+ "repo": "https://github.com/Eilliar/eilliar.github.io",
+ "owner": {
+ "username": "Eilliar",
+ "email": "engbrunoeilliar@gmail.com"
+ },
+ "record": {
+ "CNAME": "eilliar.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/bryan14saenz.json b/domains/bryan14saenz.json
new file mode 100644
index 000000000..7d5956ba0
--- /dev/null
+++ b/domains/bryan14saenz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Bryan14Saenz",
+ "email": "14bryansaenz@gmail.com"
+ },
+ "record": {
+ "CNAME": "portafoliob14s.netlify.app"
+ }
+}
diff --git a/domains/bryanj.json b/domains/bryanj.json
new file mode 100644
index 000000000..f010dc11d
--- /dev/null
+++ b/domains/bryanj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bryanj0410",
+ "email": "bryanj0410@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-holy-fog-2069.fly.dev"
+ }
+}
diff --git a/domains/bryce.json b/domains/bryce.json
new file mode 100644
index 000000000..a7f5c056f
--- /dev/null
+++ b/domains/bryce.json
@@ -0,0 +1,11 @@
+{
+ "description": "website to describe me",
+ "repo": "https://github.com/GitHubFanTest/GitHubFanTest.github.io",
+ "owner": {
+ "username": "GitHubFanTest",
+ "email": "feelingbloxyburger24@gmail.com"
+ },
+ "record": {
+ "CNAME": "githubfantest.github.io"
+ }
+}
diff --git a/domains/btleffler.json b/domains/btleffler.json
new file mode 100644
index 000000000..39ed78116
--- /dev/null
+++ b/domains/btleffler.json
@@ -0,0 +1,11 @@
+{
+ "description": "btleffler.is-a.dev - Benjamin Leffler's Website",
+ "repo": "https://github.com/btleffler/btleffler.github.io",
+ "owner": {
+ "username": "btleffler",
+ "email": "btleffler@gmail.com"
+ },
+ "record": {
+ "CNAME": "btleffler.github.io"
+ }
+}
diff --git a/domains/buffer.json b/domains/buffer.json
index b33bea04c..14f0c5ee2 100644
--- a/domains/buffer.json
+++ b/domains/buffer.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "bufferwise",
- "email": "126371417+bufferwise@users.noreply.github.com",
"discord": "790846560229392444"
},
"record": {
diff --git a/domains/bumidenpasar.json b/domains/bumidenpasar.json
new file mode 100644
index 000000000..206faafaf
--- /dev/null
+++ b/domains/bumidenpasar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BumiDenpasar",
+ "instagram": "ibummmbumi"
+ },
+ "record": {
+ "CNAME": "portofolio-gray-nine.vercel.app"
+ }
+}
diff --git a/domains/bundler.skibidi.json b/domains/bundler.skibidi.json
index 2e21d7501..f730630b1 100644
--- a/domains/bundler.skibidi.json
+++ b/domains/bundler.skibidi.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "bananaking6",
- "email": "",
"discord": "skibidibagel"
},
"record": {
diff --git a/domains/burak.json b/domains/burak.json
new file mode 100644
index 000000000..b2c7a9dd4
--- /dev/null
+++ b/domains/burak.json
@@ -0,0 +1,14 @@
+{
+ "description": "Burak's Tech Insights: AI, Software, and More",
+ "repo": "https://github.com/burakince/burakince.github.io",
+ "owner": {
+ "username": "burakince",
+ "email": "me@burakince.com",
+ "linkedin": "https://www.linkedin.com/in/inceburak/",
+ "twitter": "burakinc",
+ "keybase": "burakince"
+ },
+ "record": {
+ "URL": "https://www.burakince.com"
+ }
+}
diff --git a/domains/burandby.json b/domains/burandby.json
index 9d661b37a..fecf83563 100644
--- a/domains/burandby.json
+++ b/domains/burandby.json
@@ -1,6 +1,5 @@
{
"description": "Pico-8 in-browser emulator.",
- "repo": "https://github.com/burandby",
"owner": {
"username": "burandby",
"email": "bur.and.by@gmail.com"
diff --git a/domains/c0ba1t.json b/domains/c0ba1t.json
new file mode 100644
index 000000000..25d25003d
--- /dev/null
+++ b/domains/c0ba1t.json
@@ -0,0 +1,12 @@
+{
+ "description": "hosting personal / portfolio website for myself!",
+ "repo": "https://github.com/0xC0ba1t/0xc0ba1t.github.io",
+ "owner": {
+ "username": "0xC0ba1t",
+ "email": "main0xc0ba1t@duck.com"
+ },
+ "record": {
+ "CNAME": "0xC0ba1t.github.io"
+ }
+}
+
diff --git a/domains/caelan.json b/domains/caelan.json
new file mode 100644
index 000000000..1184f5c73
--- /dev/null
+++ b/domains/caelan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CaeCur",
+ "email": "caelan.curry+isadev@gmail.com"
+ },
+ "record": {
+ "CNAME": "caelan-curry.vercel.app"
+ }
+}
diff --git a/domains/caenjones.json b/domains/caenjones.json
index 16ce509a3..c09e3518e 100644
--- a/domains/caenjones.json
+++ b/domains/caenjones.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/vcc3v/vcc3v.github.io",
"owner": {
"username": "vcc3v",
- "email": "cj@caenjones.com",
- "twitter": ""
+ "email": "cj@caenjones.com"
},
"record": {
"CNAME": "vcc3v.github.io"
diff --git a/domains/callumjt.json b/domains/callumjt.json
deleted file mode 100644
index d16cc03b6..000000000
--- a/domains/callumjt.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "callumjt",
- "email": "cjblack2009@icloud.com"
- },
- "record": {
- "CNAME": "callumjt.github.io"
- }
-}
diff --git a/domains/cally.json b/domains/cally.json
new file mode 100644
index 000000000..795487de4
--- /dev/null
+++ b/domains/cally.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cally-jt",
+ "email": "callumjt@proton.me"
+ },
+ "record": {
+ "CNAME": "cally-jt.github.io"
+ }
+}
diff --git a/domains/cam.json b/domains/cam.json
index 63912f8a7..5743b0afb 100644
--- a/domains/cam.json
+++ b/domains/cam.json
@@ -1,6 +1,5 @@
{
"description": "CAM Website",
- "repo": "https://github.com/aswinmahesh",
"owner": {
"username": "aswinmahesh",
"email": "aswinmahesh.com+dns@gmail.com"
diff --git a/domains/caodoc.json b/domains/caodoc.json
deleted file mode 100644
index 96bb8e6fc..000000000
--- a/domains/caodoc.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "caodoc",
- "email": "caodoc@proton.me"
- },
- "record": {
- "CNAME": "caodoc.github.io"
- }
-}
diff --git a/domains/carlos-miranda.json b/domains/carlos-miranda.json
index 7dee64bde..01059fdd4 100644
--- a/domains/carlos-miranda.json
+++ b/domains/carlos-miranda.json
@@ -1,11 +1,11 @@
{
- "description": "Use to portfolio",
- "repo": "https://github.com/chard33/portfolio.github.io",
- "owner": {
- "username": "chard33",
- "email": "jchar33@hotmail.com"
- },
- "record": {
- "CNAME": "chard33.github.io"
- }
+ "description": "Use to portfolio",
+ "repo": "https://github.com/chard33/portfolio.github.io",
+ "owner": {
+ "username": "chard33",
+ "email": "jchar33@hotmail.com"
+ },
+ "record": {
+ "CNAME": "chard33.github.io"
+ }
}
diff --git a/domains/carlostirado.json b/domains/carlostirado.json
new file mode 100644
index 000000000..67bc47f9c
--- /dev/null
+++ b/domains/carlostirado.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "carlostirado23",
+ "email": "mariotiradotovar@outlook.com"
+ },
+ "record": {
+ "CNAME": "carlostirado.vercel.app"
+ }
+}
diff --git a/domains/cartar.json b/domains/cartar.json
index f52ab276f..309b4eee0 100644
--- a/domains/cartar.json
+++ b/domains/cartar.json
@@ -1,6 +1,5 @@
{
"description": "Main domain for file server.",
- "repo": "https://github.com/realCartar",
"owner": {
"username": "realCartar",
"twitter": "cartar0058"
diff --git a/domains/carterrpham23.json b/domains/carterrpham23.json
index d5809bfb2..df8a65ba9 100644
--- a/domains/carterrpham23.json
+++ b/domains/carterrpham23.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "sonpt-afk",
- "email": "sonbappe89@gmail.com"
- },
- "record": {
- "CNAME": "sonpts-landingfolio.vercel.app"
- }
+ "owner": {
+ "username": "sonpt-afk",
+ "email": "sonbappe89@gmail.com"
+ },
+ "record": {
+ "CNAME": "sonpts-landingfolio.vercel.app"
}
-
\ No newline at end of file
+}
diff --git a/domains/cas.json b/domains/cas.json
new file mode 100644
index 000000000..4a9b32c34
--- /dev/null
+++ b/domains/cas.json
@@ -0,0 +1,11 @@
+{
+ "description": "lil bio",
+ "repo": "https://github.com/caswantsanap/bio",
+ "owner": {
+ "username": "caswantsanap",
+ "email": "caswantsanap@gmail.com"
+ },
+ "record": {
+ "CNAME": "caswantsanap.github.io"
+ }
+}
diff --git a/domains/catalinaarciniegassaenz.json b/domains/catalinaarciniegassaenz.json
new file mode 100644
index 000000000..2e5dab28c
--- /dev/null
+++ b/domains/catalinaarciniegassaenz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "cascodenotch",
+ "email": "catalinaarciniegassaenz@gmail.com"
+ },
+ "record": {
+ "CNAME": "cascodenotch.github.io"
+ },
+ "proxied": false
+}
diff --git a/domains/cc4dev.json b/domains/cc4dev.json
new file mode 100644
index 000000000..5772edf20
--- /dev/null
+++ b/domains/cc4dev.json
@@ -0,0 +1,11 @@
+{
+ "owner":
+ {
+ "username": "cc4dev",
+ "email": "cc4dev@proton.me"
+ },
+ "record":
+ {
+ "CNAME": "cc4dev.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/cd.json b/domains/cd.json
index f6c30f430..b5f2c2cf6 100644
--- a/domains/cd.json
+++ b/domains/cd.json
@@ -1,5 +1,5 @@
{
- "description": "Personal website of Yaksh Bariya",
+ "description": "Redirect to my personal website",
"repo": "https://github.com/thunder-coding/CodingThunder",
"owner": {
"username": "thunder-coding",
@@ -7,6 +7,9 @@
"discord": "codingthunder"
},
"record": {
- "CNAME": "thunder-coding.github.io"
+ "URL": "https://thunders.website"
+ },
+ "redirect_config": {
+ "redirect_paths": true
}
}
diff --git a/domains/cdn.akk1to.json b/domains/cdn.akk1to.json
new file mode 100644
index 000000000..b6723a57d
--- /dev/null
+++ b/domains/cdn.akk1to.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "TXT": "Created to allow nested subdomains to exist."
+ }
+}
diff --git a/domains/cdn.akshtt.json b/domains/cdn.akshtt.json
new file mode 100644
index 000000000..08e4484c5
--- /dev/null
+++ b/domains/cdn.akshtt.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "akshtt-dev",
+ "discord": "1056531806763102218",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ojRqRJbGOahwPxN2FXjfpdue_HUF78Vq554bPYDdOQqcxSnMUY6FJUFaNpDhQ5UfLZqyqPAP_UysBQn9fdV7FZ91sXuvBvzGE-PiJmTTfGDvWuiHhHVCyduXP9eTsH8o46EWznN7FdZus2xPgtQErwixgKzoevLXB1bCp8kFBLpNw4cKj85n1MP1hEkB1tT0hNvi23rVE1UutBWkD_R-zi9jca096EZxqJ44rOjkulH4mU7p9TsB49A6Vz3tC9R3cowQCwSwpKi9rUSMItDVyRRRyCUjsJ57guHwk1RK0n8WDSkO7rIfyQyPQHFTu0PivSBXySCcC_FO6O65s1xrAw.TbXyRSxfs8heydDOxH8sUg.w9L0JnA9hNgW2uSHqqikxZzDcGgKWsLw-lmqP5AnpZ2s2vdlvwo5vnjzMIPQTt0jiQPPN4G6seeRyRzw52vlbyDFsSpZZfmXQiZkoP2UitA.HdygXdLwJHnF5Qcx2bsewA"
+ },
+
+ "record": {
+ "A": ["173.208.244.13"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/cdn.areen.json b/domains/cdn.areen.json
new file mode 100644
index 000000000..5857f582c
--- /dev/null
+++ b/domains/cdn.areen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "areen-c",
+ "email": "areenelhaq@gmail.com"
+ },
+ "record": {
+ "CNAME": "c-d-n.pages.dev"
+ }
+}
diff --git a/domains/cdn.evelio.json b/domains/cdn.evelio.json
new file mode 100644
index 000000000..06316fe71
--- /dev/null
+++ b/domains/cdn.evelio.json
@@ -0,0 +1,11 @@
+{
+ "description": "Will be used for Zipline purposes",
+ "owner": {
+ "username": "SrEvelio",
+ "email": "alphaevelio@gmail.com",
+ "discord": "srevelio"
+ },
+ "record": {
+ "A": ["69.197.135.202"]
+ }
+}
diff --git a/domains/cdn.winbo.json b/domains/cdn.komaru.json
similarity index 54%
rename from domains/cdn.winbo.json
rename to domains/cdn.komaru.json
index d2086cfc7..d2da00f19 100644
--- a/domains/cdn.winbo.json
+++ b/domains/cdn.komaru.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "winbo-yml-exe",
+ "username": "komaru-meow",
"email": "winbo-yml-exe@outlook.com"
},
"record": {
- "CNAME": "winbo-cdn.github.io"
+ "CNAME": "komaru-cdn.github.io"
}
}
diff --git a/domains/cdn.mkeko.json b/domains/cdn.mkeko.json
index b10af2ddb..020501559 100644
--- a/domains/cdn.mkeko.json
+++ b/domains/cdn.mkeko.json
@@ -1,6 +1,5 @@
{
"description": "for my zipline",
- "repo": "https://github.com/Mkeko",
"owner": {
"username": "Mkeko",
"twitter": "Mkekomc"
diff --git a/domains/cdn.xrap1dx.json b/domains/cdn.xrap1dx.json
index e4debd4ad..504d4d0e3 100644
--- a/domains/cdn.xrap1dx.json
+++ b/domains/cdn.xrap1dx.json
@@ -1,6 +1,5 @@
{
"description": "making my cdn!!!",
- "repo": "https://github.com/xrap1dx?tab=repositories",
"owner": {
"username": "xrap1dx",
"email": "sirrapid155@gmail.com"
diff --git a/domains/cdops.json b/domains/cdops.json
index 5117cbf15..e742faa43 100644
--- a/domains/cdops.json
+++ b/domains/cdops.json
@@ -1,6 +1,5 @@
{
"description": "This is my blogging website",
- "repo": "https://github.com/gtamilvanan17",
"owner": {
"username": "gtamilvanan17",
"discord": "gtamilvanan17"
diff --git a/domains/cedrickfeze.json b/domains/cedrickfeze.json
new file mode 100644
index 000000000..97805af77
--- /dev/null
+++ b/domains/cedrickfeze.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cedrickdev",
+ "email": "cedrickv.tchindaf@hes-so.ch"
+ },
+ "record": {
+ "CNAME": "cedrickfeze.vercel.app"
+ }
+}
diff --git a/domains/cemalgnlts.json b/domains/cemalgnlts.json
new file mode 100644
index 000000000..c9869cd61
--- /dev/null
+++ b/domains/cemalgnlts.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cemalgnlts",
+ "discord": "cemalgnlts"
+ },
+ "record": {
+ "CNAME": "cemalgnlts.surge.sh"
+ }
+}
diff --git a/domains/cesardarizaleta.json b/domains/cesardarizaleta.json
new file mode 100644
index 000000000..cbd0d71d2
--- /dev/null
+++ b/domains/cesardarizaleta.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/cesardarizaleta/cesarfolio",
+ "owner": {
+ "username": "cesardarizaleta",
+ "email": "cesardarizaleta@gmail.com"
+ },
+ "record": {
+ "CNAME": "cesarfolio.vercel.app"
+ }
+}
diff --git a/domains/cescdev.json b/domains/cescdev.json
new file mode 100644
index 000000000..7314a7492
--- /dev/null
+++ b/domains/cescdev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GitCesc07",
+ "email": "cesar0407197@gmail.com"
+ },
+ "record": {
+ "CNAME": "cescdev-portafolio.netlify.app"
+ }
+}
diff --git a/domains/cetus.json b/domains/cetus.json
index b14090e79..ba892e76b 100644
--- a/domains/cetus.json
+++ b/domains/cetus.json
@@ -1,6 +1,5 @@
{
"description": "Cetus's Portfolio",
- "repo": "https://github.com/dev-cetus",
"owner": {
"username": "Cetus",
"email": "dev-cetus@proton.me",
diff --git a/domains/cfg-codes.json b/domains/cfg-codes.json
new file mode 100644
index 000000000..956fd9d28
--- /dev/null
+++ b/domains/cfg-codes.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cfg-codes",
+ "email": "carlosfgomezarr@gmail.com"
+ },
+ "record": {
+ "CNAME": "cfg-codes.github.io"
+ }
+}
diff --git a/domains/cgmuros.json b/domains/cgmuros.json
new file mode 100644
index 000000000..22e5c4a33
--- /dev/null
+++ b/domains/cgmuros.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cgmuros",
+ "email": "cgmuros@gmail.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+ }
\ No newline at end of file
diff --git a/domains/chamal1120.json b/domains/chamal1120.json
new file mode 100644
index 000000000..6e5deca06
--- /dev/null
+++ b/domains/chamal1120.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Chamal1120",
+ "email": "kenway213beep@gmail.com"
+ },
+ "record": {
+ "CNAME": "chamal1120.vercel.app"
+ }
+}
diff --git a/domains/charcg.json b/domains/charcg.json
deleted file mode 100644
index f49dbde7e..000000000
--- a/domains/charcg.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "CharCG's Website",
- "repo": "https://github.com/charcg/charcg.github.io",
- "owner": {
- "username": "CharCG",
- "email": "charlescong91@gmail.com",
- "twitter": "charlescong91"
- },
- "record": {
- "CNAME": "charcg.github.io"
- }
-}
diff --git a/domains/charly.json b/domains/charly.json
new file mode 100644
index 000000000..303c9be1f
--- /dev/null
+++ b/domains/charly.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "soy-charly",
+ "email": "carlos.scarrasco08@gmail.com",
+ "discord": "charly0572"
+ },
+ "record": {
+ "CNAME": "porfolio-bice-mu.vercel.app"
+ }
+}
diff --git a/domains/charmy.json b/domains/charmy.json
new file mode 100644
index 000000000..798ff27e7
--- /dev/null
+++ b/domains/charmy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Need the subdomain for my discord bot website",
+ "repo": "https://github.com/yurehito/charmy-website.git",
+ "owner": {
+ "username": "yurehito",
+ "discord": "https://discord.com/users/998608551431897170"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/chewieleaf.json b/domains/chewieleaf.json
deleted file mode 100644
index 699471137..000000000
--- a/domains/chewieleaf.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "chewieleaf",
- "email": "cchirrpy@outlook.com",
- "discord": "898255050592366642"
- },
- "record": {
- "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512"
- }
-}
diff --git a/domains/chez1s.json b/domains/chez1s.json
index b60527bfe..3d26e8d73 100644
--- a/domains/chez1s.json
+++ b/domains/chez1s.json
@@ -1,6 +1,5 @@
{
"description": "chez1s's is-a-dev domain",
- "repo": "https://github.com/TRIBUI106",
"owner": {
"username": "TRIBUI106",
"discord": "1250225950268850312"
diff --git a/domains/chirxg.json b/domains/chirxg.json
new file mode 100644
index 000000000..299c15a98
--- /dev/null
+++ b/domains/chirxg.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "definitelynotchirag",
+ "email": "chiragdave1888@gmail.com",
+ "discord": "hellchirag"
+ },
+ "record": {
+ "CNAME": "chirxg.vercel.app"
+ }
+}
diff --git a/domains/chloe.json b/domains/chloe.json
index 2cf26df9a..755651974 100644
--- a/domains/chloe.json
+++ b/domains/chloe.json
@@ -1,6 +1,5 @@
{
"description": "Chloe's is-a-dev domain",
- "repo": "https://github.com/chloeashlyn",
"owner": {
"username": "chloeashlyn",
"discord": "chloeashlyn#7272"
diff --git a/domains/chris-nguyen.json b/domains/chris-nguyen.json
new file mode 100644
index 000000000..f3d6b050a
--- /dev/null
+++ b/domains/chris-nguyen.json
@@ -0,0 +1,10 @@
+{
+ "description": "chrisnguyen.is-a.dev : This is my personal website",
+ "owner": {
+ "username": "chris-thegamechanger",
+ "email": "chrislumiere09@gmail.com"
+ },
+ "record": {
+ "URL": "https://chris-nguyen.co.uk"
+ }
+}
diff --git a/domains/chris.json b/domains/chris.json
index c4a4c19fa..a48bbd521 100644
--- a/domains/chris.json
+++ b/domains/chris.json
@@ -1,6 +1,5 @@
{
"description": "Chris' Site",
- "repo": "https://github.com/Sp4nd3x",
"owner": {
"username": "Sp4nd3x",
"email": "chrisisadev@gmail.com"
diff --git a/domains/chriscent.json b/domains/chriscent.json
new file mode 100644
index 000000000..2257d4bd6
--- /dev/null
+++ b/domains/chriscent.json
@@ -0,0 +1,11 @@
+{
+ "description": "A practice portfolio for web design challenges.",
+ "repo": "https://github.com/KishonShrill/website-portfolio",
+ "owner": {
+ "username": "KishonShrill",
+ "email": "crystalbluew@gmail.com"
+ },
+ "record": {
+ "CNAME": "chriscent.vercel.app"
+ }
+}
diff --git a/domains/chromesec.json b/domains/chromesec.json
index 711512fc0..2c08f2c99 100644
--- a/domains/chromesec.json
+++ b/domains/chromesec.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/CaenJones/ChromeSEC",
"owner": {
"username": "CaenJones",
- "email": "cj@caenjones.com",
- "twitter": ""
+ "email": "cj@caenjones.com"
},
"record": {
"URL": "https://caenjones.is-a.dev/ChromeSEC"
diff --git a/domains/ciao287.json b/domains/ciao287.json
index af3721626..6e1582f7e 100644
--- a/domains/ciao287.json
+++ b/domains/ciao287.json
@@ -4,6 +4,6 @@
"discord": "687333016921440317"
},
"record": {
- "CNAME": "ciao287.github.io"
+ "A": ["144.91.115.195"]
}
}
diff --git a/domains/ciaobot.json b/domains/ciaobot.json
index 5d3df2331..984781774 100644
--- a/domains/ciaobot.json
+++ b/domains/ciaobot.json
@@ -5,9 +5,7 @@
},
"record": {
"A": ["144.91.115.195"],
- "MX": ["mail.ciaohost.tech"],
"TXT": [
- "v=spf1 mx a -all",
"google-site-verification=ESHkpD4wk4-a2cqONn73cRaELmis2IzdBRB3Fw-t1Dw"
]
}
diff --git a/domains/cihan.json b/domains/cihan.json
new file mode 100644
index 000000000..05fcad1f7
--- /dev/null
+++ b/domains/cihan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cihanyakar",
+ "email": "cihanyakar@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.cihanyakar.com"
+ }
+}
diff --git a/domains/cirno.json b/domains/cirno.json
new file mode 100644
index 000000000..4e82f95b6
--- /dev/null
+++ b/domains/cirno.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "orangci",
+ "discord": "orangc"
+ },
+ "record": {
+ "URL": "https://orangc.net"
+ }
+}
diff --git a/domains/cloud.json b/domains/cloud.json
new file mode 100644
index 000000000..1c1333182
--- /dev/null
+++ b/domains/cloud.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hmahd",
+ "email": "akashhasendra2@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-73z.pages.dev"
+ },
+ "proxied": true
+}
diff --git a/domains/cloudie.json b/domains/cloudie.json
new file mode 100644
index 000000000..f6d323cbb
--- /dev/null
+++ b/domains/cloudie.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hirwko",
+ "discord": "rzt5"
+ },
+ "record": {
+ "CNAME": "website-5zt-53r.pages.dev"
+ }
+}
diff --git a/domains/co.ligmatv.json b/domains/co.ligmatv.json
deleted file mode 100644
index 7ce8810b1..000000000
--- a/domains/co.ligmatv.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "description": "This sub-subdomain will i use for my Zoho email.",
- "owner": {
- "username": "LIGMATV",
- "email": "ligmatv.id@gmail.com"
- },
- "record": {
- "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"],
- "TXT": [
- "zoho-verification=zb21447312.zmverify.zoho.com",
- "v=spf1 include:zoho.com ~all"
- ]
- }
-}
diff --git a/domains/code-vista.json b/domains/code-vista.json
new file mode 100644
index 000000000..d84672805
--- /dev/null
+++ b/domains/code-vista.json
@@ -0,0 +1,12 @@
+{
+ "description": "Just a personal website to use with this is-a.dev subdomain",
+ "repo": "https://github.com/JavaVista/code-vista-site",
+ "owner": {
+ "username": "JavaVista",
+ "discord": "codevista",
+ "email": "code-vista@outlook.com"
+ },
+ "record": {
+ "CNAME": "javavista.github.io"
+ }
+}
diff --git a/domains/code.aessaputra.json b/domains/code.aessaputra.json
new file mode 100644
index 000000000..932eaf4e4
--- /dev/null
+++ b/domains/code.aessaputra.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "description": "VS Code Remote Access",
+ "username": "aessaputra",
+ "twitter": "pioonrey"
+ },
+ "record": {
+ "A": ["168.138.171.60"]
+ }
+}
diff --git a/domains/codefoster.json b/domains/codefoster.json
index a21e921c2..b256cf867 100644
--- a/domains/codefoster.json
+++ b/domains/codefoster.json
@@ -1,6 +1,5 @@
{
"description": "The main for codefoster - a Software Engineer at Microsoft.",
- "repo": "https://github.com/codefoster",
"owner": {
"username": "codefoster",
"email": "jeremy.foster@live.com"
diff --git a/domains/coder.json b/domains/coder.json
new file mode 100644
index 000000000..d74f24d92
--- /dev/null
+++ b/domains/coder.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "turbomaster95",
+ "email": "devamidhun.3c.kmbvm@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "aria.ns.cloudflare.com",
+ "leonard.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/coderzen.json b/domains/coderzen.json
new file mode 100644
index 000000000..8e0649952
--- /dev/null
+++ b/domains/coderzen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Realtrickz",
+ "email": "isamismail8273@gmail.com"
+ },
+ "record": {
+ "CNAME": "coderzenk-com.vercel.app"
+ }
+}
diff --git a/domains/codesoft.json b/domains/codesoft.json
new file mode 100644
index 000000000..28f62a79f
--- /dev/null
+++ b/domains/codesoft.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CodeSoftGit",
+ "email": "codesft@proton.me"
+ },
+ "record": {
+ "CNAME": "portfolio-codesoftgits-projects.vercel.app"
+ }
+}
diff --git a/domains/codethoma.json b/domains/codethoma.json
index 239d3ecbc..143c85ee6 100644
--- a/domains/codethoma.json
+++ b/domains/codethoma.json
@@ -1,6 +1,5 @@
{
"description": "The ThunderDome",
- "repo": "https://github.com/codethoma",
"owner": {
"username": "codethoma",
"email": "mrthundergod@gmail.com"
diff --git a/domains/codexisme.json b/domains/codexisme.json
new file mode 100644
index 000000000..b7174ba69
--- /dev/null
+++ b/domains/codexisme.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "codexart-lab",
+ "email": "atmostechnexa@gmail.com"
+ },
+ "record": {
+ "CNAME": "codexart-lab.github.io"
+ }
+}
diff --git a/domains/codexkun.json b/domains/codexkun.json
new file mode 100644
index 000000000..c625ca52a
--- /dev/null
+++ b/domains/codexkun.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/KunalBishwal/Portfolio_IDE",
+ "owner": {
+ "username": "KunalBishwal",
+ "email": "kunalbishwal2004@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-ide-zeta.vercel.app"
+ }
+}
diff --git a/domains/cody.json b/domains/cody.json
index 18f0026e1..f367f837f 100644
--- a/domains/cody.json
+++ b/domains/cody.json
@@ -4,6 +4,6 @@
"email": "codingamazing224@outlook.com"
},
"record": {
- "URL": "https://about-cody.pages.dev/"
+ "CNAME": "hi-im-cody.pages.dev"
}
}
diff --git a/domains/coen.json b/domains/coen.json
new file mode 100644
index 000000000..4dd7bee00
--- /dev/null
+++ b/domains/coen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cogrow4",
+ "email": "cogrow@duck.com"
+ },
+ "record": {
+ "URL": "https://github.com/cogrow4"
+ }
+}
diff --git a/domains/colin.json b/domains/colin.json
new file mode 100644
index 000000000..d3c365a23
--- /dev/null
+++ b/domains/colin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ColinLeDev",
+ "email": "spam+isadev@col1n.fr"
+ },
+ "record": {
+ "CNAME": "proxy.col1n.fr"
+ }
+}
diff --git a/domains/colix.json b/domains/colix.json
deleted file mode 100644
index e9f5291a9..000000000
--- a/domains/colix.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "YeahhColix",
- "email": "yeahhcolix@gmail.com"
- },
- "record": {
- "CNAME": "colix.pages.dev"
- }
-}
diff --git a/domains/connor.json b/domains/connor.json
index 2fb2b310e..36a89f81f 100644
--- a/domains/connor.json
+++ b/domains/connor.json
@@ -3,9 +3,9 @@
"repo": "https://github.com/ConnorDoesDev/connordoesdev.github.io",
"owner": {
"username": "ConnorDoesDev",
- "email": "connor@cstudios.gay"
+ "email": "connor@dmc.chat"
},
"record": {
- "CNAME": "connordoesdev.github.io"
+ "A": ["173.249.45.163"]
}
}
diff --git a/domains/coolify-app.json b/domains/coolify-app.json
new file mode 100644
index 000000000..2f614d496
--- /dev/null
+++ b/domains/coolify-app.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "umarsidiki",
+ "email": "siddiquiumar0007@gmail.com"
+ },
+ "record": {
+ "A": ["89.168.88.28"]
+ },
+ "proxied": true
+}
diff --git a/domains/core.json b/domains/core.json
index bd101c967..2c4ebf55f 100644
--- a/domains/core.json
+++ b/domains/core.json
@@ -1,6 +1,5 @@
{
"description": "My information.",
- "repo": "https://github.com/Aidenhtg",
"owner": {
"username": "Aidenhtg",
"email": "aidenhiseh.m.l@gmail.com"
diff --git a/domains/cota.json b/domains/cota.json
new file mode 100644
index 000000000..34e7b0669
--- /dev/null
+++ b/domains/cota.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "zer0uno"
+ },
+ "record": {
+ "URL": "https://www.cotanto.it"
+ }
+}
diff --git a/domains/count.json b/domains/count.json
index 3f117ee01..e03044749 100644
--- a/domains/count.json
+++ b/domains/count.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "theveryheavy",
- "email": "",
"discord": "1266113644643614803",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i4iZGukPgos1-y71KygQ_1d4ZPvnuuHgs8csldNT2FxY569U2isi4aCp5AheSznzqXWmPGTo38NmaFn1MelIVOzeFxTz8BHee9bKBcOQ06oxhKLavCiCykNWCjKyfYWHZre251Iv-zsnUgwO0OUbEjToo9PB6YRJ2LkOe1t5ZASxeMeA7QJziuVU5Cv7GWUbg-pZuWODrV4DTW8H6MdRzKFLY4WpxY5jUlnVsWiK6kZG_Wu2z1trzYplfN9T2lN1K1mNIXYgG_CMqNG1jXPQysoKqkhxjr4ItzFVdpAVso0LTmyhYg92ZQatP2SeD5gqZVVxqUKAj7lF6szfnttQbA.uxd1RFhSCU6cdViuiUODvg.NmpM1UKZ5CQ0qoVMplEzRW6yDCp1HsCQVXBQyCTZ3rvaCdPHuzKGnf3IQwMi801cx27D0o8wCiaF0J77whNrnkcMI9VBhajfhc8BrntWu1E.i05R_R9RRIO7RtW-elXkzA"
},
diff --git a/domains/cr0nus.json b/domains/cr0nus.json
index b895a86bc..b70730e65 100644
--- a/domains/cr0nus.json
+++ b/domains/cr0nus.json
@@ -1,6 +1,5 @@
{
"description": "A personal portfolio site for all my projects.",
- "repo": "https://github.com/umgbhalla",
"owner": {
"username": "umgbhalla",
"email": "umg.bhalla88@gmail.com",
diff --git a/domains/crafting.json b/domains/crafting.json
new file mode 100644
index 000000000..86f54f684
--- /dev/null
+++ b/domains/crafting.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "meredyk",
+ "email": "gustavo@meredyk.com.br"
+ },
+ "record": {
+ "URL": "https://www.crafting.com.br/"
+ }
+}
diff --git a/domains/cris.json b/domains/cris.json
new file mode 100644
index 000000000..3a336fef2
--- /dev/null
+++ b/domains/cris.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "UnrecoverableFault",
+ "email": "carendell@me.com"
+ },
+ "record": {
+ "CNAME": "website-f1q.pages.dev"
+ }
+}
diff --git a/domains/cristian.json b/domains/cristian.json
new file mode 100644
index 000000000..3a336fef2
--- /dev/null
+++ b/domains/cristian.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "UnrecoverableFault",
+ "email": "carendell@me.com"
+ },
+ "record": {
+ "CNAME": "website-f1q.pages.dev"
+ }
+}
diff --git a/domains/crpaiz.json b/domains/crpaiz.json
index 7d57ba8fd..fca3c8453 100644
--- a/domains/crpaiz.json
+++ b/domains/crpaiz.json
@@ -1,5 +1,4 @@
{
- "$schema": "../schemas/domain.json",
"owner": {
"username": "CristopherPaiz",
"email": "choperpaiz1@gmail.com"
diff --git a/domains/crystal.json b/domains/crystal.json
index dadbdde8e..49f09c784 100644
--- a/domains/crystal.json
+++ b/domains/crystal.json
@@ -1,12 +1,12 @@
{
"description": "For hosting my portfolio",
- "repo": "https://github.com/crystalbajgai/crystalbajgai.github.io",
+ "repo": "https://github.com/crystalbajgai/portfolio",
"owner": {
"username": "crystalbajgai",
"email": "crystalbajgai@gmail.com",
- "twitter": "Crissy0__0"
+ "twitter": "crystaaaal"
},
"record": {
- "CNAME": "crystalbajgai.github.io"
+ "CNAME": "crystalbajgai.vercel.app"
}
}
diff --git a/domains/cuinc99.json b/domains/cuinc99.json
new file mode 100644
index 000000000..bf366215b
--- /dev/null
+++ b/domains/cuinc99.json
@@ -0,0 +1,11 @@
+{
+ "description": "A Portfolio Website",
+ "repo": "https://github.com/cuinc99/cuinc99.github.io",
+ "owner": {
+ "username": "cuinc99",
+ "email": "cuinc99@gmail.com"
+ },
+ "record": {
+ "CNAME": "cuinc99.github.io"
+ }
+}
diff --git a/domains/currypan1229.json b/domains/currypan1229.json
new file mode 100644
index 000000000..31fb376fc
--- /dev/null
+++ b/domains/currypan1229.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Currypan1229",
+ "email": "abcqqqwpvp@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/Currypan1229"
+ }
+}
diff --git a/domains/cyberpj.json b/domains/cyberpj.json
new file mode 100644
index 000000000..f22f38a0e
--- /dev/null
+++ b/domains/cyberpj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "0xcyberpj",
+ "email": "0xcyberpj@proton.me"
+ },
+ "record": {
+ "CNAME": "0xcyberpj.github.io"
+ }
+}
diff --git a/domains/cynik.json b/domains/cynik.json
new file mode 100644
index 000000000..56d8340fb
--- /dev/null
+++ b/domains/cynik.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "criticic",
+ "email": "acriticalcynic@outlook.com"
+ },
+ "record": {
+ "CNAME": "cynikal-blog.vercel.app"
+ }
+}
diff --git a/domains/dadoge.json b/domains/dadoge.json
new file mode 100644
index 000000000..00ca5db19
--- /dev/null
+++ b/domains/dadoge.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DaDogeDev"
+ },
+ "record": {
+ "CNAME": "dadogedev.github.io"
+ },
+ "proxied": false
+}
diff --git a/domains/daffa.json b/domains/daffa.json
new file mode 100644
index 000000000..de6e74424
--- /dev/null
+++ b/domains/daffa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "daffafaizan",
+ "email": "daffamfzn@gmail.com"
+ },
+ "record": {
+ "URL": "https://daffafaizan.com"
+ }
+}
diff --git a/domains/daiswap.json b/domains/daiswap.json
deleted file mode 100644
index a7f052724..000000000
--- a/domains/daiswap.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "for my personal portfolio , to do networking and get to learn and do more projects",
- "repo": "https://github.com/DaiSwap/DaiSwap.github.io",
- "owner": {
- "username": "DaiSwap",
- "email": "19644pranavvenkatesh@gmail.com",
- "twitter": "DaiSwap"
- },
- "record": {
- "A": ["13.251.96.10"]
- }
-}
diff --git a/domains/damian.json b/domains/damian.json
new file mode 100644
index 000000000..df778242f
--- /dev/null
+++ b/domains/damian.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "meliadamian17",
+ "email": "meliadamian17@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/damilare.json b/domains/damilare.json
new file mode 100644
index 000000000..a646b65d4
--- /dev/null
+++ b/domains/damilare.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Peculiars",
+ "email": "olaitandamilare230@gmail.com"
+ },
+ "record": {
+ "CNAME": "peculiars.github.io"
+ }
+}
diff --git a/domains/dang.json b/domains/dang.json
new file mode 100644
index 000000000..f608f7147
--- /dev/null
+++ b/domains/dang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chanhdangcom",
+ "email": "ncdang@quaric.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/daniellozano.json b/domains/daniellozano.json
new file mode 100644
index 000000000..aa7293c55
--- /dev/null
+++ b/domains/daniellozano.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "z4no",
+ "email": "danixt35@gmail.com"
+ },
+ "record": {
+ "CNAME": "z4no.github.io"
+ }
+}
diff --git a/domains/danielpedroza.json b/domains/danielpedroza.json
new file mode 100644
index 000000000..e69721855
--- /dev/null
+++ b/domains/danielpedroza.json
@@ -0,0 +1,11 @@
+{
+ "description": "Daniel's developer website",
+ "repo": "https://github.com/daniepusb/daniepusb.github.io",
+ "owner": {
+ "username": "daniepusb",
+ "linkedin": "https://www.linkedin.com/in/danielpedroza87"
+ },
+ "record": {
+ "URL": "https://daniepusb.github.io/"
+ }
+}
diff --git a/domains/danieltampe.json b/domains/danieltampe.json
new file mode 100644
index 000000000..d6fed1638
--- /dev/null
+++ b/domains/danieltampe.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DanielTampeCaamano",
+ "email": "danieltampe@hotmail.com",
+ "discord": "246811015285571586"
+ },
+ "record": {
+ "CNAME": "daniel-tampe-webpage.vercel.app"
+ }
+}
diff --git a/domains/danielzambrano.json b/domains/danielzambrano.json
index 8372b3402..8a7a59e3c 100644
--- a/domains/danielzambrano.json
+++ b/domains/danielzambrano.json
@@ -1,9 +1,9 @@
-{
- "owner": {
- "username": "DanielZambranoC",
- "email": "trail.moth9771@eagereverest.com"
- },
- "record": {
- "URL": "https://www.linkedin.com/in/danielzambranoc/"
- }
-}
\ No newline at end of file
+{
+ "owner": {
+ "username": "DanielZambranoC",
+ "email": "trail.moth9771@eagereverest.com"
+ },
+ "record": {
+ "URL": "https://www.linkedin.com/in/danielzambranoc/"
+ }
+}
diff --git a/domains/danilezheng4.json b/domains/danilezheng4.json
new file mode 100644
index 000000000..25714c915
--- /dev/null
+++ b/domains/danilezheng4.json
@@ -0,0 +1,11 @@
+{
+ "description": "danilezheng4's portfolio",
+ "repo": "https://github.com/danilezheng4/danilezheng4.github.io",
+ "owner": {
+ "username": "danilezheng4",
+ "email": "danilezheng4@outlook.com"
+ },
+ "record": {
+ "CNAME": "danilezheng4.github.io"
+ }
+}
diff --git a/domains/daniyor.json b/domains/daniyor.json
new file mode 100644
index 000000000..9b78ea0a6
--- /dev/null
+++ b/domains/daniyor.json
@@ -0,0 +1,11 @@
+{
+ "description": "Daniyor's Portfolio",
+ "repo": "https://github.com/Daniyor2020/devdan",
+ "owner": {
+ "username": "Daniyor2020",
+ "email": "dani.bolta87@gmail.com"
+ },
+ "record": {
+ "CNAME": "daniyor2020.github.io"
+ }
+}
diff --git a/domains/dankamigos.json b/domains/dankamigos.json
index 13a0d5f7c..c12948244 100644
--- a/domains/dankamigos.json
+++ b/domains/dankamigos.json
@@ -4,6 +4,6 @@
"email": "anirudhsus001@gmail.com"
},
"record": {
- "CNAME": "dankamigos-baapekd9aua9esh2.eastus-01.azurewebsites.net"
+ "CNAME": "dankamigos-baapekd9aua9esh2.centralus-01.azurewebsites.net"
}
}
diff --git a/domains/danybmx.json b/domains/danybmx.json
new file mode 100644
index 000000000..4aec5f04c
--- /dev/null
+++ b/domains/danybmx.json
@@ -0,0 +1,10 @@
+{
+ "description": "danybmx's blog and portfolio",
+ "owner": {
+ "username": "danybmx",
+ "email": "daniel@dpstudios.es"
+ },
+ "record": {
+ "CNAME": "is-a-dev.dpstudios.es"
+ }
+}
diff --git a/domains/daoch4n.json b/domains/daoch4n.json
new file mode 100644
index 000000000..2f3e71db6
--- /dev/null
+++ b/domains/daoch4n.json
@@ -0,0 +1,11 @@
+{
+ "description": "Web3-enabled video player for Daoko MVs",
+ "repo": "https://github.com/dtub3/DaokoTube",
+ "owner": {
+ "username": "daoch4n",
+ "email": "digitaimadness@pm.me"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
\ No newline at end of file
diff --git a/domains/dariorodrigon.json b/domains/dariorodrigon.json
new file mode 100644
index 000000000..e8de8bc65
--- /dev/null
+++ b/domains/dariorodrigon.json
@@ -0,0 +1,11 @@
+{
+ "description": "Dario Rodri Gon is a dev",
+ "repo": "https://github.com/dario-rodriguez/dario-rodriguez.github.io",
+ "owner": {
+ "username": "dario-rodriguez",
+ "email": "dario.rg.1990@gmail.com"
+ },
+ "record": {
+ "CNAME": "dario-rodriguez.github.io"
+ }
+}
diff --git a/domains/darkdus.json b/domains/darkdus.json
new file mode 100644
index 000000000..40b08a34c
--- /dev/null
+++ b/domains/darkdus.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Project",
+ "owner": {
+ "username": "MqJulus",
+ "email": "julien.sabe07@gmail.com"
+ },
+ "record": {
+ "CNAME": "dark-dus.web.app"
+ }
+}
diff --git a/domains/darkyzhou.json b/domains/darkyzhou.json
new file mode 100644
index 000000000..e4980c556
--- /dev/null
+++ b/domains/darkyzhou.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "darkyzhou",
+ "email": "me@zqy.io"
+ },
+ "record": {
+ "CNAME": "darkyzhou.net"
+ }
+}
diff --git a/domains/darren.json b/domains/darren.json
index 73824a0a7..c71d8613c 100644
--- a/domains/darren.json
+++ b/domains/darren.json
@@ -1,6 +1,5 @@
{
"description": "I use arch btw",
- "repo": "https://github.com/DarrenOfficial",
"owner": {
"username": "DarrenOfficial",
"email": "github@darrennathanael.com"
diff --git a/domains/darsshan.json b/domains/darsshan.json
new file mode 100644
index 000000000..dab8ddf9e
--- /dev/null
+++ b/domains/darsshan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DotEnvv",
+ "email": "nahsrad04@gmail.com"
+ },
+ "record": {
+ "CNAME": "dotenvv.github.io"
+ }
+}
diff --git a/domains/dartanman.json b/domains/dartanman.json
index 241595624..32c2932cf 100644
--- a/domains/dartanman.json
+++ b/domains/dartanman.json
@@ -1,6 +1,5 @@
{
"description": "My portfolio",
- "repo": "https://github.com/Dartanman",
"owner": {
"username": "Dartanman",
"email": "dartanmanplaysminecraft@gmail.com"
diff --git a/domains/dast.json b/domains/dast.json
index 4cd566fed..15f0ae08c 100644
--- a/domains/dast.json
+++ b/domains/dast.json
@@ -1,6 +1,5 @@
{
"description": "My personal website for portfolio, projects and help!",
- "repo": "https://github.com/danielsebesta",
"owner": {
"username": "danielsebesta",
"email": "dany.sebesta@seznam.cz"
diff --git a/domains/dat.json b/domains/dat.json
new file mode 100644
index 000000000..8c0a351b2
--- /dev/null
+++ b/domains/dat.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github site of pdqdat",
+ "owner": {
+ "username": "pdqdat",
+ "email": "phanduongquocdat273@gmail.com"
+ },
+ "record": {
+ "URL": "https://pdqdat.github.io/"
+ }
+}
diff --git a/domains/datit309.json b/domains/datit309.json
new file mode 100644
index 000000000..ddc334f39
--- /dev/null
+++ b/domains/datit309.json
@@ -0,0 +1,12 @@
+{
+ "description": "Documentation website for is-a.dev",
+ "repo": "https://github.com/datit309309/register",
+ "owner": {
+ "username": "datit309",
+ "email": "datit309@gmail.com"
+ },
+ "record": {
+ "URL": "https://datit309.github.io",
+ "TXT": "google-site-verification=2F7H5wS3Sly_6DKcp2IIlsDI3z3PWGfqv81YFGbMRKY"
+ }
+}
diff --git a/domains/dauvet.json b/domains/dauvet.json
new file mode 100644
index 000000000..9ae8a6075
--- /dev/null
+++ b/domains/dauvet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dauvet",
+ "email": "vanhieu85@gmail.com"
+ },
+ "record": {
+ "CNAME": "dauvet.github.io"
+ }
+}
diff --git a/domains/davechbga.json b/domains/davechbga.json
index c2f8bca8f..2d00c0eeb 100644
--- a/domains/davechbga.json
+++ b/domains/davechbga.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "davechbga"
- },
- "record": {
- "CNAME": "davechbga.vercel.app"
- }
+ "owner": {
+ "username": "davechbga"
+ },
+ "record": {
+ "CNAME": "davechbga.vercel.app"
+ }
}
diff --git a/domains/davemp.json b/domains/davemp.json
index 04daa84ce..40f233d56 100644
--- a/domains/davemp.json
+++ b/domains/davemp.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "davemp.vercel.app"
}
-}
\ No newline at end of file
+}
diff --git a/domains/david.json b/domains/david.json
new file mode 100644
index 000000000..e80ad53a8
--- /dev/null
+++ b/domains/david.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "david-valdivia",
+ "email": "dev@dvaldivia.com"
+ },
+ "record": {
+ "CNAME": "dvaldivia.com"
+ }
+}
diff --git a/domains/davidpizarro.json b/domains/davidpizarro.json
new file mode 100644
index 000000000..58664efd0
--- /dev/null
+++ b/domains/davidpizarro.json
@@ -0,0 +1,11 @@
+{
+ "description": "Use the domain for my porfolio",
+ "repo": "https://github.com/DavidPPizarro/davidppizarro.github.io",
+ "owner": {
+ "username": "DavidPPizarro",
+ "email": "paulpizarro151@gmail.com"
+ },
+ "record": {
+ "CNAME": "davidppizarro.github.io"
+ }
+}
diff --git a/domains/davidramirez.json b/domains/davidramirez.json
new file mode 100644
index 000000000..0720de824
--- /dev/null
+++ b/domains/davidramirez.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio website made with Astro",
+ "repo": "https://github.com/davidzz-code/portfolio.git",
+ "owner": {
+ "username": "davidzz-code",
+ "email": "mixing.drr@gmail.com"
+ },
+ "record": {
+ "CNAME": "davidramirez.netlify.app"
+ }
+}
diff --git a/domains/davidrivas.json b/domains/davidrivas.json
new file mode 100644
index 000000000..37a4a3ce6
--- /dev/null
+++ b/domains/davidrivas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DavidRDevs",
+ "email": "ing.davidrivas96@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/DavidRDevs"
+ }
+}
diff --git a/domains/davidsneighbour.json b/domains/davidsneighbour.json
new file mode 100644
index 000000000..6952ce03b
--- /dev/null
+++ b/domains/davidsneighbour.json
@@ -0,0 +1,11 @@
+{
+ "description": "My GitHub profile",
+ "owner": {
+ "username": "davidsneighbour",
+ "email": "pkollitsch+isadev@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/davidsneighbour/",
+ "MX": ["smtp.google.com"]
+ }
+}
diff --git a/domains/davr.json b/domains/davr.json
new file mode 100644
index 000000000..3c07b5a70
--- /dev/null
+++ b/domains/davr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cernoh",
+ "email": "davincey06@gmail.com"
+ },
+ "record": {
+ "CNAME": "neobrutal-resume-vercel.vercel.app"
+ }
+}
diff --git a/domains/deadshot.json b/domains/deadshot.json
index 23e7c38af..8f48d9529 100644
--- a/domains/deadshot.json
+++ b/domains/deadshot.json
@@ -1,12 +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": {
- "CNAME": "deadshotdev.vercel.app"
- }
+ "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/debaditya.json b/domains/debaditya.json
index 01abf58e3..4ea3083e8 100644
--- a/domains/debaditya.json
+++ b/domains/debaditya.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "DebadityaMalakar",
- "email": "debadityamalakar@outlook.com"
- },
- "record": {
- "A": ["76.76.21.21"]
- }
+ "owner": {
+ "username": "DebadityaMalakar",
+ "email": "debadityamalakar@outlook.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
}
diff --git a/domains/debertjamie.json b/domains/debertjamie.json
index 299834afc..44f7c71e3 100644
--- a/domains/debertjamie.json
+++ b/domains/debertjamie.json
@@ -1,6 +1,5 @@
{
"description": "A personal website",
- "repo": "https://github.com/debertjamie",
"owner": {
"username": "debertjamie",
"email": "debert123@protonmail.com"
diff --git a/domains/debjoti-mallick.json b/domains/debjoti-mallick.json
index 1c0c44256..01ed916ab 100644
--- a/domains/debjoti-mallick.json
+++ b/domains/debjoti-mallick.json
@@ -1,6 +1,5 @@
{
"description": "Debjoti's portfolio website",
- "repo": "https://github.com/DebjotiMallick",
"owner": {
"username": "DebjotiMallick",
"email": "debjoti97@gmail.com"
diff --git a/domains/debjotimallick.json b/domains/debjotimallick.json
new file mode 100644
index 000000000..544392a72
--- /dev/null
+++ b/domains/debjotimallick.json
@@ -0,0 +1,14 @@
+{
+ "description": "This subdomain is for my own testing and learning purpose.",
+ "repo": "https://github.com/DebjotiMallick/debjotimallick.github.io",
+ "owner": {
+ "username": "debjotimallick",
+ "email": "debjoti97@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "art.ns.cloudflare.com",
+ "liz.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/debkanchan.json b/domains/debkanchan.json
new file mode 100644
index 000000000..2837274d7
--- /dev/null
+++ b/domains/debkanchan.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/debkanchan/debkanchan.github.io",
+ "owner": {
+ "username": "debkanchan",
+ "email": "debu.samadder@gmail.com"
+ },
+ "record": {
+ "CNAME": "debkanchan.github.io"
+ }
+}
diff --git a/domains/deeptanshu.json b/domains/deeptanshu.json
new file mode 100644
index 000000000..603733909
--- /dev/null
+++ b/domains/deeptanshu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Deeptanshuu",
+ "email": "laldeeptanshu96@gmail.com"
+ },
+ "record": {
+ "CNAME": "deeptanshu.vercel.app"
+ }
+}
diff --git a/domains/default._domainkey.yxz.json b/domains/default._domainkey.yxz.json
index 6ce67104f..c64e4c0a0 100644
--- a/domains/default._domainkey.yxz.json
+++ b/domains/default._domainkey.yxz.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "yz9551",
- "email": "",
"discord": "yz9551"
},
"record": {
diff --git a/domains/demonitize.json b/domains/demonitize.json
index 584370880..e4be0e8a1 100644
--- a/domains/demonitize.json
+++ b/domains/demonitize.json
@@ -6,7 +6,6 @@
"discord": "demonitize"
},
"description": "Probably will use this to redirect to GitHub, because custom domain look cool",
- "repo": "https://github.com/demonitize",
"record": {
"URL": "https://github.com/demonitize",
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
diff --git a/domains/denblo.json b/domains/denblo.json
new file mode 100644
index 000000000..2b03ac82b
--- /dev/null
+++ b/domains/denblo.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/DenisBlokhin/DenisBlokhin.github.io",
+ "owner": {
+ "username": "DenisBlokhin",
+ "email": "denis.blokhin@outlook.com"
+ },
+ "record": {
+ "CNAME": "denisblokhin.github.io"
+ }
+}
diff --git a/domains/denisklimenko.json b/domains/denisklimenko.json
deleted file mode 100644
index b7d688c90..000000000
--- a/domains/denisklimenko.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DenisKlimenko",
- "email": "denis.klimenko.92@gmail.com"
- },
- "record": {
- "NS": ["destiny.ns.cloudflare.com", "kirk.ns.cloudflare.com"]
- }
-}
diff --git a/domains/deniz.json b/domains/deniz.json
index b36d00326..6c785c944 100644
--- a/domains/deniz.json
+++ b/domains/deniz.json
@@ -14,10 +14,7 @@
"185.199.110.153",
"185.199.111.153"
],
- "MX": [
- "mx1.forwardemail.net",
- "mx2.forwardemail.net"
- ],
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
"TXT": [
"forward-email=MDcyNzA3YjVlMTdjNzhhYS1iMzA0NDgxN2RjMmZiODZhODI5Y2UyNmUzNzY5NjJhZWZkMTA4MjBlNDEyYTk3MTc0MjhkN2NlMmQxNWQ5MmFi",
"google-site-verification=9jbck7qUZb10EWndaXLikv_Kx9xQ7DpShwFCttIzA6Q"
diff --git a/domains/denty.json b/domains/denty.json
new file mode 100644
index 000000000..05b03223e
--- /dev/null
+++ b/domains/denty.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dentylife",
+ "email": "dentyaptx@gmail.com"
+ },
+ "record": {
+ "A": ["158.101.152.7"]
+ }
+}
diff --git a/domains/designer.json b/domains/designer.json
index 372fd5d72..7c0068963 100644
--- a/domains/designer.json
+++ b/domains/designer.json
@@ -1,6 +1,5 @@
{
"description": "Designer Slash Developer",
- "repo": "https://github.com/designbyadrian",
"owner": {
"username": "designbyadrian",
"email": "adrian@designbyadrian.com"
diff --git a/domains/dev.wilbur.json b/domains/dev.wilbur.json
deleted file mode 100644
index 37ccb0959..000000000
--- a/domains/dev.wilbur.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ThisCatLikesCrypto",
- "email": "contact@wilburwilliams.uk"
- },
- "record": {
- "CNAME": "dev.ww-projects.pages.dev"
- }
-}
diff --git a/domains/devabh.json b/domains/devabh.json
index d0a2ef59c..30e53989e 100644
--- a/domains/devabh.json
+++ b/domains/devabh.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "devabh96",
- "email": "",
"discord": "760049962544791562",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cj4_MgLnwmfo1F0NcZvbKIKDQ23CcQAIjYT0X3SmU1YAipr02XR4E11TQqZIzlM6hPwbHUbB59OQx_zkcuN9JO2VaTteS_TpZZ8ytvxfdl60QtGhSAD3Q9zm0-oKKAbVEjR-EzEEwpftzw8VwQlQIgiYbXjZibHKp2D3KbKOB3J-C3cl5LBHhMKPFsFj6N12jwFDzrQeDO8mCrTgKX1D3YpiZaVkhMhuKVFwE0V2vXSx-JidQi3yz--KWLsfXZETU8YAVwFsEAroWLcerWOcNPYejvjQ51VMQDqaRz00AkTByNXXWYo1Q4q4wlZJd0wSIoKoK0iuvkPhSacjP6kW4A.yDr4bOjKGS35kiQ-0Tzj5Q.SrpxNDOW7NpFpZmetH-qJMomCelSSw3YTBGL3Vu2AtdYZ1OVQYWk8yhfGU0kVwyB4wAlPIQYaC2UXDqJXrHqSEmcK-P8f0uvKUiwaKHtaEw.Or8kZv4I4r03hoGLMr7MyQ"
},
diff --git a/domains/devanshu.json b/domains/devanshu.json
index 2e357872a..7fccf0a77 100644
--- a/domains/devanshu.json
+++ b/domains/devanshu.json
@@ -1,11 +1,11 @@
{
- "description": "Personal Portfolio",
- "repo": "https://github.com/DevanshuTripathi/portfolio",
- "owner": {
- "username": "DevanshuTripathi",
- "email": "aditheprince120@gmail.com"
- },
- "record": {
- "CNAME": "portfolio-nine-xi-16.vercel.app"
- }
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/DevanshuTripathi/portfolio",
+ "owner": {
+ "username": "DevanshuTripathi",
+ "email": "aditheprince120@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-nine-xi-16.vercel.app"
+ }
}
diff --git a/domains/devcomp.json b/domains/devcomp.json
index 53f875fe9..e23c75814 100644
--- a/domains/devcomp.json
+++ b/domains/devcomp.json
@@ -1,6 +1,5 @@
{
"description": "Cool looking redirection for my site.",
- "repo": "https://github.com/CompeyDev",
"owner": {
"username": "CompeyDev",
"email": "hi@devcomp.xyz"
diff --git a/domains/devghost.json b/domains/devghost.json
new file mode 100644
index 000000000..d28397cfe
--- /dev/null
+++ b/domains/devghost.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/thecodingwizardx/register.git",
+ "owner": {
+ "username": "thecodingwizardx",
+ "email": "murkyaxe@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/devhanza.json b/domains/devhanza.json
index e7e14efc3..e18b914ce 100644
--- a/domains/devhanza.json
+++ b/domains/devhanza.json
@@ -4,6 +4,6 @@
"email": "josephandrew1@logicstreak.com"
},
"record": {
- "URL": "https://hansana.is-a.dev/"
+ "URL": "https://contra.com/devhanza/work"
}
}
diff --git a/domains/hating.devmatei.json b/domains/devm.json
similarity index 73%
rename from domains/hating.devmatei.json
rename to domains/devm.json
index 4b150d5ab..b2447dc4b 100644
--- a/domains/hating.devmatei.json
+++ b/domains/devm.json
@@ -4,6 +4,6 @@
"email": "contact@devmatei.is-a.dev"
},
"record": {
- "A": ["75.2.60.5"]
+ "URL": "https://devmatei.is-a.dev/"
}
}
diff --git a/domains/devma.json b/domains/devma.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/devma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/devmai.json b/domains/devmai.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/devmai.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/devmat.json b/domains/devmat.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/devmat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/devmate.json b/domains/devmate.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/devmate.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/devmatei-again.json b/domains/devmatei-again.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/devmatei-again.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/devmatei.json b/domains/devmatei.json
index 6e3df9b17..f6c3f921e 100644
--- a/domains/devmatei.json
+++ b/domains/devmatei.json
@@ -1,15 +1,11 @@
{
"owner": {
"username": "DevMatei",
- "email": "matei.thoma@gmail.com"
+ "email": "contact@devmatei.is-a.dev",
+ "discord": "784443338627612673",
+ "twitter": "thedevmatei"
},
"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
+ "NS": ["chip.ns.cloudflare.com", "marjory.ns.cloudflare.com"]
+ }
}
diff --git a/domains/devon.json b/domains/devon.json
index 3125a1dc1..0b2827c2f 100644
--- a/domains/devon.json
+++ b/domains/devon.json
@@ -2,8 +2,7 @@
"description": "Devon Powell is a full-stack software engineer",
"repo": "https://github.com/D-Pow/d-pow.github.io",
"owner": {
- "username": "D-Pow",
- "email": "D-Pow@users.noreply.github.com"
+ "username": "D-Pow"
},
"record": {
"CNAME": "d-pow.github.io"
diff --git a/domains/df.json b/domains/df.json
new file mode 100644
index 000000000..01bd43ae8
--- /dev/null
+++ b/domains/df.json
@@ -0,0 +1,11 @@
+{
+ "description": "df's Dev Website",
+ "owner": {
+ "username": "DF-wu",
+ "linkedin": "https://www.linkedin.com/in/chufei-wu-b33990164/",
+ "email": "df@dfder.tw"
+ },
+ "record": {
+ "CNAME": "df-wu.github.io"
+ }
+}
diff --git a/domains/dharamvir.json b/domains/dharamvir.json
new file mode 100644
index 000000000..543e4aa8f
--- /dev/null
+++ b/domains/dharamvir.json
@@ -0,0 +1,10 @@
+{
+ "domain": "dharamvir.is-a.dev",
+ "owner": {
+ "email": "gohildharamvirsinh1530@gmail.com",
+ "github": "DH4R4M"
+ },
+ "record": {
+ "CNAME": "DH4R4M.github.io"
+ }
+}
diff --git a/domains/dhika.json b/domains/dhika.json
index bfc71ba0b..b9b373f36 100644
--- a/domains/dhika.json
+++ b/domains/dhika.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "thisisdhika",
- "email": "dhikaardana87@gmail.com"
- },
- "record": {
- "CNAME": "thisisdhika.vercel.app"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "thisisdhika",
+ "email": "dhikaardana87@gmail.com"
+ },
+ "record": {
+ "CNAME": "thisisdhika.vercel.app"
+ }
+}
diff --git a/domains/dhp2010.json b/domains/dhp2010.json
new file mode 100644
index 000000000..37db9af35
--- /dev/null
+++ b/domains/dhp2010.json
@@ -0,0 +1,17 @@
+{
+ "description": "My personal DHPhuc's website.",
+ "owner": {
+ "username": "dhp5621",
+ "email": "daohongphuc1112010@hotmail.com"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/dhruvkoshta.json b/domains/dhruvkoshta.json
new file mode 100644
index 000000000..73f56b446
--- /dev/null
+++ b/domains/dhruvkoshta.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/Dhruvkoshta/Dhruvkoshta.github.io",
+ "description": "portfolio site",
+ "owner": {
+ "username": "Dhruvkoshta",
+ "email": "dhruvkoshta@gmail.com"
+ },
+ "record": {
+ "CNAME": "dhruvkoshta.github.io"
+ }
+}
diff --git a/domains/dialguiba.json b/domains/dialguiba.json
new file mode 100644
index 000000000..d71095dc0
--- /dev/null
+++ b/domains/dialguiba.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dialguiba",
+ "email": "dialguiba@gmail.com"
+ },
+ "record": {
+ "CNAME": "dialguiba.netlify.app"
+ }
+}
diff --git a/domains/diegoreis.json b/domains/diegoreis.json
new file mode 100644
index 000000000..ae5007d70
--- /dev/null
+++ b/domains/diegoreis.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "diegoreis42",
+ "email": "reisdiego144@gmail.com"
+ },
+ "record": {
+ "CNAME": "diegoreis42.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/dikshantsingh.json b/domains/dikshantsingh.json
new file mode 100644
index 000000000..f37339670
--- /dev/null
+++ b/domains/dikshantsingh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dikshantsingh510",
+ "email": "dikshantsingh510@gmail.com"
+ },
+ "record": {
+ "CNAME": "dikshantsingh510.github.io"
+ }
+}
diff --git a/domains/dilpreetgrover.json b/domains/dilpreetgrover.json
new file mode 100644
index 000000000..4b976223f
--- /dev/null
+++ b/domains/dilpreetgrover.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "dfordp",
+ "email": "dilpreetgrover2@gmail.com",
+ "discord": "dfordp"
+ },
+ "record": {
+ "CNAME": "dilpreetgrover.vercel.app"
+ }
+}
diff --git a/domains/dincer-portfolio.json b/domains/dincer-portfolio.json
new file mode 100644
index 000000000..206c57d6f
--- /dev/null
+++ b/domains/dincer-portfolio.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DincerOgren",
+ "email": "dincer.ogr@hotmail.com"
+ },
+ "record": {
+ "CNAME": "dincerogren.github.io"
+ },
+ "proxied": false
+}
diff --git a/domains/dipesh.json b/domains/dipesh.json
new file mode 100644
index 000000000..1e90ab839
--- /dev/null
+++ b/domains/dipesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dipesh79",
+ "email": "dipeshkhanal79@gmail.com"
+ },
+ "record": {
+ "A": ["192.250.235.27"]
+ }
+}
diff --git a/domains/discord-lakshishere.json b/domains/discord-lakshishere.json
new file mode 100644
index 000000000..7a03c091c
--- /dev/null
+++ b/domains/discord-lakshishere.json
@@ -0,0 +1,11 @@
+{
+ "description": "Welcome to my experimental domain",
+ "repo": "https://github.com/WebLux7/WebLux",
+ "owner": {
+ "username": "WebLux7",
+ "email": "lucky7049sp@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/WebLux7"
+ }
+}
diff --git a/domains/discordlakshishere.json b/domains/discordlakshishere.json
new file mode 100644
index 000000000..7a03c091c
--- /dev/null
+++ b/domains/discordlakshishere.json
@@ -0,0 +1,11 @@
+{
+ "description": "Welcome to my experimental domain",
+ "repo": "https://github.com/WebLux7/WebLux",
+ "owner": {
+ "username": "WebLux7",
+ "email": "lucky7049sp@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/WebLux7"
+ }
+}
diff --git a/domains/dishant.json b/domains/dishant.json
new file mode 100644
index 000000000..cc84bd77c
--- /dev/null
+++ b/domains/dishant.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/Dishant402955/Portfolio",
+ "owner": {
+ "username": "Dishant402955",
+ "email": "dishantradadiya3036@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-dishants-projects-6881d6c0.vercel.app"
+ }
+}
diff --git a/domains/divyanshudhruv.json b/domains/divyanshudhruv.json
index 4e927568d..351a5b287 100644
--- a/domains/divyanshudhruv.json
+++ b/domains/divyanshudhruv.json
@@ -1,11 +1,9 @@
{
- "description": "Its just my portfolio :)",
- "repo": "https://github.com/divyanshudhruv/divyanshudhruv.github.io",
"owner": {
"username": "divyanshudhruv",
"email": "divyanshudhruv24@gmail.com"
},
"record": {
- "CNAME": "divyanshudhruv.netlify.app"
+ "CNAME": "divyanshudhruv.vercel.app"
}
}
diff --git a/domains/divyanshuvashu.json b/domains/divyanshuvashu.json
new file mode 100644
index 000000000..f92b3a4e2
--- /dev/null
+++ b/domains/divyanshuvashu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "divyanshu-vashu",
+ "email": "vashusingh2004.jan@gmail.com",
+ "discord": "ram_ravan69"
+ },
+ "record": {
+ "CNAME": "divyanshusingh.vercel.app"
+ }
+}
diff --git a/domains/diwash.json b/domains/diwash.json
new file mode 100644
index 000000000..520ca51cd
--- /dev/null
+++ b/domains/diwash.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Diwash-7",
+ "email": "rimaldiwash7@gmail.com"
+ },
+ "record": {
+ "CNAME": "diwash-7.github.io"
+ }
+}
diff --git a/domains/djaana.json b/domains/djaana.json
new file mode 100644
index 000000000..7a3a0d4f8
--- /dev/null
+++ b/domains/djaana.json
@@ -0,0 +1,12 @@
+{
+ "description": "For a personnal portfolio",
+ "repo": "https://github.com/djaana/djaana.github.io",
+ "owner": {
+ "username": "djaana",
+ "discord": "djaana",
+ "instagram": "dja.huh"
+ },
+ "record": {
+ "CNAME": "djaana.github.io"
+ }
+}
diff --git a/domains/djangounet.json b/domains/djangounet.json
new file mode 100644
index 000000000..328104eb0
--- /dev/null
+++ b/domains/djangounet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "keltroth",
+ "email": "contact@djangojanny.net"
+ },
+ "record": {
+ "CNAME": "www.djangojanny.net"
+ }
+}
diff --git a/domains/dkim._domainkey.ciaobot.json b/domains/dkim._domainkey.ciaobot.json
deleted file mode 100644
index 3685925f3..000000000
--- a/domains/dkim._domainkey.ciaobot.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Ciao287",
- "discord": "687333016921440317"
- },
- "record": {
- "TXT": "v=DKIM1;k=rsa;t=s;s=email;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwbNDcpNQR0T591UH23v8yi6SKmOV4uddxKFNUDcX1NmB/Q4evuJEGDY8qmwB9eFuZCoBAOKjAoU+vB+WH7mdj6F73zshPB3mEtISHR2Fbo2zONf3VXmO5NE5/jKcN1bmzDGEBj+gUzOTrnAGDcj65UCtKWx0F1rOboRTzCId2rCTPc9nBnOSpVsYNlhlebeDbxapzZ1wBQcCzQGangYisKjSM6IM4ztSrONkVluCdPIl6AkiUUvN6PnDKc8LBkFMHnpDfbFUQIufURxoqEfP4xYT5cZNOT/3RbrI5rjR2kdeIufsO+QlQ5XXRv/QETJgtOKTeCzPmc243KGlx9NsiQIDAQAB"
- }
-}
diff --git a/domains/dkim._domainkey.sewt.json b/domains/dkim._domainkey.sewt.json
new file mode 100644
index 000000000..a6f8f1dd3
--- /dev/null
+++ b/domains/dkim._domainkey.sewt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SkyExploreWasTaken",
+ "discord": "1049263707177353247"
+ },
+ "record": {
+ "CNAME": "dkim._domainkey.simplelogin.co"
+ }
+}
diff --git a/domains/dkim02._domainkey.sewt.json b/domains/dkim02._domainkey.sewt.json
new file mode 100644
index 000000000..bde56b46b
--- /dev/null
+++ b/domains/dkim02._domainkey.sewt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SkyExploreWasTaken",
+ "discord": "1049263707177353247"
+ },
+ "record": {
+ "CNAME": "dkim02._domainkey.simplelogin.co"
+ }
+}
diff --git a/domains/dkim03._domainkey.sewt.json b/domains/dkim03._domainkey.sewt.json
new file mode 100644
index 000000000..b79fc8f11
--- /dev/null
+++ b/domains/dkim03._domainkey.sewt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SkyExploreWasTaken",
+ "discord": "1049263707177353247"
+ },
+ "record": {
+ "CNAME": "dkim03._domainkey.simplelogin.co"
+ }
+}
diff --git a/domains/dllb.json b/domains/dllb.json
new file mode 100644
index 000000000..6af3be5c9
--- /dev/null
+++ b/domains/dllb.json
@@ -0,0 +1,11 @@
+{
+ "description": "This repo contains my personal portfolio site.",
+ "repo": "https://github.com/dllbdev/homepage",
+ "owner": {
+ "username": "dllbdev",
+ "email": "dllb.dev@proton.me"
+ },
+ "record": {
+ "CNAME": "dllbdev.github.io"
+ }
+}
diff --git a/domains/dm.json b/domains/dm.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/dm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/dmc.json b/domains/dmc.json
index 5b82649b2..238c7c274 100644
--- a/domains/dmc.json
+++ b/domains/dmc.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "morcu",
- "email": "david.morcuende.c@gmail.com"
- },
- "record": {
- "CNAME": "davidmorcuende.com"
- }
+ "owner": {
+ "username": "morcu",
+ "email": "david.morcuende.c@gmail.com"
+ },
+ "record": {
+ "CNAME": "davidmorcuende.com"
+ }
}
diff --git a/domains/dmi.json b/domains/dmi.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/dmi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/doansilinh.json b/domains/doansilinh.json
new file mode 100644
index 000000000..1d8747c17
--- /dev/null
+++ b/domains/doansilinh.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "doansilinh"
+ },
+ "record": {
+ "CNAME": "doansilinh.github.io"
+ }
+}
diff --git a/domains/docs.abdullahcxd.json b/domains/docs.abdullahcxd.json
new file mode 100644
index 000000000..0364a1347
--- /dev/null
+++ b/domains/docs.abdullahcxd.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "abdullahcxd",
+ "email": "sabdullahcxd@gmail.com",
+ "discord": "sabdullahcxd"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/docs.devmatei.json b/domains/docs.devmatei.json
deleted file mode 100644
index 630ec0d94..000000000
--- a/domains/docs.devmatei.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DevMatei",
- "email": "matei.thoma@gmail.com"
- },
- "record": {
- "A": ["75.2.60.5"]
- }
-}
diff --git a/domains/dodongduc.json b/domains/dodongduc.json
new file mode 100644
index 000000000..fc67b2dc4
--- /dev/null
+++ b/domains/dodongduc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "duc3d-hus",
+ "email": "duc3d.hus@gmail.com"
+ },
+ "record": {
+ "CNAME": "duc3d-hus.github.io"
+ }
+}
diff --git a/domains/dokiet.json b/domains/dokiet.json
new file mode 100644
index 000000000..27d684591
--- /dev/null
+++ b/domains/dokiet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kietdo-dev",
+ "email": "lionvs12345@gmail.com"
+ },
+ "record": {
+ "CNAME": "dokiet.vercel.app"
+ }
+}
diff --git a/domains/donald.json b/domains/donald.json
new file mode 100644
index 000000000..7598d7cd9
--- /dev/null
+++ b/domains/donald.json
@@ -0,0 +1,10 @@
+{
+ "description": "Donald's personal developer website",
+ "owner": {
+ "email": "dawntop@126.com",
+ "username": "donald001"
+ },
+ "record": {
+ "CNAME": "donald001.github.io"
+ }
+}
diff --git a/domains/doncho.json b/domains/doncho.json
index 05604e539..d0b1990db 100644
--- a/domains/doncho.json
+++ b/domains/doncho.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "donangel",
- "email": "public@doncho.net"
- },
- "record": {
- "URL": "https://doncho.net"
- }
+ "owner": {
+ "username": "donangel",
+ "email": "public@doncho.net"
+ },
+ "record": {
+ "URL": "https://doncho.net"
+ }
}
diff --git a/domains/dongtran.json b/domains/dongtran.json
new file mode 100644
index 000000000..e3ba5a3da
--- /dev/null
+++ b/domains/dongtran.json
@@ -0,0 +1,10 @@
+{
+ "description": "dongtran.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "dongitran",
+ "email": "thiendong.iuh@gmail.com"
+ },
+ "record": {
+ "URL": "https://devvui.one"
+ }
+}
diff --git a/domains/dotexe3301.json b/domains/dotexe3301.json
index 13db28263..a8298e3b9 100644
--- a/domains/dotexe3301.json
+++ b/domains/dotexe3301.json
@@ -1,11 +1,11 @@
{
- "description": "For my GitHub Pages URL",
- "repo": "https://github.com/dotexe3301/dotexe3301.github.io",
- "owner": {
- "username": "dotexe3301",
- "email": "shiveshvijay707@gmail.com"
- },
- "record": {
- "CNAME": "dotexe3301.github.io"
- }
+ "description": "For my GitHub Pages URL",
+ "repo": "https://github.com/dotexe3301/dotexe3301.github.io",
+ "owner": {
+ "username": "dotexe3301",
+ "email": "shiveshvijay707@gmail.com"
+ },
+ "record": {
+ "CNAME": "dotexe3301.github.io"
+ }
}
diff --git a/domains/doug.json b/domains/doug.json
new file mode 100644
index 000000000..e0498d91f
--- /dev/null
+++ b/domains/doug.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/drssoccer55/drssoccer55.github.io",
+ "owner": {
+ "username": "drssoccer55",
+ "email": "sextondouglas@pm.me"
+ },
+ "record": {
+ "CNAME": "drssoccer55.github.io"
+ }
+}
diff --git a/domains/douglas.json b/domains/douglas.json
new file mode 100644
index 000000000..e56eba916
--- /dev/null
+++ b/domains/douglas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "standingdreams",
+ "email": "designer.drogers@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/draken.json b/domains/draken.json
new file mode 100644
index 000000000..6a9ddae49
--- /dev/null
+++ b/domains/draken.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dragonx943",
+ "email": "premieregirl26@gmail.com"
+ },
+ "record": {
+ "CNAME": "ec2-54-254-71-100.ap-southeast-1.compute.amazonaws.com"
+ }
+}
diff --git a/domains/drbaph.json b/domains/drbaph.json
new file mode 100644
index 000000000..1660188a8
--- /dev/null
+++ b/domains/drbaph.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Saganaki22",
+ "email": "info@drbaph.dev"
+ },
+ "record": {
+ "CNAME": "saganaki22.github.io"
+ }
+}
diff --git a/domains/drew.json b/domains/drew.json
index bd7232463..94b4df25b 100644
--- a/domains/drew.json
+++ b/domains/drew.json
@@ -6,6 +6,6 @@
"email": "regime-pluck-gulf@duck.com"
},
"record": {
- "CNAME": "zessu.github.io"
+ "CNAME": "zessu-github-io-7l1v.vercel.app"
}
}
diff --git a/domains/dsuescun.json b/domains/dsuescun.json
index d7a467d09..020fe8922 100644
--- a/domains/dsuescun.json
+++ b/domains/dsuescun.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "dsuescun",
- "email": "dsuescun@soinsoluciones.com"
- },
- "record": {
- "CNAME": "dsuescun.github.io"
- }
+ "owner": {
+ "username": "dsuescun",
+ "email": "dsuescun@soinsoluciones.com"
+ },
+ "record": {
+ "CNAME": "dsuescun.github.io"
+ }
}
diff --git a/domains/dtducas.json b/domains/dtducas.json
new file mode 100644
index 000000000..d29c1ed94
--- /dev/null
+++ b/domains/dtducas.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website for DTDucas",
+ "repo": "https://github.com/DTDucas",
+ "owner": {
+ "username": "DTDucas",
+ "email": "baymax.contact@gmail.com"
+ },
+ "record": {
+ "CNAME": "dtducas.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/dtdung.json b/domains/dtdung.json
new file mode 100644
index 000000000..e275ee0c9
--- /dev/null
+++ b/domains/dtdung.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "dtdung07"
+ },
+ "record": {
+ "URL": "https://dtdung.us.to"
+ }
+}
diff --git a/domains/duanyang.json b/domains/duanyang.json
new file mode 100644
index 000000000..c9cc5fa86
--- /dev/null
+++ b/domains/duanyang.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Mrliduanyang",
+ "email": "duanyangchn@gmail.com"
+ },
+ "record": {
+ "CNAME": "duanyang.cool"
+ },
+ "proxied": false
+}
diff --git a/domains/duc.json b/domains/duc.json
new file mode 100644
index 000000000..c4e199714
--- /dev/null
+++ b/domains/duc.json
@@ -0,0 +1,11 @@
+{
+ "description": "duc.is-a.dev",
+ "repo": "https://github.com/duc-ios/duc-ios.github.io",
+ "owner": {
+ "username": "duc-ios",
+ "email": "hi@duk.one"
+ },
+ "record": {
+ "CNAME": "duc-ios.github.io"
+ }
+}
diff --git a/domains/duck.json b/domains/duck.json
index 38cb2521a..c64483062 100644
--- a/domains/duck.json
+++ b/domains/duck.json
@@ -4,6 +4,6 @@
"email": "serverdeveloper@duck.com"
},
"record": {
- "CNAME": "serverdeveloper9447.github.io"
+ "CNAME": "soumalya-galaxy-portfolio-23.pages.dev"
}
}
diff --git a/domains/ducky.json b/domains/ducky.json
index 7fbd73b13..c16b942d5 100644
--- a/domains/ducky.json
+++ b/domains/ducky.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/ducky4life/ducky4life.github.io",
- "owner": {
- "username": "ducky4life",
- "email": "duckylai@proton.me"
- },
- "record": {
- "CNAME": "ducky4life.github.io"
- }
+ "repo": "https://github.com/ducky4life/ducky4life.github.io",
+ "owner": {
+ "username": "ducky4life",
+ "email": "duckylai@proton.me"
+ },
+ "record": {
+ "CNAME": "ducky4life.github.io"
+ }
}
diff --git a/domains/duong-viet-hoang.json b/domains/duong-viet-hoang.json
new file mode 100644
index 000000000..1cd5a3c30
--- /dev/null
+++ b/domains/duong-viet-hoang.json
@@ -0,0 +1,10 @@
+{
+ "description": "My personal developer portfolio.",
+ "owner": {
+ "username": "bocanhcam",
+ "email": "hora.alien@gmail.com"
+ },
+ "record": {
+ "CNAME": "bocanhcam.github.io"
+ }
+}
diff --git a/domains/duyhandsome.json b/domains/duyhandsome.json
new file mode 100644
index 000000000..0210a29ec
--- /dev/null
+++ b/domains/duyhandsome.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "dominhduy09"
+ },
+ "record": {
+ "URL": "https://dominhduy09.github.io/profile/"
+ }
+}
diff --git a/domains/duyhuyhoang.json b/domains/duyhuyhoang.json
new file mode 100644
index 000000000..6a93937d6
--- /dev/null
+++ b/domains/duyhuyhoang.json
@@ -0,0 +1,20 @@
+{
+ "description": "duyhuyhoang.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "nguyenkimduy180697",
+ "email": "nguyenkimduy180697@gmail.com"
+ },
+ "record": {
+ "URL": "https://nguyenkimduy.com/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/nguyenkimduy180697",
+ "/fb": "https://facebook.com/nguyenkimduy180697",
+ "/instagram": "https://instagram.com/nguyenkimduy180697/",
+ "/linkedin": "https://linkedin.com/in/nguyenkimduy180697",
+ "/viblo": "https://viblo.asia/u/nguyenkimduy180697"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/duynguyen.json b/domains/duynguyen.json
new file mode 100644
index 000000000..959a33e0c
--- /dev/null
+++ b/domains/duynguyen.json
@@ -0,0 +1,20 @@
+{
+ "description": "duynguyen.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "nguyenkimduy180697",
+ "email": "nguyenkimduy180697@gmail.com"
+ },
+ "record": {
+ "URL": "https://nguyenkimduy.com/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/nguyenkimduy180697",
+ "/fb": "https://facebook.com/nguyenkimduy180697",
+ "/instagram": "https://instagram.com/nguyenkimduy180697/",
+ "/linkedin": "https://linkedin.com/in/nguyenkimduy180697",
+ "/viblo": "https://viblo.asia/u/nguyenkimduy180697"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/duynguyenkim.json b/domains/duynguyenkim.json
new file mode 100644
index 000000000..ac19e426c
--- /dev/null
+++ b/domains/duynguyenkim.json
@@ -0,0 +1,20 @@
+{
+ "description": "duynguyenkim.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "nguyenkimduy180697",
+ "email": "nguyenkimduy180697@gmail.com"
+ },
+ "record": {
+ "URL": "https://nguyenkimduy.com/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/nguyenkimduy180697",
+ "/fb": "https://facebook.com/nguyenkimduy180697",
+ "/instagram": "https://instagram.com/nguyenkimduy180697/",
+ "/linkedin": "https://linkedin.com/in/nguyenkimduy180697",
+ "/viblo": "https://viblo.asia/u/nguyenkimduy180697"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/duypt14.json b/domains/duypt14.json
new file mode 100644
index 000000000..5fe5977e1
--- /dev/null
+++ b/domains/duypt14.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ptduy14",
+ "email": "phantanduy14@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-ptduy14s-projects.vercel.app"
+ }
+}
diff --git a/domains/duzo.json b/domains/duzo.json
index ce7022753..06d3efebc 100644
--- a/domains/duzo.json
+++ b/domains/duzo.json
@@ -2,8 +2,7 @@
"description": "For Duzo's website",
"repo": "https://github.com/Duzos/duzos.github.io",
"owner": {
- "username": "Duzos",
- "email": "73184526+Duzos@users.noreply.github.com"
+ "username": "Duzos"
},
"record": {
"CNAME": "duzos.github.io"
diff --git a/domains/dvm.json b/domains/dvm.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/dvm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/dvmi.json b/domains/dvmi.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/dvmi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/dwij.json b/domains/dwij.json
new file mode 100644
index 000000000..f5e68a07a
--- /dev/null
+++ b/domains/dwij.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ssd39",
+ "email": "dwij@xylic.ai"
+ },
+ "record": {
+ "URL": "https://github.com/ssd39"
+ }
+}
diff --git a/domains/ebooks.json b/domains/ebooks.json
index f5c93222d..1b06c40f0 100644
--- a/domains/ebooks.json
+++ b/domains/ebooks.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "tuannguyen2002",
- "email": "",
- "discord": "minhtuan9039"
- },
- "record": {
- "CNAME": "ebooks-online-opal.vercel.app"
- }
+ "owner": {
+ "username": "tuannguyen2002",
+ "discord": "minhtuan9039"
+ },
+ "record": {
+ "CNAME": "ebooks-online-opal.vercel.app"
+ }
}
diff --git a/domains/ebrahim.json b/domains/ebrahim.json
new file mode 100644
index 000000000..97df6a1a2
--- /dev/null
+++ b/domains/ebrahim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ebrahimHakimuddin",
+ "email": "ebrahimhakimuddin@gmail.com"
+ },
+ "record": {
+ "CNAME": "ebrahimhakimuddin.github.io"
+ }
+}
diff --git a/domains/ed-henrique.json b/domains/ed-henrique.json
new file mode 100644
index 000000000..d3f418353
--- /dev/null
+++ b/domains/ed-henrique.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal blog",
+ "repo": "https://github.com/ed-henrique/blog",
+ "owner": {
+ "username": "ed-henrique",
+ "email": "edu.hen.fm@gmail.com"
+ },
+ "record": {
+ "CNAME": "ed-henrique.com"
+ }
+}
diff --git a/domains/educatedsuddenbucket.json b/domains/educatedsuddenbucket.json
index e35d7591e..a4d17f0c7 100644
--- a/domains/educatedsuddenbucket.json
+++ b/domains/educatedsuddenbucket.json
@@ -5,7 +5,16 @@
},
"record": {
"A": [
- "185.199.108.153"
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
],
"TXT": [
"google-site-verification=hS8B2hSz-rNk6gLRnwaZjxuJE9rCLU_25X65JsLEczE",
diff --git a/domains/efe.json b/domains/efe.json
index 17272cdac..6362c3684 100644
--- a/domains/efe.json
+++ b/domains/efe.json
@@ -1,6 +1,5 @@
{
"description": "personal website",
- "repo": "https://github.com/0x656665",
"owner": {
"username": "0x656665",
"email": "efe@tutanota.de"
diff --git a/domains/elanchezhiyan-p.json b/domains/elanchezhiyan-p.json
new file mode 100644
index 000000000..d0649fc5b
--- /dev/null
+++ b/domains/elanchezhiyan-p.json
@@ -0,0 +1,11 @@
+{
+ "description": "Elanchezhiyan's personal developer website",
+ "repo": "https://github.com/Elanchezhiyan-P/Elanchezhiyan-P.git",
+ "owner": {
+ "username": "Elanchezhiyan-P",
+ "email": "elanche97@gmail.com"
+ },
+ "record": {
+ "CNAME": "elanchezhiyan-p.github.io"
+ }
+}
diff --git a/domains/elbek.json b/domains/elbek.json
new file mode 100644
index 000000000..615779395
--- /dev/null
+++ b/domains/elbek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "khamdullaevuz",
+ "email": "elbek.khamdullaev@gmail.com"
+ },
+ "record": {
+ "CNAME": "khamdullaevuz.github.io"
+ }
+}
diff --git a/domains/element.json b/domains/element.json
new file mode 100644
index 000000000..8b0d30fa5
--- /dev/null
+++ b/domains/element.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/playreaver/reaverlauncher",
+ "owner": {
+ "username": "playreaver",
+ "email": "reaver.entertainment@hotmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/eletrixtime.json b/domains/eletrixtime.json
deleted file mode 100644
index 39bb05d91..000000000
--- a/domains/eletrixtime.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "EletrixtimeYT",
- "email": "lisandro.b@outlook.com"
- },
- "record": {
- "CNAME": "eletrixtimeyt.github.io"
- }
-}
diff --git a/domains/eli.json b/domains/eli.json
new file mode 100644
index 000000000..264a680fc
--- /dev/null
+++ b/domains/eli.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "elisoreal"
+ },
+ "record": {
+ "CNAME": "elisoreal.github.io"
+ }
+}
diff --git a/domains/elib0.json b/domains/elib0.json
new file mode 100644
index 000000000..dfb6c8537
--- /dev/null
+++ b/domains/elib0.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "elib0",
+ "email": "elijose.c@gmail.com"
+ },
+ "record": {
+ "CNAME": "elib0.github.io"
+ }
+}
diff --git a/domains/elulolaito.json b/domains/elulolaito.json
deleted file mode 100644
index ff267d0ca..000000000
--- a/domains/elulolaito.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "elulolaito",
- "email": "eru.lawliet.death@gmail.com"
- },
- "record": {
- "CNAME": "elulolaito.github.io"
- }
-}
diff --git a/domains/elvis-tran.json b/domains/elvis-tran.json
index cf42555d9..4f8015f16 100644
--- a/domains/elvis-tran.json
+++ b/domains/elvis-tran.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "totargaming",
- "email": "elvistranhere@gmail.com",
- "discord": "elvistran.here"
- },
- "record": {
- "CNAME": "elvis-tran.vercel.app"
- }
+ "owner": {
+ "username": "totargaming",
+ "email": "elvistranhere@gmail.com",
+ "discord": "elvistran.here"
+ },
+ "record": {
+ "CNAME": "elvis-tran.vercel.app"
+ }
}
diff --git a/domains/elyazid.json b/domains/elyazid.json
new file mode 100644
index 000000000..e5be93cc5
--- /dev/null
+++ b/domains/elyazid.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/MrElyazid/MrElyazid.github.io",
+ "owner": {
+ "username": "MrElyazid",
+ "email": "elyazid.assouli@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrelyazid.github.io"
+ }
+}
diff --git a/domains/elyesghorbel.json b/domains/elyesghorbel.json
new file mode 100644
index 000000000..c57e727aa
--- /dev/null
+++ b/domains/elyesghorbel.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "elyescesar",
+ "email": "elyesghorbeldev@gmail.com",
+ "discord": "840182191244705802"
+ },
+ "record": {
+ "CNAME": "portfolio-git-master-elyescesars-projects.vercel.app"
+ }
+}
diff --git a/domains/emanuel-prado.json b/domains/emanuel-prado.json
new file mode 100644
index 000000000..15fd64130
--- /dev/null
+++ b/domains/emanuel-prado.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "emanu-dev",
+ "email": "emanuel.prado.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "meteoric-swarm.vercel.app"
+ }
+}
diff --git a/domains/emojisteg.json b/domains/emojisteg.json
new file mode 100644
index 000000000..1e54e92f5
--- /dev/null
+++ b/domains/emojisteg.json
@@ -0,0 +1,12 @@
+{
+ "description": "Cloudflare Pages site for emojisteg",
+ "repo": "https://github.com/carterlasalle/emojistega",
+ "owner": {
+ "username": "carterlasalle",
+ "email": "carterlasalle@gmail.com"
+ },
+ "record": {
+ "CNAME": "emojistega.pages.dev"
+ },
+ "proxied": true
+}
diff --git a/domains/emsi.json b/domains/emsi.json
new file mode 100644
index 000000000..12695032c
--- /dev/null
+++ b/domains/emsi.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "emsi"
+ },
+ "record": {
+ "NS": ["braelyn.ns.cloudflare.com", "ed.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/encoder.js.json b/domains/encoder.js.json
new file mode 100644
index 000000000..404d2c8d6
--- /dev/null
+++ b/domains/encoder.js.json
@@ -0,0 +1,21 @@
+{
+ "description": "Encoder.js",
+ "repo": "https://github.com/JustStudio7/Encoder",
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "TXT": [
+ "google-site-verification=P7ELjV5zIY2_cPQKYzlhvdzVPxBvXm9xKXeRBo4VgGE",
+ "yandex-verification: 82b564dd74f37b10"
+ ]
+ }
+}
diff --git a/domains/endeade.json b/domains/endeade.json
deleted file mode 100644
index bf33c7e37..000000000
--- a/domains/endeade.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Endeade",
- "email": "endeade80@gmail.com",
- "discord": "1117869855538942032"
- },
- "record": {
- "CNAME": "endeade.github.io"
- }
-}
diff --git a/domains/endless.json b/domains/endless.json
new file mode 100644
index 000000000..2ab6bb03e
--- /dev/null
+++ b/domains/endless.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "endlesssb",
+ "email": "heisgenburgthecook@gmail.com"
+ },
+ "record": {
+ "URL": "https://donaldlyon.com"
+ }
+}
diff --git a/domains/enough.json b/domains/enough.json
new file mode 100644
index 000000000..60cff046e
--- /dev/null
+++ b/domains/enough.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/Enoughsdv/Enoughsdv.github.io",
+ "owner": {
+ "username": "Enoughsdv",
+ "email": "enoughsdv@gmail.com"
+ },
+ "record": {
+ "CNAME": "enoughsdv.github.io"
+ }
+}
diff --git a/domains/enzomazzariol.json b/domains/enzomazzariol.json
new file mode 100644
index 000000000..70cfa4472
--- /dev/null
+++ b/domains/enzomazzariol.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "enzomazzariol",
+ "email": "mazzariolenzo@gmail.com"
+ },
+ "record": {
+ "CNAME": "enzomazzariol.netlify.app"
+ }
+}
diff --git a/domains/epic.json b/domains/epic.json
index 831aa269e..6841c4266 100644
--- a/domains/epic.json
+++ b/domains/epic.json
@@ -1,6 +1,5 @@
{
"description": "Epic's github",
- "repo": "https://github.com/tag-epic",
"owner": {
"username": "tag-epic",
"email": "tagepicuwu@gmail.com"
diff --git a/domains/epnq.json b/domains/epnq.json
index 2d6b4d5ea..d35fed315 100644
--- a/domains/epnq.json
+++ b/domains/epnq.json
@@ -1,6 +1,5 @@
{
"description": "Personal Site",
- "repo": "https://github.com/wensente27",
"owner": {
"username": "wensente27",
"twitter": "pnqe_eli"
diff --git a/domains/eric-dahl.json b/domains/eric-dahl.json
new file mode 100644
index 000000000..01a3d1239
--- /dev/null
+++ b/domains/eric-dahl.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "Skeyelab"
+ },
+ "record": {
+ "URL": "https://cv.ericdahl.dev"
+ }
+}
diff --git a/domains/eric.json b/domains/eric.json
index d316896b6..38f55c8f1 100644
--- a/domains/eric.json
+++ b/domains/eric.json
@@ -1,6 +1,5 @@
{
"description": "Eric's website and blog",
- "repo": "https://github.com/yurrriq",
"owner": {
"username": "yurrriq",
"email": "eric@ericb.me"
diff --git a/domains/ericlin.json b/domains/ericlin.json
index 402b27616..a12d159cc 100644
--- a/domains/ericlin.json
+++ b/domains/ericlin.json
@@ -1,11 +1,11 @@
{
- "description": "To get a cool looking subdomain for my portfolio hosted on netlify",
- "repo": "https://github.com/ericafk0001/Portfolio.git",
- "owner": {
- "username": "ericafk0001",
- "email": "dxslyofficial@gmail.com"
- },
- "record": {
- "A": ["75.2.60.5"]
- }
+ "description": "To get a cool looking subdomain for my portfolio hosted on netlify",
+ "repo": "https://github.com/ericafk0001/Portfolio.git",
+ "owner": {
+ "username": "ericafk0001",
+ "email": "dxslyofficial@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
}
diff --git a/domains/ericthomas.json b/domains/ericthomas.json
index 655a0aa7b..b0c204910 100644
--- a/domains/ericthomas.json
+++ b/domains/ericthomas.json
@@ -1,6 +1,5 @@
{
"description": "Eric Thomas' Portfolio",
- "repo": "https://github.com/ericthomasca",
"owner": {
"username": "ericthomasca",
"email": "eric@ericthomas.ca"
diff --git a/domains/erik.json b/domains/erik.json
index a8c435604..3816969fd 100644
--- a/domains/erik.json
+++ b/domains/erik.json
@@ -1,6 +1,5 @@
{
"description": "Erik Personal Website",
- "repo": "https://github.com/Erik3010",
"owner": {
"username": "erik3010",
"email": "erikhau3010@gmail.com"
diff --git a/domains/erisa.json b/domains/erisa.json
index 718677080..e71907dbe 100644
--- a/domains/erisa.json
+++ b/domains/erisa.json
@@ -1,6 +1,5 @@
{
"description": "Blog for Erisa A.",
- "repo": "https://github.com/Erisa",
"owner": {
"username": "Erisa",
"email": "seriel@erisa.moe"
diff --git a/domains/ermal.json b/domains/ermal.json
index 1d12d243e..fd0e1f54a 100644
--- a/domains/ermal.json
+++ b/domains/ermal.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ErmalHasani",
- "email": "ermalhasani15@gmail.com"
- },
- "record": {
- "CNAME": "terminalportfolio-2wp.pages.dev"
- }
+ "owner": {
+ "username": "ErmalHasani",
+ "email": "ermalhasani15@gmail.com"
+ },
+ "record": {
+ "CNAME": "terminalportfolio-2wp.pages.dev"
+ }
}
diff --git a/domains/eshanized.json b/domains/eshanized.json
new file mode 100644
index 000000000..e7f9d5de0
--- /dev/null
+++ b/domains/eshanized.json
@@ -0,0 +1,11 @@
+{
+ "description": "eshanized.is-a.dev",
+ "repo": "https://github.com/eshanized/eshanized.github.io",
+ "owner": {
+ "username": "eshanized",
+ "email": "m.eshanized@gmail.com"
+ },
+ "record": {
+ "CNAME": "eshanized.github.io"
+ }
+}
diff --git a/domains/etercore.json b/domains/etercore.json
new file mode 100644
index 000000000..a20c97deb
--- /dev/null
+++ b/domains/etercore.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ramirosanchezaranda",
+ "email": "etercoredesignweb@gmail.com"
+ },
+ "record": {
+ "CNAME": "etercore.vercel.app"
+ }
+}
diff --git a/domains/eternasuno.json b/domains/eternasuno.json
new file mode 100644
index 000000000..1484a2bad
--- /dev/null
+++ b/domains/eternasuno.json
@@ -0,0 +1,11 @@
+{
+ "description": "Blog for eternasuno",
+ "repo": "https://github.com/eternasuno/eternasuno.github.io",
+ "owner": {
+ "username": "eternasuno",
+ "email": "eternasuno@gmail.com"
+ },
+ "record": {
+ "CNAME": "eternasuno.github.io"
+ }
+}
diff --git a/domains/ethantran.json b/domains/ethantran.json
new file mode 100644
index 000000000..37f12fdb7
--- /dev/null
+++ b/domains/ethantran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ethanxcode",
+ "email": "trannguyendanhuy2904@gmail.com"
+ },
+ "record": {
+ "CNAME": "ethanxcode.vercel.app"
+ }
+}
diff --git a/domains/euler.json b/domains/euler.json
new file mode 100644
index 000000000..c54107065
--- /dev/null
+++ b/domains/euler.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Euler-B",
+ "email": "eduardojosebb.matescience@gmail.com"
+ },
+ "record": {
+ "CNAME": "euler-b.pages.dev"
+ }
+}
diff --git a/domains/eurafa.json b/domains/eurafa.json
new file mode 100644
index 000000000..83a2a5b22
--- /dev/null
+++ b/domains/eurafa.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/eurafa/eurafa.github.io",
+ "owner": {
+ "username": "eurafa",
+ "email": "eurafa@gmail.com",
+ "discord": "eurafa"
+ },
+ "record": {
+ "CNAME": "eurafa.github.io"
+ }
+}
diff --git a/domains/euskindar.json b/domains/euskindar.json
new file mode 100644
index 000000000..3f4f0b4df
--- /dev/null
+++ b/domains/euskindar.json
@@ -0,0 +1,11 @@
+{
+ "description": "Fron-end challenges",
+ "repo": "https://github.com/Euskindar/CHALLENGES",
+ "owner": {
+ "username": "Euskindar",
+ "email": "julenjph@hotmail.com"
+ },
+ "record": {
+ "CNAME": "euskindar.github.io"
+ }
+}
diff --git a/domains/evelyn.json b/domains/evelyn.json
new file mode 100644
index 000000000..3d1495ec5
--- /dev/null
+++ b/domains/evelyn.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio website with is-a.dev for Evelyn Finny",
+ "owner": {
+ "username": "evelynfinny",
+ "email": "evelynfinny@gmail.com"
+ },
+ "record": {
+ "CNAME": "evelyn.finny.info"
+ }
+}
diff --git a/domains/every.json b/domains/every.json
new file mode 100644
index 000000000..dfbbbed03
--- /dev/null
+++ b/domains/every.json
@@ -0,0 +1,17 @@
+{
+ "description": "Screenshot of every accessible .is-a.dev website by @actuallyundefined",
+ "repo": "https://github.com/JustDeveloper1/every.is-a.dev",
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "dev@j.is-a.dev",
+ "discord": "1117482901353812088"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/existing.json b/domains/existing.json
new file mode 100644
index 000000000..fe83dde20
--- /dev/null
+++ b/domains/existing.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Blog",
+ "repo": "https://github.com/existing-dev/existingdev",
+ "owner": {
+ "username": "existing-dev",
+ "email": "maamelankar.deveer@gmail.com"
+ },
+ "record": {
+ "CNAME": "existing-dev.github.io"
+ }
+}
diff --git a/domains/explooit.json b/domains/explooit.json
new file mode 100644
index 000000000..bdf237bc1
--- /dev/null
+++ b/domains/explooit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ExPl0iT-29",
+ "email": "tusharsatpute68@gmail.com"
+ },
+ "record": {
+ "CNAME": "expl0it-29.github.io"
+ }
+}
diff --git a/domains/exrand.json b/domains/exrand.json
new file mode 100644
index 000000000..ec9fc953f
--- /dev/null
+++ b/domains/exrand.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "randomyaps",
+ "email": "totallynota903@gmail.com"
+ },
+ "record": {
+ "A": ["212.91.26.79"]
+ }
+}
diff --git a/domains/exx.json b/domains/exx.json
deleted file mode 100644
index 977561c23..000000000
--- a/domains/exx.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "xqxyzl",
- "email": "exemailhelp+3@gmail.com"
- },
- "record": {
- "TXT": "_discord.exx.is-a.dev"
- }
-}
diff --git a/domains/exyxz.json b/domains/exyxz.json
new file mode 100644
index 000000000..60ccac4dc
--- /dev/null
+++ b/domains/exyxz.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/exyxz/exyxz.github.io",
+ "owner": {
+ "username": "exyxz",
+ "discord": "exyxz"
+ },
+ "record": {
+ "CNAME": "exyxz.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/ezaz.json b/domains/ezaz.json
new file mode 100644
index 000000000..9eb3849ea
--- /dev/null
+++ b/domains/ezaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ezaz-ahmed",
+ "email": "ezaznahmed@gmail.com"
+ },
+ "record": {
+ "URL": "https://ezaz.dev/"
+ }
+}
diff --git a/domains/ezequiel.json b/domains/ezequiel.json
new file mode 100644
index 000000000..7e9e574df
--- /dev/null
+++ b/domains/ezequiel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "EzequielBoussard",
+ "email": "boussardezequiel@gmail.com"
+ },
+ "record": {
+ "CNAME": "ezequielboussard.pages.dev"
+ }
+}
diff --git a/domains/faaiz.json b/domains/faaiz.json
new file mode 100644
index 000000000..d18478194
--- /dev/null
+++ b/domains/faaiz.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "FaaizAhmad6420"
+ },
+ "record": {
+ "CNAME": "faaizahmad6420.github.io"
+ }
+}
diff --git a/domains/faaris.json b/domains/faaris.json
new file mode 100644
index 000000000..42f60a334
--- /dev/null
+++ b/domains/faaris.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mohamed-faaris",
+ "email": "mohammedfaaris2005@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/Mohamed-faaris"
+ }
+}
diff --git a/domains/fabianf4.json b/domains/fabianf4.json
index c50d834f8..673d12f27 100644
--- a/domains/fabianf4.json
+++ b/domains/fabianf4.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "fabianf4",
- "email": "fabianfa.munoz@gmail.com"
- },
- "record": {
- "CNAME": "fabianf4.github.io"
- }
+ "owner": {
+ "username": "fabianf4",
+ "email": "fabianfa.munoz@gmail.com"
+ },
+ "record": {
+ "CNAME": "fabianf4.github.io"
+ }
}
diff --git a/domains/fabien.json b/domains/fabien.json
index 2637b381c..9240e566d 100644
--- a/domains/fabien.json
+++ b/domains/fabien.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "fabien-h",
- "email": "fabien.huet@gmail.com",
- "discord": "fabien-huet"
- },
- "record": {
- "CNAME": "fabien-is-a-dev.vercel.app"
- }
+ "owner": {
+ "username": "fabien-h",
+ "email": "fabien.huet@gmail.com",
+ "discord": "fabien-huet"
+ },
+ "record": {
+ "CNAME": "fabien-is-a-dev.vercel.app"
+ }
}
diff --git a/domains/facundopidal.json b/domains/facundopidal.json
new file mode 100644
index 000000000..a3b6e7c09
--- /dev/null
+++ b/domains/facundopidal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "facundopidal",
+ "email": "facundopidalruizdiaz@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/fa-fifi.json b/domains/fafifi.json
similarity index 76%
rename from domains/fa-fifi.json
rename to domains/fafifi.json
index 5870bbcc3..ec41aa57a 100644
--- a/domains/fa-fifi.json
+++ b/domains/fafifi.json
@@ -11,6 +11,6 @@
"185.199.110.153",
"185.199.111.153"
],
- "TXT": "google-site-verification=AYbL6PIbwUv4qzq9KxmrjAM9vfCQ0IUNRBX_AeXPfVE"
+ "TXT": "google-site-verification=_yRLGQg5CylaCRwbj4qjPtzNKurSqbltbCqnli0nhvI"
}
}
diff --git a/domains/fahad.json b/domains/fahad.json
new file mode 100644
index 000000000..3baedd0ee
--- /dev/null
+++ b/domains/fahad.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Portfolio",
+ "owner": {
+ "username": "FahadAminShovon",
+ "email": "shovonfahad991@gmail.com"
+ },
+ "record": {
+ "CNAME": "market-portfolio.vercel.app"
+ }
+}
diff --git a/domains/faisalamin.json b/domains/faisalamin.json
new file mode 100644
index 000000000..75e121438
--- /dev/null
+++ b/domains/faisalamin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "faisalamin001",
+ "email": "faysalamin001@gmail.com"
+ },
+ "record": {
+ "URL": "https://faisalamin001.vercel.app/"
+ }
+}
diff --git a/domains/fajox.json b/domains/fajox.json
index 1fa1414f7..f68f68c53 100644
--- a/domains/fajox.json
+++ b/domains/fajox.json
@@ -4,11 +4,6 @@
"email": "pybytee@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "A": ["45.91.201.222"]
}
}
diff --git a/domains/fake.json b/domains/fake.json
index 91886cc77..8a11ca28d 100644
--- a/domains/fake.json
+++ b/domains/fake.json
@@ -1,6 +1,5 @@
{
"description": "site",
- "repo": "https://github.com/fakename131",
"owner": {
"username": "fakename131",
"email": "fake@fake.is-a.dev"
diff --git a/domains/fan.json b/domains/fan.json
new file mode 100644
index 000000000..13a91acef
--- /dev/null
+++ b/domains/fan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fandyahmd",
+ "email": "fandyahmadazizi@gmail.com"
+ },
+ "record": {
+ "CNAME": "fann.pages.dev"
+ }
+}
diff --git a/domains/fang.json b/domains/fang.json
new file mode 100644
index 000000000..7d7b80cb5
--- /dev/null
+++ b/domains/fang.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Fangoling",
+ "discord": "327905667778347019",
+ "bluesky": "bsky.app/profile/fangx.ing"
+ },
+ "record": {
+ "URL": "https://fangx.ing"
+ }
+}
diff --git a/domains/farkot.json b/domains/farkot.json
new file mode 100644
index 000000000..2ecf1b866
--- /dev/null
+++ b/domains/farkot.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portafolio Farkot09",
+ "repo": "https://github.com/farkot09/farkot09.github.io",
+ "owner": {
+ "username": "farkot09",
+ "email": "viagramo2011@gmail.com"
+ },
+ "record": {
+ "CNAME": "farkot09.github.io"
+ }
+}
diff --git a/domains/farouk.json b/domains/farouk.json
new file mode 100644
index 000000000..bb69e4d6b
--- /dev/null
+++ b/domains/farouk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "faroukchebaiki",
+ "email": "farouk.chebaiki@gmail.com"
+ },
+ "record": {
+ "CNAME": "faroukchebaiki.vercel.app"
+ }
+}
diff --git a/domains/farvessafiyudeen.json b/domains/farvessafiyudeen.json
index 286ecbe2a..ba92c8d6f 100644
--- a/domains/farvessafiyudeen.json
+++ b/domains/farvessafiyudeen.json
@@ -1,6 +1,5 @@
{
"description": "this is my personal portfolio website",
- "repo": "https://github.com/Farves-dev",
"owner": {
"username": "Farves-dev",
"email": "farvessafiyudeen@gmail.com"
diff --git a/domains/farzan.json b/domains/farzan.json
deleted file mode 100644
index 9344f9dea..000000000
--- a/domains/farzan.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Farzan F A is a Dev",
- "repo": "https://github.com/Farzanfa/Farzanfa.github.io",
- "owner": {
- "username": "farzanfa",
- "email": "farzanfa007@gmail.com"
- },
- "record": {
- "CNAME": "farzanfa.github.io"
- }
-}
diff --git a/domains/faultysden.json b/domains/faultysden.json
deleted file mode 100644
index b2c3cdc94..000000000
--- a/domains/faultysden.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "FaultyFaulty-glitch",
- "email": "faultywindows+github@gmail.com",
- "discord": "1041028534690386051"
- },
- "record": {
- "TXT": "google-site-verification=ix1jczu2q87igryc4eaexvdv1vrzjxolu14sjfpsnko"
- }
-}
diff --git a/domains/faultywindows.json b/domains/faultywindows.json
index 7df656cab..c0411c20a 100644
--- a/domains/faultywindows.json
+++ b/domains/faultywindows.json
@@ -5,6 +5,17 @@
"discord": "1041028534690386051"
},
"record": {
- "A": ["185.199.108.153"]
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ]
}
}
diff --git a/domains/fayaz.json b/domains/fayaz.json
new file mode 100644
index 000000000..1ca6749a1
--- /dev/null
+++ b/domains/fayaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fayaz07",
+ "email": "fayazfz07@gmail.com"
+ },
+ "record": {
+ "CNAME": "fayaz07.github.io"
+ }
+}
diff --git a/domains/fbi.json b/domains/fbi.json
index 07f537c44..fcd7f5b8a 100644
--- a/domains/fbi.json
+++ b/domains/fbi.json
@@ -1,6 +1,5 @@
{
"description": "2Much4U's Website",
- "repo": "https://github.com/2m4u",
"owner": {
"username": "2M4U",
"email": "2m4u@fbi.is-a.dev"
diff --git a/domains/fbik.json b/domains/fbik.json
new file mode 100644
index 000000000..5bd40b9d9
--- /dev/null
+++ b/domains/fbik.json
@@ -0,0 +1,11 @@
+{
+ "description": "FBIK.'s Personal Website",
+ "owner": {
+ "username": "FBIKdot",
+ "email": "fbik@duck.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ },
+ "proxied": true
+}
diff --git a/domains/fdaniel13s.json b/domains/fdaniel13s.json
index 2d3de6b31..33e3b37c0 100644
--- a/domains/fdaniel13s.json
+++ b/domains/fdaniel13s.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "fdaniel13s",
- "email": "ferndani2718@gmail.com"
+ "username": "fdaniel13s",
+ "email": "ferndani2718@gmail.com"
},
"record": {
- "CNAME": "fdaniel13s.github.io"
+ "CNAME": "fdaniel13s.github.io"
}
}
diff --git a/domains/febs.json b/domains/febs.json
new file mode 100644
index 000000000..cc98d842e
--- /dev/null
+++ b/domains/febs.json
@@ -0,0 +1,10 @@
+{
+ "description": "febs.is-a.dev",
+ "owner": {
+ "username": "febriansf",
+ "email": "febrian.xiii@gmail.com"
+ },
+ "record": {
+ "CNAME": "www.febss.web.id"
+ }
+}
diff --git a/domains/federico.json b/domains/federico.json
index 1ba721c64..0bae2525d 100644
--- a/domains/federico.json
+++ b/domains/federico.json
@@ -2,10 +2,10 @@
"description": "Professional website",
"repo": "https://github.com/Thefederico/federico",
"owner": {
- "username": "Thefederico",
- "email": "xooxes@gmail.com"
+ "username": "Thefederico",
+ "email": "xooxes@gmail.com"
},
"record": {
- "A": ["75.2.60.5"]
+ "A": ["75.2.60.5"]
}
}
diff --git a/domains/felipe.json b/domains/felipe.json
index dc9003f65..93f3d335a 100644
--- a/domains/felipe.json
+++ b/domains/felipe.json
@@ -1,11 +1,9 @@
-{
- "owner": {
- "username": "felipecalderon",
- "email": "hola@felipe.bio"
- },
- "repo": "https://github.com/felipecalderon",
- "record": {
- "CNAME": "porfoliofelipe.vercel.app"
- }
- }
-
+{
+ "owner": {
+ "username": "felipecalderon",
+ "email": "hola@felipe.bio"
+ },
+ "record": {
+ "CNAME": "porfoliofelipe.vercel.app"
+ }
+}
diff --git a/domains/felipecampos.json b/domains/felipecampos.json
index 088b17ca0..340136c12 100644
--- a/domains/felipecampos.json
+++ b/domains/felipecampos.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "camposdev",
- "email": "felipecamposdev@gmail.com"
- },
- "record": {
- "CNAME": "felipecampos.vercel.app"
- }
+ "owner": {
+ "username": "camposdev",
+ "email": "felipecamposdev@gmail.com"
+ },
+ "record": {
+ "URL": "https://felipecampos.vercel.app"
+ }
}
diff --git a/domains/felix.json b/domains/felix.json
index 3fc0e4fdb..2f5995702 100644
--- a/domains/felix.json
+++ b/domains/felix.json
@@ -3,7 +3,6 @@
"username": "github-username",
"email": "mail@felixyeung.dev"
},
- "repo": "https://github.com/felixyeungdev",
"record": {
"URL": "https://felixyeung.dev"
}
diff --git a/domains/fendimohamed.json b/domains/fendimohamed.json
new file mode 100644
index 000000000..b726d9c23
--- /dev/null
+++ b/domains/fendimohamed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "FendiMohamed",
+ "email": "fendimohamed615@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/fernandocuba.json b/domains/fernandocuba.json
new file mode 100644
index 000000000..3aa02f483
--- /dev/null
+++ b/domains/fernandocuba.json
@@ -0,0 +1,11 @@
+{
+ "description": "This website is a link to my personal developer portfolio.",
+ "repo": "https://github.com/fernando-cuba/fernando-cuba.github.io",
+ "owner": {
+ "username": "fernando-cuba",
+ "email": "lfernando.cubar@gmail.com"
+ },
+ "record": {
+ "CNAME": "fernando-cuba.github.io"
+ }
+}
diff --git a/domains/fetico.json b/domains/fetico.json
new file mode 100644
index 000000000..9796e4ac2
--- /dev/null
+++ b/domains/fetico.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "danielfetico21",
+ "email": "danielfetico21@gmail.com"
+ },
+ "description": "Personal Website / Portfolio Website",
+ "record": {
+ "CNAME": "fetico.ro"
+ },
+ "proxied": true
+}
diff --git a/domains/files.heyaxo.json b/domains/files.heyaxo.json
new file mode 100644
index 000000000..105b83725
--- /dev/null
+++ b/domains/files.heyaxo.json
@@ -0,0 +1,13 @@
+{
+ "repo": "https://github.com/verygafanhot",
+ "owner": {
+ "username": "Verygafanhot",
+ "email": "verygafanhot@gmail.com",
+ "twitter": "verygafanhot",
+ "discord": "Verygafanhot"
+ },
+ "record": {
+ "CNAME": "axothelion.crabdance.com"
+ },
+ "proxied": true
+}
diff --git a/domains/filip.json b/domains/filip.json
new file mode 100644
index 000000000..6d8e1b9af
--- /dev/null
+++ b/domains/filip.json
@@ -0,0 +1,19 @@
+{
+ "description": "Filip's personal site and/or CV",
+ "repo": "https://github.com/totalolage/totalolage.github.io",
+ "owner": {
+ "username": "totalolage",
+ "email": "filip@kalny.net"
+ },
+ "proxied": true,
+ "record": {
+ "CNAME": "vps1.kalny.net",
+ "CAA": [
+ {
+ "flags": 0,
+ "tag": "issue",
+ "value": "letsencrypt.org"
+ }
+ ]
+ }
+}
diff --git a/domains/filmflu.json b/domains/filmflu.json
index f2bd0c6d6..b56148bf1 100644
--- a/domains/filmflu.json
+++ b/domains/filmflu.json
@@ -6,6 +6,6 @@
"email": "dherediat97@gmail.com"
},
"record": {
- "URL": "https://dherediat97.github.io/FilmFlu"
+ "URL": "https://film-flu.web.app/"
}
}
diff --git a/domains/finch.json b/domains/finch.json
new file mode 100644
index 000000000..228d1dfd8
--- /dev/null
+++ b/domains/finch.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "metalespesados",
+ "email": "bengfm@icloud.com"
+ },
+ "record": {
+ "CNAME": "ebn.netlify.app"
+ }
+}
diff --git a/domains/fireexe.json b/domains/fireexe.json
new file mode 100644
index 000000000..fa893fc4a
--- /dev/null
+++ b/domains/fireexe.json
@@ -0,0 +1,11 @@
+{
+ "description": "A portofolio website about me :D",
+ "repo": "https://github.com/fireemerald1/fire-exe-website.github.io",
+ "owner": {
+ "username": "fireemerald1",
+ "email": "imguyexeboii@gmail.com"
+ },
+ "record": {
+ "CNAME": "fireemerald1.github.io"
+ }
+}
diff --git a/domains/fitrahmunir.json b/domains/fitrahmunir.json
index dc4117aa5..6b42d8b94 100644
--- a/domains/fitrahmunir.json
+++ b/domains/fitrahmunir.json
@@ -1,6 +1,5 @@
{
"description": "FitrahFM's .is-a.dev domain",
- "repo": "https://github.com/fitrahfm",
"owner": {
"username": "fitrahfm",
"email": "fitrhmnr+is-a-dev@gmail.com"
diff --git a/domains/florent.json b/domains/florent.json
new file mode 100644
index 000000000..8d6922a6c
--- /dev/null
+++ b/domains/florent.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/flobsx",
+ "owner": {
+ "username": "flobsx",
+ "email": "flo@bsx.pm"
+ },
+ "record": {
+ "CNAME": "flobsx.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/florianorineveu.json b/domains/florianorineveu.json
new file mode 100644
index 000000000..ec75fe04d
--- /dev/null
+++ b/domains/florianorineveu.json
@@ -0,0 +1,10 @@
+{
+ "description": "French PHP/Symfony developer",
+ "owner": {
+ "username": "florianorineveu",
+ "email": "hello@fnev.eu"
+ },
+ "record": {
+ "CNAME": "fnev.eu"
+ }
+}
diff --git a/domains/flymeth.json b/domains/flymeth.json
index f155dc218..1d7a96a27 100644
--- a/domains/flymeth.json
+++ b/domains/flymeth.json
@@ -7,6 +7,5 @@
"email": "flymeth.yt@gmail.com",
"twitter": "flymeth"
},
- "repo": "https://github.com/Flymeth",
"description": "I'm a dev and I love to be that"
}
diff --git a/domains/fmode.json b/domains/fmode.json
new file mode 100644
index 000000000..314c36235
--- /dev/null
+++ b/domains/fmode.json
@@ -0,0 +1,12 @@
+{
+ "description": "Documentation website of vulnerability in ChromeOS",
+ "repo": "https://github.com/jOaawd/imperfect-secure",
+ "owner": {
+ "username": "jOaawd",
+ "email": "fmodeteam@gmail.com"
+ },
+ "record": {
+ "CNAME": "imperfect.onrender.com"
+ },
+ "proxied": false
+}
diff --git a/domains/fodilfliti.json b/domains/fodilfliti.json
new file mode 100644
index 000000000..e831522dc
--- /dev/null
+++ b/domains/fodilfliti.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fodilfliti",
+ "email": "fodilfliti150@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/fodorzsolt.json b/domains/fodorzsolt.json
new file mode 100644
index 000000000..9e3bd30d7
--- /dev/null
+++ b/domains/fodorzsolt.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "email": "fodorzsolt92@gmail.com",
+ "username": "fzsatti"
+ },
+ "description": "My portfolio website",
+ "repo": "https://github.com/fzsatti/fodorzsolt.is-a.dev",
+ "record": {
+ "CNAME": "fzsatti.github.io"
+ }
+}
diff --git a/domains/fongg.json b/domains/fongg.json
new file mode 100644
index 000000000..55405c792
--- /dev/null
+++ b/domains/fongg.json
@@ -0,0 +1,11 @@
+{
+ "description": "nphng15.is-a.dev",
+ "repo": "https://github.com/nphng15/nphng15.github.io",
+ "owner": {
+ "username": "nphng15",
+ "email": "23521172@gm.uit.edu.vn"
+ },
+ "record": {
+ "CNAME": "nphng15.github.io"
+ }
+}
diff --git a/domains/fourjuaneight.json b/domains/fourjuaneight.json
index 2cef409e2..4d5fea043 100644
--- a/domains/fourjuaneight.json
+++ b/domains/fourjuaneight.json
@@ -1,6 +1,5 @@
{
"description": "Juan's personal site",
- "repo": "https://github.com/fourjuaneight",
"owner": {
"username": "fourjuaneight",
"email": "juan@villela.co"
diff --git a/domains/fr0stb1rd.json b/domains/fr0stb1rd.json
new file mode 100644
index 000000000..f0303e114
--- /dev/null
+++ b/domains/fr0stb1rd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "herobryne0",
+ "email": "fr0stb1rd@proton.me"
+ },
+ "record": {
+ "CNAME": "fr0stb1rd.pages.dev"
+ }
+}
diff --git a/domains/francodurand.json b/domains/francodurand.json
new file mode 100644
index 000000000..c184c9bdf
--- /dev/null
+++ b/domains/francodurand.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "FrancoDurand",
+ "email": "francoduve.25@gmail.com"
+ },
+ "record": {
+ "CNAME": "devfolio-franco.vercel.app"
+ }
+}
diff --git a/domains/francoleon.json b/domains/francoleon.json
new file mode 100644
index 000000000..b39017662
--- /dev/null
+++ b/domains/francoleon.json
@@ -0,0 +1,10 @@
+{
+ "description": "Franco Leon, Personal Portfolio",
+ "owner": {
+ "username": "francoleon08",
+ "email": "francoleon284@gmail.com"
+ },
+ "record": {
+ "CNAME": "francoleondev.vercel.app"
+ }
+}
diff --git a/domains/frank-perez-fleita.json b/domains/frank-perez-fleita.json
new file mode 100644
index 000000000..86a078f93
--- /dev/null
+++ b/domains/frank-perez-fleita.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal domain for Frank Perez Fleita, redirecting to my Vercel app.",
+ "owner": {
+ "username": "frankperez-github",
+ "email": "fp848584@gmail.com"
+ },
+ "record": {
+ "URL": "https://frank-perez-fleita.vercel.app"
+ }
+}
diff --git a/domains/frankra.json b/domains/frankra.json
index 030d73215..8c78bd7c3 100644
--- a/domains/frankra.json
+++ b/domains/frankra.json
@@ -1,11 +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
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/frankra/frankra.github.io",
+ "owner": {
+ "username": "frankra",
+ "email": "rafael.h.frank@gmail.com"
+ },
+ "record": {
+ "CNAME": "frankra.github.io"
+ }
+}
diff --git a/domains/franky.json b/domains/franky.json
index 2d1e8abc6..d6dc9e470 100644
--- a/domains/franky.json
+++ b/domains/franky.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "senseikoder",
- "email": "molina.frank@gmail.com"
- },
- "record": {
- "CNAME": "efrank.xyz"
- }
+ "owner": {
+ "username": "senseikoder",
+ "email": "molina.frank@gmail.com"
+ },
+ "record": {
+ "CNAME": "efrank.xyz"
+ }
}
diff --git a/domains/franlo42.json b/domains/franlo42.json
new file mode 100644
index 000000000..5117f63b1
--- /dev/null
+++ b/domains/franlo42.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "franlo42"
+ },
+ "record": {
+ "CNAME": "franlo42.github.io"
+ }
+}
diff --git a/domains/fryvex.json b/domains/fryvex.json
new file mode 100644
index 000000000..6dd81aea1
--- /dev/null
+++ b/domains/fryvex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "x1yl",
+ "discord": "627947214576025610"
+ },
+ "record": {
+ "A": ["76.76.21.21"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/fsoft72.json b/domains/fsoft72.json
new file mode 100644
index 000000000..9fcef0e3f
--- /dev/null
+++ b/domains/fsoft72.json
@@ -0,0 +1,10 @@
+{
+ "description": "👋 Hello! I'm Fabio, a passionate developer with 30+ years experience in programming. In my career I have done almost everything, from shared objects for Linux in C to complex web applications and efficient web solutions. Explore my portfolio and contact me on GitHub.",
+ "owner": {
+ "username": "fsoft72",
+ "email": "fabio.rotondo@gmail.com"
+ },
+ "record": {
+ "URL": "https://fsoft.dev"
+ }
+}
diff --git a/domains/ft.json b/domains/ft.json
new file mode 100644
index 000000000..2e4fc534d
--- /dev/null
+++ b/domains/ft.json
@@ -0,0 +1,12 @@
+{
+ "description": "For the email address h@ft.is-a.dev",
+ "repo": "https://github.com/HaftIsntHere/is-a.dev/",
+ "owner": {
+ "username": "HaftIsntHere",
+ "email": "haftthedev@gmail.com"
+ },
+ "record": {
+ "MX": ["mx01.mail.icloud.com", "mx02.mail.icloud.com"],
+ "TXT": ["apple-domain=MpJJp8aekdLZ5ynT", "v=spf1 include:icloud.com ~all"]
+ }
+}
diff --git a/domains/fucabot.json b/domains/fucabot.json
index 56a8f07fb..3ee1c035f 100644
--- a/domains/fucabot.json
+++ b/domains/fucabot.json
@@ -1,6 +1,5 @@
{
"description": "Fuca Bot website",
- "repo": "https://github.com/anshtyagi0",
"owner": {
"username": "anshtyagi0",
"email": "tyagiansh175@gmail.com"
diff --git a/domains/fuji.json b/domains/fuji.json
new file mode 100644
index 000000000..c21200d0d
--- /dev/null
+++ b/domains/fuji.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "fujitime",
+ "email": "racun1601@email.com"
+ },
+ "record": {
+ "CNAME": "fuji-halim-rabani.netlify.app"
+ }
+}
+
diff --git a/domains/fulminatingmoat.json b/domains/fulminatingmoat.json
index 403673491..4689b8a56 100644
--- a/domains/fulminatingmoat.json
+++ b/domains/fulminatingmoat.json
@@ -1,6 +1,5 @@
{
"description": "Website",
- "repo": "https://github.com/fulminatingmoat",
"owner": {
"username": "fulminatingmoat",
"email": "fulminatingmoat@fulminatingmoat.com",
diff --git a/domains/funinkina.json b/domains/funinkina.json
new file mode 100644
index 000000000..79248d131
--- /dev/null
+++ b/domains/funinkina.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "funinkina",
+ "email": "aryankushwaha3101@gmail.com"
+ },
+ "record": {
+ "CNAME": "funinkina.vercel.app"
+ }
+}
diff --git a/domains/furryr.json b/domains/furryr.json
new file mode 100644
index 000000000..c9cfe54bc
--- /dev/null
+++ b/domains/furryr.json
@@ -0,0 +1,11 @@
+{
+ "description": "Subdomain for furryr.github.io",
+ "repo": "https://github.com/FurryR/furryr.github.io",
+ "owner": {
+ "username": "FurryR",
+ "email": "awathefox@gmail.com"
+ },
+ "record": {
+ "CNAME": "furryr.github.io"
+ }
+}
diff --git a/domains/furycraft.json b/domains/furycraft.json
deleted file mode 100644
index f1bb6919e..000000000
--- a/domains/furycraft.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "Used as portfolio and to promote my work",
- "repo": "https://github.com/FuryCraft/furycraft.github.io",
- "owner": {
- "username": "FuryCraft",
- "email": "pro.furycraft@outlook.fr",
- "twitter": "furycraft_",
- "discord": "Fury_Craft#9831"
- },
- "record": {
- "CNAME": "furycraft.github.io"
- }
-}
diff --git a/domains/fusoras.json b/domains/fusoras.json
new file mode 100644
index 000000000..347f07eac
--- /dev/null
+++ b/domains/fusoras.json
@@ -0,0 +1,11 @@
+{
+ "description": "Porfolio website",
+ "repo": "https://github.com/FuSoraS/portfolio",
+ "owner": {
+ "username": "FuSoraS",
+ "email": "developer.FuSoraS@gmail.com"
+ },
+ "record": {
+ "CNAME": "fusoras.github.io"
+ }
+}
diff --git a/domains/fynnlukah.json b/domains/fynnlukah.json
new file mode 100644
index 000000000..5652527f3
--- /dev/null
+++ b/domains/fynnlukah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fynnlukah",
+ "discord": "727590288209608824"
+ },
+ "record": {
+ "CNAME": "fynnlukah.vercel.app"
+ }
+}
diff --git a/domains/gabriel-iturre.json b/domains/gabriel-iturre.json
new file mode 100644
index 000000000..be43ac2f8
--- /dev/null
+++ b/domains/gabriel-iturre.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GabrielIturreCs",
+ "email": "gabriel13iturre@gmail.com"
+ },
+ "record": {
+ "CNAME": "gabrieliturre.netlify.app"
+ }
+}
diff --git a/domains/gabrielhuertas.json b/domains/gabrielhuertas.json
index a8e219d39..f0a7f4b05 100644
--- a/domains/gabrielhuertas.json
+++ b/domains/gabrielhuertas.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "GuDex-Dev",
- "email": "gabriel.huertas.3012@gmail.com"
- },
- "record": {
- "CNAME": "gudex-dev.github.io"
- }
+ "owner": {
+ "username": "GuDex-Dev",
+ "email": "gabriel.huertas.3012@gmail.com"
+ },
+ "record": {
+ "CNAME": "gudex-dev.github.io"
+ }
}
diff --git a/domains/galabra.json b/domains/galabra.json
new file mode 100644
index 000000000..aa819d542
--- /dev/null
+++ b/domains/galabra.json
@@ -0,0 +1,10 @@
+{
+ "description": "I'm a dev.",
+ "owner": {
+ "username": "galabra",
+ "email": "galabra.dev@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/galabra"
+ }
+}
diff --git a/domains/gallery.areen.json b/domains/gallery.areen.json
new file mode 100644
index 000000000..b7a4a7d5b
--- /dev/null
+++ b/domains/gallery.areen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "areen-c",
+ "email": "areen-c@proton.me"
+ },
+ "record": {
+ "CNAME": "gallery-cli.pages.dev"
+ }
+}
diff --git a/domains/gamer.json b/domains/gamer.json
new file mode 100644
index 000000000..6c8614026
--- /dev/null
+++ b/domains/gamer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameRoMan",
+ "email": "gameromandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gameroman.pages.dev"
+ }
+}
diff --git a/domains/gamil.json b/domains/gamil.json
new file mode 100644
index 000000000..c660477a5
--- /dev/null
+++ b/domains/gamil.json
@@ -0,0 +1,11 @@
+{
+ "description": "Gamil's Portfolio",
+ "repo": "https://github.com/gamilmohamed/gamilmohamed.github.io",
+ "owner": {
+ "username": "gamilmohamed",
+ "email": "mohamed.gamil@outlook.fr"
+ },
+ "record": {
+ "CNAME": "gamilmohamed.github.io"
+ }
+}
diff --git a/domains/ganesh-g.json b/domains/ganesh-g.json
index e033b8b6d..6adc31450 100644
--- a/domains/ganesh-g.json
+++ b/domains/ganesh-g.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ganesh76",
- "email": "ganesh.g.cse@gmail.com"
- },
- "record": {
- "CNAME": "ganesh76.github.io"
- }
+ "owner": {
+ "username": "ganesh76",
+ "email": "ganesh.g.cse@gmail.com"
+ },
+ "record": {
+ "CNAME": "ganesh76.github.io"
+ }
}
diff --git a/domains/ganeswarv.json b/domains/ganeswarv.json
new file mode 100644
index 000000000..921e50bee
--- /dev/null
+++ b/domains/ganeswarv.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/ganeswar-velvadapu/portfolio",
+ "description": "My Portfolio Webiste",
+ "owner": {
+ "username": "ganeswar-velvadapu",
+ "email": "ganeshvelvadapu@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-tau-mauve-63.vercel.app"
+ }
+}
diff --git a/domains/garvit.json b/domains/garvit.json
new file mode 100644
index 000000000..6c5a66400
--- /dev/null
+++ b/domains/garvit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "garvit-arora",
+ "email": "garvit.university@gmail.com"
+ },
+ "record": {
+ "CNAME": "garvit-arora.github.io"
+ }
+}
diff --git a/domains/gauravsingh.json b/domains/gauravsingh.json
new file mode 100644
index 000000000..4a6c1ecec
--- /dev/null
+++ b/domains/gauravsingh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Using it to point to my Portfolio on GitHub Pages",
+ "repo": "https://github.com/knowgaurav/knowgaurav.github.io",
+ "owner": {
+ "username": "knowgaurav",
+ "email": "qj1b83fmt@mozmail.com"
+ },
+ "record": {
+ "CNAME": "knowgaurav.github.io"
+ }
+}
diff --git a/domains/gc.json b/domains/gc.json
new file mode 100644
index 000000000..03f2d4ac1
--- /dev/null
+++ b/domains/gc.json
@@ -0,0 +1,10 @@
+{
+ "description": "gc.is-a.dev",
+ "owner": {
+ "username": "gcjbr",
+ "email": "gcaetanoj@gmail.com"
+ },
+ "record": {
+ "URL": "https://gcj.io"
+ }
+}
diff --git a/domains/gcet.aaqif.json b/domains/gcet.aaqif.json
new file mode 100644
index 000000000..4936923ef
--- /dev/null
+++ b/domains/gcet.aaqif.json
@@ -0,0 +1,11 @@
+{
+ "description": "gcet project",
+ "repo": "https://github.com/aaqifshafi/G-CET",
+ "owner": {
+ "username": "aaqifshafi",
+ "email": "aaqifshafi@gmail.com"
+ },
+ "record": {
+ "CNAME": "g-cet-aaqifshafis-projects.vercel.app"
+ }
+}
diff --git a/domains/gd.anw.json b/domains/gd.anw.json
new file mode 100644
index 000000000..3d32bd250
--- /dev/null
+++ b/domains/gd.anw.json
@@ -0,0 +1,10 @@
+{
+ "description": "ANW's (Subhrajit Sain) Personal Site",
+ "owner": {
+ "username": "SubhrajitSain",
+ "email": "subhrajitsain34@gmail.com"
+ },
+ "record": {
+ "URL": "https://drive.google.com/drive/folders/1xmqavhZ9VrdE1zK37WbLRKogJiQk499y?usp=drive_link"
+ }
+}
diff --git a/domains/generic.json b/domains/generic.json
index 0ff8ccaf6..7109b99d8 100644
--- a/domains/generic.json
+++ b/domains/generic.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "xgeneric",
- "email": "",
"discord": "1194494419064328296",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pNI-ARrj3J_tLM7pZiRwu1pfmk-Q3DwQqCqxWO02M876wVSFVYCtmViotPvUkXbGD6fungda4WYZn9FbbIFMroM6lyRd5facNKDKej8YSmA4vHrk82WnwOjIOgJZVvG1KBZ-a8-WJaBMTFTnA5HcDdIPKalVi8WuEBZ0aX5oePC_OmMgL8dfo8sc_Yh6iH_cQQsHyqTmEqaFIZdnchM3zqP5SztLpMqx7J-t65lJmSVdvlVIyCOVGGtnSu6p-mqsRqJ0_GTaxZq13p33OlN2H-aHiYLhuUNq1PNAMVMjBHvLwKx53QPYHkWH_49PYOAofaB5Qu4FQehMfMeEDPJY3w.qTLCxzxvVwoOjhI2BRDjcQ.fknkRF_e0XxYo2aGLv16XqzezYSUJAsZEV1IvnuErIAUeo5iEOL_6tjx67aBPV7GaJ-bulYZxzfcm7w8t2fd3dj4YWle3bpexZZ25GhR9RtlbCvQ1MybtvMWt9kMjbIM.AYS1UwZHLOklvLllhjQpLA"
},
diff --git a/domains/generic2.json b/domains/generic2.json
index 72307e914..5c812ab87 100644
--- a/domains/generic2.json
+++ b/domains/generic2.json
@@ -4,7 +4,6 @@
"discord": "1194494419064328296",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.MTsG19pQNdLCwl95D9NzxouR4mZ-7y2uRcBVVIqCc9Tal1P0D-Qt4JsDR7K-YJWNqRZpTx3-BZzMXweeteboVNF3fDlh06XENgnd2PoxjeGZzovR9sMqn4Ngl9dpGgYsmZgWf7rTjSzzePZx5h-GbTD5mI6ysxda0zrpR-cwjKVv92Lf6T0XTCwxH10DgAXZ_CtUrDq9Sn5pO-ONbUnnRgVDqBW9unD4qSCcKOAAJurGfYfLNX8qYZWfD-Hcs_wptS8fJpjpXIGkP_JF1qsj95pG0t4Bp7hhIXeXm1jmJm2-C-WQkKdZLdBDQ1gIsDhP0fLNfmSyyy532aIbR1FDqA.qX2TYd3WzaYOeAOktSXu5A.7ojhiDUioav23zhWk7sP9yLVAfNvOxL6bTAn78ILURWTwI5pEQWJloCfImCpjwGuoteHerCQNTJLRD8Vvhvd87X6YvbCiJqRPJp77J-VeJICLN5DAFlzeCNGUX4g8c_t.VThkX88tara8h8WKOXlreg"
},
-
"record": {
"CNAME": "paulswebhelp.com"
}
diff --git a/domains/genericx.json b/domains/genericx.json
index 7d56b2a34..8bc7b0824 100644
--- a/domains/genericx.json
+++ b/domains/genericx.json
@@ -4,7 +4,6 @@
"discord": "1194494419064328296",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DNr2jxeR-0YVkAChAl4uPX31TrkGI4S8REI18sZvz4gGrL9c2LRtnnHlJfq0fMntFjAvLoD2lvb-kbjDq-INycXI0YHr-MG4YIvJmccyAmaxmtfhIqSWQc6EwMRar7mx0aE3NaOXJSKZQSpH86MVHqO4X9TZMGxkCfq9IAaXHmAVBazCNPFySzCY2jHo3LRmDFsJyTf0mWm_RwaYuPlS7__slgs2XQnWCYNP_kdMwENR7dDFVG9IjwSXQI-D12nyqquN_oM6WDg2ajfwMdbfd3aOpNkLOvAj-slpw81v2zccP040MrQJdTlN_LiMGFMqUPqNqev3lDwu-up8xDKIzQ.Fq8v4wlDvYQWahwdgcSXPQ.b_b4xs8S2pJNAPSPFJfZ6u5nMlNfAnxnm0UbH_LrqXCGIMX5ymm54wsnWFrymwp9OSqTbotZeYMFXWZlCouMxXOqrOmLHb58OJmsRZarQ0lqSOduCvFnonngL6gTpa1s.1o8XkyzrR4qKrVrinRJhzQ"
},
-
"record": {
"CNAME": "paulswebhelp.com"
}
diff --git a/domains/generix.json b/domains/generix.json
index 5ed469896..f794a11d2 100644
--- a/domains/generix.json
+++ b/domains/generix.json
@@ -4,7 +4,6 @@
"discord": "1194494419064328296",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.TEnVT2QVvesNKLztHkI3jp-5JggHFHs0jLf93VH0_CT63TcEHlhkMGl6iE1iXGGfW4kjuOkyDfTgxYWHGfHGM9KJ3O57NCNxSPVcK_t-IrImmymmEXrxLKSnyI1QFxBiFpNO7mFIGy7xAWJSTkA5ZvGciR_tJRbB9ftAme5WYLKE7tPgfQxMHoGFE22Q1yKpK9lbCFoeFi0bLtbYRvvveBP78oqK4cMIRkVC6TKhFHo6wWorsJDlEGrVCYQ8-OEP2Y1pu1WkVLJ1Dd1E2OJcZcEn-QmTkfU7ar4U_2LlNTRmDnoXhQNt5O6xsh6savYjm1jzl_u_fZwlgVFgRV9_WA.hEaGKy3NTYfzyeqez2Y5KA.j0OHFUF5Pbr8c7dqb0X0GPIZL4y3gvGLf-BkXNMeWvUwVTfS2S5HD6RpnbDmpnhnwRbX4_fKcEMBLAwkf0Mv0cCUGk4yr9vu_kYH_s8as3q2_2cKJe8P-7wQCioS6lwn.Lv4G5WOkVnbHCssVDM_rww"
},
-
"record": {
"CNAME": "paulswebhelp.com"
}
diff --git a/domains/george.json b/domains/george.json
index 208f0ae5f..227d3159f 100644
--- a/domains/george.json
+++ b/domains/george.json
@@ -1,6 +1,5 @@
{
"description": "George Aykara's personal developer website",
- "repo": "https://github.com/aykarageorge",
"owner": {
"username": "aykarageorge",
"email": "aykarageorge@gmail.com"
diff --git a/domains/georgekaran.json b/domains/georgekaran.json
index ae89517f2..e60432a72 100644
--- a/domains/georgekaran.json
+++ b/domains/georgekaran.json
@@ -1,6 +1,5 @@
{
"description": "George Karan - Personal Page",
- "repo": "https://github.com/georgekaran",
"owner": {
"username": "georgekaran",
"email": "georgekaran12@gmail.com"
diff --git a/domains/geraldo.json b/domains/geraldo.json
new file mode 100644
index 000000000..6920e72e3
--- /dev/null
+++ b/domains/geraldo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Gerald0Juni0r",
+ "email": "geraldo.gj63@gmail.com"
+ },
+ "record": {
+ "CNAME": "gerald0juni0r.github.io"
+ }
+}
diff --git a/domains/_github-pages-challenge-is-a-dev.raw-api.json b/domains/get.json
similarity index 66%
rename from domains/_github-pages-challenge-is-a-dev.raw-api.json
rename to domains/get.json
index 3b2c1b412..aab28d71a 100644
--- a/domains/_github-pages-challenge-is-a-dev.raw-api.json
+++ b/domains/get.json
@@ -4,6 +4,6 @@
"email": "admin@is-a.dev"
},
"record": {
- "TXT": "22bbab4068a6c51de6df06aac442d5"
+ "URL": "https://github.com/is-a-dev/register"
}
}
diff --git a/domains/gewalee.json b/domains/gewalee.json
new file mode 100644
index 000000000..8148fa2f9
--- /dev/null
+++ b/domains/gewalee.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github Pages serving as an online resume site for gewaleelek",
+ "repo": "https://github.com/gewaleelek/gewaleelek.github.io",
+ "owner": {
+ "username": "gewaleelek"
+ },
+ "record": {
+ "CNAME": "gewaleelek.github.io"
+ }
+}
diff --git a/domains/gg.json b/domains/gg.json
index 0a7d8e227..09db97347 100644
--- a/domains/gg.json
+++ b/domains/gg.json
@@ -1,11 +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"
- }
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/i-m-Gaurav/Portfolio.git",
+ "owner": {
+ "username": "i-m-Gaurav",
+ "email": "indiagauravkumar@gmail.com"
+ },
+ "record": {
+ "CNAME": "gaurav-self.vercel.app"
+ }
}
diff --git a/domains/gh-paylink-project-o.joe50097.json b/domains/gh-paylink-project-o.joe50097.json
new file mode 100644
index 000000000..c3b750f78
--- /dev/null
+++ b/domains/gh-paylink-project-o.joe50097.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Joe50097",
+ "email": "me@joe50097.is-a.dev"
+ },
+ "record": {
+ "TXT": "afa0c39cdb"
+ }
+}
diff --git a/domains/gh.anw.json b/domains/gh.anw.json
new file mode 100644
index 000000000..a5b57c1b0
--- /dev/null
+++ b/domains/gh.anw.json
@@ -0,0 +1,10 @@
+{
+ "description": "ANW's (Subhrajit Sain) GitHub",
+ "owner": {
+ "username": "SubhrajitSain",
+ "email": "subhrajitsain34@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/SubhrajitSain"
+ }
+}
diff --git a/domains/ghsearch.json b/domains/ghsearch.json
new file mode 100644
index 000000000..38aa8f6d9
--- /dev/null
+++ b/domains/ghsearch.json
@@ -0,0 +1,11 @@
+{
+ "description": "Aplicación web para buscar repositorios en GitHub por tema, utilizando la API de GitHub. Construida con HTML, CSS y JavaScript.",
+ "repo": "https://https://github.com/herwingx/awesome-github-search",
+ "owner": {
+ "username": "herwingx",
+ "email": "herwingmacias@gmail.com"
+ },
+ "record": {
+ "CNAME": "herwingx.github.io"
+ }
+}
diff --git a/domains/gicorada.json b/domains/gicorada.json
index e89abe60a..8af986f80 100644
--- a/domains/gicorada.json
+++ b/domains/gicorada.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "gicorada",
- "email": "51818710+gicorada@users.noreply.github.com",
"discord": "607903753831448626"
},
"record": {
diff --git a/domains/gilmar-dave-gamboa.json b/domains/gilmar-dave-gamboa.json
new file mode 100644
index 000000000..274371c0e
--- /dev/null
+++ b/domains/gilmar-dave-gamboa.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio",
+ "repo": "https://github.com/davegamboa99/my-portfolio",
+ "owner": {
+ "username": "davegamboa99",
+ "email": "davegamboa99@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/girigummadi.json b/domains/girigummadi.json
index 5b7229283..40d7d3f08 100644
--- a/domains/girigummadi.json
+++ b/domains/girigummadi.json
@@ -1,6 +1,5 @@
{
"description": "My Personal Website",
- "repo": "https://github.com/GiriGummadi",
"owner": {
"username": "GiriGummadi",
"email": "girigummadi5656@gmail.com"
diff --git a/domains/girl.json b/domains/girl.json
new file mode 100644
index 000000000..00ab0224a
--- /dev/null
+++ b/domains/girl.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ukriu",
+ "email": "isadev@ukriu.com"
+ },
+ "record": {
+ "CNAME": "ukriu.pages.dev"
+ }
+}
diff --git a/domains/githubmilind.json b/domains/githubmilind.json
new file mode 100644
index 000000000..33067d1de
--- /dev/null
+++ b/domains/githubmilind.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "githubmilind",
+ "email": "pansare@gmail.com"
+ },
+ "record": {
+ "CNAME": "githubmilind.github.io"
+ }
+}
diff --git a/domains/glitched-da-kitty-cat.json b/domains/glitched-da-kitty-cat.json
new file mode 100644
index 000000000..be310fb86
--- /dev/null
+++ b/domains/glitched-da-kitty-cat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GlitchedDaKittyCatSchoolaccount",
+ "email": "glitcheddacat@gmail.com"
+ },
+ "record": {
+ "CNAME": "glitched-da-kitty-cat.vercel.app"
+ }
+}
diff --git a/domains/glitchish.json b/domains/glitchish.json
index 02740359a..07d05dc85 100644
--- a/domains/glitchish.json
+++ b/domains/glitchish.json
@@ -1,6 +1,5 @@
{
"description": "Glitch's .IS-A.DEV domain",
- "repo": "https://github.com/glitchish.github.io",
"owner": {
"username": "glitchish",
"email": "gavinjstacey@gmail.com"
diff --git a/domains/glowbomb.json b/domains/glowbomb.json
new file mode 100644
index 000000000..046b9497b
--- /dev/null
+++ b/domains/glowbomb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "EducatedSuddenBucket",
+ "email": "educatedsuddenbucket@gmail.com"
+ },
+ "record": {
+ "URL": "https://glowbomb.esb.is-a.dev/"
+ }
+}
diff --git a/domains/gmanthemarioguy.json b/domains/gmanthemarioguy.json
new file mode 100644
index 000000000..ee92eb1a2
--- /dev/null
+++ b/domains/gmanthemarioguy.json
@@ -0,0 +1,11 @@
+{
+ "description": "This is to be used on my blog.",
+ "repo": "https://github.com/gmanthemarioguy/gmanthemarioguy.github.io",
+ "owner": {
+ "username": "gmanthemarioguy",
+ "email": "gman36147@gmail.com"
+ },
+ "record": {
+ "CNAME": "gmanthemarioguy.github.io"
+ }
+}
diff --git a/domains/goddy.json b/domains/goddy.json
new file mode 100644
index 000000000..7735a6c4d
--- /dev/null
+++ b/domains/goddy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Owinogoddie",
+ "email": "owinogoddie@gmail.com"
+ },
+ "record": {
+ "URL": "https://goddy-the-dev.vercel.app"
+ }
+}
diff --git a/domains/godkode.json b/domains/godkode.json
new file mode 100644
index 000000000..e290738b3
--- /dev/null
+++ b/domains/godkode.json
@@ -0,0 +1,11 @@
+{
+ "description": "Flex",
+ "repo": "https://github.com/GodKode69/GodKode69.github.io",
+ "owner": {
+ "username": "GodKode69",
+ "email": "knownasraghav@gmail.com"
+ },
+ "record": {
+ "CNAME": "godkode69.github.io"
+ }
+}
diff --git a/domains/gokay.json b/domains/gokay.json
index fb8e8923e..d590b8b4e 100644
--- a/domains/gokay.json
+++ b/domains/gokay.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website for the use of gokay",
- "repo": "https://github.com/gokay05/gokay05.github.io",
- "owner": {
- "username": "gokay05",
- "email": "gyamankurt@gmail.com"
- },
- "record": {
- "CNAME": "gokay05.github.io"
- }
+ "description": "Personal website for the use of gokay",
+ "repo": "https://github.com/gokay05/gokay05.github.io",
+ "owner": {
+ "username": "gokay05",
+ "email": "gyamankurt@gmail.com"
+ },
+ "record": {
+ "CNAME": "gokay05.github.io"
+ }
}
diff --git a/domains/golvellius32.json b/domains/golvellius32.json
new file mode 100644
index 000000000..5c7eb91fd
--- /dev/null
+++ b/domains/golvellius32.json
@@ -0,0 +1,11 @@
+{
+ "description": "Golvellius's website",
+ "repo": "https://github.com/golvellius32/skills-github-pages-public",
+ "owner": {
+ "username": "golvellius32",
+ "email": "golvellius@hotmail.com"
+ },
+ "record": {
+ "CNAME": "golvellius32.github.io"
+ }
+}
diff --git a/domains/govind.json b/domains/govind.json
index 7f49fe86a..7d1c94339 100644
--- a/domains/govind.json
+++ b/domains/govind.json
@@ -1,6 +1,5 @@
{
"description": "Govind's personal developer website",
- "repo": "https://github.com/govind-shenoy",
"owner": {
"username": "govind-shenoy",
"email": "govindvshenoy@gmail.com"
diff --git a/domains/graxya.json b/domains/graxya.json
new file mode 100644
index 000000000..b6892ec48
--- /dev/null
+++ b/domains/graxya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GratiaManullang03",
+ "email": "felixmanullang81@gmail.com"
+ },
+ "record": {
+ "CNAME": "gratiaportofolio.vercel.app"
+ }
+}
diff --git a/domains/grazitukozaki.json b/domains/grazitukozaki.json
index 37c53c8dd..236297604 100644
--- a/domains/grazitukozaki.json
+++ b/domains/grazitukozaki.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "GrazielyTukozaki",
- "email": "grazitukozaki@gmail.com"
- },
- "record": {
+ "owner": {
+ "username": "GrazielyTukozaki",
+ "email": "grazitukozaki@gmail.com"
+ },
+ "record": {
"CNAME": "grazi-tukozaki-dev.vercel.app"
}
}
-
diff --git a/domains/griff.json b/domains/griff.json
new file mode 100644
index 000000000..faffbe6fa
--- /dev/null
+++ b/domains/griff.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio, blog and personal website",
+ "owner": {
+ "username": "gfargo",
+ "email": "ghfargo@gmail.com",
+ "twitter": "ghfargo"
+ },
+ "record": {
+ "URL": "https://griffen.codes"
+ }
+}
diff --git a/domains/gua.json b/domains/gua.json
new file mode 100644
index 000000000..2ed932281
--- /dev/null
+++ b/domains/gua.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "yywbadm",
+ "discord": "849563829213593612",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.O62knFs7eQLZDKSjl1QUok_vd0iNXQEJVqDjfxRYJyMh6SBBWau4c-34j7mwYJJQCiig5dxl-0cmAQHprDtaCLyPv9ghabRTxNQJQXvF7ma_ron-4DeY9zI5o0hNKYV79qCQpt69FKFBbXvTIPL4grWpYaTVKoFwj2hWl3ZPU__5k3KhkMdZ6TLye-5qL713evGj3JNTYU3JQO4vR-d1VMnfeNHEfTOy1kmhbYuflBMFavXIKuPvqsy1JLg3gd7cD63jdHzG1OJsfUJvuIlTrSvlwA05DXRA0zB2ghUffmneHZfHPY2POWcGWZ2FWO0A1cRngeEjr1p9kTf2KKkauA.FDux7AQQpBXF5CT30_p1zw.vnxZM4mTxTdAb6UZ1Zz5gMJOX0Ody00WHJ8Fkt-IrUzpF_DpwROis9UmFsE9rbwxlD9lCMefKeNoIolm-Fn4DpMcsVy9gIOx4oR3hRw0TLs.XuBHoK_I8bzxVtE8vUBJbg"
+ },
+ "record": {
+ "CNAME": "yywbadm.github.io"
+ }
+}
diff --git a/domains/guidocaru.json b/domains/guidocaru.json
index 485f4edc0..6bd97cf20 100644
--- a/domains/guidocaru.json
+++ b/domains/guidocaru.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "guidocaru",
- "discord": "696554384817127486"
- },
- "record": {
- "CNAME": "guidocaru.vercel.app"
- }
+ "owner": {
+ "username": "guidocaru",
+ "discord": "696554384817127486"
+ },
+ "record": {
+ "CNAME": "guidocaru.vercel.app"
+ }
}
diff --git a/domains/guillelm.json b/domains/guillelm.json
new file mode 100644
index 000000000..204083529
--- /dev/null
+++ b/domains/guillelm.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal Portfolio Tech Website...",
+ "repo": "https://github.com/guilleLM71/guillelm71.github.io",
+ "owner": {
+ "username": "guilleLM71",
+ "email": "jlauram3@fcpn.edu.bo"
+ },
+ "record": {
+ "CNAME": "guillelm71.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/guillelm71.json b/domains/guillelm71.json
new file mode 100644
index 000000000..204083529
--- /dev/null
+++ b/domains/guillelm71.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal Portfolio Tech Website...",
+ "repo": "https://github.com/guilleLM71/guillelm71.github.io",
+ "owner": {
+ "username": "guilleLM71",
+ "email": "jlauram3@fcpn.edu.bo"
+ },
+ "record": {
+ "CNAME": "guillelm71.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/gulsah.json b/domains/gulsah.json
index a2b1f07bc..85c97ea1f 100644
--- a/domains/gulsah.json
+++ b/domains/gulsah.json
@@ -1,11 +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"
- }
+ "description": "The portfolio site of Gülşah Düzgün",
+ "repo": "https://github.com/GulsahDuzgun/Portfolio",
+ "owner": {
+ "username": "GulsahDuzgun",
+ "email": "duzgun.gulsah27@gmail.com"
+ },
+ "record": {
+ "CNAME": "gulsah.netlify.app"
+ }
}
diff --git a/domains/gustyff.json b/domains/gustyff.json
new file mode 100644
index 000000000..e001a4fb1
--- /dev/null
+++ b/domains/gustyff.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal developer portfolio",
+ "repo": "https://github.com/denisz-becskei/denisz-becskei.github.io",
+ "owner": {
+ "username": "denisz-becskei",
+ "email": "gustyff.the.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "denisz-becskei.github.io"
+ }
+}
diff --git a/domains/gusza.json b/domains/gusza.json
new file mode 100644
index 000000000..e945d96e5
--- /dev/null
+++ b/domains/gusza.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gusza110811",
+ "email": "auguz1108@gmail.com"
+ },
+ "record": {
+ "CNAME": "gusza110811.github.io"
+ }
+}
diff --git a/domains/guvent.json b/domains/guvent.json
new file mode 100644
index 000000000..49d231992
--- /dev/null
+++ b/domains/guvent.json
@@ -0,0 +1,11 @@
+{
+ "description": "The portfolio site of Guven Topal",
+ "repo": "https://github.com/guvent/guvent",
+ "owner": {
+ "username": "guvent",
+ "email": "me@guvent.com"
+ },
+ "record": {
+ "CNAME": "guvent.com"
+ }
+}
diff --git a/domains/gwly.json b/domains/gwly.json
new file mode 100644
index 000000000..4f99b36f7
--- /dev/null
+++ b/domains/gwly.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "cyrilguocode"
+ },
+ "record": {
+ "CNAME": "gwlyweb.pages.dev"
+ }
+}
diff --git a/domains/h3lios.json b/domains/h3lios.json
deleted file mode 100644
index 088090649..000000000
--- a/domains/h3lios.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "NinjaXility",
- "discord": "511106356267319296",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IBR3ZrvHG0dyQ1OU_ThEq2VbB_gvPhqPJkyPtwwbODCQENB-T2fstb7JrqYXG9lNaBWBrkeUzrheB5HY5tgEmPDAe6eDnN1D0dk0HKwxySEO7I1wbJsoJUnrWXigmuIYYkCPqHO9bBBD3seh4Y-REvCFI_xjNxBOIkqYiISDG4SJZW_AMoM-4ZwWJOS30ASQA3IM1DrvS3cNeamN0vmy2W16z7PUQxfn3UpwhdalfbzZKgiPowTVnbMT8OZ0IL45VZCmqeikraFf7fUv0PPCk54c07A8mIpYepzyy4hUftsF-ILHDLU_iOMZDHPrMDpPeyFXgYjA1iv1AfgFj6lshA.CFjZ-C3qr_js2SqYJQruNQ.j12mMFCkJhwZpCJXE_JDaY1XgeCUkSwhowfAvMEFrxvTdeqGbeEaHiXN4-oXfM0FuPLNgfsJDTwmva-ekWTAeOtX4a3IBlJ0uuj65_tdMOw.NDTU5ISRijrUIUoDvdYXJw"
- },
- "record": {
- "CNAME": "ninjaxility.github.io"
- }
-}
diff --git a/domains/hackqd.json b/domains/hackqd.json
index 6bc511def..41bd4d3e5 100644
--- a/domains/hackqd.json
+++ b/domains/hackqd.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/hackqd/hackqd.github.io",
"owner": {
"username": "hackqd",
- "email": "hackqdftw@gmail.com",
- "twitter": ""
+ "email": "hackqdftw@gmail.com"
},
"record": {
"CNAME": "hackqd.github.io"
diff --git a/domains/hafeez.json b/domains/hafeez.json
new file mode 100644
index 000000000..46548ec37
--- /dev/null
+++ b/domains/hafeez.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hamid1882",
+ "email": "hussainhafeez1100@gmail.com",
+ "discord": "hamid1882"
+ },
+ "record": {
+ "CNAME": "hafeez-delta.vercel.app"
+ }
+}
diff --git a/domains/halinh0506.json b/domains/halinh0506.json
deleted file mode 100644
index 2a3284a1c..000000000
--- a/domains/halinh0506.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "huanhoahongso3-collab",
- "email": "huanhoahongso3@gmail.com"
- },
- "record": {
- "A": ["75.2.60.5"],
- "MX": ["halinh0506-isa-dev03c.mail.protection.outlook.com"],
- "TXT": "v=spf1 include:spf.protection.outlook.com -all"
- }
-}
diff --git a/domains/halink.json b/domains/halink.json
new file mode 100644
index 000000000..464b84b14
--- /dev/null
+++ b/domains/halink.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "halink0803"
+ },
+ "record": {
+ "CNAME": "halink0803.github.io"
+ }
+}
diff --git a/domains/hamdi.json b/domains/hamdi.json
new file mode 100644
index 000000000..8790624d9
--- /dev/null
+++ b/domains/hamdi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/hb12devtn/Portfolio",
+ "owner": {
+ "username": "hb12devtn",
+ "email": "h.bougattaya1212@gmail.com"
+ },
+ "record": {
+ "CNAME": "hb12devtn.github.io"
+ }
+}
diff --git a/domains/hamid.json b/domains/hamid.json
new file mode 100644
index 000000000..bf5528299
--- /dev/null
+++ b/domains/hamid.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hamidsiddiqi2009",
+ "email": "hamidsiddiqi888@gmail.com"
+ },
+ "record": {
+ "CNAME": "hamidsiddiqi2009.github.io"
+ }
+}
diff --git a/domains/hammed.json b/domains/hammed.json
index 8db9ef285..91bcf2005 100644
--- a/domains/hammed.json
+++ b/domains/hammed.json
@@ -1,11 +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"
- }
+ "description": "Link to my portfolio site.",
+ "repo": "https://github.com/devhammed/devhammed.github.io",
+ "owner": {
+ "username": "devhammed",
+ "email": "hey@hammed.dev"
+ },
+ "record": {
+ "CNAME": "devhammed.github.io"
+ }
}
diff --git a/domains/haohoang.json b/domains/haohoang.json
new file mode 100644
index 000000000..547ff761f
--- /dev/null
+++ b/domains/haohoang.json
@@ -0,0 +1,10 @@
+{
+ "description": "The blog of Hao Hoang",
+ "owner": {
+ "username": "vanhaohoang",
+ "email": "hoangvanhao99.01@gmail.com"
+ },
+ "record": {
+ "CNAME": "vanhaohoang.github.io"
+ }
+}
diff --git a/domains/hareesh.json b/domains/hareesh.json
new file mode 100644
index 000000000..f6906c0e0
--- /dev/null
+++ b/domains/hareesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Hareesh108",
+ "email": "hareeshbhittam@gmail.com"
+ },
+ "record": {
+ "CNAME": "me-hazel-delta.vercel.app"
+ }
+}
diff --git a/domains/harish.json b/domains/harish.json
new file mode 100644
index 000000000..54b3b46c7
--- /dev/null
+++ b/domains/harish.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "HarishChandran3304",
+ "email": "harish3304.work@gmail.com",
+ "discord": "harish3304"
+ },
+ "record": {
+ "CNAME": "harish-chandran.vercel.app"
+ }
+}
diff --git a/domains/harley.json b/domains/harley.json
new file mode 100644
index 000000000..d281afe4e
--- /dev/null
+++ b/domains/harley.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "weebNeedWeed",
+ "email": "rivenmle@gmail.com"
+ },
+ "record": {
+ "CNAME": "weebneedweed.github.io"
+ }
+}
diff --git a/domains/harmputman.json b/domains/harmputman.json
index eaae85714..e0606e0b5 100644
--- a/domains/harmputman.json
+++ b/domains/harmputman.json
@@ -1,6 +1,5 @@
{
"description": "Harm Putman a.k.a. High Five",
- "repo": "https://github.com/harmputman",
"owner": {
"username": "harmputman",
"twitter": "harmputman"
diff --git a/domains/haroki.json b/domains/haroki.json
new file mode 100644
index 000000000..7351d4e9c
--- /dev/null
+++ b/domains/haroki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "justhar",
+ "email": "harzksu@gmail.com"
+ },
+ "record": {
+ "CNAME": "justhar.github.io"
+ }
+}
diff --git a/domains/harrigan.json b/domains/harrigan.json
index 32d85b357..b3970f409 100644
--- a/domains/harrigan.json
+++ b/domains/harrigan.json
@@ -1,6 +1,5 @@
{
"description": "Martin Harrigan's Homepage",
- "repo": "https://github.com/harrigan",
"owner": {
"username": "harrigan",
"email": "martinharrigan@gmail.com"
diff --git a/domains/harrison.json b/domains/harrison.json
deleted file mode 100644
index 55dcef36b..000000000
--- a/domains/harrison.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "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
index 56aed2491..60adeb28e 100644
--- a/domains/harshd.json
+++ b/domains/harshd.json
@@ -1,11 +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"
- }
+ "description": "Portfolio",
+ "repo": "https://github.com/harsh-writes-code/harsh-writes-code.github.io",
+ "owner": {
+ "username": "harsh-writes-code",
+ "email": "happydhimanbarara@gmail.com"
+ },
+ "record": {
+ "CNAME": "harsh-writes-code.github.io"
+ }
}
diff --git a/domains/harshmali.json b/domains/harshmali.json
new file mode 100644
index 000000000..17fc3497a
--- /dev/null
+++ b/domains/harshmali.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "harm04",
+ "email": "harshmali.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "harsh-project-8cafb.web.app"
+ }
+}
diff --git a/domains/harshmallick.json b/domains/harshmallick.json
new file mode 100644
index 000000000..f7387af72
--- /dev/null
+++ b/domains/harshmallick.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio website",
+ "repo": "https://github.com/harsh-mallick/portfolio",
+ "owner": {
+ "username": "harsh-mallick",
+ "email": "harshmallick052009@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+ }
diff --git a/domains/harshnj.json b/domains/harshnj.json
index d1c828b19..ebcc0f51a 100644
--- a/domains/harshnj.json
+++ b/domains/harshnj.json
@@ -1,6 +1,5 @@
{
"description": "My Portfolio",
- "repo": "https://github.com/HarshNarayanJha",
"owner": {
"username": "HarshNarayanJha",
"email": "harshnj@proton.me"
diff --git a/domains/harshshah.json b/domains/harshshah.json
index d2e6a4130..4df0e9fe3 100644
--- a/domains/harshshah.json
+++ b/domains/harshshah.json
@@ -1,10 +1,12 @@
{
- "owner": {
- "username": "harshshah-codes",
- "email": "harshshah.dev@gmail.com",
- "discord": "889700837520199761"
- },
- "record": {
- "A": ["76.76.21.21"]
- }
+ "owner": {
+ "username": "harshshah-codes",
+ "email": "harshshah.dev@gmail.com",
+ "discord": "889700837520199761"
+ },
+ "record": {
+ "A": ["76.76.21.21"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
}
diff --git a/domains/harshvardhan.json b/domains/harshvardhan.json
new file mode 100644
index 000000000..9dcda340c
--- /dev/null
+++ b/domains/harshvardhan.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Personal Portfolio",
+ "repo": "https://github.com/Harshvardhan5703/HarshPortfolio",
+ "owner": {
+ "username": "Harshvardhan5703",
+ "email": "shekhawat.harsh287@gmail.com"
+ },
+ "record": {
+ "CNAME": "harsh-portfolio-liard.vercel.app"
+ }
+}
diff --git a/domains/harunabdullah.json b/domains/harunabdullah.json
new file mode 100644
index 000000000..f535533c9
--- /dev/null
+++ b/domains/harunabdullah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "harunabdullahrakin"
+ },
+
+ "record": {
+ "A": ["185.31.40.12"]
+ }
+}
diff --git a/domains/hasan.json b/domains/hasan.json
index 62f9df7c5..7f1e31776 100644
--- a/domains/hasan.json
+++ b/domains/hasan.json
@@ -1,11 +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"
- }
+ "description": "My personal website",
+ "repo": "https://github.com/bistcuite/bistcuite.github.io",
+ "owner": {
+ "username": "bistcuite",
+ "email": "hnk1440@gmail.com"
+ },
+ "record": {
+ "CNAME": "bistcuite.github.io"
+ }
}
diff --git a/domains/hasanbithto.json b/domains/hasanbithto.json
new file mode 100644
index 000000000..e46df5e40
--- /dev/null
+++ b/domains/hasanbithto.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "01HB",
+ "email": "hasanbithto207058@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/hashan.json b/domains/hashan.json
new file mode 100644
index 000000000..6e0a5a49b
--- /dev/null
+++ b/domains/hashan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hashaaan",
+ "email": "shalithadev@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashanshalitha.vercel.app"
+ }
+}
diff --git a/domains/hastebin.json b/domains/hastebin.json
index 8719e4cac..d2c9f3338 100644
--- a/domains/hastebin.json
+++ b/domains/hastebin.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "EducatedSuddenBucket",
- "email": "149485703+EducatedSuddenBucket@users.noreply.github.com",
"discord": "1167825360151380032"
},
"record": {
diff --git a/domains/hater-of-vectors.json b/domains/hater-of-vectors.json
index 6acefd359..40ffa3672 100644
--- a/domains/hater-of-vectors.json
+++ b/domains/hater-of-vectors.json
@@ -1,12 +1,12 @@
{
- "description": "Test website for hater of vectors projects",
- "repo": "https://github.com/Mortadelo24/",
- "owner": {
- "username": "Mortadelo24",
- "email": "jdmp010101@gmail.com"
- },
- "record": {
- "URL": "https://github.com/Mortadelo24/"
- },
- "proxied": false
+ "description": "Test website for hater of vectors projects",
+ "repo": "https://github.com/Mortadelo24/",
+ "owner": {
+ "username": "Mortadelo24",
+ "email": "jdmp010101@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/Mortadelo24/"
+ },
+ "proxied": false
}
diff --git a/domains/haydenpc.json b/domains/haydenpc.json
new file mode 100644
index 000000000..771561aab
--- /dev/null
+++ b/domains/haydenpc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "haydenpc",
+ "email": "haydenpc369@gmail.com"
+ },
+ "record": {
+ "CNAME": "haydenpc.github.io"
+ }
+}
diff --git a/domains/hellokhangtran.json b/domains/hellokhangtran.json
new file mode 100644
index 000000000..a32a983b5
--- /dev/null
+++ b/domains/hellokhangtran.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website for Khang Tran",
+ "owner": {
+ "username": "KN2222",
+ "email": "hellokhangtran03@gmail.com"
+ },
+ "record": {
+ "CNAME": "hellokhangtran.vercel.app"
+ },
+ "proxied": false
+}
diff --git a/domains/hemath.json b/domains/hemath.json
new file mode 100644
index 000000000..97e97e053
--- /dev/null
+++ b/domains/hemath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "djhemath",
+ "email": "djhemath@gmail.com"
+ },
+ "record": {
+ "URL": "https://hemath.dev"
+ }
+}
diff --git a/domains/henderythmix.json b/domains/henderythmix.json
new file mode 100644
index 000000000..601c86ad4
--- /dev/null
+++ b/domains/henderythmix.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "henderythmix",
+ "email": "robertoselleswork@gmail.com"
+ },
+ "record": {
+ "CNAME": "henderythmix.vercel.app"
+ }
+}
diff --git a/domains/hercase.json b/domains/hercase.json
new file mode 100644
index 000000000..8c14dc06a
--- /dev/null
+++ b/domains/hercase.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hercase",
+ "email": "hercase92@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/hero.json b/domains/hero.json
new file mode 100644
index 000000000..3b2001ac5
--- /dev/null
+++ b/domains/hero.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "heropj",
+ "email": "pranjalpandey1022003@gmail.com"
+ },
+ "record": {
+ "URL": "https://heroportfolio-two.vercel.app/portfolio"
+ }
+}
diff --git a/domains/herve.json b/domains/herve.json
new file mode 100644
index 000000000..3898aae8b
--- /dev/null
+++ b/domains/herve.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "herveleclerc",
+ "email": "herve.leclerc@gmail.com"
+ },
+ "record": {
+ "CNAME": "herveleclerc.github.io"
+ }
+}
diff --git a/domains/heyaxo.json b/domains/heyaxo.json
new file mode 100644
index 000000000..1938285bf
--- /dev/null
+++ b/domains/heyaxo.json
@@ -0,0 +1,16 @@
+{
+ "description": "My personal homepage!",
+ "repo": "https://github.com/verygafanhot",
+ "owner": {
+ "username": "Verygafanhot",
+ "email": "verygafanhot@gmail.com",
+ "twitter": "verygafanhot",
+ "discord": "Verygafanhot"
+ },
+ "record": {
+ "CNAME": "verygafanhot.github.io",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ },
+ "proxied": true
+}
diff --git a/domains/hgia.json b/domains/hgia.json
new file mode 100644
index 000000000..236785df1
--- /dev/null
+++ b/domains/hgia.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hjia98",
+ "email": "hoanggia1611@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/hjia98"
+ }
+ }
diff --git a/domains/hieu.json b/domains/hieu.json
new file mode 100644
index 000000000..c08837d31
--- /dev/null
+++ b/domains/hieu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hieutm83",
+ "email": "minhhieu.832k@gmail.com",
+ "discord": "729364691398164490"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/himashu.json b/domains/himashu.json
index bd8feee3a..f939c2724 100644
--- a/domains/himashu.json
+++ b/domains/himashu.json
@@ -1,6 +1,5 @@
{
"description": "About Himanshu Chhatwal",
- "repo": "https://github.com/himanshu1221",
"owner": {
"username": "himanshu1221",
"email": "himanshuchhatwal9295@gmail.com",
diff --git a/domains/himesh.json b/domains/himesh.json
new file mode 100644
index 000000000..2e8e40d0c
--- /dev/null
+++ b/domains/himesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "himeshparashar",
+ "email": "himeshparashar424@gmail.com"
+ },
+ "record": {
+ "CNAME": "site-himeshparashar.netlify.app"
+ }
+}
diff --git a/domains/himeshparashar.json b/domains/himeshparashar.json
new file mode 100644
index 000000000..2e8e40d0c
--- /dev/null
+++ b/domains/himeshparashar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "himeshparashar",
+ "email": "himeshparashar424@gmail.com"
+ },
+ "record": {
+ "CNAME": "site-himeshparashar.netlify.app"
+ }
+}
diff --git a/domains/hironichu.json b/domains/hironichu.json
index b5593db33..19ffd8072 100644
--- a/domains/hironichu.json
+++ b/domains/hironichu.json
@@ -1,6 +1,5 @@
{
"description": "Yes I am a developer",
- "repo": "https://github.com/hironichu",
"owner": {
"username": "hironichu",
"email": "hironichu@gmail.com"
diff --git a/domains/hjc.json b/domains/hjc.json
new file mode 100644
index 000000000..30eb94731
--- /dev/null
+++ b/domains/hjc.json
@@ -0,0 +1,12 @@
+{
+ "description": "The repo is my personal blog,it will record the things about how to develop.I will make some tutorials as well.",
+ "repo": "https://github.com/hjc-code/hjc-code.github.io",
+ "owner": {
+ "username": "hjc-code",
+ "email": "houjuncheng.me@gmail.com"
+ },
+ "record": {
+ "CNAME": "hjc-code.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/hjr.json b/domains/hjr.json
new file mode 100644
index 000000000..8a65a027b
--- /dev/null
+++ b/domains/hjr.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website for JrHimself.",
+ "owner": {
+ "username": "hongjr03",
+ "email": "me@jrhim.com"
+ },
+ "record": {
+ "CNAME": "hongjr03-github-io.vercel.app"
+ }
+}
diff --git a/domains/hoan.json b/domains/hoan.json
new file mode 100644
index 000000000..8b28f9a23
--- /dev/null
+++ b/domains/hoan.json
@@ -0,0 +1,10 @@
+{
+ "description": "hoan.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "hwanngo",
+ "email": "conghoan.0406@gmail.com"
+ },
+ "record": {
+ "CNAME": "hwanngo.github.io"
+ }
+}
diff --git a/domains/holdulv.json b/domains/holdulv.json
new file mode 100644
index 000000000..39fd9be44
--- /dev/null
+++ b/domains/holdulv.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Holdulv-official",
+ "email": "holdulvlinks@gmail.com",
+ "discord": "holdulv"
+ },
+ "record": {
+ "CNAME": "edge.redirect.pizza"
+ }
+}
diff --git a/domains/holedev.json b/domains/holedev.json
new file mode 100644
index 000000000..4e1b3e006
--- /dev/null
+++ b/domains/holedev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "holedev",
+ "email": "contact@holedev.com"
+ },
+ "record": {
+ "URL": "https://github.com/holedev"
+ }
+}
diff --git a/domains/holux.json b/domains/holux.json
new file mode 100644
index 000000000..6b41b9586
--- /dev/null
+++ b/domains/holux.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "holux-design",
+ "email": "office@holux-design.at"
+ },
+ "record": {
+ "URL": "https://holux-design.at"
+ }
+}
diff --git a/domains/homelab.json b/domains/homelab.json
new file mode 100644
index 000000000..143591535
--- /dev/null
+++ b/domains/homelab.json
@@ -0,0 +1,10 @@
+{
+ "description": "Domain for dynamic DNS updates and Cloudflare Tunnel setup for demo and home lab purposes",
+ "owner": {
+ "username": "vikipranata",
+ "email": "helovikipranata@gmail.com"
+ },
+ "record": {
+ "NS": ["deb.ns.cloudflare.com", "sid.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/homemadestea58.json b/domains/homemadestea58.json
index b99176bcf..fbb0e7dd6 100644
--- a/domains/homemadestea58.json
+++ b/domains/homemadestea58.json
@@ -1,6 +1,5 @@
{
"description": "Add some description",
- "repo": "https://github.com/Homemadestea58homemadestea58.github.io",
"owner": {
"username": "Homemadestea58",
"email": "conor.collins+isadev@dbbstu.catholic.edu.au"
diff --git a/domains/hongquang.json b/domains/hongquang.json
new file mode 100644
index 000000000..10c809630
--- /dev/null
+++ b/domains/hongquang.json
@@ -0,0 +1,11 @@
+{
+ "description": "For introduce myself",
+ "repo": "https://github.com/HQuang/HQuang",
+ "owner": {
+ "username": "quanglh268",
+ "email": "quanglh268@gmail.com"
+ },
+ "record": {
+ "CNAME": "hquang.github.io"
+ }
+}
diff --git a/domains/hongson.json b/domains/hongson.json
index 67d32b7d2..98543bc3e 100644
--- a/domains/hongson.json
+++ b/domains/hongson.json
@@ -4,7 +4,6 @@
"discord": "1221370693959286892",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U-QKtaxmfpnD4gyKpxceyXEJniqrouqFqMLOUr-R5US7q9t7CgEfpFVf1ICJC22NBFQDIZupwEWf0ggOhHjcRcq5ptxy5fMav6RNrt7luJzeDwdgFroBFbg2XjlY5ArfsJiPqEAJJspN3wt9cGoxb2WG6MQHwID90F3cS4PijOnThMX9h-qkOzXzCUwch4ex2qa7_MsQKbaEICSMJDphr1bX5FCUCMqFmRTF5LltjhLBh65zEXHPZZiKKZVWmbb4ENWv-C6PlSX2W2NrtbWn6AJBafdOTDKH2gFw2nbZMc-BpQB93PKcsHnMpyaUEuGE6miZwt-yP9RwI0hRRheDw.Su7jI9kAzVy63eUkcb2qVQ.m9-XLef-CoAmPkHyXSfzyZeDUQW0FliIJ_E91X6oD4B-3aoItG32mUMGDlNntwzOk1CbbSUXQDLY7q2zoHP-A.aQsLYDPrqxn-VyenjREoeA"
},
-
"record": {
"CNAME": "hongson209.github.io"
}
diff --git a/domains/hoojinguyen.json b/domains/hoojinguyen.json
new file mode 100644
index 000000000..a1d2c8ded
--- /dev/null
+++ b/domains/hoojinguyen.json
@@ -0,0 +1,11 @@
+{
+ "description": "hoojinguyen.is-a.dev : This is my personal notebook",
+ "repo": "https://github.com/hoojinguyen/portfolio-by-ai",
+ "owner": {
+ "username": "hoojinguyen",
+ "email": "vn.hoinv98@gmail.com"
+ },
+ "record": {
+ "URL": "https://hooji-nguyen.vercel.app/"
+ }
+}
diff --git a/domains/horu.json b/domains/horu.json
index a2dfe34c5..d8e3b4cd6 100644
--- a/domains/horu.json
+++ b/domains/horu.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "HigherOrderLogic",
- "email": "73709188+HigherOrderLogic@users.noreply.github.com"
+ "username": "HigherOrderLogic"
},
"record": {
"CNAME": "higherorderlogic.github.io"
diff --git a/domains/hotfix.saftec.json b/domains/hotfix.saftec.json
new file mode 100644
index 000000000..29f984f33
--- /dev/null
+++ b/domains/hotfix.saftec.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Samuraiflamesf",
+ "email": "Samuraiflamesf@gmail.com"
+ },
+ "record": {
+ "A": ["152.67.45.142"]
+ }
+}
diff --git a/domains/hroot.json b/domains/hroot.json
new file mode 100644
index 000000000..d52d1c477
--- /dev/null
+++ b/domains/hroot.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "H-Root",
+ "email": "sudo.hroot@gmail.com"
+ },
+ "record": {
+ "URL": "https://hroot.dev/"
+ }
+}
diff --git a/domains/hsn.json b/domains/hsn.json
index 80a8ce99e..8febb53c4 100644
--- a/domains/hsn.json
+++ b/domains/hsn.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "hasan-bro-coder",
- "email": "hasanur23910@gmail.com",
- "discord": "hasan894"
- },
- "record": {
- "CNAME": "hasanur.vercel.app"
- }
+ "owner": {
+ "username": "hasan-bro-coder",
+ "email": "hasanur23910@gmail.com",
+ "discord": "hasan894"
+ },
+ "record": {
+ "CNAME": "hasanur.vercel.app"
+ }
}
diff --git a/domains/htrnguyen.json b/domains/htrnguyen.json
new file mode 100644
index 000000000..b5247526a
--- /dev/null
+++ b/domains/htrnguyen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "htrnguyen",
+ "email": "hatrongnguyen04@gmail.com"
+ },
+ "record": {
+ "CNAME": "astro-portfolio-nu-seven.vercel.app"
+ }
+}
diff --git a/domains/hub.json b/domains/hub.json
new file mode 100644
index 000000000..c5945f2d2
--- /dev/null
+++ b/domains/hub.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jOaawd",
+ "email": "theyneverfwmee@gmail.com"
+ },
+ "record": {
+ "CNAME": "cqtmfxgu.up.railway.app"
+ }
+}
diff --git a/domains/hugo.json b/domains/hugo.json
index 74790d3de..b217c90bb 100644
--- a/domains/hugo.json
+++ b/domains/hugo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "hugorplobo",
- "email": "hugorplobo@gmail.com"
- },
- "record": {
- "CNAME": "hugorplobo.github.io"
- }
+ "owner": {
+ "username": "hugorplobo",
+ "email": "hugorplobo@gmail.com"
+ },
+ "record": {
+ "CNAME": "hugorplobo.github.io"
+ }
}
diff --git a/domains/hungthai.json b/domains/hungthai.json
new file mode 100644
index 000000000..c28594939
--- /dev/null
+++ b/domains/hungthai.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Resume Website",
+ "repo": "https://github.com/hungthai1401/resume",
+ "owner": {
+ "username": "hungthai1401",
+ "email": "hungthai1401.it@gmail.com"
+ },
+ "record": {
+ "CNAME": "hungthai1401.github.io"
+ }
+}
diff --git a/domains/huntroid.json b/domains/huntroid.json
index a8726b01f..9065b0a7c 100644
--- a/domains/huntroid.json
+++ b/domains/huntroid.json
@@ -4,6 +4,17 @@
"email": "srimath8@gmail.com"
},
"record": {
- "A": ["185.199.108.153"]
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ]
}
}
diff --git a/domains/huu-hoang.json b/domains/huu-hoang.json
new file mode 100644
index 000000000..b1df9317d
--- /dev/null
+++ b/domains/huu-hoang.json
@@ -0,0 +1,10 @@
+{
+ "domain": "huu-hoang.is-a.dev",
+ "owner": {
+ "email": "huuhoag1412@gmail.com",
+ "username": "Mirai3103"
+ },
+ "record": {
+ "A": ["103.82.194.100"]
+ }
+}
diff --git a/domains/hyr1nk.json b/domains/hyr1nk.json
new file mode 100644
index 000000000..692cd6455
--- /dev/null
+++ b/domains/hyr1nk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Kriemseeley",
+ "email": "adamseeley112250@gmail.com"
+ },
+ "record": {
+ "A": ["39.101.73.144"]
+ }
+}
diff --git a/domains/i3vie.json b/domains/i3vie.json
deleted file mode 100644
index 371692667..000000000
--- a/domains/i3vie.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "i3vie",
- "discord": "i3vie"
- },
- "record": {
- "CNAME": "i3vie.port0.org"
- }
-}
diff --git a/domains/iamdhakrey.json b/domains/iamdhakrey.json
new file mode 100644
index 000000000..308119b65
--- /dev/null
+++ b/domains/iamdhakrey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iamdhakrey",
+ "email": "dhakreyhrithik@gmail.com"
+ },
+ "record": {
+ "URL": "https://iamdhakrey.dev"
+ }
+}
diff --git a/domains/iamkevinhuang.json b/domains/iamkevinhuang.json
new file mode 100644
index 000000000..aa72ec809
--- /dev/null
+++ b/domains/iamkevinhuang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iamkevinhuang",
+ "email": "kevinjaydenwivano@duck.com"
+ },
+ "record": {
+ "CNAME": "iamkevinhuang.github.io"
+ }
+}
diff --git a/domains/ibrahim.json b/domains/ibrahim.json
index 22a80eef1..88f7d2cf4 100644
--- a/domains/ibrahim.json
+++ b/domains/ibrahim.json
@@ -1,6 +1,5 @@
{
"description": "ibrahim's personal developer website.",
- "repo": "https://github.com/ibrahimdevx",
"owner": {
"username": "ibrahimdev",
"email": "ibrahimimran@northsixty.com"
diff --git a/domains/ibru.json b/domains/ibru.json
new file mode 100644
index 000000000..a00e3f7d0
--- /dev/null
+++ b/domains/ibru.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "satindar31",
+ "email": "satindar@satindar-is.me"
+ },
+ "record": {
+ "URL": "https://satindar.is-a.dev"
+ }
+}
diff --git a/domains/idcesares.json b/domains/idcesares.json
new file mode 100644
index 000000000..9410601b4
--- /dev/null
+++ b/domains/idcesares.json
@@ -0,0 +1,11 @@
+{
+ "description": "Isaac D'Césares personal website",
+ "repo": "https://github.com/idcesares",
+ "owner": {
+ "username": "idcesares",
+ "email": "isaac.dcesares@gmail.com"
+ },
+ "record": {
+ "URL": "https://dcesares.dev"
+ }
+}
diff --git a/domains/idriss.json b/domains/idriss.json
new file mode 100644
index 000000000..076dfeac9
--- /dev/null
+++ b/domains/idriss.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AstroDriss",
+ "email": "drisspennywise@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/iggy.json b/domains/iggy.json
new file mode 100644
index 000000000..4ed071d4e
--- /dev/null
+++ b/domains/iggy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ignazio-castrogiovanni",
+ "email": "iggy.castrogiovanni@gmail.com"
+ },
+ "record": {
+ "URL": "https://ignazio-castrogiovanni.com"
+ }
+}
diff --git a/domains/igna.json b/domains/igna.json
index b162e8664..7b28ab568 100644
--- a/domains/igna.json
+++ b/domains/igna.json
@@ -1,6 +1,5 @@
{
"description": "igna's portfolio website",
- "repo": "https://github.com/uhIgnacio",
"owner": {
"username": "uhIgnacio",
"email": "igna@hypixel.one"
diff --git a/domains/ijas.json b/domains/ijas.json
new file mode 100644
index 000000000..5c9600c27
--- /dev/null
+++ b/domains/ijas.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ijasxyz",
+ "email": "ijas.n.ijas@gmail.com"
+ },
+ "record": {
+ "CNAME": "ijas.netlify.app"
+ },
+ "proxied": false
+}
diff --git a/domains/ikram.json b/domains/ikram.json
new file mode 100644
index 000000000..84ac66224
--- /dev/null
+++ b/domains/ikram.json
@@ -0,0 +1,15 @@
+{
+ "owner": {
+ "username": "ikram-maulana",
+ "email": "ikrammaulana021@gmail.com",
+ "discord": "634603202784002050"
+ },
+ "record": {
+ "A": ["76.76.21.21"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": [
+ "v=spf1 include:spf.improvmx.com ~all",
+ "google-site-verification=C38zyZL8LP_056d5IgevUInJTe4qerfxC6-qjQORdh4"
+ ]
+ }
+}
diff --git a/domains/ikramth.json b/domains/ikramth.json
new file mode 100644
index 000000000..377caf3a1
--- /dev/null
+++ b/domains/ikramth.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "arcfoz",
+ "email": "ikramtauffiqulh@gmail.com"
+ },
+ "record": {
+ "CNAME": "ikramth.vercel.app"
+ }
+}
diff --git a/domains/ilya.json b/domains/ilya.json
new file mode 100644
index 000000000..f083e1348
--- /dev/null
+++ b/domains/ilya.json
@@ -0,0 +1,11 @@
+{
+ "description": "Ilya Stepanov's portfolio website",
+ "repo": "https://github.com/thatslegit/threejs-portfolio",
+ "owner": {
+ "username": "thatslegit",
+ "email": "iliastepanov1996@gmail.com"
+ },
+ "record": {
+ "CNAME": "thatslegit.github.io"
+ }
+}
diff --git a/domains/imad.json b/domains/imad.json
index 7eec7155d..b0de533e4 100644
--- a/domains/imad.json
+++ b/domains/imad.json
@@ -1,6 +1,5 @@
{
"description": "Imad",
- "repo": "https://github.com/imadboy89",
"owner": {
"username": "imadboy89",
"email": "imad.kh@outlook.com"
diff --git a/domains/imd.json b/domains/imd.json
index 7eec7155d..b0de533e4 100644
--- a/domains/imd.json
+++ b/domains/imd.json
@@ -1,6 +1,5 @@
{
"description": "Imad",
- "repo": "https://github.com/imadboy89",
"owner": {
"username": "imadboy89",
"email": "imad.kh@outlook.com"
diff --git a/domains/imm0nv1nhtv.json b/domains/imm0nv1nhtv.json
index 4aff3bd16..c0a6a8d49 100644
--- a/domains/imm0nv1nhtv.json
+++ b/domains/imm0nv1nhtv.json
@@ -4,6 +4,6 @@
"email": "windows10phamvinh+github@gmail.com"
},
"record": {
- "CNAME": "imm0nv1nhtv.pages.dev"
+ "NS": ["alberto.ns.cloudflare.com", "rosemary.ns.cloudflare.com"]
}
}
diff --git a/domains/immuaz.json b/domains/immuaz.json
new file mode 100644
index 000000000..f1c81f40d
--- /dev/null
+++ b/domains/immuaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "muazsrc",
+ "email": "muazsrc17@gmail.com"
+ },
+ "record": {
+ "CNAME": "muaz.pages.dev"
+ }
+}
diff --git a/domains/imnahn.json b/domains/imnahn.json
new file mode 100644
index 000000000..4b3764ee7
--- /dev/null
+++ b/domains/imnahn.json
@@ -0,0 +1,12 @@
+{
+ "description": "Just my portfolio",
+ "repo": "https://github.com/imnotnahn/myportfolio",
+ "owner": {
+ "username": "imnotnahn",
+ "email": "thanhnhan.contact.work@gmail.com",
+ "discord": "nowim.nhan"
+ },
+ "record": {
+ "CNAME": "myportfolio-omega-liard.vercel.app"
+ }
+}
diff --git a/domains/imnyang.json b/domains/imnyang.json
new file mode 100644
index 000000000..9315d3cf6
--- /dev/null
+++ b/domains/imnyang.json
@@ -0,0 +1,12 @@
+{
+ "description": "imnyang.is-a.dev",
+ "repo": "https://github.com/imnyang/is-a-dev",
+ "owner": {
+ "username": "imnyang",
+ "email": "me@imnya.ng"
+ },
+ "record": {
+ "CNAME": "imnya.ng"
+ },
+ "proxied": false
+}
diff --git a/domains/imtiazepu.json b/domains/imtiazepu.json
new file mode 100644
index 000000000..8c0f407f1
--- /dev/null
+++ b/domains/imtiazepu.json
@@ -0,0 +1,10 @@
+{
+ "description": "Parsonal website for Imtiaz Epu",
+ "owner": {
+ "username": "imtiazepu",
+ "email": "info@imtiazepu.com"
+ },
+ "record": {
+ "URL": "https://imtiazepu.com"
+ }
+}
diff --git a/domains/imxitiz.json b/domains/imxitiz.json
new file mode 100644
index 000000000..73bc0bbcc
--- /dev/null
+++ b/domains/imxitiz.json
@@ -0,0 +1,9 @@
+{
+ "description": "imxitiz.is-a.dev",
+ "owner": {
+ "username": "imxitiz"
+ },
+ "record": {
+ "CNAME": "imxitiz.github.io"
+ }
+}
diff --git a/domains/ingo.json b/domains/ingo.json
new file mode 100644
index 000000000..05cb1319d
--- /dev/null
+++ b/domains/ingo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BugHunter2k",
+ "email": "hello@ingohollmann.de"
+ },
+ "record": {
+ "URL": "https://ingohollmann.de/"
+ }
+}
diff --git a/domains/innocentzero.json b/domains/innocentzero.json
new file mode 100644
index 000000000..6d9c93b6b
--- /dev/null
+++ b/domains/innocentzero.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal blog",
+ "repo": "https://codeberg.org/innocentzer0/pages",
+ "owner": {
+ "username": "InnocentZero",
+ "email": "isfarulhaque@proton.me"
+ },
+ "record": {
+ "CNAME": "innocentzer0.codeberg.page"
+ }
+}
diff --git a/domains/inputly.json b/domains/inputly.json
new file mode 100644
index 000000000..db5f3f7c2
--- /dev/null
+++ b/domains/inputly.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NateNear",
+ "email": "matternate21@gmail.com"
+ },
+ "record": {
+ "CNAME": "inputly.vercel.app"
+ }
+}
diff --git a/domains/interstellaros.json b/domains/interstellaros.json
deleted file mode 100644
index cf559db57..000000000
--- a/domains/interstellaros.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jacksoncraft859",
- "email": "pollardjackson@outlook.com"
- },
- "record": {
- "TXT": "replit-verify=ac38945f-f53b-4b1b-980d-e2a1d64175c6"
- }
-}
diff --git a/domains/iomiras.json b/domains/iomiras.json
new file mode 100644
index 000000000..ce9350855
--- /dev/null
+++ b/domains/iomiras.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iomiras",
+ "email": "miras.shaltayev+isadev@gmail.com"
+ },
+ "record": {
+ "CNAME": "miras-iomiras.vercel.app"
+ }
+}
diff --git a/domains/ios.json b/domains/ios.json
new file mode 100644
index 000000000..90c755dab
--- /dev/null
+++ b/domains/ios.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "ahios",
+ "email": "ahios.dev@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"],
+ "TXT": "google-site-verification=AyQrjerFwekkOGG9oZLdBFy4TOAeVAYrHTTm5Q-NZD4",
+ "MX": [
+ "SMTP.GOOGLE.COM"
+ ]
+ }
+ }
\ No newline at end of file
diff --git a/domains/isaacrobert33.json b/domains/isaacrobert33.json
new file mode 100644
index 000000000..119ce98f3
--- /dev/null
+++ b/domains/isaacrobert33.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "isaacrobert33",
+ "email": "isaacrobertoluwaseun@gmail.com"
+ },
+ "record": {
+ "CNAME": "isaacrobert-is-adev.vercel.app"
+ }
+}
diff --git a/domains/isaiahday.json b/domains/isaiahday.json
deleted file mode 100644
index c4e8135bb..000000000
--- a/domains/isaiahday.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Isaiah08-D's personal website.",
- "repo": "https://github.com/Isaiah08-D/isaiah08-d.github.io",
- "owner": {
- "username": "Isaiah08-D",
- "email": "isaiahgrisha@gmail.com",
- "discord": "isaiah08#6008"
- },
- "record": {
- "CNAME": "isaiah08-d.github.io"
- }
-}
diff --git a/domains/isalvarez.json b/domains/isalvarez.json
new file mode 100644
index 000000000..a4aa7aa2d
--- /dev/null
+++ b/domains/isalvarez.json
@@ -0,0 +1,11 @@
+{
+ "description": "I'll use isalvarez.is-a.dev for my personal portfolio.",
+ "repo": "https://github.com/isAlvarezDev/portfolio",
+ "owner": {
+ "username": "isAlvarezDev",
+ "email": "alvarezisaac871@gmail.com"
+ },
+ "record": {
+ "CNAME": "isalvarezdev.github.io"
+ }
+}
diff --git a/domains/ishbenjamin.json b/domains/ishbenjamin.json
new file mode 100644
index 000000000..3697bb66c
--- /dev/null
+++ b/domains/ishbenjamin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aurumdev952",
+ "email": "benjamugi20072@gmail.com"
+ },
+ "record": {
+ "CNAME": "benjamin-bay.vercel.app"
+ }
+}
diff --git a/domains/ishh.json b/domains/ishh.json
index 6ac82e27e..15a814769 100644
--- a/domains/ishh.json
+++ b/domains/ishh.json
@@ -6,8 +6,13 @@
"email": "ishh-xd@proton.me"
},
"record": {
- "A": ["185.199.111.153", "185.199.110.153", "185.199.108.153", "185.199.109.153"],
+ "A": [
+ "185.199.111.153",
+ "185.199.110.153",
+ "185.199.108.153",
+ "185.199.109.153"
+ ],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": ["v=spf1 include:spf.improvmx.com ~all"]
- }
+ }
}
diff --git a/domains/ishwar.json b/domains/ishwar.json
new file mode 100644
index 000000000..c2905f4dd
--- /dev/null
+++ b/domains/ishwar.json
@@ -0,0 +1,11 @@
+{
+ "description": "Documentation website for is-a.dev",
+ "repo": "https://github.com/ishwar00/ishwarstuff",
+ "owner": {
+ "username": "ishwar00",
+ "email": "ishwargowda100@gmail.com"
+ },
+ "record": {
+ "CNAME": "ishwarstuff.vercel.app"
+ }
+}
diff --git a/domains/isiraadithya.json b/domains/isiraadithya.json
new file mode 100644
index 000000000..5c0a3fec1
--- /dev/null
+++ b/domains/isiraadithya.json
@@ -0,0 +1,10 @@
+{
+ "description": "Isira Adithya's Personal Website",
+ "owner": {
+ "username": "isira-adithya",
+ "email": "me@isiraadithya.com"
+ },
+ "record": {
+ "URL": "https://isiraadithya.com"
+ }
+}
diff --git a/domains/islandboy.json b/domains/islandboy.json
new file mode 100644
index 000000000..592dfed3d
--- /dev/null
+++ b/domains/islandboy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Sub-domain of IslandBoy in is-a.dev",
+ "repo": "https://github.com/islandboymv/is-a-dev-register",
+ "owner": {
+ "username": "islandboymv",
+ "email": "mifzaal.scout@gmail.com"
+ },
+ "record": {
+ "NS": ["lucy.ns.cloudflare.com", "mario.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/israrkhan.json b/domains/israrkhan.json
new file mode 100644
index 000000000..e3aa5bc6a
--- /dev/null
+++ b/domains/israrkhan.json
@@ -0,0 +1,10 @@
+{
+ "description": "israrkhan.is-a.dev.",
+ "owner": {
+ "username": "israrthedev08",
+ "email": "israrislive@gmail.com"
+ },
+ "record": {
+ "URL": "https://guns.lol/israr08"
+ }
+}
diff --git a/domains/isturiz.json b/domains/isturiz.json
index 7eec194f1..45d902d79 100644
--- a/domains/isturiz.json
+++ b/domains/isturiz.json
@@ -1,9 +1,8 @@
{
- "owner": {
- "username": "isturiz",
- "email": ""
- },
- "record": {
- "CNAME": "isturiz.vercel.app"
- }
+ "owner": {
+ "username": "isturiz"
+ },
+ "record": {
+ "CNAME": "isturiz.vercel.app"
+ }
}
diff --git a/domains/itsdemongamez.json b/domains/itsdemongamez.json
deleted file mode 100644
index ad1448374..000000000
--- a/domains/itsdemongamez.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DemonGamez",
- "email": "peterwyneg@gmail.com",
- "discord": "1038747272701292584"
- },
- "record": {
- "CNAME": "demongamez.github.io"
- }
-}
diff --git a/domains/itsjhonalex.json b/domains/itsjhonalex.json
new file mode 100644
index 000000000..1688235c0
--- /dev/null
+++ b/domains/itsjhonalex.json
@@ -0,0 +1,11 @@
+{
+ "description": "itsjhonalex.is-a.dev",
+ "repo": "github.com/ItsJhonAlex/PortfolioDev",
+ "owner": {
+ "username": "ItsJhonAlex",
+ "email": "itsjhonalex@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-dev-itsjhonalexs-projects.vercel.app"
+ }
+}
diff --git a/domains/itskh4ng.json b/domains/itskh4ng.json
new file mode 100644
index 000000000..616949b1f
--- /dev/null
+++ b/domains/itskh4ng.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "itskh4ng",
+ "email": "itskh4ng@proton.me"
+ },
+ "record": {
+ "CNAME": "itskh4ng.pages.dev"
+ }
+}
diff --git a/domains/itsmepvr.json b/domains/itsmepvr.json
index e5f5ce90a..612620789 100644
--- a/domains/itsmepvr.json
+++ b/domains/itsmepvr.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "itsmepvr",
- "email": "pvrreddy155@gmail.com"
- },
- "record": {
- "CNAME": "itsmepvr.github.io"
- }
+ "owner": {
+ "username": "itsmepvr",
+ "email": "pvrreddy155@gmail.com"
+ },
+ "record": {
+ "CNAME": "itsmepvr.github.io"
+ }
}
diff --git a/domains/itz-rj-here.json b/domains/itz-rj-here.json
new file mode 100644
index 000000000..55b773761
--- /dev/null
+++ b/domains/itz-rj-here.json
@@ -0,0 +1,11 @@
+{
+ "description": "It'z RJ's Website",
+ "repo": "https://github.com/itz-rj-here/itz-rj-here.github.io",
+ "owner": {
+ "username": "itz-rj-here",
+ "email": "faiadmahmudadil@gmail.com"
+ },
+ "record": {
+ "CNAME": "itz-rj-here.github.io"
+ }
+}
diff --git a/domains/iusearchbtw.json b/domains/iusearchbtw.json
deleted file mode 100644
index c522d6c12..000000000
--- a/domains/iusearchbtw.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "iamnotmega",
- "email": "uksningaken@gmail.com"
- },
- "record": {
- "CNAME": "iamnotmega.github.io"
- }
-}
diff --git a/domains/ivin-mathew.json b/domains/ivin-mathew.json
new file mode 100644
index 000000000..a4d89d1de
--- /dev/null
+++ b/domains/ivin-mathew.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ivin-Mathew",
+ "email": "ivinmk2410@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/iviswanathreddy.json b/domains/iviswanathreddy.json
new file mode 100644
index 000000000..10e4fb1ad
--- /dev/null
+++ b/domains/iviswanathreddy.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio written in Ruby and HTML",
+ "repo": "https://github.com/iviswanathreddy/iviswanathreddy.github.io.git",
+ "owner": {
+ "username": "iviswanathreddy",
+ "email": "i.viswanath666@gmail.com"
+ },
+ "record": {
+ "CNAME": "iviswanathreddy.github.io"
+ }
+}
diff --git a/domains/ivo.json b/domains/ivo.json
index 36cf1be60..b501621ef 100644
--- a/domains/ivo.json
+++ b/domains/ivo.json
@@ -1,14 +1,11 @@
{
- "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"
- ]
- }
+ "description": "Personal Portfolio Website",
+ "owner": {
+ "username": "ifayala",
+ "email": "ivo@dailabs.io",
+ "discord": "lt_smash666"
+ },
+ "record": {
+ "A": ["34.16.212.81"]
+ }
}
diff --git a/domains/ivy.json b/domains/ivy.json
new file mode 100644
index 000000000..e87417f41
--- /dev/null
+++ b/domains/ivy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jel9",
+ "email": "cock@ivy.lat"
+ },
+ "record": {
+ "URL": "https://ivy.lat"
+ }
+}
diff --git a/domains/ixdoggo.json b/domains/ixdoggo.json
index 8dd5021b5..d72cbcc8a 100644
--- a/domains/ixdoggo.json
+++ b/domains/ixdoggo.json
@@ -4,6 +4,9 @@
"email": "xelxtct@gmail.com"
},
"record": {
- "CNAME": "ixdoggo.pages.dev"
- }
+ "CNAME": "ixdoggo.pages.dev",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ },
+ "proxied": true
}
diff --git a/domains/izumie.json b/domains/izumie.json
new file mode 100644
index 000000000..f34fb3a83
--- /dev/null
+++ b/domains/izumie.json
@@ -0,0 +1,12 @@
+{
+ "description": "izumie.is-a.dev subdomain",
+ "repo": "https://github.com/LexisMate/register",
+ "owner": {
+ "username": "LexisMate",
+ "email": "izumieprivateltd@gmail.com"
+ },
+ "record": {
+ "CNAME": "mr-izumie.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/jabbdev.json b/domains/jabbdev.json
index ff2e396cf..2ab0a9d68 100644
--- a/domains/jabbdev.json
+++ b/domains/jabbdev.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "jabbcode",
- "email": "jabbsontouch@gmail.com"
- },
- "record": {
- "CNAME": "react-frontend-production-0024.up.railway.app"
- }
+ "owner": {
+ "username": "jabbcode",
+ "email": "jabbsontouch@gmail.com"
+ },
+ "record": {
+ "CNAME": "react-frontend-production-0024.up.railway.app"
+ }
}
diff --git a/domains/jacek.json b/domains/jacek.json
new file mode 100644
index 000000000..3695d1cbc
--- /dev/null
+++ b/domains/jacek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "smolak",
+ "email": "jacek.smolak@gmail.com"
+ },
+ "record": {
+ "CNAME": "jaceksmolak.vercel.app"
+ }
+}
diff --git a/domains/jacques.json b/domains/jacques.json
new file mode 100644
index 000000000..fe26b1991
--- /dev/null
+++ b/domains/jacques.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Jacques2Marais",
+ "discord": "itsmejackmorris"
+ },
+ "record": {
+ "CNAME": "portfolio-jade-eta-63.vercel.app"
+ }
+}
diff --git a/domains/jaennova.json b/domains/jaennova.json
index 6168c9db2..82a67b4de 100644
--- a/domains/jaennova.json
+++ b/domains/jaennova.json
@@ -1,11 +1,11 @@
{
- "description": "Personal portfolio",
- "repo": "https://github.com/jaennova/portfolio",
- "owner": {
- "username": "jaennova",
- "email": "jaendevp@gmail.com"
- },
- "record": {
- "A": ["75.2.60.5"]
- }
+ "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
index 70684c460..5417c99a7 100644
--- a/domains/jai.json
+++ b/domains/jai.json
@@ -1,11 +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
+{
+ "description": "Jai Singh Rathore's Portfolio Website",
+ "repo": "https://github.com/jaizxzx/jaizxzx.github.io",
+ "owner": {
+ "username": "jaizxzx",
+ "email": "jaisinghrathore4432@gmail.com"
+ },
+ "record": {
+ "CNAME": "jaizxzx.github.io"
+ }
+}
diff --git a/domains/jaimezpe.json b/domains/jaimezpe.json
new file mode 100644
index 000000000..06d30db48
--- /dev/null
+++ b/domains/jaimezpe.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/jaimezpe/bio",
+ "owner": {
+ "username": "jaimezpe",
+ "email": "info@jaimezpe.com"
+ },
+ "record": {
+ "CNAME": "jaimezpe.com"
+ }
+}
diff --git a/domains/jakakordez.json b/domains/jakakordez.json
new file mode 100644
index 000000000..2e639d482
--- /dev/null
+++ b/domains/jakakordez.json
@@ -0,0 +1,10 @@
+{
+ "description": "jakakordez.is-a.dev",
+ "owner": {
+ "username": "jakakordez",
+ "email": "jaka.kordez@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/jakakordez"
+ }
+}
diff --git a/domains/jake.json b/domains/jake.json
index 2e5c97792..e0f07046a 100644
--- a/domains/jake.json
+++ b/domains/jake.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "xzrci",
- "email": ""
+ "username": "xzrci"
},
"record": {
"CNAME": "xzrci.vercel.app"
diff --git a/domains/jal.json b/domains/jal.json
new file mode 100644
index 000000000..4acf4a0cb
--- /dev/null
+++ b/domains/jal.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio of Jal, Full Stack Dev",
+ "repo": "https://github.com/Jal-GG/Jal-Patel",
+ "owner": {
+ "username": "Jal-GG",
+ "email": "jalvrund2017@gmail.com"
+ },
+ "record": {
+ "CNAME": "jal-patel.vercel.app"
+ }
+}
diff --git a/domains/james-wiseman.json b/domains/james-wiseman.json
new file mode 100644
index 000000000..973df57b8
--- /dev/null
+++ b/domains/james-wiseman.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal site for James Wiseman",
+ "owner": {
+ "username": "jamesrobertwiseman",
+ "email": "hello@jameswiseman.me"
+ },
+ "record": {
+ "CNAME": "jameswiseman.me"
+ },
+ "proxied": true
+}
diff --git a/domains/james.json b/domains/james.json
new file mode 100644
index 000000000..d5da97ed4
--- /dev/null
+++ b/domains/james.json
@@ -0,0 +1,11 @@
+{
+ "description": "Directory for my dev related social links",
+ "owner": {
+ "username": "jameshaworthcs",
+ "email": "james@j-h.ai"
+ },
+ "record": {
+ "URL": "https://j-h.ai"
+ },
+ "proxied": false
+}
diff --git a/domains/jameshartley.json b/domains/jameshartley.json
new file mode 100644
index 000000000..83aae3a5e
--- /dev/null
+++ b/domains/jameshartley.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio domain showcasing projects",
+ "repo": "https://github.com/jdbhartley/portfolio_nuro",
+ "owner": {
+ "username": "jdbhartley",
+ "discord": "MobiSlick#3640"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/jamied132.json b/domains/jamied132.json
index 4b9bd674b..3bcae162a 100644
--- a/domains/jamied132.json
+++ b/domains/jamied132.json
@@ -1,6 +1,5 @@
{
"description": "A personal portfolio about me, along with some other stuff (the repository is currently empty but I will add some stuff)",
- "repo": "https://github.com/jamied132",
"owner": {
"username": "jamied132",
"email": "jamied132.email@gmail.com"
diff --git a/domains/jan.json b/domains/jan.json
new file mode 100644
index 000000000..8f9eb0dfc
--- /dev/null
+++ b/domains/jan.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Dev Website",
+ "owner": {
+ "username": "jpgreth",
+ "email": "github@greth.me"
+ },
+ "record": {
+ "CNAME": "greth.dev"
+ }
+}
diff --git a/domains/janith.json b/domains/janith.json
new file mode 100644
index 000000000..92cf35b54
--- /dev/null
+++ b/domains/janith.json
@@ -0,0 +1,11 @@
+{
+ "description": "Janith .is-a.dev domain",
+ "repo": "https://github.com/janithpm/janithpm.github.io",
+ "owner": {
+ "username": "Janithpm",
+ "email": "janithmadarasinghe@gmail.com"
+ },
+ "record": {
+ "CNAME": "janithpm.github.io"
+ }
+}
diff --git a/domains/janvier.json b/domains/janvier.json
new file mode 100644
index 000000000..b0686f5de
--- /dev/null
+++ b/domains/janvier.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jenzzly",
+ "email": "jenzzly@gmail.com"
+ },
+ "record": {
+ "URL": "https://jenzzly.github.io/systems/"
+ }
+}
diff --git a/domains/chatbot.devmatei.json b/domains/jar.json
similarity index 56%
rename from domains/chatbot.devmatei.json
rename to domains/jar.json
index 814e7a71f..beb93c667 100644
--- a/domains/chatbot.devmatei.json
+++ b/domains/jar.json
@@ -1,6 +1,7 @@
{
"owner": {
- "username": "devmatei"
+ "username": "jartf",
+ "email": "hi@jar.tf"
},
"record": {
"A": ["76.76.21.21"]
diff --git a/domains/jasa.json b/domains/jasa.json
new file mode 100644
index 000000000..1ce6a0739
--- /dev/null
+++ b/domains/jasa.json
@@ -0,0 +1,11 @@
+{
+ "description": "Describe the use of this subdomain",
+ "repo": "https://github.com/mrsanjaya/mrsanjaya.github.io",
+ "owner": {
+ "username": "mrsanjaya",
+ "email": "sandhysanjaya0110@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrsanjaya.github.io"
+ }
+}
diff --git a/domains/jasondevgm.json b/domains/jasondevgm.json
index c3bfd4765..0a93bae70 100644
--- a/domains/jasondevgm.json
+++ b/domains/jasondevgm.json
@@ -2,9 +2,9 @@
"description": "Personal Portfolio Website",
"repo": "https://github.com/jasondevgm/jasondevgm.github.io.git",
"owner": {
- "username": "jasondevgm",
- "email": "jasondevgm@gmail.com"
- },
+ "username": "jasondevgm",
+ "email": "jasondevgm@gmail.com"
+ },
"record": {
"CNAME": "jasondevgm.github.io"
}
diff --git a/domains/jasvindersingh.json b/domains/jasvindersingh.json
new file mode 100644
index 000000000..4a0fc40c2
--- /dev/null
+++ b/domains/jasvindersingh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "singhJasvinder101",
+ "email": "jasvindersingh3593@gmail.com"
+ },
+ "record": {
+ "CNAME": "jasvinder-portfolio.netlify.app"
+ }
+}
diff --git a/domains/javi.json b/domains/javi.json
new file mode 100644
index 000000000..77b29aa62
--- /dev/null
+++ b/domains/javi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Javi's dev website",
+ "repo": "https://github.com/itsjavi/itsjavi.github.io",
+ "owner": {
+ "username": "itsjavi",
+ "discord": "itsjavi"
+ },
+ "record": {
+ "CNAME": "itsjavi.github.io"
+ }
+}
diff --git a/domains/javier.json b/domains/javier.json
deleted file mode 100644
index e10b9826f..000000000
--- a/domains/javier.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Javier Zaleta's personal website",
- "repo": "https://github.com/jzaleta/jzaleta",
- "owner": {
- "username": "jzaleta",
- "twitter": "j_cordz"
- },
- "record": {
- "CNAME": "jzaleta.github.io"
- }
-}
diff --git a/domains/jawad0501.json b/domains/jawad0501.json
new file mode 100644
index 000000000..d3849e9da
--- /dev/null
+++ b/domains/jawad0501.json
@@ -0,0 +1,11 @@
+{
+ "description": "jawad's personal portfolio website",
+ "repo": "https://github.com/Jawad0501/terminal-portfolio.git",
+ "owner": {
+ "username": "Jawad0501",
+ "email": "anmjawad007@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/jayasurya.json b/domains/jayasurya.json
index d6eff00bf..803aed0ce 100644
--- a/domains/jayasurya.json
+++ b/domains/jayasurya.json
@@ -4,5 +4,6 @@
},
"record": {
"A": ["75.2.60.5"]
- }
+ },
+ "proxied": false
}
diff --git a/domains/jb.json b/domains/jb.json
index 6b3454fee..adc9648b7 100644
--- a/domains/jb.json
+++ b/domains/jb.json
@@ -6,6 +6,7 @@
"email": "jbcarreon212@gmail.com"
},
"record": {
- "A": ["35.223.92.119"]
- }
+ "A": ["34.56.187.73"]
+ },
+ "proxied": true
}
diff --git a/domains/jbmbhs.json b/domains/jbmbhs.json
index ab99ab6c1..d7f73b47f 100644
--- a/domains/jbmbhs.json
+++ b/domains/jbmbhs.json
@@ -2,10 +2,8 @@
"owner": {
"username": "jbmbhs",
"email": "juan@belmontemarin.com"
- },
-
+ },
"record": {
"URL": "https://www.linkedin.com/in/juan-belmonte-821175112/"
}
}
-
diff --git a/domains/jd1.json b/domains/jd1.json
new file mode 100644
index 000000000..f1515aa75
--- /dev/null
+++ b/domains/jd1.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/jd1/jd1.github.io",
+ "owner": {
+ "username": "jd1",
+ "email": "isadev@mail.dilli.me"
+ },
+ "record": {
+ "CNAME": "jd1.github.io"
+ }
+}
diff --git a/domains/jeanclaude.json b/domains/jeanclaude.json
new file mode 100644
index 000000000..6ad03b19d
--- /dev/null
+++ b/domains/jeanclaude.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jeanclaudegeagea",
+ "email": "jeanclaude.geagea@gmail.com"
+ },
+ "record": {
+ "CNAME": "jeanclaude-omega.vercel.app"
+ }
+}
diff --git a/domains/jeanrondon.json b/domains/jeanrondon.json
new file mode 100644
index 000000000..8d5abe73e
--- /dev/null
+++ b/domains/jeanrondon.json
@@ -0,0 +1,12 @@
+{
+ "description": "Jean's portfolio website and blog - JavaScript Developer, working as Frontend Dev, developer with over 3 years of JavaScript experience and a constant interest in learning new technologies. I have a solid experience in web, mobile, and desktop Frontend development.",
+ "repo": "https://github.com/jeandv/my-next-portfolio",
+ "owner": {
+ "username": "jeandv",
+ "email": "jeanrdev@gmail.com",
+ "twitter": "r4yb4"
+ },
+ "record": {
+ "CNAME": "jeandv.github.io"
+ }
+}
diff --git a/domains/jecoh.json b/domains/jecoh.json
new file mode 100644
index 000000000..bd5dd516f
--- /dev/null
+++ b/domains/jecoh.json
@@ -0,0 +1,11 @@
+{
+ "description": "For personal/portfolio use only.",
+ "repo": "https://github.com/jecoh12/jecoh-is-a.dev",
+ "owner": {
+ "username": "jecoh12",
+ "email": "jecoh12@gmail.com"
+ },
+ "record": {
+ "CNAME": "jecoh12.github.io"
+ }
+}
diff --git a/domains/jeel.json b/domains/jeel.json
index f62e903e4..9d17f4fb9 100644
--- a/domains/jeel.json
+++ b/domains/jeel.json
@@ -1,6 +1,5 @@
{
"description": "Jeel's portfolio website",
- "repo": "https://github.com/jeelpatel1612",
"owner": {
"username": "jeelpatel1612",
"twitter": "__j_e_e_l__"
diff --git a/domains/jefino.json b/domains/jefino.json
new file mode 100644
index 000000000..a2b3c5f61
--- /dev/null
+++ b/domains/jefino.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jefino9488",
+ "email": "jefinojacob9488@gmail.com"
+ },
+ "record": {
+ "CNAME": "jefino9488.vercel.app"
+ }
+}
diff --git a/domains/jeielmiranda.json b/domains/jeielmiranda.json
new file mode 100644
index 000000000..0faaba1cb
--- /dev/null
+++ b/domains/jeielmiranda.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal subdomain",
+ "repo": "https://github.com/Jeiel0rbit/Jeiel0rbit.github.io",
+ "owner": {
+ "username": "Jeiel0rbit",
+ "email": "jeiel@duck.com"
+ },
+ "record": {
+ "CNAME": "Jeiel0rbit.github.io"
+ }
+}
diff --git a/domains/jer.json b/domains/jer.json
index be66faf1a..bc4ea8f0c 100644
--- a/domains/jer.json
+++ b/domains/jer.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "JerBlox",
+ "username": "i-Jer",
"email": "chen.fuyuan07@gmail.com"
},
"record": {
- "CNAME": "cbx3ryr6.up.railway.app"
+ "URL": "https://www.i-jer.com/"
}
}
diff --git a/domains/jeremiah.json b/domains/jeremiah.json
index 93bab3499..e84107fae 100644
--- a/domains/jeremiah.json
+++ b/domains/jeremiah.json
@@ -8,4 +8,3 @@
"TXT": ["v=spf1 include:spf.improvmx.com ~all"]
}
}
-
diff --git a/domains/jessiflessi.json b/domains/jessiflessi.json
new file mode 100644
index 000000000..ae9fa914d
--- /dev/null
+++ b/domains/jessiflessi.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "JesseHoekema",
+ "email": "jessehoekema@icloud.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/jesusaristigueta.json b/domains/jesusaristigueta.json
index 8e539079b..08e152241 100644
--- a/domains/jesusaristigueta.json
+++ b/domains/jesusaristigueta.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "jesusaristigueta",
- "email": "jesusaristigueta@gmail.com"
- },
- "record": {
- "CNAME": "jesusaristigueta.pages.dev"
- }
+ "owner": {
+ "username": "jesusaristigueta",
+ "email": "jesusaristigueta@gmail.com"
+ },
+ "record": {
+ "CNAME": "jesusaristigueta.pages.dev"
+ }
}
diff --git a/domains/jesusdmedinac.json b/domains/jesusdmedinac.json
index a12850181..a3b588c94 100644
--- a/domains/jesusdmedinac.json
+++ b/domains/jesusdmedinac.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "jesusdmedinac",
- "email": "jesus.daniel.medina.cruz@gmail.com"
+ "username": "jesusdmedinac",
+ "email": "jesus.daniel.medina.cruz@gmail.com"
},
"record": {
- "CNAME": "jesusdmedinac.github.io"
+ "CNAME": "jesusdmedinac.github.io"
}
-}
\ No newline at end of file
+}
diff --git a/domains/jesusmarfil.json b/domains/jesusmarfil.json
new file mode 100644
index 000000000..bb93cb372
--- /dev/null
+++ b/domains/jesusmarfil.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JesusMarlor",
+ "email": "jesuso.marlor@gmail.com"
+ },
+ "record": {
+ "CNAME": "kripton.xyz"
+ }
+}
diff --git a/domains/jesusvaladez.json b/domains/jesusvaladez.json
new file mode 100644
index 000000000..084732e6d
--- /dev/null
+++ b/domains/jesusvaladez.json
@@ -0,0 +1,11 @@
+{
+ "description": "Use to show a personal portfolio",
+ "repo": "https://github.com/JesusVala/JesusValadez.github.io.git",
+ "owner": {
+ "username": "JesusVala",
+ "email": "jesusvaladezf@outlook.com"
+ },
+ "record": {
+ "CNAME": "jesusvaladez.github.io"
+ }
+}
diff --git a/domains/jeymen.json b/domains/jeymen.json
deleted file mode 100644
index 681eb900f..000000000
--- a/domains/jeymen.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "owner": {
- "username": "Jeymen",
- "email": "jeymen11@proton.me"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"],
- "TXT": "v=spf1 include:zoho.eu ~all"
- }
-}
diff --git a/domains/jfc.json b/domains/jfc.json
new file mode 100644
index 000000000..501c370e2
--- /dev/null
+++ b/domains/jfc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "juanfranciscocis",
+ "email": "jfcisnerosg@icloud.com"
+ },
+ "record": {
+ "CNAME": "portfoliojuanfranciscocisneros.web.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/jg.json b/domains/jg.json
new file mode 100644
index 000000000..7352aa6a7
--- /dev/null
+++ b/domains/jg.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio site for Jonathan Geva (short for jonathangeva)",
+ "repo": "https://github.com/jonathan-geva/Portfolio",
+ "owner": {
+ "username": "jonathan-geva",
+ "discord": "jonilul21"
+ },
+ "record": {
+ "CNAME": "jonathangeva.ch"
+ }
+}
diff --git a/domains/jhw.json b/domains/jhw.json
new file mode 100644
index 000000000..67c849a94
--- /dev/null
+++ b/domains/jhw.json
@@ -0,0 +1,11 @@
+{
+ "description": "Jason Wohlgemuth's resume",
+ "repo": "https://github.com/jhwohlgemuth/resume",
+ "owner": {
+ "username": "jhwohlgemuth",
+ "twitter": "jhwohlgemuth"
+ },
+ "record": {
+ "CNAME": "jhwohlgemuth.github.io"
+ }
+}
diff --git a/domains/jigarbhoye.json b/domains/jigarbhoye.json
new file mode 100644
index 000000000..b8a8bc5ef
--- /dev/null
+++ b/domains/jigarbhoye.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "jigarbhoye04",
+ "discord": "jigx.04",
+ "email": "jigarbhoye04@gmail.com"
+ },
+ "record": {
+ "CNAME": "jigarbhoye.vercel.app"
+ }
+}
diff --git a/domains/jinso.json b/domains/jinso.json
index 1aa37e760..f45ac7272 100644
--- a/domains/jinso.json
+++ b/domains/jinso.json
@@ -1,6 +1,5 @@
{
"description": "Jinso Raj",
- "repo": "https://github.com/jinsoraj",
"owner": {
"username": "jinsoraj",
"email": "jinsoraj2000@gmail.com",
diff --git a/domains/jitendrasaraf.json b/domains/jitendrasaraf.json
new file mode 100644
index 000000000..374319f89
--- /dev/null
+++ b/domains/jitendrasaraf.json
@@ -0,0 +1,11 @@
+{
+ "description": "portfolio page",
+ "repo": "https://github.com/jiten398/portfolio-latest",
+ "owner": {
+ "username": "jiten398",
+ "email": "jitendrasaraf65@gmail.com"
+ },
+ "record": {
+ "A": ["216.24.57.1"]
+ }
+}
diff --git a/domains/jmc.json b/domains/jmc.json
new file mode 100644
index 000000000..7401c1150
--- /dev/null
+++ b/domains/jmc.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "josem430",
+ "email": "jmc300499@gmail.com",
+ "discord": "josem430"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/jmmille.json b/domains/jmmille.json
new file mode 100644
index 000000000..2b21c910b
--- /dev/null
+++ b/domains/jmmille.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jmmille",
+ "email": "jmmille@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/jmmille"
+ }
+}
diff --git a/domains/joe-dawley.json b/domains/joe-dawley.json
index f929c9a51..a51fabb61 100644
--- a/domains/joe-dawley.json
+++ b/domains/joe-dawley.json
@@ -1,6 +1,5 @@
{
"description": "Joe Dawley",
- "repo": "https://github.com/jdawley",
"owner": {
"username": "jdawley",
"twitter": "joedawley"
diff --git a/domains/joe50097.json b/domains/joe50097.json
index 78316bf5e..451188731 100644
--- a/domains/joe50097.json
+++ b/domains/joe50097.json
@@ -5,7 +5,10 @@
},
"record": {
"MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"],
- "TXT": ["zoho-verification=zb32862044.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"],
+ "TXT": [
+ "zoho-verification=zb32862044.zmverify.zoho.com",
+ "v=spf1 include:zohomail.com ~all"
+ ],
"A": ["75.2.60.5"]
}
}
diff --git a/domains/joeb.json b/domains/joeb.json
new file mode 100644
index 000000000..ac6e56efc
--- /dev/null
+++ b/domains/joeb.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "joevizcara",
+ "email": "joevizcara@proton.me"
+ },
+ "record": {
+ "CNAME": "joeb.pages.dev",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ },
+ "proxied": true
+}
diff --git a/domains/joelst.json b/domains/joelst.json
new file mode 100644
index 000000000..0fc708102
--- /dev/null
+++ b/domains/joelst.json
@@ -0,0 +1,22 @@
+{
+ "owner": {
+ "username": "joestr",
+ "email": "joelstrasser1@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "ns1-03.azure-dns.com",
+ "ns2-03.azure-dns.net",
+ "ns3-03.azure-dns.org",
+ "ns4-03.azure-dns.info"
+ ],
+ "DS": [
+ {
+ "key_tag": 20446,
+ "algorithm": 13,
+ "digest_type": 2,
+ "digest": "66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6"
+ }
+ ]
+ }
+}
diff --git a/domains/joey.json b/domains/joey.json
new file mode 100644
index 000000000..87cb549ee
--- /dev/null
+++ b/domains/joey.json
@@ -0,0 +1,11 @@
+{
+ "description": "GitHub Pages verification for joey.is-a.dev",
+ "repo": "https://github.com/jlai403/jlai403.github.io",
+ "owner": {
+ "username": "jlai403",
+ "discord": "120522740590575616"
+ },
+ "record": {
+ "CNAME": "jlai403.github.io"
+ }
+}
diff --git a/domains/johansansebastian.json b/domains/johansansebastian.json
index 92a131883..49af64878 100644
--- a/domains/johansansebastian.json
+++ b/domains/johansansebastian.json
@@ -1,6 +1,5 @@
{
"description": "Johan's personal developer website",
- "repo": "https://github.com/JohanSanSebastian.github.io",
"owner": {
"username": "JohanSanSebastian",
"email": "johansanju06@gmail.com"
diff --git a/domains/johntena.json b/domains/johntena.json
new file mode 100644
index 000000000..0b4823126
--- /dev/null
+++ b/domains/johntena.json
@@ -0,0 +1,11 @@
+{
+ "description": "JohnT portfolio website",
+ "repo": "https://github.com/johnTena/johntena.github.io",
+ "owner": {
+ "username": "johnTena",
+ "email": "secnetwork.mx13@gmail.com"
+ },
+ "record": {
+ "URL": "https://johntena.github.io/"
+ }
+}
diff --git a/domains/johntran.json b/domains/johntran.json
new file mode 100644
index 000000000..1b84d6184
--- /dev/null
+++ b/domains/johntran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "johntranz",
+ "email": "john.tran.engineer@gmail.com"
+ },
+ "record": {
+ "CNAME": "johntran.vercel.app"
+ }
+}
diff --git a/domains/jonagoldman.json b/domains/jonagoldman.json
new file mode 100644
index 000000000..1bd9f1004
--- /dev/null
+++ b/domains/jonagoldman.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/jonagoldman/jonagoldman.github.io",
+ "owner": {
+ "username": "jonagoldman",
+ "email": "jonagoldman@gmail.com"
+ },
+ "record": {
+ "CNAME": "jonagoldman.github.io"
+ }
+}
diff --git a/domains/jonatandb.json b/domains/jonatandb.json
deleted file mode 100644
index ab12955cb..000000000
--- a/domains/jonatandb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "This is for my personal website.",
- "owner": {
- "username": "jonatandb",
- "email": "jonatandb@gmail.com"
- },
- "record": {
- "CNAME": "jonatandb.github.io"
- }
-}
diff --git a/domains/jonathan-russ.json b/domains/jonathan-russ.json
new file mode 100644
index 000000000..2ec02dd8d
--- /dev/null
+++ b/domains/jonathan-russ.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal Website",
+ "repo": "https://github.com/JonathanXDR/Application-Website-Frontend",
+ "owner": {
+ "username": "JonathanXDR",
+ "email": "jonathan.russ@bluewin.ch",
+ "discord": "494042822320717827"
+ },
+ "record": {
+ "NS": ["ns1.vercel-dns.com", "ns2.vercel-dns.com"]
+ }
+}
diff --git a/domains/jonathangeva.json b/domains/jonathangeva.json
new file mode 100644
index 000000000..244af87e6
--- /dev/null
+++ b/domains/jonathangeva.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio site for Jonathan Geva",
+ "repo": "https://github.com/jonathan-geva/Portfolio",
+ "owner": {
+ "username": "jonathan-geva",
+ "discord": "jonilul21"
+ },
+ "record": {
+ "CNAME": "jonathangeva.ch"
+ }
+}
diff --git a/domains/jonathanmoya.json b/domains/jonathanmoya.json
new file mode 100644
index 000000000..4a96736b8
--- /dev/null
+++ b/domains/jonathanmoya.json
@@ -0,0 +1,11 @@
+{
+ "description": "Subdominio personal para portfolio web",
+ "repo": "https://github.com/srgrover/portfolio",
+ "owner": {
+ "username": "srgrover",
+ "email": "jthmoya.webdev@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/jonestse.json b/domains/jonestse.json
new file mode 100644
index 000000000..cd27d31e6
--- /dev/null
+++ b/domains/jonestse.json
@@ -0,0 +1,11 @@
+{
+ "description": "Jones Tse's Portfolio Website",
+ "repo": "https://github.com/chunghei0116/portfolio",
+ "owner": {
+ "username": "chunghei0116",
+ "email": "chungheibrad@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/jong.json b/domains/jong.json
new file mode 100644
index 000000000..e70ad4a16
--- /dev/null
+++ b/domains/jong.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Jongo22",
+ "email": "jingyiong22@gmail.com"
+ },
+ "record": {
+ "CNAME": "frontend-green-kappa.vercel.app"
+ }
+}
diff --git a/domains/jorgelopez.json b/domains/jorgelopez.json
index 2905547bf..9c6f17e3e 100644
--- a/domains/jorgelopez.json
+++ b/domains/jorgelopez.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "j0rg3",
- "email": "jorge.lopezvz@gmail.com"
- },
- "record": {
- "URL": "https://github.com/j0rgel0/"
- }
+ "owner": {
+ "username": "j0rg3",
+ "email": "jorge.lopezvz@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/j0rgel0/"
+ }
}
diff --git a/domains/jose.json b/domains/jose.json
index 5b4f456f5..ef84bcb9e 100644
--- a/domains/jose.json
+++ b/domains/jose.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "JMVS",
- "email": "jose.veramutka@gmail.com"
- },
- "record": {
- "CNAME": "veramutka.com.ar"
- }
+ "owner": {
+ "username": "JMVS",
+ "email": "jose.veramutka@gmail.com"
+ },
+ "record": {
+ "CNAME": "veramutka.com.ar"
+ }
}
diff --git a/domains/josedevian.json b/domains/josedevian.json
new file mode 100644
index 000000000..28fd7c77e
--- /dev/null
+++ b/domains/josedevian.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "josedevian",
+ "email": "josedevian@gmail.com"
+ },
+ "record": {
+ "URL": "https://josedevian.xyz"
+ }
+}
diff --git a/domains/josh-ferrell.json b/domains/josh-ferrell.json
new file mode 100644
index 000000000..41e93fb6a
--- /dev/null
+++ b/domains/josh-ferrell.json
@@ -0,0 +1,11 @@
+{
+ "description": "Josh Ferrell Personal Github Page",
+ "repo": "https://github.com/josh-ferrell/josh-ferrell",
+ "owner": {
+ "username": "josh-ferrell",
+ "email": "josh.ferrell@gmail.com"
+ },
+ "record": {
+ "CNAME": "josh-ferrell.github.io"
+ }
+}
diff --git a/domains/josh.json b/domains/josh.json
new file mode 100644
index 000000000..3277f997d
--- /dev/null
+++ b/domains/josh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "joshhargreaves",
+ "email": "me@joshhargreaves.co.uk"
+ },
+ "record": {
+ "URL": "https://joshhargreaves.co.uk"
+ }
+}
diff --git a/domains/joshuanoeldeke.json b/domains/joshuanoeldeke.json
new file mode 100644
index 000000000..4acba9eb0
--- /dev/null
+++ b/domains/joshuanoeldeke.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "joshuanoeldeke",
+ "email": "joshua.noeldeke@me.com"
+ },
+ "record": {
+ "NS": ["adrian.ns.cloudflare.com", "keaton.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/joshuawise.json b/domains/joshuawise.json
new file mode 100644
index 000000000..6696a8ab7
--- /dev/null
+++ b/domains/joshuawise.json
@@ -0,0 +1,12 @@
+{
+ "description": "Joshua Wise's Personal Page",
+ "repo": "https://github.com/jlwisedev/jlwisedev.github.io",
+ "owner": {
+ "username": "jlwisedev",
+ "email": "jlwiseeha24@gmail.com"
+ },
+ "record": {
+ "CNAME": "jlwisedev.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/joszxchua.json b/domains/joszxchua.json
new file mode 100644
index 000000000..5c7419c0e
--- /dev/null
+++ b/domains/joszxchua.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "joszxchua",
+ "email": "joschuaordonio29@gmail.com"
+ },
+ "record": {
+ "CNAME": "joszxchua-dev.vercel.app"
+ }
+}
diff --git a/domains/joy.json b/domains/joy.json
new file mode 100644
index 000000000..9925e538a
--- /dev/null
+++ b/domains/joy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Harmfulllll",
+ "email": "harmfulllll114@gmail.com",
+ "discord": "1007561787257933885"
+ },
+ "record": {
+ "CNAME": "joy-portfolio-chi.vercel.app"
+ }
+}
diff --git a/domains/jpsantistebanq.json b/domains/jpsantistebanq.json
index ace39d928..0d3a32305 100644
--- a/domains/jpsantistebanq.json
+++ b/domains/jpsantistebanq.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "jpsantistebanq",
- "email": "jpsantq@gmail.com"
- },
- "record": {
- "CNAME": "jpsantistebanq.github.io"
- }
+ "owner": {
+ "username": "jpsantistebanq",
+ "email": "jpsantq@gmail.com"
+ },
+ "record": {
+ "CNAME": "jpsantistebanq.github.io"
+ }
}
diff --git a/domains/jretamal.json b/domains/jretamal.json
index d66b618cf..133a3d4e3 100644
--- a/domains/jretamal.json
+++ b/domains/jretamal.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "jretamal",
- "email": "jretamal@gmail.com"
- },
- "record": {
- "URL": "https://jretamal.cl"
- }
+ "owner": {
+ "username": "jretamal",
+ "email": "jretamal@gmail.com"
+ },
+ "record": {
+ "URL": "https://jretamal.cl"
+ }
}
diff --git a/domains/jrmessias.json b/domains/jrmessias.json
new file mode 100644
index 000000000..b24dfa200
--- /dev/null
+++ b/domains/jrmessias.json
@@ -0,0 +1,12 @@
+{
+ "description": "For a personal website",
+ "repo": "https://github.com/jrmessias/jrmessias.github.io",
+ "owner": {
+ "username": "jrmessias",
+ "email": "jrmessias@gmail.com",
+ "twitter": "jrmessias"
+ },
+ "record": {
+ "CNAME": "jrmessias.github.io"
+ }
+}
diff --git a/domains/js.json b/domains/js.json
index 1b9626783..74716d6de 100644
--- a/domains/js.json
+++ b/domains/js.json
@@ -1,11 +1,24 @@
{
- "description": "7.is.a.dev why not",
+ "description": "js.is-a.dev",
"owner": {
"username": "JustDeveloper1",
- "email": "justdeveloper@juststudio.is-a.dev",
+ "email": "support@juststudio.is-a.dev",
"discord": "1117482901353812088"
},
"record": {
- "A": ["89.106.200.1"]
+ "URL": "https://juststudio.is-a.dev/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/00": "https://juststudio.is-a.dev/account/#/security?from=wellknown",
+ "/01": "https://juststudio.is-a.dev/terms",
+ "/02": "https://juststudio.is-a.dev/rules",
+ "/03": "https://juststudio.is-a.dev/account/",
+ "/encoder": "https://encoder.js.is-a.dev/",
+ "/encoder/latest": "https://encoder.js.is-a.dev/encoder.js@1.0.1.js",
+ "/encoder/1.0.0": "https://encoder.js.is-a.dev/encoder.js@1.0.0.js",
+ "/encoder/1.0.1": "https://encoder.js.is-a.dev/encoder.js@1.0.1.js"
+ },
+ "redirect_paths": true
}
}
diff --git a/domains/jsanchez.json b/domains/jsanchez.json
index ad91c8618..b5e66d8cb 100644
--- a/domains/jsanchez.json
+++ b/domains/jsanchez.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "chuyto",
- "email": "jesusanchez221296@gmail.com"
- },
- "record": {
- "CNAME": "jsanchez-9148b.web.app"
- }
+ "owner": {
+ "username": "chuyto",
+ "email": "jesusanchez221296@gmail.com"
+ },
+ "record": {
+ "CNAME": "jsanchez-9148b.web.app"
+ }
}
diff --git a/domains/jsthh.json b/domains/jsthh.json
new file mode 100644
index 000000000..b8fc9d2ec
--- /dev/null
+++ b/domains/jsthh.json
@@ -0,0 +1,11 @@
+{
+ "description": "JensenTHH's Portfolio ",
+ "repo": "https://github.com/Jensen-THH/ng-three",
+ "owner": {
+ "username": "Jensen-THH",
+ "email": "tranhohiep.01@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/jt.json b/domains/jt.json
new file mode 100644
index 000000000..13802861f
--- /dev/null
+++ b/domains/jt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cloudcap10",
+ "email": "jttalasan@live.com"
+ },
+ "record": {
+ "NS": ["ivan.ns.cloudflare.com", "tara.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/juan-morales.json b/domains/juan-morales.json
index f7cec6977..5a8c56788 100644
--- a/domains/juan-morales.json
+++ b/domains/juan-morales.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Juanmorales1810",
- "email": "juan.exequiel.morales@gmail.com",
- "discord": "746910653343596574"
- },
- "record": {
- "CNAME": "juan-morales.vercel.app"
- }
+ "owner": {
+ "username": "Juanmorales1810",
+ "email": "juan.exequiel.morales@gmail.com",
+ "discord": "746910653343596574"
+ },
+ "record": {
+ "CNAME": "juan-morales.vercel.app"
+ }
}
diff --git a/domains/juan-samayoa.json b/domains/juan-samayoa.json
new file mode 100644
index 000000000..f9af830b5
--- /dev/null
+++ b/domains/juan-samayoa.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portafolio of Juan Samayoa, a viewable page that shows my experience and projects worked on and will be updated from now on so needed this to begin",
+ "repo": "https://github.com/JuanSamayoa/Portafolio-HTML",
+ "owner": {
+ "username": "JuanSamayoa",
+ "email": "juancho1705@gmail.com"
+ },
+ "record": {
+ "CNAME": "juansamayoa.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/juanca.json b/domains/juanca.json
new file mode 100644
index 000000000..56f2ccddd
--- /dev/null
+++ b/domains/juanca.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wJuanca",
+ "email": "juancarlosturcios2001@gmail.com"
+ },
+ "record": {
+ "CNAME": "juanturcios-github-io.vercel.app"
+ }
+}
diff --git a/domains/juancarloslacruz.json b/domains/juancarloslacruz.json
new file mode 100644
index 000000000..e2d6850f0
--- /dev/null
+++ b/domains/juancarloslacruz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LacruzJSDev",
+ "discord": "1336068820661567489"
+ },
+ "record": {
+ "CNAME": "portafolio-weld-three.vercel.app"
+ }
+}
diff --git a/domains/juancx.json b/domains/juancx.json
new file mode 100644
index 000000000..cdbc51195
--- /dev/null
+++ b/domains/juancx.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "juancxdev",
+ "email": "developer.juancx@gmail.com"
+ },
+ "record": {
+ "A": ["199.36.158.100"],
+ "TXT": "hosting-site=juancx-9e024"
+ }
+}
diff --git a/domains/juandev.json b/domains/juandev.json
new file mode 100644
index 000000000..2c75b4f70
--- /dev/null
+++ b/domains/juandev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JuanPython1",
+ "email": "kamilo201025@gmail.com"
+ },
+ "record": {
+ "CNAME": "juanpython1.github.io"
+ }
+}
diff --git a/domains/juanespachon.json b/domains/juanespachon.json
new file mode 100644
index 000000000..c43e320a9
--- /dev/null
+++ b/domains/juanespachon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JuanesPachon",
+ "email": "yeroparce1@gmail.com"
+ },
+ "record": {
+ "CNAME": "juanes-portfolio.vercel.app"
+ }
+}
diff --git a/domains/juanhuete.json b/domains/juanhuete.json
new file mode 100644
index 000000000..6b36b1e1e
--- /dev/null
+++ b/domains/juanhuete.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website for juanhuete",
+ "owner": {
+ "username": "juanjose23",
+ "email": "jrios9836@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+}
+}
\ No newline at end of file
diff --git a/domains/juanluserrano.json b/domains/juanluserrano.json
new file mode 100644
index 000000000..3c6b41e7c
--- /dev/null
+++ b/domains/juanluserrano.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "z3nitt",
+ "email": "juanluserranoleal@gmail.com"
+ },
+ "record": {
+ "CNAME": "z3nitt.github.io"
+ }
+}
diff --git a/domains/juanpabloleonmaya.json b/domains/juanpabloleonmaya.json
new file mode 100644
index 000000000..d49b9944a
--- /dev/null
+++ b/domains/juanpabloleonmaya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "juanleon8581",
+ "email": "juanleon8581@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/juantito.json b/domains/juantito.json
new file mode 100644
index 000000000..2c55e7375
--- /dev/null
+++ b/domains/juantito.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JuanTito",
+ "email": "JuanTito@gio.in"
+ },
+ "record": {
+ "URL": "https://github.com/JuanGTito"
+ }
+}
diff --git a/domains/juanturcios.json b/domains/juanturcios.json
index baa5860dd..606fc96e6 100644
--- a/domains/juanturcios.json
+++ b/domains/juanturcios.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "wJuanca"
- },
- "record": {
- "CNAME": "wjuanca.github.io"
- }
+ "owner": {
+ "username": "wJuanca"
+ },
+ "record": {
+ "CNAME": "wjuanca.github.io"
+ }
}
diff --git a/domains/jubal.json b/domains/jubal.json
new file mode 100644
index 000000000..802ed34b9
--- /dev/null
+++ b/domains/jubal.json
@@ -0,0 +1,11 @@
+{
+ "description": "Jubal Slone's website",
+ "repo": "https://github.com/jubalslone/jubalslone.github.io",
+ "owner": {
+ "username": "jubalslone",
+ "email": "jubal.slone@gmail.com"
+ },
+ "record": {
+ "CNAME": "jubalslone.github.io"
+ }
+}
diff --git a/domains/jules.json b/domains/jules.json
new file mode 100644
index 000000000..d0b70b8cb
--- /dev/null
+++ b/domains/jules.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "not-a-feature",
+ "email": "contact@juleskreuer.eu"
+ },
+ "record": {
+ "URL": "https://juleskreuer.eu"
+ }
+}
diff --git a/domains/juliano.json b/domains/juliano.json
new file mode 100644
index 000000000..255354e83
--- /dev/null
+++ b/domains/juliano.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "JuSfrei",
+ "email": "me@jusfrei.dev"
+ },
+ "record": {
+ "MX": ["in1-smtp.messagingengine.com", "in2-smtp.messagingengine.com"],
+ "TXT": "v=spf1 include:spf.messagingengine.com ?all"
+ }
+}
diff --git a/domains/julianwe17.json b/domains/julianwe17.json
index a3dbbc5c4..6b28bb722 100644
--- a/domains/julianwe17.json
+++ b/domains/julianwe17.json
@@ -4,7 +4,6 @@
"email": "julian.in.hbr@gmail.com",
"discord": "1055740356764901437"
},
-
"record": {
"CNAME": "julianwe17.github.io"
}
diff --git a/domains/julio.json b/domains/julio.json
index b8118e0de..ef4447547 100644
--- a/domains/julio.json
+++ b/domains/julio.json
@@ -1,6 +1,5 @@
{
"description": "My work portfolio",
- "repo": "https://github.com/thatsquite",
"owner": {
"username": "thatsquite",
"email": "juliocesar.santos@making.com"
diff --git a/domains/justdeveloper.json b/domains/justdeveloper.json
index 4313ccf47..799ea5b03 100644
--- a/domains/justdeveloper.json
+++ b/domains/justdeveloper.json
@@ -13,9 +13,12 @@
"185.199.110.153",
"185.199.111.153"
],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": [
"google-site-verification=qBaFslC7xe6gcHiolYEJ32HjpJVk-ZOMbRpu_1zkm_s",
- "yandex-verification: 10cec93159ddc69f"
+ "yandex-verification: 10cec93159ddc69f",
+ "yandex-verification: a31dc9b638bff027",
+ "v=spf1 include:spf.improvmx.com ~all"
]
}
}
diff --git a/domains/justdeveloper1.json b/domains/justdeveloper1.json
new file mode 100644
index 000000000..a2dd570b7
--- /dev/null
+++ b/domains/justdeveloper1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "justdeveloper@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://justdeveloper.is-a.dev/"
+ }
+}
diff --git a/domains/justdeveloper7.json b/domains/justdeveloper7.json
new file mode 100644
index 000000000..a2dd570b7
--- /dev/null
+++ b/domains/justdeveloper7.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "justdeveloper@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://justdeveloper.is-a.dev/"
+ }
+}
diff --git a/domains/juststudio.json b/domains/juststudio.json
index 287ea66c3..bb8add587 100644
--- a/domains/juststudio.json
+++ b/domains/juststudio.json
@@ -20,5 +20,18 @@
"yandex-verification: aac5928d8d57ade9",
"yandex-verification: 75d6e8d99eae89d4"
]
- }
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/.well-known/change-password": "https://js.is-a.dev/00",
+ "/terms-of-service": "https://js.is-a.dev/01",
+ "/user-agreement": "https://js.is-a.dev/01",
+ "/rules-for-players": "https://js.is-a.dev/02",
+ "/accounts": "https://js.is-a.dev/03",
+ "/r/discord": "https://discord.gg/aHXxS6VvcC",
+ "/r/roblox": "https://www.roblox.com/groups/11641563/JustStudio#!/about",
+ "/r/github": "https://github.com/JustStudio7"
+ }
+ },
+ "proxied": true
}
diff --git a/domains/juststudio7.json b/domains/juststudio7.json
new file mode 100644
index 000000000..68c44d3ee
--- /dev/null
+++ b/domains/juststudio7.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://juststudio.is-a.dev/"
+ }
+}
diff --git a/domains/jvnsen.json b/domains/jvnsen.json
new file mode 100644
index 000000000..5ef55ba4c
--- /dev/null
+++ b/domains/jvnsen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jvnsen",
+ "email": "jansenharveyreyes0101@gmail.com"
+ },
+ "record": {
+ "CNAME": "jvnsen.github.io"
+ }
+}
diff --git a/domains/jwe0.json b/domains/jwe0.json
new file mode 100644
index 000000000..a7bef65b3
--- /dev/null
+++ b/domains/jwe0.json
@@ -0,0 +1,10 @@
+{
+ "description": "Forwarding",
+ "owner": {
+ "email": "900qxecf7@mozmail.com",
+ "username": "jwe0"
+ },
+ "record": {
+ "CNAME": "jwe0.xyz"
+ }
+}
diff --git a/domains/jwoj.json b/domains/jwoj.json
new file mode 100644
index 000000000..8b6d4afd9
--- /dev/null
+++ b/domains/jwoj.json
@@ -0,0 +1,10 @@
+{
+ "description": "Hydro Online Judge System",
+ "owner": {
+ "username": "Evansrrr",
+ "email": "enzoraziore@outlook.com"
+ },
+ "record": {
+ "A": ["82.156.38.77"]
+ }
+}
diff --git a/domains/jznctt.json b/domains/jznctt.json
new file mode 100644
index 000000000..a4f78e30e
--- /dev/null
+++ b/domains/jznctt.json
@@ -0,0 +1,11 @@
+{
+ "description": "Profile Website of Jznctt",
+ "repo": "https://github.com/ncttjz/ncttjz.github.io",
+ "owner": {
+ "username": "ncttjz",
+ "email": "jznctt@gmail.com"
+ },
+ "record": {
+ "CNAME": "ncttjz.github.io"
+ }
+}
diff --git a/domains/kacem.json b/domains/kacem.json
index f413e6bad..608e3298e 100644
--- a/domains/kacem.json
+++ b/domains/kacem.json
@@ -1,6 +1,5 @@
{
"description": "Kacem's personal dungeon",
- "repo": "https://github.com/LordKacem",
"owner": {
"username": "Kacem",
"email": "Kacem.dev@hotmail.com"
diff --git a/domains/kacper.json b/domains/kacper.json
new file mode 100644
index 000000000..3e6ba42b3
--- /dev/null
+++ b/domains/kacper.json
@@ -0,0 +1,10 @@
+{
+ "description": "kacper.is-a.dev",
+ "owner": {
+ "username": "k4czp3r",
+ "email": "contact@kacperserewis.net"
+ },
+ "record": {
+ "CNAME": "kacperserewis.net"
+ }
+}
diff --git a/domains/kagchi.json b/domains/kagchi.json
index 5adbcc6b0..5a08ac610 100644
--- a/domains/kagchi.json
+++ b/domains/kagchi.json
@@ -1,6 +1,5 @@
{
"description": "KagChi's Personal Website",
- "repo": "https://github.com/KagChi",
"owner": {
"username": "KagChi",
"email": "contact@kagchi.my.id"
diff --git a/domains/kagurayayoi.json b/domains/kagurayayoi.json
new file mode 100644
index 000000000..f47aea9c7
--- /dev/null
+++ b/domains/kagurayayoi.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/fjaxzhy/is-a.dev",
+ "owner": {
+ "username": "Fjaxzhy",
+ "email": "admin@kagurayayoi.top"
+ },
+ "record": {
+ "CNAME": "kagurayayoi.top"
+ }
+ }
\ No newline at end of file
diff --git a/domains/kajetan.json b/domains/kajetan.json
new file mode 100644
index 000000000..79f0f0dd5
--- /dev/null
+++ b/domains/kajetan.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal use for my portofolio website",
+ "repo": "https://github.com/Kajpio/kajpio.github.io",
+ "owner": {
+ "username": "Kajpio",
+ "email": "thugmichel14@gmail.com"
+ },
+ "record": {
+ "CNAME": "kajpio.github.io"
+ }
+}
diff --git a/domains/kakureta.ikram.json b/domains/kakureta.ikram.json
new file mode 100644
index 000000000..ff29ca1bb
--- /dev/null
+++ b/domains/kakureta.ikram.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ikram-maulana",
+ "email": "ikrammaulana021@gmail.com",
+ "discord": "634603202784002050"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/kalebalebachew.json b/domains/kalebalebachew.json
new file mode 100644
index 000000000..937d42423
--- /dev/null
+++ b/domains/kalebalebachew.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kalebalebachew",
+ "email": "kalebalebachew4@gmail.com"
+ },
+ "record": {
+ "URL": "https://kalebalebachew.com"
+ }
+}
diff --git a/domains/kanetu.json b/domains/kanetu.json
new file mode 100644
index 000000000..4be714044
--- /dev/null
+++ b/domains/kanetu.json
@@ -0,0 +1,11 @@
+{
+ "description": "Kane Tu's personal developer website",
+ "repo": "https://github.com/kanetu/kanetu.github.io",
+ "owner": {
+ "username": "kanetu",
+ "email": "kanetu731@gmail.com"
+ },
+ "record": {
+ "CNAME": "kanetu.github.io"
+ }
+}
diff --git a/domains/kappucino.json b/domains/kappucino.json
index 6f690b542..7fd0cb673 100644
--- a/domains/kappucino.json
+++ b/domains/kappucino.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "kappucin",
- "email": "132572179+kappucin@users.noreply.github.com",
"discord": "853170099392479253"
},
"record": {
diff --git a/domains/karan.json b/domains/karan.json
new file mode 100644
index 000000000..6a04076eb
--- /dev/null
+++ b/domains/karan.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "balanikaran"
+ },
+ "record": {
+ "CNAME": "karanbalani.com"
+ }
+}
diff --git a/domains/kareem.json b/domains/kareem.json
new file mode 100644
index 000000000..fb6592863
--- /dev/null
+++ b/domains/kareem.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kareem-m",
+ "email": "kareemmoh1911@gmail.com"
+ },
+ "record": {
+ "CNAME": "kareemelramady.vercel.app"
+ }
+}
diff --git a/domains/karify98.json b/domains/karify98.json
new file mode 100644
index 000000000..f5db5890e
--- /dev/null
+++ b/domains/karify98.json
@@ -0,0 +1,10 @@
+
+{
+ "owner": {
+ "username": "karify98",
+ "email": "nnnam048@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/karify98"
+ }
+ }
diff --git a/domains/karthikeyanj.json b/domains/karthikeyanj.json
new file mode 100644
index 000000000..b4889bc1f
--- /dev/null
+++ b/domains/karthikeyanj.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio of karthikeyan J",
+ "repo": "https://github.com/karthik1915/my-vue-portfolio",
+ "owner": {
+ "username": "karthik1915",
+ "email": "karthikeyanj1915@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/kartikshriwas.json b/domains/kartikshriwas.json
index 5934ebdcc..6305788fd 100644
--- a/domains/kartikshriwas.json
+++ b/domains/kartikshriwas.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "kartikshriwas",
- "email": "",
"discord": "756002965323645069",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pJe5J41LBdrD2xDWudBiVp66kIxdQIj60sraae1BOQ-SQ27mGzfBzsGjxzPfvEFSOFZd2sceXvK87x15PvOXRtdYvfUKNAFmt-oxcbfAfSmaiH4YtSFe7re3F5QEDNfYvYH96QsMwHQoj2CP5-5CceqWULYFvkusOL_4ScO8yYYYCRrDCKCJ8nP80wUT2ltwAikLqY6iJTwJvWS1LqiInC1qAn8VfA5-0Z6pgXCL7sMIsLWO-GZKXOqGUE_b5zV8LOgRml_RQgOlCZ306TVpOE2eF7M37nZ3ETbY3OWQo125q43oiisPZGo89sfL3jRxzd4OpaC56sEvEjj5_eXE6w.Bo1EpPh6LJSpWzAWSiqEYA.IHIiJ7JdCyD6CYg9bjHxHuBTJPluhpe2PGzmCR8A9RPmRcCitK4H5bTCXCw1R3qw6gIy2IugE9-Bt5iHulfHLHgPOmeg5xN8SHo5ea-Z7U4.1LJXKyAg2vnLjmnCoxQvGQ"
},
diff --git a/domains/katidoki.json b/domains/katidoki.json
new file mode 100644
index 000000000..54be96678
--- /dev/null
+++ b/domains/katidoki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hitoshi-okada",
+ "email": "okada@katidoki.com"
+ },
+ "record": {
+ "CNAME": "hitoshi-okada.github.io"
+ }
+}
diff --git a/domains/katumbapaul.json b/domains/katumbapaul.json
new file mode 100644
index 000000000..f9ad1810b
--- /dev/null
+++ b/domains/katumbapaul.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kpaool",
+ "email": "jonathapkatumba@gmail.com"
+ },
+ "record": {
+ "CNAME": "katumbapaul.com"
+ }
+}
diff --git a/domains/kawet.json b/domains/kawet.json
index 674b3f21a..868b7d754 100644
--- a/domains/kawet.json
+++ b/domains/kawet.json
@@ -1,6 +1,5 @@
{
"description": "My portofolio",
- "repo": "https://github.com/Kawet00",
"owner": {
"username": "kawet",
"email": "kawet00@proton.me"
diff --git a/domains/kayden.json b/domains/kayden.json
index 7b01d8916..42ab43640 100644
--- a/domains/kayden.json
+++ b/domains/kayden.json
@@ -4,6 +4,6 @@
"email": "kaydenleefale@gmail.com"
},
"record": {
- "A": ["103.7.8.238"]
+ "A": ["178.128.124.89"]
}
}
diff --git a/domains/keishi.json b/domains/keishi.json
new file mode 100644
index 000000000..ee22f1bf1
--- /dev/null
+++ b/domains/keishi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Keishi's portfolio",
+ "repo": "https://github.com/VoidKeishi/PPA-Porfolio",
+ "owner": {
+ "username": "VoidKeishi",
+ "email": "phananha4@gmail.com"
+ },
+ "record": {
+ "CNAME": "voidkeishi.github.io"
+ }
+}
diff --git a/domains/kelly.json b/domains/kelly.json
new file mode 100644
index 000000000..b68491bbc
--- /dev/null
+++ b/domains/kelly.json
@@ -0,0 +1,11 @@
+{
+ "description": "Kelly Lawrence's personal website.",
+ "owner": {
+ "email": "kelly@kellylawrence.ca",
+ "username": "kellylawrence"
+ },
+ "record": {
+ "CNAME": "kellylawrence.github.io"
+ },
+ "repo": "https://github.com/kellylawrence/kellylawrence.github.io"
+}
diff --git a/domains/kelvin.json b/domains/kelvin.json
new file mode 100644
index 000000000..58c947e26
--- /dev/null
+++ b/domains/kelvin.json
@@ -0,0 +1,10 @@
+{
+ "description": "Dev Site",
+ "owner": {
+ "username": "kelvinelove",
+ "email": "kevypolu@yahoo.com"
+ },
+ "record": {
+ "CNAME": "kevhi.netlify.app"
+ }
+}
diff --git a/domains/ken-kuro.json b/domains/ken-kuro.json
new file mode 100644
index 000000000..b5bf0c5bd
--- /dev/null
+++ b/domains/ken-kuro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ken-kuro",
+ "linkedin": "hieuhm2610"
+ },
+ "record": {
+ "CNAME": "kuro-querencia.vercel.app"
+ }
+}
diff --git a/domains/kendikasir.json b/domains/kendikasir.json
new file mode 100644
index 000000000..80742220b
--- /dev/null
+++ b/domains/kendikasir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sneazy25",
+ "email": "sneazy25@proton.me"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/kennymolina.json b/domains/kennymolina.json
new file mode 100644
index 000000000..89f70f0e2
--- /dev/null
+++ b/domains/kennymolina.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "xXMolinaXx",
+ "email": "kjmolina@live.com"
+ },
+ "record": {
+ "CNAME": "xxmolinaxx.github.io"
+ }
+}
diff --git a/domains/kentaylor.json b/domains/kentaylor.json
new file mode 100644
index 000000000..ef4d53dc1
--- /dev/null
+++ b/domains/kentaylor.json
@@ -0,0 +1,12 @@
+{
+ "description": "Keith Khaotic's personal website link",
+ "repo": "https://github.com/ktappdev/register",
+ "owner": {
+ "username": "Kentaylorappdev",
+ "email": "Kentaylorappdev@gmail.com",
+ "twitter": "@ktappdev"
+ },
+ "record": {
+ "URL": "https://lugetech.com"
+ }
+}
diff --git a/domains/keshav.json b/domains/keshav.json
index a434464a2..bf7982598 100644
--- a/domains/keshav.json
+++ b/domains/keshav.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "keshav-writes-code",
- "email": "dhimankeshav201@gmail.com"
- },
- "record": {
- "CNAME": "keshav-writes-code.github.io"
- }
+ "owner": {
+ "username": "keshav-writes-code",
+ "email": "dhimankeshav201@gmail.com"
+ },
+ "record": {
+ "CNAME": "keshav-writes-code.github.io"
+ }
}
diff --git a/domains/kevinmolina.json b/domains/kevinmolina.json
new file mode 100644
index 000000000..3e11f77cc
--- /dev/null
+++ b/domains/kevinmolina.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kevinmolinadev",
+ "email": "kevinmolina.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "kevinmolinadev.vercel.app"
+ }
+}
diff --git a/domains/keys.devmatei.json b/domains/keys.devmatei.json
deleted file mode 100644
index 10dc9ea92..000000000
--- a/domains/keys.devmatei.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DevMatei",
- "email": "matei.thoma@gmail.com"
- },
- "record": {
- "A": ["176.100.37.70"]
- }
-}
diff --git a/domains/khacviet.json b/domains/khacviet.json
new file mode 100644
index 000000000..98389b2d1
--- /dev/null
+++ b/domains/khacviet.json
@@ -0,0 +1,10 @@
+{
+ "description": "Khac Viet Portfolio website",
+ "owner": {
+ "username": "Khac-Viet",
+ "email": "viet2ca11@gmail.com"
+ },
+ "record": {
+ "A": ["103.97.126.29"]
+ }
+}
diff --git a/domains/khaif.json b/domains/khaif.json
new file mode 100644
index 000000000..e7f8544cd
--- /dev/null
+++ b/domains/khaif.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "khxif",
+ "email": "code.khaif@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-khxif.vercel.app"
+ }
+}
diff --git a/domains/khanh.json b/domains/khanh.json
index cd666ce18..4aeb952fa 100644
--- a/domains/khanh.json
+++ b/domains/khanh.json
@@ -1,6 +1,5 @@
{
"description": "Khanh's personal developer website",
- "repo": "https://github.com/canfam",
"owner": {
"username": "canfam",
"email": "khanhpham072007@gmail.com"
diff --git a/domains/khanhngn.json b/domains/khanhngn.json
new file mode 100644
index 000000000..430bfde3a
--- /dev/null
+++ b/domains/khanhngn.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "khanhngn-dev",
+ "email": "khanhngn.dev@gmail.com",
+ "discord": "jerry.ng"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/khateeb.json b/domains/khateeb.json
new file mode 100644
index 000000000..29264d1dc
--- /dev/null
+++ b/domains/khateeb.json
@@ -0,0 +1,11 @@
+{
+ "description": "Welcome to Khateeb's portfolio - a showcase of full-stack development projects and skills. Explore my work in web development, software engineering, and creative solutions built with modern technologies.",
+ "repo": "https://github.com/khateeboveskey/khateeboveskey.github.io",
+ "owner": {
+ "username": "khateeboveskey",
+ "email": "khateeboveskey@gmail.com"
+ },
+ "record": {
+ "CNAME": "khateeboveskey.github.io"
+ }
+}
diff --git a/domains/khuong.json b/domains/khuong.json
new file mode 100644
index 000000000..2283f3209
--- /dev/null
+++ b/domains/khuong.json
@@ -0,0 +1,20 @@
+{
+ "description": "khuong.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "lamngockhuong",
+ "email": "me@ngockhuong.com"
+ },
+ "record": {
+ "URL": "https://dev.ngockhuong.com"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/lamngockhuong",
+ "/x": "https://x.com/lamngockhuong",
+ "/fb": "https://facebook.com/lamngockhuong",
+ "/linkedin": "https://linkedin.com/in/lamngockhuong",
+ "/viblo": "https://viblo.asia/u/lamngockhuong"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/khuongln.json b/domains/khuongln.json
new file mode 100644
index 000000000..c45eb15c0
--- /dev/null
+++ b/domains/khuongln.json
@@ -0,0 +1,20 @@
+{
+ "description": "khuongln.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "lamngockhuong",
+ "email": "me@ngockhuong.com"
+ },
+ "record": {
+ "URL": "https://dev.ngockhuong.com"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/lamngockhuong",
+ "/x": "https://x.com/lamngockhuong",
+ "/fb": "https://facebook.com/lamngockhuong",
+ "/linkedin": "https://linkedin.com/in/lamngockhuong",
+ "/viblo": "https://viblo.asia/u/lamngockhuong"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/khushpatil.json b/domains/khushpatil.json
index 757884dd7..05a532110 100644
--- a/domains/khushpatil.json
+++ b/domains/khushpatil.json
@@ -1,6 +1,5 @@
{
"description": "my personal homepage",
- "repo": "https://github.com/AssassinK786",
"owner": {
"username": "AssassinK786",
"email": "khushpatil01@gmail.com"
diff --git a/domains/kietdo.json b/domains/kietdo.json
new file mode 100644
index 000000000..6b8bb75d5
--- /dev/null
+++ b/domains/kietdo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kietdo-dev",
+ "email": "lionvs12345@gmail.com"
+ },
+ "record": {
+ "CNAME": "kietdo-portolio.vercel.app"
+ }
+}
diff --git a/domains/kikemendez.json b/domains/kikemendez.json
new file mode 100644
index 000000000..ba13bc87b
--- /dev/null
+++ b/domains/kikemendez.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Kikeme98",
+ "email": "l.e.mendez1998@gmail.com"
+ },
+ "description": "My personal site portfolio",
+ "repo": "https://github.com/Kikeme98/react-frontend-dev-portfolio.git",
+ "record": {
+ "CNAME": "kikeme98.github.io"
+ }
+}
diff --git a/domains/kilamieaz.json b/domains/kilamieaz.json
new file mode 100644
index 000000000..661af786e
--- /dev/null
+++ b/domains/kilamieaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kilamieaz",
+ "email": "im.sultaan05@gmail.com"
+ },
+ "record": {
+ "CNAME": "kilamieaz.vercel.app"
+ }
+}
diff --git a/domains/kimduy.json b/domains/kimduy.json
new file mode 100644
index 000000000..90bbe207f
--- /dev/null
+++ b/domains/kimduy.json
@@ -0,0 +1,20 @@
+{
+ "description": "kimduy.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "nguyenkimduy180697",
+ "email": "nguyenkimduy180697@gmail.com"
+ },
+ "record": {
+ "URL": "https://nguyenkimduy.com/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/nguyenkimduy180697",
+ "/fb": "https://facebook.com/nguyenkimduy180697",
+ "/instagram": "https://instagram.com/nguyenkimduy180697/",
+ "/linkedin": "https://linkedin.com/in/nguyenkimduy180697",
+ "/viblo": "https://viblo.asia/u/nguyenkimduy180697"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/kinfhertix.json b/domains/kinfhertix.json
new file mode 100644
index 000000000..0e9db9243
--- /dev/null
+++ b/domains/kinfhertix.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Kinfhertix",
+ "email": "kinfhertix@gmail.com",
+ "discord": "i_mert"
+ },
+ "record": {
+ "CNAME": "kinfhertix.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/kiransala.json b/domains/kiransala.json
new file mode 100644
index 000000000..fd0c5b9dd
--- /dev/null
+++ b/domains/kiransala.json
@@ -0,0 +1,10 @@
+{
+ "description": "My personal portfolio site",
+ "owner": {
+ "username": "Kiransala",
+ "email": "kiransala.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "kiransala.netlify.app"
+ }
+}
diff --git a/domains/kishore.json b/domains/kishore.json
new file mode 100644
index 000000000..b50f52298
--- /dev/null
+++ b/domains/kishore.json
@@ -0,0 +1,11 @@
+{
+ "description": "personal portfolio",
+ "repo": "https://github.com/Kishore0122/portfolio",
+ "owner": {
+ "username": "Kishore0122",
+ "email": "kishorepanuganti278@gmail.com"
+ },
+ "record": {
+ "CNAME": "kishore0122.github.io"
+ }
+}
diff --git a/domains/kitohemat.iamkevinhuang.json b/domains/kitohemat.iamkevinhuang.json
new file mode 100644
index 000000000..24e618a76
--- /dev/null
+++ b/domains/kitohemat.iamkevinhuang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iamkevinhuang",
+ "email": "kevinjaydenwivano@duck.com"
+ },
+ "record": {
+ "A": ["194.233.91.185"]
+ }
+}
diff --git a/domains/kitten.json b/domains/kitten.json
index 2b27f72e2..cd3620912 100644
--- a/domains/kitten.json
+++ b/domains/kitten.json
@@ -1,6 +1,5 @@
{
"description": "using for personal projects",
- "repo": "https://github.com/KittensAreDaBest",
"owner": {
"username": "KittensAreDaBest",
"email": "is-a-dev@mythicalkitten.com"
diff --git a/domains/kiyora.json b/domains/kiyora.json
index dfed83a7a..a687854a0 100644
--- a/domains/kiyora.json
+++ b/domains/kiyora.json
@@ -1,6 +1,5 @@
{
"description": "using for personal projects",
- "repo": "https://github.com/ItsMyEyes",
"owner": {
"username": "ItsMyEyes",
"email": "dev@sipaling.top"
diff --git a/domains/kjimenez.json b/domains/kjimenez.json
new file mode 100644
index 000000000..43cfb28c7
--- /dev/null
+++ b/domains/kjimenez.json
@@ -0,0 +1,10 @@
+{
+ "subdomain": "kjimenez",
+ "owner": {
+ "username": "KevinJG994",
+ "email": "KevinJG994@gmail.com"
+ },
+ "record": {
+ "CNAME": "kjimenez.netlify.app"
+ }
+}
diff --git a/domains/kleein.json b/domains/kleein.json
index 52fb4d7f9..391669f4f 100644
--- a/domains/kleein.json
+++ b/domains/kleein.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "kleeiny",
- "discord": "763581985410121769",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RB8tarmY1z9BCAER0LvmJIvKu0Fx_u6ruXqMwX4aw-v4pZUbhTCKLSf_iR1b_b5WIL8VlKOd4FX2ykUcIOO1goN3vBszT__Edxfir1FYNhMOE3Ywn1oO1K-dPG8Ptsk0B7kuqFbv-0OjXjefixD44g6OYNGy9xxThP0ZJLT3jSOFf3x1O49S1OuibhrElcx41MGjLIms5Fp147ZFVn2p38aZisFKw7Q3yyAaLvJ1uGC1mosVF5CAZbfZxPhUpdvGizMPG9IRzuAQxF6pZf-L4bb1WFMIQYNtTX5o65sMCqIjcWaTK26SdrR-m_r7RudENszlDCuI8eJP3Se_vIVzbA.zbLxAQ7r2w8FxmiDnbIaTw.l11uw6jMkX69_h-55R37CKGZdSlD4KXAUWvaTwGKiTZDzlusNY-YNVzh3gdqTDL8CMCaL8LXfxZHKRaP6wU_5ohHaWB8kzKaW_Kj5dI0MMI.jU93qV2ujuyvYD-oeSF6Pg"
- },
-
- "record": {
- "A": ["15.235.204.212"]
- }
- }
-
\ No newline at end of file
+ "owner": {
+ "username": "kleeiny",
+ "discord": "763581985410121769",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RB8tarmY1z9BCAER0LvmJIvKu0Fx_u6ruXqMwX4aw-v4pZUbhTCKLSf_iR1b_b5WIL8VlKOd4FX2ykUcIOO1goN3vBszT__Edxfir1FYNhMOE3Ywn1oO1K-dPG8Ptsk0B7kuqFbv-0OjXjefixD44g6OYNGy9xxThP0ZJLT3jSOFf3x1O49S1OuibhrElcx41MGjLIms5Fp147ZFVn2p38aZisFKw7Q3yyAaLvJ1uGC1mosVF5CAZbfZxPhUpdvGizMPG9IRzuAQxF6pZf-L4bb1WFMIQYNtTX5o65sMCqIjcWaTK26SdrR-m_r7RudENszlDCuI8eJP3Se_vIVzbA.zbLxAQ7r2w8FxmiDnbIaTw.l11uw6jMkX69_h-55R37CKGZdSlD4KXAUWvaTwGKiTZDzlusNY-YNVzh3gdqTDL8CMCaL8LXfxZHKRaP6wU_5ohHaWB8kzKaW_Kj5dI0MMI.jU93qV2ujuyvYD-oeSF6Pg"
+ },
+ "record": {
+ "A": ["15.235.204.212"]
+ }
+}
diff --git a/domains/klez.json b/domains/klez.json
new file mode 100644
index 000000000..f4a1fb6a3
--- /dev/null
+++ b/domains/klez.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "klez2003",
+ "email": "klez@cock.li"
+ },
+ "record": {
+ "CNAME": "ammosearch.lol"
+ }
+}
diff --git a/domains/ko.json b/domains/ko.json
new file mode 100644
index 000000000..6c8614026
--- /dev/null
+++ b/domains/ko.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameRoMan",
+ "email": "gameromandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gameroman.pages.dev"
+ }
+}
diff --git a/domains/koding.json b/domains/koding.json
index 24283837d..3fc2fbb75 100644
--- a/domains/koding.json
+++ b/domains/koding.json
@@ -1,6 +1,5 @@
{
"description": "Full stack developer proficient in Kotlin",
- "repo": "https://github.com/KodingDev",
"owner": {
"username": "KodingDev",
"email": "kodingdev@pm.me"
diff --git a/domains/kokofixcomputers.json b/domains/kokofixcomputers.json
index cebb43a29..8b2d51302 100644
--- a/domains/kokofixcomputers.json
+++ b/domains/kokofixcomputers.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "kokofixcomputers",
- "email": "113046561+kokofixcomputers@users.noreply.github.com",
"discord": "1096839213313446019"
},
"record": {
diff --git a/domains/discord.winbo.json b/domains/komaru.json
similarity index 52%
rename from domains/discord.winbo.json
rename to domains/komaru.json
index b08208572..46caa668d 100644
--- a/domains/discord.winbo.json
+++ b/domains/komaru.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "winbo-yml-exe",
+ "username": "komaru-meow",
"email": "winbo-yml-exe@outlook.com"
},
"record": {
- "CNAME": "winbo-discord.github.io"
+ "CNAME": "komaru-meow.github.io"
}
}
diff --git a/domains/kona.json b/domains/kona.json
new file mode 100644
index 000000000..209ad08d7
--- /dev/null
+++ b/domains/kona.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "konaa0",
+ "discord": "1149438819834269856",
+ "bluesky": "vornexx.has.fish"
+ },
+ "record": {
+ "CNAME": "vornexx.pages.dev"
+ }
+}
diff --git a/domains/konnn04.json b/domains/konnn04.json
new file mode 100644
index 000000000..ef3822a94
--- /dev/null
+++ b/domains/konnn04.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal website",
+ "repo": "https://github.com/konnn04/konnn04.github.io",
+ "owner": {
+ "username": "konnn04",
+ "email": "trieukon1011@gmail.com"
+ },
+ "record": {
+ "CNAME": "konnn04.github.io"
+ }
+}
+
\ No newline at end of file
diff --git a/domains/korigamik.json b/domains/korigamik.json
index 3c4652da4..1aaeb1bf3 100644
--- a/domains/korigamik.json
+++ b/domains/korigamik.json
@@ -1,6 +1,5 @@
{
"description": "goto website of KorigamiK",
- "repo": "https://github.com/KorigamiK",
"owner": {
"username": "KorigamiK",
"email": "korigamik@gmail.com",
diff --git a/domains/kory.json b/domains/kory.json
index 183e86693..712bc39b8 100644
--- a/domains/kory.json
+++ b/domains/kory.json
@@ -1,6 +1,5 @@
{
"description": "Kory Porter's personal website",
- "repo": "https://github.com/korziee",
"owner": {
"username": "korziee",
"twitter": "korziee"
diff --git a/domains/koshikkumar17.json b/domains/koshikkumar17.json
deleted file mode 100644
index ae0639486..000000000
--- a/domains/koshikkumar17.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My Portfolio",
- "repo": "https://github.com/KoshikKumar17/KoshikKumar17.github.io",
- "owner": {
- "username": "koshikkumar17",
- "email": "cw4rriors17@gmail.com"
- },
- "record": {
- "CNAME": "koshikkumar17.github.io"
- }
-}
diff --git a/domains/kruase.json b/domains/kruase.json
new file mode 100644
index 000000000..79f09d49d
--- /dev/null
+++ b/domains/kruase.json
@@ -0,0 +1,12 @@
+{
+ "description": "Root subdomain, just a CNAME to Vercel",
+ "repo": "https://github.com/KruASe76",
+ "owner": {
+ "username": "KruASe76",
+ "email": "kruanse@ya.ru",
+ "telegram": "https://t.me/KruASe"
+ },
+ "record": {
+ "CNAME": "kruase.vercel.app"
+ }
+}
diff --git a/domains/ktevin01.json b/domains/ktevin01.json
new file mode 100644
index 000000000..63d6e2f91
--- /dev/null
+++ b/domains/ktevin01.json
@@ -0,0 +1,12 @@
+{
+ "description": "Behold, My Stuff",
+ "repo": "https://github.com/ktevin01/register.is-a-dev",
+ "owner": {
+ "username": "ktevin01",
+ "email": "ktevin@icloud.com"
+ },
+ "record": {
+ "URL": "https://github.com/ktevin01"
+ },
+ "proxied": false
+}
diff --git a/domains/ktpguesser.loomeh.json b/domains/ktpguesser.loomeh.json
new file mode 100644
index 000000000..953996849
--- /dev/null
+++ b/domains/ktpguesser.loomeh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "loomeh",
+ "bluesky": "loomeh.bsky.social"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/kuanngyn.json b/domains/kuanngyn.json
index d50b0e7cb..ce12aed84 100644
--- a/domains/kuanngyn.json
+++ b/domains/kuanngyn.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "LOQ-burh",
- "email": "nguyenminhquan042004@email.com"
- },
+ "username": "LOQ-burh",
+ "email": "nguyenminhquan042004@email.com"
+ },
"record": {
- "CNAME": "kuanngyn-portfolio.vercel.app"
- }
+ "CNAME": "kuanngyn-portfolio.vercel.app"
+ }
}
diff --git a/domains/kunalpurandare.json b/domains/kunalpurandare.json
new file mode 100644
index 000000000..1207b3f70
--- /dev/null
+++ b/domains/kunalpurandare.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://kunalpurandare.github.io/portfolio",
+ "owner": {
+ "username": "kunalpurandare",
+ "email": "kunalpurandare1703@gmail.com"
+ },
+ "record": {
+ "CNAME": "kunalpurandare.github.io"
+ }
+}
diff --git a/domains/kunalshah017.json b/domains/kunalshah017.json
new file mode 100644
index 000000000..ae6e2be7b
--- /dev/null
+++ b/domains/kunalshah017.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "kunalshah017",
+ "email": "kunalmanishshah@gmail.com",
+ "discord": "kunalshah17"
+ },
+ "record": {
+ "CNAME": "kunalshah017.vercel.app"
+ }
+}
diff --git a/domains/kuro.json b/domains/kuro.json
new file mode 100644
index 000000000..91d2d896a
--- /dev/null
+++ b/domains/kuro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Kurorin-fs",
+ "twitter": "Kurorin_fs"
+ },
+ "record": {
+ "CNAME": "kurorin-fs.github.io"
+ }
+}
diff --git a/domains/kushdhingra.json b/domains/kushdhingra.json
deleted file mode 100644
index 94d0dfea3..000000000
--- a/domains/kushdhingra.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "kushdhingra",
- "email": "kushdhingra3112@gmail.com",
- "discord": "1035869217796403220",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJTReSXxF-8BxDH8rn6i_DIx0XuVrc4yYnOEN1Awfp7mZcYPIgcPt4mvsScPbJYhZLN5XtDlxl0DcdU8Za12GCk-aIWegJ9-_32bdjw3agBzaJ-ltaslRoVpNJ3zfLaQ9V-BrhwVMEJhpz5-0eYeEiikL4tHAoPzzKMlYIf8f5l7IL6aMfhBZvIFf0B3upGg2FeOpFCXAsttU5QiKkjUt4BjetuYb29UJoNzDco1ZExLdudlKd_fz6IcaAsw2K1u6MMDDs2khsic9M42AE3pRFCP_hacdllY5Z66ATlmKhYAxFryJYWrgbfpGX2PxSrQalAao_IP1TIGgiq7ugiBDw.Lg-WIZSH_nzEfnLZct78Cg.soPtqjy32EA2Ew63dHQ8P8-dt4ZihvZpipBVkHyX_rlnv-y5YpS5v2-2d3O5hGHRfCKnfxQsvewDfcPSGa4_Oq8BN01Kzhbet8AXRCK6uOM.ouoa2YqHKAeX9lKWZoFaog"
- },
- "record": {
- "CNAME": "kushdhingra.vercel.app"
- }
-}
diff --git a/domains/meenbeese.json b/domains/kuzey.json
similarity index 100%
rename from domains/meenbeese.json
rename to domains/kuzey.json
diff --git a/domains/kyizl.json b/domains/kyizl.json
new file mode 100644
index 000000000..5cf95d2ef
--- /dev/null
+++ b/domains/kyizl.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "oqzx",
+ "email": "ekn@envs.net"
+ },
+ "record": {
+ "CNAME": "kyizl.pages.dev"
+ }
+}
diff --git a/domains/kz.json b/domains/kz.json
index 2bc45d58e..18b52cfa4 100644
--- a/domains/kz.json
+++ b/domains/kz.json
@@ -5,6 +5,6 @@
"discord": "622795838032314388"
},
"record": {
- "MX": ["mx1.improvmx.com"]
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
}
}
diff --git a/domains/l0ser.json b/domains/l0ser.json
index d1b55020d..67b442d2e 100644
--- a/domains/l0ser.json
+++ b/domains/l0ser.json
@@ -1,6 +1,5 @@
{
"description": "L0SER's personal developer website",
- "repo": "https://github.com/L0SER8228",
"owner": {
"username": "L0SER8228",
"email": "loserlackey@gmail.com"
diff --git a/domains/la-pyae-oo.json b/domains/la-pyae-oo.json
new file mode 100644
index 000000000..0006fc51a
--- /dev/null
+++ b/domains/la-pyae-oo.json
@@ -0,0 +1,13 @@
+{
+ "description": "For my static portfolio website",
+ "repo": "https://github.com/LaPyaeOo",
+ "owner": {
+ "username": "LaPyaeOo",
+ "email": "lapyaeootharthar@gmail.com"
+ },
+ "record": {
+ "CNAME": "lapyaeoo.github.io",
+ "TXT": "google-site-verification=6LBBzq6hGqSJG1IkXd766eWxcJmf7VPHrvSMDZ_h1HE"
+ },
+ "proxied": true
+}
\ No newline at end of file
diff --git a/domains/lachlan.json b/domains/lachlan.json
new file mode 100644
index 000000000..17042e9d9
--- /dev/null
+++ b/domains/lachlan.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "mrteale"
+ },
+ "record": {
+ "CNAME": "lachlanteale.com"
+ }
+}
diff --git a/domains/lakshay.json b/domains/lakshay.json
new file mode 100644
index 000000000..48c3d9643
--- /dev/null
+++ b/domains/lakshay.json
@@ -0,0 +1,10 @@
+{
+ "description": "Porfolio website link for lux",
+ "owner": {
+ "username": "unlux",
+ "email": "support@unlux.dev"
+ },
+ "record": {
+ "URL": "https://unlux.dev"
+ }
+}
diff --git a/domains/lakshisherediscord.json b/domains/lakshisherediscord.json
new file mode 100644
index 000000000..7a03c091c
--- /dev/null
+++ b/domains/lakshisherediscord.json
@@ -0,0 +1,11 @@
+{
+ "description": "Welcome to my experimental domain",
+ "repo": "https://github.com/WebLux7/WebLux",
+ "owner": {
+ "username": "WebLux7",
+ "email": "lucky7049sp@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/WebLux7"
+ }
+}
diff --git a/domains/lamngockhuong.json b/domains/lamngockhuong.json
new file mode 100644
index 000000000..ab7eb8792
--- /dev/null
+++ b/domains/lamngockhuong.json
@@ -0,0 +1,20 @@
+{
+ "description": "lamngockhuong.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "lamngockhuong",
+ "email": "me@ngockhuong.com"
+ },
+ "record": {
+ "URL": "https://dev.ngockhuong.com"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/lamngockhuong",
+ "/x": "https://x.com/lamngockhuong",
+ "/fb": "https://facebook.com/lamngockhuong",
+ "/linkedin": "https://linkedin.com/in/lamngockhuong",
+ "/viblo": "https://viblo.asia/u/lamngockhuong"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/laufey.json b/domains/laufey.json
index 890b24d8c..60b0aecae 100644
--- a/domains/laufey.json
+++ b/domains/laufey.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/idlidev/laufey-web",
"owner": {
"username": "idlidev",
- "email": "idliyout@gmail.com",
- "twitter": ""
+ "email": "idliyout@gmail.com"
},
"record": {
"CNAME": "idlidev.github.io"
diff --git a/domains/lautaro-molina.json b/domains/lautaro-molina.json
index 9ce3aee49..13b10fbc8 100644
--- a/domains/lautaro-molina.json
+++ b/domains/lautaro-molina.json
@@ -1,6 +1,5 @@
{
"description": "json for the domain is-a.dev",
- "repo": "https://github.com/LautaroMol",
"owner": {
"username": "LautaroMol",
"email": "Laumol159@gmail.com"
diff --git a/domains/lawrenceee04.json b/domains/lawrenceee04.json
new file mode 100644
index 000000000..ab5b04a7b
--- /dev/null
+++ b/domains/lawrenceee04.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lawrenceee04",
+ "email": "lawrencelg04@gmail.com"
+ },
+ "record": {
+ "CNAME": "lawrenceee04.netlify.app"
+ }
+}
diff --git a/domains/layhout.json b/domains/layhout.json
new file mode 100644
index 000000000..185abbfcd
--- /dev/null
+++ b/domains/layhout.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "layhout",
+ "email": "layhoutworkmail@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/lazy.json b/domains/lazy.json
new file mode 100644
index 000000000..e4610e565
--- /dev/null
+++ b/domains/lazy.json
@@ -0,0 +1,10 @@
+{
+ "description": "lazydragon.is-a.dev",
+ "owner": {
+ "username": "xuan-Thu",
+ "email": "xuanthu13090@gmail.com"
+ },
+ "record": {
+ "CNAME": "xuan-thu.github.io"
+ }
+}
diff --git a/domains/leek.json b/domains/leek.json
new file mode 100644
index 000000000..8352459fc
--- /dev/null
+++ b/domains/leek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "leek",
+ "email": "leeked+isadev@gmail.com"
+ },
+ "record": {
+ "URL": "https://leek.io"
+ }
+}
diff --git a/domains/legz.json b/domains/legz.json
new file mode 100644
index 000000000..8923707a6
--- /dev/null
+++ b/domains/legz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LegzDev",
+ "email": "legzdev@proton.me"
+ },
+ "record": {
+ "A": ["152.206.177.227"]
+ }
+}
diff --git a/domains/leo.json b/domains/leo.json
index 24046e7b9..c4a259dc0 100644
--- a/domains/leo.json
+++ b/domains/leo.json
@@ -1,6 +1,5 @@
{
"description": "Leonard's Personal Website",
- "repo": "https://github.com/LeonardSSH",
"owner": {
"username": "LeonardSSH",
"email": "leonardssh22@gmail.com",
diff --git a/domains/leolb.json b/domains/leolb.json
new file mode 100644
index 000000000..d8d150035
--- /dev/null
+++ b/domains/leolb.json
@@ -0,0 +1,11 @@
+{
+ "description": "Leo LB Portfolio",
+ "repo": "https://github.com/leo-lb29",
+ "owner": {
+ "username": "leo-lb29",
+ "email": "postyourbot@gmail.com"
+ },
+ "record": {
+ "URL": "https://leolb.wagoo.app"
+ }
+}
diff --git a/domains/leon.json b/domains/leon.json
new file mode 100644
index 000000000..4f3fbf417
--- /dev/null
+++ b/domains/leon.json
@@ -0,0 +1,11 @@
+{
+ "description": "Leon is a dev!",
+ "owner": {
+ "username": "itsLeonB",
+ "email": "ellionblessan@gmail.com"
+ },
+ "record": {
+ "CNAME": "itsLeonB.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/lester.json b/domains/lester.json
index ebc939b52..2a7e3f4d1 100644
--- a/domains/lester.json
+++ b/domains/lester.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "LSTR",
- "email": "lesternr@gmail.com"
- },
- "record": {
- "CNAME": "lstr.github.io"
- }
+ "owner": {
+ "username": "LSTR",
+ "email": "lesternr@gmail.com"
+ },
+ "record": {
+ "CNAME": "lstr.github.io"
+ }
}
diff --git a/domains/levon.json b/domains/levon.json
new file mode 100644
index 000000000..a3e33e903
--- /dev/null
+++ b/domains/levon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "levon-d",
+ "email": "mycroft2003@gmail.com"
+ },
+ "record": {
+ "CNAME": "levon-d.github.io"
+ }
+}
diff --git a/domains/lexy.json b/domains/lexy.json
index 7e1b7899d..471b7cb26 100644
--- a/domains/lexy.json
+++ b/domains/lexy.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "Olalexy1",
- "email": "",
- "discord": "olalexy1"
- },
- "record": {
- "CNAME": "lexy-portfolio-frontend.vercel.app"
- }
+ "owner": {
+ "username": "Olalexy1",
+ "discord": "olalexy1"
+ },
+ "record": {
+ "CNAME": "lexy-portfolio-frontend.vercel.app"
+ }
}
diff --git a/domains/lezli01.json b/domains/lezli01.json
new file mode 100644
index 000000000..372185af2
--- /dev/null
+++ b/domains/lezli01.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lezli01",
+ "email": "lezli01@gmail.com"
+ },
+ "record": {
+ "CNAME": "lezli01.github.io"
+ }
+}
diff --git a/domains/liam.json b/domains/liam.json
new file mode 100644
index 000000000..596537c09
--- /dev/null
+++ b/domains/liam.json
@@ -0,0 +1,17 @@
+{
+ "owner": {
+ "username": "liamatienza",
+ "email": "liamdev@duck.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ },
+ "proxied": true
+}
diff --git a/domains/liboot.json b/domains/liboot.json
new file mode 100644
index 000000000..1b302daeb
--- /dev/null
+++ b/domains/liboot.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "libootnet"
+ },
+ "record": {
+ "URL": "https://github.com/libootnet"
+ }
+}
diff --git a/domains/libresplit-resources.loomeh.json b/domains/libresplit-resources.loomeh.json
new file mode 100644
index 000000000..953996849
--- /dev/null
+++ b/domains/libresplit-resources.loomeh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "loomeh",
+ "bluesky": "loomeh.bsky.social"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/libresplit.loomeh.json b/domains/libresplit.loomeh.json
new file mode 100644
index 000000000..953996849
--- /dev/null
+++ b/domains/libresplit.loomeh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "loomeh",
+ "bluesky": "loomeh.bsky.social"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/light.json b/domains/light.json
deleted file mode 100644
index 652b1c7e1..000000000
--- a/domains/light.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "LightClient",
- "repo": "https://github.com/EvaZeVolt/GBA-Emulator",
- "owner": {
- "username": "Voltage",
- "email": "Voltagenesis@outlook.com"
- },
- "record": {
- "CNAME": "evazevolt.github.io"
- }
-}
diff --git a/domains/ligmatv.json b/domains/ligmatv.json
deleted file mode 100644
index 12be4ab97..000000000
--- a/domains/ligmatv.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "This subdomain will i use for my LIGMATV's blog website.",
- "repo": "https://github.com/LIGMATV/LIGMATV.github.io",
- "owner": {
- "username": "LIGMATV",
- "email": "ligmatv.id@gmail.com"
- },
- "record": {
- "CNAME": "ligmatv.github.io"
- }
-}
diff --git a/domains/lilitha-mdlalana.json b/domains/lilitha-mdlalana.json
new file mode 100644
index 000000000..cbd47b997
--- /dev/null
+++ b/domains/lilitha-mdlalana.json
@@ -0,0 +1,11 @@
+{
+ "description": "portfolio website",
+ "repo": "https://github.com/lilitha-mdlalana/nuxt_portfolio",
+ "owner": {
+ "username": "lilitha-mdlalana",
+ "email": "innomdlalana@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/limeware.json b/domains/limeware.json
new file mode 100644
index 000000000..2e3d3b83d
--- /dev/null
+++ b/domains/limeware.json
@@ -0,0 +1,11 @@
+{
+ "description": "LimeWare's Official site",
+ "repo": "https://github.com/dunno8489/dunno8489.github.io",
+ "owner": {
+ "username": "dunno8489"
+ },
+ "record": {
+ "CNAME": "dunno8489.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/linhtutkyaw.json b/domains/linhtutkyaw.json
new file mode 100644
index 000000000..8a149919a
--- /dev/null
+++ b/domains/linhtutkyaw.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "linhtutkyawdev",
+ "email": "linhtutkyaw.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "linhtutkyawdev.vercel.app"
+ }
+}
diff --git a/domains/link-to.lver.json b/domains/link-to.lver.json
new file mode 100644
index 000000000..93c4db3e7
--- /dev/null
+++ b/domains/link-to.lver.json
@@ -0,0 +1,11 @@
+{
+ "github": "https://github.com/lverx",
+ "owner": {
+ "username": "lverx",
+ "email": "profoundlvr@gmail.com"
+ },
+ "record": {
+ "A": ["52.72.49.79"]
+ },
+ "proxied": true
+}
diff --git a/domains/links.ikram.json b/domains/links.ikram.json
new file mode 100644
index 000000000..ff29ca1bb
--- /dev/null
+++ b/domains/links.ikram.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ikram-maulana",
+ "email": "ikrammaulana021@gmail.com",
+ "discord": "634603202784002050"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/links.ryanbaig.json b/domains/links.ryanbaig.json
new file mode 100644
index 000000000..8f67cb323
--- /dev/null
+++ b/domains/links.ryanbaig.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RyanBaig",
+ "discord": "757475933170040893"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/links.vulcanocraft.json b/domains/links.vulcanocraft.json
new file mode 100644
index 000000000..131858673
--- /dev/null
+++ b/domains/links.vulcanocraft.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DlO2KOEJxA8ox9mvR1isR_rPxNzdgErO1Sz3lDV1n3RjS--FqiD_kwjxXJFUNwCiHYhhUyVab9ZCjvaZ3dmL4En1v8sRTTl4KkrwDnW6ggD95L2KjejHNUpfogXgxzD5JlIg_ANXQX7MMbQKkc3ih8xFAEUCo4Hy7CkGzN7Kwcu9jvWz4TgX6WoRLqN1AGv0Ldn49hDviRsfXUqWuHOJOJjCtMQPj2uZAqKVXPwlFz_QZJCxd6nNCWRZwOi7q06aCPMjkIo3bppt_iBQxmK2XI0rd4nf5qZF9tyAr_d5FXu6gpLApFsb1HGTwNJ2PDHeVvXx9j6pS8shMhLVtYo_0g.V41N00bJ1np-q-JhkGNn1A.Lr5tPaGpBKb_I2r9QF2N8CperG-05bOj-LxHU5QSnPw2VhP-f8g6DQC4sw1HG76SfX6dhV4OOgrr7afpp7axGQefMEUTVEnJhiyxlWsq7NXGqai43vbifEaV8FCrjNLd.vFOZ2h0K7ag6ESfdcFSXAA"
+ },
+
+ "record": {
+ "CNAME": "vulcanolinks.pages.dev"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/lioo.json b/domains/lioo.json
index 673fcd59f..b784ed46b 100644
--- a/domains/lioo.json
+++ b/domains/lioo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "lio10jr",
- "email": "kevinzambrano593@gmail.com"
- },
- "record": {
- "URL": "https://github.com/Lio10jr"
- }
+ "owner": {
+ "username": "lio10jr",
+ "email": "kevinzambrano593@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/Lio10jr"
+ }
}
diff --git a/domains/liq.json b/domains/liq.json
index 17595f9e5..1a976286f 100644
--- a/domains/liq.json
+++ b/domains/liq.json
@@ -1,9 +1,7 @@
{
"description": "Learning something new everyday",
- "repo": "https://github.com/DevLiQ",
"owner": {
- "username": "DevLiQ",
- "email": "21136062+devliq@users.noreply.github.com"
+ "username": "DevLiQ"
},
"record": {
"CNAME": "devliq.github.io"
diff --git a/domains/lit.lver.json b/domains/lit.lver.json
new file mode 100644
index 000000000..7a2497f8e
--- /dev/null
+++ b/domains/lit.lver.json
@@ -0,0 +1,16 @@
+{
+ "github": "https://github.com/lverx",
+ "owner": {
+ "username": "lverx",
+ "email": "profoundlvr@gmail.com"
+ },
+ "record": {
+ "URL": "https://linktr.ee/lverboy"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/home": "https://lver.is-a.dev/"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/ljean.json b/domains/ljean.json
index a7903e58d..4330b007f 100644
--- a/domains/ljean.json
+++ b/domains/ljean.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Granpiecito",
- "email": "jeanpierresperrymanaleman@gmail.com",
- "discord": "294318911791562752"
- },
- "record": {
- "CNAME": "portfolio-astro-fawn-ten.vercel.app"
- }
+ "owner": {
+ "username": "Granpiecito",
+ "email": "jeanpierresperrymanaleman@gmail.com",
+ "discord": "294318911791562752"
+ },
+ "record": {
+ "CNAME": "portfolio-astro-fawn-ten.vercel.app"
+ }
}
diff --git a/domains/llucx.json b/domains/llucx.json
index bad3966d6..979f00458 100644
--- a/domains/llucx.json
+++ b/domains/llucx.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "llucxdev",
- "email": "puertesarrue@gmail.com",
- "discord": "lluuuc_12"
- },
- "record": {
- "CNAME": "portfolio-llucx.vercel.app"
- }
+ "owner": {
+ "username": "llucxdev",
+ "email": "puertesarrue@gmail.com",
+ "discord": "lluuuc_12"
+ },
+ "record": {
+ "CNAME": "portfolio-llucx.vercel.app"
+ }
}
diff --git a/domains/lnfnunes.json b/domains/lnfnunes.json
index 063c01ba1..88af75306 100644
--- a/domains/lnfnunes.json
+++ b/domains/lnfnunes.json
@@ -1,6 +1,5 @@
{
"description": "Little Big Nunes",
- "repo": "https://github.com/lnfnunes",
"owner": {
"username": "lnfnunes",
"email": "dr1design@gmail.com"
diff --git a/domains/lobo.json b/domains/lobo.json
index a583a0216..3e1f4443a 100644
--- a/domains/lobo.json
+++ b/domains/lobo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Lobooooooo14",
- "discord": "783120232134082580"
- },
- "record": {
- "CNAME": "olobo.vercel.app"
- }
+ "owner": {
+ "username": "Lobooooooo14",
+ "discord": "783120232134082580"
+ },
+ "record": {
+ "CNAME": "olobo.vercel.app"
+ }
}
diff --git a/domains/locionic.json b/domains/locionic.json
new file mode 100644
index 000000000..1271c4a37
--- /dev/null
+++ b/domains/locionic.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "locionic",
+ "email": "noone000a@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-blog-locionic.vercel.app"
+ }
+}
diff --git a/domains/lololand.json b/domains/lololand.json
new file mode 100644
index 000000000..642812000
--- /dev/null
+++ b/domains/lololand.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pessonnier",
+ "email": "ihdpsidt.hpsi@gmail.com"
+ },
+ "record": {
+ "URL": "https://pessonnier.github.io/doc/"
+ }
+}
diff --git a/domains/loomeh.json b/domains/loomeh.json
new file mode 100644
index 000000000..450b9ee89
--- /dev/null
+++ b/domains/loomeh.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "loomeh",
+ "bluesky": "loomeh.bsky.social"
+ },
+ "record": {
+ "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"],
+ "A": ["76.76.21.21"],
+ "TXT": [
+ "v=spf1 include:zohomail.eu ~all",
+ "zoho-verification=zb06679817.zmverify.zoho.eu"
+ ]
+ }
+}
diff --git a/domains/love.json b/domains/love.json
deleted file mode 100644
index 56da804a4..000000000
--- a/domains/love.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "zx155",
- "email": "laiquanguy82@gmail.com"
- },
- "record": {
- "CNAME": "zx155.github.io"
- }
-}
diff --git a/domains/lraffdev.json b/domains/lraffdev.json
new file mode 100644
index 000000000..2081951a3
--- /dev/null
+++ b/domains/lraffdev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LRaffDev",
+ "email": "raffaele.la.cerra@outlook.it"
+ },
+ "record": {
+ "CNAME": "LRaffDev.vercel.app"
+ }
+}
diff --git a/domains/lsalas.json b/domains/lsalas.json
new file mode 100644
index 000000000..e15508b10
--- /dev/null
+++ b/domains/lsalas.json
@@ -0,0 +1,11 @@
+{
+ "description": "Test website for lsalas.is-a.dev using hosintger.com",
+ "repo": "https://github.com/leondrisalas/Lsalas",
+ "owner": {
+ "username": "leondrisalas",
+ "email": "leondrisalas@gmail.com"
+ },
+ "record": {
+ "A": ["82.180.174.177"]
+ }
+}
diff --git a/domains/luanvu.json b/domains/luanvu.json
new file mode 100644
index 000000000..7ab86fd0e
--- /dev/null
+++ b/domains/luanvu.json
@@ -0,0 +1,12 @@
+{
+ "description": "My portfolio website",
+ "repo": "https://github.com/zthanhluan/luan.is-a.dev",
+ "owner": {
+ "username": "zthanhluan",
+ "email": "dientu078@gmail.com"
+ },
+ "record": {
+ "CNAME": "luanvu.betaenglish.com.vn"
+ },
+ "proxied": false
+}
diff --git a/domains/lucvuro.json b/domains/lucvuro.json
new file mode 100644
index 000000000..5a99bce49
--- /dev/null
+++ b/domains/lucvuro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lucvuro",
+ "email": "lucvuit@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-portfolio-v2-iota.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/ludolua.json b/domains/ludolua.json
new file mode 100644
index 000000000..b298132bd
--- /dev/null
+++ b/domains/ludolua.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "leduardoaraujo",
+ "email": "luizeduardo55062@gmail.com"
+ },
+ "record": {
+ "CNAME": "leduardoaraujo.github.io"
+ }
+}
diff --git a/domains/luisdanieltrejo.json b/domains/luisdanieltrejo.json
index e39bfe2ba..fbeaa889c 100644
--- a/domains/luisdanieltrejo.json
+++ b/domains/luisdanieltrejo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "luisdanieltrejo",
- "email": "luisdanieltrejo@gmail.com"
- },
- "record": {
- "CNAME": "luisdanieltrejo.github.io"
- }
+ "owner": {
+ "username": "luisdanieltrejo",
+ "email": "luisdanieltrejo@gmail.com"
+ },
+ "record": {
+ "CNAME": "luisdanieltrejo.github.io"
+ }
}
diff --git a/domains/luisgerardovillanueva.json b/domains/luisgerardovillanueva.json
index 37ea9789e..23ed9f8b9 100644
--- a/domains/luisgerardovillanueva.json
+++ b/domains/luisgerardovillanueva.json
@@ -1,12 +1,11 @@
{
- "description": "Personal portfolio website",
- "repo": "https://github.com/GerardoVillla/portfolio",
- "owner": {
- "username": "GerardoVillla",
- "email": "luismendezgd@gmail.com"
- },
- "record": {
- "CNAME": "portfolio-6f0jbiit2-gerardovilllas-projects.vercel.app"
- }
-
- }
\ No newline at end of file
+ "description": "Personal portfolio website",
+ "repo": "https://github.com/GerardoVillla/portfolio",
+ "owner": {
+ "username": "GerardoVillla",
+ "email": "luismendezgd@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-6f0jbiit2-gerardovilllas-projects.vercel.app"
+ }
+}
diff --git a/domains/luiz.json b/domains/luiz.json
new file mode 100644
index 000000000..0de948317
--- /dev/null
+++ b/domains/luiz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luk4h",
+ "email": "luizmarcondes@lgvm.dev"
+ },
+ "record": {
+ "CNAME": "lgvm.dev"
+ }
+}
diff --git a/domains/luked.json b/domains/luked.json
new file mode 100644
index 000000000..23b25ca07
--- /dev/null
+++ b/domains/luked.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luked177",
+ "twitter": "lukedore_"
+ },
+ "record": {
+ "CNAME": "cv-sand-zeta.vercel.app"
+ }
+}
diff --git a/domains/lumi.json b/domains/lumi.json
index 91d0b04f2..7b8bd0174 100644
--- a/domains/lumi.json
+++ b/domains/lumi.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "itsFatlum",
- "email": "",
+ "username": "itssfatlum",
"discord": "563697359423406082"
},
"record": {
diff --git a/domains/lumidevelopment.json b/domains/lumidevelopment.json
index e8cd32dc5..ad38854dc 100644
--- a/domains/lumidevelopment.json
+++ b/domains/lumidevelopment.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "itsFatlum",
- "email": "",
"discord": "563697359423406082"
},
"record": {
diff --git a/domains/lunah.json b/domains/lunah.json
index bb6a54ddf..3b4e37b1e 100644
--- a/domains/lunah.json
+++ b/domains/lunah.json
@@ -1,6 +1,5 @@
{
"description": "VPS hosted domain",
- "repo": "https://github.com/piotr25691",
"owner": {
"username": "piotr25691",
"discord": "b4.lunah"
diff --git a/domains/lungustefan.json b/domains/lungustefan.json
index e85e8ed1f..63394de20 100644
--- a/domains/lungustefan.json
+++ b/domains/lungustefan.json
@@ -3,6 +3,8 @@
"username": "lungustefan",
"email": "hi@lungustefan.ro",
"discord": "753179409682399332",
+ "phone": "+40770618625",
+ "mobile": "+40756450998",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZerVkVuk5RE7iT8ymXVcKhUkihyAdAbufacrfxq1u7NKQ4Hd0_PbY5FYDAR5uuVd-sCe7fOztiSKV7f9q1OI4HNGDqQxiaWqzom_lQsrIMW-gWUDsBG4Vo8gsq0wrw2th797i-JfsXy2crWaeXlX7X1kROV5KZhGwlSusnUrMp3jlN-uUM3b4hxUyEs3grbh4BiZ9CWShm-kLUs572OBpMigXh3aO0DcUl-BdYdlpSEdRQe8zwylJbFnetxG3qBaMcciGwImixY6V4qaqFwH18isGjDknsHB2WvXM8ekMZmSxgMyRtv1VRSbC22grzMeBazgWoj3x65KU3Z8C7KNmw.w-d8n6WalLAvFcWHqlRkcw.W7GJTwpNRB9pUehhfBXVlkOR1knSNSjvJWeDViV6u2h6AyBdwyaAyILEQzC5ishw0f209VgdyaCqocC7nJp_ZjWjAfcyw0ICLiUXM37Sn3Q.xQOo4RjPMh6dBbWiF1Polw"
},
"record": {
diff --git a/domains/luoxiaohei.json b/domains/luoxiaohei.json
deleted file mode 100644
index 1ef5b4c72..000000000
--- a/domains/luoxiaohei.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "🌸 This is nicer with it's own site of discord app named Luo Xiaohei",
- "repo": "https://github.com/lxhapp/lxhapp.github.io",
- "owner": {
- "username": "Melishy",
- "email": "themelishy@outlook.com",
- "twitter": "themelishy",
- "discord": "1053012080812359750"
- },
- "record": {
- "CNAME": "lxhapp.github.io"
- }
-}
diff --git a/domains/luvtoxic.json b/domains/luvtoxic.json
new file mode 100644
index 000000000..ff4b58d9d
--- /dev/null
+++ b/domains/luvtoxic.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luvtoxic",
+ "email": "ammarbags2023@gmail.com"
+ },
+ "record": {
+ "CNAME": "new-portfolio-sigma-indol.vercel.app"
+ }
+}
diff --git a/domains/lux.json b/domains/lux.json
new file mode 100644
index 000000000..48c3d9643
--- /dev/null
+++ b/domains/lux.json
@@ -0,0 +1,10 @@
+{
+ "description": "Porfolio website link for lux",
+ "owner": {
+ "username": "unlux",
+ "email": "support@unlux.dev"
+ },
+ "record": {
+ "URL": "https://unlux.dev"
+ }
+}
diff --git a/domains/luxorens.json b/domains/luxorens.json
new file mode 100644
index 000000000..2b8a2d91a
--- /dev/null
+++ b/domains/luxorens.json
@@ -0,0 +1,11 @@
+{
+ "description": "Website for Luxorens projects",
+ "owner": {
+ "username": "Luxorens",
+ "email": "luxorens@gmail.com"
+ },
+ "record": {
+ "CNAME": "luxorens.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/lver-rocks.lver.json b/domains/lver-rocks.lver.json
new file mode 100644
index 000000000..d5565eb14
--- /dev/null
+++ b/domains/lver-rocks.lver.json
@@ -0,0 +1,21 @@
+{
+ "github": "https://github.com/lverx",
+ "owner": {
+ "username": "lverx",
+ "email": "profoundlvr@gmail.com"
+ },
+ "record": {
+ "URL": "https://lver-rocks.pages.dev/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/home": "https://lver.is-a.dev/",
+ "/host": "https://pages.dev/",
+ "/dir": "https://github.com/is-a-dev/register",
+ "/iad": "https://is-a.dev/",
+ "/proxy": "https://developers.cloudflare.com/dns/proxy-status/",
+ "/contact": "https://contact-lver.pages.dev"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/lver.json b/domains/lver.json
new file mode 100644
index 000000000..b381fae98
--- /dev/null
+++ b/domains/lver.json
@@ -0,0 +1,19 @@
+{
+ "repo": "https://github.com/lverx",
+ "owner": {
+ "username": "lverx",
+ "email": "profoundlvr@gmail.com"
+ },
+ "record": {
+ "URL": "https://lverz.glitch.me/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/lverx",
+ "/biz": "https://github.com/lverz",
+ "/contact": "https://contact-lver.pages.dev/",
+ "/site": "https://lver.link"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/lyaxsh.json b/domains/lyaxsh.json
new file mode 100644
index 000000000..f138821cf
--- /dev/null
+++ b/domains/lyaxsh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Simple portfolio website for lyaxsh",
+ "repo": "https://github.com/lyaxsh/lyaxsh.github.io",
+ "owner": {
+ "username": "lyaxsh",
+ "email": "lakshnahar.forwork@gmail.com"
+ },
+ "record": {
+ "CNAME": "lyaxsh.github.io"
+ }
+}
diff --git a/domains/lycoris.json b/domains/lycoris.json
new file mode 100644
index 000000000..8fa432374
--- /dev/null
+++ b/domains/lycoris.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lycorissss",
+ "email": "beelzebub5758@gmail.com"
+ },
+ "record": {
+ "CNAME": "septyo-adi-dwi-putra.vercel.app"
+ }
+}
diff --git a/domains/lym.json b/domains/lym.json
new file mode 100644
index 000000000..ace48da9f
--- /dev/null
+++ b/domains/lym.json
@@ -0,0 +1,18 @@
+{
+ "owner": {
+ "username": "valentinsacco",
+ "email": "vasacco@hotmail.com.ar"
+ },
+ "record": {
+ "MX": [
+ {
+ "target": "feedback-smtp.sa-east-1.amazonses.com",
+ "priority": 10
+ }
+ ],
+ "TXT": [
+ "v=spf1 include:amazonses.com ~all",
+ "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqQsXtGDYZxYXgHSleoa7EOOoWmb50Y+ShykuiybSJc93jR393vWdAsPRY2nKsK/8+lMuMJjOiS/SzW8LflXyN1cUmkl7qTVS+waGz3hynAYrSNq9knoFjsVTa8KV00sStdUVqdlcxVn/PbawNJeTcjH5ou6f0TuQ58iv12IealwIDAQAB"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/domains/lyxtem.json b/domains/lyxtem.json
new file mode 100644
index 000000000..a615a3ce9
--- /dev/null
+++ b/domains/lyxtem.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Lyxtem",
+ "email": "nu284955@gmail.com"
+ },
+ "record": {
+ "CNAME": "lyxtem.vercel.app"
+ }
+}
diff --git a/domains/m3o.json b/domains/m3o.json
index 63c65284a..547b2bfb8 100644
--- a/domains/m3o.json
+++ b/domains/m3o.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "marco-souza",
- "email": "marco@tremtec.com"
- },
- "record": {
- "CNAME": "marco-pages-dev.pages.dev"
- }
+ "owner": {
+ "username": "marco-souza",
+ "email": "marco@tremtec.com"
+ },
+ "record": {
+ "CNAME": "marco-pages-dev.pages.dev"
+ }
}
diff --git a/domains/m42e.json b/domains/m42e.json
index c5cbebf94..ec3f2a711 100644
--- a/domains/m42e.json
+++ b/domains/m42e.json
@@ -1,6 +1,5 @@
{
"description": "m42e Homepage",
- "repo": "https://github.com/m42e",
"owner": {
"username": "m42e",
"email": "matthias@bilger.info"
diff --git a/domains/machip3r.json b/domains/machip3r.json
new file mode 100644
index 000000000..8ccfe2163
--- /dev/null
+++ b/domains/machip3r.json
@@ -0,0 +1,11 @@
+{
+ "description": "MacHip3r Portfolio",
+ "repo": "https://github.com/machip3r/portfolio",
+ "owner": {
+ "username": "machip3r",
+ "email": "mac_258@hotmail.com"
+ },
+ "record": {
+ "CNAME": "machip3r.github.io"
+ }
+}
diff --git a/domains/macielsuassuna.json b/domains/macielsuassuna.json
new file mode 100644
index 000000000..78bdb88e7
--- /dev/null
+++ b/domains/macielsuassuna.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Maciel64",
+ "discord": "macielmano",
+ "email": "macielsuassuna14@gmail.com"
+ },
+ "record": {
+ "CNAME": "macielsuassuna-portfolio.vercel.app"
+ }
+}
diff --git a/domains/mack.json b/domains/mack.json
new file mode 100644
index 000000000..50f3afa9a
--- /dev/null
+++ b/domains/mack.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mackcodes",
+ "email": "mackcodes03@gmail.com"
+ },
+ "record": {
+ "CNAME": "mayank-port.vercel.app"
+ }
+}
diff --git a/domains/maclong.json b/domains/maclong.json
index 9f07c573f..056987142 100644
--- a/domains/maclong.json
+++ b/domains/maclong.json
@@ -1,11 +1,11 @@
{
- "description": "Mac Long's personal developer portfolio and blog.",
- "repo": "https://github.com/maclong9/maclong9",
- "owner": {
- "username": "maclong9",
- "email": "maclong9@icloud.com"
- },
- "record": {
- "CNAME": "maclong9.github.io"
- }
+ "description": "Mac Long's personal developer portfolio and blog.",
+ "repo": "https://github.com/maclong9/maclong9",
+ "owner": {
+ "username": "maclong9",
+ "email": "maclong9@icloud.com"
+ },
+ "record": {
+ "CNAME": "maclong9.github.io"
+ }
}
diff --git a/domains/mafiz.json b/domains/mafiz.json
index 1eaf0b294..3333ff9c9 100644
--- a/domains/mafiz.json
+++ b/domains/mafiz.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "pacehutt",
- "email": "mafizonly@gmail.com"
- },
- "record": {
- "A": ["76.76.21.21"]
+ "owner": {
+ "username": "pacehutt",
+ "email": "mafizonly@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
}
}
diff --git a/domains/magma.json b/domains/magma.json
index 9417daedf..a375f5d23 100644
--- a/domains/magma.json
+++ b/domains/magma.json
@@ -1,6 +1,5 @@
{
"description": "magma's personal developer profile",
- "repo": "https://github.com/mgam-is-dreamin",
"owner": {
"username": "mgam-is-dreamin",
"email": "sacred.lunar.dragon@gmail.com"
diff --git a/domains/mahdi.json b/domains/mahdi.json
new file mode 100644
index 000000000..64c79ee45
--- /dev/null
+++ b/domains/mahdi.json
@@ -0,0 +1,11 @@
+{
+ "description": "my dev portfolio website",
+ "repo": "https://github.com/Mahdi-Hazrati/mahdi.is-a.dev",
+ "owner": {
+ "username": "mahdi-hazrati",
+ "email": "mahdihazratimailbox@gmail.com"
+ },
+ "record": {
+ "CNAME": "mahdi-hazrati.github.io"
+ }
+}
diff --git a/domains/maher-xubair.json b/domains/maher-xubair.json
new file mode 100644
index 000000000..8203d9ff8
--- /dev/null
+++ b/domains/maher-xubair.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "maher-xubair",
+ "email": "za998192@gmail.com"
+ },
+ "record": {
+ "CNAME": "maher-zubair.vercel.app"
+ }
+}
diff --git a/domains/maheshpaul.json b/domains/maheshpaul.json
index bde230e65..d8529bae1 100644
--- a/domains/maheshpaul.json
+++ b/domains/maheshpaul.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "maheshpaulj",
- "email": "mahesh.paul.j@gmail.com"
- },
- "record": {
- "CNAME": "maheshpaul.vercel.app"
- }
+ "owner": {
+ "username": "maheshpaulj",
+ "email": "mahesh.paul.j@gmail.com"
+ },
+ "record": {
+ "CNAME": "maheshpaul.vercel.app"
+ }
}
diff --git a/domains/mahfuz.json b/domains/mahfuz.json
new file mode 100644
index 000000000..9d530b98f
--- /dev/null
+++ b/domains/mahfuz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mahfuzurrahman98",
+ "email": "mdmahfuzurrahmanarif@gmail.com"
+ },
+ "record": {
+ "CNAME": "mahfuz.devcms.io"
+ }
+}
diff --git a/domains/mahir.json b/domains/mahir.json
index bd1a902ee..84e668fbf 100644
--- a/domains/mahir.json
+++ b/domains/mahir.json
@@ -1,6 +1,5 @@
{
"description": "Mahir's Website",
- "repo": "https://github.com/mtgsquad",
"owner": {
"username": "mtgsquad",
"email": "mahir@molai.dev",
diff --git a/domains/mahmoud-makady.json b/domains/mahmoud-makady.json
new file mode 100644
index 000000000..f72f26ac4
--- /dev/null
+++ b/domains/mahmoud-makady.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mahmoud-Makady",
+ "email": "m.makady19@gmail.com"
+ },
+ "record": {
+ "CNAME": "mahmoud-makady.netlify.app"
+ }
+}
diff --git a/domains/mahmulp.json b/domains/mahmulp.json
new file mode 100644
index 000000000..f54a85c39
--- /dev/null
+++ b/domains/mahmulp.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal site for Machmul Pratama",
+ "owner": {
+ "username": "MahmulP",
+ "email": "hello@mahmulp.my.id"
+ },
+ "record": {
+ "CNAME": "mahmulp.my.id"
+ },
+ "proxied": false
+}
diff --git a/domains/kush.json b/domains/mail.codesoft.json
similarity index 56%
rename from domains/kush.json
rename to domains/mail.codesoft.json
index 185f39166..fdd29a627 100644
--- a/domains/kush.json
+++ b/domains/mail.codesoft.json
@@ -1,8 +1,7 @@
{
"owner": {
- "username": "Kush-Dhingra",
- "email": "kushdhingra3112@gmail.com",
- "discord": "1035869217796403220"
+ "username": "CodeSoftGit",
+ "email": "codesoft@proton.me"
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
diff --git a/domains/mail.lver.json b/domains/mail.lver.json
new file mode 100644
index 000000000..01af9da15
--- /dev/null
+++ b/domains/mail.lver.json
@@ -0,0 +1,14 @@
+{
+ "repo": "https://github.com/lverx",
+ "owner": {
+ "username": "lverx",
+ "email": "profoundlvr@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "zoho-verification=zb43169475.zmverify.zoho.com",
+ "v=spf1 include:zohomail.com ~all"
+ ],
+ "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"]
+ }
+}
diff --git a/domains/mail.minmit.json b/domains/mail.minmit.json
index 9c375418a..bee099b5c 100644
--- a/domains/mail.minmit.json
+++ b/domains/mail.minmit.json
@@ -1,6 +1,5 @@
{
"description": "Mail For My Website",
- "repo": "https://github.com/MinMitCoder",
"owner": {
"username": "MinMitCoder",
"email": "minmitgamer@gmail.com"
diff --git a/domains/mail.mrstickypiston.json b/domains/mail.mrstickypiston.json
index ab66adeee..c120e7523 100644
--- a/domains/mail.mrstickypiston.json
+++ b/domains/mail.mrstickypiston.json
@@ -4,9 +4,11 @@
"discord": "700766242268774471",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag"
},
-
"record": {
- "TXT": "zoho-verification=zb27779902.zmverify.zoho.eu",
+ "TXT": [
+ "zoho-verification=zb27779902.zmverify.zoho.eu",
+ "v=spf1 include:zohomail.eu ~all"
+ ],
"MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"]
}
}
diff --git a/domains/mak5er.json b/domains/mak5er.json
new file mode 100644
index 000000000..7f4cb1582
--- /dev/null
+++ b/domains/mak5er.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mak5er",
+ "telegram": "@Mak5er"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/makarbass.json b/domains/makarbass.json
new file mode 100644
index 000000000..35ebdb394
--- /dev/null
+++ b/domains/makarbass.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "makarbass"
+ },
+ "record": {
+ "URL": "https://makarbass.github.io/"
+ }
+}
diff --git a/domains/mamun.json b/domains/mamun.json
index d7f8436e0..fcc58fa39 100644
--- a/domains/mamun.json
+++ b/domains/mamun.json
@@ -1,6 +1,5 @@
{
"description": "Mamun's website",
- "repo": "https://github.com/mamunhpath",
"owner": {
"username": "mamunhpath",
"email": "mamunhpath@hotmail.com"
diff --git a/domains/man.json b/domains/man.json
new file mode 100644
index 000000000..6c8614026
--- /dev/null
+++ b/domains/man.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameRoMan",
+ "email": "gameromandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gameroman.pages.dev"
+ }
+}
diff --git a/domains/manash.json b/domains/manash.json
index bd5c50311..d66adac44 100644
--- a/domains/manash.json
+++ b/domains/manash.json
@@ -1,6 +1,5 @@
{
"description": "Manash Sonowal - DEV",
- "repo": "https://github.com/msonowal",
"owner": {
"username": "msonowal",
"email": "manash149@gmail.com"
diff --git a/domains/manhnguyen18.json b/domains/manhnguyen18.json
new file mode 100644
index 000000000..44ffe2526
--- /dev/null
+++ b/domains/manhnguyen18.json
@@ -0,0 +1,11 @@
+{
+ "description": "manhnguyen18 portfolio",
+ "repo": "https://github.com/nguyenmanh18",
+ "owner": {
+ "username": "nguyenmanh18",
+ "email": "nguyenmanh1891997@gmail.com"
+ },
+ "record": {
+ "CNAME": "manh-nguyen-blogs.vercel.app"
+ }
+}
diff --git a/domains/maninder.json b/domains/maninder.json
index f62a88fe1..023de3b83 100644
--- a/domains/maninder.json
+++ b/domains/maninder.json
@@ -1,6 +1,5 @@
{
"description": "My Github Page!",
- "repo": "https://github.com/github4maninder",
"owner": {
"username": "github4maninder",
"email": "iamgoat@tutanota.com"
diff --git a/domains/manishgautam.json b/domains/manishgautam.json
new file mode 100644
index 000000000..19bdb8097
--- /dev/null
+++ b/domains/manishgautam.json
@@ -0,0 +1,11 @@
+{
+ "description": "Manish Gautam's Website",
+ "repo": "https://github.com/Manishmg3994/Manishmg3994.github.io",
+ "owner": {
+ "username": "Manishmg3994",
+ "email": "manishgautammg7@gmail.com"
+ },
+ "record": {
+ "CNAME": "manishmg3994.github.io"
+ }
+}
diff --git a/domains/manoj.json b/domains/manoj.json
new file mode 100644
index 000000000..ddfb6adbd
--- /dev/null
+++ b/domains/manoj.json
@@ -0,0 +1,11 @@
+{
+ "description": "Manoj's portfolio website",
+ "repo": "https://github.com/ManojINaik/portfolio",
+ "owner": {
+ "username": "ManojINaik",
+ "email": "naik97059@gmail.com"
+ },
+ "record": {
+ "CNAME": "manojinaik.github.io"
+ }
+}
diff --git a/domains/manojbarman.json b/domains/manojbarman.json
index eeff41055..edfc993e2 100644
--- a/domains/manojbarman.json
+++ b/domains/manojbarman.json
@@ -4,7 +4,6 @@
"twitter": "itsmanojb"
},
"description": "My personal website",
- "repo": "https://github.com/itsmanojb",
"record": {
"URL": "https://manojbarman.in"
}
diff --git a/domains/mantas.json b/domains/mantas.json
index ec487c071..52d8c98de 100644
--- a/domains/mantas.json
+++ b/domains/mantas.json
@@ -1,6 +1,5 @@
{
"description": "Mantas is a developer!",
- "repo": "https://github.com/mantooc",
"owner": {
"username": "mantooc",
"email": "mantasnugaras@gmail.com"
diff --git a/domains/manuelramallo.json b/domains/manuelramallo.json
new file mode 100644
index 000000000..aeb8928b5
--- /dev/null
+++ b/domains/manuelramallo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ManuelRamallo",
+ "email": "mramallodiaz96@gmail.com"
+ },
+ "record": {
+ "CNAME": "manuelramallo.github.io"
+ }
+}
diff --git a/domains/map.mrdiamond.json b/domains/map.mrdiamond.json
new file mode 100644
index 000000000..5fafbf9d2
--- /dev/null
+++ b/domains/map.mrdiamond.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "MrDiamondDog",
+ "email": "drewratner27@gmail.com"
+ },
+ "record": {
+ "A": ["129.146.51.207"]
+ },
+ "proxied": false
+}
diff --git a/domains/maqbool.json b/domains/maqbool.json
new file mode 100644
index 000000000..e7516a453
--- /dev/null
+++ b/domains/maqbool.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Abdullah-Maqbool",
+ "email": "abdullah.maqbool.ahmad@gmail.com"
+ },
+ "record": {
+ "CNAME": "abdullahmaqbool-portfolio.vercel.app"
+ }
+}
diff --git a/domains/marc.json b/domains/marc.json
index 414c35ef8..0d55bbb8a 100644
--- a/domains/marc.json
+++ b/domains/marc.json
@@ -1,6 +1,5 @@
{
"description": "Marc Gruita is a Developer!",
- "repo": "https://github.com/marcgr9",
"owner": {
"username": "marcgr9",
"email": "marc@gruita.ro"
diff --git a/domains/marcelomrwin.json b/domains/marcelomrwin.json
index c22c49bf7..e11f535f7 100644
--- a/domains/marcelomrwin.json
+++ b/domains/marcelomrwin.json
@@ -1,6 +1,5 @@
{
"description": "My personal website to showcase the stuff that I do",
- "repo": "https://github.com/marcelomrwin",
"owner": {
"username": "marcelomrwin",
"email": "marcelo.d.sales@gmail.com"
diff --git a/domains/marcoleder.json b/domains/marcoleder.json
new file mode 100644
index 000000000..5ca478b51
--- /dev/null
+++ b/domains/marcoleder.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "marcoleder",
+ "email": "info@marcoleder.ch"
+ },
+ "record": {
+ "URL": "https://marcoleder.ch"
+ }
+}
diff --git a/domains/marcos.json b/domains/marcos.json
index ee2c00027..2ad88a6d2 100644
--- a/domains/marcos.json
+++ b/domains/marcos.json
@@ -1,11 +1,10 @@
{
- "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
+ "description": "Developer portfolio",
+ "owner": {
+ "username": "mtoranzo",
+ "email": "mtoranzo@gmail.com"
+ },
+ "record": {
+ "CNAME": "mtoranzo.github.io"
+ }
+}
diff --git a/domains/mardino.json b/domains/mardino.json
index c1b801ae9..e0c2bec3a 100644
--- a/domains/mardino.json
+++ b/domains/mardino.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "zdienos",
- "email": "zdienos@yahoo.com"
- },
- "record": {
- "CNAME": "zdienos.com"
- }
+ "owner": {
+ "username": "zdienos",
+ "email": "zdienos@yahoo.com"
+ },
+ "record": {
+ "CNAME": "zdienos.com"
+ }
}
diff --git a/domains/mario-papetti.json b/domains/mario-papetti.json
index e13296f01..4b2b42e82 100644
--- a/domains/mario-papetti.json
+++ b/domains/mario-papetti.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Mario-dango",
- "email": "mp.robots@gmail.com"
- },
- "record": {
- "CNAME": "mario-dango.github.io"
- }
+ "owner": {
+ "username": "Mario-dango",
+ "email": "mp.robots@gmail.com"
+ },
+ "record": {
+ "CNAME": "mario-dango.github.io"
+ }
}
diff --git a/domains/marjuz.json b/domains/marjuz.json
new file mode 100644
index 000000000..6c9415def
--- /dev/null
+++ b/domains/marjuz.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "marjuzdev"
+ },
+ "record": {
+ "CNAME": "marjuz.netlify.app"
+ }
+}
diff --git a/domains/markaguirre.json b/domains/markaguirre.json
new file mode 100644
index 000000000..a2abe4a80
--- /dev/null
+++ b/domains/markaguirre.json
@@ -0,0 +1,11 @@
+{
+ "description": "Developer Portfolio",
+ "repo": "https://github.com/MarkAguirre26/folio",
+ "owner": {
+ "username": "MarkAguirre26",
+ "email": "markaguirre26@gmail.com"
+ },
+ "record": {
+ "CNAME": "markaguirre.netlify.app"
+ }
+}
diff --git a/domains/markasaad.json b/domains/markasaad.json
index d300f8cd6..4840de2d5 100644
--- a/domains/markasaad.json
+++ b/domains/markasaad.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "voltonik",
- "email": "markasaadramzy@gmail.com"
- },
- "record": {
- "CNAME": "markasaad.vercel.app"
- }
+ "owner": {
+ "username": "voltonik",
+ "email": "markasaadramzy@gmail.com"
+ },
+ "record": {
+ "CNAME": "markasaad.vercel.app"
+ }
}
diff --git a/domains/markblum.json b/domains/markblum.json
index 073ee14d4..11b3bfc81 100644
--- a/domains/markblum.json
+++ b/domains/markblum.json
@@ -4,6 +4,6 @@
"email": "mark@el-blum.de"
},
"record": {
- "CNAME": "el-blum.selfhost.co"
+ "CNAME": "dyndns.el-blum.de"
}
}
diff --git a/domains/markos.json b/domains/markos.json
index deb080298..a485cc764 100644
--- a/domains/markos.json
+++ b/domains/markos.json
@@ -1,6 +1,5 @@
{
"description": "Hello my name is Markos Dimitsas and I am from Greece.",
- "repo": "https://github.com/markdimi",
"owner": {
"username": "markdimi",
"email": "markdimitsas@gmail.com"
diff --git a/domains/marlon.json b/domains/marlon.json
new file mode 100644
index 000000000..6d5a8ae76
--- /dev/null
+++ b/domains/marlon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MarlonDevs",
+ "email": "marlonmogollon13@gmail.com"
+ },
+ "record": {
+ "CNAME": "marlondevs.github.io"
+ }
+}
diff --git a/domains/marlonbaatjes.json b/domains/marlonbaatjes.json
new file mode 100644
index 000000000..b364129b9
--- /dev/null
+++ b/domains/marlonbaatjes.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mdesignscode",
+ "email": "marlonbaatjes62@gmail.com"
+ },
+ "record": {
+ "CNAME": "marlonbaatjes.vercel.app"
+ }
+}
diff --git a/domains/marten-mrfc.json b/domains/marten-mrfc.json
new file mode 100644
index 000000000..deb6b4787
--- /dev/null
+++ b/domains/marten-mrfc.json
@@ -0,0 +1,11 @@
+{
+ "description": "For my portfolio site",
+ "repo": "https://github.com/Marten-Mrfc/Marten-Mrfc",
+ "owner": {
+ "username": "Marten-Mrfc",
+ "email": "martensog@gmail.com"
+ },
+ "record": {
+ "CNAME": "marten-mrfc.github.io"
+ }
+}
diff --git a/domains/martin.json b/domains/martin.json
new file mode 100644
index 000000000..e714b1a9b
--- /dev/null
+++ b/domains/martin.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/martinshaw/martinshaw.github.io",
+ "owner": {
+ "username": "martinshaw",
+ "email": "hello@martinshaw.co"
+ },
+ "record": {
+ "CNAME": "martinshaw.github.io"
+ }
+}
diff --git a/domains/martinvruiz.json b/domains/martinvruiz.json
index 31d7a0e9a..e1092fd19 100644
--- a/domains/martinvruiz.json
+++ b/domains/martinvruiz.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "martinvruiz",
- "email": "martinvruiz10@gmail.com",
- "discord": "martinvruiz10"
- },
- "record": {
- "CNAME": "portfoliomvr.vercel.app"
- }
+ "owner": {
+ "username": "martinvruiz",
+ "email": "martinvruiz10@gmail.com",
+ "discord": "martinvruiz10"
+ },
+ "record": {
+ "CNAME": "portfoliomvr.vercel.app"
+ }
}
diff --git a/domains/masdzub.json b/domains/masdzub.json
new file mode 100644
index 000000000..a39de10c1
--- /dev/null
+++ b/domains/masdzub.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Personal Website.",
+ "repo": "https://github.com/masdzub/masdzub.github.io",
+ "owner": {
+ "username": "masdzub",
+ "email": "hello@masdzub.com"
+ },
+ "record": {
+ "CNAME": "masdzub-github-io.pages.dev"
+ }
+}
diff --git a/domains/masood.json b/domains/masood.json
index aad69bdb4..d3285923a 100644
--- a/domains/masood.json
+++ b/domains/masood.json
@@ -1,6 +1,5 @@
{
"description": "Masood Mohammad's Personal Website",
- "repo": "https://github.com/masoodbinmohammad",
"owner": {
"username": "masoodbinmohammad",
"email": "masoodbinmohammad@hotmail.com"
diff --git a/domains/matei.json b/domains/matei.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/matei.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/mateogariboglio.json b/domains/mateogariboglio.json
new file mode 100644
index 000000000..30d20d95b
--- /dev/null
+++ b/domains/mateogariboglio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mateo-404",
+ "discord": "gary_______"
+ },
+ "record": {
+ "CNAME": "portfolio-mateo-404s-projects.vercel.app"
+ }
+}
diff --git a/domains/mateoguidi.json b/domains/mateoguidi.json
new file mode 100644
index 000000000..205e8b613
--- /dev/null
+++ b/domains/mateoguidi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mateo GUIDI's Portfolio",
+ "repo": "https://github.com/MateoGuidi/mateoguidi.github.io",
+ "owner": {
+ "username": "MateoGuidi",
+ "email": "mateo.guidi5@gmail.com"
+ },
+ "record": {
+ "CNAME": "mateoguidi.github.io"
+ }
+}
diff --git a/domains/mateus.json b/domains/mateus.json
index 235c408d1..cafec5c30 100644
--- a/domains/mateus.json
+++ b/domains/mateus.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "costamateus",
- "email": "mateus@costamateus.com.br"
- },
- "record": {
- "A": [ "147.79.84.80" ]
- }
+ "owner": {
+ "username": "costamateus",
+ "email": "mateus@costamateus.com.br"
+ },
+ "record": {
+ "A": ["147.79.84.80"]
+ }
}
diff --git a/domains/mateuseap.json b/domains/mateuseap.json
new file mode 100644
index 000000000..a23d10a02
--- /dev/null
+++ b/domains/mateuseap.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio",
+ "repo": "https://github.com/mateuseap/mateuseap.github.io",
+ "owner": {
+ "username": "mateuseap",
+ "email": "mateuseap@mateuseap.com"
+ },
+ "record": {
+ "CNAME": "mateuseap.github.io"
+ }
+}
diff --git a/domains/mateusz.json b/domains/mateusz.json
new file mode 100644
index 000000000..f7047966b
--- /dev/null
+++ b/domains/mateusz.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "Pand3moniuMx3"
+ },
+ "record": {
+ "CNAME": "mateuszmirecki.netlify.app"
+ }
+}
diff --git a/domains/matheusdev.json b/domains/matheusdev.json
new file mode 100644
index 000000000..0b5743747
--- /dev/null
+++ b/domains/matheusdev.json
@@ -0,0 +1,13 @@
+{
+ "description": "Web Developer Portifolio",
+ "repo": "https://github.com/matheusfdosan/portifolio/",
+ "owner": {
+ "username": "matheusfdosan",
+ "email": "matheusfaustinoe20@gmail.com",
+ "linkedin": "https://www.linkedin.com/in/matheusfaus/",
+ "discord": "979816215281279019"
+ },
+ "record": {
+ "CNAME": "portifolio-swart-five-65.vercel.app"
+ }
+}
diff --git a/domains/matt-murdock.json b/domains/matt-murdock.json
index b5b6465d8..c9f908960 100644
--- a/domains/matt-murdock.json
+++ b/domains/matt-murdock.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "xr-coder",
- "email": "nryadav7412@gmail.com"
- },
- "record": {
- "NS": ["anahi.ns.cloudflare.com" , "darl.ns.cloudflare.com"]
- }
+ "owner": {
+ "username": "xr-coder",
+ "email": "nryadav7412@gmail.com"
+ },
+ "record": {
+ "NS": ["anahi.ns.cloudflare.com", "darl.ns.cloudflare.com"]
+ }
}
diff --git a/domains/matt.json b/domains/matt.json
index 50ac3d430..9442eee49 100644
--- a/domains/matt.json
+++ b/domains/matt.json
@@ -1,6 +1,5 @@
{
"description": "Matt is a Developer!",
- "repo": "https://github.com/Tweak4141",
"owner": {
"username": "tweak4141",
"email": "tweak@talosbot.xyz"
diff --git a/domains/mattcheng.json b/domains/mattcheng.json
new file mode 100644
index 000000000..780913a63
--- /dev/null
+++ b/domains/mattcheng.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "mattchengg"
+ },
+ "record": {
+ "CNAME": "mattchengg.github.io"
+ }
+}
diff --git a/domains/mattew.json b/domains/mattew.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/mattew.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/mattw.json b/domains/mattw.json
index 7b365e300..cd5c53691 100644
--- a/domains/mattw.json
+++ b/domains/mattw.json
@@ -1,6 +1,5 @@
{
"description": "Matt is a Developer!",
- "repo": "https://github.com/Tweak4141",
"owner": {
"username": "tweak4141",
"email": "tweak@talosbot.xyz"
diff --git a/domains/mau.json b/domains/mau.json
new file mode 100644
index 000000000..2330e1c5a
--- /dev/null
+++ b/domains/mau.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mamv2137",
+ "email": "mamv.2137@gmail.com"
+ },
+ "record": {
+ "CNAME": "mamv2137.github.io"
+ }
+}
diff --git a/domains/mayerfried.json b/domains/mayerfried.json
index 85b531275..cfe12d2a5 100644
--- a/domains/mayerfried.json
+++ b/domains/mayerfried.json
@@ -1,6 +1,5 @@
{
"description": "Mayer Fried Is A Dev",
- "repo": "https://github.com/mfried40",
"owner": {
"username": "mfried40",
"email": "mayer@mayerfried.com"
diff --git a/domains/mayuresh.json b/domains/mayuresh.json
new file mode 100644
index 000000000..90a6ac7f5
--- /dev/null
+++ b/domains/mayuresh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mayur1377",
+ "email": "mayuresh1377@gmail.com"
+ },
+ "record": {
+ "CNAME": "iammayur.vercel.app"
+ }
+}
diff --git a/domains/mayurraut.json b/domains/mayurraut.json
new file mode 100644
index 000000000..31089e679
--- /dev/null
+++ b/domains/mayurraut.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Website",
+ "repo": "https://github.com/razobeckett/razobeckett.github.io",
+ "owner": {
+ "username": "razobeckett",
+ "email": "mayurraut.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "razobeckett.github.io"
+ }
+}
diff --git a/domains/mazengohar.json b/domains/mazengohar.json
index 79bee6893..0cf5019b9 100644
--- a/domains/mazengohar.json
+++ b/domains/mazengohar.json
@@ -1,6 +1,5 @@
{
"description": "Mazen Gohar - DEV",
- "repo": "https://github.com/MazenGohar",
"owner": {
"username": "MazenGohar",
"email": "mizoiology@gmail.com"
diff --git a/domains/mb.json b/domains/mb.json
index 246c7c3e5..910e20001 100644
--- a/domains/mb.json
+++ b/domains/mb.json
@@ -1,6 +1,5 @@
{
"description": "Michael's personal developer website",
- "repo": "https://github.com/mbrav",
"owner": {
"username": "mbrav",
"email": "mbrav@protonmail.com"
diff --git a/domains/mc.3gee.json b/domains/mc.3gee.json
new file mode 100644
index 000000000..754a634a0
--- /dev/null
+++ b/domains/mc.3gee.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "3geETR",
+ "email": "egemacun@gmail.com"
+ },
+ "record": {
+ "CNAME": "gold.magmanode.com"
+ }
+}
diff --git a/domains/mc.js.json b/domains/mc.js.json
new file mode 100644
index 000000000..697099ead
--- /dev/null
+++ b/domains/mc.js.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "dev@j.is-a.dev"
+ },
+ "record": {
+ "NS": [
+ "galileo.aternos.org",
+ "columbus.aternos.org"
+ ]
+ }
+}
diff --git a/domains/mcalec.json b/domains/mcalec.json
new file mode 100644
index 000000000..70d5716a3
--- /dev/null
+++ b/domains/mcalec.json
@@ -0,0 +1,12 @@
+{
+ "description": "mcalec.is-a.dev",
+ "repo": "https://github.com/mcalec-dev/mcalec.is-a.dev",
+ "owner": {
+ "username": "mcalec-dev",
+ "email": "hello@mcalec.dev",
+ "discord": "mcalec"
+ },
+ "record": {
+ "CNAME": "mcalec.dev"
+ }
+}
diff --git a/domains/mega.json b/domains/mega.json
index b93865291..d9dd89558 100644
--- a/domains/mega.json
+++ b/domains/mega.json
@@ -1,6 +1,5 @@
{
"description": "My Personal website and possibly an API",
- "repo": "https://github.com/MegaDevGuy",
"owner": {
"username": "MegaDevGuy",
"twitter": "_Mega_Dev_"
diff --git a/domains/meghdip.json b/domains/meghdip.json
index 3365c4c37..9fe8d102e 100644
--- a/domains/meghdip.json
+++ b/domains/meghdip.json
@@ -5,6 +5,6 @@
"discord": "479631349167423509"
},
"record": {
- "CNAME": "karmakarmeghdip.github.io"
+ "CNAME": "meghdip.vercel.app"
}
-}
+}
\ No newline at end of file
diff --git a/domains/mehedihjim.json b/domains/mehedihjim.json
new file mode 100644
index 000000000..e2c02c3e8
--- /dev/null
+++ b/domains/mehedihjim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mehedihjim",
+ "email": "mhjim.info@gmail.com"
+ },
+ "record": {
+ "CNAME": "mehedihjim.github.io"
+ }
+}
diff --git a/domains/mehrdad.json b/domains/mehrdad.json
new file mode 100644
index 000000000..e11f1e8cb
--- /dev/null
+++ b/domains/mehrdad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mehrdad-shokri",
+ "email": "code.poet95@gmail.com"
+ },
+ "record": {
+ "CNAME": "mehrdad.ai"
+ }
+}
diff --git a/domains/mehrshad.json b/domains/mehrshad.json
new file mode 100644
index 000000000..ea89beb26
--- /dev/null
+++ b/domains/mehrshad.json
@@ -0,0 +1,11 @@
+{
+ "description": "Overview And Introduction of Owner's Open Source Projects",
+ "repo": "https://github.com/SaintScraTchY/SaintScraTchY.github.io",
+ "owner": {
+ "username": "SaintScraTchY",
+ "email": "mehrshad2028@gmail.com"
+ },
+ "record": {
+ "CNAME": "saintscratchy.github.io"
+ }
+}
diff --git a/domains/mehulpathak.json b/domains/mehulpathak.json
new file mode 100644
index 000000000..411a745f4
--- /dev/null
+++ b/domains/mehulpathak.json
@@ -0,0 +1,10 @@
+{
+ "description": "Mehul Pathak's Portfolio",
+ "owner": {
+ "username": "m3hu1",
+ "email": "pathakkmehul@gmail.com"
+ },
+ "record": {
+ "URL": "https://mehulpathak.vercel.app/"
+ }
+}
diff --git a/domains/melainegerard.json b/domains/melainegerard.json
index 211289550..98b248579 100644
--- a/domains/melainegerard.json
+++ b/domains/melainegerard.json
@@ -1,6 +1,5 @@
{
"description": "Redirect to my personal website",
- "repo": "https://github.com/MelaineGerard",
"owner": {
"username": "MelaineGerard",
"email": "pro@melaine-gerard.fr",
diff --git a/domains/melih.json b/domains/melih.json
new file mode 100644
index 000000000..47878c1d3
--- /dev/null
+++ b/domains/melih.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mdegis",
+ "email": "melihdegis@gmail.com"
+ },
+ "record": {
+ "CNAME": "mdegis.com"
+ }
+}
diff --git a/domains/meloun7.json b/domains/meloun7.json
index c1275092f..d9d9bc774 100644
--- a/domains/meloun7.json
+++ b/domains/meloun7.json
@@ -1,6 +1,5 @@
{
"description": "My personal website",
- "repo": "https://github.com/Whtery1087",
"owner": {
"username": "Whtery1087",
"email": "beelandsofficialmc@gmail.com"
diff --git a/domains/menn.json b/domains/menn.json
new file mode 100644
index 000000000..cef07f018
--- /dev/null
+++ b/domains/menn.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hedgehog-menn",
+ "email": "kp.thananchai@gmail.com",
+ "discord": "26623men"
+ },
+ "record": {
+ "CNAME": "hedgehog-menn.vercel.app"
+ }
+}
diff --git a/domains/meow.json b/domains/meow.json
new file mode 100644
index 000000000..00ab0224a
--- /dev/null
+++ b/domains/meow.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ukriu",
+ "email": "isadev@ukriu.com"
+ },
+ "record": {
+ "CNAME": "ukriu.pages.dev"
+ }
+}
diff --git a/domains/mertdemir.json b/domains/mertdemir.json
new file mode 100644
index 000000000..3108178a2
--- /dev/null
+++ b/domains/mertdemir.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mert Demir CV",
+ "repo": "https://github.com/mertdemir0/mertdemir0.github.io",
+ "owner": {
+ "username": "mertdemir0",
+ "email": "mertdemir@pec.it"
+ },
+ "record": {
+ "CNAME": "mertdemir0.github.io"
+ }
+}
diff --git a/domains/mesren2.json b/domains/mesren2.json
new file mode 100644
index 000000000..cc68a7162
--- /dev/null
+++ b/domains/mesren2.json
@@ -0,0 +1,11 @@
+{
+ "description": "main website for mesren2",
+ "repo": "https://github.com/mesren2/mesren2.github.io",
+ "owner": {
+ "username": "mesren2",
+ "email": "iamreallysilly90@gmail.com"
+ },
+ "record": {
+ "CNAME": "mesren2.github.io"
+ }
+}
diff --git a/domains/meyer-pidiache.json b/domains/meyer-pidiache.json
new file mode 100644
index 000000000..96b632798
--- /dev/null
+++ b/domains/meyer-pidiache.json
@@ -0,0 +1,10 @@
+{
+ "description": "Blog",
+ "owner": {
+ "username": "meyer-pidiache",
+ "email": "pidiache@duck.com"
+ },
+ "record": {
+ "CNAME": "meyer-pidiache.github.io"
+ }
+}
diff --git a/domains/mgb.json b/domains/mgb.json
new file mode 100644
index 000000000..90e6f42ee
--- /dev/null
+++ b/domains/mgb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mbonum",
+ "email": "m.bonum@protonmail.com"
+ },
+ "record": {
+ "CNAME": "mbonum.github.io"
+ }
+}
diff --git a/domains/mhzen.json b/domains/mhzen.json
new file mode 100644
index 000000000..21563a524
--- /dev/null
+++ b/domains/mhzen.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal site",
+ "owner": {
+ "username": "mhzen",
+ "email": "mhzen@proton.me"
+ },
+ "record": {
+ "CNAME": "mhzen.pages.dev"
+ }
+}
diff --git a/domains/miaomingc.json b/domains/miaomingc.json
new file mode 100644
index 000000000..31b7e00be
--- /dev/null
+++ b/domains/miaomingc.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "miaomingc",
+ "email" : "miaomingc@outlook.com"
+ },
+ "record": {
+ "A": ["204.194.66.196"],
+ "AAAA": ["2001:470:18:c89::2"]
+ }
+}
diff --git a/domains/micah.json b/domains/micah.json
index ebe809748..97715e06f 100644
--- a/domains/micah.json
+++ b/domains/micah.json
@@ -1,6 +1,5 @@
{
"description": "Micah Lindley is a web developer.",
- "repo": "https://github.com/micahlt",
"owner": {
"username": "micahlt",
"email": "hi@micahlindley.com"
diff --git a/domains/micahb.json b/domains/micahb.json
new file mode 100644
index 000000000..f9ce68b13
--- /dev/null
+++ b/domains/micahb.json
@@ -0,0 +1,11 @@
+{
+ "description": "Micah Brereton, technologist creating impact",
+ "owner": {
+ "username": "BreretonCodez",
+ "email": "me@micahb.net",
+ "discord": "kingmb"
+ },
+ "record": {
+ "URL": "https://micahb.net"
+ }
+}
diff --git a/domains/michaelmuthomi.json b/domains/michaelmuthomi.json
index 0c538ba37..8b0d8702e 100644
--- a/domains/michaelmuthomi.json
+++ b/domains/michaelmuthomi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "michaelmuthomi",
- "email": "lit911call@gmail.com"
- },
- "record": {
- "CNAME": "michael-portfolio-green.vercel.app"
- }
+ "owner": {
+ "username": "michaelmuthomi",
+ "email": "lit911call@gmail.com"
+ },
+ "record": {
+ "CNAME": "michael-portfolio-green.vercel.app"
+ }
}
diff --git a/domains/miguel.json b/domains/miguel.json
index bf19dfe0d..a9a51cb47 100644
--- a/domains/miguel.json
+++ b/domains/miguel.json
@@ -1,6 +1,5 @@
{
"description": "Miguel Piedrafita's website",
- "repo": "https://github.com/m1guelpf",
"owner": {
"username": "m1guelpf",
"email": "soy@miguelpiedrafita.com"
diff --git a/domains/miguelsole.json b/domains/miguelsole.json
new file mode 100644
index 000000000..6140e8162
--- /dev/null
+++ b/domains/miguelsole.json
@@ -0,0 +1,11 @@
+{
+ "description": "Miguel Sole's personal portfolio",
+ "repo": "https://github.com/Msole18/12-portfolio",
+ "owner": {
+ "username": "Msole18",
+ "email": "miguel.sole18@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/mihchis.json b/domains/mihchis.json
new file mode 100644
index 000000000..46bb8febe
--- /dev/null
+++ b/domains/mihchis.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "mihchis"
+ },
+ "record": {
+ "CNAME": "mihchis.github.io"
+ }
+}
diff --git a/domains/mike.json b/domains/mike.json
index 41b595b2f..11cfb8e80 100644
--- a/domains/mike.json
+++ b/domains/mike.json
@@ -1,6 +1,5 @@
{
"description": "Mike's portfolio website and blog",
- "repo": "https://github.com/mdrobbins",
"owner": {
"username": "mdrobbins",
"email": "mikedrobbins@gmail.com"
diff --git a/domains/mikevdberge.json b/domains/mikevdberge.json
new file mode 100644
index 000000000..92498766b
--- /dev/null
+++ b/domains/mikevdberge.json
@@ -0,0 +1,10 @@
+{
+ "description": "Mike van den Berge's website and blog",
+ "owner": {
+ "username": "mikevdberge",
+ "email": "mike.van.den.berge@gmail.com"
+ },
+ "record": {
+ "CNAME": "mikevdberge.github.io"
+ }
+}
diff --git a/domains/milaan.json b/domains/milaan.json
new file mode 100644
index 000000000..e0e4bec57
--- /dev/null
+++ b/domains/milaan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "milandangol",
+ "email": "milandangol57@gmail.com"
+ },
+ "record": {
+ "CNAME": "milaan.pages.dev"
+ }
+}
diff --git a/domains/milan090.json b/domains/milan090.json
index 7a6d8947d..e3607e6f5 100644
--- a/domains/milan090.json
+++ b/domains/milan090.json
@@ -1,6 +1,5 @@
{
"description": "I'm a student, but who are you 🔫",
- "repo": "https://github.com/milan090",
"owner": {
"username": "milan090",
"email": "milanmuhammed1@gmail.com"
diff --git a/domains/mimic.json b/domains/mimic.json
new file mode 100644
index 000000000..633d1cfe4
--- /dev/null
+++ b/domains/mimic.json
@@ -0,0 +1,11 @@
+{
+ "description": "@mimic's personal portfolio",
+ "repo": "https://github.com/GioMjds/Personal-Portfolio.git",
+ "owner": {
+ "username": "GioMjds",
+ "email": "giomjds@gmail.com"
+ },
+ "record": {
+ "CNAME": "giomjds-portfolio.vercel.app"
+ }
+}
diff --git a/domains/minecraft.mrdiamond.json b/domains/minecraft.mrdiamond.json
new file mode 100644
index 000000000..fc145a63f
--- /dev/null
+++ b/domains/minecraft.mrdiamond.json
@@ -0,0 +1,18 @@
+{
+ "owner": {
+ "username": "MrDiamondDog",
+ "email": "drewratner27@gmail.com"
+ },
+ "record": {
+ "SRV": [
+ {
+ "name": "_minecraft._tcp.minecraft",
+ "priority": 0,
+ "weight": 5,
+ "port": 28225,
+ "target": "minecraft.mrdiamond.is-a.dev"
+ }
+ ],
+ "A": ["129.146.51.207"]
+ }
+}
diff --git a/domains/minhtan.json b/domains/minhtan.json
new file mode 100644
index 000000000..3211b7562
--- /dev/null
+++ b/domains/minhtan.json
@@ -0,0 +1,12 @@
+{
+ "description": "Trình giả lập chạy mã Python trên website.",
+ "repo": "https://github.com/tanbaycu/pythonCLI-webapp",
+ "owner": {
+ "username": "tanbaycu",
+ "email": "tanbaycu@gmail.com"
+ },
+ "record": {
+ "CNAME": "python-cli-webapp.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/minhtuan-1.json b/domains/minhtuan-1.json
index b7f2b9ffc..1be8150cb 100644
--- a/domains/minhtuan-1.json
+++ b/domains/minhtuan-1.json
@@ -1,11 +1,11 @@
{
- "description": "profile-tuan.dev",
- "owner": {
- "username": "tuannguyen2002",
- "email": "nxmtuan.2002@gmail.com",
- "discord": "nightfury06749"
- },
- "record": {
- "CNAME": "cname.vercel-dns.com"
- }
+ "description": "profile-tuan.dev",
+ "owner": {
+ "username": "tuannguyen2002",
+ "email": "nxmtuan.2002@gmail.com",
+ "discord": "nightfury06749"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
}
diff --git a/domains/minhvo.json b/domains/minhvo.json
new file mode 100644
index 000000000..dd83efea2
--- /dev/null
+++ b/domains/minhvo.json
@@ -0,0 +1,12 @@
+{
+ "description": "minhomega.github.io",
+ "repo": "https://github.com/minhomega/minhomega.github.io",
+ "owner": {
+ "username": "minhomega",
+ "email": "minhvo050298@gmail.com",
+ "discord": "omega0502"
+ },
+ "record": {
+ "CNAME": "minhomega.github.io"
+ }
+}
diff --git a/domains/minmit.json b/domains/minmit.json
index 20ac64b44..2a87f73ee 100644
--- a/domains/minmit.json
+++ b/domains/minmit.json
@@ -1,6 +1,5 @@
{
"description": "My Personal Website",
- "repo": "https://github.com/MinMitCoder",
"owner": {
"username": "MinMitCoder",
"email": "minmitgamer@gmail.com"
diff --git a/domains/miteigi.json b/domains/miteigi.json
new file mode 100644
index 000000000..764161773
--- /dev/null
+++ b/domains/miteigi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "actuallyundefined",
+ "email": "baokhang4930@gmail.com"
+ },
+ "record": {
+ "NS": ["elijah.ns.cloudflare.com", "jo.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/mj1532.json b/domains/mj1532.json
index 2cbeb6fa3..775ba0e3e 100644
--- a/domains/mj1532.json
+++ b/domains/mj1532.json
@@ -1,6 +1,5 @@
{
"description": "MJ1532 Just A Normal Developer",
- "repo": "https://github.com/MJ1532",
"owner": {
"username": "MJ1532",
"email": "business@mj1532.cf"
diff --git a/domains/mjresu.json b/domains/mjresu.json
new file mode 100644
index 000000000..371171c79
--- /dev/null
+++ b/domains/mjresu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "mjdsj",
+ "email": "work.mjdsj+is-a-dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-workmjdsj-gmailcom.vercel.app"
+ },
+ "proxied": false
+ }
\ No newline at end of file
diff --git a/domains/mkblane.json b/domains/mkblane.json
new file mode 100644
index 000000000..ad2042c60
--- /dev/null
+++ b/domains/mkblane.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal website and portfolio",
+ "repo": "https://github.com/mkblane/mkblane.github.io",
+ "owner": {
+ "username": "mkblane",
+ "email": "rendaniman@outlook.com"
+ },
+ "record": {
+ "CNAME": "mkblane.github.io"
+ }
+}
diff --git a/domains/mkeko-dm.json b/domains/mkeko-dm.json
new file mode 100644
index 000000000..126a4cd45
--- /dev/null
+++ b/domains/mkeko-dm.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mkeko'S DM RULES DOCS",
+ "owner": {
+ "username": "Mkeko",
+ "email": "mkekoplayreal@gmail.com"
+ },
+ "record": {
+ "URL": "https://docs.google.com/document/d/11kX-6F9HoGzgIM5KYXvMmPvt4A_vIbLT9aj5uCATpOM/edit?usp=sharing"
+ },
+ "proxied": false
+}
diff --git a/domains/mldeveer.json b/domains/mldeveer.json
new file mode 100644
index 000000000..46b12ba80
--- /dev/null
+++ b/domains/mldeveer.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio Website",
+ "repo": "https://github.com/existing-dev/mldeveer",
+ "owner": {
+ "username": "existing-dev",
+ "email": "maamelankar.deveer@gmail.com"
+ },
+ "record": {
+ "CNAME": "existing-dev.github.io"
+ }
+}
diff --git a/domains/mln.json b/domains/mln.json
new file mode 100644
index 000000000..6439d777e
--- /dev/null
+++ b/domains/mln.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/xmi1an/portfoliov2.git",
+ "owner": {
+ "username": "xmi1an",
+ "email": "xnarcos300@gmail.com"
+ },
+ "record": {
+ "CNAME": "xmi1an.vercel.app"
+ }
+}
diff --git a/domains/mmondragon.json b/domains/mmondragon.json
index 2163bbed3..0f9c1e43f 100644
--- a/domains/mmondragon.json
+++ b/domains/mmondragon.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "Mac-Mondragon"
- },
- "record": {
- "CNAME": "Mac-Mondragon.github.io"
- }
+ "owner": {
+ "username": "Mac-Mondragon"
+ },
+ "record": {
+ "CNAME": "Mac-Mondragon.github.io"
+ }
}
diff --git a/domains/mnhtng.json b/domains/mnhtng.json
new file mode 100644
index 000000000..8bc2dc9d2
--- /dev/null
+++ b/domains/mnhtng.json
@@ -0,0 +1,9 @@
+{
+ "description": "mnhtng.is-a.dev",
+ "owner": {
+ "username": "MnhTng"
+ },
+ "record": {
+ "URL": "https://mnhtng.github.io/Student-managerment"
+ }
+}
diff --git a/domains/moddatei.json b/domains/moddatei.json
new file mode 100644
index 000000000..d220ba65c
--- /dev/null
+++ b/domains/moddatei.json
@@ -0,0 +1,11 @@
+{
+ "description": "this is my profile / portfolio",
+ "repo": "https://github.com/moddatei/moddatei.github.io",
+ "owner": {
+ "username": "moddatei",
+ "email": "moddatei@proton.me"
+ },
+ "record": {
+ "CNAME": "moddatei.github.io"
+ }
+}
diff --git a/domains/moddy.json b/domains/moddy.json
new file mode 100644
index 000000000..a94d28e14
--- /dev/null
+++ b/domains/moddy.json
@@ -0,0 +1,12 @@
+{
+ "description": "🚀 This is the official site for Moddy, a Discord bot.",
+ "repo": "https://github.com/MilkTools/moddybot",
+ "owner": {
+ "username": "MilkTools",
+ "email": "milktuto@gmail.com",
+ "discord": "1031341585436266546"
+ },
+ "record": {
+ "CNAME": "milktools.github.io"
+ }
+}
diff --git a/domains/moein.json b/domains/moein.json
new file mode 100644
index 000000000..07238315f
--- /dev/null
+++ b/domains/moein.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "TrueMoein",
+ "email": "truemoein@gmail.com",
+ "discord": "truemoein"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/mohamadalzhori.json b/domains/mohamadalzhori.json
new file mode 100644
index 000000000..4ad1a2862
--- /dev/null
+++ b/domains/mohamadalzhori.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio for Mohamad Alzhori",
+ "owner": {
+ "username": "mohamadalzhori",
+ "email": "mohamadalzhori01@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohamadalzhori.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/mohamedbishr.json b/domains/mohamedbishr.json
new file mode 100644
index 000000000..34a06bd72
--- /dev/null
+++ b/domains/mohamedbishr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MohamedWaelBishr",
+ "email": "mohamedwaelbishr@gmail.com"
+ },
+ "record": {
+ "URL": "https://mohamed-bishr.vercel.app/"
+ }
+}
diff --git a/domains/mohamedhisham.json b/domains/mohamedhisham.json
new file mode 100644
index 000000000..b838093d6
--- /dev/null
+++ b/domains/mohamedhisham.json
@@ -0,0 +1,11 @@
+{
+ "description": "The personal website for Mohamed Hisham",
+ "repo": "https://github.com/MH0386/MH0386.github.io",
+ "owner": {
+ "username": "MH0386",
+ "email": "mohamed.hisham.abdelzaher@gmail.com"
+ },
+ "record": {
+ "CNAME": "mh0386.github.io"
+ }
+}
diff --git a/domains/mohammad.json b/domains/mohammad.json
new file mode 100644
index 000000000..1e51afabe
--- /dev/null
+++ b/domains/mohammad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "x7dl8p",
+ "email": "ahmad.khan200499@gmail.com"
+ },
+ "record": {
+ "CNAME": "d3vmohammad.netlify.app"
+ }
+}
diff --git a/domains/mohammedobaid.json b/domains/mohammedobaid.json
new file mode 100644
index 000000000..1849186cf
--- /dev/null
+++ b/domains/mohammedobaid.json
@@ -0,0 +1,10 @@
+{
+ "description": "My name is mohammed obaid. I am a software engineer",
+ "owner": {
+ "username": "mdobaid311",
+ "email": "mdobaid311@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohammedobaid.vercel.app"
+ }
+}
diff --git a/domains/mohammedwisam.json b/domains/mohammedwisam.json
new file mode 100644
index 000000000..fac907868
--- /dev/null
+++ b/domains/mohammedwisam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "redcodemohammed",
+ "email": "redcodemohammed@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohammed-wisam.pages.dev"
+ }
+}
diff --git a/domains/mohit-sundrani.json b/domains/mohit-sundrani.json
new file mode 100644
index 000000000..bb65ea17f
--- /dev/null
+++ b/domains/mohit-sundrani.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/mohit-sundrani/portfolio",
+ "owner": {
+ "username": "mohit-sundrani",
+ "email": "mohit4sundrani@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohit-sundrani.web.app"
+ }
+}
diff --git a/domains/mohit.json b/domains/mohit.json
new file mode 100644
index 000000000..9c307bf32
--- /dev/null
+++ b/domains/mohit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kumar-mohit-dev",
+ "email": "mohitgoswami.work@gmail.com"
+ },
+ "record": {
+ "CNAME": "kumar-mohit-dev.github.io"
+ }
+}
diff --git a/domains/mohsen.json b/domains/mohsen.json
new file mode 100644
index 000000000..3c797b92a
--- /dev/null
+++ b/domains/mohsen.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio website for mohsenansari.com",
+ "owner": {
+ "username": "mohsenari",
+ "email": "mansari387@gmail.com"
+ },
+ "record": {
+ "CNAME": "mohsenansari.com"
+ }
+}
diff --git a/domains/mokho.json b/domains/mokho.json
new file mode 100644
index 000000000..8043a0ca7
--- /dev/null
+++ b/domains/mokho.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ngompoweredbypoi",
+ "discord": "ngompoweredbypoi"
+ },
+ "record": {
+ "CNAME": "mokho.github.io"
+ }
+}
diff --git a/domains/moku.json b/domains/moku.json
new file mode 100644
index 000000000..5e4ed4558
--- /dev/null
+++ b/domains/moku.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio Website",
+ "repo": "https://github.com/Moku922/CSS_HTML-CV_Website",
+ "owner": {
+ "username": "Moku922",
+ "email": "abdulmoqtadir1@gmail.com"
+ },
+ "record": {
+ "CNAME": "moku922.github.io"
+ }
+}
diff --git a/domains/molai.json b/domains/molai.json
index bd1a902ee..84e668fbf 100644
--- a/domains/molai.json
+++ b/domains/molai.json
@@ -1,6 +1,5 @@
{
"description": "Mahir's Website",
- "repo": "https://github.com/mtgsquad",
"owner": {
"username": "mtgsquad",
"email": "mahir@molai.dev",
diff --git a/domains/molikai.json b/domains/molikai.json
new file mode 100644
index 000000000..619f7d57e
--- /dev/null
+++ b/domains/molikai.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "molikai-work",
+ "email": "wuxiaci@hotmail.com"
+ },
+ "record": {
+ "CNAME": "molikaiwork.pages.dev"
+ }
+}
diff --git a/domains/momoka.json b/domains/momoka.json
new file mode 100644
index 000000000..8b2e76241
--- /dev/null
+++ b/domains/momoka.json
@@ -0,0 +1,11 @@
+{
+ "description": "M0M0K4S4N.github.io",
+ "repo": "https://github.com/M0M0K4S4N/M0M0K4S4N.github.io",
+ "owner": {
+ "username": "M0M0K4S4N",
+ "email": "momokasan@proton.me"
+ },
+ "record": {
+ "CNAME": "m0m0k4s4n.github.io"
+ }
+}
diff --git a/domains/monosen.json b/domains/monosen.json
new file mode 100644
index 000000000..2c70a9fff
--- /dev/null
+++ b/domains/monosen.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Monosen",
+ "email": "edisonbj21@gmail.com",
+ "discord": "monosen"
+ },
+ "record": {
+ "CNAME": "minimalist-portfolio-zeta.vercel.app"
+ }
+}
diff --git a/domains/morzhstudio.json b/domains/morzhstudio.json
index 8196ce57e..d5c2b2cc3 100644
--- a/domains/morzhstudio.json
+++ b/domains/morzhstudio.json
@@ -5,6 +5,17 @@
"discord": "1261855255147057220"
},
"record": {
- "A": ["185.199.108.153"]
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ]
}
}
diff --git a/domains/mpy.json b/domains/mpy.json
index b51be78f2..653904d1b 100644
--- a/domains/mpy.json
+++ b/domains/mpy.json
@@ -1,6 +1,5 @@
{
"description": "Mike Perry Y Attara's personal website",
- "repo": "https://github.com/mikeattara",
"owner": {
"username": "mikeattara",
"email": "mpyebattara@gmail.com"
diff --git a/domains/mr-julus.json b/domains/mr-julus.json
index 7a5159704..ef0d33648 100644
--- a/domains/mr-julus.json
+++ b/domains/mr-julus.json
@@ -5,6 +5,6 @@
"email": "bougsoon.studio@gmail.com"
},
"record": {
- "CNAME": "mr-julus.web.app"
+ "CNAME": "mr-julus.vercel.app"
}
}
diff --git a/domains/mrasyadc.json b/domains/mrasyadc.json
new file mode 100644
index 000000000..f12e13018
--- /dev/null
+++ b/domains/mrasyadc.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Website",
+ "owner": {
+ "username": "mrasyadc",
+ "email": "mrasyadc@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrasyadc.github.io"
+ }
+}
diff --git a/domains/mrcat.json b/domains/mrcat.json
new file mode 100644
index 000000000..9572a8e51
--- /dev/null
+++ b/domains/mrcat.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "bipre2466",
+ "discord": "1137413640945934418",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Y8eHPjeSqnG2MUxTMFsvWlhMNNYDsxTheEB8ak8Kiyso-_aGMkwFG_tMPE_2ZBya20BjudXX_gRgAG7YmDuyOP-oBGGP6pms8em_hgNoWxW9SQCfufy4dQ_sMkLNGumobnemmUuzlpMB77EtoBxXiINvyAF_MgoS_G68_6arIRWphBTSAGEaU2Fl7nBYUiArQD4W0wiZwTrwl5PRB6orOSa-SA4bg7k6ZDtxVmYCX1l1k_8ggG9L7oauftJ7yjq58miTUIx02qeCuP_t_p30wHHUbk02yFpJFtnH14xiDRQUCeAh25CibruxR82sDvsTPdsOJDJ-v_cWaenXoxX3Fg.Wjo-oD356QVDbjpXuIdBNg.OPnI-kc3PmzXQR-VR3rYOmFF1Quv56CJnGm-FUMP7WXRK-HW040wF647Sm3hu5KD_mn0gHdOvnVfpwBkKHsWg_eUzJgMlnBCzkT81lIi540.LNJ_5YhJ9zA2Kx8mx27hdQ"
+ },
+ "record": {
+ "A": ["31.6.7.25"]
+ }
+}
diff --git a/domains/mrincer.json b/domains/mrincer.json
index feddafd67..3e4be87c9 100644
--- a/domains/mrincer.json
+++ b/domains/mrincer.json
@@ -1,10 +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
+ "owner": {
+ "username": "khincer",
+ "email": "kirk.incerg@gmail.com",
+ "discord": "kyllhua"
+ },
+ "record": {
+ "CNAME": "portfolio-ashy-ten-95.vercel.app"
+ }
+}
diff --git a/domains/mrkos.json b/domains/mrkos.json
index efbb3b648..11c5a8828 100644
--- a/domains/mrkos.json
+++ b/domains/mrkos.json
@@ -2,8 +2,7 @@
"description": "Personal Page",
"repo": "https://github.com/mrkOS1210/mrkos1210.github.io",
"owner": {
- "username": "mrkOS1210",
- "email": "72011329+mrkOS1210@users.noreply.github.com"
+ "username": "mrkOS1210"
},
"record": {
"CNAME": "mrkos1210.github.io"
diff --git a/domains/mrthundergod.json b/domains/mrthundergod.json
index 7cdc71b00..bf08f9957 100644
--- a/domains/mrthundergod.json
+++ b/domains/mrthundergod.json
@@ -1,6 +1,5 @@
{
"description": "The ThunderDome",
- "repo": "https://github.com/mrthundergod",
"owner": {
"username": "mrthundergod",
"email": "mrthundergod@gmail.com"
diff --git a/domains/mrtspeedy.json b/domains/mrtspeedy.json
new file mode 100644
index 000000000..31cf8f7eb
--- /dev/null
+++ b/domains/mrtspeedy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "mrtspeedy",
+ "email": "toxicspeedytv@gmail.com",
+ "discord": "1095502790534627348"
+ },
+ "record": {
+ "CNAME": "portfolio-mrtspeedy.vercel.app"
+ }
+}
diff --git a/domains/mu.json b/domains/mu.json
index 1e8929625..16719e3c4 100644
--- a/domains/mu.json
+++ b/domains/mu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "mohammadusman666",
- "email": "mohammadusman666@gmail.com"
- },
- "record": {
- "CNAME": "portfolio-1cw.pages.dev"
- }
+ "owner": {
+ "username": "mohammadusman666",
+ "email": "mohammadusman666@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-1cw.pages.dev"
+ }
}
diff --git a/domains/muaz.json b/domains/muaz.json
new file mode 100644
index 000000000..90d597bcd
--- /dev/null
+++ b/domains/muaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "muazsrc",
+ "email": "muazsrc17@gmail.com"
+ },
+ "record": {
+ "CNAME": "muaz-2te.pages.dev"
+ }
+}
diff --git a/domains/mubaidr.json b/domains/mubaidr.json
index 48c5f0d80..2f637b10b 100644
--- a/domains/mubaidr.json
+++ b/domains/mubaidr.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "mubaidr",
- "email": "mubaidr@gmail.com",
- "discord": ""
+ "email": "mubaidr@gmail.com"
},
"record": {
"CNAME": "mubaidr.js.org"
diff --git a/domains/mubarak.json b/domains/mubarak.json
new file mode 100644
index 000000000..d6e3161a8
--- /dev/null
+++ b/domains/mubarak.json
@@ -0,0 +1,10 @@
+{
+ "description": "link to Mubarak H. Alketbi Github profile",
+ "owner": {
+ "username": "MubarakHAlketbi",
+ "email": "mubarak.harran@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/MubarakHAlketbi/"
+ }
+}
diff --git a/domains/mudasir.json b/domains/mudasir.json
new file mode 100644
index 000000000..28beb19b5
--- /dev/null
+++ b/domains/mudasir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mirzamudassir",
+ "discord": "0xmudassir"
+ },
+ "record": {
+ "CNAME": "modasir.vercel.app"
+ }
+}
diff --git a/domains/muhammad-yusuf.json b/domains/muhammad-yusuf.json
new file mode 100644
index 000000000..0de161403
--- /dev/null
+++ b/domains/muhammad-yusuf.json
@@ -0,0 +1,11 @@
+{
+ "description": "Describe the use of this subdomain",
+ "repo": "https://github.com/mhmmd-ysf/mhmmd-ysf",
+ "owner": {
+ "username": "mhmmd-ysf",
+ "email": "muhammad_yusuf22@outlook.com"
+ },
+ "record": {
+ "URL": "https://mhmmd-ysf.github.io"
+ }
+}
diff --git a/domains/muhammadabdullah.json b/domains/muhammadabdullah.json
index 407a77bdc..98aa2cf6e 100644
--- a/domains/muhammadabdullah.json
+++ b/domains/muhammadabdullah.json
@@ -1,10 +1,9 @@
-{
- "owner": {
- "username": "Abdullah9715",
- "email": "muftimuhammadabdullah225@gmail.com"
- },
- "record": {
- "URL": "https://latest-porfolio-website.web.app"
- }
- }
-
+{
+ "owner": {
+ "username": "Abdullah9715",
+ "email": "muftimuhammadabdullah225@gmail.com"
+ },
+ "record": {
+ "URL": "https://latest-porfolio-website.web.app"
+ }
+}
diff --git a/domains/muhammed.json b/domains/muhammed.json
new file mode 100644
index 000000000..13d51c48e
--- /dev/null
+++ b/domains/muhammed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MhmdFais",
+ "email": "mofam534@gmail.com"
+ },
+ "record": {
+ "CNAME": "muhammeddev.vercel.app"
+ }
+}
diff --git a/domains/muheko.json b/domains/muheko.json
deleted file mode 100644
index b748bac89..000000000
--- a/domains/muheko.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "My Personal Landing Page!",
- "repo": "https://github.com/MuhekoNikolas/p3",
- "owner": {
- "username": "MuhekoNikolas",
- "email": "13nikolusmuheko@gmail.com",
- "twitter": "MuhekoNikolas"
- },
- "record": {
- "CNAME": "muhekonikolas.github.io"
- }
-}
diff --git a/domains/muiz.json b/domains/muiz.json
new file mode 100644
index 000000000..9a9b18548
--- /dev/null
+++ b/domains/muiz.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio",
+ "repo": "https://github.com/MuizU/muizu.github.io",
+ "owner": {
+ "username": "MuizU",
+ "email": "muizuvais99@gmail.com"
+ },
+ "record": {
+ "CNAME": "muizu.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/munir.json b/domains/munir.json
new file mode 100644
index 000000000..390398d3a
--- /dev/null
+++ b/domains/munir.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "munirsiddiqui54",
+ "email": "munir230204@gmail.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/muralikrishna.json b/domains/muralikrishna.json
new file mode 100644
index 000000000..b465ba19d
--- /dev/null
+++ b/domains/muralikrishna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "muralimallela",
+ "email": "mmallela9@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/muthomi.json b/domains/muthomi.json
index 4d05dcc6d..ff8e3bd4e 100644
--- a/domains/muthomi.json
+++ b/domains/muthomi.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "michaelmuthomi",
- "email": "",
- "discord": "michaelgikunda"
- },
- "record": {
- "CNAME": "michael-portfolio-green.vercel.app"
- }
+ "owner": {
+ "username": "michaelmuthomi",
+ "discord": "michaelgikunda"
+ },
+ "record": {
+ "CNAME": "michael-portfolio-green.vercel.app"
+ }
}
diff --git a/domains/mvl.json b/domains/mvl.json
new file mode 100644
index 000000000..e8980d191
--- /dev/null
+++ b/domains/mvl.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "medival",
+ "email": "dev.adipurnomo@gmail.com"
+ },
+ "record": {
+ "CNAME": "blog.mvl.biz.id"
+ }
+}
diff --git a/domains/mxritz.json b/domains/mxritz.json
index 26a02cac2..8def2b725 100644
--- a/domains/mxritz.json
+++ b/domains/mxritz.json
@@ -2,9 +2,9 @@
"description": "Personal Portfolio",
"owner": {
"username": "mxritzdev",
- "email": "contact@mxritz.dev"
+ "email": "mail@mxritz.dev"
},
"record": {
- "CNAME": "proxy.host.bytes.wtf"
+ "CNAME": "server.mxritz.dev"
}
}
diff --git a/domains/my5ter.json b/domains/my5ter.json
new file mode 100644
index 000000000..9ac03a862
--- /dev/null
+++ b/domains/my5ter.json
@@ -0,0 +1,12 @@
+{
+ "description": "Myster's website",
+ "repo": "https://github.com/MysterV/mysterv.github.io",
+ "owner": {
+ "username": "MysterV",
+ "email": "myster@ik.me",
+ "discord": "my5ter"
+ },
+ "record": {
+ "CNAME": "mysterv.github.io"
+ }
+}
diff --git a/domains/myominhan.json b/domains/myominhan.json
index d9fbd8a84..da474e422 100644
--- a/domains/myominhan.json
+++ b/domains/myominhan.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "mmhann18491",
- "email": "myominhan18491@gmail.com"
- },
- "record": {
- "CNAME": "my-portfolio-site-2d30a.web.app"
- }
+ "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
index eac14a170..c989f485a 100644
--- a/domains/myprofile.json
+++ b/domains/myprofile.json
@@ -1,11 +1,11 @@
{
- "description": "tuan.myprofile.dev",
- "owner": {
- "username": "tuannguyen2002",
- "email": "coixaygio107@gmail.com",
- "discord": "minhtuan9039"
- },
- "record": {
- "CNAME": "cname.vercel-dns.com"
- }
+ "description": "tuan.myprofile.dev",
+ "owner": {
+ "username": "tuannguyen2002",
+ "email": "coixaygio107@gmail.com",
+ "discord": "minhtuan9039"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
}
diff --git a/domains/myster.json b/domains/myster.json
new file mode 100644
index 000000000..9ac03a862
--- /dev/null
+++ b/domains/myster.json
@@ -0,0 +1,12 @@
+{
+ "description": "Myster's website",
+ "repo": "https://github.com/MysterV/mysterv.github.io",
+ "owner": {
+ "username": "MysterV",
+ "email": "myster@ik.me",
+ "discord": "my5ter"
+ },
+ "record": {
+ "CNAME": "mysterv.github.io"
+ }
+}
diff --git a/domains/mythsman.json b/domains/mythsman.json
index 6ba26aaef..e4789ad9e 100644
--- a/domains/mythsman.json
+++ b/domains/mythsman.json
@@ -1,6 +1,5 @@
{
"description": "Mythsman's personal site",
- "repo": "https://github.com/mythsman",
"owner": {
"username": "mythsman",
"email": "mythsman@foxmail.com"
diff --git a/domains/mzaman.json b/domains/mzaman.json
index d38ee56b5..b581c1439 100644
--- a/domains/mzaman.json
+++ b/domains/mzaman.json
@@ -1,9 +1,9 @@
-{
- "owner": {
- "username": "mirzazaman",
- "email": "mirzazaman828@gmail.com"
- },
- "record": {
- "CNAME": "zaman-portfolio.vercel.app"
- }
-}
\ No newline at end of file
+{
+ "owner": {
+ "username": "mirzazaman",
+ "email": "mirzazaman828@gmail.com"
+ },
+ "record": {
+ "CNAME": "zaman-portfolio.vercel.app"
+ }
+}
diff --git a/domains/mzunino.json b/domains/mzunino.json
new file mode 100644
index 000000000..440dabca3
--- /dev/null
+++ b/domains/mzunino.json
@@ -0,0 +1,11 @@
+{
+ "description": "Mariano Zunino's personal portfolio site",
+ "repo": "https://github.com/marianozunino/portfolio",
+ "owner": {
+ "username": "marianozunino",
+ "email": "marianoz@posteo.net"
+ },
+ "record": {
+ "CNAME": "mzunino.com.uy"
+ }
+}
diff --git a/domains/n0kemm.json b/domains/n0kemm.json
new file mode 100644
index 000000000..473a22621
--- /dev/null
+++ b/domains/n0kemm.json
@@ -0,0 +1,10 @@
+{
+ "owner":{
+ "username": "Chaetard",
+ "email": "jesus.santos4160@alumnos.udg.mx"
+ },
+ "record":{
+ "CNAME": "n0kemm.netlify.app"
+ }
+
+}
diff --git a/domains/n3m.json b/domains/n3m.json
new file mode 100644
index 000000000..20290f62b
--- /dev/null
+++ b/domains/n3m.json
@@ -0,0 +1,9 @@
+{
+ "description": "Domain that redirects to my personal portfolio",
+ "owner": {
+ "username": "n3m"
+ },
+ "record": {
+ "URL": "https://n3m.me"
+ }
+}
diff --git a/domains/n3rdc4ptn.json b/domains/n3rdc4ptn.json
new file mode 100644
index 000000000..1918ffd4b
--- /dev/null
+++ b/domains/n3rdc4ptn.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website for n3rdc4ptn",
+ "owner": {
+ "username": "n3rdc4ptn"
+ },
+ "record": {
+ "CNAME": "moritzreich.dev"
+ },
+ "proxied": true
+}
diff --git a/domains/n4n5.json b/domains/n4n5.json
index e4331b8c4..890d9fe69 100644
--- a/domains/n4n5.json
+++ b/domains/n4n5.json
@@ -1,6 +1,5 @@
{
"description": "redirects to my website",
- "repo": "https://github.com/Its-Just-Nans",
"owner": {
"username": "Its-Just-Nans"
},
diff --git a/domains/nabeel.json b/domains/nabeel.json
new file mode 100644
index 000000000..e0fedc4d2
--- /dev/null
+++ b/domains/nabeel.json
@@ -0,0 +1,12 @@
+{
+ "repo": "https://nabeel.molham.me/links/github",
+ "owner": {
+ "username": "N-Molham",
+ "email": "nmolham@duck.com",
+ "twitter": "https://nabeel.molham.me/links/twitter",
+ "links": "https://nabeel.molham.me/links/"
+ },
+ "record": {
+ "CNAME": "nabeel.molham.me"
+ }
+}
diff --git a/domains/nabil.json b/domains/nabil.json
new file mode 100644
index 000000000..55dd2edb4
--- /dev/null
+++ b/domains/nabil.json
@@ -0,0 +1,11 @@
+{
+ "description": "Rahat Morshed Nabil - Portfolio",
+ "repo": "https://github.com/imrmnabil/profile",
+ "owner": {
+ "username": "imrmnabil",
+ "email": "imrmnabil@gmail.com"
+ },
+ "record": {
+ "CNAME": "imrmnabil.github.io"
+ }
+}
diff --git a/domains/nabin.json b/domains/nabin.json
new file mode 100644
index 000000000..521057d79
--- /dev/null
+++ b/domains/nabin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nabinkatwal7",
+ "email": "mediocampistaa@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-v3-six-iota.vercel.app"
+ }
+}
diff --git a/domains/nadeerasilva.json b/domains/nadeerasilva.json
new file mode 100644
index 000000000..5e9d4118b
--- /dev/null
+++ b/domains/nadeerasilva.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal portfolio",
+ "repo": "https://github.com/NadeeraSilvaa/nadeerasilvaa.github.io",
+ "owner": {
+ "username": "nadeerasilvaa",
+ "email": "nadeerasilva01@gmail.com"
+ },
+ "record": {
+ "CNAME": "nadeerasilvaa.github.io"
+ }
+}
diff --git a/domains/nai.json b/domains/nai.json
index daf551898..145e7b51d 100644
--- a/domains/nai.json
+++ b/domains/nai.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NailethR",
- "email": "nait.0005@gmail.com"
- },
- "record": {
- "CNAME": "nailethr.github.io"
- }
+ "owner": {
+ "username": "NailethR",
+ "email": "nait.0005@gmail.com"
+ },
+ "record": {
+ "CNAME": "nailethr.github.io"
+ }
}
diff --git a/domains/naimur.json b/domains/naimur.json
new file mode 100644
index 000000000..836f3d9ab
--- /dev/null
+++ b/domains/naimur.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mohammad-naimur-rahman",
+ "discord": "829283275846975488"
+ },
+ "record": {
+ "CNAME": "naimurdev.vercel.app"
+ }
+}
diff --git a/domains/nakim.json b/domains/nakim.json
new file mode 100644
index 000000000..17c68f290
--- /dev/null
+++ b/domains/nakim.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/xaviermawet",
+ "owner": {
+ "username": "xaviermawet",
+ "email": "xavier@nakim.be"
+ },
+ "record": {
+ "CNAME": "nakim.be"
+ }
+}
diff --git a/domains/namansethi.json b/domains/namansethi.json
new file mode 100644
index 000000000..3c890d681
--- /dev/null
+++ b/domains/namansethi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "namansethi13",
+ "email": "heynamansethi@gmail.com"
+ },
+ "record": {
+ "CNAME": "namansethi.vercel.app"
+ }
+}
diff --git a/domains/namansrivastava.json b/domains/namansrivastava.json
index 2a10e2029..7dc75b59c 100644
--- a/domains/namansrivastava.json
+++ b/domains/namansrivastava.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "naman-0804",
- "email": "namansrivastava1608@gmail.com",
- "discord": "naman_1101"
- },
- "record": {
- "CNAME": "naman08portfolio.vercel.app"
- }
+ "owner": {
+ "username": "naman-0804",
+ "email": "namansrivastava1608@gmail.com",
+ "discord": "naman_1101"
+ },
+ "record": {
+ "CNAME": "naman08portfolio.vercel.app"
+ }
}
diff --git a/domains/namht.json b/domains/namht.json
new file mode 100644
index 000000000..9d83a8bac
--- /dev/null
+++ b/domains/namht.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lagux-coding",
+ "email": "nguyenhientrungnam@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/narasima.json b/domains/narasima.json
index 179c581b3..7569b796f 100644
--- a/domains/narasima.json
+++ b/domains/narasima.json
@@ -1,23 +1,12 @@
- {
+{
"owner": {
"username": "NarasimaPandiyan",
"email": "cs42059@gmail.com",
"discord": "gamingdoodle"
},
"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"
- ]
+ "A": ["75.2.60.5"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
}
}
-
diff --git a/domains/narendradwivedi.json b/domains/narendradwivedi.json
new file mode 100644
index 000000000..356b74dd3
--- /dev/null
+++ b/domains/narendradwivedi.json
@@ -0,0 +1,10 @@
+{
+ "description": "narendradwivedi.is-a.dev for portfolio and projects",
+ "owner": {
+ "username": "NarendraDwivedi",
+ "discord": "narendradwivedi"
+ },
+ "record": {
+ "CNAME": "narendradwivedi.github.io"
+ }
+}
diff --git a/domains/nashnc.json b/domains/nashnc.json
new file mode 100644
index 000000000..aa3277cba
--- /dev/null
+++ b/domains/nashnc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nashnc",
+ "email": "nash.nc@gmail.com"
+ },
+ "record": {
+ "CNAME": "nashnc.github.io"
+ }
+}
diff --git a/domains/natan.json b/domains/natan.json
index 627639857..74d43bd85 100644
--- a/domains/natan.json
+++ b/domains/natan.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NatanKonig",
- "email": "natan.camargo8@gmail.com"
- },
- "record": {
- "A": ["144.22.137.5"]
- }
+ "owner": {
+ "username": "NatanKonig",
+ "email": "natan.camargo8@gmail.com"
+ },
+ "record": {
+ "A": ["144.22.137.5"]
+ }
}
diff --git a/domains/nathan.json b/domains/nathan.json
index 86bb6d99d..074669a7f 100644
--- a/domains/nathan.json
+++ b/domains/nathan.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/MagedNuggets/MagedNuggets.github.io",
+ "repo": "https://github.com/nduartech/nduartech.github.io",
"owner": {
- "username": "MagedNuggets",
- "email": "mastertofu12345@gmail.com"
+ "username": "nduartech",
+ "email": "nduartech101@gmail.com"
},
"record": {
- "CNAME": "magednuggets.github.io"
+ "CNAME": "nduartech.github.io"
}
}
diff --git a/domains/nathanospino.json b/domains/nathanospino.json
new file mode 100644
index 000000000..27f28e6c4
--- /dev/null
+++ b/domains/nathanospino.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "C4lumny",
+ "email": "ospinonathan@gmail.com"
+ },
+ "record": {
+ "CNAME": "nathanospino.vercel.app"
+ }
+}
diff --git a/domains/naveen-kumar-reddy-murthi.json b/domains/naveen-kumar-reddy-murthi.json
new file mode 100644
index 000000000..a621eaa87
--- /dev/null
+++ b/domains/naveen-kumar-reddy-murthi.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal portfolio website",
+ "owner": {
+ "username": "Naveen-Kumar-Reddy-Murthi",
+ "email": "mnreddy.nv@gmail.com"
+ },
+ "record": {
+ "CNAME": "naveen-dev.netlify.app"
+ },
+ "proxied": true
+ }
diff --git a/domains/naveenxd.json b/domains/naveenxd.json
index 3d986bfa2..249cef31e 100644
--- a/domains/naveenxd.json
+++ b/domains/naveenxd.json
@@ -1,6 +1,5 @@
{
"description": "naveenxd.is-a.dev",
- "repo": "https://github.com/Naveen-X",
"owner": {
"username": "Naveen-X",
"email": "naveen@ourclg.tech"
diff --git a/domains/naviheylisten.json b/domains/naviheylisten.json
new file mode 100644
index 000000000..fd86a31d0
--- /dev/null
+++ b/domains/naviheylisten.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain used for the backend of my blog",
+ "owner": {
+ "username": "HeyListenNavi",
+ "email": "heylistennavi@proton.me",
+ "discord": "naviheylisten"
+ },
+ "record": {
+ "NS": ["gloria.ns.cloudflare.com", "mustafa.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/navistar.json b/domains/navistar.json
index acf6185df..9822afab7 100644
--- a/domains/navistar.json
+++ b/domains/navistar.json
@@ -3,7 +3,6 @@
"username": "AShuba",
"email": "anatoliy.shuba@gmail.com"
},
-
"record": {
"A": ["138.68.159.126"]
}
diff --git a/domains/navistar2.json b/domains/navistar2.json
new file mode 100644
index 000000000..f22a6eb7b
--- /dev/null
+++ b/domains/navistar2.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AShuba",
+ "email": "anatoliy.shuba@gmail.com"
+ },
+ "record": {
+ "A": ["52.73.119.251"]
+ }
+}
diff --git a/domains/nayan.json b/domains/nayan.json
index ab18853e8..4feaf4751 100644
--- a/domains/nayan.json
+++ b/domains/nayan.json
@@ -1,6 +1,5 @@
{
"description": "A personal website, for Nayan Patel.",
- "repo": "https://github.com/pateln123",
"owner": {
"username": "pateln123",
"email": "hello@nayanpatel.net"
diff --git a/domains/nayandas.json b/domains/nayandas.json
new file mode 100644
index 000000000..fb59cdda1
--- /dev/null
+++ b/domains/nayandas.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal blog for Nayan Das (NayanJD)",
+ "repo": "https://github.com/NayanJD/nayanjd.github.io",
+ "owner": {
+ "username": "NayanJD",
+ "email": "dastms@gmail.com"
+ },
+ "record": {
+ "CNAME": "nayanjd.github.io"
+ }
+}
diff --git a/domains/nayu.json b/domains/nayu.json
index c222bbc86..ddec2fbb4 100644
--- a/domains/nayu.json
+++ b/domains/nayu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "nayumin",
- "email": "nayumi@duck.com"
- },
- "record": {
- "CNAME": "web-dgj.pages.dev"
- }
+ "owner": {
+ "username": "nayumin",
+ "email": "nayumi@duck.com"
+ },
+ "record": {
+ "CNAME": "web-dgj.pages.dev"
+ }
}
diff --git a/domains/nd24.json b/domains/nd24.json
new file mode 100644
index 000000000..d7c106601
--- /dev/null
+++ b/domains/nd24.json
@@ -0,0 +1,11 @@
+{
+ "description": "natedog2424's portfolio website",
+ "repo": "https://github.com/natedog2424/natedog2424.github.io",
+ "owner": {
+ "username": "natedog2424",
+ "email": "natedog2424mail@gmail.com"
+ },
+ "record": {
+ "CNAME": "natedog2424.github.io"
+ }
+}
diff --git a/domains/neel.json b/domains/neel.json
new file mode 100644
index 000000000..07d8db61e
--- /dev/null
+++ b/domains/neel.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio Website of Neel Mishra",
+ "repo": "https://github.com/Neel-07/my_portfolio",
+ "owner": {
+ "username": "neelmishra",
+ "email": "neelmishra9125@gmail.com"
+ },
+ "record": {
+ "CNAME": "neelmishra.vercel.app"
+ }
+}
diff --git a/domains/nef.json b/domains/nef.json
index 5b355907d..945e4682a 100644
--- a/domains/nef.json
+++ b/domains/nef.json
@@ -1,11 +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"]
- }
+ "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
index 50234a6e6..70447f53e 100644
--- a/domains/neil.json
+++ b/domains/neil.json
@@ -6,4 +6,4 @@
"record": {
"CNAME": "nxl22.github.io"
}
-}
\ No newline at end of file
+}
diff --git a/domains/nek0zyx.json b/domains/nek0zyx.json
new file mode 100644
index 000000000..6bec550e3
--- /dev/null
+++ b/domains/nek0zyx.json
@@ -0,0 +1,11 @@
+{
+ "description": "Serving my website fr fr",
+ "repo": "https://github.com/nek0zyx/nek0zyx.github.io",
+ "owner": {
+ "username": "nek0zyx",
+ "email": "nek0zyx@costmiku.space"
+ },
+ "record": {
+ "CNAME": "nek0zyx.github.io"
+ }
+}
diff --git a/domains/nekomyaa.json b/domains/nekomyaa.json
new file mode 100644
index 000000000..f70a2436a
--- /dev/null
+++ b/domains/nekomyaa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lolinekord",
+ "email": "contact@lolineko3.net"
+ },
+ "record": {
+ "URL": "https://github.com/lolinekord"
+ }
+}
diff --git a/domains/nemoralis.json b/domains/nemoralis.json
new file mode 100644
index 000000000..3ca3f0511
--- /dev/null
+++ b/domains/nemoralis.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nemoralis",
+ "email": "nerim4n@pm.me"
+ },
+ "record": {
+ "CNAME": "neriman-me.pages.dev"
+ }
+}
diff --git a/domains/nestornahuel.json b/domains/nestornahuel.json
new file mode 100644
index 000000000..2394f21e7
--- /dev/null
+++ b/domains/nestornahuel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NestorNahuel",
+ "email": "nahuel6195@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-steel-seven-72.vercel.app"
+ }
+}
diff --git a/domains/newpk.json b/domains/newpk.json
index 2371d4f36..c4e09a350 100644
--- a/domains/newpk.json
+++ b/domains/newpk.json
@@ -4,6 +4,6 @@
"email": "pakorn.soikham@gmail.com"
},
"record": {
- "CNAME": "newpkorn.github.io"
+ "CNAME": "newpk.netlify.app"
}
}
diff --git a/domains/newtun-code-cheat-sheet.json b/domains/newtun-code-cheat-sheet.json
new file mode 100644
index 000000000..8ccbd1102
--- /dev/null
+++ b/domains/newtun-code-cheat-sheet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VinhTin-AQUA",
+ "email": "tinhovinh@gmail.com"
+ },
+ "record": {
+ "CNAME": "code-cheat-sheet.vercel.app"
+ }
+}
diff --git a/domains/newtun.json b/domains/newtun.json
new file mode 100644
index 000000000..ca850627c
--- /dev/null
+++ b/domains/newtun.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VinhTin-AQUA",
+ "email": "tinhovinh@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-nine-cyan-53.vercel.app"
+ }
+}
diff --git a/domains/ngockhuong.json b/domains/ngockhuong.json
new file mode 100644
index 000000000..0296c9863
--- /dev/null
+++ b/domains/ngockhuong.json
@@ -0,0 +1,20 @@
+{
+ "description": "ngockhuong.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "lamngockhuong",
+ "email": "me@ngockhuong.com"
+ },
+ "record": {
+ "URL": "https://dev.ngockhuong.com"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/lamngockhuong",
+ "/x": "https://x.com/lamngockhuong",
+ "/fb": "https://facebook.com/lamngockhuong",
+ "/linkedin": "https://linkedin.com/in/lamngockhuong",
+ "/viblo": "https://viblo.asia/u/lamngockhuong"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/ngocphung.json b/domains/ngocphung.json
new file mode 100644
index 000000000..78ab8e9b0
--- /dev/null
+++ b/domains/ngocphung.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "nguyenngocphung2000"
+ },
+ "record": {
+ "CNAME": "nguyenngocphung2000.github.io"
+ }
+}
diff --git a/domains/ngompoweredbypoi.json b/domains/ngompoweredbypoi.json
new file mode 100644
index 000000000..908ce0606
--- /dev/null
+++ b/domains/ngompoweredbypoi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ngompoweredbypoi",
+ "discord": "ngompoweredbypoi"
+ },
+ "record": {
+ "CNAME": "ngompoweredbypoi.github.io"
+ }
+}
diff --git a/domains/ngoutam.json b/domains/ngoutam.json
new file mode 100644
index 000000000..1d3fc7144
--- /dev/null
+++ b/domains/ngoutam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Goutam-04",
+ "email": "goutamnayak2804+github1@gmail.com"
+ },
+ "record": {
+ "CNAME": "goutam-porfolio.vercel.app"
+ }
+}
diff --git a/domains/ngqkhai.json b/domains/ngqkhai.json
index a50fbc1d1..d10806c80 100644
--- a/domains/ngqkhai.json
+++ b/domains/ngqkhai.json
@@ -1,6 +1,5 @@
{
"description": "Documentation website for is-a.dev",
- "repo": "",
"owner": {
"username": "ngqkhai",
"email": "nguyenquangkhai2509@gmail.com"
diff --git a/domains/nguyen-phuong-nam.json b/domains/nguyen-phuong-nam.json
new file mode 100644
index 000000000..72dfdb1ad
--- /dev/null
+++ b/domains/nguyen-phuong-nam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NBlue",
+ "email": "nam.np194336@gmail.com"
+ },
+ "record": {
+ "CNAME": "protofilo-beta.vercel.app"
+ }
+}
diff --git a/domains/nguyenkimduy.json b/domains/nguyenkimduy.json
new file mode 100644
index 000000000..7d31658a7
--- /dev/null
+++ b/domains/nguyenkimduy.json
@@ -0,0 +1,20 @@
+{
+ "description": "nguyenkimduy.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "nguyenkimduy180697",
+ "email": "nguyenkimduy180697@gmail.com"
+ },
+ "record": {
+ "URL": "https://nguyenkimduy.com/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/nguyenkimduy180697",
+ "/fb": "https://facebook.com/nguyenkimduy180697",
+ "/instagram": "https://instagram.com/nguyenkimduy180697/",
+ "/linkedin": "https://linkedin.com/in/nguyenkimduy180697",
+ "/viblo": "https://viblo.asia/u/nguyenkimduy180697"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/nguyenminhtuan.json b/domains/nguyenminhtuan.json
index f6d72d0e3..3de80e85f 100644
--- a/domains/nguyenminhtuan.json
+++ b/domains/nguyenminhtuan.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "tuannguyen2002",
- "email": "",
- "discord": "minhtuan9039"
- },
- "record": {
- "CNAME": "profile-sigma-wine.vercel.app"
- }
+ "owner": {
+ "username": "tuannguyen2002",
+ "discord": "minhtuan9039"
+ },
+ "record": {
+ "CNAME": "profile-sigma-wine.vercel.app"
+ }
}
diff --git a/domains/nhavy.json b/domains/nhavy.json
new file mode 100644
index 000000000..623bce009
--- /dev/null
+++ b/domains/nhavy.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "VzTong"
+ },
+ "record": {
+ "CNAME": "vztong.github.io"
+ }
+}
diff --git a/domains/nhim411.json b/domains/nhim411.json
new file mode 100644
index 000000000..c2daaa8e9
--- /dev/null
+++ b/domains/nhim411.json
@@ -0,0 +1,11 @@
+{
+ "description": "Le Hoai Nam's website",
+ "repo": "https://github.com/nhim411/nhim411.github.io",
+ "owner": {
+ "username": "nhim411",
+ "email": "lehoainam1998@gmail.com"
+ },
+ "record": {
+ "CNAME": "nhim411.github.io"
+ }
+}
diff --git a/domains/nick.json b/domains/nick.json
new file mode 100644
index 000000000..fa3fd15f3
--- /dev/null
+++ b/domains/nick.json
@@ -0,0 +1,11 @@
+{
+ "description": "nick.is-a.dev -> nicholasalfonso.com",
+ "owner": {
+ "username": "PrinceBunBun981",
+ "email": "me@nick.cool",
+ "discord": "nickwoah"
+ },
+ "record": {
+ "URL": "https://nicholasalfonso.com"
+ }
+}
diff --git a/domains/nickibreeki.json b/domains/nickibreeki.json
new file mode 100644
index 000000000..abc2b0673
--- /dev/null
+++ b/domains/nickibreeki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "n1ckibreeki",
+ "email": "nickibreeki@outlook.com"
+ },
+ "record": {
+ "CNAME": "nickibreeki.pages.dev"
+ }
+}
diff --git a/domains/niclqs.json b/domains/niclqs.json
index 5aa8d348b..e9f983367 100644
--- a/domains/niclqs.json
+++ b/domains/niclqs.json
@@ -3,7 +3,6 @@
"record": {
"URL": "https://niclqs.dev"
},
- "repo": "https://github.com/niclqsger",
"owner": {
"discord": "niclqs",
"email": "discord@push-den-weg.de",
diff --git a/domains/nicojsuarez.json b/domains/nicojsuarez.json
index 75acb28f2..d39a77225 100644
--- a/domains/nicojsuarez.json
+++ b/domains/nicojsuarez.json
@@ -1,11 +1,11 @@
{
- "description": "Personal use",
- "repo": "https://github.com/NicoJSuarez2/PersonalPage",
- "owner": {
- "username": "nicojsuarez2",
- "email": "javinsurez@gmail.com"
- },
- "record": {
- "CNAME": "Nicojsuarez2.github.io"
- }
+ "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/nicolas.json b/domains/nicolas.json
new file mode 100644
index 000000000..eea2d4406
--- /dev/null
+++ b/domains/nicolas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "niicojs",
+ "discord": ".niico."
+ },
+ "record": {
+ "CNAME": "home-is-a-dev.vercel.app"
+ }
+}
diff --git a/domains/nicollas.json b/domains/nicollas.json
new file mode 100644
index 000000000..92d23ea20
--- /dev/null
+++ b/domains/nicollas.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "nicollaspetrelli",
+ "discord": "233677267975274496",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Io00BIEcuUaqGqro44tjhxyH2m685YaHnSqyGCNRBTjSndObd2P4HmNoX93X1Qatl7c6ygPxkfUfvvUJZ4igK6WxgxsSa9_hRh61r6AbXKDY1DFmm-0ZjHsNNEQOOoY4NtwT-zVocwhCINVQH6CQCqSkxI1sEikVdzbFCCSVXp35olvH8kRnGRDjLogKqWWhQnSgYI0EeE89ykBNtiW_R5LRogA5nFJW4lQy2DMv-37peuGu1pu-BAsm6iJwFE0OogY01bWwsIhapGjlgQbtY4vJhEOJr4CItQFUKux2VojlrMlfDefkOCZs5v2gjnTeZ6HC9x7RdQBtKUImQYV4Eg.XhW29WnPlnUCIzIUXyRDxg.29_Y-46C5Jl0hT9eq91j3WN2iKmBcKhqXeCtL4BemP72AxqnPAsHR-BM904hTIu80a5-vC30yZ1jxMI6rx9F1KyZHRgZasky140KJ0jTcTPuGmLmMT7szVlfgZ8G1S1YY0DfvFm_QIu-Rld6x5Yl8g.xxUgPNDRzytPy7i36K08gQ"
+ },
+ "record": {
+ "CNAME": "nicollas.dev"
+ }
+}
diff --git a/domains/nietbeer.json b/domains/nietbeer.json
index 5c44a6b42..de3f3b784 100644
--- a/domains/nietbeer.json
+++ b/domains/nietbeer.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "VulcanoSoftware",
- "discord": "814891541205876767",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NZN_bOggifZEtlA324wg2l2u3hX2MvZuD3yLHULkNX81YRQfOCtvT0IfoXAKV5IMD8GRt8qFAo2Rpw2lOvrTrvlEmjPkO_u0n5ScCZVU6FsXENlBz4zD5hHAes_kd1LCzFOICbmNdLNqWEoMEiNUw6VZiUfuIuqrJXIRXkSFXWQGWYUc_wbzu1oEdKLwNt0IvY4DyQ9pWvCSnsQlhXb7lUJS6iC-VUBoAqZnTuScHpwx5xHXHhFdJu2iiBU8zmroAQTxJ28-DLTuBmIRMQgS-FfZK0i7UQHnZb2f3CdWzi2lmlBQM-NCf8yOzziPAoS8cF1Eh4eQLKerBWlHyCSiyg.r37yi_KvhV0NTbXtet_DHw.PTf0jwkhBjRrEF8mdrsrhSetzO6jeM9XX50rJgv5brt3XwRbYWWaOlZjaLWTBNOuGGlCplqBngPJkB3ycZNUpay8NXKTGwdaSNgQRmi_-O_HbETajYI_zPsfLtjW-DEC.jHnPtvN5bcAswFISD9YBeg"
- },
-
- "record": {
- "CNAME": "nietbeer.pages.dev"
- }
- }
-
\ No newline at end of file
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NZN_bOggifZEtlA324wg2l2u3hX2MvZuD3yLHULkNX81YRQfOCtvT0IfoXAKV5IMD8GRt8qFAo2Rpw2lOvrTrvlEmjPkO_u0n5ScCZVU6FsXENlBz4zD5hHAes_kd1LCzFOICbmNdLNqWEoMEiNUw6VZiUfuIuqrJXIRXkSFXWQGWYUc_wbzu1oEdKLwNt0IvY4DyQ9pWvCSnsQlhXb7lUJS6iC-VUBoAqZnTuScHpwx5xHXHhFdJu2iiBU8zmroAQTxJ28-DLTuBmIRMQgS-FfZK0i7UQHnZb2f3CdWzi2lmlBQM-NCf8yOzziPAoS8cF1Eh4eQLKerBWlHyCSiyg.r37yi_KvhV0NTbXtet_DHw.PTf0jwkhBjRrEF8mdrsrhSetzO6jeM9XX50rJgv5brt3XwRbYWWaOlZjaLWTBNOuGGlCplqBngPJkB3ycZNUpay8NXKTGwdaSNgQRmi_-O_HbETajYI_zPsfLtjW-DEC.jHnPtvN5bcAswFISD9YBeg"
+ },
+ "record": {
+ "CNAME": "nietbeer.pages.dev"
+ }
+}
diff --git a/domains/nifle.json b/domains/nifle.json
index ad944bd8c..fa016c2f0 100644
--- a/domains/nifle.json
+++ b/domains/nifle.json
@@ -1,11 +1,9 @@
{
"owner": {
"username": "Nifle-CGE",
- "email": "",
"discord": "553939229475078154",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRTs07oBPtm7QihIkDqo1f3eBQwtYmpzZZYebo3UsxrJ9gpmPnY42WdO-H0r8XRAwYiwzZjZ8GnmRrG2xwz_8dw49VD0UvvWyJKTR7SSN1XxznSkbGJ3wthb384seNE_Fhg-E6Q6qV9vW8B1U6GD39blKsURHcgpTrSa-qopwXDeFctAo-RcxbmFwr-Mw0Cwr9ia3L1wnqvOSjQbU0a92oVv6293QbSvqgupXkS1ttXoBR9rpDPp8tH9oIXbCK4AhVTKowgIYAYh2iZT41nlkFKeus10yRKw5GqyokBXBdA70qKnU3lCd9VFZ4Eq4DxbSoMNBqk8FADig2MtA5RBFg.CqfMnrP60ibdRwfM4yUB8A.HZl3zu19tbnEz2j4hlejxUJfoEkCk0qsLeHlqLzc1-qXAnH1984_R8joN9l3WWA0Jgr13m8qr-GQsAEcjjdiog.vUXuNT3B9rjoE606ZfrRRA"
},
-
"record": {
"A": ["172.234.178.155"]
}
diff --git a/domains/nihalkrishna.json b/domains/nihalkrishna.json
new file mode 100644
index 000000000..cbe2b895b
--- /dev/null
+++ b/domains/nihalkrishna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nkverified",
+ "email": "nkverifiedyt@gmail.com"
+ },
+ "record": {
+ "CNAME": "nkverified.github.io"
+ }
+}
diff --git a/domains/nikhilji.json b/domains/nikhilji.json
new file mode 100644
index 000000000..5b91aedf0
--- /dev/null
+++ b/domains/nikhilji.json
@@ -0,0 +1,11 @@
+{
+ "description": "Nikhil Ji ki Website",
+ "repo": "https://github.com/cityji/cityji.github.io",
+ "owner": {
+ "username": "cityji",
+ "email": "mail.tiwarinikhil+domainIsADev@googlemail.com"
+ },
+ "record": {
+ "CNAME": "cityji.github.io"
+ }
+}
diff --git a/domains/nikity.json b/domains/nikity.json
new file mode 100644
index 000000000..4cfaf02c1
--- /dev/null
+++ b/domains/nikity.json
@@ -0,0 +1,10 @@
+{
+ "description": "Subdomain woohoo",
+ "owner": {
+ "username": "Nikityyy",
+ "email": "bergernikita1807@gmail.com"
+ },
+ "record": {
+ "CNAME": "nikityyy.github.io"
+ }
+}
diff --git a/domains/nipuni.json b/domains/nipuni.json
new file mode 100644
index 000000000..6e72a2979
--- /dev/null
+++ b/domains/nipuni.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nipunigamage",
+ "email": "nipunikanishka255@gmail.com"
+ },
+ "record": {
+ "CNAME": "nipuni.pages.dev"
+ }
+}
diff --git a/domains/nitesh.json b/domains/nitesh.json
index 99d5d9035..742820f23 100644
--- a/domains/nitesh.json
+++ b/domains/nitesh.json
@@ -1,6 +1,5 @@
{
"description": "My personal portfolio site",
- "repo": "https://github.com/Niteshballa",
"owner": {
"username": "Niteshballa",
"email": "nithesh.mom@gmail.com"
diff --git a/domains/nithinramkalava.json b/domains/nithinramkalava.json
new file mode 100644
index 000000000..5f23c0bed
--- /dev/null
+++ b/domains/nithinramkalava.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nithinramkalava",
+ "email": "nithinramkalava@gmail.com"
+ },
+ "record": {
+ "CNAME": "nithinramkalava.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/nitink.json b/domains/nitink.json
new file mode 100644
index 000000000..c5ca1c553
--- /dev/null
+++ b/domains/nitink.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NitinKosuru",
+ "email": "nitinkosuru@vk.com"
+ },
+ "record": {
+ "CNAME": "nitink.pages.dev"
+ }
+}
diff --git a/domains/nlog0312.json b/domains/nlog0312.json
new file mode 100644
index 000000000..2d8ce48c1
--- /dev/null
+++ b/domains/nlog0312.json
@@ -0,0 +1,11 @@
+{
+ "description": "Profile card",
+ "repo": "https://github.com/nLog0312/nlog0312.github.io",
+ "owner": {
+ "username": "nLog0312",
+ "email": "nlog.021203@gmail.com"
+ },
+ "record": {
+ "CNAME": "nlog0312.github.io"
+ }
+}
diff --git a/domains/nnocsupnn.json b/domains/nnocsupnn.json
new file mode 100644
index 000000000..908c13ff5
--- /dev/null
+++ b/domains/nnocsupnn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nnocsupnn",
+ "email": "nnocsupnn@gmail.com"
+ },
+ "record": {
+ "CNAME": "nnocsupnn.github.io"
+ }
+}
diff --git a/domains/noctade.json b/domains/noctade.json
new file mode 100644
index 000000000..97a3b5b64
--- /dev/null
+++ b/domains/noctade.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "noctade",
+ "discord": "1117869855538942032",
+ "email": "endeade80@gmail.com"
+ },
+ "record": {
+ "CNAME": "noctade.github.io"
+ }
+}
diff --git a/domains/node.devmatei.json b/domains/node.devmatei.json
deleted file mode 100644
index 10dc9ea92..000000000
--- a/domains/node.devmatei.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DevMatei",
- "email": "matei.thoma@gmail.com"
- },
- "record": {
- "A": ["176.100.37.70"]
- }
-}
diff --git a/domains/noelpaton-og.json b/domains/noelpaton-og.json
new file mode 100644
index 000000000..c3cae7c54
--- /dev/null
+++ b/domains/noelpaton-og.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "noelpaton-og",
+ "email": "noel27938@gmail.com"
+ },
+ "record": {
+ "CNAME": "noelpaton-og.github.io"
+ }
+}
diff --git a/domains/noelpatonog.json b/domains/noelpatonog.json
new file mode 100644
index 000000000..c3cae7c54
--- /dev/null
+++ b/domains/noelpatonog.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "noelpaton-og",
+ "email": "noel27938@gmail.com"
+ },
+ "record": {
+ "CNAME": "noelpaton-og.github.io"
+ }
+}
diff --git a/domains/nohello.areen.json b/domains/nohello.areen.json
new file mode 100644
index 000000000..10cf32ac9
--- /dev/null
+++ b/domains/nohello.areen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "areen-c",
+ "email": "areenelhaq@gmail.com"
+ },
+ "record": {
+ "CNAME": "nogreeting.pages.dev"
+ }
+}
diff --git a/domains/noob.json b/domains/noob.json
new file mode 100644
index 000000000..a045d21c1
--- /dev/null
+++ b/domains/noob.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal portfolio site, made in nextjs",
+ "repo": "https://github.com/IMXNOOBX/universe",
+ "owner": {
+ "username": "IMXNOOBX",
+ "email": "me@noob.bio"
+ },
+ "record": {
+ "CNAME": "noob.bio"
+ }
+}
diff --git a/domains/notaproton.json b/domains/notaproton.json
new file mode 100644
index 000000000..c5c9bf4e1
--- /dev/null
+++ b/domains/notaproton.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NotAProton",
+ "discord": "881083592648843294",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ljVmbkSps_q105bpImCtqo4lcTC3vXwfeKumQRVxp8bEoL2YAJOK_L1-ZJS3xoqwYz4dGhXRgfMwbXxt5DywBdnkWksIaVeslM0kAmjfqFGzT6j7YuFHHn0lCrtJACVCqfnkM6m-K8JVO71W66hnpyHqUep-pk-PEi7ySj7NibAjqMNf2UJiawXTTVLk3ynTUkwF4TJPwm4SdUJ6u9-YoFOh2aLOc716UINMAyRtnhB_LrfOYbl2a0OEnQGNdyEMqs1gjzmtn1wq_MZp6rI0HsRGV8PXuUh4GeEdptRCk2WIs2Rgg8vK1ECQ_DbbFCH0f1qxZAEngq-kTmByoICfhg.vi-XIRIxV8vkUwHBfoDxvQ._nY8vknWdQ_aGvm7_e2oh64O8IePxVzUV-Cxc20Y8HIG1ZihZ1_ae_BeL5b6OxJ9Ku0vnvwzitskb1y58Ja6krv4v-OVUft6kdUUYkyhB5Hai7HIRDbtiT9FD5EFXd3F.uS_CcluynSxFeTDrJosDrw"
+ },
+
+ "record": {
+ "CNAME": "notaproton.github.io"
+ }
+}
diff --git a/domains/notcoded.json b/domains/notcoded.json
index d065c32ac..de3fc586b 100644
--- a/domains/notcoded.json
+++ b/domains/notcoded.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/not-coded/not-coded.github.io",
"owner": {
"username": "not-coded",
- "discord": "Code#9844",
+ "discord": "notcoded",
"discordUserID": "620662953347121163"
},
"record": {
diff --git a/domains/notdevmatei.json b/domains/notdevmatei.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/notdevmatei.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/notzer0two.json b/domains/notzer0two.json
new file mode 100644
index 000000000..d1205c6f6
--- /dev/null
+++ b/domains/notzer0two.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NotZer0Two",
+ "email": "lyonfan2010@gmail.com"
+ },
+ "record": {
+ "CNAME": "notzer0two.vercel.app"
+ }
+}
diff --git a/domains/nova.json b/domains/nova.json
index 6936d741d..4d94af0ef 100644
--- a/domains/nova.json
+++ b/domains/nova.json
@@ -6,6 +6,6 @@
"discord": "7un4r"
},
"record": {
- "A": ["154.29.72.52"]
+ "A": ["130.51.94.101"]
}
}
diff --git a/domains/nparashar150.json b/domains/nparashar150.json
new file mode 100644
index 000000000..634f1fa7e
--- /dev/null
+++ b/domains/nparashar150.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nparashar150",
+ "email": "nparashar150@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-beta-ecru-19.vercel.app"
+ }
+}
diff --git a/domains/nthn.json b/domains/nthn.json
index 622f63a89..dca567fa2 100644
--- a/domains/nthn.json
+++ b/domains/nthn.json
@@ -1,6 +1,5 @@
{
"description": "Storage Untuk Mengupload Semua Filemu",
- "repo": "https://github.com/ZeroChanBot",
"owner": {
"username": "Nathan",
"email": "contact@webraku.xyz"
diff --git a/domains/nuggew.json b/domains/nuggew.json
new file mode 100644
index 000000000..917fd7f2a
--- /dev/null
+++ b/domains/nuggew.json
@@ -0,0 +1,10 @@
+{
+ "description": "nuggew's fortress (portfolio)",
+ "owner": {
+ "username": "Nuggew",
+ "email": "contato.guilherme.silva.araujo@gmail.com"
+ },
+ "record": {
+ "CNAME": "nuggew.github.io"
+ }
+}
diff --git a/domains/nuraly.json b/domains/nuraly.json
new file mode 100644
index 000000000..54dea8e7c
--- /dev/null
+++ b/domains/nuraly.json
@@ -0,0 +1,10 @@
+{
+ "description": "Domain for the portfolio website",
+ "owner": {
+ "username": "nuraly-v",
+ "email": "mescorpx@gmail.com"
+ },
+ "record": {
+ "CNAME": "nuraly-v.github.io"
+ }
+}
diff --git a/domains/nvcoden.json b/domains/nvcoden.json
new file mode 100644
index 000000000..2a76f5f2a
--- /dev/null
+++ b/domains/nvcoden.json
@@ -0,0 +1,11 @@
+{
+ "description": "Blog for my personal stuff and things I like",
+ "repo": "https://github.com/nvcoden/nvcoden.github.io",
+ "owner": {
+ "username": "nvcoden",
+ "email": "navneeths55555@gmail.com"
+ },
+ "record": {
+ "CNAME": "nvcoden.github.io"
+ }
+}
diff --git a/domains/nvhai272.json b/domains/nvhai272.json
new file mode 100644
index 000000000..1a5cb16fb
--- /dev/null
+++ b/domains/nvhai272.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "nvhai272"
+ },
+ "record": {
+ "CNAME": "nvhai272.github.io"
+ }
+}
diff --git a/domains/nxmtuan.json b/domains/nxmtuan.json
index 046ab477f..70a8e9007 100644
--- a/domains/nxmtuan.json
+++ b/domains/nxmtuan.json
@@ -1,11 +1,11 @@
{
- "description": "nxmt-profile.dev",
- "owner": {
- "username": "tuannguyen2002",
- "email": "coixaygio107@gmail.com",
- "discord": "nightfury06749"
- },
- "record": {
- "CNAME": "profile-sigma-wine.vercel.app"
- }
+ "description": "nxmt-profile.dev",
+ "owner": {
+ "username": "tuannguyen2002",
+ "email": "coixaygio107@gmail.com",
+ "discord": "nightfury06749"
+ },
+ "record": {
+ "CNAME": "profile-sigma-wine.vercel.app"
+ }
}
diff --git a/domains/nxrmqlly.json b/domains/nxrmqlly.json
index 403ae35f2..0702db19d 100644
--- a/domains/nxrmqlly.json
+++ b/domains/nxrmqlly.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/nxrmqlly/nxrmqlly.github.io",
"owner": {
"username": "nxrmqlly",
- "email": "ritam.das3110@outlook.com",
- "twitter": ""
+ "email": "ritam.das3110@outlook.com"
},
"record": {
"CNAME": "nxrmqlly.github.io"
diff --git a/domains/nyexoi.json b/domains/nyexoi.json
index d9b3d5a64..b21698a73 100644
--- a/domains/nyexoi.json
+++ b/domains/nyexoi.json
@@ -1,12 +1,10 @@
{
- "owner": {
- "username": "nyex0i",
- "discord": "1212192971164754033",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRgrN599r8xvQuvmS0Z9rYahQfr4DHRpFuqCcx0hA7lqvxyfU2bINENKxB9qHUKVLcxxJsVxJhTu9bHMg_lI7CKxDOHfil06iy4biCCDnUCKub8ju3d4YkZoVCBWM5uSHu1BqBjlWD_xKu6jHpV6SwbHbwLpWXSdH-P_KGTgHbaj5NCptvX0s4DdyVZDV5oBqz6VAmqAl0HoSFFnuANz8lfgE9z_yIxK0Rj4u4ce9et9Qkd1QGltI6er9tU2U9LH5X0J7qkA9Cl9sXyO8VwPm70qQfLx-aZ0MZPcHvPNxMiiJ5DxOuvYZS1HQ494nA5ghWQk8WFjvHSiRMaEh5aWBQ.SmcC2sB5sRSC4T9sNkidRw.0Y8OEmwmNVpmr34As2NwAlt-FhlBVOUuYyS8SXHLAh3Q4aYJv55WdwEVNd4u9JWSEwBxYLdajkKFimVzPunQQQqNvfbKGhp3rBdgels_dJU.irZbgI_gDpGkNpagO9e-Nw"
- },
-
- "record": {
- "CNAME": "siteisw.tiiny.site"
- }
- }
-
+ "owner": {
+ "username": "nyex0i",
+ "discord": "1212192971164754033",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRgrN599r8xvQuvmS0Z9rYahQfr4DHRpFuqCcx0hA7lqvxyfU2bINENKxB9qHUKVLcxxJsVxJhTu9bHMg_lI7CKxDOHfil06iy4biCCDnUCKub8ju3d4YkZoVCBWM5uSHu1BqBjlWD_xKu6jHpV6SwbHbwLpWXSdH-P_KGTgHbaj5NCptvX0s4DdyVZDV5oBqz6VAmqAl0HoSFFnuANz8lfgE9z_yIxK0Rj4u4ce9et9Qkd1QGltI6er9tU2U9LH5X0J7qkA9Cl9sXyO8VwPm70qQfLx-aZ0MZPcHvPNxMiiJ5DxOuvYZS1HQ494nA5ghWQk8WFjvHSiRMaEh5aWBQ.SmcC2sB5sRSC4T9sNkidRw.0Y8OEmwmNVpmr34As2NwAlt-FhlBVOUuYyS8SXHLAh3Q4aYJv55WdwEVNd4u9JWSEwBxYLdajkKFimVzPunQQQqNvfbKGhp3rBdgels_dJU.irZbgI_gDpGkNpagO9e-Nw"
+ },
+ "record": {
+ "CNAME": "siteisw.tiiny.site"
+ }
+}
diff --git a/domains/oalonzo.json b/domains/oalonzo.json
new file mode 100644
index 000000000..70e38da42
--- /dev/null
+++ b/domains/oalonzo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "valitogt",
+ "email": "oswalonzo@hotmail.com"
+ },
+ "record": {
+ "CNAME": "Valitogt79.github.io"
+ }
+}
diff --git a/domains/objshadow.json b/domains/objshadow.json
new file mode 100644
index 000000000..15fa06e0f
--- /dev/null
+++ b/domains/objshadow.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ShadowObj",
+ "email": "shadowobject@protonmail.com"
+ },
+ "record": {
+ "CNAME": "objshadow.pages.dev"
+ }
+}
diff --git a/domains/ofheather.json b/domains/ofheather.json
new file mode 100644
index 000000000..db6a84853
--- /dev/null
+++ b/domains/ofheather.json
@@ -0,0 +1,11 @@
+{
+ "description": "It is for my portfolio",
+ "repo": "https://github.com/alfonso12dev/portfolio",
+ "owner": {
+ "username": "alfonso12dev",
+ "email": "bmeza9407@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/ok.json b/domains/ok.json
new file mode 100644
index 000000000..1efdd2419
--- /dev/null
+++ b/domains/ok.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "catch6",
+ "email": "catchlife6@163.com"
+ },
+ "record": {
+ "CNAME": "catch6.github.io"
+ }
+}
diff --git a/domains/okinea.json b/domains/okinea.json
index 2f586da5b..32605b493 100644
--- a/domains/okinea.json
+++ b/domains/okinea.json
@@ -1,6 +1,5 @@
{
"description": "Okinea Dev website",
- "repo": "https://github.com/okineadev-website",
"owner": {
"username": "okineadev",
"telegram": "https://telegram.okinea.dev",
diff --git a/domains/olasubomi.json b/domains/olasubomi.json
new file mode 100644
index 000000000..d1afa00b1
--- /dev/null
+++ b/domains/olasubomi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "firstaxel",
+ "email": "olasubomiolubisi@geeg.space",
+ "discord": "1209136236607049758"
+ },
+ "record": {
+ "CNAME": "twinkle-portfolio-wine.vercel.app"
+ }
+}
diff --git a/domains/old.rizz.json b/domains/old.rizz.json
new file mode 100644
index 000000000..8d131c18a
--- /dev/null
+++ b/domains/old.rizz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bananaking6",
+ "discord": "skibidibagel"
+ },
+ "record": {
+ "CNAME": "skibidi-2.vercel.app"
+ }
+}
diff --git a/domains/oliver.json b/domains/oliver.json
new file mode 100644
index 000000000..357322288
--- /dev/null
+++ b/domains/oliver.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "oli-ward",
+ "email": "oliver.ward94@gmail.com"
+ },
+ "record": {
+ "CNAME": "is-a-dev-zc9.pages.dev"
+ }
+}
diff --git a/domains/oliverg.json b/domains/oliverg.json
new file mode 100644
index 000000000..199bf0bba
--- /dev/null
+++ b/domains/oliverg.json
@@ -0,0 +1,13 @@
+{
+ "description": "Portfolio",
+ "owner": {
+ "username": "oliver720",
+ "email": "olivergarro2017@gmail.com"
+ },
+ "record": {
+ "A": [
+ "52.160.46.153"
+ ]
+ },
+ "proxied": false
+}
diff --git a/domains/omaradel.json b/domains/omaradel.json
new file mode 100644
index 000000000..0b634aaba
--- /dev/null
+++ b/domains/omaradel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "0xOmarAdel",
+ "email": "omaradelawad20013@gmail.com"
+ },
+ "record": {
+ "CNAME": "omar-adel.netlify.app"
+ }
+}
diff --git a/domains/omarjaber.json b/domains/omarjaber.json
new file mode 100644
index 000000000..18ff50d83
--- /dev/null
+++ b/domains/omarjaber.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/omarHJ/Portfolio-Website",
+ "owner": {
+ "username": "omarHJ",
+ "email": "omarpp5555@gmail.com"
+ },
+ "record": {
+ "CNAME": "omarhj.github.io"
+ }
+}
diff --git a/domains/omarmarquez.json b/domains/omarmarquez.json
new file mode 100644
index 000000000..f1509f066
--- /dev/null
+++ b/domains/omarmarquez.json
@@ -0,0 +1,11 @@
+{
+ "description": "Omar Márquez minimalist portfolio",
+ "repo": "https://github.com/Trkiller02/minimalist-portfolio",
+ "owner": {
+ "username": "Trkiller02",
+ "email": "trollkiller0207@gmail.com"
+ },
+ "record": {
+ "CNAME": "trkiller02.github.io"
+ }
+ }
diff --git a/domains/omesh.json b/domains/omesh.json
new file mode 100644
index 000000000..a6fd02709
--- /dev/null
+++ b/domains/omesh.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "omesh7"
+ },
+ "record": {
+ "CNAME": "omesh7.github.io"
+ }
+}
diff --git a/domains/omi.json b/domains/omi.json
new file mode 100644
index 000000000..e9f3641b3
--- /dev/null
+++ b/domains/omi.json
@@ -0,0 +1,9 @@
+{
+ "description": "Omi Personal Webpage",
+ "owner": {
+ "username": "omi-the-sorcerer"
+ },
+ "record": {
+ "CNAME": "omi.cat"
+ }
+}
diff --git a/domains/omkar.json b/domains/omkar.json
new file mode 100644
index 000000000..31c6b9561
--- /dev/null
+++ b/domains/omkar.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "omkarkirpan",
+ "email": "okirpan@gmail.com"
+ },
+ "repo": "https://github.com/omkarkirpan",
+ "record": {
+ "CNAME": "omkarkirpan.com"
+ }
+}
diff --git a/domains/omkhalane.json b/domains/omkhalane.json
new file mode 100644
index 000000000..c6b5fb2ed
--- /dev/null
+++ b/domains/omkhalane.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "omkhalane",
+ "email": "om.khalane.dev@gmail.com"
+ },
+ "record": {
+ "URL": "https://omkhalane.github.io/portfolio/"
+ }
+}
diff --git a/domains/onerandom.json b/domains/onerandom.json
new file mode 100644
index 000000000..7ce863398
--- /dev/null
+++ b/domains/onerandom.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "OneRandom1509",
+ "email": "anantukid@gmail.com"
+ },
+ "record": {
+ "CNAME": "folio-five-beta.vercel.app"
+ }
+}
diff --git a/domains/onkarsathe.json b/domains/onkarsathe.json
new file mode 100644
index 000000000..d683a379c
--- /dev/null
+++ b/domains/onkarsathe.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Website",
+ "repo": "https://github.com/Onkarsathe007/portfolio",
+ "owner": {
+ "username": "Onkarsathe007",
+ "email": "onkarsathe96k@gmail.com"
+ },
+ "record": {
+ "CNAME": "onkarsathe007.github.io"
+ }
+}
diff --git a/domains/ordernest.json b/domains/ordernest.json
new file mode 100644
index 000000000..da4df6853
--- /dev/null
+++ b/domains/ordernest.json
@@ -0,0 +1,10 @@
+{
+ "description": "Website in development for a non-profit organization",
+ "owner": {
+ "username": "gills",
+ "email": "gigi37300@gmail.com"
+ },
+ "record": {
+ "CNAME": "ordernest.qevi7356.odns.fr"
+ }
+}
diff --git a/domains/orellanamatias.json b/domains/orellanamatias.json
new file mode 100644
index 000000000..b02f95c3b
--- /dev/null
+++ b/domains/orellanamatias.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "OrellanaMatias",
+ "email": "meorellanaramirez@gmail.com",
+ "discord": "1151115185419997184"
+ },
+ "record": {
+ "CNAME": "portafolio-orellana-workspace.vercel.app"
+ }
+}
diff --git a/domains/osama.json b/domains/osama.json
new file mode 100644
index 000000000..b963d5b52
--- /dev/null
+++ b/domains/osama.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/owais.json b/domains/owais.json
new file mode 100644
index 000000000..ca1220e1d
--- /dev/null
+++ b/domains/owais.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/Muhammad-Owais-Warsi/portfolio2.1",
+ "owner": {
+ "username": "Muhammad-Owais-Warsi",
+ "email": "warsimuhammadowais@gmail.com"
+ },
+ "record": {
+ "A": ["216.24.57.1"]
+ }
+}
diff --git a/domains/owens.json b/domains/owens.json
new file mode 100644
index 000000000..c9cec82df
--- /dev/null
+++ b/domains/owens.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "owenslopez211"
+ },
+ "record": {
+ "CNAME": "owenslopez211.github.io"
+ }
+}
diff --git a/domains/owentech.json b/domains/owentech.json
deleted file mode 100644
index c7ff567a7..000000000
--- a/domains/owentech.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Owen's website",
- "owner": {
- "username": "owentechv",
- "email": "dowenx83@gmail.com"
- },
- "record": {
- "CNAME": "owentechv.github.io"
- }
-}
diff --git a/domains/p.json b/domains/p.json
index 04961f75d..4f8ad8e8c 100644
--- a/domains/p.json
+++ b/domains/p.json
@@ -1,7 +1,7 @@
{
"owner": {
"username": "Priyansxu",
- "email": "cloudypriyanshu@gmail.com"
+ "email": "priyansxu@yahoo.com"
},
"record": {
"CNAME": "edge.redirect.pizza"
diff --git a/domains/pa1.json b/domains/pa1.json
new file mode 100644
index 000000000..f73da35a9
--- /dev/null
+++ b/domains/pa1.json
@@ -0,0 +1,11 @@
+{
+ "description": "It's my personal portfolio page",
+ "repo": "https://github.com/pavan-ambekar/pavan-ambekar.github.io",
+ "owner": {
+ "username": "pavan-ambekar",
+ "email": "pavan479eC@gmail.com"
+ },
+ "record": {
+ "CNAME": "pavan-ambekar.github.io"
+ }
+}
diff --git a/domains/pan.json b/domains/pan.json
new file mode 100644
index 000000000..31fb376fc
--- /dev/null
+++ b/domains/pan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Currypan1229",
+ "email": "abcqqqwpvp@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/Currypan1229"
+ }
+}
diff --git a/domains/panashe-mapika.json b/domains/panashe-mapika.json
new file mode 100644
index 000000000..0369a3bb4
--- /dev/null
+++ b/domains/panashe-mapika.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "panda-zw"
+ },
+ "record": {
+ "CNAME": "panashe.codes"
+ }
+}
diff --git a/domains/panashe.json b/domains/panashe.json
new file mode 100644
index 000000000..0369a3bb4
--- /dev/null
+++ b/domains/panashe.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "panda-zw"
+ },
+ "record": {
+ "CNAME": "panashe.codes"
+ }
+}
diff --git a/domains/panel.devmatei.json b/domains/panel.devmatei.json
deleted file mode 100644
index 10dc9ea92..000000000
--- a/domains/panel.devmatei.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DevMatei",
- "email": "matei.thoma@gmail.com"
- },
- "record": {
- "A": ["176.100.37.70"]
- }
-}
diff --git a/domains/panel.xrap1dx.json b/domains/panel.xrap1dx.json
index cf7422741..c1125cb8f 100644
--- a/domains/panel.xrap1dx.json
+++ b/domains/panel.xrap1dx.json
@@ -1,6 +1,5 @@
{
"description": "making my cdn!!!",
- "repo": "https://github.com/xrap1dx?tab=repositories",
"owner": {
"username": "xrap1dx",
"discord": "xrap1dx"
diff --git a/domains/panntod.json b/domains/panntod.json
new file mode 100644
index 000000000..eefcf50dc
--- /dev/null
+++ b/domains/panntod.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "panntod",
+ "email": "munjalindra.pandhu@gmail.com",
+ "discord": "975960358999171152"
+ },
+ "record": {
+ "CNAME": "panntod-personal.vercel.app"
+ }
+}
diff --git a/domains/parshnt.json b/domains/parshnt.json
index 169b9886b..d17b6d3d3 100644
--- a/domains/parshnt.json
+++ b/domains/parshnt.json
@@ -1,6 +1,5 @@
{
"description": "YAY, new place for my Portfolio",
- "repo": "https://github.com/parshnt",
"owner": {
"username": "parshnt",
"email": "hi.parshant@gmail.com"
diff --git a/domains/parthmandawaria.json b/domains/parthmandawaria.json
new file mode 100644
index 000000000..a6d4e2727
--- /dev/null
+++ b/domains/parthmandawaria.json
@@ -0,0 +1,10 @@
+{
+ "description": "crazyy domain for my portfolio",
+ "owner": {
+ "username": "parthhcodess",
+ "email": "parthmandawaria@gmail.com"
+ },
+ "record": {
+ "CNAME": "parthhcodess.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/patrick.json b/domains/patrick.json
new file mode 100644
index 000000000..98cdd9f96
--- /dev/null
+++ b/domains/patrick.json
@@ -0,0 +1,10 @@
+{
+ "description": "My portfolio website made with GoHugo",
+ "owner": {
+ "username": "davidsneighbour",
+ "email": "pkollitsch+isadev@gmail.com"
+ },
+ "record": {
+ "URL": "https://kollitsch.dev/"
+ }
+}
diff --git a/domains/pau.json b/domains/pau.json
new file mode 100644
index 000000000..0681828fc
--- /dev/null
+++ b/domains/pau.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "paugp",
+ "email": "hello@pau.dev"
+ },
+ "record": {
+ "URL": "https://pau.dev/"
+ }
+}
diff --git a/domains/paul.json b/domains/paul.json
index 8628d3dbe..8bf246773 100644
--- a/domains/paul.json
+++ b/domains/paul.json
@@ -1,6 +1,5 @@
{
"description": "My Personal Landing Page!",
- "repo": "https://github.com/NotKaskus",
"owner": {
"username": "NotKaskus",
"email": "kaskus45@protonmail.com"
diff --git a/domains/paul8liveira.json b/domains/paul8liveira.json
new file mode 100644
index 000000000..20abf88a4
--- /dev/null
+++ b/domains/paul8liveira.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "paul8liveira",
+ "email": "paul8liveira@gmail.com"
+ },
+ "record": {
+ "CNAME": "paul8liveira.vercel.app"
+ }
+}
diff --git a/domains/paulmarc.json b/domains/paulmarc.json
new file mode 100644
index 000000000..814800126
--- /dev/null
+++ b/domains/paulmarc.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal Dev website for paulmarc.is-a.dev",
+ "repo": "https://github.com/paulmarc",
+ "owner": {
+ "username": "paulmarc",
+ "email": "develop@paulmarc.org"
+ },
+ "record": {
+ "URL": "https://github.com/paulmarc"
+ },
+ "proxied": false
+}
diff --git a/domains/pavanc.json b/domains/pavanc.json
new file mode 100644
index 000000000..9a452f4d4
--- /dev/null
+++ b/domains/pavanc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pavancos",
+ "email": "pavankc005@gmail.com"
+ },
+ "record": {
+ "URL": "https://pavanc.me"
+ }
+}
diff --git a/domains/pavankteja.json b/domains/pavankteja.json
new file mode 100644
index 000000000..103620a58
--- /dev/null
+++ b/domains/pavankteja.json
@@ -0,0 +1,11 @@
+{
+ "description": "Want to use it to showcase my portfolio",
+ "repo": "https://github.com/pavan-k-teja/pavan-k-teja.github.io",
+ "owner": {
+ "username": "pavan-k-teja",
+ "email": "pavan@pavan.gg"
+ },
+ "record": {
+ "CNAME": "pavan-k-teja.github.io"
+ }
+}
diff --git a/domains/pavlo.json b/domains/pavlo.json
new file mode 100644
index 000000000..39fa6a911
--- /dev/null
+++ b/domains/pavlo.json
@@ -0,0 +1,11 @@
+{
+ "description": "Documentation for https://github.com/olvap80",
+ "repo": "https://github.com/olvap80",
+ "owner": {
+ "username": "olvap80",
+ "email": "olvap@i.ua"
+ },
+ "record": {
+ "CNAME": "olvap80.github.io"
+ }
+}
diff --git a/domains/pawan.json b/domains/pawan.json
new file mode 100644
index 000000000..fad1cadc3
--- /dev/null
+++ b/domains/pawan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pawansubedi889",
+ "email": "mail@pawansubedi.me"
+ },
+ "record": {
+ "URL": "https://www.pawansubedi.me/"
+ }
+}
diff --git a/domains/paylink.joe50097.json b/domains/paylink.joe50097.json
new file mode 100644
index 000000000..8e8189e0c
--- /dev/null
+++ b/domains/paylink.joe50097.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Joe50097",
+ "email": "zcell9500@gmail.com"
+ },
+ "record": {
+ "CNAME": "paylink-comming-soon.netlify.app"
+ }
+}
diff --git a/domains/pdf.aaqif.json b/domains/pdf.aaqif.json
new file mode 100644
index 000000000..0a8e701d9
--- /dev/null
+++ b/domains/pdf.aaqif.json
@@ -0,0 +1,11 @@
+{
+ "description": "PDF",
+ "repo": "https://github.com/aaqifshafi/chat-with-pdf",
+ "owner": {
+ "username": "aaqifshafi",
+ "email": "aaqifshafi@gmail.com"
+ },
+ "record": {
+ "CNAME": "chat-with-pdf-aaqifshafis-projects.vercel.app"
+ }
+}
diff --git a/domains/pedrofff.json b/domains/pedrofff.json
new file mode 100644
index 000000000..42d2319d8
--- /dev/null
+++ b/domains/pedrofff.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/Pedrofff23/Portfolio",
+ "owner": {
+ "username": "Pedrofff23",
+ "email": "pmendes09@hotmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-opal-theta-47.vercel.app"
+ }
+}
diff --git a/domains/peme969.json b/domains/peme969.json
index 0981e39b6..e0df03a16 100644
--- a/domains/peme969.json
+++ b/domains/peme969.json
@@ -1,21 +1,16 @@
{
- "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="
- ],
- "MX":[
- "mx1.forwardemail.net",
- "mx2.forwardemail.net"
- ]
- }
+ "owner": {
+ "username": "peme969",
+ "email": "me@peme969.dev"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "TXT": ["forward-email=hello:me@peme969.dev, bot:bot@peme969.dev"],
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"]
+ }
}
diff --git a/domains/pete.json b/domains/pete.json
new file mode 100644
index 000000000..b55fcc504
--- /dev/null
+++ b/domains/pete.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio of a fullstack developer",
+ "repo": "https://github.com/daspete/pete-github-io",
+ "owner": {
+ "username": "daspete",
+ "email": "daspetemail@gmail.com"
+ },
+ "record": {
+ "CNAME": "daspete.github.io"
+ }
+}
diff --git a/domains/peterbuga.json b/domains/peterbuga.json
new file mode 100644
index 000000000..f4ee26dca
--- /dev/null
+++ b/domains/peterbuga.json
@@ -0,0 +1,11 @@
+{
+ "description": "Presentation website for peterbuga",
+ "repo": "https://github.com/peterbuga/peterbuga.github.io",
+ "owner": {
+ "username": "peterbuga",
+ "discord": "902580031044325407"
+ },
+ "record": {
+ "CNAME": "peterbuga.github.io"
+ }
+}
diff --git a/domains/peyloride.json b/domains/peyloride.json
new file mode 100644
index 000000000..04e718ebe
--- /dev/null
+++ b/domains/peyloride.json
@@ -0,0 +1,11 @@
+{
+ "description": "Peyloride - Okan Binli",
+ "repo": "https://github.com/peyloride/peyloride",
+ "owner": {
+ "username": "peyloride",
+ "email": "okanbinli@gmail.com"
+ },
+ "record": {
+ "CNAME": "peyloride.github.io"
+ }
+}
diff --git a/domains/phani.json b/domains/phani.json
new file mode 100644
index 000000000..ccee10544
--- /dev/null
+++ b/domains/phani.json
@@ -0,0 +1,11 @@
+{
+ "description": "PortFolio Showcasing my Works and contact details",
+ "repo": "https://github.com/Phani2425/My-Portfolio",
+ "owner": {
+ "username": "Phani2425",
+ "email": "mohantyphanibhusan@gmail.com"
+ },
+ "record": {
+ "URL": "https://portfolioweb-gules.vercel.app/"
+ }
+}
diff --git a/domains/phi.json b/domains/phi.json
new file mode 100644
index 000000000..6e182f503
--- /dev/null
+++ b/domains/phi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "y5c4l3",
+ "email": "y5c4l3@proton.me"
+ },
+ "record": {
+ "NS": ["johnny.ns.cloudflare.com", "rachel.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/phongli.json b/domains/phongli.json
new file mode 100644
index 000000000..b25e001e8
--- /dev/null
+++ b/domains/phongli.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "PhongLi",
+ "email": "longpt1109@gmail.com",
+ "discord": "_younglin"
+ },
+ "record": {
+ "CNAME": "phonglidev.vercel.app"
+ }
+}
diff --git a/domains/php.json b/domains/php.json
new file mode 100644
index 000000000..320ed0e0a
--- /dev/null
+++ b/domains/php.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website for Pedro Henrique Pires (PHP)",
+ "owner": {
+ "username": "pedrohenriquepires",
+ "email": "pdrhenriquepires@gmail.com"
+ },
+ "record": {
+ "CNAME": "site-v2-puce.vercel.app"
+ }
+}
diff --git a/domains/pikachu.json b/domains/pikachu.json
new file mode 100644
index 000000000..68a2d64b4
--- /dev/null
+++ b/domains/pikachu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vighnesh153",
+ "email": "pikachu@vighnesh153.dev"
+ },
+ "record": {
+ "CNAME": "vighnesh153-app.web.app"
+ }
+}
diff --git a/domains/pilagonzalez.json b/domains/pilagonzalez.json
index 11fe7abd3..7ed497792 100644
--- a/domains/pilagonzalez.json
+++ b/domains/pilagonzalez.json
@@ -1,10 +1,10 @@
-{
- "owner": {
- "username": "Pilag6",
- "email": "pilag6@gmail.com",
- "discord": "pilagonzalez"
- },
- "record": {
- "URL": "https://piladev.netlify.app"
- }
-}
+{
+ "owner": {
+ "username": "Pilag6",
+ "email": "pilag6@gmail.com",
+ "discord": "pilagonzalez"
+ },
+ "record": {
+ "URL": "https://piladev.netlify.app"
+ }
+}
diff --git a/domains/pilotseye.json b/domains/pilotseye.json
new file mode 100644
index 000000000..9337caf6b
--- /dev/null
+++ b/domains/pilotseye.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "YFFKJB",
+ "email": "1261546255@qq.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ },
+ "description": "PilotsEYE Studio 会计系统 - PilotsEYE Studio 的基于 Web 的会计系统"
+}
diff --git a/domains/pita.json b/domains/pita.json
new file mode 100644
index 000000000..de9887004
--- /dev/null
+++ b/domains/pita.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pita092",
+ "discord": "spongebob_spongebob_spongebob"
+ },
+ "record": {
+ "CNAME": "pita092.github.io"
+ }
+}
diff --git a/domains/pixelbend.json b/domains/pixelbend.json
new file mode 100644
index 000000000..93e524266
--- /dev/null
+++ b/domains/pixelbend.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pixelbend",
+ "email": "m.arkamfahry@gmail.com"
+ },
+ "record": {
+ "CNAME": "pixelbend.github.io"
+ }
+}
diff --git a/domains/pixelll.json b/domains/pixelll.json
new file mode 100644
index 000000000..92b988cda
--- /dev/null
+++ b/domains/pixelll.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pixel2175",
+ "email": "pixel2175@gmail.com"
+ },
+ "record": {
+ "CNAME": "pixell.ddns.net"
+ }
+}
diff --git a/domains/pixxo.json b/domains/pixxo.json
new file mode 100644
index 000000000..53e40f62b
--- /dev/null
+++ b/domains/pixxo.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website for Aleeyoo",
+ "owner": {
+ "username": "Aleeyoo",
+ "email": "m16638037095@163.com"
+ },
+ "record": {
+ "URL": "https://aleeyoo.github.io/pixxo.github.io/"
+ }
+}
diff --git a/domains/play.alora.json b/domains/play.alora.json
new file mode 100644
index 000000000..9dcd83339
--- /dev/null
+++ b/domains/play.alora.json
@@ -0,0 +1,11 @@
+{
+ "description": "Making my MC server accessible via a custom domain name",
+ "repo": "https://www.minecraft.com/",
+ "owner": {
+ "username": "aloramiaa",
+ "email": "xaloramia@gmail.com"
+ },
+ "record": {
+ "A": ["78.46.65.243"]
+ }
+}
diff --git a/domains/play.soccer.json b/domains/play.soccer.json
new file mode 100644
index 000000000..7ea912de0
--- /dev/null
+++ b/domains/play.soccer.json
@@ -0,0 +1,19 @@
+{
+ "description": "KillToLive minecraft server",
+ "owner": {
+ "username": "minecradt",
+ "email": "soccer1992.is.a.dev@gmail.com"
+ },
+ "record": {
+ "SRV": [
+ {
+ "name": "_minecraft._tcp.play",
+ "priority": 0,
+ "weight": 5,
+ "port": 25565,
+ "target": "KillToLive.valksystems.pro"
+ }
+ ],
+ "A": ["82.45.179.13"]
+ }
+}
diff --git a/domains/ploszukiwacz.json b/domains/ploszukiwacz.json
index 2223f7b4c..a67be9b22 100644
--- a/domains/ploszukiwacz.json
+++ b/domains/ploszukiwacz.json
@@ -1,11 +1,17 @@
{
"description": "Personal Website for PlOszukiwacz",
- "repo": "https://github.com/PlOszukiwaczDEV/ploszukiwaczdev.github.io",
+ "repo": "https://github.com/ploszukiwacz/website_new",
"owner": {
- "username": "PlOszukiwaczDEV",
+ "username": "ploszukiwacz",
"email": "ploszukiwacz1@gmail.com"
},
"record": {
- "NS": ["jake.ns.cloudflare.com", "stephane.ns.cloudflare.com"]
+ "NS": ["jake.ns.cloudflare.com", "stephane.ns.cloudflare.com"],
+ "DS": [{
+ "key_tag": 2371,
+ "algorithm": 13,
+ "digest_type": 2,
+ "digest": "CD6679293B68CD539A071B61A4BBC03B2B81F1B1DA48AAC2F2F690E957524AD1"
+ }]
}
}
diff --git a/domains/plumbus.json b/domains/plumbus.json
new file mode 100644
index 000000000..e35970e23
--- /dev/null
+++ b/domains/plumbus.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MAM-SYS",
+ "email": "m.hossein95th@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/MAM-SYS"
+ }
+ }
diff --git a/domains/podcodar.json b/domains/podcodar.json
index 1c82e8e8a..b7b7d25b9 100644
--- a/domains/podcodar.json
+++ b/domains/podcodar.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "marco-souza",
- "email": "marco@podcodar.org"
- },
- "record": {
- "CNAME": "podcodar.pages.dev"
- }
+ "owner": {
+ "username": "marco-souza",
+ "email": "marco@podcodar.org"
+ },
+ "record": {
+ "CNAME": "podcodar.pages.dev"
+ }
}
diff --git a/domains/polls.json b/domains/polls.json
new file mode 100644
index 000000000..be315fac0
--- /dev/null
+++ b/domains/polls.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Yunexiz",
+ "discord": "1040303561847881729"
+ },
+ "record": {
+ "URL": "https://y.is-a.dev"
+ }
+}
diff --git a/domains/portfolio.arash.json b/domains/portfolio.arash.json
new file mode 100644
index 000000000..3fbee9629
--- /dev/null
+++ b/domains/portfolio.arash.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal portfolio",
+ "owner": {
+ "username": "hatamiarash7",
+ "email": "hatamiarash7@gmail.com",
+ "twitter": "hatamiarash7"
+ },
+ "record": {
+ "URL": "https://portfolio.arash-hatami.ir"
+ }
+}
diff --git a/domains/portfolio.json b/domains/portfolio.json
new file mode 100644
index 000000000..0b14d465b
--- /dev/null
+++ b/domains/portfolio.json
@@ -0,0 +1,12 @@
+
+{
+ "description": "It is for my portfolio",
+ "repo": "https://github.com/alfonso12dev/portfolio",
+ "owner": {
+ "username": "alfonso12dev",
+ "email": "bmeza9407@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/poysa213.json b/domains/poysa213.json
new file mode 100644
index 000000000..2ebb1e070
--- /dev/null
+++ b/domains/poysa213.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "poysa213",
+ "email": "hanaiayoucef@gmail.com",
+ "discord": "944238875566551110",
+ "twitter": "poysa213",
+ "repo": "https://github.com/poysa213/portfolio"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/ppg00.json b/domains/ppg00.json
deleted file mode 100644
index e1f703da2..000000000
--- a/domains/ppg00.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "for my personal website ^_^",
- "repo": "https://github.com/ppg00/ppg00.github.io",
- "owner": {
- "username": "ppg00",
- "email": "ppqg00@gmail.com",
- "twitter": "qqg00"
- },
- "record": {
- "CNAME": "ppg00.github.io"
- }
-}
diff --git a/domains/ppyoung.json b/domains/ppyoung.json
new file mode 100644
index 000000000..b1319f01e
--- /dev/null
+++ b/domains/ppyoung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ppYoung",
+ "email": "dongyang.luo@gmail.com"
+ },
+ "record": {
+ "CNAME": "ppyoung.github.io"
+ }
+}
diff --git a/domains/prakhar.json b/domains/prakhar.json
index a1953b0d2..64d94060b 100644
--- a/domains/prakhar.json
+++ b/domains/prakhar.json
@@ -1,6 +1,5 @@
{
"description": "Prakhar| Portfolio",
- "repo": "https://github.com/Prakhar-commits.github.io",
"owner": {
"username": "Prakhar-commits",
"email": "prakharb56@gmail.com"
diff --git a/domains/pranav.json b/domains/pranav.json
new file mode 100644
index 000000000..3020c0d4f
--- /dev/null
+++ b/domains/pranav.json
@@ -0,0 +1,12 @@
+{
+ "description": "Documentation website for is-a.dev",
+ "repo": "https://github.com/is-a-dev/docs",
+ "owner": {
+ "username": "Srcpranav",
+ "email": "zoldyckzoldyck41@gmail.com"
+ },
+ "record": {
+ "CNAME": "pranav-portfolio-sigma.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/pranavagrawal.json b/domains/pranavagrawal.json
index 961525336..ee91c44b5 100644
--- a/domains/pranavagrawal.json
+++ b/domains/pranavagrawal.json
@@ -6,8 +6,18 @@
"email": "pranavagrawal321@gmail.com"
},
"record": {
- "A": ["185.199.108.153"],
- "AAAA": ["2606:50c0:8001::153"],
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/pranavarya.json b/domains/pranavarya.json
new file mode 100644
index 000000000..58082d9e5
--- /dev/null
+++ b/domains/pranavarya.json
@@ -0,0 +1,11 @@
+{
+ "description:": "pranavarya.is-a.dev (pranavarya.in)",
+ "owner": {
+ "username": "PranavArya37",
+ "email": "pranavarya2799@gmail.com",
+ "linkedin": "https://www.linkedin.com/in/pranavarya37/"
+ },
+ "record": {
+ "URL": "https://pranavarya.in"
+ }
+}
diff --git a/domains/pranavs.json b/domains/pranavs.json
new file mode 100644
index 000000000..8bb379083
--- /dev/null
+++ b/domains/pranavs.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio-website",
+ "repo": "https://github.com/Prs96/portfolio-website.git",
+ "owner": {
+ "username": "Prs96",
+ "email": "pranavsudheesh34@gmail.com"
+ },
+ "record": {
+ "CNAME": "prs96.github.io"
+ }
+}
diff --git a/domains/pranay.json b/domains/pranay.json
new file mode 100644
index 000000000..3f57d7464
--- /dev/null
+++ b/domains/pranay.json
@@ -0,0 +1,10 @@
+{
+ "description": "Website for my personal use",
+ "owner": {
+ "username": "pranaynidhi",
+ "email": "pranaynidhi@gmail.com"
+ },
+ "record": {
+ "CNAME": "pranaynidhi.tech"
+ }
+}
diff --git a/domains/pranoy.json b/domains/pranoy.json
new file mode 100644
index 000000000..8c82e7670
--- /dev/null
+++ b/domains/pranoy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "pranoymajumdar",
+ "email": "pranoyfr@gmail.com",
+ "discord": "1303089079809740904"
+ },
+ "record": {
+ "CNAME": "pranoy-ruby.vercel.app"
+ }
+}
diff --git a/domains/prasad.json b/domains/prasad.json
new file mode 100644
index 000000000..e4022faa6
--- /dev/null
+++ b/domains/prasad.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "prasad89"
+ },
+ "record": {
+ "CNAME": "prasad89.github.io"
+ }
+}
diff --git a/domains/prasant.json b/domains/prasant.json
new file mode 100644
index 000000000..291eca8f9
--- /dev/null
+++ b/domains/prasant.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/prashant48653c/portfolio",
+ "owner": {
+ "username": "prashant48653c",
+ "email": "acharyaprashant227@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/prashanthkusuma.json b/domains/prashanthkusuma.json
new file mode 100644
index 000000000..9f9b747c5
--- /dev/null
+++ b/domains/prashanthkusuma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "prashanthkusuma",
+ "email": "kusumaprashanth2000@gmail.com"
+ },
+ "record": {
+ "URL": "https://prashanthkusuma.github.io"
+ }
+}
diff --git a/domains/prashil.json b/domains/prashil.json
new file mode 100644
index 000000000..55a5a788f
--- /dev/null
+++ b/domains/prashil.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "prashilthul",
+ "email": "prashil1411@gmail.com"
+ },
+ "record": {
+ "A": ["216.198.79.1", "64.29.17.1"]
+ }
+}
diff --git a/domains/pratham.json b/domains/pratham.json
new file mode 100644
index 000000000..c6534572b
--- /dev/null
+++ b/domains/pratham.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Prathamdas3",
+ "email": "daspratham3@gmail.com"
+ },
+ "record": {
+ "CNAME": "prathamdas.vercel.app"
+ }
+}
diff --git a/domains/pratham15541.json b/domains/pratham15541.json
index 7bc903b30..60d74d54a 100644
--- a/domains/pratham15541.json
+++ b/domains/pratham15541.json
@@ -1,10 +1,10 @@
-{
- "owner": {
- "username": "pratham15541",
- "email": "prathamparikh94@gmail.com",
- "discord": "951846985172938782"
- },
- "record": {
- "CNAME": "pratham-portfolio-web.vercel.app"
- }
-}
\ No newline at end of file
+{
+ "owner": {
+ "username": "pratham15541",
+ "email": "prathamparikh94@gmail.com",
+ "discord": "951846985172938782"
+ },
+ "record": {
+ "CNAME": "pratham-portfolio-web.vercel.app"
+ }
+}
diff --git a/domains/prathamesh.json b/domains/prathamesh.json
index 5e405bafb..711309191 100644
--- a/domains/prathamesh.json
+++ b/domains/prathamesh.json
@@ -1,10 +1,9 @@
{
"owner": {
- "username": "Prathamesh-Dukare",
- "email": "prathameshdukaremail@gmail.com",
- "discord": "741144155559821342"
+ "username": "prathamesh-2002",
+ "email": "prathameshisadev@gmail.com"
},
"record": {
- "CNAME": "prathamesh.works"
+ "CNAME": "prathamesh-2002.github.io"
}
}
diff --git a/domains/pratikthapw.json b/domains/pratikthapw.json
new file mode 100644
index 000000000..5fb285a9f
--- /dev/null
+++ b/domains/pratikthapw.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pratikthapw",
+ "email": "pratikthapw@gmail.com"
+ },
+ "record": {
+ "CNAME": "pratikthapw.github.io"
+ }
+}
diff --git a/domains/prats.json b/domains/prats.json
new file mode 100644
index 000000000..a5408f80b
--- /dev/null
+++ b/domains/prats.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "theyashl",
+ "email": "yashlohakare48@outlook.com"
+ },
+ "record": {
+ "CNAME": "developerfolio-are.pages.dev"
+ }
+}
diff --git a/domains/pratyay.json b/domains/pratyay.json
index 4de110802..daa3185b8 100644
--- a/domains/pratyay.json
+++ b/domains/pratyay.json
@@ -1,6 +1,5 @@
{
"description": "Pratyay's portfolio website and blog",
- "repo": "https://github.com/x3nosiz",
"owner": {
"username": "x3nosiz",
"email": "neilblaze007@gmail.com"
diff --git a/domains/praveen-2006.json b/domains/praveen-2006.json
new file mode 100644
index 000000000..77d1e048d
--- /dev/null
+++ b/domains/praveen-2006.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "InfiniteCoder06",
+ "email": "mallidipraveenkumar@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/praveen-patel.json b/domains/praveen-patel.json
index f3a80dbe6..f8b53cc37 100644
--- a/domains/praveen-patel.json
+++ b/domains/praveen-patel.json
@@ -1,5 +1,4 @@
{
- "repo": "https://github.com/praveen8git",
"owner": {
"username": "praveen8git",
"email": "praveenpatel@duck.com",
diff --git a/domains/praveen.json b/domains/praveen.json
index 128459810..55bbe4703 100644
--- a/domains/praveen.json
+++ b/domains/praveen.json
@@ -1,6 +1,5 @@
{
"description": "Praveen's personal developer website",
- "repo": "https://github.com/PraveenPal4232",
"owner": {
"username": "PraveenPal4232",
"email": "praveenpal4232@gmail.com"
diff --git a/domains/priscila.json b/domains/priscila.json
new file mode 100644
index 000000000..1b6d1c568
--- /dev/null
+++ b/domains/priscila.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pgoliv-code",
+ "email": "pguillen.oliv@gmail.com"
+ },
+ "record": {
+ "CNAME": "pgoliv-code.github.io"
+ }
+}
diff --git a/domains/pritam.json b/domains/pritam.json
new file mode 100644
index 000000000..1683fa89d
--- /dev/null
+++ b/domains/pritam.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio.",
+ "repo": "https://github.com/ImDarkShadow/ImDarkShadow",
+ "owner": {
+ "username": "ImDarkShadow",
+ "email": "itspritam@proton.me"
+ },
+ "record": {
+ "CNAME": "pritam-das.vercel.app"
+ }
+}
diff --git a/domains/privatekey.json b/domains/privatekey.json
deleted file mode 100644
index 39624ad33..000000000
--- a/domains/privatekey.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "keydevelops",
- "email": "rumaevvadim@gmail.com"
- },
- "record": {
- "CNAME": "keydevelops.github.io"
- }
-}
diff --git a/domains/priyanshu.json b/domains/priyanshu.json
index bc043c227..4061965a0 100644
--- a/domains/priyanshu.json
+++ b/domains/priyanshu.json
@@ -1,7 +1,7 @@
{
"owner": {
"username": "Priyansxu",
- "email": "cloudypriyanshu@gmail.com",
+ "email": "priyansxu@yahoo.com",
"twitter": "priyansxu_gupta"
},
"record": {
diff --git a/domains/programmerraja.json b/domains/programmerraja.json
new file mode 100644
index 000000000..75c2aec80
--- /dev/null
+++ b/domains/programmerraja.json
@@ -0,0 +1,11 @@
+{
+ "description": "programmerraja is.a.dev domain!",
+ "repo": "https://github.com/programmerraja/programmerraja.github.io",
+ "owner": {
+ "username": "programmerraja",
+ "email": "boooathis123@gmail.com"
+ },
+ "record": {
+ "CNAME": "programmerraja.github.io"
+ }
+}
diff --git a/domains/projects.skibidi.json b/domains/projects.skibidi.json
new file mode 100644
index 000000000..0c1ba2ca6
--- /dev/null
+++ b/domains/projects.skibidi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "bananaking6",
+ "email": "",
+ "discord": "skibidibagel"
+ },
+ "record": {
+ "CNAME": "skibidi-4.vercel.app"
+ }
+}
diff --git a/domains/pronicio.json b/domains/pronicio.json
index 1ffca5071..dd6efa5dd 100644
--- a/domains/pronicio.json
+++ b/domains/pronicio.json
@@ -1,6 +1,5 @@
{
"description": "Pronicio's Portfolio",
- "repo": "https://github.com/Pronicio",
"owner": {
"username": "Pronicio",
"email": "pronicio.contact@gmail.com",
diff --git a/domains/ptr.json b/domains/ptr.json
new file mode 100644
index 000000000..c8412a1a4
--- /dev/null
+++ b/domains/ptr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "schminho",
+ "email": "peter@geiselnehmer.de"
+ },
+ "record": {
+ "CNAME": "schminho.github.io"
+ }
+}
diff --git a/domains/pulkitmidha.json b/domains/pulkitmidha.json
new file mode 100644
index 000000000..9e0d36c21
--- /dev/null
+++ b/domains/pulkitmidha.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal website",
+ "owner": {
+ "username": "midopooler",
+ "email": "midhapulkit28@gmail.com"
+ },
+ "record": {
+ "CNAME": "midopooler.github.io"
+ }
+}
diff --git a/domains/pyaesonewin.json b/domains/pyaesonewin.json
new file mode 100644
index 000000000..bfe0b476e
--- /dev/null
+++ b/domains/pyaesonewin.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website and portfolio for Pyae Sone Win",
+ "repo": "https://github.com/mgmgpyaesonewin/mgmgpyaesonewin.github.io",
+ "owner": {
+ "username": "mgmgpyaesonewin",
+ "email": "pyaesonewin.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "mgmgpyaesonewin.github.io"
+ }
+}
diff --git a/domains/pyro.json b/domains/pyro.json
index 194a0fb34..bbceb77fc 100644
--- a/domains/pyro.json
+++ b/domains/pyro.json
@@ -1,6 +1,5 @@
{
"description": "pyro's portfolio",
- "repo": "https://github.com/pyroisgamer.github.io",
"owner": {
"username": "pyroisgamer",
"email": "pyroisgamer@outlook.com"
diff --git a/domains/pythonweb.json b/domains/pythonweb.json
new file mode 100644
index 000000000..6b4c91ebd
--- /dev/null
+++ b/domains/pythonweb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CodeGeekR",
+ "discord": "768080481924677632"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/pyyupsk.json b/domains/pyyupsk.json
index 467897efe..bfdd321b6 100644
--- a/domains/pyyupsk.json
+++ b/domains/pyyupsk.json
@@ -3,9 +3,8 @@
"username": "pyyupsk",
"email": "pyyupsk@proton.me"
},
- "description": "👋 Hello! I'm ファース, a passionate full-stack developer with a passionate about creating innovative solutions that have a positive impact on people's lives.",
- "repo": "https://github.com/pyyupsk/personal-website",
+ "description": "Independent full-stack developer based in Thailand. Building efficient and scalable web apps.",
"record": {
- "CNAME": "pyyupsk.pages.dev"
+ "CNAME": "personal-website-4xb.pages.dev"
}
}
diff --git a/domains/qavv.json b/domains/qavv.json
new file mode 100644
index 000000000..a76eacfde
--- /dev/null
+++ b/domains/qavv.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "qavv"
+ },
+ "record": {
+ "CNAME": "qavv.github.io"
+ }
+}
diff --git a/domains/qr.akshtt.json b/domains/qr.akshtt.json
new file mode 100644
index 000000000..f04f6a386
--- /dev/null
+++ b/domains/qr.akshtt.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "akshtt-dev",
+ "discord": "1056531806763102218",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.r9iiVY90pmXjtloeTqKUGrrgRnUBQEsU1QJEQctt4Es3z5IHZdFYyiVW_2io7PHPlMP3eAGM1j1CegiLjjqdVc0pQ-2o6RzAkp0gkQh-6X7Av-3mHZJtTrFFVOwDO85v7f9aSirYPIT_NedPLNj2SifRGEZny7uvbli1wz_OLefmB3RW-3jpHQSJwyLd3SKZzTYWD8gmilgrK8Kfwfo64G3iGNfL6Muu3PuXlE3N_QR12w-OIxZBh7QsUYxURyl7qYqwJGVyShkQpZKe1azsFXRcMGp-VCLScxlumz6nW-pTlmOmozdFJ9bT2bn480qsjIyTlvRvffhfVJge6tGlYA.JxKLxZ8e69m8W27S-ulILw.PHcJk0yt7TYYBJpEJUBvcnA5n3uL4RuED29wFClWf7XQ6NLxZk4YazmMwPg2sRN9OPJMIvnD67Lh5oQMxnvLSOIrafb9wUBv_n7oEeTjBWQ.ZTLSMXrzfFjU6OqH7F-j5Q"
+ },
+
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/quang.json b/domains/quang.json
new file mode 100644
index 000000000..832f5f7d6
--- /dev/null
+++ b/domains/quang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Kokkini",
+ "email": "trannhatquang1104@gmail.com"
+ },
+ "record": {
+ "CNAME": "kokkini.github.io"
+ }
+}
diff --git a/domains/quangtran.json b/domains/quangtran.json
new file mode 100644
index 000000000..832f5f7d6
--- /dev/null
+++ b/domains/quangtran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Kokkini",
+ "email": "trannhatquang1104@gmail.com"
+ },
+ "record": {
+ "CNAME": "kokkini.github.io"
+ }
+}
diff --git a/domains/quantum.json b/domains/quantum.json
index d472647a4..65f56c1f6 100644
--- a/domains/quantum.json
+++ b/domains/quantum.json
@@ -1,9 +1,12 @@
{
- "owner": {
- "username": "RabbitFored",
- "email": "quantum@theostrich.eu.org"
- },
- "record": {
- "CNAME": "quantum.theostrich.eu.org"
- }
+ "owner": {
+ "username": "lakshinhemachandran",
+ "email": "lh140313@outlook.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"],
+ "CNAME": "lakshinhemachandran.github.io"
+ },
+ "proxied": true
}
diff --git a/domains/quddi.json b/domains/quddi.json
new file mode 100644
index 000000000..82da25fce
--- /dev/null
+++ b/domains/quddi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Quddi",
+ "email": "quddi6@gmail.com"
+ },
+ "record": {
+ "CNAME": "quddiy.github.io"
+ }
+}
diff --git a/domains/qwerty.json b/domains/qwerty.json
deleted file mode 100644
index 749836d47..000000000
--- a/domains/qwerty.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Redirecting to my personal website!",
- "repo": "https://github.com/qwertyiscoding/simple-redirect",
- "owner": {
- "username": "QwertyIsCoding",
- "email": "3kn5nsfkb@relay.firefox.com",
- "twitter": "qwertyiscoding"
- },
- "record": {
- "CNAME": "qwertyiscoding.github.io"
- }
-}
diff --git a/domains/r00t3d.json b/domains/r00t3d.json
index 0e81130dd..9dc0cc8bf 100644
--- a/domains/r00t3d.json
+++ b/domains/r00t3d.json
@@ -1,7 +1,6 @@
{
"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"
},
diff --git a/domains/r42mp6d7pwns.bao.json b/domains/r42mp6d7pwns.bao.json
new file mode 100644
index 000000000..3acff5b85
--- /dev/null
+++ b/domains/r42mp6d7pwns.bao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bphamict",
+ "email": "bphamict@gmail.com"
+ },
+ "record": {
+ "CNAME": "gv-t63jjd67zkqqxj.dv.googlehosted.com"
+ }
+}
diff --git a/domains/raafey.json b/domains/raafey.json
index b2cd0e262..0e0c632bb 100644
--- a/domains/raafey.json
+++ b/domains/raafey.json
@@ -4,8 +4,6 @@
"email": "raafeyraza1@gmail.com"
},
"record": {
- "A": ["69.197.135.202"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ "CNAME": "v0-personal-portfolio-tf.vercel.app"
}
}
diff --git a/domains/rachancheet.json b/domains/rachancheet.json
new file mode 100644
index 000000000..d244b1026
--- /dev/null
+++ b/domains/rachancheet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rachancheet",
+ "email": "raxxsngh37@gmail.com"
+ },
+ "record": {
+ "A": ["152.67.163.7"]
+ }
+}
diff --git a/domains/raed.json b/domains/raed.json
new file mode 100644
index 000000000..910477137
--- /dev/null
+++ b/domains/raed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "raed667",
+ "email": "contact@raed.email"
+ },
+ "record": {
+ "CNAME": "raed.dev"
+ }
+}
diff --git a/domains/rafael.json b/domains/rafael.json
index 2bbc8d123..285142fdb 100644
--- a/domains/rafael.json
+++ b/domains/rafael.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "rcerrejon",
- "email": "neoline@gmail.com"
- },
- "record": {
- "CNAME": "rafaelcerrejon.com"
- }
+ "owner": {
+ "username": "rcerrejon",
+ "email": "neoline@gmail.com"
+ },
+ "record": {
+ "CNAME": "rafaelcerrejon.com"
+ }
}
diff --git a/domains/rafaelfernandes.json b/domains/rafaelfernandes.json
new file mode 100644
index 000000000..8175b139a
--- /dev/null
+++ b/domains/rafaelfernandes.json
@@ -0,0 +1,17 @@
+{
+ "description": "Personal potifolho site.",
+ "repo": "https://github.com/RafaelFernandesBR/rafaelfernandes.github.io",
+ "owner": {
+ "username": "RafaelFernandesBR",
+ "email": "marcorafaeldemelo16@protonmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ },
+ "proxied": true
+}
diff --git a/domains/rafinia.json b/domains/rafinia.json
new file mode 100644
index 000000000..20e60ffbc
--- /dev/null
+++ b/domains/rafinia.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nRafinia",
+ "email": "naser.r@gmail.com"
+ },
+ "record": {
+ "CNAME": "naser.rafinia.info"
+ }
+}
diff --git a/domains/rafsanza.json b/domains/rafsanza.json
new file mode 100644
index 000000000..b53f6420b
--- /dev/null
+++ b/domains/rafsanza.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rafsanza-hub",
+ "email": "rapsanza@gmail.com"
+ },
+ "record": {
+ "CNAME": "rafsanza.vercel.app"
+ }
+}
diff --git a/domains/raghav.json b/domains/raghav.json
new file mode 100644
index 000000000..e290738b3
--- /dev/null
+++ b/domains/raghav.json
@@ -0,0 +1,11 @@
+{
+ "description": "Flex",
+ "repo": "https://github.com/GodKode69/GodKode69.github.io",
+ "owner": {
+ "username": "GodKode69",
+ "email": "knownasraghav@gmail.com"
+ },
+ "record": {
+ "CNAME": "godkode69.github.io"
+ }
+}
diff --git a/domains/raghu.json b/domains/raghu.json
index ae3043664..d7a51e988 100644
--- a/domains/raghu.json
+++ b/domains/raghu.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "raghu-8",
- "email": "raghu.project.websites@gmail.com"
- },
- "record": {
- "A": ["76.76.21.21"]
- }
+ "owner": {
+ "username": "raghu-8",
+ "email": "raghu.project.websites@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
}
diff --git a/domains/rahatrumi.json b/domains/rahatrumi.json
new file mode 100644
index 000000000..d9cb4c7c7
--- /dev/null
+++ b/domains/rahatrumi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rahat87942R",
+ "email": "rumirahat63@gmail.com"
+ },
+ "record": {
+ "CNAME": "rahatrumi.vercel.app"
+ }
+}
diff --git a/domains/rahulc0dy.json b/domains/rahulc0dy.json
new file mode 100644
index 000000000..d1cdc8186
--- /dev/null
+++ b/domains/rahulc0dy.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/rahulc0dy/rahulc0dy.github.io",
+ "owner": {
+ "username": "rahulc0dy",
+ "email": "codyrahulop@gmail.com"
+ },
+ "record": {
+ "CNAME": "rahulc0dy.github.io"
+ }
+}
diff --git a/domains/rahulsunil.json b/domains/rahulsunil.json
new file mode 100644
index 000000000..3e6e7ad57
--- /dev/null
+++ b/domains/rahulsunil.json
@@ -0,0 +1,11 @@
+{
+ "description": "Rahul Sunil - GenAI Engineer",
+ "repo": "https://github.com/rahulsunil2/rahulsunil-code-portfolio",
+ "owner": {
+ "username": "rahulsunil2",
+ "email": "rahulsunil2@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/rahulverma.json b/domains/rahulverma.json
new file mode 100644
index 000000000..1d47b75a2
--- /dev/null
+++ b/domains/rahulverma.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Developer Portfolio",
+ "repo": "https://github.com/SudoRV/register",
+ "owner": {
+ "username": "SudoRV",
+ "email": "rahulverma.1.2005@gamil.com"
+ },
+ "record": {
+ "CNAME": "rahul-verma.onrender.com"
+ }
+}
diff --git a/domains/rajeshkumar.json b/domains/rajeshkumar.json
new file mode 100644
index 000000000..8cb72bb81
--- /dev/null
+++ b/domains/rajeshkumar.json
@@ -0,0 +1,10 @@
+{
+ "domain": "rajeshkumar.is-a.dev",
+ "owner": {
+ "username": "Dev-Rajeshkumar",
+ "email": "rajesh8778354586@gmail.com"
+ },
+ "record": {
+ "CNAME": "dev-rajeshkumars.vercel.app"
+ }
+}
diff --git a/domains/rajeshreddy.json b/domains/rajeshreddy.json
new file mode 100644
index 000000000..d5995d048
--- /dev/null
+++ b/domains/rajeshreddy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rajesh-reddy1",
+ "email": "mrrajeshreddy1@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/rajputshashank.json b/domains/rajputshashank.json
new file mode 100644
index 000000000..995e6296b
--- /dev/null
+++ b/domains/rajputshashank.json
@@ -0,0 +1,11 @@
+{
+ "description": "Shashank's portfolio",
+ "repo": "https://github.com/rajputshashank003/details",
+ "owner": {
+ "username": "rajputshashank003",
+ "email": "hariomshashank@gmail.com"
+ },
+ "record": {
+ "CNAME": "rajputshashank.vercel.app"
+ }
+}
diff --git a/domains/rakib.json b/domains/rakib.json
index 0190bf6ec..ec82edab9 100644
--- a/domains/rakib.json
+++ b/domains/rakib.json
@@ -1,11 +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"
- }
+ "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/ramiro.json b/domains/ramiro.json
index c81db2dd8..e6b06447b 100644
--- a/domains/ramiro.json
+++ b/domains/ramiro.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "email": "urteagaramiro33@gmail.com"
- },
- "record": {
- "CNAME": "portafolio-chi-gilt.vercel.app"
- },
- "proxied": false
+ "owner": {
+ "email": "urteagaramiro33@gmail.com"
+ },
+ "record": {
+ "CNAME": "portafolio-chi-gilt.vercel.app"
+ },
+ "proxied": false
}
diff --git a/domains/ramirocosa.json b/domains/ramirocosa.json
new file mode 100644
index 000000000..a590c441f
--- /dev/null
+++ b/domains/ramirocosa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RadikeCosa",
+ "email": "ramirocosa@gmail.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/rammeghe.json b/domains/rammeghe.json
index 1c6deff23..1a948b6c5 100644
--- a/domains/rammeghe.json
+++ b/domains/rammeghe.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "kartikshriwas",
- "email": ""
+ "username": "kartikshriwas"
},
"record": {
"CNAME": "rammeghe.github.io"
diff --git a/domains/ramya.json b/domains/ramya.json
new file mode 100644
index 000000000..0d4aa83e9
--- /dev/null
+++ b/domains/ramya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ramya-Me",
+ "email": "ramyashah.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "ramya-umber.vercel.app"
+ }
+}
diff --git a/domains/randika.json b/domains/randika.json
new file mode 100644
index 000000000..44a51c5c6
--- /dev/null
+++ b/domains/randika.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "randika-srimal"
+ },
+ "record": {
+ "CNAME": "area51projects.com"
+ }
+}
diff --git a/domains/rappergi.json b/domains/rappergi.json
new file mode 100644
index 000000000..07a5ddf9c
--- /dev/null
+++ b/domains/rappergi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rappergi",
+ "email": "hoangvanchu202@gmail.com"
+ },
+ "record": {
+ "NS": ["norm.ns.cloudflare.com", "pola.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/rapter.json b/domains/rapter.json
new file mode 100644
index 000000000..9ec8d8fe4
--- /dev/null
+++ b/domains/rapter.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rapter001",
+ "email": "rapter001yt@gmail.com"
+ },
+ "record": {
+ "NS": ["martha.ns.cloudflare.com", "quinton.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/raspicloud.json b/domains/raspicloud.json
new file mode 100644
index 000000000..376aa0682
--- /dev/null
+++ b/domains/raspicloud.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mkrage",
+ "email": "manuel.krage@gmx.de"
+ },
+ "record": {
+ "A": ["141.144.239.115"]
+ }
+}
diff --git a/domains/rathee.json b/domains/rathee.json
new file mode 100644
index 000000000..8b07733a3
--- /dev/null
+++ b/domains/rathee.json
@@ -0,0 +1,11 @@
+{
+ "description": "Abhinav' Welcome to my portfolio",
+ "repo": "https://github.com/abhinavrathee/Folio-AbhinavRathee",
+ "owner": {
+ "username": "abhinavrathee",
+ "email": "abhinavrathee00007@gmail.com"
+ },
+ "record": {
+ "CNAME": "rathee.vercel.app"
+ }
+}
diff --git a/domains/ravi.json b/domains/ravi.json
new file mode 100644
index 000000000..4bf4de478
--- /dev/null
+++ b/domains/ravi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website of Ravi",
+ "repo": "https://github.com/ravikhokhar23/ravikhokhar23.github.io",
+ "owner": {
+ "username": "ravikhokhar23",
+ "email": "khokhar.ravikumar@gmail.com"
+ },
+ "record": {
+ "CNAME": "ravikhokhar23.github.io"
+ }
+}
diff --git a/domains/raw-api.json b/domains/raw-api.json
index b8d2e61c5..48df34639 100644
--- a/domains/raw-api.json
+++ b/domains/raw-api.json
@@ -4,6 +4,6 @@
"email": "admin@is-a.dev"
},
"record": {
- "CNAME": "is-a.dev"
+ "URL": "https://raw.is-a.dev"
}
}
diff --git a/domains/raw.json b/domains/raw.json
index cc2562542..b8d2e61c5 100644
--- a/domains/raw.json
+++ b/domains/raw.json
@@ -4,6 +4,6 @@
"email": "admin@is-a.dev"
},
"record": {
- "URL": "https://raw-api.is-a.dev"
+ "CNAME": "is-a.dev"
}
}
diff --git a/domains/rawr.json b/domains/rawr.json
new file mode 100644
index 000000000..1bac253e7
--- /dev/null
+++ b/domains/rawr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Yunexiz",
+ "discord": "yunexiz"
+ },
+ "record": {
+ "URL": "https://y.is-a.dev"
+ }
+}
diff --git a/domains/rayane-nekena.json b/domains/rayane-nekena.json
index 201528a0b..fd871cffc 100644
--- a/domains/rayane-nekena.json
+++ b/domains/rayane-nekena.json
@@ -1,11 +1,11 @@
{
- "description": "Domain for my personal blog",
+ "description": "Domain for my personal portfolio",
"repo": "https://github.com/Online13/Online13.github.io",
"owner": {
"username": "Online13",
- "email": "Rratiarivelo@gmail.com"
+ "email": "rratiarivelo@gmail.com"
},
"record": {
- "CNAME": "online13.github.io"
+ "CNAME": "portfolio-cwk.pages.dev"
}
}
diff --git a/domains/raynaldescala.json b/domains/raynaldescala.json
new file mode 100644
index 000000000..53e9f8c27
--- /dev/null
+++ b/domains/raynaldescala.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "raynaldescala",
+ "email": "raynaldescala01@gmail.com"
+ },
+ "record": {
+ "CNAME": "raynaldescala.vercel.app"
+ }
+}
diff --git a/domains/rayvid.json b/domains/rayvid.json
index e26d64386..a0e061cac 100644
--- a/domains/rayvid.json
+++ b/domains/rayvid.json
@@ -1,6 +1,5 @@
{
"description": "Rayvid's website",
- "repo": "https://github.com/Rayvid",
"owner": {
"username": "rayvid",
"email": "gin.kisonas@gmail.com"
diff --git a/domains/rbk.json b/domains/rbk.json
new file mode 100644
index 000000000..73f84d35a
--- /dev/null
+++ b/domains/rbk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "its-me-rbk",
+ "email": "ceo@greendwarftech.com"
+ },
+ "record": {
+ "CNAME": "rubhak.greendwarftech.com"
+ }
+}
diff --git a/domains/rblx.json b/domains/rblx.json
index fd934b900..94aaf2ff7 100644
--- a/domains/rblx.json
+++ b/domains/rblx.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "r-b-l-x",
- "email": "178317246+r-b-l-x@users.noreply.github.com"
+ "username": "r-b-l-x"
},
"record": {
"CNAME": "r-b-l-x.github.io"
diff --git a/domains/realfara.json b/domains/realfara.json
index 71d688c8c..29b94d786 100644
--- a/domains/realfara.json
+++ b/domains/realfara.json
@@ -4,6 +4,17 @@
"email": "faradey.iskra@mail.ru"
},
"record": {
- "A": ["185.199.111.153"]
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ]
}
}
diff --git a/domains/redolent.json b/domains/redolent.json
index d8ad7ef03..5512e045b 100644
--- a/domains/redolent.json
+++ b/domains/redolent.json
@@ -4,7 +4,6 @@
"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/reejit.json b/domains/reejit.json
new file mode 100644
index 000000000..3a5d8a374
--- /dev/null
+++ b/domains/reejit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "reejit",
+ "email": "guardiansofspartax@gmail.com"
+ },
+ "record": {
+ "NS": ["gloria.ns.cloudflare.com", "west.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/refayet.json b/domains/refayet.json
index 4d2c70bb9..6dde1072e 100644
--- a/domains/refayet.json
+++ b/domains/refayet.json
@@ -3,7 +3,6 @@
"username": "refayet-dev",
"email": "refayet0096@gmail.com"
},
- "repo": "https://github.com/refayet-dev.github.io",
"description": "refayet's portfolio site",
"record": {
"CNAME": "refayet-dev.github.io"
diff --git a/domains/region.json b/domains/region.json
index f9cd5da52..2434bc609 100644
--- a/domains/region.json
+++ b/domains/region.json
@@ -4,7 +4,6 @@
"discord": "1264096408395317289",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WNRBeRSr5EzISmqLUQ2fxgAxern45vcHBcO0OhY8NGPm-MnxKCTOc6yWhmDfS3Mu28S9xI_WG3uQ46SYdVfIQKKoY8kGvirmXpftzJ3we_IqMgEH-7MyG35R0fnxQm6LMVKY41LncduwA1jh9sKmGk30oYcWU1u410j_ZxNGr2yzE17vZjJVBUxGFpRR2Rz3QyKTkHeBLWdTEfCSAYIv7JgJ0IH-iYN7DtqCjn2GGJPEMJYNVpivfUKPCNEqr29_f7clFJHifnmDKLG1BjQFitpO0YOyVTeqYwK0lcig5klf0QNTbJ7irj5uWokMkgKeTcQ1yYsKV4-Io0lTGW0ACA.FBJGaklyR9Ew9uB3rumREQ.tiWkr-YgRATVbC7ZHY6iAzEkcSPA8xCI4nYgQ9m-4k9JZ0hM8FgM7YpZW3Nuv7fl0S4s-QyHX8bilZQnQuQvTZ0AMMI7swTarwu4mvAXkr4.RAYWmatCs8lPwxLir16DVA"
},
-
"record": {
"CNAME": "regioniosvn.github.io"
}
diff --git a/domains/regiondavid.json b/domains/regiondavid.json
index 03cb8587c..8b49a5ce2 100644
--- a/domains/regiondavid.json
+++ b/domains/regiondavid.json
@@ -6,6 +6,5 @@
"record": {
"CNAME": "regiondavid.github.io"
},
- "repo": "https://github.com/regiondavid",
"description": "regiondavid's new website"
}
diff --git a/domains/reiiv-beta.json b/domains/reiiv-beta.json
new file mode 100644
index 000000000..c6f4ea812
--- /dev/null
+++ b/domains/reiiv-beta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "revansp",
+ "email": "revanspstudy28@gmail.com"
+ },
+ "record": {
+ "CNAME": "reiiv-beta.vercel.app"
+ }
+}
diff --git a/domains/reiiv-dev.json b/domains/reiiv-dev.json
new file mode 100644
index 000000000..5946005db
--- /dev/null
+++ b/domains/reiiv-dev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "revansp",
+ "email": "revanspstudy28@gmail.com"
+ },
+ "record": {
+ "CNAME": "reiiv-dev.vercel.app"
+ }
+ }
diff --git a/domains/reiiv.json b/domains/reiiv.json
new file mode 100644
index 000000000..a11069afb
--- /dev/null
+++ b/domains/reiiv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "revansp",
+ "email": "revanspstudy28@gmail.com"
+ },
+ "record": {
+ "CNAME": "reiiv.vercel.app"
+ }
+}
diff --git a/domains/reiya.json b/domains/reiya.json
new file mode 100644
index 000000000..840a23f7a
--- /dev/null
+++ b/domains/reiya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "reiya",
+ "discord": "atlayer3"
+ },
+ "record": {
+ "CNAME": "atlayer3.net"
+ }
+}
diff --git a/domains/rejectmodders.json b/domains/rejectmodders.json
new file mode 100644
index 000000000..88d4706d3
--- /dev/null
+++ b/domains/rejectmodders.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "RejectModders",
+ "discord": "RejectModders",
+ "email": "rejectmodders@disutils.com"
+ },
+ "record": {
+ "CNAME": "rejectmoddersis-adev.vercel.app"
+ }
+}
diff --git a/domains/renant.json b/domains/renant.json
new file mode 100644
index 000000000..86e36854f
--- /dev/null
+++ b/domains/renant.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "renant",
+ "email": "renan_replay@live.com"
+ },
+ "record": {
+ "CNAME": "renant.vercel.app"
+ }
+}
diff --git a/domains/renzcole.json b/domains/renzcole.json
index b967a85d3..ba5e84817 100644
--- a/domains/renzcole.json
+++ b/domains/renzcole.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "CodeBuddySLTNS",
- "email": "renz2arjhay@gmail.com"
- },
- "record": {
- "CNAME": "renzcole.vercel.app"
- }
+ "owner": {
+ "username": "CodeBuddySLTNS",
+ "email": "renz2arjhay@gmail.com"
+ },
+ "record": {
+ "CNAME": "renzcole.vercel.app"
+ }
}
diff --git a/domains/repo.abdullahcxd.json b/domains/repo.abdullahcxd.json
new file mode 100644
index 000000000..6926427dc
--- /dev/null
+++ b/domains/repo.abdullahcxd.json
@@ -0,0 +1,11 @@
+{
+ "description": "The use of this domain is to host my Java projects for public use",
+ "owner": {
+ "username": "abdullahcxd",
+ "email": "sabdullahcxd@gmail.com",
+ "discord": "sabdullahcxd"
+ },
+ "record": {
+ "CNAME": "abdullahcxd-reposilite-server.fly.dev"
+ }
+}
diff --git a/domains/rescenic.json b/domains/rescenic.json
index d15d05ae2..5713f2fae 100644
--- a/domains/rescenic.json
+++ b/domains/rescenic.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "rescenic",
- "email": "admin@rescenic.my.id"
+ "username": "rescenic",
+ "email": "admin@rescenic.my.id"
},
"record": {
- "CNAME": "rescenic.github.io"
+ "CNAME": "rescenic.github.io"
}
}
diff --git a/domains/resend._domainkey.auth.sign.alvin.json b/domains/resend._domainkey.auth.sign.alvin.json
new file mode 100644
index 000000000..37fb5d358
--- /dev/null
+++ b/domains/resend._domainkey.auth.sign.alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "TXT": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJKRhjsqeFCeiJu7RCgTQLle1cBelrRmpLQJoJIc1JHTBSc0RNuLTwMEWzE3Kb/ichQ+9JiOnSAEYXM/HYmdPdBL0e1xj5WJum/kKidmyaSJunNVUmpy85BgbIex3icbnZcTaUOXzTTPdxnJJZy5iJWGt39/hYkHKdOuYtNDeKJwIDAQAB"
+ }
+}
diff --git a/domains/resend._domainkey.blogs.akk1to.json b/domains/resend._domainkey.blogs.akk1to.json
new file mode 100644
index 000000000..d3bd69516
--- /dev/null
+++ b/domains/resend._domainkey.blogs.akk1to.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCkC3QeDPeGYFp3nDf2GByvCWnS24VLN9lnWJWWnkPNJGiFuoucjxU8CpeD74C1XlZDz6dr/zcNPsOrh5Zi/87XugfwQsDzjfPPosCRIGa1SVqm1S4kdaT2Ms7i6//x5Y0y7uoE+dK2EecDVwLJAqc93Yipp+xihK9HOf4ffO6nxwIDAQAB"
+ }
+}
diff --git a/domains/retro.horibyte.json b/domains/retro.horibyte.json
new file mode 100644
index 000000000..4a1863917
--- /dev/null
+++ b/domains/retro.horibyte.json
@@ -0,0 +1,11 @@
+{
+ "description": "Horibyte's personal website",
+ "repo": "https://github.com/horibyte/horibyte.github.io",
+ "owner": {
+ "username": "horibyte",
+ "email": "thehoribyte@gmail.com"
+ },
+ "record": {
+ "CNAME": "horibyte.github.io"
+ }
+}
diff --git a/domains/revansp.json b/domains/revansp.json
new file mode 100644
index 000000000..18e211cd3
--- /dev/null
+++ b/domains/revansp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "revansp",
+ "email": "revanspstudy28@gmail.com"
+ },
+ "record": {
+ "CNAME": "revansp.pages.dev"
+ }
+}
diff --git a/domains/reyuki.json b/domains/reyuki.json
new file mode 100644
index 000000000..f2e722485
--- /dev/null
+++ b/domains/reyuki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "realyukii",
+ "email": "me@reyuki.site"
+ },
+ "record": {
+ "CNAME": "www.reyuki.site"
+ }
+}
diff --git a/domains/rezz.json b/domains/rezz.json
index 4103ecc70..45a2500fc 100644
--- a/domains/rezz.json
+++ b/domains/rezz.json
@@ -1,5 +1,4 @@
{
- "repo": "https://github.com/RezzedUp",
"owner": {
"username": "RezzedUp",
"twitter": "RezzedUp"
diff --git a/domains/rhushabhrathod.json b/domains/rhushabhrathod.json
new file mode 100644
index 000000000..59fc9c31b
--- /dev/null
+++ b/domains/rhushabhrathod.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rhushabhrathod",
+ "email": "rhushabhrathodmark9@gmail.com"
+ },
+ "record": {
+ "CNAME": "rhushabhrathod.github.io"
+ }
+}
diff --git a/domains/riccardo126.json b/domains/riccardo126.json
new file mode 100644
index 000000000..3d8ca7fd4
--- /dev/null
+++ b/domains/riccardo126.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "riccardo126",
+ "email": "riccardopassacantando@gmail.com"
+ },
+ "record": {
+ "CNAME": "riccardo126.vercel.app"
+ }
+}
diff --git a/domains/ridwan.json b/domains/ridwan.json
new file mode 100644
index 000000000..3e4a2b6c8
--- /dev/null
+++ b/domains/ridwan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ridwanyinus",
+ "email": "ridwanyinusa15@gmail.com"
+ },
+ "record": {
+ "CNAME": "ridwanyinus.vercel.app"
+ }
+}
diff --git a/domains/ridwanyinus.json b/domains/ridwanyinus.json
deleted file mode 100644
index b077d79f5..000000000
--- a/domains/ridwanyinus.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My Portfolio",
- "repo": "https://github.com/ridwanyinus/pfp-2",
- "owner": {
- "username": "ridwanyinusa",
- "email": "ridwanyinusa15@gmail.com"
- },
- "record": {
- "CNAME": "ridwanyinusa.netlify.app"
- }
-}
diff --git a/domains/rifai.json b/domains/rifai.json
new file mode 100644
index 000000000..c32ef16c3
--- /dev/null
+++ b/domains/rifai.json
@@ -0,0 +1,10 @@
+{
+ "description": "Using is-a.dev for my personal portfolio",
+ "owner": {
+ "username": "humanwhodebugs",
+ "email": "humanwhodebugs@gmail.com"
+ },
+ "record": {
+ "CNAME": "humanwhodebugs.netlify.app"
+ }
+}
diff --git a/domains/rilliat.json b/domains/rilliat.json
new file mode 100644
index 000000000..d21cc827c
--- /dev/null
+++ b/domains/rilliat.json
@@ -0,0 +1,12 @@
+{
+ "description": "Rilliat's is-a.dev domain",
+ "repo": "https://github.com/Rilliat/rilliat.github.io",
+ "owner": {
+ "username": "Rilliat",
+ "email": "rilliatserver@gmail.com",
+ "telegram": "rilliat.t.me"
+ },
+ "record": {
+ "URL": "https://www.rilliat.ru"
+ }
+}
diff --git a/domains/rishabh.json b/domains/rishabh.json
new file mode 100644
index 000000000..e41ce6faf
--- /dev/null
+++ b/domains/rishabh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Is a dev subdomain for rishabh",
+ "repo": "https://github.com/rishabhc/rishabhc.github.io",
+ "owner": {
+ "username": "rishabhc",
+ "email": "me@rishabh.ch"
+ },
+ "record": {
+ "CNAME": "rishabhc.github.io"
+ }
+}
diff --git a/domains/risqiahmad.json b/domains/risqiahmad.json
new file mode 100644
index 000000000..0a4baad15
--- /dev/null
+++ b/domains/risqiahmad.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "risqi17",
+ "email": "ahmadreys@gmail.com",
+ "discord": "risqi_ahmad9230"
+ },
+ "record": {
+ "CNAME": "nextjs-notion-starter-kit-transitive-bullshit.vercel.app"
+ }
+}
diff --git a/domains/ritesh.json b/domains/ritesh.json
new file mode 100644
index 000000000..17521b68f
--- /dev/null
+++ b/domains/ritesh.json
@@ -0,0 +1,11 @@
+{
+ "description": "For personal portfolio website.",
+ "repo": "https://github.com/riteshsargam/register",
+ "owner": {
+ "username": "riteshsargam",
+ "email": "ritesh.sargam00@gmail.com"
+ },
+ "record": {
+ "CNAME": "riteshsargam.github.io"
+ }
+}
diff --git a/domains/rith.json b/domains/rith.json
new file mode 100644
index 000000000..15ebde14e
--- /dev/null
+++ b/domains/rith.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rithb898",
+ "email": "rithb2004@gmail.com"
+ },
+ "record": {
+ "CNAME": "rith-portfolio-next-js.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/ritwick2006.json b/domains/ritwick2006.json
index 5ab1790e8..1c23da0d1 100644
--- a/domains/ritwick2006.json
+++ b/domains/ritwick2006.json
@@ -1,6 +1,5 @@
{
"description": "Ritwick's website",
- "repo": "https://github.com/BOTDEV123",
"owner": {
"username": "BOTDEV123",
"email": "ritwick2006@hotmail.com"
diff --git a/domains/rizkykr.json b/domains/rizkykr.json
new file mode 100644
index 000000000..bcab1cd18
--- /dev/null
+++ b/domains/rizkykr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rizkykr",
+ "email": "me@rizkykr.com"
+ },
+ "description": "Personal Website for Personal Branding",
+ "record": {
+ "CNAME": "rizkykr-is-a-dev.rizkykr.workers.dev"
+ },
+ "proxied": false
+}
diff --git a/domains/rizqi.json b/domains/rizqi.json
new file mode 100644
index 000000000..d3cc7bfa6
--- /dev/null
+++ b/domains/rizqi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portofolio Website.",
+ "repo": "https://github.com/RizqiSeijuuro/portfolio",
+ "owner": {
+ "username": "RizqiSeijuuro",
+ "email": "rizqiansyah52@gmail.com"
+ },
+ "record": {
+ "CNAME": "rizqiseijuuro.github.io"
+ }
+}
diff --git a/domains/rizz.json b/domains/rizz.json
index 8d131c18a..44ee87226 100644
--- a/domains/rizz.json
+++ b/domains/rizz.json
@@ -1,9 +1,10 @@
{
- "owner": {
- "username": "bananaking6",
- "discord": "skibidibagel"
- },
- "record": {
- "CNAME": "skibidi-2.vercel.app"
- }
+ "owner": {
+ "username": "bananaking6",
+ "discord": "skibidibagel"
+ },
+
+ "record": {
+ "CNAME": "bananaking6.github.io"
+ }
}
diff --git a/domains/ro.json b/domains/ro.json
new file mode 100644
index 000000000..6c8614026
--- /dev/null
+++ b/domains/ro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameRoMan",
+ "email": "gameromandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gameroman.pages.dev"
+ }
+}
diff --git a/domains/robin.json b/domains/robin.json
new file mode 100644
index 000000000..3ded27d8e
--- /dev/null
+++ b/domains/robin.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/RobinJesba/robinjesba.github.io",
+ "owner": {
+ "username": "RobinJesba",
+ "email": "jb.robinm@gmail.com"
+ },
+ "record": {
+ "CNAME": "robinjesba.github.io"
+ }
+}
diff --git a/domains/robot.json b/domains/robot.json
new file mode 100644
index 000000000..5b7827f77
--- /dev/null
+++ b/domains/robot.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ROBOTofficial",
+ "email": "robot@thunlights.com"
+ },
+ "record": {
+ "URL": "https://github.com/ROBOTofficial"
+ }
+}
diff --git a/domains/rodolfo.json b/domains/rodolfo.json
new file mode 100644
index 000000000..2ad8be59f
--- /dev/null
+++ b/domains/rodolfo.json
@@ -0,0 +1,11 @@
+{
+ "description": "Rodolfo Rodrigues developer page",
+ "repo": "https://github.com/rudwolf/rudwolf.github.io",
+ "owner": {
+ "username": "rudwolf",
+ "email": "rudwolf@gmail.com"
+ },
+ "record": {
+ "CNAME": "rudwolf.github.io"
+ }
+}
diff --git a/domains/roei.json b/domains/roei.json
new file mode 100644
index 000000000..08d323ffd
--- /dev/null
+++ b/domains/roei.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roei111",
+ "email": "roeiyaacobi@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/roger.json b/domains/roger.json
new file mode 100644
index 000000000..472585806
--- /dev/null
+++ b/domains/roger.json
@@ -0,0 +1,12 @@
+{
+ "description": "Documentation website for is-a.dev",
+ "repo": "https://github.com/rogerHuntGauntlet/registerisadev",
+ "owner": {
+ "username": "rogerHuntGauntlet",
+ "email": "regorhunt02052@gmail.com",
+ "discord": "roger_jgs404040"
+ },
+ "record": {
+ "CNAME": "rogerbhuntiii.vercel.app"
+ }
+}
diff --git a/domains/rogo.json b/domains/rogo.json
new file mode 100644
index 000000000..a4b3384d8
--- /dev/null
+++ b/domains/rogo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BenRogozinski",
+ "discord": "BenDaBuilder",
+ "email": "brogodev@gmail.com"
+ },
+ "record": {
+ "A": ["5.161.233.190"],
+ "AAAA": ["2a01:4ff:f0:dd7c::1"]
+ }
+}
diff --git a/domains/rohan.json b/domains/rohan.json
index 832a60dac..f59d8c3d8 100644
--- a/domains/rohan.json
+++ b/domains/rohan.json
@@ -1,6 +1,5 @@
{
"description": "Rohan's devlog and portfolio",
- "repo": "https://github.com/rohan-bansal",
"owner": {
"username": "Rohan-Bansal",
"email": "rohan@rbansal.dev"
diff --git a/domains/rohanjaiswal.json b/domains/rohanjaiswal.json
index d6fd5078f..998e3c231 100644
--- a/domains/rohanjaiswal.json
+++ b/domains/rohanjaiswal.json
@@ -1,11 +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"
- }
+ "description": "Rohan Jaiswal's portfolio",
+ "repo": "https://github.com/jaiswalrohan8796/jaiswalrohan8796",
+ "owner": {
+ "username": "jaiswalrohan8796",
+ "email": "jaiswalrohan8796@gmail.com"
+ },
+ "record": {
+ "CNAME": "jaiswalrohan8796.github.io"
+ }
}
diff --git a/domains/rohitgunthal.json b/domains/rohitgunthal.json
new file mode 100644
index 000000000..eef797274
--- /dev/null
+++ b/domains/rohitgunthal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rohitgunthal18",
+ "email": "rohitgunthal1819@gmail.com"
+ },
+ "record": {
+ "CNAME": "rohitgunthal18.github.io"
+ }
+}
diff --git a/domains/rohith.json b/domains/rohith.json
index a01a24b8e..b575ce386 100644
--- a/domains/rohith.json
+++ b/domains/rohith.json
@@ -1,6 +1,5 @@
{
"description": "Rohith's personal website",
- "repo": "https://github.com/rohithp7777",
"owner": {
"username": "rohithp7777",
"email": "rohithp8899@gmail.com"
diff --git a/domains/rohithborana.json b/domains/rohithborana.json
new file mode 100644
index 000000000..2ec95d269
--- /dev/null
+++ b/domains/rohithborana.json
@@ -0,0 +1,11 @@
+{
+ "description": "Rohith's personal website",
+ "repo": "https://github.com/therohithborana/portfolio",
+ "owner": {
+ "username": "therohithborana",
+ "email": "boranarohith07@gmail.com"
+ },
+ "record": {
+ "CNAME": "therohithborana.vercel.app"
+ }
+}
diff --git a/domains/rohithkumar.json b/domains/rohithkumar.json
index 3c15206b9..fd3f9478b 100644
--- a/domains/rohithkumar.json
+++ b/domains/rohithkumar.json
@@ -1,6 +1,5 @@
{
"description": "My Personal Website",
- "repo": "https://github.com/killTheDB",
"owner": {
"username": "killTheDB",
"email": "jayanarohith7@gmail.com"
diff --git a/domains/roig.json b/domains/roig.json
index ae9ecd76e..006082103 100644
--- a/domains/roig.json
+++ b/domains/roig.json
@@ -1,6 +1,5 @@
{
"description": "Roig's website",
- "repo": "https://github.com/groig",
"owner": {
"username": "groig",
"email": "groig@protonmail.com"
diff --git a/domains/roki.json b/domains/roki.json
new file mode 100644
index 000000000..dccec75d7
--- /dev/null
+++ b/domains/roki.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Roki100",
+ "discord": "289479495444987904"
+ },
+ "record": {
+ "CNAME": "edge.redirect.pizza"
+ }
+}
diff --git a/domains/rom.json b/domains/rom.json
new file mode 100644
index 000000000..6c8614026
--- /dev/null
+++ b/domains/rom.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameRoMan",
+ "email": "gameromandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gameroman.pages.dev"
+ }
+}
diff --git a/domains/roma.json b/domains/roma.json
new file mode 100644
index 000000000..6c8614026
--- /dev/null
+++ b/domains/roma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameRoMan",
+ "email": "gameromandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "gameroman.pages.dev"
+ }
+}
diff --git a/domains/romero.json b/domains/romero.json
new file mode 100644
index 000000000..3cbd67b1f
--- /dev/null
+++ b/domains/romero.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "helloromero",
+ "email": "hello@helloromero.co.uk"
+ },
+ "record": {
+ "CNAME": "helloromero.co.uk"
+ }
+}
diff --git a/domains/ronaldo.json b/domains/ronaldo.json
index d3f5275e6..9fac9e28d 100644
--- a/domains/ronaldo.json
+++ b/domains/ronaldo.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ronaldoao",
- "email": "ronaldoa.ojeda@gmail.com"
- },
- "record": {
- "CNAME": "vite-react-ronaldos-projects-c3f1d8be.vercel.app"
- }
+ "owner": {
+ "username": "ronaldoao",
+ "email": "ronaldoa.ojeda@gmail.com"
+ },
+ "record": {
+ "CNAME": "vite-react-ronaldos-projects-c3f1d8be.vercel.app"
+ }
}
diff --git a/domains/ronnieaban.json b/domains/ronnieaban.json
new file mode 100644
index 000000000..65b6406bd
--- /dev/null
+++ b/domains/ronnieaban.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ronnieaban",
+ "email": "ronnieaban@gmail.com"
+ },
+ "record": {
+ "CNAME": "ronnieaban.pages.dev"
+ }
+}
diff --git a/domains/roque.json b/domains/roque.json
new file mode 100644
index 000000000..f040bc5c0
--- /dev/null
+++ b/domains/roque.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "luisfroquez",
+ "email": "luisfroque@gmail.com",
+ "discord": "lroque.dev"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/roshan.json b/domains/roshan.json
index 6ca21a0e2..0e8534360 100644
--- a/domains/roshan.json
+++ b/domains/roshan.json
@@ -1,12 +1,13 @@
{
"description": "Personal portfolio",
- "repo": "https://github.com/roshan1337d/roshan1337d.github.io",
"owner": {
- "username": "roshan1337d",
- "email": "roshan1337x@gmail.com",
- "twitter": "roshan1337d"
+ "username": "roshan1885",
+ "discord": "roshan1885"
},
"record": {
- "CNAME": "roshan1337d.github.io"
- }
+ "CNAME": "roshan1885.github.io",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ },
+ "proxied": true
}
diff --git a/domains/roshangm.json b/domains/roshangm.json
new file mode 100644
index 000000000..598bd270d
--- /dev/null
+++ b/domains/roshangm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roshangm1",
+ "email": "roshan@brainants.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/roshansahani.json b/domains/roshansahani.json
new file mode 100644
index 000000000..37ca5212c
--- /dev/null
+++ b/domains/roshansahani.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portofolio Website",
+ "repo": "https://github.com/felixop7/Portfolio",
+ "owner": {
+ "username": "felixop7",
+ "email": "roshansahani226@gmail.com"
+ },
+ "record": {
+ "CNAME": "felixop7.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/rouf0x.json b/domains/rouf0x.json
index 47555a910..ad4235268 100644
--- a/domains/rouf0x.json
+++ b/domains/rouf0x.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "Rouf0x",
- "email": "gabriel.ruf@gmail.com",
"discord": "790712104058617876"
},
"record": {
diff --git a/domains/roufox.json b/domains/roufox.json
index 653875194..cdcfccd46 100644
--- a/domains/roufox.json
+++ b/domains/roufox.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "Rouf0x",
- "email": "gabriel.ruf@gmail.com",
"discord": "790712104058617876"
},
"record": {
diff --git a/domains/roydon.json b/domains/roydon.json
index b1730c21b..7a37917c2 100644
--- a/domains/roydon.json
+++ b/domains/roydon.json
@@ -1,6 +1,5 @@
{
"description": "URL forwarder",
- "repo": "https://github.com/roydondsouza",
"owner": {
"username": "roydondsouza",
"twitter": "roydondsouza"
diff --git a/domains/roydondsouza.json b/domains/roydondsouza.json
index b2a3a0488..a9e01d94c 100644
--- a/domains/roydondsouza.json
+++ b/domains/roydondsouza.json
@@ -1,6 +1,5 @@
{
"description": "URL forwarder",
- "repo": "https://github.com/roydondsouza",
"owner": {
"username": "roydondsouza",
"twitter": "roydondsouza"
diff --git a/domains/roylee0704.json b/domains/roylee0704.json
new file mode 100644
index 000000000..66a6a4721
--- /dev/null
+++ b/domains/roylee0704.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roylee0704",
+ "email": "roylee0704@gmail.com"
+ },
+ "record": {
+ "CNAME": "roylee0704.github.io"
+ }
+}
diff --git a/domains/rpadrell.json b/domains/rpadrell.json
new file mode 100644
index 000000000..1b0fe5f20
--- /dev/null
+++ b/domains/rpadrell.json
@@ -0,0 +1,11 @@
+{
+ "description": "Roger Padrell's portfolio website",
+ "repo": "https://github.com/roger-padrell/me",
+ "owner": {
+ "username": "roger-padrell",
+ "email": "padrell.roger@gmail.com"
+ },
+ "record": {
+ "CNAME": "roger-padrell.github.io"
+ }
+}
diff --git a/domains/rubenvilchez.json b/domains/rubenvilchez.json
index fc182b728..0adfea645 100644
--- a/domains/rubenvilchez.json
+++ b/domains/rubenvilchez.json
@@ -4,7 +4,6 @@
"email": "rd.vilchez@gmail.com"
},
"description": "Portfolio website for Ruben Vilchez showcasing projects and professional information.",
- "repo": "https://github.com/whiteThor",
"record": {
"CNAME": "whitethor.github.io"
}
diff --git a/domains/rudeus.json b/domains/rudeus.json
new file mode 100644
index 000000000..605e8c6bd
--- /dev/null
+++ b/domains/rudeus.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dmquang",
+ "email": "mq.rudyy.08@gmai.com"
+ },
+ "record": {
+ "CNAME": "dmquang.github.io"
+ }
+}
diff --git a/domains/rupankar.json b/domains/rupankar.json
new file mode 100644
index 000000000..83901f13e
--- /dev/null
+++ b/domains/rupankar.json
@@ -0,0 +1,11 @@
+{
+ "description": "A portfolio website",
+ "repo": "https://github.com/InvictusRex/InvictusRex.github.io",
+ "owner": {
+ "username": "InvictusRex",
+ "email": "rupankar.majumdar2023@vitstudent.ac.in"
+ },
+ "record": {
+ "CNAME": "invictusrex.github.io"
+ }
+}
diff --git a/domains/rushi.json b/domains/rushi.json
index 22e7ed28c..1bb34917d 100644
--- a/domains/rushi.json
+++ b/domains/rushi.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/rushi0n/rushi0n.github.io",
"owner": {
"username": "rushi0n",
- "email": "rushikushare99@gmail.com",
- "twitter": ""
+ "email": "rushikushare99@gmail.com"
},
"record": {
"CNAME": "rushi0n.github.io"
diff --git a/domains/ryanbaig.json b/domains/ryanbaig.json
index 1fa8545be..65f803b49 100644
--- a/domains/ryanbaig.json
+++ b/domains/ryanbaig.json
@@ -1,6 +1,7 @@
{
"owner": {
- "username": "RyanBaig"
+ "username": "RyanBaig",
+ "discord": "757475933170040893"
},
"record": {
"CNAME": "ryanthedev.vercel.app"
diff --git a/domains/s1dd.json b/domains/s1dd.json
new file mode 100644
index 000000000..e7a6119eb
--- /dev/null
+++ b/domains/s1dd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nots1dd",
+ "email": "sid9.karanam@gmail.com"
+ },
+ "record": {
+ "CNAME": "webpage-seven-puce.vercel.app"
+ }
+}
diff --git a/domains/s97.json b/domains/s97.json
index 4025f3758..d9ffc7ac1 100644
--- a/domains/s97.json
+++ b/domains/s97.json
@@ -2,7 +2,6 @@
"owner": {
"username": "Saud-97",
"email": "saud.aljaffer@gmail.com",
- "repo": "https://github.com/Saud-97",
"discord": "S97#6758"
},
"record": {
diff --git a/domains/sachin.json b/domains/sachin.json
index bffa70ddb..d176455dd 100644
--- a/domains/sachin.json
+++ b/domains/sachin.json
@@ -1,6 +1,5 @@
{
"description": "Sachin's portfolio",
- "repo": "https://github.com/sachin-in1",
"owner": {
"username": "sachin-in1",
"email": "sachin.here01@gmail.com"
diff --git a/domains/sad-devmatei.json b/domains/sad-devmatei.json
new file mode 100644
index 000000000..b2447dc4b
--- /dev/null
+++ b/domains/sad-devmatei.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DevMatei",
+ "email": "contact@devmatei.is-a.dev"
+ },
+ "record": {
+ "URL": "https://devmatei.is-a.dev/"
+ }
+}
diff --git a/domains/sadik.json b/domains/sadik.json
new file mode 100644
index 000000000..42ecb335f
--- /dev/null
+++ b/domains/sadik.json
@@ -0,0 +1,11 @@
+{
+ "description": "For Portfolio",
+ "repo": "https://github.com/square-story/portfolio-next.js",
+ "owner": {
+ "username": "square-story",
+ "email": "gibmepreo@gmail.com"
+ },
+ "record": {
+ "CNAME": "sadik-mu.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/saeedmfarahani.json b/domains/saeedmfarahani.json
new file mode 100644
index 000000000..10813186c
--- /dev/null
+++ b/domains/saeedmfarahani.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "Silitonix"
+ },
+ "record": {
+ "CNAME": "silitonix.github.io"
+ }
+}
diff --git a/domains/saert.json b/domains/saert.json
index 9a52c6583..b497e31eb 100644
--- a/domains/saert.json
+++ b/domains/saert.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "saert3311",
- "email": "jose.duarte@trinum.xyz"
- },
- "record": {
- "CNAME": "trinum.xyz"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "saert3311",
+ "email": "jose.duarte@trinum.xyz"
+ },
+ "record": {
+ "CNAME": "trinum.xyz"
+ }
+}
diff --git a/domains/safety.json b/domains/safety.json
index bae202e84..f4fdcb48e 100644
--- a/domains/safety.json
+++ b/domains/safety.json
@@ -3,7 +3,6 @@
"username": "HackingYZ",
"email": "sifed@qq.com"
},
-
"record": {
"CNAME": "safety22w413a.github.io"
}
diff --git a/domains/saftec.json b/domains/saftec.json
new file mode 100644
index 000000000..29f984f33
--- /dev/null
+++ b/domains/saftec.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Samuraiflamesf",
+ "email": "Samuraiflamesf@gmail.com"
+ },
+ "record": {
+ "A": ["152.67.45.142"]
+ }
+}
diff --git a/domains/sageofluke.json b/domains/sageofluke.json
new file mode 100644
index 000000000..5b4d94e2b
--- /dev/null
+++ b/domains/sageofluke.json
@@ -0,0 +1,11 @@
+{
+ "description": "SageofLuke.is-a.dev",
+ "repo": "https://github.com/sageofluke/sageofluke.github.io",
+ "owner": {
+ "username": "SageOfLuke",
+ "email": "rj05tilak@hotmail.com"
+ },
+ "record": {
+ "CNAME": "sageofluke.github.io"
+ }
+}
diff --git a/domains/saif.json b/domains/saif.json
new file mode 100644
index 000000000..50a8e1d09
--- /dev/null
+++ b/domains/saif.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Saifkhanz",
+ "email": "saif137.khan@gmail.com"
+ },
+ "record": {
+ "CNAME": "saif-two.vercel.app"
+ }
+}
diff --git a/domains/sairaj.json b/domains/sairaj.json
new file mode 100644
index 000000000..6f0f651df
--- /dev/null
+++ b/domains/sairaj.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio Website",
+ "repo": "https://github.com/gegendepressed/gegendepressed.github.io",
+ "owner": {
+ "username": "gegendepressed",
+ "email": "sairaj09pai@gmail.com"
+ },
+ "record": {
+ "CNAME": "gegendepressed.github.io"
+ }
+}
diff --git a/domains/saisrujanreddyp.json b/domains/saisrujanreddyp.json
new file mode 100644
index 000000000..60228750b
--- /dev/null
+++ b/domains/saisrujanreddyp.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "SaiSrujanReddyP",
+ "email": "srujansaireddy.p@gmai.com",
+ "discord": "1092467372201361488"
+ },
+ "record": {
+ "CNAME": "saisrujanreddyp.pages.dev"
+ }
+}
diff --git a/domains/sajid.json b/domains/sajid.json
new file mode 100644
index 000000000..321365b27
--- /dev/null
+++ b/domains/sajid.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/sajidshahriar72543/sajidshahriar72543.github.io",
+ "owner": {
+ "username": "sajidshahriar72543",
+ "email": "sazidshahriar39@gmail.com"
+ },
+ "record": {
+ "CNAME": "sajidshahriar72543.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/sakis.json b/domains/sakis.json
new file mode 100644
index 000000000..a6e1c94db
--- /dev/null
+++ b/domains/sakis.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "syakhisk",
+ "email": "syakhisks@gmail.com"
+ },
+ "record": {
+ "URL": "https://al-az.me"
+ }
+}
diff --git a/domains/sakshi.json b/domains/sakshi.json
new file mode 100644
index 000000000..7be25164e
--- /dev/null
+++ b/domains/sakshi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "git-sakshii",
+ "email": "sakshiii@outlook.com"
+ },
+ "record": {
+ "URL": "https://github.com/git-sakshii/"
+ }
+ }
diff --git a/domains/saleh.json b/domains/saleh.json
index 10bacc9f5..667f3d896 100644
--- a/domains/saleh.json
+++ b/domains/saleh.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/saleh-rahimzadeh/saleh-rahimzadeh.github.io",
- "owner": {
- "username": "saleh-rahimzadeh",
- "email": "saleh-rz@outlook.com"
- },
- "record": {
- "CNAME": "saleh-rahimzadeh.github.io"
- }
+ "repo": "https://github.com/saleh-rahimzadeh/saleh-rahimzadeh.github.io",
+ "owner": {
+ "username": "saleh-rahimzadeh",
+ "email": "saleh-rz@outlook.com"
+ },
+ "record": {
+ "CNAME": "saleh-rahimzadeh.github.io"
+ }
}
diff --git a/domains/salman.json b/domains/salman.json
new file mode 100644
index 000000000..60ae41228
--- /dev/null
+++ b/domains/salman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "salmaniyad",
+ "email": "eng.salmaniyad@gmail.com"
+ },
+ "record": {
+ "CNAME": "salmans-digital-space-pro.vercel.app"
+ }
+}
diff --git a/domains/salsabila.json b/domains/salsabila.json
new file mode 100644
index 000000000..f19a9f6e9
--- /dev/null
+++ b/domains/salsabila.json
@@ -0,0 +1,15 @@
+{
+ "owner": {
+ "username": "salsabilarhdsy",
+ "email": "salsabiladsy@gmail.com"
+ },
+ "record": {
+ "A": [
+ "216.239.32.21",
+ "216.239.34.21",
+ "216.239.36.21",
+ "216.239.38.21"
+ ],
+ "TXT": "google-site-verification=wa09XM-Var9ELqseOfjGhhz19slF_29d7M5h76mhdQE"
+ }
+}
diff --git a/domains/samadhi.json b/domains/samadhi.json
new file mode 100644
index 000000000..f02292fba
--- /dev/null
+++ b/domains/samadhi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "samadhi1311",
+ "email": "samadhilakmina.sl@gmail.com"
+ },
+ "record": {
+ "CNAME": "samadhi-gunasinghe.pages.dev"
+ }
+}
diff --git a/domains/samanyu.json b/domains/samanyu.json
index 3f955a21a..4bee54d7b 100644
--- a/domains/samanyu.json
+++ b/domains/samanyu.json
@@ -1,6 +1,5 @@
{
"description": "They call me Soman",
- "repo": "https://github.com/Samanyu13",
"owner": {
"username": "Samanyu13",
"email": "samanyusaji18@gmail.com"
diff --git a/domains/samenal.json b/domains/samenal.json
new file mode 100644
index 000000000..8f6649b25
--- /dev/null
+++ b/domains/samenal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Samenal-sys",
+ "email": "samenaal@proton.me"
+ },
+ "record": {
+ "CNAME": "samenal.pages.dev"
+ }
+}
diff --git a/domains/samfareez.json b/domains/samfareez.json
new file mode 100644
index 000000000..d7174c984
--- /dev/null
+++ b/domains/samfareez.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal site",
+ "repo": "https://github.com/zeerafle/zeerafle.github.io",
+ "owner": {
+ "username": "zeerafle",
+ "email": "vsefareez@gmail.com"
+ },
+ "record": {
+ "CNAME": "zeerafle.github.io"
+ }
+}
diff --git a/domains/samirkhanal.json b/domains/samirkhanal.json
index e118b18f0..f8c5c5b46 100644
--- a/domains/samirkhanal.json
+++ b/domains/samirkhanal.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "khanal-samir",
- "email": "gdssamir@gmail.com"
-
- },
- "record": {
- "CNAME": "samir-khanal-portfolio.vercel.app"
- }
+ "owner": {
+ "username": "khanal-samir",
+ "email": "gdssamir@gmail.com"
+ },
+ "record": {
+ "CNAME": "samir-khanal-portfolio.vercel.app"
+ }
}
diff --git a/domains/samirpaul.json b/domains/samirpaul.json
deleted file mode 100644
index 8b1ee4b58..000000000
--- a/domains/samirpaul.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Samir Paul's Portfolio Website.",
- "repo": "https://github.com/SamirPaul1/samirpaul",
- "owner": {
- "username": "SamirPaul1",
- "email": "samirpaulb@gmail.com",
- "twitter": "SamirPaulb"
- },
- "record": {
- "CNAME": "samirpaul1.github.io"
- }
-}
diff --git a/domains/samishoukat.json b/domains/samishoukat.json
index 0b683aab6..d29dc1b16 100644
--- a/domains/samishoukat.json
+++ b/domains/samishoukat.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "samishoukat12",
- "email": "samishoukat12@gmail.com"
- },
- "record": {
- "CNAME": "dev-samishoukat.vercel.app"
- }
- }
\ No newline at end of file
+ "owner": {
+ "username": "samishoukat12",
+ "email": "samishoukat12@gmail.com"
+ },
+ "record": {
+ "CNAME": "dev-samishoukat.vercel.app"
+ }
+}
diff --git a/domains/samson.json b/domains/samson.json
index 434511034..cc6d8927d 100644
--- a/domains/samson.json
+++ b/domains/samson.json
@@ -1,11 +1,11 @@
{
- "description": "Personal website",
- "repo": "https://github.com/MarsCapone/marscapone.github.io",
- "owner": {
- "username": "MarsCapone",
- "email": "samson@danziger.uk"
- },
- "record": {
- "CNAME": "marscapone.github.io"
- }
+ "description": "Personal website",
+ "repo": "https://github.com/MarsCapone/marscapone.github.io",
+ "owner": {
+ "username": "MarsCapone",
+ "email": "samson@danziger.uk"
+ },
+ "record": {
+ "CNAME": "marscapone.github.io"
+ }
}
diff --git a/domains/sanchit.json b/domains/sanchit.json
new file mode 100644
index 000000000..b7e49ca82
--- /dev/null
+++ b/domains/sanchit.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sanchitbajaj02",
+ "email": "sanchit02@outlook.com",
+ "discord": "704721578029744299"
+ },
+ "record": {
+ "CNAME": "portfolio-delta-lemon-14.vercel.app"
+ }
+}
diff --git a/domains/sandepten.json b/domains/sandepten.json
new file mode 100644
index 000000000..bb88643d8
--- /dev/null
+++ b/domains/sandepten.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sandepten",
+ "email": "sandepten@gmail.com",
+ "discord": "sandepten"
+ },
+ "record": {
+ "CNAME": "sandepten.vercel.app"
+ }
+}
diff --git a/domains/sandun.json b/domains/sandun.json
new file mode 100644
index 000000000..9e888ae80
--- /dev/null
+++ b/domains/sandun.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio website of Sandun Madhushan",
+ "repo": "https://github.com/sandunMadhushan/sandunMadhushan.github.io",
+ "owner": {
+ "username": "sandunMadhushan",
+ "email": "sandunhmadushan9330@gmail.com"
+ },
+ "record": {
+ "CNAME": "sandunmadhushan.github.io"
+ }
+}
diff --git a/domains/sang.json b/domains/sang.json
new file mode 100644
index 000000000..137bba6d2
--- /dev/null
+++ b/domains/sang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chauvansang",
+ "email": "cvansang94@gmail.com"
+ },
+ "record": {
+ "CNAME": "chauvansang.github.io"
+ }
+}
diff --git a/domains/sangeeth.json b/domains/sangeeth.json
new file mode 100644
index 000000000..a05494c84
--- /dev/null
+++ b/domains/sangeeth.json
@@ -0,0 +1,11 @@
+{
+ "description": "PORTFOLIO",
+ "owner": {
+ "username": "sangeeth-606",
+ "email": "sangeeth999123@gmail.com"
+ },
+ "repo": "https://github.com/sangeeth-606/meh",
+ "record": {
+ "CNAME": "github-sangeeth-606.github.io"
+ }
+}
diff --git a/domains/sangelo.json b/domains/sangelo.json
index aa398a0c4..f78904011 100644
--- a/domains/sangelo.json
+++ b/domains/sangelo.json
@@ -4,7 +4,6 @@
"username": "SangeloDev",
"email": "contact@sangelo.space"
},
- "repo": "https://github.com/SangeloDev",
"record": {
"URL": "https://sangelo.space"
}
diff --git a/domains/sanish.json b/domains/sanish.json
new file mode 100644
index 000000000..32352c9a1
--- /dev/null
+++ b/domains/sanish.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sanishkr",
+ "email": "sanishkr@gmail.com"
+ },
+ "record": {
+ "URL": "https://sanish.me/"
+ }
+}
diff --git a/domains/sanjay.json b/domains/sanjay.json
index d8a9e9b83..3a37fdbb4 100644
--- a/domains/sanjay.json
+++ b/domains/sanjay.json
@@ -5,7 +5,6 @@
"twitter": "megasanjay"
},
"description": "Personal website",
- "repo": "https://github.com/megasanjay",
"record": {
"URL": "https://sanjaysoundarajan.dev"
}
diff --git a/domains/sanjaykumar.json b/domains/sanjaykumar.json
new file mode 100644
index 000000000..61a08fadc
--- /dev/null
+++ b/domains/sanjaykumar.json
@@ -0,0 +1,11 @@
+{
+ "description": "Vannila Portfolio",
+ "repo": "https://github.com/Ethi19/vanillajs-portfolio",
+ "owner": {
+ "username": "ethi19",
+ "email": "sanjaykumardec98@gmail.com"
+ },
+ "record": {
+ "CNAME": "ethi19.github.io"
+ }
+}
diff --git a/domains/santhoshkani.json b/domains/santhoshkani.json
new file mode 100644
index 000000000..ce2ba02b7
--- /dev/null
+++ b/domains/santhoshkani.json
@@ -0,0 +1,10 @@
+{
+ "description": "Santhosh Kani - Personal Github Page",
+ "owner": {
+ "username": "santhoshkani",
+ "email": "santhosh.kani@gmail.com"
+ },
+ "record": {
+ "CNAME": "santhoshkani.github.io"
+ }
+}
diff --git a/domains/santoshgiri.json b/domains/santoshgiri.json
new file mode 100644
index 000000000..46c4b0d12
--- /dev/null
+++ b/domains/santoshgiri.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio Website",
+ "repo": "https://github.com/santosh2345/santosh2345.github.io",
+ "owner": {
+ "username": "santosh2345",
+ "email": "hi@santoshgiri.com.np"
+ },
+ "record": {
+ "URL": "https://santoshgiri.com.np/"
+ }
+}
diff --git a/domains/santty.json b/domains/santty.json
new file mode 100644
index 000000000..b97d0d7e5
--- /dev/null
+++ b/domains/santty.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "santiagogr05",
+ "email": "san7iagogr.05@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-santtys-projects.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/saras008.json b/domains/saras008.json
new file mode 100644
index 000000000..f76bee78d
--- /dev/null
+++ b/domains/saras008.json
@@ -0,0 +1,11 @@
+{
+ "description": "Iyus Dedi Putra Github Profile",
+ "repo": "https://github.com/saras008/saras008.github.io",
+ "owner": {
+ "username": "saras008",
+ "email": "simatupang2000@gmail.com"
+ },
+ "record": {
+ "CNAME": "saras008.github.io"
+ }
+}
diff --git a/domains/saraxa.json b/domains/saraxa.json
deleted file mode 100644
index b6ffa9638..000000000
--- a/domains/saraxa.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "saraxa personal website",
- "repo": "https://github.com/reef1447/reef1447.github.io",
- "owner": {
- "username": "reef1447",
- "email": "spray123kira@gmail.com",
- "discord": "saraxa#8899"
- },
- "record": {
- "CNAME": "reef1447.github.io"
- }
-}
diff --git a/domains/sarthak-malhotra.json b/domains/sarthak-malhotra.json
index 6d0eb390c..c67766061 100644
--- a/domains/sarthak-malhotra.json
+++ b/domains/sarthak-malhotra.json
@@ -1,11 +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"
- }
+ "description": "Portfolio Website for Sarthak Malhotra",
+ "repo": "https://github.com/SaM13997/portfolio-simple",
+ "owner": {
+ "username": "Sam13997",
+ "email": "sarthakmalhotra251@gmail.com"
+ },
+ "record": {
+ "CNAME": "www.webdevsam.pro"
+ }
}
diff --git a/domains/sashankp.json b/domains/sashankp.json
new file mode 100644
index 000000000..8875e676f
--- /dev/null
+++ b/domains/sashankp.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio website",
+ "repo": "https://github.com/Sashankps/portfolio-2023-react",
+ "owner": {
+ "username": "Sashankps",
+ "email": "sashank.pilli@gmail.com"
+ },
+ "record": {
+ "CNAME": "sashankps.vercel.app"
+ }
+}
diff --git a/domains/satindar.json b/domains/satindar.json
index cb46edd97..bf02e1c4e 100644
--- a/domains/satindar.json
+++ b/domains/satindar.json
@@ -7,6 +7,14 @@
"twitter": "satindar31"
},
"record": {
- "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"]
+ "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"],
+ "DS": [
+ {
+ "key_tag": 2371,
+ "algorithm": 13,
+ "digest_type": 2,
+ "digest": "C2074462471B81206F792AEC23469EF33DDC53538E8580DCCC92FD130C9A6096"
+ }
+ ]
}
}
diff --git a/domains/satyamjha.json b/domains/satyamjha.json
new file mode 100644
index 000000000..c9ec7ec45
--- /dev/null
+++ b/domains/satyamjha.json
@@ -0,0 +1,10 @@
+{
+ "description": "Pool full of Diamonds",
+ "owner": {
+ "username": "SatyamIsSatyam",
+ "email": "realsatyam02@gmail.com"
+ },
+ "record": {
+ "CNAME": "satyamissatyam.github.io"
+ }
+}
diff --git a/domains/saunak.json b/domains/saunak.json
new file mode 100644
index 000000000..127213ef2
--- /dev/null
+++ b/domains/saunak.json
@@ -0,0 +1,12 @@
+{
+ "description": "my portfolio website",
+ "repo": "https://github.com/Saunakghosh10/dfolio.git",
+ "owner": {
+ "username": "Saunakghosh10",
+ "email": "saunakghosh710@gmail.com",
+ "discord": "695672697270829116"
+ },
+ "record": {
+ "CNAME": "sgfolio-nu.vercel.app"
+ }
+}
diff --git a/domains/saxophone.json b/domains/saxophone.json
index 09300ddff..ae8888e00 100644
--- a/domains/saxophone.json
+++ b/domains/saxophone.json
@@ -1,12 +1,15 @@
{
- "description": "my website",
+ "description": "my personal site where i do random stuff i guess",
"owner": {
- "username": "saxophone-guy",
+ "username": "saxophone-dev",
"email": "itsarchit@keemail.me"
},
"record": {
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=itsarchit@keemail.me",
- "A": ["216.24.57.1"]
+ "TXT": [
+ "forward-email=itsarchit@keemail.me",
+ "google-site-verification=xWSXW0sDedf6aw6w8tJnySqXZYExIAViuKmTEiuJZpU"
+ ],
+ "A": ["76.76.21.21"]
}
}
diff --git a/domains/scan.json b/domains/scan.json
index 53080ebe7..fcf8e3393 100644
--- a/domains/scan.json
+++ b/domains/scan.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "scanash00",
- "email": "103391616+scanash00@users.noreply.github.com",
"discord": "827389583342698536"
},
"record": {
diff --git a/domains/schuh.json b/domains/schuh.json
new file mode 100644
index 000000000..a1919a9de
--- /dev/null
+++ b/domains/schuh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vqpe",
+ "email": "theschuhofyou@gmail.com"
+ },
+ "record": {
+ "CNAME": "vqpe.github.io"
+ }
+}
diff --git a/domains/sebastianguz.json b/domains/sebastianguz.json
new file mode 100644
index 000000000..e86b94ee6
--- /dev/null
+++ b/domains/sebastianguz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sebaguse",
+ "email": "sebaguse@gmail.com"
+ },
+ "record": {
+ "CNAME": "friendly-churros-e20592.netlify.app"
+ }
+}
diff --git a/domains/sebastianriveros.json b/domains/sebastianriveros.json
index 5bed8a35b..8616af540 100644
--- a/domains/sebastianriveros.json
+++ b/domains/sebastianriveros.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Wisauw",
- "email": "riveross92@gmail.com"
- },
- "record": {
- "CNAME": "sebastian-riveros.vercel.app"
- }
+ "owner": {
+ "username": "Wisauw",
+ "email": "riveross92@gmail.com"
+ },
+ "record": {
+ "CNAME": "sebastian-riveros.vercel.app"
+ }
}
diff --git a/domains/sebdev.json b/domains/sebdev.json
new file mode 100644
index 000000000..c51e20935
--- /dev/null
+++ b/domains/sebdev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sebdeveloper6952",
+ "email": "seb@sebdev.io"
+ },
+ "record": {
+ "CNAME": "blog.sebdev.io"
+ }
+}
diff --git a/domains/secsum.json b/domains/secsum.json
new file mode 100644
index 000000000..077fc697d
--- /dev/null
+++ b/domains/secsum.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NgoQuangThien",
+ "email": "quangthien18032000@gmail.com"
+ },
+ "record": {
+ "A": ["3.24.49.246"]
+ }
+}
diff --git a/domains/send.auth.sign.alvin.json b/domains/send.auth.sign.alvin.json
new file mode 100644
index 000000000..fbe05e7a4
--- /dev/null
+++ b/domains/send.auth.sign.alvin.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "MX": ["feedback-smtp.ap-northeast-1.amazonses.com"],
+ "TXT": ["v=spf1 include:amazonses.com ~all"]
+ }
+}
diff --git a/domains/send.blogs.akk1to.json b/domains/send.blogs.akk1to.json
new file mode 100644
index 000000000..b988ef95f
--- /dev/null
+++ b/domains/send.blogs.akk1to.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@outlook.com"
+ },
+ "record": {
+ "MX": ["feedback-smtp.us-east-1.amazonses.com"],
+ "TXT": "v=spf1 include:amazonses.com ~all"
+ }
+}
diff --git a/domains/senthil.json b/domains/senthil.json
new file mode 100644
index 000000000..4c8db6adc
--- /dev/null
+++ b/domains/senthil.json
@@ -0,0 +1,11 @@
+{
+ "description": "Senthil's personal tech blog and portfolio",
+ "repo": "https://github.com/gptechland/senthil-portfolio",
+ "owner": {
+ "username": "gptechland",
+ "email": "skn.hills@gmail.com"
+ },
+ "record": {
+ "CNAME": "gptechland.github.io"
+ }
+}
diff --git a/domains/sep.json b/domains/sep.json
new file mode 100644
index 000000000..4706dc1d6
--- /dev/null
+++ b/domains/sep.json
@@ -0,0 +1,11 @@
+{
+ "description": "personel-website",
+ "repo": "https://github.com/sepultrex/sepultrex.github.io",
+ "owner": {
+ "username": "sepultrex",
+ "email": "sepultrex@gmail.com"
+ },
+ "record": {
+ "CNAME": "sepultrex.github.io"
+ }
+}
diff --git a/domains/seqyu.json b/domains/seqyu.json
index fe4591038..7e341aef9 100644
--- a/domains/seqyu.json
+++ b/domains/seqyu.json
@@ -3,7 +3,6 @@
"repo": "https://github.com/nvct-website/nvct-website.github.io",
"owner": {
"username": "nvct-website",
- "email": "",
"discord": "@seqyu."
},
"record": {
diff --git a/domains/sergarsilla.json b/domains/sergarsilla.json
new file mode 100644
index 000000000..acc50cad4
--- /dev/null
+++ b/domains/sergarsilla.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sergarsilla",
+ "email": "sergarsilla@gmail.com"
+ },
+ "record": {
+ "CNAME": "sergarsilla.github.io"
+ }
+}
diff --git a/domains/sergio.json b/domains/sergio.json
new file mode 100644
index 000000000..0f36fc5a0
--- /dev/null
+++ b/domains/sergio.json
@@ -0,0 +1,10 @@
+{
+ "description": "Mi sitio web personal",
+ "owner": {
+ "username": "sgm1018",
+ "email": "sgm1018@proton.me"
+ },
+ "record": {
+ "URL": "https://www.linkedin.com/in/sergiogm1999/"
+ }
+}
diff --git a/domains/sergioperea.json b/domains/sergioperea.json
new file mode 100644
index 000000000..3d07f1a09
--- /dev/null
+++ b/domains/sergioperea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sperea",
+ "email": "perea@mailfence.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/service.rachancheet.json b/domains/service.rachancheet.json
new file mode 100644
index 000000000..d244b1026
--- /dev/null
+++ b/domains/service.rachancheet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rachancheet",
+ "email": "raxxsngh37@gmail.com"
+ },
+ "record": {
+ "A": ["152.67.163.7"]
+ }
+}
diff --git a/domains/services.defective.json b/domains/services.defective.json
new file mode 100644
index 000000000..3a9459cac
--- /dev/null
+++ b/domains/services.defective.json
@@ -0,0 +1,10 @@
+{
+ "description": "A sub-domain for my services",
+ "owner": {
+ "username": "Defective4",
+ "email": "def3ctive4@gmail.com"
+ },
+ "record": {
+ "A": ["130.61.27.34"]
+ }
+}
diff --git a/domains/seven.json b/domains/seven.json
index 5762d7f61..c8b16cbbe 100644
--- a/domains/seven.json
+++ b/domains/seven.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "7op3",
- "email": "134126156+7op3@users.noreply.github.com",
"discord": "882124409945587773"
},
"record": {
diff --git a/domains/sevinda-herath.json b/domains/sevinda-herath.json
index 73109ff2b..8c9b52842 100644
--- a/domains/sevinda-herath.json
+++ b/domains/sevinda-herath.json
@@ -8,7 +8,7 @@
"MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"],
"TXT": "v=spf1 include:zohomail.com ~all"
},
- "redirect_config": {
+ "redirect_config": {
"custom_paths": {
"/github": "https://github.com/Sevinda-Herath",
"/linkedin": "https://www.linkedin.com/in/sevindaherath",
diff --git a/domains/sewt.json b/domains/sewt.json
index 1823b48d7..f0d948321 100644
--- a/domains/sewt.json
+++ b/domains/sewt.json
@@ -6,9 +6,10 @@
"record": {
"A": ["37.27.51.34"],
"AAAA": ["2a01:4f9:3081:399c::4"],
- "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"],
+ "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"],
"TXT": [
- "v=spf1 include:zohomail.eu ~all",
+ "sl-verification=sibwuwbmtopnrrdmfxvdabidjzvcow",
+ "v=spf1 include:simplelogin.co ~all",
"domain-verification=skyexplorewastaken"
]
},
diff --git a/domains/seyioo.json b/domains/seyioo.json
deleted file mode 100644
index d8b5b46cd..000000000
--- a/domains/seyioo.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "For a personnal portfolio",
- "repo": "https://github.com/seyiooo/seyiooo.github.io",
- "owner": {
- "username": "seyiooo",
- "discord": "sey.ioo",
- "instagram": "sey.ioo"
- },
- "record": {
- "CNAME": "seyiooo.github.io"
- }
-}
diff --git a/domains/sh13y.json b/domains/sh13y.json
new file mode 100644
index 000000000..392946361
--- /dev/null
+++ b/domains/sh13y.json
@@ -0,0 +1,11 @@
+{
+ "description": "For My Blog",
+ "repo": "https://github.com/sh13y/register",
+ "owner": {
+ "username": "sh13y",
+ "email": "lucky10isuru@gmail.com"
+ },
+ "record": {
+ "CNAME": "sh13y.github.io"
+ }
+}
diff --git a/domains/sh770.json b/domains/sh770.json
new file mode 100644
index 000000000..c15cbe25c
--- /dev/null
+++ b/domains/sh770.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sh770",
+ "email": "sh770h@gmail.com"
+ },
+ "record": {
+ "CNAME": "sh770.github.io"
+ }
+}
diff --git a/domains/shahab.json b/domains/shahab.json
new file mode 100644
index 000000000..faf81f27b
--- /dev/null
+++ b/domains/shahab.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shahab-xd",
+ "email": "0xshahab@proton.me"
+ },
+ "record": {
+ "CNAME": "shahab-xd.github.io"
+ }
+}
diff --git a/domains/sharath.json b/domains/sharath.json
index 93badde2b..ee1c17458 100644
--- a/domains/sharath.json
+++ b/domains/sharath.json
@@ -1,6 +1,5 @@
{
"description": "Social media website project.",
- "repo": "https://github.com/thesct22",
"owner": {
"username": "thesct22",
"email": "sharathct22@gmail.com"
diff --git a/domains/shaunak.json b/domains/shaunak.json
index 7fe7ba1fb..814c9c952 100644
--- a/domains/shaunak.json
+++ b/domains/shaunak.json
@@ -1,6 +1,5 @@
{
"description": "my .is-a.dev domain",
- "repo": "https://github.com/Shaunak-Pandya.github.io",
"owner": {
"username": "Shaunak-Pandya",
"email": "shaunak.n.pandya@gmail.com"
diff --git a/domains/shibiliya.json b/domains/shibiliya.json
index 25a7b5efa..614dccd8e 100644
--- a/domains/shibiliya.json
+++ b/domains/shibiliya.json
@@ -1,6 +1,5 @@
{
"description": "Shibiliya's personal developer website",
- "repo": "https://github.com/duaboola",
"owner": {
"username": "duaboola",
"email": "ismailshibiliya@gmail.com"
diff --git a/domains/shikhar.json b/domains/shikhar.json
new file mode 100644
index 000000000..ad2a7a480
--- /dev/null
+++ b/domains/shikhar.json
@@ -0,0 +1,11 @@
+{
+ "description": "YOUR DESCRIPTION GOES HERE",
+ "repo": "https://github.com/adityasriv2317/portfolioAditya",
+ "owner": {
+ "username": "adityasriv2317",
+ "email": "adityaxia9237@gmail.com"
+ },
+ "record": {
+ "URL": "https://adityasrivastava.vercel.app/"
+ }
+}
diff --git a/domains/shimizu.json b/domains/shimizu.json
new file mode 100644
index 000000000..b0c335042
--- /dev/null
+++ b/domains/shimizu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mikofoxie",
+ "email": "shimizulazy@gmail.com"
+ },
+ "record": {
+ "CNAME": "shimizulinks.vercel.app"
+ }
+}
diff --git a/domains/shirshen.json b/domains/shirshen.json
new file mode 100644
index 000000000..f8f108786
--- /dev/null
+++ b/domains/shirshen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shu-vro",
+ "email": "official.shirshen@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/shivabajpai.json b/domains/shivabajpai.json
new file mode 100644
index 000000000..c28844190
--- /dev/null
+++ b/domains/shivabajpai.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio website for Shiva Bajpai",
+ "repo": "https://github.com/Shiva-Bajpai/",
+ "owner": {
+ "username": "Shiva-Bajpai",
+ "email": "shivabajpai2006@gmail.com"
+ },
+ "record": {
+ "CNAME": "shivacodes.vercel.app"
+ },
+ "proxied": false
+}
diff --git a/domains/shivam.json b/domains/shivam.json
new file mode 100644
index 000000000..812df0835
--- /dev/null
+++ b/domains/shivam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shivamkumar177",
+ "email": "shivamk1717@gmail.com"
+ },
+ "record": {
+ "CNAME": "shivam-kumar.netlify.app"
+ }
+}
diff --git a/domains/shivamtrivedi.json b/domains/shivamtrivedi.json
new file mode 100644
index 000000000..f2d372662
--- /dev/null
+++ b/domains/shivamtrivedi.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal portfolio website",
+ "repo": "https://github.com/Shivam1303/portfolio.git",
+ "owner": {
+ "username": "Shivam1303",
+ "email": "shivamtrivedi1434@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-three-lake-77.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/shivananda.json b/domains/shivananda.json
new file mode 100644
index 000000000..f0e49005e
--- /dev/null
+++ b/domains/shivananda.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/ssk090/portfolio-2024",
+ "owner": {
+ "username": "ssk090",
+ "email": "shivanandasai.38@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.shivanandasai.xyz/"
+ }
+}
diff --git a/domains/shivansh.json b/domains/shivansh.json
new file mode 100644
index 000000000..54f2a8418
--- /dev/null
+++ b/domains/shivansh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "shivansh722",
+ "email": "shivanshcha722@gmail.com",
+ "discord": "839163183141748807"
+ },
+ "record": {
+ "CNAME": "portfolio-theta-one-19.vercel.app"
+ }
+}
diff --git a/domains/shoaib.json b/domains/shoaib.json
new file mode 100644
index 000000000..492b7ef35
--- /dev/null
+++ b/domains/shoaib.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "d3vshoaib",
+ "email": "d3vshoaib@gmail.com"
+ },
+ "record": {
+ "CNAME": "d3vshoaib.netlify.app"
+ }
+}
diff --git a/domains/shrey.json b/domains/shrey.json
new file mode 100644
index 000000000..f24d2fbfe
--- /dev/null
+++ b/domains/shrey.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/shreyzeous21/portfolio_fullstack",
+ "owner": {
+ "username": "shreyzeous21",
+ "email": "shrey.sadhukhan21@gmail.com"
+ },
+ "record": {
+ "URL": "https://shreysadhukhan-portfolio.vercel.app/"
+ }
+}
diff --git a/domains/shri.json b/domains/shri.json
new file mode 100644
index 000000000..e193cad80
--- /dev/null
+++ b/domains/shri.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "shari003",
+ "email": "shri.harii@hotmail.com",
+ "discord": "744620219976253481"
+ },
+ "record": {
+ "CNAME": "shriharidev.vercel.app"
+ }
+}
diff --git a/domains/shrivatsav.json b/domains/shrivatsav.json
new file mode 100644
index 000000000..e2849ae55
--- /dev/null
+++ b/domains/shrivatsav.json
@@ -0,0 +1,11 @@
+{
+ "description": "nothing much here...",
+ "repo": "https://github.com/Millosaurs/portfolio",
+ "owner": {
+ "username": "Millosaurs",
+ "email": "sharanshrivatsav0@gmail.com"
+ },
+ "record": {
+ "URL": "https://shrivatsav.vercel.app"
+ }
+}
diff --git a/domains/shrpp.json b/domains/shrpp.json
index 0eaf6370c..1359a5432 100644
--- a/domains/shrpp.json
+++ b/domains/shrpp.json
@@ -1,9 +1,9 @@
-{
- "owner": {
- "username": "Shrpp",
- "email": "lucius.2906@gmail.com"
- },
- "record": {
- "URL": "https://github.com/Shrpp"
- }
- }
\ No newline at end of file
+{
+ "owner": {
+ "username": "Shrpp",
+ "email": "lucius.2906@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/Shrpp"
+ }
+}
diff --git a/domains/shubhambattoo.json b/domains/shubhambattoo.json
index f3e0be9c8..2ab897359 100644
--- a/domains/shubhambattoo.json
+++ b/domains/shubhambattoo.json
@@ -5,7 +5,6 @@
"twitter": "Shubham_batt"
},
"description": "My personal website",
- "repo": "https://github.com/shubhambattoo",
"record": {
"URL": "https://shubhambattoo.in"
}
diff --git a/domains/shubhamprajapati.json b/domains/shubhamprajapati.json
new file mode 100644
index 000000000..a0e028e69
--- /dev/null
+++ b/domains/shubhamprajapati.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ShubhamP528",
+ "email": "shubham528prajapati@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-kappa-orpin-32.vercel.app"
+ }
+}
diff --git a/domains/shubhamsharma.json b/domains/shubhamsharma.json
index bce910b05..12b9762ac 100644
--- a/domains/shubhamsharma.json
+++ b/domains/shubhamsharma.json
@@ -1,11 +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
+ "description": "Self-made Linktree clone for myself.",
+ "repo": "https://github.com/Sharma-IT/linktree-clone",
+ "owner": {
+ "username": "Sharma-IT",
+ "email": "shubhamsharma.emails@gmail.com"
+ },
+ "record": {
+ "CNAME": "shubs-links.netlify.app"
+ }
+}
diff --git a/domains/shubhamverma.json b/domains/shubhamverma.json
new file mode 100644
index 000000000..e00d1e26c
--- /dev/null
+++ b/domains/shubhamverma.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "Stroller15"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/shubhhh.json b/domains/shubhhh.json
index e0d64b3f0..5f30ef248 100644
--- a/domains/shubhhh.json
+++ b/domains/shubhhh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "shubhhhwarrior",
- "email": "shubhammvaghela999@gmail.com"
- },
- "record": {
- "CNAME": "shubhhh-96.netlify.app"
- }
+ "owner": {
+ "username": "shubhhhwarrior",
+ "email": "shubhammvaghela999@gmail.com"
+ },
+ "record": {
+ "CNAME": "shubhhh-96.netlify.app"
+ }
}
diff --git a/domains/shukraditya.json b/domains/shukraditya.json
new file mode 100644
index 000000000..8210c31d5
--- /dev/null
+++ b/domains/shukraditya.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Blog and portfolio",
+ "repo": "https://github.com/shukraditya/shukraditya",
+ "owner": {
+ "username": "shukraditya",
+ "email": "shukra12bose@gmail.com"
+ },
+ "record": {
+ "CNAME": "shukraditya.github.io"
+ }
+}
diff --git a/domains/shwetarajput.json b/domains/shwetarajput.json
new file mode 100644
index 000000000..e2e6eb5f9
--- /dev/null
+++ b/domains/shwetarajput.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "shwetarajputsk"
+ },
+ "record": {
+ "CNAME": "shwetarajput.netlify.app"
+ }
+}
diff --git a/domains/si458.json b/domains/si458.json
new file mode 100644
index 000000000..69fff21be
--- /dev/null
+++ b/domains/si458.json
@@ -0,0 +1,11 @@
+{
+ "description": "an open source software developer supporting opensource applications",
+ "repo": "https://github.com/si458",
+ "owner": {
+ "username": "si458",
+ "email": "simonsmith5521@gmail.com"
+ },
+ "record": {
+ "NS": ["jake.ns.cloudflare.com", "jill.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/sid.json b/domains/sid.json
index 923cd8355..329515042 100644
--- a/domains/sid.json
+++ b/domains/sid.json
@@ -1,6 +1,5 @@
{
"description": "Siddhartha Patki's development portfolio",
- "repo": "https://github.com/SiddPatki",
"owner": {
"username": "SiddPatki",
"email": "siddharthapatki@gmail.com"
diff --git a/domains/sid385.json b/domains/sid385.json
new file mode 100644
index 000000000..f421fdcb1
--- /dev/null
+++ b/domains/sid385.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio ",
+ "repo": "https://github.com/siddhant385/siddhant385.github.io",
+ "owner": {
+ "username": "siddhant385",
+ "email": "ssiddhant.ssharma@gmail.com"
+ },
+ "record": {
+ "CNAME": "siddhant385.github.io"
+ }
+}
diff --git a/domains/siddhant.json b/domains/siddhant.json
index a8b6f41b6..7a5ebbcdb 100644
--- a/domains/siddhant.json
+++ b/domains/siddhant.json
@@ -1,6 +1,5 @@
{
"description": "Siddhant's personal site",
- "repo": "https://github.com/siddhant094",
"owner": {
"username": "siddhant094",
"email": "pandeysiddhant21@gmail.com"
diff --git a/domains/siddharth03.json b/domains/siddharth03.json
new file mode 100644
index 000000000..e2e60361c
--- /dev/null
+++ b/domains/siddharth03.json
@@ -0,0 +1,11 @@
+{
+ "description": "To deploy portfolio website",
+ "repo": "https://github.com/sidshasane03/portfolio-website",
+ "owner": {
+ "username": "sidshasane03",
+ "email": "siddharthshasane03@gmail.com"
+ },
+ "record": {
+ "CNAME": "sidshasane03.github.io"
+ }
+}
diff --git a/domains/siddharthjain.json b/domains/siddharthjain.json
new file mode 100644
index 000000000..138f82e72
--- /dev/null
+++ b/domains/siddharthjain.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "siddharth9300",
+ "discord": "sidd9300"
+ },
+ "record": {
+ "CNAME": "next-js-portfolio-siddharth9300s-projects.vercel.app"
+ }
+}
diff --git a/domains/sidhant.json b/domains/sidhant.json
new file mode 100644
index 000000000..1abbaa50a
--- /dev/null
+++ b/domains/sidhant.json
@@ -0,0 +1,11 @@
+{
+ "description": "This is for my personal portfolio",
+ "repo": "https://github.com/sidhant947/sidhant947.github.io",
+ "owner": {
+ "username": "sidhant947",
+ "email": "khatkarsidhant@gmail.com"
+ },
+ "record": {
+ "CNAME": "sidhant947.github.io"
+ }
+}
diff --git a/domains/sifat.json b/domains/sifat.json
new file mode 100644
index 000000000..0e714ec56
--- /dev/null
+++ b/domains/sifat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mahi160",
+ "email": "omarsifat288@gmail.com"
+ },
+ "record": {
+ "CNAME": "mahi160.vercel.app"
+ }
+}
diff --git a/domains/sig1._domainkey.ft.json b/domains/sig1._domainkey.ft.json
new file mode 100644
index 000000000..fb7107c3b
--- /dev/null
+++ b/domains/sig1._domainkey.ft.json
@@ -0,0 +1,11 @@
+{
+ "description": "For the email address h@ft.is-a.dev",
+ "repo": "https://github.com/HaftIsntHere/is-a.dev/",
+ "owner": {
+ "username": "HaftIsntHere",
+ "email": "haftthedev@gmail.com"
+ },
+ "record": {
+ "CNAME": "sig1.dkim.ft.is-a.dev.at.icloudmailadmin.com"
+ }
+}
diff --git a/domains/sign.alvin.json b/domains/sign.alvin.json
new file mode 100644
index 000000000..810c13865
--- /dev/null
+++ b/domains/sign.alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/sija.json b/domains/sija.json
new file mode 100644
index 000000000..fc1397e15
--- /dev/null
+++ b/domains/sija.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sija",
+ "email": "sija@sija.pl",
+ "twitter": "sijawusz"
+ },
+ "record": {
+ "CNAME": "sija.pl"
+ }
+}
diff --git a/domains/silent0070.json b/domains/silent0070.json
new file mode 100644
index 000000000..c7f94f1d3
--- /dev/null
+++ b/domains/silent0070.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "silent0070",
+ "email": "niranjanbrahma007@gmail.com"
+ },
+ "record": {
+ "CNAME": "silent0070.github.io"
+ }
+}
diff --git a/domains/silva.json b/domains/silva.json
new file mode 100644
index 000000000..22ac88af5
--- /dev/null
+++ b/domains/silva.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SilvaTechB",
+ "email": "momanyi.2913@gmail.com"
+ },
+ "record": {
+ "CNAME": "silvatechb.github.io"
+ }
+}
diff --git a/domains/simo.json b/domains/simo.json
index 798ba5f65..eddcc1229 100644
--- a/domains/simo.json
+++ b/domains/simo.json
@@ -1,6 +1,5 @@
{
"description": "A redirect to simo.sh",
- "repo": "https://github.com/fr3fou",
"owner": {
"username": "fr3fou",
"twitter": "fr3fou"
diff --git a/domains/simone.json b/domains/simone.json
new file mode 100644
index 000000000..6adc3b493
--- /dev/null
+++ b/domains/simone.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cimasim89",
+ "email": "cimasim89@gmail.com"
+ },
+ "record": {
+ "CNAME": "cimasim-portfolio.vercel.app"
+ }
+}
diff --git a/domains/simontran.json b/domains/simontran.json
new file mode 100644
index 000000000..eb732a4e1
--- /dev/null
+++ b/domains/simontran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tvkorsimon02",
+ "email": "tntgaming2016@gmail.com"
+ },
+ "record": {
+ "CNAME": "tvkorsimon02.github.io"
+ }
+}
diff --git a/domains/sincererflame71.json b/domains/sincererflame71.json
index c6e93e287..3a985230f 100644
--- a/domains/sincererflame71.json
+++ b/domains/sincererflame71.json
@@ -4,6 +4,17 @@
"email": "DarkNightcore8@outlook.com"
},
"record": {
- "A": ["185.199.108.153"]
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ]
}
}
diff --git a/domains/siritas.json b/domains/siritas.json
new file mode 100644
index 000000000..164e7d993
--- /dev/null
+++ b/domains/siritas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dahoba",
+ "email": "dahoba+github@gmail.com"
+ },
+ "record": {
+ "URL": "https://siritas.gitlab.io"
+ }
+}
diff --git a/domains/sitaram.json b/domains/sitaram.json
new file mode 100644
index 000000000..333cab7d4
--- /dev/null
+++ b/domains/sitaram.json
@@ -0,0 +1,10 @@
+{
+ "description": "Maka Sitaram's Portfolio",
+ "owner": {
+ "username": "satyaram413",
+ "email": "maka.sitaram@gmail.com"
+ },
+ "record": {
+ "URL": "https://sitaram-portfolio.vercel.app/"
+ }
+}
diff --git a/domains/sitov.json b/domains/sitov.json
new file mode 100644
index 000000000..84c2cb4a1
--- /dev/null
+++ b/domains/sitov.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sitov",
+ "email": "cristian.sitov@gmail.com"
+ },
+ "record": {
+ "CNAME": "sitov.ro"
+ }
+}
diff --git a/domains/sivaraj.json b/domains/sivaraj.json
index d00a09ee7..91c3c4821 100644
--- a/domains/sivaraj.json
+++ b/domains/sivaraj.json
@@ -5,6 +5,17 @@
"discord": "1057144035812327524"
},
"record": {
- "A": ["185.199.108.153"]
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ]
}
}
diff --git a/domains/siya.json b/domains/siya.json
new file mode 100644
index 000000000..6d829e4d5
--- /dev/null
+++ b/domains/siya.json
@@ -0,0 +1,11 @@
+{
+ "description": "Siya's portfolio",
+ "repo": "https://github.com/rajputsiya/portfolio",
+ "owner": {
+ "username": "rajputsiya",
+ "email": "siyarajput9258@gmail.com"
+ },
+ "record": {
+ "CNAME": "siyarajput.vercel.app"
+ }
+}
diff --git a/domains/skibidi.json b/domains/skibidi.json
index e8446824e..ee66e2c72 100644
--- a/domains/skibidi.json
+++ b/domains/skibidi.json
@@ -1,9 +1,10 @@
{
"owner": {
"username": "bananaking6",
+ "email": "",
"discord": "skibidibagel"
},
"record": {
- "CNAME": "bananaking6.github.io"
+ "CNAME": "skibidi-3.vercel.app"
}
}
diff --git a/domains/skierka.json b/domains/skierka.json
new file mode 100644
index 000000000..ef5adfa2f
--- /dev/null
+++ b/domains/skierka.json
@@ -0,0 +1,11 @@
+{
+ "description": "Landing page to host EdTech projects",
+ "repo": "https://github.com/skierkcity/skierkcity.github.io",
+ "owner": {
+ "username": "skierkcity",
+ "email": "jacobskierka@outlook.com"
+ },
+ "record": {
+ "CNAME": "skierkcity.github.io"
+ }
+}
diff --git a/domains/sky.json b/domains/sky.json
index e7c431c1c..df6600769 100644
--- a/domains/sky.json
+++ b/domains/sky.json
@@ -1,6 +1,5 @@
{
"description": "Sky's personal website",
- "repo": "https://github.com/SkyLeite",
"owner": {
"username": "skyleite",
"email": "sky@leite.dev"
diff --git a/domains/slovaks.json b/domains/slovaks.json
new file mode 100644
index 000000000..7f21aec3d
--- /dev/null
+++ b/domains/slovaks.json
@@ -0,0 +1,12 @@
+{
+ "description": "a website for my personal things",
+ "repo": "https://github.com/slovakians/crvt",
+ "owner": {
+ "username": "slovakians",
+ "email": "vipmodzteam@gmail.com"
+ },
+ "record": {
+ "CNAME": "slovakians.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/smhemel.json b/domains/smhemel.json
index 9b5a2bc60..95c41d661 100644
--- a/domains/smhemel.json
+++ b/domains/smhemel.json
@@ -1,6 +1,5 @@
{
"description": "A Full-Stack Developer",
- "repo": "https://github.com/smhemel",
"owner": {
"username": "smhemel",
"email": "smhemel.eu@gmail.com"
diff --git a/domains/smlxdesign.json b/domains/smlxdesign.json
new file mode 100644
index 000000000..5f6635fb0
--- /dev/null
+++ b/domains/smlxdesign.json
@@ -0,0 +1,11 @@
+{
+ "description": "SMLX Design's personal blog site",
+ "repo": "https://github.com/smlxdesign/astro-newsite",
+ "owner": {
+ "username": "smlxdesign",
+ "email": "samuel.smlxdesign@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/snazzah.json b/domains/snazzah.json
index 66123aac3..a771501cb 100644
--- a/domains/snazzah.json
+++ b/domains/snazzah.json
@@ -1,6 +1,5 @@
{
"description": "Where the wild ones are.",
- "repo": "https://github.com/Snazzah",
"owner": {
"username": "Snazzah",
"email": "me@snazzah.com",
diff --git a/domains/sneazy25.json b/domains/sneazy25.json
new file mode 100644
index 000000000..80742220b
--- /dev/null
+++ b/domains/sneazy25.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sneazy25",
+ "email": "sneazy25@proton.me"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/snehajain.json b/domains/snehajain.json
new file mode 100644
index 000000000..c58211807
--- /dev/null
+++ b/domains/snehajain.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "snehajain16",
+ "email": "snehajain161104@gmail.com"
+ },
+ "record": {
+ "CNAME": "snehajain16.github.io"
+ }
+}
diff --git a/domains/snehal.json b/domains/snehal.json
new file mode 100644
index 000000000..74bf7f2ac
--- /dev/null
+++ b/domains/snehal.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Website",
+ "repo": "https://github.com/sneh-al/sneh-al.github.io",
+ "owner": {
+ "username": "sneh-al",
+ "email": "snehal1380@gmail.com"
+ },
+ "record": {
+ "CNAME": "sneh-al.github.io"
+ }
+}
diff --git a/domains/soccer.json b/domains/soccer.json
new file mode 100644
index 000000000..713e2b038
--- /dev/null
+++ b/domains/soccer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "minecradt",
+ "email": "soccer1992.is.a.dev@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/sohag.json b/domains/sohag.json
new file mode 100644
index 000000000..a23436df4
--- /dev/null
+++ b/domains/sohag.json
@@ -0,0 +1,10 @@
+{
+ "description": "For my portfolio",
+ "owner": {
+ "username": "sohag02",
+ "discord": "sohagjabed"
+ },
+ "record": {
+ "CNAME": "sohagj.vercel.app"
+ }
+}
diff --git a/domains/sombochea.json b/domains/sombochea.json
new file mode 100644
index 000000000..0c39b6a29
--- /dev/null
+++ b/domains/sombochea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sombochea",
+ "email": "sombochea100@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/sopi.json b/domains/sopi.json
new file mode 100644
index 000000000..e409cd30d
--- /dev/null
+++ b/domains/sopi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sopiseptiansyah",
+ "email": "sopiseptiansyah@gmail.com"
+ },
+ "record": {
+ "CNAME": "sopiseptiansyah.vercel.app"
+ }
+}
diff --git a/domains/sora-os.json b/domains/sora-os.json
index adeb8c7b9..ad3c6a0b1 100644
--- a/domains/sora-os.json
+++ b/domains/sora-os.json
@@ -3,7 +3,6 @@
"repo": "https://github.com/qloha/Sora-OS",
"owner": {
"username": "qloha",
- "email": "",
"youtube": "https://youtube.com/@qloha"
},
"record": {
diff --git a/domains/sosaian.json b/domains/sosaian.json
index ae792c568..ed28c1e88 100644
--- a/domains/sosaian.json
+++ b/domains/sosaian.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "sosaian",
- "email": "is-a.dev.unworthy202@passinbox.com"
- },
- "record": {
- "CNAME": "sosaian.github.io"
- }
+ "owner": {
+ "username": "sosaian",
+ "email": "is-a.dev.unworthy202@passinbox.com"
+ },
+ "record": {
+ "CNAME": "sosaian.github.io"
+ }
}
diff --git a/domains/soul.json b/domains/soul.json
new file mode 100644
index 000000000..7bfa67701
--- /dev/null
+++ b/domains/soul.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SoulDevs",
+ "email": "soulcosmic1406@proton.me"
+ },
+ "record": {
+ "CNAME": "main-protfolio-seven.vercel.app"
+ }
+}
diff --git a/domains/sourabh.json b/domains/sourabh.json
new file mode 100644
index 000000000..c4c3f2aba
--- /dev/null
+++ b/domains/sourabh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Sourabh Yadav's Portfolio",
+ "repo": "https://github.com/YadavSourabhGH/YadavSourabhGH.github.io",
+ "owner": {
+ "username": "YadavSourabhGH",
+ "email": "yadav.sourabh9012@gmail.com"
+ },
+ "record": {
+ "CNAME": "yadavsourabhgh.github.io"
+ }
+}
diff --git a/domains/sourav.json b/domains/sourav.json
index a37eacc31..f188c86c7 100644
--- a/domains/sourav.json
+++ b/domains/sourav.json
@@ -3,7 +3,6 @@
"repo": "https://github.com/itzsouravkumar/itzsouravkumar.github.io",
"owner": {
"username": "itzsouravkumar",
- "email": "",
"discord": "itz_sour4v"
},
"record": {
diff --git a/domains/soymadip.json b/domains/soymadip.json
new file mode 100644
index 000000000..10abda764
--- /dev/null
+++ b/domains/soymadip.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Site",
+ "repo": "https://github.com/soymadip/soymadip.github.io",
+ "owner": {
+ "username": "soymadip",
+ "email": "soumadip@zohomail.in"
+ },
+ "record": {
+ "CNAME": "soymadip.github.io"
+ }
+}
diff --git a/domains/speedindeed1.json b/domains/speedindeed1.json
new file mode 100644
index 000000000..4b66ab415
--- /dev/null
+++ b/domains/speedindeed1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rohan-ingle",
+ "email": "rohaningle911@gmail.com"
+ },
+ "record": {
+ "CNAME": "rohan-ingle.github.io"
+ }
+}
diff --git a/domains/spencer.json b/domains/spencer.json
new file mode 100644
index 000000000..43484de0f
--- /dev/null
+++ b/domains/spencer.json
@@ -0,0 +1,11 @@
+{
+ "description": "Spencer's website",
+ "repo": "https://github.com/LeeSpencer/leespencer.github.io",
+ "owner": {
+ "username": "LeeSpencer",
+ "email": "mr.lee.spencer@gmail.com"
+ },
+ "record": {
+ "CNAME": "leespencer.github.io"
+ }
+}
diff --git a/domains/spreadsheets600.json b/domains/spreadsheets600.json
new file mode 100644
index 000000000..0282c2282
--- /dev/null
+++ b/domains/spreadsheets600.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio Website",
+ "repo": "https://github.com/SpreadSheets600/SpreadSheets600",
+ "owner": {
+ "username": "SpreadSheets600",
+ "email": "sohammaity006@gmail.com"
+ },
+ "record": {
+ "CNAME": "spreadsheets600.github.io"
+ }
+}
diff --git a/domains/sq.json b/domains/sq.json
index 5f34dd820..e5d58ce32 100644
--- a/domains/sq.json
+++ b/domains/sq.json
@@ -2,7 +2,6 @@
"description": "sqec's website",
"owner": {
"username": "SquareScreamYT",
- "repo": "https://github.com/SquareScreamYT",
"discord": "918475812884344852"
},
"record": {
diff --git a/domains/squair.json b/domains/squair.json
new file mode 100644
index 000000000..2c2e6f506
--- /dev/null
+++ b/domains/squair.json
@@ -0,0 +1,11 @@
+{
+ "description": "Dev Home Page",
+ "repo": "https://github.com/squairdev/squairdev.github.io",
+ "owner": {
+ "username": "squairdev",
+ "email": "squairyt@gmail.com"
+ },
+ "record": {
+ "CNAME": "squairdev.github.io"
+ }
+}
diff --git a/domains/sree.json b/domains/sree.json
new file mode 100644
index 000000000..4432550c6
--- /dev/null
+++ b/domains/sree.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "sreekanthputta",
+ "email": "srikanthp12896@gmail.com"
+ },
+ "record": {
+ "TXT": "google-site-verification=nXX-abxPPSr9hSqhiakyIHcXYGcuPpIBYVXtPnnxf00",
+ "A": [
+ "35.209.162.51"
+ ]
+ }
+}
diff --git a/domains/sreehari.json b/domains/sreehari.json
new file mode 100644
index 000000000..b58faca18
--- /dev/null
+++ b/domains/sreehari.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SreehariTS",
+ "email": "sreeharisudarshan@gmail.com"
+ },
+ "record": {
+ "CNAME": "sreeharits.github.io"
+ }
+}
diff --git a/domains/sri.json b/domains/sri.json
new file mode 100644
index 000000000..575e8234a
--- /dev/null
+++ b/domains/sri.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/srikrishna180/portfolio",
+ "owner": {
+ "username": "srikrishna180",
+ "email": "srikrishnak.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "irs.dev"
+ }
+}
diff --git a/domains/srujan.json b/domains/srujan.json
index 9433376f5..f2f07fecd 100644
--- a/domains/srujan.json
+++ b/domains/srujan.json
@@ -1,6 +1,5 @@
{
"description": "Personal Website",
- "repo": "https://github.com/bqwerr",
"owner": {
"username": "bqwerr",
"email": "srujan.t@outlook.com"
diff --git a/domains/stark.json b/domains/stark.json
new file mode 100644
index 000000000..ceb61f2e8
--- /dev/null
+++ b/domains/stark.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nguyentruongton",
+ "email": "tonstark.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "truongton.vercel.app"
+ }
+}
diff --git a/domains/starnumber.json b/domains/starnumber.json
index 523cf2832..4e52e365c 100644
--- a/domains/starnumber.json
+++ b/domains/starnumber.json
@@ -1,6 +1,5 @@
{
"description": "StarNumber's blog",
- "repo": "https://github.com/starnumber12046",
"owner": {
"username": "starnumber12046",
"email": "starnumber.official12046@gmail.com"
diff --git a/domains/status.akshtt.json b/domains/status.akshtt.json
new file mode 100644
index 000000000..392b9a20f
--- /dev/null
+++ b/domains/status.akshtt.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "akshtt-dev",
+ "discord": "1056531806763102218",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.rO2QcFbFjVqF890hZkgp-vCurdFW-B1GjE_QsbqCCszXMjFWf-o-wBgXBM-ReBw9UIvsHMK-VUWWBoz2OGEM6gH9-akt_7UVyb0rRW7Cf14EsDKlLrGu68NUcloWaKJBmTljShGS53br937l0Fg4C52Xrj-KSt13gUNBqOgipQDLxu6XQDrDDkqSRs_qG2Fj_bwV8aryDtBmeNPpmSccvj_2iBNtakgNrau8Z9MQpyC3cnygPEkHE-TG9B7MLFTUHeUM4aVD6m4m8TiTOMN-8wfQIZGWJRJN63v4CrqwWIVsLdNcLt4LH4QZVDQ9UoxsZ3HmYHnjKZwx9abrvsjE-A.-Fq-Y9GRM5CtqSKSC9_j-g.CLe5PojAjpjIz18t3pjBvFYOqyMX84yHtk9rCgPIKazQ78Oci-Y99APp170QCa7doh5MFbmwGXQ5l8j5pPYqdvsyrS43vV_uXkohYi69oMI.gickB69tvnA1Ag7WXseE9w"
+ },
+
+ "record": {
+ "A": ["45.133.74.41"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/status.ciaobot.json b/domains/status.ciaobot.json
deleted file mode 100644
index 6e1582f7e..000000000
--- a/domains/status.ciaobot.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Ciao287",
- "discord": "687333016921440317"
- },
- "record": {
- "A": ["144.91.115.195"]
- }
-}
diff --git a/domains/status.killuazoldyck.json b/domains/status.killuazoldyck.json
new file mode 100644
index 000000000..c03099498
--- /dev/null
+++ b/domains/status.killuazoldyck.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "killuazoldyckreal",
+ "email": "bk1030798@gmail.com"
+ },
+ "record": {
+ "CNAME": "statuspage.betteruptime.com"
+ }
+}
diff --git a/domains/status.xrap1dx.json b/domains/status.xrap1dx.json
index 475702775..ceba36be3 100644
--- a/domains/status.xrap1dx.json
+++ b/domains/status.xrap1dx.json
@@ -1,6 +1,5 @@
{
"description": "making my status page!!!",
- "repo": "https://github.com/xrap1dx?tab=repositories",
"owner": {
"username": "xrap1dx",
"email": "sirrapid155@gmail.com"
diff --git a/domains/stavkv.json b/domains/stavkv.json
deleted file mode 100644
index 89d5833b2..000000000
--- a/domains/stavkv.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "stavkv",
- "email": "singhvikal891@gmail.com"
- },
- "record": {
- "CNAME": "stavkv.github.io"
- }
-}
diff --git a/domains/stebanportfolio.json b/domains/stebanportfolio.json
new file mode 100644
index 000000000..e0b3978eb
--- /dev/null
+++ b/domains/stebanportfolio.json
@@ -0,0 +1,11 @@
+{
+ "description": "Give a profesional domain to my portfolio",
+ "repo": "https://github.com/fergone03/Portfolio-Desarrollador-Web",
+ "owner": {
+ "username": "fergone03",
+ "email": "fergonesteban03@gmail.com"
+ },
+ "record": {
+ "CNAME": "devsteban-portfolio.netlify.app"
+ }
+}
diff --git a/domains/stevesajeev.json b/domains/stevesajeev.json
new file mode 100644
index 000000000..46d06aba0
--- /dev/null
+++ b/domains/stevesajeev.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio webpage",
+ "repo": "https://github.com/SteveSajeev/SteveSajeev",
+ "owner": {
+ "username": "SteveSajeev",
+ "email": "stevepsajeev2008@gmail.com"
+ },
+ "record": {
+ "CNAME": "SteveSajeev.github.io"
+ }
+}
diff --git a/domains/sticknologic.json b/domains/sticknologic.json
index 0a6a40d50..b940803a0 100644
--- a/domains/sticknologic.json
+++ b/domains/sticknologic.json
@@ -1,16 +1,12 @@
{
"description": "Simple Portfolio and Blog Website",
- "repo": "https://github.com/sticknologic",
"owner": {
"username": "sticknologic",
"x": "STICKnoLOGIC",
- "facebook":"STICKnoLOGIC",
- "bsky":"STICKnoLOGIC"
+ "facebook": "STICKnoLOGIC",
+ "bsky": "STICKnoLOGIC"
},
"record": {
- "NS": [
- "ns1.heliohost.org",
- "ns2.heliohost.org"
- ]
+ "NS": ["ns1.heliohost.org", "ns2.heliohost.org"]
}
}
diff --git a/domains/stkong.json b/domains/stkong.json
new file mode 100644
index 000000000..8727f9102
--- /dev/null
+++ b/domains/stkong.json
@@ -0,0 +1,12 @@
+{
+ "description": "hosting personal / portfolio website for myself. Also this website is a link to my personal blog.",
+ "repo": "https://github.com/congltk1234/congltk1234.github.io",
+ "owner": {
+ "username": "congltk1234",
+ "email": "suwuanxan@gmail.com",
+ "linkedin": "https://www.linkedin.com/in/suthanhcong"
+ },
+ "record": {
+ "CNAME": "congltk1234.github.io"
+ }
+}
diff --git a/domains/studio.json b/domains/studio.json
new file mode 100644
index 000000000..68c44d3ee
--- /dev/null
+++ b/domains/studio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://juststudio.is-a.dev/"
+ }
+}
diff --git a/domains/subhan.json b/domains/subhan.json
new file mode 100644
index 000000000..c77c29a22
--- /dev/null
+++ b/domains/subhan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MS1034",
+ "email": "muhammadsubhan5701@gmail.com"
+ },
+ "record": {
+ "CNAME": "muhammad-subhan.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/sujal.json b/domains/sujal.json
index 3cfa3d825..86baa237b 100644
--- a/domains/sujal.json
+++ b/domains/sujal.json
@@ -1,5 +1,5 @@
{
- "repo":"https://github.com/SuzalShrestha/register",
+ "repo": "https://github.com/SuzalShrestha/register",
"owner": {
"username": "suzalshrestha",
"email": "sujalshresthawork@gmail.com"
diff --git a/domains/sukhdevr898.json b/domains/sukhdevr898.json
new file mode 100644
index 000000000..01e9a705e
--- /dev/null
+++ b/domains/sukhdevr898.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SUKHDEVR898",
+ "email": "sukhdevr898@gmail.com"
+ },
+ "record": {
+ "CNAME": "ai898.free.nf"
+ }
+}
diff --git a/domains/suki.json b/domains/suki.json
index 1669d49a0..e6b1e0f73 100644
--- a/domains/suki.json
+++ b/domains/suki.json
@@ -4,6 +4,7 @@
"email": "sukimayoo@outlook.com"
},
"record": {
- "CNAME": "portfolio-b8o.pages.dev"
- }
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
}
diff --git a/domains/sulabh.json b/domains/sulabh.json
new file mode 100644
index 000000000..d8a57efe9
--- /dev/null
+++ b/domains/sulabh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sulabh-npl",
+ "email": "sulabh.work19@gmail.com"
+ },
+ "record": {
+ "CNAME": "sulabh.info.np"
+ }
+}
diff --git a/domains/sulaiman.json b/domains/sulaiman.json
new file mode 100644
index 000000000..70e23ce44
--- /dev/null
+++ b/domains/sulaiman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "natsu90",
+ "email": "github@s.ss.my"
+ },
+ "record": {
+ "URL": "https://sulai.mn"
+ }
+}
diff --git a/domains/summon-the-coder.json b/domains/summon-the-coder.json
new file mode 100644
index 000000000..d80088a6d
--- /dev/null
+++ b/domains/summon-the-coder.json
@@ -0,0 +1,11 @@
+{
+ "description": "Site about me",
+ "repo": "https://github.com/banana6boom/banana6boom.github.io",
+ "owner": {
+ "username": "banana6boom",
+ "email": "themadhouse@mail.ru"
+ },
+ "record": {
+ "CNAME": "banana6boom.github.io"
+ }
+}
diff --git a/domains/sun.json b/domains/sun.json
index ee30e75de..fecbc1755 100644
--- a/domains/sun.json
+++ b/domains/sun.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "sxn4y",
- "email": "",
"discord": "5unn7n"
},
"record": {
diff --git a/domains/sunnydsouza.json b/domains/sunnydsouza.json
new file mode 100644
index 000000000..1bedf54c2
--- /dev/null
+++ b/domains/sunnydsouza.json
@@ -0,0 +1,10 @@
+{
+ "description": "Sunny Dsouza's GitHub page",
+ "owner": {
+ "username": "sunnydsouza",
+ "email": "dsouzasunny1436@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/sunnydsouza"
+ }
+}
diff --git a/domains/sunzizhuo.json b/domains/sunzizhuo.json
new file mode 100644
index 000000000..b05bd5d7e
--- /dev/null
+++ b/domains/sunzizhuo.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio",
+ "repo": "https://github.com/UnidentifiedX/unidentifiedx.github.io",
+ "owner": {
+ "username": "UnidentifiedX",
+ "email": "sunzizhuo33@gmail.com"
+ },
+ "record": {
+ "CNAME": "unidentifiedx.github.io"
+ }
+}
diff --git a/domains/supers0n1k.json b/domains/supers0n1k.json
new file mode 100644
index 000000000..ffdf6933b
--- /dev/null
+++ b/domains/supers0n1k.json
@@ -0,0 +1,11 @@
+{
+ "description": "supers0n1k's website. private email not disclosed. discord contact given",
+ "repo": "https://github.com/supers0n1k/supers0n1k.github.io",
+ "owner": {
+ "username": "supers0n1k",
+ "discord": "46mil"
+ },
+ "record": {
+ "CNAME": "supers0n1k.github.io"
+ }
+}
diff --git a/domains/supperfreddo.json b/domains/supperfreddo.json
new file mode 100644
index 000000000..121f6e599
--- /dev/null
+++ b/domains/supperfreddo.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "supperfreddo",
+ "email": "supperfreddoio@gmail.com",
+ "discord": "supperfreddo"
+ },
+ "record": {
+ "CNAME": "supperfreddo.vercel.app"
+ }
+}
diff --git a/domains/suraez.json b/domains/suraez.json
index feaa6c94c..5e9c40d9a 100644
--- a/domains/suraez.json
+++ b/domains/suraez.json
@@ -1,12 +1,11 @@
{
- "description": "My Portfolio Website",
- "repo": "https://github.com/Suraez/portfolio-2080",
- "owner": {
- "username": "suraez",
- "email": "oberais50@gmail.com"
- },
- "record": {
- "URL": "https://www.sko.com.np/"
- }
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/Suraez/portfolio-2080",
+ "owner": {
+ "username": "suraez",
+ "email": "oberais50@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.sko.com.np/"
}
-
\ No newline at end of file
+}
diff --git a/domains/sushankghimire.json b/domains/sushankghimire.json
new file mode 100644
index 000000000..9f6416ee8
--- /dev/null
+++ b/domains/sushankghimire.json
@@ -0,0 +1,11 @@
+{
+ "description": "Sushank Ghimire",
+ "repo": "https://github.com/Sushank-ghimire/ghimiresushank.com.np",
+ "owner": {
+ "username": "Sushank-ghimire",
+ "email": "ghimiresushank08@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.ghimiresushank.com.np"
+ }
+}
diff --git a/domains/sylphin3107.json b/domains/sylphin3107.json
new file mode 100644
index 000000000..673d0cd5d
--- /dev/null
+++ b/domains/sylphin3107.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sylphin3107",
+ "email": "tqvcontacts@gmail.com"
+ },
+ "record": {
+ "URL": "https://sylphin3107.uwu.ai/"
+ }
+}
diff --git a/domains/synthara.json b/domains/synthara.json
new file mode 100644
index 000000000..0c8c720b9
--- /dev/null
+++ b/domains/synthara.json
@@ -0,0 +1,13 @@
+{
+ "description": "🚀 Synthara – Your Smart AI Assistant Synthara is an advanced AI-powered virtual assistant designed to enhance productivity, answer queries, and automate tasks efficiently. Built with cutting-edge AI technology, Synthara delivers seamless interactions and intelligent responses.",
+ "repo": "https://github.com/ArhanAnsari/Synthara",
+ "owner": {
+ "username": "ArhanAnsari",
+ "email": "arhanansari2009@gmail.com",
+ "x": "https://x.com/codewitharhan",
+ "discord": "@codewitharhan"
+ },
+ "record": {
+ "CNAME": "synthara.vercel.app"
+ }
+}
diff --git a/domains/tainguyen.json b/domains/tainguyen.json
new file mode 100644
index 000000000..1819fd70e
--- /dev/null
+++ b/domains/tainguyen.json
@@ -0,0 +1,11 @@
+{
+ "description": "this is my profile",
+ "repo": "https://github.com/taitai2107/web_cv",
+ "owner": {
+ "username": "taitai2107",
+ "email": "nguyencongkhanhtai21072001@gmail.com"
+ },
+ "record": {
+ "CNAME": "taitai2107.github.io"
+ }
+}
diff --git a/domains/tak.json b/domains/tak.json
index 4b6963878..c456bb828 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": {
+ "A": ["103.221.223.52"]
+ },
+ "proxied": true
}
diff --git a/domains/tallerthanshort.json b/domains/tallerthanshort.json
index 41e7f061a..76b62edfb 100644
--- a/domains/tallerthanshort.json
+++ b/domains/tallerthanshort.json
@@ -1,6 +1,5 @@
{
"description": "TallerThanShort made site",
- "repo": "https://github.com/TallerThanShort",
"owner": {
"username": "TallerThanShort",
"email": "TallerThanShort@duck.com"
diff --git a/domains/tanbaycu.json b/domains/tanbaycu.json
new file mode 100644
index 000000000..892edd731
--- /dev/null
+++ b/domains/tanbaycu.json
@@ -0,0 +1,12 @@
+{
+ "description": "Trang portfolio cá nhân của tôi.",
+ "repo": "https://github.com/tanbaycu/tanbaycu.github.io",
+ "owner": {
+ "username": "tanbaycu",
+ "email": "tanbaycu@gmail.com"
+ },
+ "record": {
+ "CNAME": "tanbaycu.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/tandevhtml.json b/domains/tandevhtml.json
new file mode 100644
index 000000000..ab2025905
--- /dev/null
+++ b/domains/tandevhtml.json
@@ -0,0 +1,12 @@
+{
+ "description": "Documentation website for tanbaycu Dev Website AI",
+ "repo": "https://github.com/tanbaycu",
+ "owner": {
+ "username": "tanbaycu",
+ "email": "mnew20128@gmail.com"
+ },
+ "record": {
+ "CNAME": "aiview.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/tanish-chahal.json b/domains/tanish-chahal.json
new file mode 100644
index 000000000..af18388a1
--- /dev/null
+++ b/domains/tanish-chahal.json
@@ -0,0 +1,11 @@
+{
+ "description": "Tanish's Portfolio",
+ "repo": "https://github.com/TanishChahal/register",
+ "owner": {
+ "username": "TanishChahal",
+ "email": "TanishChahal5705@gmail.com"
+ },
+ "record": {
+ "URL": "https://tanishchahal.netlify.app"
+ }
+}
diff --git a/domains/tanishq.json b/domains/tanishq.json
new file mode 100644
index 000000000..496cf9902
--- /dev/null
+++ b/domains/tanishq.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tanishqmanuja",
+ "email": "tanishqmanuja@gmail.com"
+ },
+ "record": {
+ "CNAME": "tqman.pages.dev"
+ }
+}
diff --git a/domains/tanuj-nagpal.json b/domains/tanuj-nagpal.json
new file mode 100644
index 000000000..be8d09b2d
--- /dev/null
+++ b/domains/tanuj-nagpal.json
@@ -0,0 +1,11 @@
+{
+ "description": "personal website",
+ "repo": "https://github.com/tanuj101/personal-web-space",
+ "owner": {
+ "username": "tanuj101",
+ "email": "tanujnagpal999@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/tanveer.json b/domains/tanveer.json
new file mode 100644
index 000000000..8ee2b9c5e
--- /dev/null
+++ b/domains/tanveer.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio Website of Tanveer Husyn",
+ "repo": "https://github.com/Tanveerhusyn/new_portfolio",
+ "owner": {
+ "username": "tanveerhusyn",
+ "email": "tanveerhussain465@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-tanveer.netlify.app"
+ }
+}
diff --git a/domains/nepnep.imm0nv1nhtv.json b/domains/tanvir.json
similarity index 52%
rename from domains/nepnep.imm0nv1nhtv.json
rename to domains/tanvir.json
index 2bae8b5a4..32385ec92 100644
--- a/domains/nepnep.imm0nv1nhtv.json
+++ b/domains/tanvir.json
@@ -1,9 +1,11 @@
{
+ "description": "Tanvir's personal website",
"owner": {
- "username": "imm0nv1nhtv",
- "email": "windows10phamvinh+github@gmail.com"
+ "username": "tnv1r",
+ "email": "dev@tanvir.io"
},
"record": {
+ "A": ["76.76.21.21"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/tanviyeole.json b/domains/tanviyeole.json
new file mode 100644
index 000000000..13d1d4e7d
--- /dev/null
+++ b/domains/tanviyeole.json
@@ -0,0 +1,10 @@
+{
+ "description": "Hello! I am Tanvi, a Full Stack Web Developer based in Nashik",
+ "owner": {
+ "username": "tanvi-yeole",
+ "email": "tanvi.yeole3@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-nu-eight-80.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/tas33n.json b/domains/tas33n.json
index 6419580a0..7f0cd7299 100644
--- a/domains/tas33n.json
+++ b/domains/tas33n.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/tas33n/tas33n.github.io",
"owner": {
"username": "tas33n",
- "email": "tasu.legend@gmail.com",
- "twitter": ""
+ "email": "tasu.legend@gmail.com"
},
"record": {
"CNAME": "tas33n.pages.dev"
diff --git a/domains/tawhid.json b/domains/tawhid.json
index 4a7ab0430..893e43d52 100644
--- a/domains/tawhid.json
+++ b/domains/tawhid.json
@@ -1,9 +1,11 @@
{
- "owner": {
- "username": "Dumbo-programmer",
- "email": "rony.120285d2k@gmail.com"
- },
- "record": {
- "CNAME": "dumbo-programmer.github.io"
- }
+ "description": "Personal hobby site",
+ "repo": "https://github.com/Dumbo-programmer/Dumbo-programmer.github.io",
+ "owner": {
+ "username": "Dumbo-programmer",
+ "email": "rony.120285d2k@gmail.com"
+ },
+ "record": {
+ "A": ["52.74.232.59"]
+ }
}
diff --git a/domains/tawhidislam.json b/domains/tawhidislam.json
new file mode 100644
index 000000000..ebcd697f3
--- /dev/null
+++ b/domains/tawhidislam.json
@@ -0,0 +1,10 @@
+{
+ "description": "For my personal portfolio website",
+ "owner": {
+ "username": "tawhid404Err",
+ "email": "xcode.dev@yahoo.com"
+ },
+ "record": {
+ "A": ["103.62.149.9"]
+ }
+}
diff --git a/domains/tawiah.json b/domains/tawiah.json
new file mode 100644
index 000000000..7582148ea
--- /dev/null
+++ b/domains/tawiah.json
@@ -0,0 +1,11 @@
+{
+ "description": "Describe the use of this subdomain",
+ "repo": "https://github.com/tawiahnyt/tawiah",
+ "owner": {
+ "username": "tawiahnyt",
+ "email": "tawiahin4k@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/termonoid.json b/domains/termonoid.json
index aa459c481..f1d6a4918 100644
--- a/domains/termonoid.json
+++ b/domains/termonoid.json
@@ -1,6 +1,5 @@
{
"description": "Domain for personal server",
- "repo": "https://github.com/Termonoid",
"owner": {
"username": "Termonoid",
"email": "termonoid@cumallover.me",
diff --git a/domains/terry.json b/domains/terry.json
new file mode 100644
index 000000000..e6de06fe4
--- /dev/null
+++ b/domains/terry.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "realyoterry",
+ "email": "theterrykim@gmail.com"
+ },
+ "record": {
+ "CNAME": "realyoterry.vercel.app"
+ }
+}
diff --git a/domains/texh.json b/domains/texh.json
index b41ddb98b..b1ea1da39 100644
--- a/domains/texh.json
+++ b/domains/texh.json
@@ -4,6 +4,6 @@
"email": "techtonic709@gmail.com"
},
"record": {
- "MX": ["mx1.improvmx.com"]
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
}
}
diff --git a/domains/tf.json b/domains/tf.json
index c3e6c7971..2e50f73c8 100644
--- a/domains/tf.json
+++ b/domains/tf.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "WaspZix",
- "email": "160319648+WaspZix@users.noreply.github.com"
+ "username": "WaspZix"
},
"record": {
"CNAME": "thefirst.glitch.me"
diff --git a/domains/thanh-sang.json b/domains/thanh-sang.json
new file mode 100644
index 000000000..5254349b3
--- /dev/null
+++ b/domains/thanh-sang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sanG-github",
+ "email": "sanghuynh20000@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-logan.netlify.app"
+ }
+}
diff --git a/domains/thavirak.json b/domains/thavirak.json
new file mode 100644
index 000000000..2ae929ee3
--- /dev/null
+++ b/domains/thavirak.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thavirak",
+ "email": "thavirak@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/the-green-light.json b/domains/the-green-light.json
deleted file mode 100644
index bec4a9ac0..000000000
--- a/domains/the-green-light.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Senky-Dev",
- "email": "agarwala.keshav10@gmail.com"
- },
- "record": {
- "CNAME": "the-green-light.pages.dev"
- }
-}
diff --git a/domains/thecommandcat.json b/domains/thecommandcat.json
new file mode 100644
index 000000000..56e39014d
--- /dev/null
+++ b/domains/thecommandcat.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/TheCommandCat/TheCommandCat.github.io",
+ "owner": {
+ "username": "TheCommandCat",
+ "email": "bhrtkhvji@gmail.com"
+ },
+ "record": {
+ "CNAME": "thecommandcat.github.io"
+ }
+}
diff --git a/domains/thedt.json b/domains/thedt.json
index ca92d70ce..af18ae2b3 100644
--- a/domains/thedt.json
+++ b/domains/thedt.json
@@ -4,6 +4,6 @@
"email": "duongtuan30306@gmail.com"
},
"record": {
- "CNAME": "thedt-portfolio.pages.dev"
+ "CNAME": "thedthomepage.pages.dev"
}
}
diff --git a/domains/thegoofy-guy.json b/domains/thegoofy-guy.json
new file mode 100644
index 000000000..19c70cf17
--- /dev/null
+++ b/domains/thegoofy-guy.json
@@ -0,0 +1,10 @@
+{
+ "description": "My personal portfolio website",
+ "owner": {
+ "username": "thegoofy-dev",
+ "email": "pankajtyagi1601@gmail.com"
+ },
+ "record": {
+ "CNAME": "pankajtyagi-portfolio.vercel.app"
+ }
+}
diff --git a/domains/therookiecoder.json b/domains/therookiecoder.json
index 3dec24550..be47f4fa2 100644
--- a/domains/therookiecoder.json
+++ b/domains/therookiecoder.json
@@ -1,10 +1,12 @@
{
+ "description": "My personal website",
+ "repo": "https://github.com/theRookieCoder/theRookieCoder.github.io",
"owner": {
"username": "theRookieCoder",
"email": "ileshkt@gmail.com",
- "discord": "theRookieCoder#1287"
+ "discord": "therookiecoder"
},
"record": {
- "URL": "https://github.com/theRookieCoder"
+ "CNAME": "therookiecoder.github.io"
}
}
diff --git a/domains/thiagotukozaki.json b/domains/thiagotukozaki.json
index bc1f0e6cd..8bbca53c8 100644
--- a/domains/thiagotukozaki.json
+++ b/domains/thiagotukozaki.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "TukozakiT",
- "email": "contato.thiagoeiji@gmail.com"
- },
- "record": {
- "CNAME": "thiagotukozaki.vercel.app"
- }
+ "owner": {
+ "username": "TukozakiT",
+ "email": "contato.thiagoeiji@gmail.com"
+ },
+ "record": {
+ "CNAME": "thiagotukozaki.vercel.app"
+ }
}
diff --git a/domains/thinhnguyen.json b/domains/thinhnguyen.json
new file mode 100644
index 000000000..4023b9961
--- /dev/null
+++ b/domains/thinhnguyen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thinhdnn",
+ "email": "nguyenvanthinh.dnn@gmail.com"
+ },
+ "record": {
+ "A": ["152.69.196.244"]
+ }
+}
diff --git a/domains/thorito.json b/domains/thorito.json
new file mode 100644
index 000000000..f9b31b22d
--- /dev/null
+++ b/domains/thorito.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Portfolio Website",
+ "repo": "https://github.com/thorito/thorito.github.io",
+ "owner": {
+ "username": "thorito",
+ "email": "victor.villar.misa@gmail.com"
+ },
+ "record": {
+ "CNAME": "thorito.github.io"
+ }
+}
diff --git a/domains/thuc.json b/domains/thuc.json
new file mode 100644
index 000000000..5c10b4b73
--- /dev/null
+++ b/domains/thuc.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "thucngyyen"
+ },
+ "record": {
+ "CNAME": "thucngyyen.github.io"
+ }
+}
diff --git a/domains/ti3r.json b/domains/ti3r.json
new file mode 100644
index 000000000..6ec571e42
--- /dev/null
+++ b/domains/ti3r.json
@@ -0,0 +1,10 @@
+{
+ "description": "Ti3r's Dev Portfolio",
+ "owner": {
+ "username": "ti3r",
+ "email": "ti3r.bubblenet@gmail.com"
+ },
+ "record": {
+ "CNAME": "ti3r.github.io"
+ }
+}
diff --git a/domains/tiep-dv.json b/domains/tiep-dv.json
new file mode 100644
index 000000000..06c89907c
--- /dev/null
+++ b/domains/tiep-dv.json
@@ -0,0 +1,11 @@
+{
+ "description": "tiep-dv.is-a.dev : This is my personal notebook",
+ "repo": "https://github.com/tiep-dv/github-repository",
+ "owner": {
+ "username": "tiep-dv",
+ "email": "tiepduongv@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/tiep-dv"
+ }
+}
diff --git a/domains/tim-vdb.json b/domains/tim-vdb.json
new file mode 100644
index 000000000..2fc8d8e7f
--- /dev/null
+++ b/domains/tim-vdb.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal portfolio",
+ "repo": "https://github.com/tim-vdb/tim-vdb.github.io",
+ "owner": {
+ "username": "tim-vdb",
+ "email": "timotheevdbosch@gmail.com"
+ },
+ "record": {
+ "CNAME": "tim-vdb.github.io"
+ }
+}
diff --git a/domains/timi2506.json b/domains/timi2506.json
new file mode 100644
index 000000000..bbd8ef720
--- /dev/null
+++ b/domains/timi2506.json
@@ -0,0 +1,11 @@
+{
+ "description": "A Custom Domain for my Personal Website",
+ "repo": "https://github.com/timi2506/register",
+ "owner": {
+ "username": "timi2506",
+ "email": "tim@glos-omu.uk"
+ },
+ "record": {
+ "CNAME": "timi2506.github.io"
+ }
+}
diff --git a/domains/tio.json b/domains/tio.json
new file mode 100644
index 000000000..39dc91e55
--- /dev/null
+++ b/domains/tio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hostinger-bot",
+ "email": "hostingerbalance@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/toastedstuff.json b/domains/toastedstuff.json
new file mode 100644
index 000000000..279bc8f6f
--- /dev/null
+++ b/domains/toastedstuff.json
@@ -0,0 +1,11 @@
+{
+ "description": "toast's site lol",
+ "repo": "https://github.com/bpr1ch3/bpr1ch3.github.io",
+ "owner": {
+ "username": "bpr1ch3",
+ "email": "toastedstufff@gmail.com"
+ },
+ "record": {
+ "CNAME": "bpr1ch3.github.io"
+ }
+}
diff --git a/domains/tobi.json b/domains/tobi.json
new file mode 100644
index 000000000..b8f1d131f
--- /dev/null
+++ b/domains/tobi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tobikli",
+ "email": "tobikli@pm.me"
+ },
+ "record": {
+ "URL": "https://tobia.sh"
+ }
+}
diff --git a/domains/tobias.json b/domains/tobias.json
new file mode 100644
index 000000000..bd43dbc9d
--- /dev/null
+++ b/domains/tobias.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "smarterToby",
+ "discord": "724712767080235049"
+ },
+ "record": {
+ "CNAME": "tobiasreuss.vercel.app"
+ }
+}
diff --git a/domains/tofu.json b/domains/tofu.json
new file mode 100644
index 000000000..bc813bb58
--- /dev/null
+++ b/domains/tofu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "yychen1201",
+ "discord": "1009412927754866728",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cZujVSVhansXZskEDTwKI9pcw2Leo2FuKUY12bFLgBv8degT9VaRgOSn7Z4evuLzwINGhnhaweh-Xgo8pUWGOqrO_bDMRyxcIItpx_mGVTMaSZy5SS_aUqGeWbOpsq1oKDGDBumKjJd82m-KXJFq9VEybWOp2B5CVq_dzFC9tzJu-Uu_-0uuC1qRhPeQJHBl1FIgPlyo_bmFoJ_Ow7p7anUonv3zTkqBwPXSyde_BBMzXYU437yharMqo6kZK7N3CVFHoXIg_4aqipW2x-KwGllezQZI8ig3ZvQfLOXDuAwxDRdlwOHQnGlLpSZSZTfVCToifGo--0X6Ml0YHYry9A.Ch4kkhWBAEOJYbdFZyOxZA.Md97JISmrKUauMgTU3ounghyfbxUYW0-M-dedQA7IMlEUE0L08SaYAxh6z88b-7GtuwpszkbxQM9geUOvIl1H3bXfOJqaDFIRlBDgl_Vp4Q.djUuJgDKO_tQYYX_Sa0vLg"
+ },
+ "record": {
+ "CNAME": "yychen1201.github.io"
+ }
+}
diff --git a/domains/tom.json b/domains/tom.json
index f97d865bb..b7cbf3ae3 100644
--- a/domains/tom.json
+++ b/domains/tom.json
@@ -3,7 +3,6 @@
"username": "tommitchelmore",
"email": "tommitchelmore@outlook.com"
},
- "repo": "https://github.com/tommitchelmore",
"record": {
"URL": "https://github.com/tommitchelmore"
}
diff --git a/domains/tomascornelles.json b/domains/tomascornelles.json
new file mode 100644
index 000000000..06934fcd9
--- /dev/null
+++ b/domains/tomascornelles.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal blog of Tomas Cornelles, Frontend developer",
+ "repo": "https://github.com/tomascornelles/tomascornelles",
+ "owner": {
+ "username": "tomascornelles",
+ "email": "tomascornelles@gmail.com"
+ },
+ "record": {
+ "CNAME": "tomascornelles.github.io"
+ }
+}
diff --git a/domains/tomek.json b/domains/tomek.json
new file mode 100644
index 000000000..defbebbd1
--- /dev/null
+++ b/domains/tomek.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "tomek-i"
+ },
+ "record": {
+ "CNAME": "tomek-i.github.io"
+ }
+}
diff --git a/domains/trademark.json b/domains/trademark.json
new file mode 100644
index 000000000..59d91b0bb
--- /dev/null
+++ b/domains/trademark.json
@@ -0,0 +1,11 @@
+{
+ "description": "nice subdomain for my personal website.",
+ "repo": "https://github.com/trmrk/trademark",
+ "owner": {
+ "username": "trmrk",
+ "email": "augmooney@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/tranduytoan.json b/domains/tranduytoan.json
new file mode 100644
index 000000000..9c327da91
--- /dev/null
+++ b/domains/tranduytoan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tranduytoan",
+ "email": "toandeptraibodoiqua.10a4@gmail.com"
+ },
+ "record": {
+ "CNAME": "tranduytoan.github.io"
+ }
+}
diff --git a/domains/tranminhtan.json b/domains/tranminhtan.json
new file mode 100644
index 000000000..f0ffe91e4
--- /dev/null
+++ b/domains/tranminhtan.json
@@ -0,0 +1,12 @@
+{
+ "description": "Documents AI website for tanbaycu",
+ "repo": "https://github.com/tanbaycu",
+ "owner": {
+ "username": "tanbaycu",
+ "email": "mnew20128@gmail.com"
+ },
+ "record": {
+ "CNAME": "trituenhantao.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/tristan.json b/domains/tristan.json
index 44416c51b..ae74a1e92 100644
--- a/domains/tristan.json
+++ b/domains/tristan.json
@@ -1,6 +1,5 @@
{
"description": "Tristans personal Website",
- "repo": "https://github.com/holymarcell",
"owner": {
"username": "holymarcell",
"email": "is-a.dev@holy-mail.de"
diff --git a/domains/trucpham.json b/domains/trucpham.json
new file mode 100644
index 000000000..af42286f9
--- /dev/null
+++ b/domains/trucpham.json
@@ -0,0 +1,12 @@
+{
+ "description": "My portfolio website.",
+ "repo": "https://github.com/trucpham04",
+ "owner": {
+ "username": "trucpham04",
+ "email": "trucpham04@proton.me"
+ },
+ "record": {
+ "CNAME": "trucpham.pages.dev"
+ },
+ "proxied": true
+}
diff --git a/domains/truongvanthong.json b/domains/truongvanthong.json
new file mode 100644
index 000000000..835cd40cc
--- /dev/null
+++ b/domains/truongvanthong.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "truongvanthong",
+ "email": "thongvanpro2002@gmail.com"
+ },
+ "record": {
+ "CNAME": "truongvanthong.github.io"
+ }
+}
diff --git a/domains/tsania.json b/domains/tsania.json
new file mode 100644
index 000000000..bfb6df136
--- /dev/null
+++ b/domains/tsania.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tsnzzhr",
+ "email": "tsnzzhr102@gmail.com"
+ },
+ "record": {
+ "CNAME": "tsanias.vercel.app"
+ }
+}
diff --git a/domains/tstark.json b/domains/tstark.json
index 582a7ccb9..cce907b7a 100644
--- a/domains/tstark.json
+++ b/domains/tstark.json
@@ -1,11 +1,11 @@
{
- "subdomain": "tstark",
- "owner": {
- "username": "t-starks",
- "email": "sr.shelby.lp@gmail.com"
- },
- "record": {
- "CNAME": "t-stark.netlify.app"
- },
- "proxied": false
+ "subdomain": "tstark",
+ "owner": {
+ "username": "t-starks",
+ "email": "sr.shelby.lp@gmail.com"
+ },
+ "record": {
+ "CNAME": "t-stark.netlify.app"
+ },
+ "proxied": false
}
diff --git a/domains/tuanthu1.json b/domains/tuanthu1.json
new file mode 100644
index 000000000..e17321f16
--- /dev/null
+++ b/domains/tuanthu1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tuanthu1",
+ "email": "hoangtuanthu981@gmail.com"
+ },
+ "record": {
+ "CNAME": "tuanthu1.github.io"
+ }
+}
diff --git a/domains/tulasidhar.json b/domains/tulasidhar.json
new file mode 100644
index 000000000..323dd95dc
--- /dev/null
+++ b/domains/tulasidhar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tulasidharm",
+ "email": "tulasidharmulakaluri@gmail.com"
+ },
+ "record": {
+ "CNAME": "tulasidharm.github.io"
+ }
+}
diff --git a/domains/tullio.json b/domains/tullio.json
new file mode 100644
index 000000000..0abbe2cfe
--- /dev/null
+++ b/domains/tullio.json
@@ -0,0 +1,10 @@
+{
+ "description": "Tullio Sebastiani's Home Page",
+ "owner": {
+ "username": "tsebastiani",
+ "email": "github.sensitize723@passinbox.com"
+ },
+ "record": {
+ "CNAME": "tsebastiani.github.io"
+ }
+}
diff --git a/domains/tungbt.json b/domains/tungbt.json
new file mode 100644
index 000000000..c4a66578f
--- /dev/null
+++ b/domains/tungbt.json
@@ -0,0 +1,20 @@
+{
+ "description": "tungbt.is-a.dev : This is my personal blog",
+ "owner": {
+ "username": "bthanhtung",
+ "email": "bthanhtung.se@gmail.com"
+ },
+ "record": {
+ "URL": "https://tungbt.vercel.app/"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/bthanhtung",
+ "/x": "https://x.com/_bthanhtung",
+ "/fb": "https://facebook.com/TungDaDev",
+ "/linkedin": "https://linkedin.com/in/TungDaDev",
+ "/viblo": "https://viblo.asia/u/bthanhtung"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/tunnel.vulcanocraft.json b/domains/tunnel.vulcanocraft.json
index e038d3c7d..fbb3269d4 100644
--- a/domains/tunnel.vulcanocraft.json
+++ b/domains/tunnel.vulcanocraft.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "VulcanoSoftware",
- "email": "",
"discord": "814891541205876767",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JPhn4mFGL270NVjNvcLw1eYMU_-BAJ7GiIPBlijkSzPPJsByxT2CJErVgHV3K_QjLQRPMGeQE0jjYHOWFLhlZc2mjav7vcAYrcWjnSa-QKbQho_ppnebX1E8OfLtsKWtvqxfGm3O-ii7Eh4XYo7ozm49gTKed_Ypc1svCFp7SePt5DXzhuDoeJ7Ob-vd8zkmhuIoIBXBERWWnfQgaDDfUwCtkmziOmKGYECzpxK6y1z_jhHcjcftLSXn0S7730nODGhidOB9x-YSCkG-O3e72ECu0KH3SRg-HwJz4pQlmeYXGDZClDe9YG1GSHiW4xa9iT36PE8Q0zBLMvS8UWQh4g.LL602nYC1Zm6b1Rjv_5OGQ.QJymDzTupny-bEtQy-G8hZI1Ey49IDr3ZzhhBwE3Qtg7XQnsDf63q3nAGVX3zEHtK8GWQ-dnDg2FStiBRSihFczry1fYk1BOEbtwDQ-PYnphLeLhZuDz3BzVshnqVavw.1I4mHnmNjPVv4AwJvcUPKA"
},
diff --git a/domains/twistedtransistor.json b/domains/twistedtransistor.json
new file mode 100644
index 000000000..2ce8dc325
--- /dev/null
+++ b/domains/twistedtransistor.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio website",
+ "repo": "https://github.com/mikeisfree/webzone404",
+ "owner": {
+ "username": "mikeisfree",
+ "email": "mzaperty@gmail.com"
+ },
+ "record": {
+ "CNAME": "mikeisfree.github.io"
+ }
+}
diff --git a/domains/tykea.json b/domains/tykea.json
new file mode 100644
index 000000000..02f73924c
--- /dev/null
+++ b/domains/tykea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tykealy",
+ "email": "tykeaboyloy@gmail.com"
+ },
+ "record": {
+ "CNAME": "tykea.dev"
+ }
+}
diff --git a/domains/ud.json b/domains/ud.json
index b0ab06c7e..74ceec910 100644
--- a/domains/ud.json
+++ b/domains/ud.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "umanga907",
- "email": "umanga.907@gmail.com",
- "discord": "ud907"
- },
- "record": {
- "CNAME": "umanga-portfolio.vercel.app"
- }
+ "owner": {
+ "username": "umanga907",
+ "email": "umanga.907@gmail.com",
+ "discord": "ud907"
+ },
+ "record": {
+ "CNAME": "umanga-portfolio.vercel.app"
+ }
}
diff --git a/domains/udit.json b/domains/udit.json
new file mode 100644
index 000000000..b80065b9a
--- /dev/null
+++ b/domains/udit.json
@@ -0,0 +1,11 @@
+{
+ "description": "Udit's portfolio",
+ "repo": "https://github.com/uditdev1/details",
+ "owner": {
+ "username": "uditdev",
+ "email": "uditdev0008@gmail.com"
+ },
+ "record": {
+ "CNAME": "details-five.vercel.app"
+ }
+}
diff --git a/domains/uditha.json b/domains/uditha.json
new file mode 100644
index 000000000..962512690
--- /dev/null
+++ b/domains/uditha.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "udithamanohara"
+ },
+ "record": {
+ "CNAME": "udithamanohara.github.io"
+ }
+}
diff --git a/domains/udyanupal.json b/domains/udyanupal.json
new file mode 100644
index 000000000..b257a8a54
--- /dev/null
+++ b/domains/udyanupal.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "udyanupal"
+ },
+ "record": {
+ "CNAME": "usupal.vercel.app"
+ }
+}
diff --git a/domains/ujjvaljoshi.json b/domains/ujjvaljoshi.json
new file mode 100644
index 000000000..aeffece32
--- /dev/null
+++ b/domains/ujjvaljoshi.json
@@ -0,0 +1,10 @@
+{
+ "description": "Main Page",
+ "owner": {
+ "username": "ujjvaljoshi45",
+ "email": "ujjvaljoshi45@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/umar.json b/domains/umar.json
new file mode 100644
index 000000000..063adf298
--- /dev/null
+++ b/domains/umar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "umarsidiki",
+ "email": "siddiquiumar0007@gmail.com"
+ },
+ "record": {
+ "CNAME": "umarsidiki.github.io"
+ }
+}
diff --git a/domains/umerislam.json b/domains/umerislam.json
index 9e46ad79b..b6677d97a 100644
--- a/domains/umerislam.json
+++ b/domains/umerislam.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "umer-islam",
- "email": "umer.islam474@gmail.com"
- },
- "record": {
- "CNAME": "umerislam.netlify.app"
- }
+ "owner": {
+ "username": "umer-islam",
+ "email": "umer.islam474@gmail.com"
+ },
+ "record": {
+ "CNAME": "umerislam.netlify.app"
+ }
}
diff --git a/domains/undefined.json b/domains/undefined.json
index d860e36c3..d2143d6e5 100644
--- a/domains/undefined.json
+++ b/domains/undefined.json
@@ -1,8 +1,7 @@
{
"description": "This subdomain is for my personal portfolio website.",
- "repo": "https://github.com/baokhang4930/baokhang4930.github.io",
"owner": {
- "username": "baokhang4930",
+ "username": "actuallyundefined",
"email": "baokhang4930@gmail.com",
"twitter": "undefiined__"
},
diff --git a/domains/unicorn.json b/domains/unicorn.json
new file mode 100644
index 000000000..139433a9a
--- /dev/null
+++ b/domains/unicorn.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain for dynamic DNS updates and Cloudflare Tunnel setup for demo purposes.",
+ "owner": {
+ "username": "bnfone",
+ "email": "is-a-dev-registration.zbden@simplelogin.com"
+ },
+ "record": {
+ "NS": ["adelaide.ns.cloudflare.com", "arnold.ns.cloudflare.com"]
+ },
+ "proxied": false
+}
diff --git a/domains/unlux.json b/domains/unlux.json
new file mode 100644
index 000000000..48c3d9643
--- /dev/null
+++ b/domains/unlux.json
@@ -0,0 +1,10 @@
+{
+ "description": "Porfolio website link for lux",
+ "owner": {
+ "username": "unlux",
+ "email": "support@unlux.dev"
+ },
+ "record": {
+ "URL": "https://unlux.dev"
+ }
+}
diff --git a/domains/untitled.json b/domains/untitled.json
deleted file mode 100644
index d5342d887..000000000
--- a/domains/untitled.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Hosting my website",
- "repo": "https://github.com/VihaanAnand/VihaanAnand.github.io",
- "owner": {
- "username": "VihaanAnand",
- "email": "macos14sonoma@gmail.com"
- },
- "record": {
- "CNAME": "vihaananand.github.io"
- }
-}
diff --git a/domains/url.aditya.json b/domains/url.aditya.json
deleted file mode 100644
index 18dab9f28..000000000
--- a/domains/url.aditya.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "subdomain for link redirection",
- "repo": "https://github.com/dedomil",
- "owner": {
- "username": "dedomil",
- "email": "ishqaddy@gmail.com",
- "twitter": "aadixl",
- "discord": "dedomil"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/usamakhalid.json b/domains/usamakhalid.json
new file mode 100644
index 000000000..a07a72c04
--- /dev/null
+++ b/domains/usamakhalid.json
@@ -0,0 +1,11 @@
+{
+ "description": "THIS IS MY PORTFOLIO WEBSITE, But I am still working on it. I will update it soon.",
+ "repo": "https://github.com/usama0155/portfolio",
+ "owner": {
+ "username": "usama0155",
+ "email": "usamak5453@gmail.com"
+ },
+ "record": {
+ "CNAME": "usama0155.github.io"
+ }
+}
diff --git a/domains/usekyber.json b/domains/usekyber.json
new file mode 100644
index 000000000..b08eb49b1
--- /dev/null
+++ b/domains/usekyber.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "roger-padrell",
+ "discord": "1335907071287230527",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mUg0h0vs51TZlH_HhPFCqQvSXzhsEa9nWRE_vKRN7AWyU2jSneGFQopQ5Lj__CLtmRDCd60W0wYjH8FEqUjYaquACMvfkG2KrU-F6Ht8efv-g6fvQSnEpFeCy4jaeOI0WqCfwoDY8AAaH2daMX3CrLhrJAVD-CNm5sjssElj77cmDhU1Z0m2WCp__Akt-uDNc2VUVlUpDfqhV9b8pgEX-NfSMAU0kL-v1B037PVUCBPj_obfJyOUDj72lTcl5uYoJlkIiUbsfvWAIvbP2i_0xxAXXhuyfTnD1a_2FAXmKegzUmM9kjgao1RNWUAXo_sgydw0IxevpVgI-GhZgl09CA.WkO0f1qjPnhPD4YI1U_buA.Vj5CjME69F7g0jEiXmgD0OUNf7GpLBCRuI0Ap5sE67A0D0dWYoKPyE6c5Jy-8U5UuCic01BnIhP3SKeQ4u3ZiCjXkjfeYaXba_UIcOdWBpw.Qm7MtmHkzZBCmWtDpIMY7g"
+ },
+ "record": {
+ "CNAME": "0fd7817ec6-hosting.gitbook.io"
+ }
+}
diff --git a/domains/user0.json b/domains/user0.json
index f20cd0911..a4d0c0619 100644
--- a/domains/user0.json
+++ b/domains/user0.json
@@ -3,10 +3,9 @@
"repo": "https://github.com/user0-07161/user0-07161.github.io",
"owner": {
"username": "user0-07161",
- "email": "user0thenyancat@proton.me",
- "discord": "1213799919920484364"
+ "email": "user0thenyancat@proton.me"
},
"record": {
- "CNAME": "user0-07161.github.io"
+ "CNAME": "user0-07161.codeberg.page"
}
}
diff --git a/domains/ushnish.json b/domains/ushnish.json
new file mode 100644
index 000000000..104afd249
--- /dev/null
+++ b/domains/ushnish.json
@@ -0,0 +1,16 @@
+{
+ "owner": {
+ "username": "UshnishG",
+ "email": "ghosalushnish@gmail.com"
+ },
+ "record": {
+ "URL": "https://ushnish.vercel.app"
+ },
+ "redirect_config": {
+ "custom_paths": {
+ "/github": "https://github.com/UshnishG",
+ "/linkedin": "https://www.linkedin.com/in/ushnishghosal"
+ },
+ "redirect_paths": true
+ }
+}
diff --git a/domains/usmanbaig.json b/domains/usmanbaig.json
index db087c533..0753fd396 100644
--- a/domains/usmanbaig.json
+++ b/domains/usmanbaig.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "UsmanBaig001",
- "email": "usmanbaig1572@gmail.com"
- },
- "record": {
- "CNAME": "usmanbaig-dev.vercel.app"
- }
- }
\ No newline at end of file
+ "owner": {
+ "username": "UsmanBaig001",
+ "email": "usmanbaig1572@gmail.com"
+ },
+ "record": {
+ "CNAME": "usmanbaig-dev.vercel.app"
+ }
+}
diff --git a/domains/utkarsh-singhal.json b/domains/utkarsh-singhal.json
new file mode 100644
index 000000000..9def37f05
--- /dev/null
+++ b/domains/utkarsh-singhal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Utkarsh-Singhal-26",
+ "email": "singhalutkarsh26@gmail.com"
+ },
+ "record": {
+ "CNAME": "utkarsh-singhal.vercel.app"
+ }
+}
diff --git a/domains/utkarsh.json b/domains/utkarsh.json
index 27aa394c1..e234891d3 100644
--- a/domains/utkarsh.json
+++ b/domains/utkarsh.json
@@ -1,10 +1,10 @@
{
- "repo": "https://github.com/utkarshkrsingh/website",
- "owner": {
- "username": "Utkarshkrsingh",
- "email": "utkarshkrsingh@proton.me"
- },
- "record": {
- "CNAME": "utkarshkrsingh.github.io"
- }
+ "repo": "https://github.com/utkarshkrsingh/website",
+ "owner": {
+ "username": "Utkarshkrsingh",
+ "email": "utkarsh.isa.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "utkarshkrsingh.github.io"
+ }
}
diff --git a/domains/utsabadhikari.json b/domains/utsabadhikari.json
index 136a2dd1f..a76bf227f 100644
--- a/domains/utsabadhikari.json
+++ b/domains/utsabadhikari.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "utsab1231",
- "email": "",
"discord": "573163740309094413",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J8Zs7sfsirMCXNl8iuUK7xdq5hrLgPvMdrbhp1XfqXBrego8HGcVBEaKNzqZu16DXgMlcJUFJylKY6C7TUPYheXfPDP0Wh66NT6o7wFUsWFuQ6g5NSiU8ctXlI1K7f1_PXwO0iLw5rQOmgh4iw7NCOYti3rF1RXuae3OtNWWQnxgVEv9jieBwtsDhmhjgY2LZxPNJmqvoYCsR9-ytJoNgKYnjxwFqd_bCOKsBBRUAFGKMY031aNZRQTO5EoLOilDOfpznb_DtVmQCZZ_FI56mkKgJhupqIOxJ_bJgKNF6GbvAjSElMdWoVq_YsLU1ivao7sFdXjecje9yOzcBkOuPA.papQF2Ih2vL7uZ8R2B0Dug.2QknjUZW3VXKfWNhnEG5x7GBXEMg1cowfgNMQYmdyPZ64cc5hq6xtB_ENmlpEu7_QzddxpAqxqeKUGTgxwP2ksbAsDFoV02SUMjyiGlYADE.ljIgAJ8-syYcHV1cKeLziA"
},
diff --git a/domains/uuphoria2.json b/domains/uuphoria2.json
deleted file mode 100644
index f429aa66c..000000000
--- a/domains/uuphoria2.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "This is to be used on my blog.",
- "repo": "https://github.com/uuphoria2/uuphoria2.github.io",
- "owner": {
- "username": "uuphoria2",
- "email": "gman36147@gmail.com"
- },
- "record": {
- "CNAME": "uuphoria2.github.io"
- }
-}
diff --git a/domains/v.json b/domains/v.json
index e3cb8bea1..486915299 100644
--- a/domains/v.json
+++ b/domains/v.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "leofelix908",
- "email": ""
+ "username": "leofelix908"
},
"record": {
"CNAME": "xproject-xi.vercel.app"
diff --git a/domains/valentin-nicheglod.json b/domains/valentin-nicheglod.json
new file mode 100644
index 000000000..08cf9c30c
--- /dev/null
+++ b/domains/valentin-nicheglod.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "valentinnicheglod",
+ "email": "nicheglod69@gmail.com"
+ },
+ "record": {
+ "CNAME": "valentinnicheglod.github.io"
+ }
+}
diff --git a/domains/valenvivaldi.json b/domains/valenvivaldi.json
new file mode 100644
index 000000000..e4dae1730
--- /dev/null
+++ b/domains/valenvivaldi.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "valenvivaldi"
+ },
+ "record": {
+ "URL": "https://github.com/valenvivaldi"
+ }
+}
diff --git a/domains/valerius.json b/domains/valerius.json
new file mode 100644
index 000000000..e9bdb8679
--- /dev/null
+++ b/domains/valerius.json
@@ -0,0 +1,11 @@
+{
+ "description": "valerius.is-a.dev",
+ "repo": "https://github.com/valerius21/register",
+ "owner": {
+ "username": "valerius21",
+ "email": "dev@voidcode.net"
+ },
+ "record": {
+ "CNAME": "valerius.me"
+ }
+}
diff --git a/domains/vampirepapi.json b/domains/vampirepapi.json
new file mode 100644
index 000000000..27854e7c8
--- /dev/null
+++ b/domains/vampirepapi.json
@@ -0,0 +1,11 @@
+{
+ "description": "vampirepapi's portfolio website",
+ "repo": "https://github.com/vampirepapi/vampirepapi.github.io",
+ "owner": {
+ "username": "vampirepapi",
+ "email": "shubhamsourabh8@gmail.com"
+ },
+ "record": {
+ "CNAME": "vampirepapi.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/vantage.json b/domains/vantage.json
index 7afc96ef5..f9e58b06a 100644
--- a/domains/vantage.json
+++ b/domains/vantage.json
@@ -1,7 +1,6 @@
{
"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"
},
diff --git a/domains/vapr.json b/domains/vapr.json
new file mode 100644
index 000000000..39ba7b6ae
--- /dev/null
+++ b/domains/vapr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bitsamedida",
+ "email": "bitsamedida@gmail.com"
+ },
+ "record": {
+ "CNAME": "vapr.vercel.app"
+ }
+}
diff --git a/domains/varad.json b/domains/varad.json
new file mode 100644
index 000000000..10ddc1443
--- /dev/null
+++ b/domains/varad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Qvme",
+ "email": "varad.pi@proton.me"
+ },
+ "record": {
+ "CNAME": "qvme.github.io"
+ }
+}
diff --git a/domains/varun-kumar.json b/domains/varun-kumar.json
new file mode 100644
index 000000000..be2a09ca9
--- /dev/null
+++ b/domains/varun-kumar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "varun-kumar-code",
+ "email": "varunkumar1329@gmail.com"
+ },
+ "record": {
+ "CNAME": "varun-kumar-code.github.io"
+ }
+}
diff --git a/domains/vasanth.json b/domains/vasanth.json
index 07f5aa342..df36647d1 100644
--- a/domains/vasanth.json
+++ b/domains/vasanth.json
@@ -1,6 +1,5 @@
{
"description": "Vasanth personal Blog",
- "repo": "https://github.com/itsparser",
"owner": {
"username": "62d2",
"email": "itsparser@gmail.com",
diff --git a/domains/vasu-xd.json b/domains/vasu-xd.json
new file mode 100644
index 000000000..9deb83c2c
--- /dev/null
+++ b/domains/vasu-xd.json
@@ -0,0 +1,13 @@
+{
+ "description": "Vasu's personal developer website",
+ "repo": "https://github.com/Vasu-XD/Vasu-XD",
+ "owner": {
+ "username": "VasuXD",
+ "email": "mr.v4su@gmail.com",
+ "telegram": "VasuXD",
+ "github": "Vasu-XD"
+ },
+ "record": {
+ "CNAME": "vasu-xd.github.io"
+ }
+}
diff --git a/domains/vasuxd.json b/domains/vasuxd.json
new file mode 100644
index 000000000..aab28af31
--- /dev/null
+++ b/domains/vasuxd.json
@@ -0,0 +1,13 @@
+{
+ "description": "Vasu's personal developer website",
+ "repo": "https://github.com/VasuXD/VasuXD",
+ "owner": {
+ "username": "VasuXD",
+ "email": "mr.v4su@gmail.com",
+ "telegram": "VasuXD",
+ "github": "VasuXD"
+ },
+ "record": {
+ "CNAME": "vasuxd.github.io"
+ }
+}
diff --git a/domains/vdevanarayan.json b/domains/vdevanarayan.json
index 91adbc61a..149ef15b8 100644
--- a/domains/vdevanarayan.json
+++ b/domains/vdevanarayan.json
@@ -4,6 +4,7 @@
"email": "octavius1983bc@gmail.com"
},
"record": {
- "URL": "https://vdevanarayan.vercel.app"
+ "A": ["76.76.21.21"],
+ "TXT": "google-site-verification=NcQI-OpciiCC6SO5bs1ws-ptlIZ9AEZskMszLGwFcOY"
}
}
diff --git a/domains/vedant.json b/domains/vedant.json
new file mode 100644
index 000000000..15624eabb
--- /dev/null
+++ b/domains/vedant.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "theonlyvedu"
+ },
+ "record": {
+ "CNAME": "theonlyvedu.github.io"
+ }
+}
diff --git a/domains/venkat.json b/domains/venkat.json
new file mode 100644
index 000000000..f95983656
--- /dev/null
+++ b/domains/venkat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "venkatk-git",
+ "email": "venkatkumar.profiles@gmail.com"
+ },
+ "record": {
+ "CNAME": "v3nkat.vercel.app"
+ }
+}
diff --git a/domains/verify.alora.json b/domains/verify.alora.json
new file mode 100644
index 000000000..f5cfc756b
--- /dev/null
+++ b/domains/verify.alora.json
@@ -0,0 +1,10 @@
+{
+ "description": "Verification Site For my Roleplay Server",
+ "owner": {
+ "username": "aloramiaa",
+ "email": "xaloramia@gmail.com"
+ },
+ "record": {
+ "CNAME": "europaverification.vercel.app"
+ }
+}
diff --git a/domains/veronicacamarzana.json b/domains/veronicacamarzana.json
new file mode 100644
index 000000000..0d425e9ae
--- /dev/null
+++ b/domains/veronicacamarzana.json
@@ -0,0 +1,11 @@
+{
+ "description": "Veronica Camarzana Website",
+ "repo": "https://github.com/vcamarzana/web",
+ "owner": {
+ "username": "vcamarzana",
+ "email": "veronicacamarzana@outlook.es"
+ },
+ "record": {
+ "CNAME": "vcamarzana.github.io"
+ }
+}
diff --git a/domains/veygax.json b/domains/veygax.json
new file mode 100644
index 000000000..d07e62baf
--- /dev/null
+++ b/domains/veygax.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "veygax",
+ "email": "veyga@checkpoint.llc",
+ "discord": "1119938236245094521"
+
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/vicentelopez.json b/domains/vicentelopez.json
index bf83b0cf9..a3e4a1e2a 100644
--- a/domains/vicentelopez.json
+++ b/domains/vicentelopez.json
@@ -1,11 +1,10 @@
{
- "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"
- }
+ "owner": {
+ "username": "lopezvcnt",
+ "email": "lopezvcnt@gmail.com"
+ },
+ "description": "Vicente López portfolio showcasing skills and projects for profesional purpose.",
+ "record": {
+ "CNAME": "lopezvcnt.github.io"
+ }
}
diff --git a/domains/victordev.json b/domains/victordev.json
new file mode 100644
index 000000000..99d626d43
--- /dev/null
+++ b/domains/victordev.json
@@ -0,0 +1,9 @@
+ {
+ "owner": {
+ "username": "VictorHumberto01",
+ "email": "victor.humberto.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "victor-humberto.vercel.app"
+ }
+ }
diff --git a/domains/victoria.json b/domains/victoria.json
index 42888f702..6fad7fc3e 100644
--- a/domains/victoria.json
+++ b/domains/victoria.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "itahseen",
- "email": ""
+ "username": "itahseen"
},
"record": {
"CNAME": "viktoriaa.vercel.app"
diff --git a/domains/viernes.json b/domains/viernes.json
new file mode 100644
index 000000000..a738e08c8
--- /dev/null
+++ b/domains/viernes.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "br0k3r",
+ "email": "br0k3r@protonmail.com"
+ },
+ "record": {
+ "CNAME": "viernes.surge.sh"
+ }
+}
diff --git a/domains/viet.json b/domains/viet.json
new file mode 100644
index 000000000..8ed672915
--- /dev/null
+++ b/domains/viet.json
@@ -0,0 +1,12 @@
+{
+ "description": "Secondary domain for vietthe.dev",
+ "repo": "https://github.com/vietthedev/vietthe.dev",
+ "owner": {
+ "username": "vietthedev",
+ "email": "vietthedev@gmail.com",
+ "discord": "vietthedev"
+ },
+ "record": {
+ "NS": ["evangeline.ns.cloudflare.com", "salvador.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/vighnesh153.json b/domains/vighnesh153.json
new file mode 100644
index 000000000..68a2d64b4
--- /dev/null
+++ b/domains/vighnesh153.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vighnesh153",
+ "email": "pikachu@vighnesh153.dev"
+ },
+ "record": {
+ "CNAME": "vighnesh153-app.web.app"
+ }
+}
diff --git a/domains/vigikaran.json b/domains/vigikaran.json
new file mode 100644
index 000000000..39e3b609f
--- /dev/null
+++ b/domains/vigikaran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vigikaran",
+ "email": "vigikaran.php@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.linkedin.com/in/vigikaran/"
+ }
+}
diff --git a/domains/vignesh.json b/domains/vignesh.json
new file mode 100644
index 000000000..c80386d58
--- /dev/null
+++ b/domains/vignesh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Vignesh025",
+ "email": "vigneshjayakumar9221@gmail.com",
+ "discord": "vignesh025"
+ },
+ "record": {
+ "CNAME": "vigneshportfolio1.vercel.app"
+ }
+}
diff --git a/domains/vikas.json b/domains/vikas.json
new file mode 100644
index 000000000..26b9387ee
--- /dev/null
+++ b/domains/vikas.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "kvikas063",
+ "email": "vikas_063@hotmail.com"
+ },
+ "description": "portofolio website.",
+ "record": {
+ "CNAME": "kvikas063.github.io"
+ }
+}
diff --git a/domains/vikipranata.json b/domains/vikipranata.json
new file mode 100644
index 000000000..1bdca1386
--- /dev/null
+++ b/domains/vikipranata.json
@@ -0,0 +1,12 @@
+{
+ "description": "Domain for personal web pages",
+ "owner": {
+ "username": "vikipranata",
+ "email": "helovikipranata@gmail.com"
+ },
+ "record": {
+ "CNAME": "vikipranata.github.io",
+ "TXT": "google-site-verification=P0NDXXGrIMQIApUCl70HKX0nLphXZtzeW2B4qckwuLE"
+ },
+ "proxied": true
+}
diff --git a/domains/vinay.json b/domains/vinay.json
new file mode 100644
index 000000000..12bca45a2
--- /dev/null
+++ b/domains/vinay.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal Portfolio Website",
+ "repo": "https://github.com/vinugawade/vinux.in",
+ "owner": {
+ "username": "vinugawade",
+ "email": "vinulike11@gmail.com",
+ "linkedin": "https://www.linkedin.com/in/vinu-gawade",
+ "discord": "830872854677422150"
+ },
+ "record": {
+ "CNAME": "vinux.in"
+ }
+}
diff --git a/domains/vinayaka.json b/domains/vinayaka.json
new file mode 100644
index 000000000..9f6fe25fc
--- /dev/null
+++ b/domains/vinayaka.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vinayaka-iyer",
+ "email": "vinayakaiyer999@gmail.com"
+ },
+ "record": {
+ "CNAME": "vinayaka-portfolio.vercel.app"
+ }
+}
diff --git a/domains/vincent.json b/domains/vincent.json
new file mode 100644
index 000000000..882de9792
--- /dev/null
+++ b/domains/vincent.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vinvin27",
+ "email": "simsichepac+is-a@gmail.com"
+ },
+ "record": {
+ "CNAME": "vincent-homepage.pages.dev"
+ }
+}
diff --git a/domains/vineeth.json b/domains/vineeth.json
new file mode 100644
index 000000000..c523be526
--- /dev/null
+++ b/domains/vineeth.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vineeth-motati",
+ "email": "vineethmotati@duck.com"
+ },
+ "record": {
+ "CNAME": "vineeth-reddy-motati.vercel.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/vinicius.json b/domains/vinicius.json
index 5f4e477f5..d58a4aa03 100644
--- a/domains/vinicius.json
+++ b/domains/vinicius.json
@@ -1,6 +1,5 @@
{
"description": "My personal website",
- "repo": "https://github.com/vncsmnl",
"owner": {
"username": "vncsmnl",
"twitter": "vncsmnl",
diff --git a/domains/vinitshah.json b/domains/vinitshah.json
new file mode 100644
index 000000000..a40cd92da
--- /dev/null
+++ b/domains/vinitshah.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio Webisite",
+ "repo": "https://github.com/vinitshah101/portfolio-website",
+ "owner": {
+ "username": "vinitshah101",
+ "email": "vinitshahofficial@gmail.com"
+ },
+ "record": {
+ "CNAME": "vinitshah101.github.io"
+ }
+}
diff --git a/domains/vintheweirdass.json b/domains/vintheweirdass.json
index f1fffe798..77d233378 100644
--- a/domains/vintheweirdass.json
+++ b/domains/vintheweirdass.json
@@ -7,6 +7,11 @@
"discord": "vintheweirdass"
},
"record": {
- "URL": "https://vtwa.is-a.dev"
+ "URL": "https://vtwa.is-a.dev",
+ "TXT": [
+ "zoho-verification=zb23163854.zmverify.zoho.com",
+ "v=spf1 include:zohomail.com ~all"
+ ],
+ "MX": ["mx.zoho.com"]
}
}
diff --git a/domains/vinvin.json b/domains/vinvin.json
new file mode 100644
index 000000000..a10d39420
--- /dev/null
+++ b/domains/vinvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vinvin27",
+ "email": "simsichepac@gmail.com"
+ },
+ "record": {
+ "CNAME": "vincent-homepage.pages.dev"
+ }
+}
diff --git a/domains/viral-soni.json b/domains/viral-soni.json
new file mode 100644
index 000000000..bfcc3e11e
--- /dev/null
+++ b/domains/viral-soni.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal developer profile",
+ "repo": "https://github.com/R-Okje/my-wasm-website",
+ "owner": {
+ "username": "R-Okje",
+ "email": "vssviral@gmail.com"
+ },
+ "record": {
+ "CNAME": "r-okje.github.io"
+ }
+}
diff --git a/domains/virtual.json b/domains/virtual.json
new file mode 100644
index 000000000..38940393e
--- /dev/null
+++ b/domains/virtual.json
@@ -0,0 +1,11 @@
+{
+ "description": "Virtual is a Dev",
+ "repo": "https://github.com/MarkAguirre26/virtual",
+ "owner": {
+ "username": "MarkAguirre26",
+ "email": "markaguirre26@gmail.com"
+ },
+ "record": {
+ "URL": "https://virtual-dev.netlify.app/"
+ }
+}
diff --git a/domains/vishal.json b/domains/vishal.json
index 91946b3e8..aecce9f41 100644
--- a/domains/vishal.json
+++ b/domains/vishal.json
@@ -1,6 +1,5 @@
{
"description": "Welcome to Vishal Sharma's Space on Web",
- "repo": "https://github.com/makeavish",
"owner": {
"username": "makeavish",
"email": "hi@vishalsharma.dev"
diff --git a/domains/vishalanarase.json b/domains/vishalanarase.json
new file mode 100644
index 000000000..a04642c1d
--- /dev/null
+++ b/domains/vishalanarase.json
@@ -0,0 +1,12 @@
+{
+ "description": "Subdomain for my personal portfolio",
+ "repo": "https://github.com/vishalanarase/vishalanarase.github.io",
+ "owner": {
+ "username": "vishalanarase",
+ "email": "iamvishalanarase@gmail.com",
+ "twitter": "vishalanarase"
+ },
+ "record": {
+ "CNAME": "vishalanarase.github.io"
+ }
+}
diff --git a/domains/visionmate.akshit-jain.json b/domains/visionmate.akshit-jain.json
new file mode 100644
index 000000000..736a47c01
--- /dev/null
+++ b/domains/visionmate.akshit-jain.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akshitjain16",
+ "email": "gang.akshitjain@gmail.com"
+ },
+ "record": {
+ "URL": "https://vision-mate.netlify.app/"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/vlad.json b/domains/vlad.json
new file mode 100644
index 000000000..cfc329f7e
--- /dev/null
+++ b/domains/vlad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "uladkaminski",
+ "email": "i@uladkaminski.com"
+ },
+ "record": {
+ "CNAME": "uladkaminski.com"
+ }
+}
diff --git a/domains/vldm.json b/domains/vldm.json
index 57279b13a..9e4d1ea05 100644
--- a/domains/vldm.json
+++ b/domains/vldm.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "VLDeMenezes",
- "email": "victorleandrodemenezes@gmail.com"
- },
- "record": {
- "CNAME": "vldm-portafolio.vercel.app"
- }
+ "owner": {
+ "username": "VLDeMenezes",
+ "email": "victorleandrodemenezes@gmail.com"
+ },
+ "record": {
+ "CNAME": "vldm-portafolio.vercel.app"
+ }
}
diff --git a/domains/voidvault.json b/domains/voidvault.json
new file mode 100644
index 000000000..0c15c0ec7
--- /dev/null
+++ b/domains/voidvault.json
@@ -0,0 +1,10 @@
+{
+ "domain": "voidvault.is-a.dev",
+ "owner": {
+ "username": "Dev-Rajeshkumar",
+ "email": "rajesh8778354586@gmail.com"
+ },
+ "record": {
+ "CNAME": "nova-blog-tech.vercel.app"
+ }
+}
diff --git a/domains/voucan.json b/domains/voucan.json
new file mode 100644
index 000000000..a61ce1080
--- /dev/null
+++ b/domains/voucan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "voucan",
+ "email": "vcn4313@gmail.com"
+ },
+ "record": {
+ "CNAME": "voucan.pages.dev"
+ }
+}
diff --git a/domains/vrachit.json b/domains/vrachit.json
new file mode 100644
index 000000000..c26784391
--- /dev/null
+++ b/domains/vrachit.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "Rachitverma2006",
+ "email": "vrachit@proton.me"
+ },
+ "record": {
+ "TXT": [
+ "zoho-verification=zb12977056.zmverify.zoho.in"
+ ],
+ "CNAME": "vrachit.pages.dev"
+ },
+ "proxied": true
+ }
diff --git a/domains/vrivera.json b/domains/vrivera.json
index 9821c3c38..7b6f0f6f7 100644
--- a/domains/vrivera.json
+++ b/domains/vrivera.json
@@ -1,11 +1,11 @@
{
- "description": "personal portfolio",
- "repo": "https://github.com/vcntttt/portfolio",
- "owner": {
- "username": "vcntttt",
- "email": "vrivera.dev@gmail.com"
- },
- "record": {
- "CNAME": "vcntttt.github.io"
- }
+ "description": "personal portfolio",
+ "repo": "https://github.com/vcntttt/portfolio",
+ "owner": {
+ "username": "vcntttt",
+ "email": "vrivera.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "vcntttt.github.io"
+ }
}
diff --git a/domains/vs206.json b/domains/vs206.json
new file mode 100644
index 000000000..28fded3f2
--- /dev/null
+++ b/domains/vs206.json
@@ -0,0 +1,11 @@
+{
+ "description": "is-a.dev subdomain for my portfolio",
+ "repo": "https://github.com/vs206/vs206.github.io",
+ "owner": {
+ "username": "vs206",
+ "email": "singhvikal891@gmail.com"
+ },
+ "record": {
+ "CNAME": "vs206.github.io"
+ }
+}
diff --git a/domains/vsnu.json b/domains/vsnu.json
new file mode 100644
index 000000000..43d4363ef
--- /dev/null
+++ b/domains/vsnu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VishnuKMi",
+ "email": "vsnuoffc@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-ten-gamma-18.vercel.app"
+ }
+}
diff --git a/domains/vugx.json b/domains/vugx.json
new file mode 100644
index 000000000..522ba37b9
--- /dev/null
+++ b/domains/vugx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TheVugx",
+ "email": "thevugx@gmail.com"
+ },
+ "record": {
+ "CNAME": "thevugx.github.io"
+ }
+}
diff --git a/domains/vukhoi.json b/domains/vukhoi.json
new file mode 100644
index 000000000..e71f148b4
--- /dev/null
+++ b/domains/vukhoi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "khoivt",
+ "email": "khoidragonslayer+is-a-dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "vukhoidev.vercel.app"
+ },
+ "proxied": false
+ }
diff --git a/domains/vulehuan.json b/domains/vulehuan.json
new file mode 100644
index 000000000..4676646d1
--- /dev/null
+++ b/domains/vulehuan.json
@@ -0,0 +1,10 @@
+{
+ "description": "vulehuan.is-a.dev : This is my personal notebook",
+ "owner": {
+ "username": "vulehuan",
+ "email": "vulehuan@gmail.com"
+ },
+ "record": {
+ "URL": "https://vulehuan.com"
+ }
+}
diff --git a/domains/vvp.json b/domains/vvp.json
index 22761e781..d4626792f 100644
--- a/domains/vvp.json
+++ b/domains/vvp.json
@@ -1,6 +1,5 @@
{
"description": "VVP's Website",
- "repo": "https://github.com/VVP3215",
"owner": {
"username": "VVP",
"email": "jamesmentes.management@gmail.com"
diff --git a/domains/vyductan.json b/domains/vyductan.json
index b824e266a..fd12147df 100644
--- a/domains/vyductan.json
+++ b/domains/vyductan.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "vyductan",
- "email": "vdt5snet@gmail.com",
- "discord": "370012050316984321"
- },
- "record": {
- "A": ["76.76.21.21"]
- }
+ "owner": {
+ "username": "vyductan",
+ "email": "vdt5snet@gmail.com",
+ "discord": "370012050316984321"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
}
diff --git a/domains/vyfor.json b/domains/vyfor.json
new file mode 100644
index 000000000..669219e08
--- /dev/null
+++ b/domains/vyfor.json
@@ -0,0 +1,11 @@
+{
+ "description": "minimal portfolio",
+ "repo": "https://github.com/vyfor/page",
+ "owner": {
+ "username": "vyfor",
+ "discord": "vyfor"
+ },
+ "record": {
+ "CNAME": "vyfor.pages.dev"
+ }
+}
diff --git a/domains/w.json b/domains/w.json
deleted file mode 100644
index 55dcef36b..000000000
--- a/domains/w.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "wdhdev",
- "email": "william@is-a.dev"
- },
- "record": {
- "URL": "https://william.is-a.dev"
- },
- "redirect_config": {
- "redirect_paths": true
- }
-}
diff --git a/domains/w0l1d.json b/domains/w0l1d.json
new file mode 100644
index 000000000..f96d1bd90
--- /dev/null
+++ b/domains/w0l1d.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal Software engineer portfolio",
+ "repo": "https://github.com/is-a-dev/docs",
+ "owner": {
+ "username": "w0l1d",
+ "email": "w0l1d.dev@gmail.com",
+ "linkedin": "linkedin.com/in/w0l1d"
+ },
+ "record": {
+ "CNAME": "www.w0l1d.me"
+ },
+ "proxied": true
+}
diff --git a/domains/w3teal.json b/domains/w3teal.json
new file mode 100644
index 000000000..d8afb6325
--- /dev/null
+++ b/domains/w3teal.json
@@ -0,0 +1,16 @@
+{
+ "description": "Used for my W3Teal's blog website, Keyoxide verification and ImprovMX.",
+ "repo": "https://github.com/w3teal/w3teal.github.io",
+ "owner": {
+ "username": "w3teal",
+ "email": "w3teal@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"],
+ "TXT": [
+ "aspe:keyoxide.org:YM7J2J5UIVYRWSHRSOTYFYJ2HQ",
+ "v=spf1 include:spf.improvmx.com ~all"
+ ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
+ }
+}
diff --git a/domains/wahid7852.json b/domains/wahid7852.json
index 9e204221e..f922c2c83 100644
--- a/domains/wahid7852.json
+++ b/domains/wahid7852.json
@@ -1,11 +1,11 @@
{
"description": "portfolio site for Abdul Wahid Khan",
- "repo": "https://github.com/Wahid7852/Wahid7852.github.io",
+ "repo": "https://github.com/Wahid7852/wahid-portfolio",
"owner": {
"username": "Wahid7852",
"email": "wahidzk0091@gmail.com"
},
"record": {
- "URL": "https://wahid-wahid7852.vercel.app"
+ "URL": "https://wahid-portfolio-tczb-wahid-khans-projects.vercel.app/"
}
}
diff --git a/domains/walkercito.json b/domains/walkercito.json
new file mode 100644
index 000000000..8629e93c1
--- /dev/null
+++ b/domains/walkercito.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "Walkercito"
+ },
+ "record": {
+ "CNAME": "walkercitodev.vercel.app"
+ }
+}
diff --git a/domains/wallsified.json b/domains/wallsified.json
index 51cc568a6..8a14eb7ff 100644
--- a/domains/wallsified.json
+++ b/domains/wallsified.json
@@ -1,10 +1,9 @@
{
- "owner": {
- "username": "wallsified",
- "email": "danielparedes@ciencias.unam.mx",
- "discord": ""
- },
- "record": {
- "CNAME": "portafolio-gamma-mauve.vercel.app"
- }
+ "owner": {
+ "username": "wallsified",
+ "email": "danielparedes@ciencias.unam.mx"
+ },
+ "record": {
+ "CNAME": "portafolio-gamma-mauve.vercel.app"
+ }
}
diff --git a/domains/waltersonna.json b/domains/waltersonna.json
new file mode 100644
index 000000000..f84d6a2e1
--- /dev/null
+++ b/domains/waltersonna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RichestHumanAlive",
+ "email": "walter.n.sonna@gmail.com"
+ },
+ "record": {
+ "CNAME": "diagram-portfolio.vercel.app"
+ }
+}
diff --git a/domains/waradu.json b/domains/waradu.json
new file mode 100644
index 000000000..1a169251c
--- /dev/null
+++ b/domains/waradu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "waradu",
+ "email": "me@waradu.dev",
+ "discord": "waradu"
+ },
+ "record": {
+ "CNAME": "portfolio-dee.pages.dev"
+ }
+}
diff --git a/domains/warofzen.json b/domains/warofzen.json
deleted file mode 100644
index e10a19eff..000000000
--- a/domains/warofzen.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal site",
- "repo": "https://github.com/warofzen/warofzen.github.io",
- "owner": {
- "username": "warofzen",
- "email": "warofzen1@proton.me"
- },
- "record": {
- "CNAME": "warofzen.github.io"
- }
-}
diff --git a/domains/warren.json b/domains/warren.json
new file mode 100644
index 000000000..f67152f1d
--- /dev/null
+++ b/domains/warren.json
@@ -0,0 +1,11 @@
+{
+ "description": "GitHub profile of Warren",
+ "repo": "https://github.com/somethingwentwell/somethingwentwell.github.io",
+ "owner": {
+ "username": "somethingwentwell",
+ "email": "wwwc@outlook.com"
+ },
+ "record": {
+ "CNAME": "somethingwentwell.github.io"
+ }
+}
diff --git a/domains/wasd228.json b/domains/wasd228.json
index 402b27616..a12d159cc 100644
--- a/domains/wasd228.json
+++ b/domains/wasd228.json
@@ -1,11 +1,11 @@
{
- "description": "To get a cool looking subdomain for my portfolio hosted on netlify",
- "repo": "https://github.com/ericafk0001/Portfolio.git",
- "owner": {
- "username": "ericafk0001",
- "email": "dxslyofficial@gmail.com"
- },
- "record": {
- "A": ["75.2.60.5"]
- }
+ "description": "To get a cool looking subdomain for my portfolio hosted on netlify",
+ "repo": "https://github.com/ericafk0001/Portfolio.git",
+ "owner": {
+ "username": "ericafk0001",
+ "email": "dxslyofficial@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
}
diff --git a/domains/wasi.json b/domains/wasi.json
index f46f7e635..05b3ffc31 100644
--- a/domains/wasi.json
+++ b/domains/wasi.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "WasiTC",
- "email": "",
"discord": "802128241280286761",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VfdMN3KkHv14UEuHSosP1YXOQh38Re1VEsdiCZFNaOYSQNgJrEVseI4eaY5gIUbR8tyN6IUDDjxYBe8JtgvTYVABOJfEYtNN-IWfErm5kSm_AhBXrqorhc5wIIuC1iBjlJX86x2iZPy0QUMUWvMcommb_enf4V8IfPkU4ByMqWmjgpLD26gKdoBcWbWprsI-_J_TdZIAeksbnaW0fhu_dqVD8H0Jc-o_DdMkdGOqIZBw49ThqiOTn9_ykXcFS7E5FPOcaPawNgH74ztkuMQEiuO2gLp-ibiILiNTniLoMRGJBB9YppR3o1dIWbg1AaPaUU4q0Hd8WBhIHgCbvQBlmw.FPAyefTCWSW9Cn4Re6vGBQ.xfrpDjbf0Gb63fo5C5zJTA5pM5aur7a-Ue6sEaEhskpEdMHWzOJETtyjSnyl6n9APyhOudlvWwFIXRmp7CNvx_hGMtMXNDj8XhRE5W1YXXU.3tdoXncw4wvTz5QDGvN4FA"
},
diff --git a/domains/wasim.json b/domains/wasim.json
new file mode 100644
index 000000000..fdae2d706
--- /dev/null
+++ b/domains/wasim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "simbaig",
+ "email": "wasimbaig000@gmail.com"
+ },
+ "record": {
+ "CNAME": "wasimb.vercel.app"
+ }
+}
diff --git a/domains/wassim.json b/domains/wassim.json
index 73e182235..93b577aa2 100644
--- a/domains/wassim.json
+++ b/domains/wassim.json
@@ -1,6 +1,5 @@
{
"description": "Github profile of wassimbenzarti",
- "repo": "https://github.com/wassimbenzarti",
"owner": {
"username": "wassimbenzarti",
"email": "wass11121996@gmail.com"
diff --git a/domains/wave.json b/domains/wave.json
index fa08df710..61d82cb6f 100644
--- a/domains/wave.json
+++ b/domains/wave.json
@@ -4,7 +4,6 @@
"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/web.vulcanocraft.json b/domains/web.vulcanocraft.json
index 75126b879..f0c01aea2 100644
--- a/domains/web.vulcanocraft.json
+++ b/domains/web.vulcanocraft.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "VulcanoSoftware",
- "email": "",
"discord": "814891541205876767",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OSN3PUPj-tyBSww7jRiLu3F9KJHZLnuunCHNQKcFiZF_qRsPd9uVTMBljFhRUAAzBM9lfFsRtBQnEUYqEyuWUq8e_fYYopTTJ2eoMj4tjkBAYbwRJG4FiT1LFDpDR0YtuSk-XgUFSi4HVBHAMnaAJ92Ez3_APNRBfspLSeSWRrr-aVYej5z_GusGjujgt1RnGX13HZTy7sQZSdGB6fztcxJEwMtAdAvc_GPA7t6oY1GJaVkl9JP0_s7VYkUDkA_msvFfPO2bT_aRi3CL1LwjRMzsS3hzhOK-qBc2mRD8Ea0F64wNaLYcYQINexXnxgF6toTHl9ZXiyKbOGVPuH1Ufw.2NmlL0bO_wxEmb-6eWlCyQ._ewSj4Dp8XIIfDqlriYtXKqrlYv70uhnEX0_pvFNsZ_L3AM4yGHw1aCFiAZkgOB3rCEEKEX2m4sMmApEhvmgh7rm2Y615R1QuJdwiDU332Z7NTtoTSb8LfYKN8Z-sX66.nQYEU4bu7Mrtfg4u57iRcQ"
},
diff --git a/domains/webcubed.json b/domains/webcubed.json
index 80535f977..775b9a884 100644
--- a/domains/webcubed.json
+++ b/domains/webcubed.json
@@ -4,6 +4,7 @@
"email": "lainathannlaiv2@gmail.com"
},
"record": {
- "CNAME": "webcubed.github.io"
- }
+ "CNAME": "webcubed.pages.dev"
+ },
+ "proxied": true
}
diff --git a/domains/wh.json b/domains/wh.json
deleted file mode 100644
index 55dcef36b..000000000
--- a/domains/wh.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "wdhdev",
- "email": "william@is-a.dev"
- },
- "record": {
- "URL": "https://william.is-a.dev"
- },
- "redirect_config": {
- "redirect_paths": true
- }
-}
diff --git a/domains/who.json b/domains/who.json
index 52c7e7f39..cf6752f4f 100644
--- a/domains/who.json
+++ b/domains/who.json
@@ -1,6 +1,5 @@
{
"description": "references for my npm packages",
- "repo": "https://github.com/teamjoelee",
"owner": {
"username": "teamjoelee",
"email": "tojoeleeofficial@gmail.com"
diff --git a/domains/wiki.chuyentinorz.json b/domains/wiki.chuyentinorz.json
index 6b2ef87e4..78190f999 100644
--- a/domains/wiki.chuyentinorz.json
+++ b/domains/wiki.chuyentinorz.json
@@ -1,5 +1,5 @@
{
- "owner": {
+ "owner": {
"username": "akk1to",
"email": "akk1to.dev@gmail.com",
"discord": "727497287777124414"
diff --git a/domains/wilbur.json b/domains/wilbur.json
deleted file mode 100644
index a1a4c3575..000000000
--- a/domains/wilbur.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ThisCatLikesCrypto",
- "email": "contact@wilburwilliams.uk"
- },
- "record": {
- "CNAME": "ww-projects.pages.dev"
- }
-}
diff --git a/domains/wildchamo.json b/domains/wildchamo.json
new file mode 100644
index 000000000..374936a5c
--- /dev/null
+++ b/domains/wildchamo.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/wildchamo/Jose-Luis-Bedoya",
+ "owner": {
+ "username": "wildchamo",
+ "email": "wildchamo@gmail.com"
+ },
+ "record": {
+ "CNAME": "wildchamo.github.io"
+ }
+}
diff --git a/domains/william2sober.json b/domains/william2sober.json
new file mode 100644
index 000000000..89d6ca4f9
--- /dev/null
+++ b/domains/william2sober.json
@@ -0,0 +1,12 @@
+{
+ "description": "The Website is to show off all my links and Dev Discord server",
+ "repo": "https://github.com/william2sober/is-a-dev",
+ "owner": {
+ "username": "william2sober",
+ "email": "willliam2sober@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ },
+ "proxied": false
+}
diff --git a/domains/williamwei.json b/domains/williamwei.json
new file mode 100644
index 000000000..3c5db8571
--- /dev/null
+++ b/domains/williamwei.json
@@ -0,0 +1,11 @@
+{
+ "description": "William Wei's Blog",
+ "repo": "https://github.com/WiIIiamWei",
+ "owner": {
+ "username": "WiIIiamWei",
+ "email": "me@williamwei.top"
+ },
+ "record": {
+ "CNAME": "willwell.netlify.app"
+ }
+}
diff --git a/domains/willymateo.json b/domains/willymateo.json
index 6816fa297..c608366c4 100644
--- a/domains/willymateo.json
+++ b/domains/willymateo.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "willymateo",
- "email": "matheoowilly@gmail.com",
- "discord": "willycocolon"
- },
- "record": {
- "CNAME": "willymateo.vercel.app"
- }
+ "owner": {
+ "username": "willymateo",
+ "email": "matheoowilly@gmail.com",
+ "discord": "willycocolon"
+ },
+ "record": {
+ "CNAME": "willymateo.vercel.app"
+ }
}
diff --git a/domains/wilson-cordova.json b/domains/wilson-cordova.json
new file mode 100644
index 000000000..6adad4a17
--- /dev/null
+++ b/domains/wilson-cordova.json
@@ -0,0 +1,11 @@
+{
+ "description": "Subdominio para el portafolio de Wilson Córdova",
+ "repo": "https://github.com/WSteeven/wilson-steeven.github.io",
+ "owner": {
+ "username": "WSteeven",
+ "email": "wilson972906@gmail.com"
+ },
+ "record": {
+ "CNAME": "wsteeven.github.io"
+ }
+}
diff --git a/domains/wilson.json b/domains/wilson.json
new file mode 100644
index 000000000..b3e2bcb9d
--- /dev/null
+++ b/domains/wilson.json
@@ -0,0 +1,11 @@
+{
+ "description": "My portfolio",
+ "repo": "https://github.com/wmoralesl/wmoralesl.github.io",
+ "owner": {
+ "username": "wmoralesl",
+ "email": "wilsonm57wm@gmail.com"
+ },
+ "record": {
+ "CNAME": "wmoralesl.github.io"
+ }
+}
diff --git a/domains/winbo.json b/domains/winbo.json
deleted file mode 100644
index dc28d5dc9..000000000
--- a/domains/winbo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "winbo-yml-exe",
- "email": "winbo-yml-exe@outlook.com"
- },
- "record": {
- "CNAME": "winbo-yml-exe.github.io"
- }
-}
diff --git a/domains/winter.json b/domains/winter.json
new file mode 100644
index 000000000..3ffb543bf
--- /dev/null
+++ b/domains/winter.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "virtualwinter",
+ "discord": "vwinter",
+ "email": "me@vwinter.moe"
+ },
+ "record": {
+ "NS": [
+ "blakely.ns.cloudflare.com",
+ "rocco.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/wisit.json b/domains/wisit.json
new file mode 100644
index 000000000..4eb4e8447
--- /dev/null
+++ b/domains/wisit.json
@@ -0,0 +1,12 @@
+{
+ "description": "wisit moondet",
+ "repo": "https://github.com/Wisitt/wisit",
+ "owner": {
+ "username": "Wisitt",
+ "email": "wisitmoondet@gmail.com"
+ },
+ "record": {
+ "CNAME": "wisit.vercel.app"
+ },
+ "proxied": true
+}
diff --git a/domains/witchboo.json b/domains/witchboo.json
index 965a7c682..53865792f 100644
--- a/domains/witchboo.json
+++ b/domains/witchboo.json
@@ -4,6 +4,6 @@
"email": "soconfirmo@hotmail.com"
},
"record": {
- "CNAME": "witchboo.github.io"
+ "URL": "https://witchboo.me"
}
}
diff --git a/domains/wizzybot.joe50097.json b/domains/wizzybot.joe50097.json
new file mode 100644
index 000000000..832d78797
--- /dev/null
+++ b/domains/wizzybot.joe50097.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Joe50097",
+ "email": "zcell9500@gmail.com"
+ },
+ "record": {
+ "CNAME": "wizzybot.netlify.app"
+ }
+}
diff --git a/domains/woogi.json b/domains/woogi.json
new file mode 100644
index 000000000..deea32542
--- /dev/null
+++ b/domains/woogi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "woogi-kang",
+ "email": "woogi.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-whbd.vercel.app"
+ }
+}
diff --git a/domains/woosh.json b/domains/woosh.json
index 9123c1bb7..d6dd9b785 100644
--- a/domains/woosh.json
+++ b/domains/woosh.json
@@ -1,6 +1,5 @@
{
"description": "idk just a domain i guess",
- "repo": "https://github.com/LetMeWoosh",
"owner": {
"username": "LetMeWoosh",
"email": "me@letmewoosh.xyz"
diff --git a/domains/worldsavior.json b/domains/worldsavior.json
new file mode 100644
index 000000000..def794982
--- /dev/null
+++ b/domains/worldsavior.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Worldsavior",
+ "email": "kajuki27@gmail.com"
+ },
+ "record": {
+ "CNAME": "worldsavior.me"
+ }
+}
diff --git a/domains/wouter.json b/domains/wouter.json
new file mode 100644
index 000000000..4f5a6c765
--- /dev/null
+++ b/domains/wouter.json
@@ -0,0 +1,10 @@
+{
+ "description": "Wouter's personal website",
+ "owner": {
+ "username": "wouter173",
+ "email": "wouter@debruijn.dev"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/fenrir.json b/domains/wrothmir.json
similarity index 91%
rename from domains/fenrir.json
rename to domains/wrothmir.json
index e4d569834..b3d140d6e 100644
--- a/domains/fenrir.json
+++ b/domains/wrothmir.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "fenrir-san",
+ "username": "wrothmir",
"discord": "459219626484826113",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UoRrv1IHlwaxxz5pjNT0ADqyG3EpR8FA3v2oBJGdoMuSZ5v-8ImQVabz3rQ8P1peUKADV4RExI0OtGfajWYQw11bJD9KNXCPMi_MevxxaAX22yvnyW3hPGf_sUe6qhltlGftElkG_yoO6MzxtZyB1_NTeiHR44IZywuoOOEZIwdkrWyLtgczCoTLFNPBtAwcBPaCQf1t94yTgI09juyLVQzHL26dzb-VISsWxfAxAnanBfMfn1ELUnMQXm32QlJPbuQ7f0OATmGfW-XwIiBRt3Zyn28PNZm7Vhgyr3m4NYylpgDjz5v2jibtw7rAO9eP_a9cfToZY7bwj02mZfMIBA.KnAaAaz-Spr94XeYJF4lLQ.dyOn2mafCFB2J1682xUN2VxAtMG35Sh8nJ1AFLqYGmo1nttcRWosRX6NjRxoK_FLRP1Bv9CdVhzhx-R39bLmXYM7fksuKYd_qsY_od-0vwGSm56iHkLrE5PZnjYULssO.70k22YtUqSrQtnO1MDwHwg"
},
"record": {
- "CNAME": "fenrir-san.github.io"
+ "CNAME": "wrothmir.github.io"
}
}
diff --git a/domains/www.all.json b/domains/www.all.json
new file mode 100644
index 000000000..425e8bf7e
--- /dev/null
+++ b/domains/www.all.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "justdeveloper@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://all.is-a.dev/"
+ }
+}
diff --git a/domains/www.angganix.json b/domains/www.angganix.json
new file mode 100644
index 000000000..e7078cf3b
--- /dev/null
+++ b/domains/www.angganix.json
@@ -0,0 +1,10 @@
+{
+ "description": "Domain for redirection to angganix.is-a.dev",
+ "owner": {
+ "username": "angganix",
+ "email": "angganix@gmail.com"
+ },
+ "record": {
+ "URL": "https://angganix.is-a.dev"
+ }
+}
diff --git a/domains/www.aswinmahesh.json b/domains/www.aswinmahesh.json
index 6272bc668..d266113c5 100644
--- a/domains/www.aswinmahesh.json
+++ b/domains/www.aswinmahesh.json
@@ -1,6 +1,5 @@
{
"description": "Aswin Mahesh Website",
- "repo": "https://github.com/aswinmahesh",
"owner": {
"username": "aswinmahesh",
"email": "aswinmahesh.com+dns@gmail.com"
diff --git a/domains/www.aswinmaheshc.json b/domains/www.aswinmaheshc.json
index ad48739bf..1e793d181 100644
--- a/domains/www.aswinmaheshc.json
+++ b/domains/www.aswinmaheshc.json
@@ -1,6 +1,5 @@
{
"description": "Aswin Mahesh C Website",
- "repo": "https://github.com/aswinmahesh",
"owner": {
"username": "aswinmahesh",
"email": "aswinmahesh.com+dns@gmail.com"
diff --git a/domains/www.bao.json b/domains/www.bao.json
new file mode 100644
index 000000000..712d7588f
--- /dev/null
+++ b/domains/www.bao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bphamict",
+ "email": "bphamict@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/www.encoder.js.json b/domains/www.encoder.js.json
new file mode 100644
index 000000000..78d2124d6
--- /dev/null
+++ b/domains/www.encoder.js.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://encoder.js.is-a.dev/"
+ }
+}
diff --git a/domains/www.harunabdullah.json b/domains/www.harunabdullah.json
new file mode 100644
index 000000000..f535533c9
--- /dev/null
+++ b/domains/www.harunabdullah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "harunabdullahrakin"
+ },
+
+ "record": {
+ "A": ["185.31.40.12"]
+ }
+}
diff --git a/domains/www.justdeveloper.json b/domains/www.justdeveloper.json
new file mode 100644
index 000000000..a2dd570b7
--- /dev/null
+++ b/domains/www.justdeveloper.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "justdeveloper@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://justdeveloper.is-a.dev/"
+ }
+}
diff --git a/domains/www.juststudio.json b/domains/www.juststudio.json
new file mode 100644
index 000000000..68c44d3ee
--- /dev/null
+++ b/domains/www.juststudio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "JustDeveloper1",
+ "email": "support@juststudio.is-a.dev"
+ },
+ "record": {
+ "URL": "https://juststudio.is-a.dev/"
+ }
+}
diff --git a/domains/www.paylink.joe50097.json b/domains/www.paylink.joe50097.json
new file mode 100644
index 000000000..8e8189e0c
--- /dev/null
+++ b/domains/www.paylink.joe50097.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Joe50097",
+ "email": "zcell9500@gmail.com"
+ },
+ "record": {
+ "CNAME": "paylink-comming-soon.netlify.app"
+ }
+}
diff --git a/domains/www.sign.alvin.json b/domains/www.sign.alvin.json
new file mode 100644
index 000000000..810c13865
--- /dev/null
+++ b/domains/www.sign.alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/www.tanuj-nagpal.json b/domains/www.tanuj-nagpal.json
new file mode 100644
index 000000000..b174bda4e
--- /dev/null
+++ b/domains/www.tanuj-nagpal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tanuj101",
+ "email": "tanujnagpal999@gmail.com"
+ },
+ "record": {
+ "CNAME": "tanuj101.netlify.app"
+ }
+}
diff --git a/domains/www.vikipranata.json b/domains/www.vikipranata.json
new file mode 100644
index 000000000..6f71cbfe9
--- /dev/null
+++ b/domains/www.vikipranata.json
@@ -0,0 +1,10 @@
+{
+ "description": "Domain for redirection to vikipranata.is-a.dev",
+ "owner": {
+ "username": "vikipranata",
+ "email": "helovikipranata@gmail.com"
+ },
+ "record": {
+ "URL": "https://vikipranata.is-a.dev"
+ }
+}
diff --git a/domains/www.wizzybot.joe50097.json b/domains/www.wizzybot.joe50097.json
new file mode 100644
index 000000000..832d78797
--- /dev/null
+++ b/domains/www.wizzybot.joe50097.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Joe50097",
+ "email": "zcell9500@gmail.com"
+ },
+ "record": {
+ "CNAME": "wizzybot.netlify.app"
+ }
+}
diff --git a/domains/wyatt.json b/domains/wyatt.json
new file mode 100644
index 000000000..83dca1eb9
--- /dev/null
+++ b/domains/wyatt.json
@@ -0,0 +1,11 @@
+{
+ "description": "Blog",
+ "repo": "https://github.com/ws998116/ws998116.github.io",
+ "owner": {
+ "username": "ws998116",
+ "email": "ws998116@gmail.com"
+ },
+ "record": {
+ "CNAME": "ws998116.github.io"
+ }
+}
diff --git a/domains/xavier.json b/domains/xavier.json
new file mode 100644
index 000000000..e8c7047f4
--- /dev/null
+++ b/domains/xavier.json
@@ -0,0 +1,11 @@
+{
+ "description": "Xavier Personal Development Site",
+ "repo": "https://github.com/MrSiir/mrsiir.github.io",
+ "owner": {
+ "username": "MrSiir",
+ "email": "mrsiir@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrsiir.github.io"
+ }
+}
diff --git a/domains/xdevman.json b/domains/xdevman.json
new file mode 100644
index 000000000..63b31eb54
--- /dev/null
+++ b/domains/xdevman.json
@@ -0,0 +1,11 @@
+{
+ "description": "The domain will be used for my portfolio",
+ "repo": "https://github.com/xdevman1/register",
+ "owner": {
+ "username": "xdevman1",
+ "email": "xdevman9@gmail.com"
+ },
+ "record": {
+ "CNAME": "xdevman1.github.io"
+ }
+}
diff --git a/domains/xelkomy.json b/domains/xelkomy.json
new file mode 100644
index 000000000..20fc3c873
--- /dev/null
+++ b/domains/xelkomy.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/xElkomy/xElkomy.github.io",
+ "owner": {
+ "username": "xElkomy",
+ "email": "khaled.mohamed@xelkomy.com",
+ "discord": "khaledkarimeldin"
+ },
+ "record": {
+ "URL": "https://blog.xelkomy.com"
+ }
+}
diff --git a/domains/xelxen.json b/domains/xelxen.json
index 870ca2b9c..cacb57e08 100644
--- a/domains/xelxen.json
+++ b/domains/xelxen.json
@@ -1,6 +1,5 @@
{
"description": "I am a dev ig",
- "repo": "https://github.com/xelxen.github.io",
"owner": {
"username": "XelXen",
"email": "xelxenfox@gmail.com",
diff --git a/domains/xenonrexo.json b/domains/xenonrexo.json
new file mode 100644
index 000000000..61d5d10fb
--- /dev/null
+++ b/domains/xenonrexo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shshams",
+ "email": "shahadathossenshams@gmail.com"
+ },
+ "record": {
+ "CNAME": "xenonrexo.vercel.app"
+ }
+}
diff --git a/domains/xgeneric.json b/domains/xgeneric.json
index 62bace35a..53f4098c4 100644
--- a/domains/xgeneric.json
+++ b/domains/xgeneric.json
@@ -4,7 +4,6 @@
"discord": "1194494419064328296",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.D232zLsD29QIoCDQBNjD76jn7VgIPpSOIrRPBMn37VV_JTS_3fJAKK7ADQtFwQu0A-I0TcZTU3UczrEGdwjmkHHAhPu95BuRbFqbWruAnX6ETw0JjSJQvYmlrFjF1xDMM33CJ3GW0R985HyTcB5MbU6-QvWbqPou5bwRShlQ06KKP944EiASahDDNAog2HUwEf7VJjWxdB-hP3Yj_BOvlC_kQBfZBhOTG4OWwbvbAonKjK26oqrVdUKhuDT0VfvI4VsBXlSG3g8P2LnyZZPmh3xJ3UQ4aWYRFhJkC3f0M98NQ4mI7ddwZu4YPVcw9yHiMD9iDnTBnNiSsJVZeMhqQw.6v7QP1iKQEXF2xIliVLoxA.n1gPGIhivHdAaq9enhjewqRKzW2BtPsOt97Ng4x7yp8nv-OzAS4Jev1hp_M3z0XL7l5z1Wc2YrPW7z3trdUlmTZkCLcOziKhwwECaKbQNErOq3yXDxe7K5FvhmQWGNQJ.fZiP_f8z_xpVs5jS0MRQPQ"
},
-
"record": {
"CNAME": "paulswebhelp.com"
}
diff --git a/domains/xhide341.json b/domains/xhide341.json
new file mode 100644
index 000000000..4d5e23169
--- /dev/null
+++ b/domains/xhide341.json
@@ -0,0 +1,12 @@
+{
+ "description": "Hey, I'm hide and I'm a developer",
+ "repo": "https://github.com/xhide341/portfolio",
+ "owner": {
+ "username": "xhide341",
+ "email": "shawnehgn10@gmail.com",
+ "discord": "364749406878171136"
+ },
+ "record": {
+ "CNAME": "xhide341.netlify.app"
+ }
+}
diff --git a/domains/xkotelek.json b/domains/xkotelek.json
index 18dd7be1e..0fa0378af 100644
--- a/domains/xkotelek.json
+++ b/domains/xkotelek.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "xKotelek",
- "email": "98203141+xKotelek@users.noreply.github.com",
"discord": "803159847641284640"
},
"record": {
diff --git a/domains/xmars.json b/domains/xmars.json
index 9e7cecfe4..845463ae9 100644
--- a/domains/xmars.json
+++ b/domains/xmars.json
@@ -1,11 +1,10 @@
{
- "description": "My personal info",
- "repo": "https://github.com/xmars4",
- "owner": {
- "username": "xmars4",
- "email": "xtruongptit@gmail.com"
- },
- "record": {
- "CNAME": "xmars4.github.io"
- }
+ "description": "My personal info",
+ "owner": {
+ "username": "xmars4",
+ "email": "xtruongptit@gmail.com"
+ },
+ "record": {
+ "CNAME": "xmars4.github.io"
+ }
}
diff --git a/domains/xn--01a.json b/domains/xn--01a.json
deleted file mode 100644
index 803c2d456..000000000
--- a/domains/xn--01a.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "ы.is-a.dev",
- "repo": "https://github.com/juststudio7/website",
- "owner": {
- "username": "JustDeveloper1",
- "email": "support@juststudio.is-a.dev"
- },
- "record": {
- "CNAME": "edge.redirect.pizza"
- }
-}
diff --git a/domains/xn--mt9h.json b/domains/xn--mt9h.json
deleted file mode 100644
index 9a903f2a6..000000000
--- a/domains/xn--mt9h.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DynoW",
- "email": "naffets0@gmail.com",
- "discord": "455608238335983617"
- },
- "record": {
- "URL": "https://dyno.is-a.dev"
- }
-}
diff --git a/domains/xperian.json b/domains/xperian.json
new file mode 100644
index 000000000..0c8b6392d
--- /dev/null
+++ b/domains/xperian.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "xperian48",
+ "discord": "xperian_48"
+ },
+ "record": {
+ "CNAME": "xperian48.github.io"
+ }
+}
diff --git a/domains/xrap1dx.json b/domains/xrap1dx.json
index 3ce54e246..e5caaa0eb 100644
--- a/domains/xrap1dx.json
+++ b/domains/xrap1dx.json
@@ -1,6 +1,5 @@
{
"description": "making a cool portfolio website.",
- "repo": "https://github.com/xrap1dx?tab=repositories",
"owner": {
"username": "xrap1dx",
"email": "sirrapid155@gmail.com"
diff --git a/domains/xrendani.json b/domains/xrendani.json
new file mode 100644
index 000000000..f4eeb53bf
--- /dev/null
+++ b/domains/xrendani.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "xrendani"
+ },
+ "record": {
+ "CNAME": "xrendani.github.io"
+ }
+}
diff --git a/domains/xrvuloepjriu.sevinda-herath.json b/domains/xrvuloepjriu.sevinda-herath.json
new file mode 100644
index 000000000..a4e12249d
--- /dev/null
+++ b/domains/xrvuloepjriu.sevinda-herath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sevinda-Herath",
+ "email": "sevindaherath@gmail.com"
+ },
+ "record": {
+ "CNAME": "gv-alvrz5ytmlhjh6.dv.googlehosted.com"
+ }
+}
diff --git a/domains/xsamivs.json b/domains/xsamivs.json
index faf0102a8..28e0af625 100644
--- a/domains/xsamivs.json
+++ b/domains/xsamivs.json
@@ -1,6 +1,5 @@
{
"description": "Development Website of xSamiVS",
- "repo": "https://github.com/xSamiVS",
"owner": {
"username": "xSamiVS",
"discord": "xSamiVS - 455335173748162563"
diff --git a/domains/xshubhamg.json b/domains/xshubhamg.json
new file mode 100644
index 000000000..ffe57de9e
--- /dev/null
+++ b/domains/xshubhamg.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio site",
+ "owner": {
+ "username": "xshubhamg",
+ "email": "shubhammgiri3@gmail.com"
+ },
+ "record": {
+ "URL": "https://nerd-cv.netlify.app/"
+ }
+}
diff --git a/domains/xthe.json b/domains/xthe.json
deleted file mode 100644
index 64667b6b1..000000000
--- a/domains/xthe.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "repo": "https://github.com/SirXThe/sirxthe.github.io",
- "owner": {
- "username": "SirXThe",
- "email": "sirxthe@gmail.com",
- "discord": "XThe#4695"
- },
- "record": {
- "CNAME": "sirxthe.github.io"
- }
-}
diff --git a/domains/yahli.json b/domains/yahli.json
new file mode 100644
index 000000000..94473bb32
--- /dev/null
+++ b/domains/yahli.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal dev website",
+ "owner": {
+ "username": "yahligitzi",
+ "email": "yahligitzi2@gmail.com"
+ },
+ "record": {
+ "CNAME": "yahligitzi.github.io"
+ }
+}
diff --git a/domains/yamenher.json b/domains/yamenher.json
new file mode 100644
index 000000000..c6654d8c5
--- /dev/null
+++ b/domains/yamenher.json
@@ -0,0 +1,11 @@
+{
+ "description": "A Material Website about me",
+ "repo": "https://github.com/yamenher/info",
+ "owner": {
+ "username": "Yamenher",
+ "email": "hermassiyamen@gmail.com"
+ },
+ "record": {
+ "CNAME": "yamenher.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/yas.json b/domains/yas.json
new file mode 100644
index 000000000..d3b5a8a8b
--- /dev/null
+++ b/domains/yas.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio",
+ "repo": "https://github.com/yashokuu/yashokuu.github.io",
+ "owner": {
+ "username": "yashoukuu",
+ "email": "yas.studios.en@gmail.com"
+ },
+ "record": {
+ "CNAME": "yashokuu.github.io"
+ }
+}
diff --git a/domains/yashas.json b/domains/yashas.json
index 0aab88392..18ff198fd 100644
--- a/domains/yashas.json
+++ b/domains/yashas.json
@@ -1,6 +1,5 @@
{
"description": "yashas.is-a.dev.",
- "repo": "https://github.com/yashas9492",
"owner": {
"username": "Yashas9492",
"email": "yashas.codes@gmail.com"
diff --git a/domains/yashita.json b/domains/yashita.json
new file mode 100644
index 000000000..2fbb83dc3
--- /dev/null
+++ b/domains/yashita.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yashita1512",
+ "email": "yashita1512939@gmail.com"
+ },
+ "record": {
+ "CNAME": "yashita1512.github.io"
+ }
+}
diff --git a/domains/yashnerkar.json b/domains/yashnerkar.json
new file mode 100644
index 000000000..dcee824d0
--- /dev/null
+++ b/domains/yashnerkar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yashnerkar",
+ "email": "yashnerkar512@gmail.com"
+ },
+ "record": {
+ "CNAME": "yashnerkar.github.io"
+ }
+}
diff --git a/domains/yatharth.json b/domains/yatharth.json
new file mode 100644
index 000000000..33f4922a8
--- /dev/null
+++ b/domains/yatharth.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yatharthbhatia",
+ "email": "yatharthbhatia2004@gmail.com"
+ },
+ "record": {
+ "CNAME": "yatharth-bhatia.vercel.app"
+ }
+}
diff --git a/domains/yatinmalhotra.json b/domains/yatinmalhotra.json
new file mode 100644
index 000000000..251d4a10c
--- /dev/null
+++ b/domains/yatinmalhotra.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal-Portfolio",
+ "repo": "https://github.com/Yatin-Malhotra/TestPortfolio",
+ "owner": {
+ "username": "Yatin-Malhotra",
+ "discord": "foreverinevitable"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/yatsuki.json b/domains/yatsuki.json
new file mode 100644
index 000000000..5e975566f
--- /dev/null
+++ b/domains/yatsuki.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal dev domain for my portfolio, testing purposes, and self-hosting via Cloudflare Tunnel.",
+ "owner": {
+ "username": "Turkitutu",
+ "email": "turkitututfm@gmail.com",
+ "discord": "yatsuki."
+ },
+ "record": {
+ "NS": ["ezra.ns.cloudflare.com", "teagan.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/yaxh.json b/domains/yaxh.json
new file mode 100644
index 000000000..5302cfbe0
--- /dev/null
+++ b/domains/yaxh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "yaxhcodes",
+ "email": "meyashjoshi3101@gmail.com",
+ "discord": "965845932782526495"
+ },
+ "record": {
+ "CNAME": "yaxhcodes.vercel.app"
+ }
+}
diff --git a/domains/yeasin.json b/domains/yeasin.json
new file mode 100644
index 000000000..9cb2a9e92
--- /dev/null
+++ b/domains/yeasin.json
@@ -0,0 +1,11 @@
+{
+ "description": "yeasin.is-a.dev",
+ "owner": {
+ "username": "yeasiin",
+ "email": "iamyeasiin@gmail.com"
+ },
+ "record": {
+ "CNAME": "yeasiin.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/yellososa.json b/domains/yellososa.json
new file mode 100644
index 000000000..5673378fa
--- /dev/null
+++ b/domains/yellososa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Dn1w",
+ "discord": "923208452581511199",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UYEThSdIZTWX2_fHUJL6USuvkXNHtizdv6i6tq7VlLbxQ8hB9ShSrlEvwEbAL7xapElXx-Zjn9-DeeQLlpD6evOb-qeUOLp2bBA_TK9RmLnJnQEfTNsnjZAJwkd_IZUWtSoPVISyooLfEIFROAalmyBvOqO4jo6f_VS62akDJjFkpNHGizyTy3Ap4o4ECYhw3DJDpj70ZUfYlMym4IR9vBx-FENksCdRszGj9uSnCqrut0ebez8BhS4orxwF3iyh2zjOJ9RnvZdaBUM_T0bovHD-4W26p4PiOXVlJG-TPiLAA1oJrpRTjO4pIOeokstysYJWCfZMtz8Vzf1wsAXUnw.AtmbV8Ll8uA5ExuCKoLJAA.rw-ak74Tw-ynZRDyHMgKIwwy6-i-RNUSCEHQrvr4lK24iT5nsdqkqzBPFbIAnpbL-UT9VjlXF5JE-VDkg4p9iXaTPcNm11FSaqOEFSwEPIY.LbsXNr4vTuO14AqbVrEXJA"
+ },
+
+ "record": {
+ "CNAME": "yellososa.github.io"
+ }
+}
diff --git a/domains/yhkz.json b/domains/yhkz.json
new file mode 100644
index 000000000..9b655ee3f
--- /dev/null
+++ b/domains/yhkz.json
@@ -0,0 +1,11 @@
+{
+ "description": "yhkz.is-a.dev",
+ "repo": "https://github.com/yhkz/yhkz.github.io",
+ "owner": {
+ "username": "yhkz",
+ "email": "yhkz@yhkz.us.kg"
+ },
+ "record": {
+ "CNAME": "yhkz.github.io"
+ }
+}
diff --git a/domains/yoan.json b/domains/yoan.json
new file mode 100644
index 000000000..ab5b4d3ea
--- /dev/null
+++ b/domains/yoan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yoan-gilliand",
+ "email": "yoangilliand@gmail.com"
+ },
+ "record": {
+ "CNAME": "yoan-gilliand.vercel.app"
+ }
+}
diff --git a/domains/yohanesrioirsan.json b/domains/yohanesrioirsan.json
new file mode 100644
index 000000000..dcc978126
--- /dev/null
+++ b/domains/yohanesrioirsan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yohanesrioirsan",
+ "email": "rioirsan8@gmail.com"
+ },
+ "record": {
+ "CNAME": "yohanesrioirsan.vercel.app"
+ }
+}
diff --git a/domains/youcef.json b/domains/youcef.json
new file mode 100644
index 000000000..860152629
--- /dev/null
+++ b/domains/youcef.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio",
+ "repo": "https://github.com/youcefaddou/Portfolio",
+ "owner": {
+ "username": "youcefaddou",
+ "email": "youcefaddou@gmail.com"
+ },
+ "record": {
+ "CNAME": "youcef-addou.netlify.app"
+ }
+}
diff --git a/domains/yourtilak.json b/domains/yourtilak.json
deleted file mode 100644
index 23c7fd71e..000000000
--- a/domains/yourtilak.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "YourTilak.is-a.dev",
- "repo": "https://github.com/YourTilak/YourTilak.github.io",
- "owner": {
- "username": "YourTilak",
- "email": "rj05tilak@gmail.com"
- },
- "record": {
- "CNAME": "yourtilak.github.io"
- }
-}
diff --git a/domains/youssef-lmouden.json b/domains/youssef-lmouden.json
deleted file mode 100644
index 922756d8c..000000000
--- a/domains/youssef-lmouden.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "owner": {
- "username": "YoussefDevPro"
- },
- "record": {
- "CNAME": "youssefdevpro.github.io"
- }
-}
diff --git a/domains/youssef.json b/domains/youssef.json
new file mode 100644
index 000000000..94f62f7dc
--- /dev/null
+++ b/domains/youssef.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "YoussefDevPro",
+ "email": "youssef.pro.coding@gmail.com"
+ },
+ "record": {
+ "CNAME": "youssef-portfolio-sigma-youssefdevpros-projects.vercel.app"
+ }
+}
diff --git a/domains/ysfchn.json b/domains/ysfchn.json
index 4ba9d55af..05a75f816 100644
--- a/domains/ysfchn.json
+++ b/domains/ysfchn.json
@@ -1,6 +1,5 @@
{
"description": "ysfchn's personal website",
- "repo": "https://github.com/ysfchn",
"owner": {
"username": "ysfchn",
"email": "hi@ysfchn.com"
diff --git a/domains/ysoseriouz.json b/domains/ysoseriouz.json
new file mode 100644
index 000000000..ed5fa1f31
--- /dev/null
+++ b/domains/ysoseriouz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ysoseriouz",
+ "email": "thanh.nguyen.ntt2612@gmail.com"
+ },
+ "record": {
+ "CNAME": "ysoseriouz.com"
+ }
+}
diff --git a/domains/ysyz.json b/domains/ysyz.json
new file mode 100644
index 000000000..3d34c0eb3
--- /dev/null
+++ b/domains/ysyz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yishuiyizhong",
+ "email": "sife@sife.is-a.dev"
+ },
+ "record": {
+ "CNAME": "yishuiyizhong.github.io"
+ }
+}
diff --git a/domains/yt.anw.json b/domains/yt.anw.json
new file mode 100644
index 000000000..dd1eb6c91
--- /dev/null
+++ b/domains/yt.anw.json
@@ -0,0 +1,10 @@
+{
+ "description": "ANW's (Subhrajit Sain) YouTube Channel",
+ "owner": {
+ "username": "SubhrajitSain",
+ "email": "subhrajitsain34@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.youtube.com/@ANormalWintrovert"
+ }
+}
diff --git a/domains/yu.json b/domains/yu.json
new file mode 100644
index 000000000..47b754fa2
--- /dev/null
+++ b/domains/yu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yunexiz",
+ "discord": "1040303561847881729"
+ },
+ "record": {
+ "CNAME": "redirecting-for-yu.pages.dev"
+ }
+}
diff --git a/domains/yujia.json b/domains/yujia.json
index 9eabe930a..6822324d1 100644
--- a/domains/yujia.json
+++ b/domains/yujia.json
@@ -1,6 +1,5 @@
{
"description": "Yujia's Magic",
- "repo": "https://github.com/YujiaY",
"owner": {
"username": "YujiaY",
"email": "aujackyuan@gmail.com"
diff --git a/domains/yurei.json b/domains/yurei.json
new file mode 100644
index 000000000..02bc168eb
--- /dev/null
+++ b/domains/yurei.json
@@ -0,0 +1,12 @@
+{
+ "description": "I want clound security for my portfolio website",
+ "repo": "https://github.com/yurehito/yurei.git",
+ "owner": {
+ "username": "yurehito",
+ "discord": "https://discord.com/users/998608551431897170"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ },
+"proxied": true
+}
diff --git a/domains/yxz.json b/domains/yxz.json
index d434786ca..3aea970b6 100644
--- a/domains/yxz.json
+++ b/domains/yxz.json
@@ -2,7 +2,6 @@
"repo": "https://github.com/yz9551/blog",
"owner": {
"username": "yz9551",
- "email": "",
"discord": "yz9551"
},
"record": {
diff --git a/domains/zahid.json b/domains/zahid.json
new file mode 100644
index 000000000..8a0a68eb4
--- /dev/null
+++ b/domains/zahid.json
@@ -0,0 +1,11 @@
+{
+ "description": "Zahid47's personal website",
+ "repo": "https://github.com/zahid47/pw",
+ "owner": {
+ "username": "zahid47",
+ "email": "epiczahid@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/zalex.json b/domains/zalex.json
index 006338ddf..fd77b578a 100644
--- a/domains/zalex.json
+++ b/domains/zalex.json
@@ -4,7 +4,6 @@
"discord": "1212435420776890368",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.N0_TVOrIKQHS-dgU5KDDcREwJDAtW1AfGLARAqAZyT-UjrmJz8IUFHg8zYxe6Spa4faQVR_emyVZKwqwlFvdIZZr4yQrWQSED-2WZJ5Z5DXpti6930sHO4CVgszWKjc5LqPW1764QP39iQrC7VtNSFxEmZTWJnmK0i8X_2AOSgu8BTH45vjMVKU4oBRzHjvoBZ-Z_17DCk0Awy2FxWSscZPDVF1-_1ETfQ60Ahcv8gYcMt3ZVs2vrUZR_sopt8LaPf6AQQ9zSgDtRiwBHogpiYWsAZVN_5EHTKosomGhUcxuHfUjhaHFauscXQjHZM6kDOEAEvY8MryV7jRy_gm7fQ.sZCseMTkxIHnGcrpk7SARA.SHzeybFf2FVb38kuLc62-X3zAK2SMpZiL2FlnaU77-UR5bsGoINyEnbJNdvCRd4nLItafWpWtCqu0NyvjBh8BWCNrCUhYMmmLRzg6sBgolI.kE2nsD9RtiZGMS-KFaXmZw"
},
-
"record": {
"CNAME": "zalex.betteruptime.com"
}
diff --git a/domains/zalnars.json b/domains/zalnars.json
new file mode 100644
index 000000000..e25d17105
--- /dev/null
+++ b/domains/zalnars.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "zalnars",
+ "email": "zalnars@proton.me",
+ "discord": "zalnars"
+ },
+ "record": {
+ "CNAME": "zalnars.vercel.app"
+ }
+}
diff --git a/domains/zara.json b/domains/zara.json
new file mode 100644
index 000000000..b5b4b0676
--- /dev/null
+++ b/domains/zara.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tutupharirabu",
+ "email": "code.zharaurien@gmail.com"
+ },
+ "record": {
+ "CNAME": "portofolio-pribadi-irfan-zharauri.vercel.app"
+ }
+}
diff --git a/domains/zehao.json b/domains/zehao.json
new file mode 100644
index 000000000..d2f99bc95
--- /dev/null
+++ b/domains/zehao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "2eha0",
+ "email": "zehao93@outlook.com"
+ },
+ "record": {
+ "CNAME": "blog-pi-eight.vercel.app"
+ }
+}
diff --git a/domains/zerot69.json b/domains/zerot69.json
new file mode 100644
index 000000000..1b2d17044
--- /dev/null
+++ b/domains/zerot69.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zerot69",
+ "email": "ngo.vo.hoang.tuan.69@gmail.com"
+ },
+ "record": {
+ "CNAME": "zerot69.github.io"
+ }
+}
diff --git a/domains/zevobla.json b/domains/zevobla.json
index d0896aa96..972a02784 100644
--- a/domains/zevobla.json
+++ b/domains/zevobla.json
@@ -5,6 +5,7 @@
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Yl52Rrzzsl6pjhBgVkYA_NfGUZUHIp18-pe5PQVvoVI_7U_nksgv91HNcy56xoSJ9A8WUJCeE8qwfsenu9qwHVyWlAuNuWKfEMdM4vAI0V_AuW_1YaIm-0ObrxQsOPMohv9n7e6b5vSLz3f7EKsbiqtebvwF1ebxxqN85t64ZrfCSEBATl3sCjR-vLAORej4Kj3MpgKe7Le1qsoey3u5SR1FvGezQh3PLljcKlR72g0TKvkn8WnF2JicERNDNFJYnwipt-G0HyvibpTsh7trMrcrSEfDYFxGkDLYhgHo02RvUhXer4mtCCvMUX2MgsGraqxDBdASwfk62Jn2EINU6Q.PxrZtoeRnAFNvkmvd0vAMg.xokePgy944ELwFNV_7CzH4K_ylDYFqd_rC-XnvJAt22K2dYKk5SVjftxmLJhwib-BcZh-Aqx7FkRmR3bytAKic2a_vdnmkV6c_tuDbSsJviXViBKpPDPhDF2DoWRBvTI.b2HHi1Vk1_cUmFDkZOclbw"
},
"record": {
- "A": ["77.238.238.131"]
+ "A": ["46.23.81.157"],
+ "AAAA": ["2a03:6000:1813:1337::157"]
}
}
diff --git a/domains/zhangximufeng.json b/domains/zhangximufeng.json
index 9d323e515..6a913196a 100644
--- a/domains/zhangximufeng.json
+++ b/domains/zhangximufeng.json
@@ -1,6 +1,5 @@
{
"description": "Link to my github",
- "repo": "https://github.com/zhangximufeng",
"owner": {
"username": "zhangximufeng",
"email": "zhangximufeng@gmail.com"
diff --git a/domains/zilu.json b/domains/zilu.json
new file mode 100644
index 000000000..14752d628
--- /dev/null
+++ b/domains/zilu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zilurrane",
+ "email": "zilurrane@gmail.com"
+ },
+ "record": {
+ "CNAME": "zilu.dev"
+ }
+}
diff --git a/domains/zinko.json b/domains/zinko.json
new file mode 100644
index 000000000..66fa3689a
--- /dev/null
+++ b/domains/zinko.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zink0",
+ "email": "zinko.it@outlook.com"
+ },
+ "record": {
+ "CNAME": "zink0.github.io"
+ }
+}
diff --git a/domains/ziyn.json b/domains/ziyn.json
index 9a726ef96..5ae5c5423 100644
--- a/domains/ziyn.json
+++ b/domains/ziyn.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "254thheli",
- "email": "is-a-dev@ziyn.us.kg"
+ "username": "chromapher",
+ "email": "notziyn@gmail.com"
},
"record": {
"CNAME": "ziyn.pages.dev"
diff --git a/domains/zk.json b/domains/zk.json
index dc7c9fa51..4572116c9 100644
--- a/domains/zk.json
+++ b/domains/zk.json
@@ -1,6 +1,5 @@
{
"description": "ZK's Website",
- "repo": "https://github.com/p55d2k",
"owner": {
"username": "p55d2k",
"email": "peanutandscuffy1@gmail.com"
diff --git a/domains/zmail._domainkey.aruria.json b/domains/zmail._domainkey.aruria.json
index 0e81d6b0f..33b32cc16 100644
--- a/domains/zmail._domainkey.aruria.json
+++ b/domains/zmail._domainkey.aruria.json
@@ -4,8 +4,7 @@
"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"
+ "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
deleted file mode 100644
index cd08c7a23..000000000
--- a/domains/zmail._domainkey.co.ligmatv.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "This sub-subdomain will i use for my Zoho email.",
- "owner": {
- "username": "LIGMATV",
- "email": "ligmatv.id@gmail.com"
- },
- "record": {
- "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDO+5yaTA58OpZCT1ejrzPxjO4xNvsImCfvA2UigeVQwtFbl5QbwcdZUf6ga0LE6VOIDA3bMzHmVgTSZfYizmYDxNZ3TOobKEiT3TaaMcZj1sM2zWFVCpuYCHZ3WYPJj7rFF/PKZK9gCPPr1eLgao2SFkXnpwL/BWGL+uQ5OHZvlQIDAQAB"
- }
-}
diff --git a/domains/zmail._domainkey.devarnav.json b/domains/zmail._domainkey.devarnav.json
deleted file mode 100644
index baa38f9b5..000000000
--- a/domains/zmail._domainkey.devarnav.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "ArnavBarway",
- "email": "playnav.yt@gmail.com"
- },
- "record": {
- "TXT": [
- "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDSshIz5JRWquCDisgpRtbtWwMhzi2asXOamXxO6G80r4cNYll2/7AWSIxEKGV8t/eoGo9xiryfUXi0W5P5jHY6TWcdawPE/xBoBySt58dQtOElHEplukCYxyTotrvdQp1nH9w2jmexZfjXzOS97sGwUXHDWxNZjwT7hYf5Kzif+QIDAQAB"
- ]
- }
-}
diff --git a/domains/zmail._domainkey.loomeh.json b/domains/zmail._domainkey.loomeh.json
new file mode 100644
index 000000000..20b5d4dd5
--- /dev/null
+++ b/domains/zmail._domainkey.loomeh.json
@@ -0,0 +1,10 @@
+{
+ "description": "zoho mail for loomeh.is-a.dev",
+ "owner": {
+ "username": "loomeh",
+ "bluesky": "loomeh.bsky.social"
+ },
+ "record": {
+ "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrWUZ5Vfigr20ye1jk/A8BprQadj0d0ry2cd64fKfh+8r28UkocwQeIFFQ0CYq6vCzeaKHb1ejJh5PZG+C+8J/q152wkerLLgb6+l0FrDC1e7oN5dvIpy4oDvbzAg4dTyG5h3T5W12zFLp58EagAXLC9FLikxer2VstZYBxcUFCQIDAQAB"
+ }
+}
diff --git a/domains/zmail._domainkey.mail.mrstickypiston.json b/domains/zmail._domainkey.mail.mrstickypiston.json
new file mode 100644
index 000000000..052b699ad
--- /dev/null
+++ b/domains/zmail._domainkey.mail.mrstickypiston.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "MrStickyPiston",
+ "discord": "700766242268774471",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag"
+ },
+ "record": {
+ "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCQzqCyycL/D4W2wxwRFdiQuDNf0ityvD6KD71b67nse9rbSgQ+03F/Yt7F19nPvnmgSElmaf7yUcQajw2Nhr4xAK95NUgBkjuF4ofkXZnqw7fyVz5JdVU504yPXzLCj5SxSU2Rbu5WS+rXr0P86jjUfNWVPs30p3RTgJDJRoQgBQIDAQAB"
+ }
+}
diff --git a/domains/zold.json b/domains/zold.json
new file mode 100644
index 000000000..b963d5b52
--- /dev/null
+++ b/domains/zold.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AhmedOsamaMath",
+ "email": "ahmedosamamath@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/zoldyako.json b/domains/zoldyako.json
new file mode 100644
index 000000000..d5caacef2
--- /dev/null
+++ b/domains/zoldyako.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal site hosted on Render",
+ "repo": "https://github.com/Zoldyako/zoldyako_site",
+ "owner": {
+ "username": "Zoldyako",
+ "email": "jose.vdr.pessoal@gmail.com",
+ "discord": "Zoldyako"
+ },
+ "record": {
+ "A": ["216.24.57.1"]
+ }
+}
diff --git a/domains/zwel.json b/domains/zwel.json
index 1fa11840f..b831f6698 100644
--- a/domains/zwel.json
+++ b/domains/zwel.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "zwelhtetyan",
- "email": "zwelhtetyandev@gmail.com"
- },
- "record": {
- "CNAME": "zwel.pages.dev"
- }
+ "owner": {
+ "username": "zwelhtetyan",
+ "email": "zwelhtetyandev@gmail.com"
+ },
+ "record": {
+ "CNAME": "zwel.pages.dev"
+ }
}
diff --git a/domains/zylo.json b/domains/zylo.json
deleted file mode 100644
index b26333371..000000000
--- a/domains/zylo.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Zylo23",
- "email": "pyyupsk@proton.me"
- },
- "description": "👋 Hello! I'm Zylo, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.",
- "repo": "https://github.com/Zylo23/personal-website",
- "record": {
- "CNAME": "zylo23.pages.dev"
- }
-}
diff --git a/package-lock.json b/package-lock.json
index b471fdeb1..32b170be4 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -9,25 +9,100 @@
"fs-extra": "^11.2.0"
}
},
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/fs-minipass": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.4"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
"node_modules/@mapbox/node-pre-gyp": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz",
- "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz",
+ "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
+ "consola": "^3.2.3",
"detect-libc": "^2.0.0",
- "https-proxy-agent": "^5.0.0",
- "make-dir": "^3.1.0",
+ "https-proxy-agent": "^7.0.5",
"node-fetch": "^2.6.7",
- "nopt": "^5.0.0",
- "npmlog": "^5.0.1",
- "rimraf": "^3.0.2",
- "semver": "^7.3.5",
- "tar": "^6.1.11"
+ "nopt": "^8.0.0",
+ "semver": "^7.5.3",
+ "tar": "^7.4.0"
},
"bin": {
"node-pre-gyp": "bin/node-pre-gyp"
+ },
+ "engines": {
+ "node": ">=18"
}
},
"node_modules/@nodelib/fs.scandir": {
@@ -68,31 +143,38 @@
"node": ">= 8"
}
},
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
"node_modules/@rollup/pluginutils": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz",
- "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==",
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz",
+ "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "estree-walker": "^2.0.1",
- "picomatch": "^2.2.2"
+ "@types/estree": "^1.0.0",
+ "estree-walker": "^2.0.2",
+ "picomatch": "^4.0.2"
},
"engines": {
- "node": ">= 8.0.0"
- }
- },
- "node_modules/@rollup/pluginutils/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
+ "node": ">=14.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
}
},
"node_modules/@sindresorhus/merge-streams": {
@@ -108,15 +190,22 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/@types/estree": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@vercel/nft": {
- "version": "0.27.6",
- "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.6.tgz",
- "integrity": "sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==",
+ "version": "0.27.10",
+ "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.10.tgz",
+ "integrity": "sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@mapbox/node-pre-gyp": "^1.0.11",
- "@rollup/pluginutils": "^4.0.0",
+ "@mapbox/node-pre-gyp": "^2.0.0-rc.0",
+ "@rollup/pluginutils": "^5.1.3",
"acorn": "^8.6.0",
"acorn-import-attributes": "^1.9.5",
"async-sema": "^3.1.1",
@@ -124,8 +213,8 @@
"estree-walker": "2.0.2",
"glob": "^7.1.3",
"graceful-fs": "^4.2.9",
- "micromatch": "^4.0.8",
"node-gyp-build": "^4.2.2",
+ "picomatch": "^4.0.2",
"resolve-from": "^5.0.0"
},
"bin": {
@@ -136,11 +225,14 @@
}
},
"node_modules/abbrev": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz",
+ "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==",
"dev": true,
- "license": "ISC"
+ "license": "ISC",
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
},
"node_modules/acorn": {
"version": "8.14.0",
@@ -179,16 +271,13 @@
}
},
"node_modules/agent-base": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "version": "7.1.3",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz",
+ "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "debug": "4"
- },
"engines": {
- "node": ">= 6.0.0"
+ "node": ">= 14"
}
},
"node_modules/ansi-regex": {
@@ -217,28 +306,6 @@
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/aproba": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
- "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/are-we-there-yet": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
- "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
- "deprecated": "This package is no longer supported.",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "delegates": "^1.0.0",
- "readable-stream": "^3.6.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
@@ -427,9 +494,9 @@
}
},
"node_modules/chalk": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
- "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
+ "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -440,13 +507,13 @@
}
},
"node_modules/chownr": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
- "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
+ "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
"dev": true,
- "license": "ISC",
+ "license": "BlueOak-1.0.0",
"engines": {
- "node": ">=10"
+ "node": ">=18"
}
},
"node_modules/chunkd": {
@@ -457,9 +524,9 @@
"license": "MIT"
},
"node_modules/ci-info": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz",
- "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz",
+ "integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==",
"dev": true,
"funding": [
{
@@ -599,16 +666,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/color-support": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
- "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "color-support": "bin.js"
- }
- },
"node_modules/common-path-prefix": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
@@ -643,12 +700,15 @@
"node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14"
}
},
- "node_modules/console-control-strings": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
- "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
+ "node_modules/consola": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz",
+ "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "engines": {
+ "node": "^14.18.0 || >=16.10.0"
+ }
},
"node_modules/convert-to-spaces": {
"version": "2.0.1",
@@ -660,6 +720,21 @@
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
"node_modules/currently-unhandled": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
@@ -687,9 +762,9 @@
}
},
"node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -704,13 +779,6 @@
}
}
},
- "node_modules/delegates": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
- "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/detect-libc": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
@@ -721,10 +789,17 @@
"node": ">=8"
}
},
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/emittery": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.0.3.tgz",
- "integrity": "sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.1.0.tgz",
+ "integrity": "sha512-rsX7ktqARv/6UQDgMaLfIqUWAEzzbCQiVh7V9rhDXp6c37yoJcks12NVD+XPkgl4AEavmNhVfrhGoqYwIsMYYA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -803,9 +878,9 @@
"license": "Apache-2.0"
},
"node_modules/fast-glob": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
- "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -813,16 +888,16 @@
"@nodelib/fs.walk": "^1.2.3",
"glob-parent": "^5.1.2",
"merge2": "^1.3.0",
- "micromatch": "^4.0.4"
+ "micromatch": "^4.0.8"
},
"engines": {
"node": ">=8.6.0"
}
},
"node_modules/fastq": {
- "version": "1.17.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
- "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
+ "version": "1.19.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz",
+ "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -878,10 +953,27 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/foreground-child": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
+ "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/fs-extra": {
- "version": "11.2.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
- "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
+ "version": "11.3.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz",
+ "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -893,32 +985,6 @@
"node": ">=14.14"
}
},
- "node_modules/fs-minipass": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
- "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "minipass": "^3.0.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/fs-minipass/node_modules/minipass": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
- "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
@@ -926,83 +992,6 @@
"dev": true,
"license": "ISC"
},
- "node_modules/gauge": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
- "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
- "deprecated": "This package is no longer supported.",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "aproba": "^1.0.3 || ^2.0.0",
- "color-support": "^1.1.2",
- "console-control-strings": "^1.0.0",
- "has-unicode": "^2.0.1",
- "object-assign": "^4.1.1",
- "signal-exit": "^3.0.0",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1",
- "wide-align": "^1.1.2"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/gauge/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/gauge/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/gauge/node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/gauge/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/gauge/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/get-caller-file": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
@@ -1062,18 +1051,18 @@
}
},
"node_modules/globby": {
- "version": "14.0.2",
- "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz",
- "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==",
+ "version": "14.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz",
+ "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@sindresorhus/merge-streams": "^2.1.0",
- "fast-glob": "^3.3.2",
- "ignore": "^5.2.4",
- "path-type": "^5.0.0",
+ "fast-glob": "^3.3.3",
+ "ignore": "^7.0.3",
+ "path-type": "^6.0.0",
"slash": "^5.1.0",
- "unicorn-magic": "^0.1.0"
+ "unicorn-magic": "^0.3.0"
},
"engines": {
"node": ">=18"
@@ -1089,31 +1078,24 @@
"dev": true,
"license": "ISC"
},
- "node_modules/has-unicode": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
- "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
- "dev": true,
- "license": "ISC"
- },
"node_modules/https-proxy-agent": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
- "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "agent-base": "6",
+ "agent-base": "^7.1.2",
"debug": "4"
},
"engines": {
- "node": ">= 6"
+ "node": ">= 14"
}
},
"node_modules/ignore": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz",
+ "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1258,6 +1240,29 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/jackspeak": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "@isaacs/cliui": "^8.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
"node_modules/js-string-escape": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz",
@@ -1315,31 +1320,12 @@
"dev": true,
"license": "MIT"
},
- "node_modules/make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
"dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/make-dir/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
+ "license": "ISC"
},
"node_modules/matcher": {
"version": "5.0.0",
@@ -1450,53 +1436,43 @@
}
},
"node_modules/minipass": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
- "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
"dev": true,
"license": "ISC",
"engines": {
- "node": ">=8"
+ "node": ">=16 || 14 >=14.17"
}
},
"node_modules/minizlib": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
- "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz",
+ "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "minipass": "^3.0.0",
- "yallist": "^4.0.0"
+ "minipass": "^7.0.4",
+ "rimraf": "^5.0.5"
},
"engines": {
- "node": ">= 8"
- }
- },
- "node_modules/minizlib/node_modules/minipass": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
- "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "node": ">= 18"
}
},
"node_modules/mkdirp": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
+ "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
"dev": true,
"license": "MIT",
"bin": {
- "mkdirp": "bin/cmd.js"
+ "mkdirp": "dist/cjs/src/bin.js"
},
"engines": {
"node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/ms": {
@@ -1528,9 +1504,9 @@
}
},
"node_modules/node-gyp-build": {
- "version": "4.8.2",
- "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz",
- "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==",
+ "version": "4.8.4",
+ "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
+ "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
"dev": true,
"license": "MIT",
"bin": {
@@ -1550,43 +1526,19 @@
}
},
"node_modules/nopt": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
- "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz",
+ "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==",
"dev": true,
"license": "ISC",
"dependencies": {
- "abbrev": "1"
+ "abbrev": "^3.0.0"
},
"bin": {
"nopt": "bin/nopt.js"
},
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/npmlog": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
- "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
- "deprecated": "This package is no longer supported.",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "are-we-there-yet": "^2.0.0",
- "console-control-strings": "^1.1.0",
- "gauge": "^3.0.0",
- "set-blocking": "^2.0.0"
- }
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
+ "node": "^18.17.0 || >=20.5.0"
}
},
"node_modules/once": {
@@ -1600,9 +1552,9 @@
}
},
"node_modules/p-map": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.2.tgz",
- "integrity": "sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==",
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz",
+ "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1629,6 +1581,13 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0"
+ },
"node_modules/parse-ms": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz",
@@ -1652,14 +1611,41 @@
"node": ">=0.10.0"
}
},
- "node_modules/path-type": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz",
- "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==",
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-scurry": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/path-type": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz",
+ "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -1695,9 +1681,9 @@
}
},
"node_modules/pretty-ms": {
- "version": "9.1.0",
- "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.1.0.tgz",
- "integrity": "sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==",
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz",
+ "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1731,21 +1717,6 @@
],
"license": "MIT"
},
- "node_modules/readable-stream": {
- "version": "3.6.2",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
- "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/require-directory": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
@@ -1791,17 +1762,63 @@
}
},
"node_modules/rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "version": "5.0.10",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz",
+ "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==",
"dev": true,
"license": "ISC",
"dependencies": {
- "glob": "^7.1.3"
+ "glob": "^10.3.7"
},
"bin": {
- "rimraf": "bin.js"
+ "rimraf": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/rimraf/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/rimraf/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/rimraf/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
@@ -1831,31 +1848,10 @@
"queue-microtask": "^1.2.2"
}
},
- "node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
"node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -1881,19 +1877,41 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/set-blocking": {
+ "node_modules/shebang-command": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
- "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"dev": true,
- "license": "ISC"
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
},
"node_modules/signal-exit": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
"dev": true,
- "license": "ISC"
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
},
"node_modules/slash": {
"version": "5.1.0",
@@ -1955,16 +1973,6 @@
"node": ">=8"
}
},
- "node_modules/string_decoder": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
- "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.2.0"
- }
- },
"node_modules/string-width": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
@@ -1983,6 +1991,62 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/string-width-cjs": {
+ "name": "string-width",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
@@ -1999,6 +2063,30 @@
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/supertap": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz",
@@ -2016,21 +2104,21 @@
}
},
"node_modules/tar": {
- "version": "6.2.1",
- "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
- "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz",
+ "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
"dev": true,
"license": "ISC",
"dependencies": {
- "chownr": "^2.0.0",
- "fs-minipass": "^2.0.0",
- "minipass": "^5.0.0",
- "minizlib": "^2.1.1",
- "mkdirp": "^1.0.3",
- "yallist": "^4.0.0"
+ "@isaacs/fs-minipass": "^4.0.0",
+ "chownr": "^3.0.0",
+ "minipass": "^7.1.2",
+ "minizlib": "^3.0.1",
+ "mkdirp": "^3.0.1",
+ "yallist": "^5.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=18"
}
},
"node_modules/temp-dir": {
@@ -2087,9 +2175,9 @@
}
},
"node_modules/unicorn-magic": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
- "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz",
+ "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2109,13 +2197,6 @@
"node": ">= 10.0.0"
}
},
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/webidl-conversions": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
@@ -2144,69 +2225,20 @@
"webidl-conversions": "^3.0.0"
}
},
- "node_modules/wide-align": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
- "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
"license": "ISC",
"dependencies": {
- "string-width": "^1.0.2 || 2 || 3 || 4"
- }
- },
- "node_modules/wide-align/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wide-align/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/wide-align/node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wide-align/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/wide-align/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
+ "node": ">= 8"
}
},
"node_modules/wrap-ansi": {
@@ -2227,6 +2259,96 @@
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/wrap-ansi/node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
@@ -2319,19 +2441,6 @@
"node": "^18.17.0 || >=20.5.0"
}
},
- "node_modules/write-file-atomic/node_modules/signal-exit": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
"node_modules/y18n": {
"version": "5.0.8",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
@@ -2343,11 +2452,14 @@
}
},
"node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
"dev": true,
- "license": "ISC"
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
},
"node_modules/yargs": {
"version": "17.7.2",
diff --git a/tests/domains.test.js b/tests/domains.test.js
index 46a4339fb..43395fcda 100644
--- a/tests/domains.test.js
+++ b/tests/domains.test.js
@@ -21,43 +21,34 @@ function getDomainData(subdomain) {
}
}
-function getParentSubdomain(subdomain) {
- const parts = subdomain.split(".");
-
- if (parts.length <= 1) return null; // No parent for top-level subdomains
-
- // 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 null;
-}
-
t("Nested subdomains should not exist without a parent subdomain", (t) => {
files.forEach((file) => {
const subdomain = file.replace(/\.json$/, "");
+ const parts = subdomain.split(".");
- if (subdomain.split(".").length > 1) {
- const parentSubdomain = getParentSubdomain(subdomain);
- t.true(parentSubdomain && files.includes(`${parentSubdomain}.json`), `${file}: Parent subdomain does not exist`);
+ for (let i = 1; i < parts.length; i++) {
+ const parent = parts.slice(i).join(".");
+ if (parent.startsWith("_")) continue;
+
+ t.true(
+ files.includes(`${parent}.json`),
+ `${file}: Parent subdomain "${parent}" does not exist`
+ );
}
});
});
-t("Nested subdomains should not exist if the parent subdomain has NS records", (t) => {
+t("Nested subdomains should not exist if any parent subdomain has NS records", (t) => {
files.forEach((file) => {
const subdomain = file.replace(/\.json$/, "");
+ const parts = subdomain.split(".");
- if (subdomain.split(".").length > 1) {
- const parentSubdomain = getParentSubdomain(subdomain);
- const parentDomain = getDomainData(parentSubdomain);
+ for (let i = 1; i < parts.length; i++) {
+ const parent = parts.slice(i).join(".");
+ if (parent.startsWith("_") || !files.includes(`${parent}.json`)) continue;
+ const parentData = getDomainData(parent);
- t.true(!parentDomain.record.NS, `${file}: Parent subdomain has NS records`);
+ t.true(!parentData.record.NS, `${file}: Parent subdomain "${parent}" has NS records`);
}
});
});
@@ -65,16 +56,52 @@ t("Nested subdomains should not exist if the parent subdomain has NS records", (
t("Nested subdomains should be owned by the parent subdomain's owner", (t) => {
files.forEach((file) => {
const subdomain = file.replace(/\.json$/, "");
+ const parentDomain = subdomain.split(".").reverse()[0];
- if (subdomain.split(".").length > 1) {
+ if (parentDomain !== subdomain) {
const data = getDomainData(subdomain);
- const parentSubdomain = getParentSubdomain(subdomain);
- const parentDomain = getDomainData(parentSubdomain);
+ const parentData = getDomainData(parentDomain);
t.true(
- data.owner.username.toLowerCase() === parentDomain.owner.username.toLowerCase(),
+ data.owner.username.toLowerCase() === parentData.owner.username.toLowerCase(),
`${file}: Owner does not match the parent subdomain`
);
}
});
});
+
+t("Users are limited to one single character subdomain", (t) => {
+ const results = [];
+
+ files.forEach((file) => {
+ const subdomain = file.replace(/\.json$/, "");
+ const data = getDomainData(subdomain);
+
+ if (subdomain.length === 1 && data.owner.username.toLowerCase() !== "is-a-dev") {
+ results.push({
+ subdomain,
+ owner: data.owner.username.toLowerCase()
+ });
+ }
+ });
+
+ const duplicates = results.filter((result) => results.filter((r) => r.owner === result.owner).length > 1);
+ const output = duplicates.reduce((acc, curr) => {
+ if (!acc[curr.owner]) {
+ acc[curr.owner] = [];
+ }
+
+ acc[curr.owner].push(`${curr.subdomain}.is-a.dev`);
+ return acc;
+ }, {});
+
+ t.is(
+ duplicates.length,
+ 0,
+ Object.keys(output)
+ .map((owner) => `${owner} - ${output[owner].join(", ")}`)
+ .join("\n")
+ );
+
+ t.pass();
+});
diff --git a/tests/json.test.js b/tests/json.test.js
index 39d293f81..1b40b75d5 100644
--- a/tests/json.test.js
+++ b/tests/json.test.js
@@ -35,55 +35,25 @@ const reservedDomains = require("../util/reserved.json");
const domainsPath = path.resolve("domains");
const files = fs.readdirSync(domainsPath);
-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;
-}
-
-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) => {
+async function validateFields(t, obj, fields, file, prefix = "") {
+ for (const key of Object.keys(fields)) {
const fieldPath = prefix ? `${prefix}.${key}` : key;
if (obj.hasOwnProperty(key)) {
@@ -91,31 +61,70 @@ function validateFields(t, obj, fields, file, prefix = "") {
} else if (fields === requiredFields) {
t.true(false, `${file}: Missing required field: ${fieldPath}`);
}
- });
+ }
}
-function validateFileName(t, file) {
+async function validateFileName(t, file) {
t.true(file.endsWith(".json"), `${file}: File does not have .json extension`);
t.false(file.includes(".is-a.dev"), `${file}: File name should not contain .is-a.dev`);
t.true(file === file.toLowerCase(), `${file}: File name should be all lowercase`);
+ t.false(file.includes("--"), `${file}: File name should not contain consecutive hyphens`);
+ t.false(file.startsWith("_redirect."), `${file}: File name should not start with _redirect`);
- // 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.`
+ `${file}: FQDN must be 1-253 characters, can use letters, numbers, dots, and non-consecutive hyphens.`
+ );
+ t.false(reservedDomains.includes(subdomain), `${file}: Subdomain name is reserved`);
+ t.true(
+ !reservedDomains.some((reserved) => subdomain.endsWith(`.${reserved}`)),
+ `${file}: Subdomain name is reserved`
);
- 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`);
+ const rootSubdomain = subdomain.split(".").pop();
+
+ if (!exceptedDomains.includes(rootSubdomain)) {
+ t.false(rootSubdomain.startsWith("_"), `${file}: Root subdomains should not start with an underscore`);
}
}
}
+async function processFile(file, t) {
+ const filePath = path.join(domainsPath, file);
+ const data = await fs.readJson(filePath);
+
+ validateFileName(t, file);
+
+ // Validate fields and duplicates
+ validateFields(t, data, requiredFields, file);
+ validateFields(t, data.owner, requiredOwnerFields, file, "owner");
+ validateFields(t, data.owner, optionalOwnerFields, file, "owner");
+ validateFields(t, data, optionalFields, file);
+
+ if (data.redirect_config) {
+ validateFields(t, data.redirect_config, optionalRedirectConfigFields, file, "redirect_config");
+ }
+
+ if (data.owner.email) {
+ t.regex(data.owner.email, emailRegex, `${file}: Owner email should be a valid email address`);
+ t.false(
+ data.owner.email.endsWith("@users.noreply.github.com"),
+ `${file}: Owner email should not be a GitHub no-reply email`
+ );
+ }
+
+ t.true(Object.keys(data.record).length > 0, `${file}: Missing DNS records`);
+
+ // Check for duplicate keys
+ const rawData = await fs.readFile(filePath, "utf8");
+ const duplicateKeys = findDuplicateKeys(rawData);
+ t.true(!duplicateKeys.length, `${file}: Duplicate keys found: ${duplicateKeys.join(", ")}`);
+}
+
t("JSON files should not be in the root directory", (t) => {
const rootFiles = fs
.readdirSync(path.resolve())
@@ -123,65 +132,18 @@ t("JSON files should not be in the root directory", (t) => {
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 be valid JSON", async (t) => {
+ await Promise.all(
+ files.map((file) => {
+ return t.notThrows(() => fs.readJson(path.join(domainsPath, file)), `${file}: Invalid JSON file`);
+ })
+ );
});
-t("All files should not have duplicate keys", (t) => {
- files.forEach((file) => {
- // Parse JSON as a string because JS automatically gets the last key if there are duplicates
- const rawData = fs.readFileSync(`${domainsPath}/${file}`, "utf8");
- const duplicateKeys = findDuplicateKeys(rawData);
-
- t.true(!duplicateKeys.length, `${file}: Duplicate keys found: ${duplicateKeys.join(", ")}`);
- });
+t("All files should have valid file names", async (t) => {
+ await Promise.all(files.map((file) => validateFileName(t, file)));
});
-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
- validateFields(t, data, requiredFields, file);
-
- // Validate owner fields
- validateFields(t, data.owner, requiredOwnerFields, file, "owner");
- validateFields(t, data.owner, optionalOwnerFields, file, "owner");
-
- // 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");
- }
-
- // 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`);
- });
-});
-
-t("Reserved domains file should be valid", (t) => {
- const subdomainRegex = /^_?[a-zA-Z0-9]+([-\.][a-zA-Z0-9]+)*(\[\d+-\d+\])?$/;
-
- expandedReservedDomains.forEach((item, index) => {
- t.regex(
- item,
- subdomainRegex,
- `[util/reserved-domains.json] Invalid subdomain name "${item}" at index ${index}`
- );
- });
-
- t.pass();
+t("All files should have valid required and optional fields", async (t) => {
+ await Promise.all(files.map((file) => processFile(file, t)));
});
diff --git a/tests/pr.test.js b/tests/pr.test.js
new file mode 100644
index 000000000..6afa1ff85
--- /dev/null
+++ b/tests/pr.test.js
@@ -0,0 +1,63 @@
+const t = require("ava");
+const fs = require("fs-extra");
+const path = require("path");
+
+const requiredEnvVars = ["PR_AUTHOR", "PR_AUTHOR_ID"];
+const trustedUsers = require("../util/trusted.json").map((u) => u.id.toString());
+
+function getDomainData(subdomain) {
+ try {
+ const data = fs.readJsonSync(path.join(path.resolve("domains"), `${subdomain}.json`));
+ return data;
+ } catch (error) {
+ throw new Error(`Failed to read JSON for ${subdomain}: ${error.message}`);
+ }
+}
+
+t("Users can only update their own subdomains", (t) => {
+ if (requiredEnvVars.every((v) => process.env[v])) {
+ const changedFiles = JSON.parse(process.env.CHANGED_FILES);
+ const deletedFiles = JSON.parse(process.env.DELETED_FILES);
+ const prAuthor = process.env.PR_AUTHOR.toLowerCase();
+ const prAuthorId = process.env.PR_AUTHOR_ID;
+
+ const changedJSONFiles = changedFiles
+ .filter((file) => file.startsWith("domains/"))
+ .map((file) => path.basename(file));
+ const deletedJSONFiles = deletedFiles
+ .filter((file) => file.name.startsWith("domains/"))
+ .map((file) => path.basename(file.name));
+
+ if ((!changedJSONFiles && !deletedFiles) || trustedUsers.includes(prAuthorId)) return t.pass();
+ if (process.env.PR_LABELS && process.env.PR_LABELS.includes("ci: bypass-owner-check")) return t.pass();
+
+ changedJSONFiles.forEach((file) => {
+ const subdomain = file.replace(/\.json$/, "");
+ const data = getDomainData(subdomain);
+
+ t.true(
+ data.owner.username.toLowerCase() === prAuthor,
+ `${subdomain}: ${prAuthor} is not authorized to update ${subdomain}.is-a.dev`
+ );
+ });
+
+ deletedJSONFiles.forEach((file) => {
+ const subdomain = file.replace(/\.json$/, "");
+ const data = JSON.parse(
+ deletedFiles
+ .find((f) => f.name === `domains/${file}`)
+ .data.split("\n")
+ .filter((line) => line.startsWith("-") && !line.startsWith("---"))
+ .map((line) => line.substring(1))
+ .join("\n")
+ );
+
+ t.true(
+ data.owner.username.toLowerCase() === prAuthor,
+ `${file}: ${prAuthor} is not authorized to delete ${subdomain}.is-a.dev`
+ );
+ });
+ }
+
+ t.pass();
+});
diff --git a/tests/proxy.test.js b/tests/proxy.test.js
index d7c73bc5b..4a193a5d5 100644
--- a/tests/proxy.test.js
+++ b/tests/proxy.test.js
@@ -21,9 +21,14 @@ function getDomainData(file) {
}
function validateProxiedRecords(t, data, file) {
- // Convert the Set to an array for message display (moved outside the loop to optimize performance)
const recordTypes = Array.from(requiredRecordsToProxy).join(", ");
+ // Forcefully stop raw.is-a.dev from being proxied
+ if (file === "raw.json") {
+ t.true(!data.proxied, `${file}: raw.is-a.dev cannot be proxied`);
+ return;
+ }
+
if (data.proxied) {
const hasProxiedRecord = Object.keys(data.record).some((key) => requiredRecordsToProxy.has(key));
@@ -39,8 +44,8 @@ const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json"
t("Domains with proxy enabled must have at least one proxy-able record", (t) => {
files.forEach((file) => {
- const domain = getDomainData(file);
+ const data = getDomainData(file);
- validateProxiedRecords(t, domain, file);
+ validateProxiedRecords(t, data, file);
});
});
diff --git a/tests/records.test.js b/tests/records.test.js
index 223971308..573e0604e 100644
--- a/tests/records.test.js
+++ b/tests/records.test.js
@@ -2,7 +2,7 @@ const t = require("ava");
const fs = require("fs-extra");
const path = require("path");
-const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TXT", "URL"]);
+const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TLSA", "TXT", "URL"]);
const hostnameRegex = /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/;
const ipv4Regex = /^(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}$/;
const ipv6Regex =
@@ -98,8 +98,8 @@ function validateRecordValues(t, data, file) {
value.forEach((record, idx) => {
t.true(
- typeof record === "string",
- `${file}: Record value for ${key} should be a string at index ${idx}`
+ typeof record === "string" || typeof record === "object",
+ `${file}: Record value for ${key} should be a string or an object at index ${idx}`
);
if (key === "A") {
@@ -112,7 +112,22 @@ function validateRecordValues(t, data, file) {
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)) {
+ } else if (key === "MX") {
+ t.true(
+ typeof record === "object" || typeof record === "string",
+ `${file}: Record value for ${key} should be an object or a string at index ${idx}`
+ );
+
+ if (typeof record === "string") {
+ t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`);
+ } else {
+ t.true(isValidHostname(record.target), `${file}: Invalid target for ${key} at index ${idx}`);
+ t.true(
+ Number.isInteger(record.priority) && record.priority >= 0 && record.priority <= 65535,
+ `${file}: Invalid priority for ${key} at index ${idx}`
+ );
+ }
+ } else if (key === "NS") {
t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`);
}
});
@@ -136,12 +151,12 @@ function validateRecordValues(t, data, file) {
const isSelfReferencing =
file === "@.json" ? urlHost === "is-a.dev" : urlHost === `${subdomain}.is-a.dev`;
- t.true(!isSelfReferencing, `${file}: URL cannot point to itself`);
+ t.false(isSelfReferencing, `${file}: URL cannot point to itself`);
}
}
- // CAA, DS, SRV validations
- if (["CAA", "DS", "SRV"].includes(key)) {
+ // CAA, DS, SRV, TLSA validations
+ if (["CAA", "DS", "SRV", "TLSA"].includes(key)) {
t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`);
value.forEach((record, idx) => {
@@ -153,41 +168,58 @@ function validateRecordValues(t, data, file) {
if (key === "CAA") {
t.true(
["issue", "issuewild", "iodef"].includes(record.tag),
- `${file}: Invalid tag for CAA at index ${idx}`
+ `${file}: Invalid tag for ${key} at index ${idx}`
);
- t.true(typeof record.value === "string", `${file}: Invalid value for CAA at index ${idx}`);
+ t.true(typeof record.value === "string", `${file}: Invalid value for ${key} at index ${idx}`);
t.true(
isValidHostname(record.value) || record.value === ";",
- `${file}: Value must be a hostname or semicolon for CAA at index ${idx}`
+ `${file}: Value must be a hostname or semicolon for ${key} at index ${idx}`
);
} else if (key === "DS") {
t.true(
Number.isInteger(record.key_tag) && record.key_tag >= 0 && record.key_tag <= 65535,
- `${file}: Invalid key_tag for DS at index ${idx}`
+ `${file}: Invalid key_tag for ${key} at index ${idx}`
);
t.true(
Number.isInteger(record.algorithm) && record.algorithm >= 0 && record.algorithm <= 255,
- `${file}: Invalid algorithm for DS at index ${idx}`
+ `${file}: Invalid algorithm for ${key} at index ${idx}`
);
t.true(
Number.isInteger(record.digest_type) && record.digest_type >= 0 && record.digest_type <= 255,
- `${file}: Invalid digest_type for DS at index ${idx}`
+ `${file}: Invalid digest_type for ${key} at index ${idx}`
);
- t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for DS at index ${idx}`);
+ t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for ${key} at index ${idx}`);
} else if (key === "SRV") {
t.true(
Number.isInteger(record.priority) && record.priority >= 0 && record.priority <= 65535,
- `${file}: Invalid priority for SRV at index ${idx}`
+ `${file}: Invalid priority for ${key} at index ${idx}`
);
t.true(
Number.isInteger(record.weight) && record.weight >= 0 && record.weight <= 65535,
- `${file}: Invalid weight for SRV at index ${idx}`
+ `${file}: Invalid weight for ${key} at index ${idx}`
);
t.true(
Number.isInteger(record.port) && record.port >= 0 && record.port <= 65535,
- `${file}: Invalid port for SRV at index ${idx}`
+ `${file}: Invalid port for ${key} at index ${idx}`
+ );
+ t.true(isValidHostname(record.target), `${file}: Invalid target for ${key} at index ${idx}`);
+ } else if (key === "TLSA") {
+ t.true(
+ Number.isInteger(record.usage) && record.usage >= 0 && record.usage <= 255,
+ `${file}: Invalid usage for ${key} at index ${idx}`
+ );
+ t.true(
+ Number.isInteger(record.selector) && record.selector >= 0 && record.selector <= 255,
+ `${file}: Invalid selector for ${key} at index ${idx}`
+ );
+ t.true(
+ Number.isInteger(record.matchingType) && record.matchingType >= 0 && record.matchingType <= 255,
+ `${file}: Invalid matchingType for ${key} at index ${idx}`
+ );
+ t.true(
+ isValidHexadecimal(record.certificate),
+ `${file}: Invalid certificate for ${key} at index ${idx}`
);
- t.true(isValidHostname(record.target), `${file}: Invalid target for SRV at index ${idx}`);
}
});
}
@@ -233,7 +265,7 @@ function validateRecordValues(t, data, file) {
// 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.false(isSelfReferencing, `${urlMessage} cannot point to itself at index ${idx}`);
});
}
}
@@ -281,3 +313,20 @@ t("All files should have valid record types", (t) => {
t.pass();
});
+
+t("Root subdomains should have at least one usable record", (t) => {
+ const usableRecordTypes = ["A", "AAAA", "CNAME", "MX", "NS", "URL"];
+
+ files.forEach((file) => {
+ const subdomain = file.replace(/\.json$/, "");
+ if (subdomain.includes(".") || subdomain.startsWith("_")) return;
+
+ const data = getDomainData(file);
+ const recordKeys = Object.keys(data.record);
+
+ t.true(
+ usableRecordTypes.some((record) => recordKeys.includes(record)),
+ `${file}: Root subdomains must have at least one A, AAAA, CNAME, MX, NS, or URL record`
+ );
+ });
+});
diff --git a/tests/special.test.js b/tests/special.test.js
deleted file mode 100644
index bd18e3e00..000000000
--- a/tests/special.test.js
+++ /dev/null
@@ -1,53 +0,0 @@
-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
deleted file mode 100644
index ed9a583ce..000000000
--- a/util/bypassed.json
+++ /dev/null
@@ -1,4 +0,0 @@
-[
- "is-a-dev",
- "wdhdev"
-]
diff --git a/util/excepted.json b/util/excepted.json
index fd68638d8..9f7268d2e 100644
--- a/util/excepted.json
+++ b/util/excepted.json
@@ -1,7 +1,6 @@
[
"_discord",
"_psl",
- "_gh-is-a-dev-docs-o",
"_gh-is-a-dev-o",
"_github-pages-challenge-is-a-dev"
]
diff --git a/util/reserved.json b/util/reserved.json
index 093fdfa17..91ba85d42 100644
--- a/util/reserved.json
+++ b/util/reserved.json
@@ -1,125 +1,164 @@
[
+ "_zone-updated",
+ "about",
"account",
"accounts",
"admin",
- "administrator",
- "alert",
- "alerts",
"api",
+ "apis",
+ "app",
+ "apps",
+ "assets",
"auth",
"authentication",
"authorisation",
"authorise",
"authorization",
"authorize",
- "aux",
+ "ad",
+ "ads",
"billing",
"blog",
- "calendar",
- "cart",
- "catalog",
+ "board",
+ "bot",
+ "cdn",
+ "chat",
"checkout",
+ "cname",
"co",
"com",
- "com[1-9]",
"con",
- "confirm",
- "confirmation",
+ "contribute",
+ "contributing",
+ "dash",
"dashboard",
- "default",
"dns",
"doc",
"documentation",
+ "domain",
"email",
- "emails",
- "error",
- "errors",
- "event",
- "events",
"example",
"feedback",
- "finance",
- "forgot",
- "forgot-password",
- "gtld",
- "guest",
+ "file",
+ "files",
"help",
- "helpdesk",
+ "helper",
+ "helpers",
+ "home",
"hostmaster",
+ "http",
+ "https",
"info",
- "infos",
"int",
"internal",
+ "legal",
+ "license",
"login",
- "logout",
- "lpt[1-9]",
+ "lpt1",
+ "lpt2",
+ "lpt3",
+ "lpt4",
+ "lpt5",
+ "lpt6",
+ "lpt7",
+ "lpt8",
+ "lpt9",
"m",
"mail",
"maintainer",
"maintainers",
- "marketing",
"media",
"mobile",
+ "moderator",
+ "moderators",
"net",
"network",
"news",
+ "nic",
"noc",
"notification",
"notifications",
- "notify",
"ns",
- "ns[1-99]",
- "nul",
+ "ns0",
+ "ns1",
+ "ns2",
+ "ns3",
+ "ns4",
+ "ns5",
+ "ns6",
+ "ns7",
+ "ns8",
+ "ns9",
"oauth",
- "official",
- "operations",
+ "online",
"ops",
"org",
- "organisation",
+ "owner",
"pay",
"payment",
"payments",
"portal",
"postmaster",
- "recovery",
+ "preview",
+ "private",
+ "prod",
+ "production",
"redirect",
"registrar",
"registry",
- "reset",
- "reset-password",
+ "reserved",
"root",
- "sales",
- "schedule",
"secure",
"security",
"service",
"services",
- "session",
- "sessions",
"shop",
- "signin",
- "signout",
- "signup",
"staff",
+ "staging",
+ "static",
+ "statistics",
+ "stats",
+ "status",
"store",
- "superuser",
+ "subdomain",
"support",
"sys",
"system",
- "teams",
"test",
- "test[1-9999]",
- "tld",
+ "terms",
"token",
"tokens",
+ "tos",
"url",
- "url[1-9999]",
- "user",
- "users",
+ "vote",
+ "web",
"webmail",
"webmaster",
+ "website",
"whois",
- "www[1-99]",
+ "ww",
+ "ww0",
+ "ww1",
+ "ww2",
+ "ww3",
+ "ww4",
+ "ww5",
+ "ww6",
+ "ww7",
+ "ww8",
+ "ww9",
+ "www0",
+ "www1",
+ "www2",
+ "www3",
+ "www4",
+ "www5",
+ "www6",
+ "www7",
+ "www8",
+ "www9",
"wwww",
- "your-domain-name"
+ "your-domain-name",
+ "zone",
+ "zone-updated"
]
diff --git a/util/trusted.json b/util/trusted.json
new file mode 100644
index 000000000..f8b95d666
--- /dev/null
+++ b/util/trusted.json
@@ -0,0 +1,8 @@
+[
+ { "username": "iostpa", "id": 69630113 },
+ { "username": "is-a-dev-bot", "id": 106927495 },
+ { "username": "orangci", "id": 90866414 },
+ { "username": "Stef-00012", "id": 81536172 },
+ { "username": "WDH-2", "id": 115670568 },
+ { "username": "wdhdev", "id": 87287585 }
+]